blob: f43eafe30c7fdde991d3639acca0d736804a3dd1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * PowerPC64 LPAR Configuration Information Driver
3 *
4 * Dave Engebretsen engebret@us.ibm.com
5 * Copyright (c) 2003 Dave Engebretsen
6 * Will Schmidt willschm@us.ibm.com
7 * SPLPAR updates, Copyright (c) 2003 Will Schmidt IBM Corporation.
8 * seq_file updates, Copyright (c) 2004 Will Schmidt IBM Corporation.
9 * Nathan Lynch nathanl@austin.ibm.com
10 * Added lparcfg_write, Copyright (C) 2004 Nathan Lynch IBM Corporation.
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version
15 * 2 of the License, or (at your option) any later version.
16 *
17 * This driver creates a proc file at /proc/ppc64/lparcfg which contains
18 * keyword - value pairs that specify the configuration of the partition.
19 */
20
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/module.h>
22#include <linux/types.h>
23#include <linux/errno.h>
24#include <linux/proc_fs.h>
25#include <linux/init.h>
26#include <linux/seq_file.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090027#include <linux/slab.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080028#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <asm/lppaca.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <asm/hvcall.h>
Stephen Rothwell1ababe12005-08-03 14:35:25 +100031#include <asm/firmware.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <asm/rtas.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <asm/time.h>
Michael Ellerman856509d2005-06-25 14:54:42 -070034#include <asm/prom.h>
Paul Mackerras271c3f32005-11-11 23:04:40 +110035#include <asm/vdso_datapage.h>
Nathan Fontenot22e1a4d2008-07-24 04:31:52 +100036#include <asm/vio.h>
Brian King46db2f82009-08-28 12:06:29 +000037#include <asm/mmu.h>
Benjamin Herrenschmidtf5f6cbb2013-08-27 16:38:33 +100038#include <asm/machdep.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Michael Ellerman8f272a52016-11-14 16:28:10 +110040#include "pseries.h"
Benjamin Herrenschmidtf5f6cbb2013-08-27 16:38:33 +100041
42/*
43 * This isn't a module but we expose that to userspace
44 * via /proc so leave the definitions here
45 */
Vaidyanathan Srinivasan6fe9d1f2010-03-31 21:39:24 +000046#define MODULE_VERS "1.9"
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#define MODULE_NAME "lparcfg"
48
49/* #define LPARCFG_DEBUG */
50
Linus Torvalds1da177e2005-04-16 15:20:36 -070051/*
Stephen Rothwell16e9f992006-06-29 15:07:42 +100052 * Track sum of all purrs across all processors. This is used to further
53 * calculate usage values by different applications
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 */
55static unsigned long get_purr(void)
56{
57 unsigned long sum_purr = 0;
58 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
KAMEZAWA Hiroyuki0e551952006-03-28 14:50:51 -080060 for_each_possible_cpu(cpu) {
Stephen Rothwellf5339272012-03-15 18:18:00 +000061 struct cpu_usage *cu;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Stephen Rothwellf5339272012-03-15 18:18:00 +000063 cu = &per_cpu(cpu_usage_array, cpu);
64 sum_purr += cu->current_tb;
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 }
66 return sum_purr;
67}
68
David Gibsond3d21762005-11-10 15:26:20 +110069/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 * Methods used to fetch LPAR data when running on a pSeries platform.
71 */
Nathan Fontenotdfc34032008-07-24 04:27:30 +100072
Robert Jennings398778f2008-07-24 04:28:05 +100073struct hvcall_ppp_data {
74 u64 entitlement;
75 u64 unallocated_entitlement;
76 u16 group_num;
77 u16 pool_num;
78 u8 capped;
79 u8 weight;
80 u8 unallocated_weight;
81 u16 active_procs_in_pool;
82 u16 active_system_procs;
Nathan Fontenotf03cdb32009-05-27 04:41:21 +000083 u16 phys_platform_procs;
84 u32 max_proc_cap_avail;
85 u32 entitled_proc_cap_avail;
Robert Jennings398778f2008-07-24 04:28:05 +100086};
87
Linus Torvalds1da177e2005-04-16 15:20:36 -070088/*
89 * H_GET_PPP hcall returns info in 4 parms.
90 * entitled_capacity,unallocated_capacity,
91 * aggregation, resource_capability).
92 *
David Gibsond3d21762005-11-10 15:26:20 +110093 * R4 = Entitled Processor Capacity Percentage.
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 * R5 = Unallocated Processor Capacity Percentage.
95 * R6 (AABBCCDDEEFFGGHH).
96 * XXXX - reserved (0)
97 * XXXX - reserved (0)
98 * XXXX - Group Number
99 * XXXX - Pool Number.
100 * R7 (IIJJKKLLMMNNOOPP).
101 * XX - reserved. (0)
102 * XX - bit 0-6 reserved (0). bit 7 is Capped indicator.
103 * XX - variable processor Capacity Weight
104 * XX - Unallocated Variable Processor Capacity Weight.
105 * XXXX - Active processors in Physical Processor Pool.
David Gibsond3d21762005-11-10 15:26:20 +1100106 * XXXX - Processors active on platform.
Nathan Fontenotf03cdb32009-05-27 04:41:21 +0000107 * R8 (QQQQRRRRRRSSSSSS). if ibm,partition-performance-parameters-level >= 1
108 * XXXX - Physical platform procs allocated to virtualization.
109 * XXXXXX - Max procs capacity % available to the partitions pool.
110 * XXXXXX - Entitled procs capacity % available to the
111 * partitions pool.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 */
Robert Jennings398778f2008-07-24 04:28:05 +1000113static unsigned int h_get_ppp(struct hvcall_ppp_data *ppp_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114{
115 unsigned long rc;
Nathan Fontenotf03cdb32009-05-27 04:41:21 +0000116 unsigned long retbuf[PLPAR_HCALL9_BUFSIZE];
Anton Blanchardb9377ff2006-07-19 08:01:28 +1000117
Nathan Fontenotf03cdb32009-05-27 04:41:21 +0000118 rc = plpar_hcall9(H_GET_PPP, retbuf);
Anton Blanchardb9377ff2006-07-19 08:01:28 +1000119
Robert Jennings398778f2008-07-24 04:28:05 +1000120 ppp_data->entitlement = retbuf[0];
121 ppp_data->unallocated_entitlement = retbuf[1];
122
123 ppp_data->group_num = (retbuf[2] >> 2 * 8) & 0xffff;
124 ppp_data->pool_num = retbuf[2] & 0xffff;
125
126 ppp_data->capped = (retbuf[3] >> 6 * 8) & 0x01;
127 ppp_data->weight = (retbuf[3] >> 5 * 8) & 0xff;
128 ppp_data->unallocated_weight = (retbuf[3] >> 4 * 8) & 0xff;
129 ppp_data->active_procs_in_pool = (retbuf[3] >> 2 * 8) & 0xffff;
130 ppp_data->active_system_procs = retbuf[3] & 0xffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
Nathan Fontenotf03cdb32009-05-27 04:41:21 +0000132 ppp_data->phys_platform_procs = retbuf[4] >> 6 * 8;
133 ppp_data->max_proc_cap_avail = (retbuf[4] >> 3 * 8) & 0xffffff;
134 ppp_data->entitled_proc_cap_avail = retbuf[4] & 0xffffff;
135
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 return rc;
137}
138
Nathan Fotenot11529392008-07-24 04:25:16 +1000139static unsigned h_pic(unsigned long *pool_idle_time,
140 unsigned long *num_procs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141{
142 unsigned long rc;
Anton Blanchardb9377ff2006-07-19 08:01:28 +1000143 unsigned long retbuf[PLPAR_HCALL_BUFSIZE];
144
145 rc = plpar_hcall(H_PIC, retbuf);
146
147 *pool_idle_time = retbuf[0];
148 *num_procs = retbuf[1];
Nathan Fotenot11529392008-07-24 04:25:16 +1000149
150 return rc;
151}
152
153/*
154 * parse_ppp_data
155 * Parse out the data returned from h_get_ppp and h_pic
156 */
157static void parse_ppp_data(struct seq_file *m)
158{
Robert Jennings398778f2008-07-24 04:28:05 +1000159 struct hvcall_ppp_data ppp_data;
Nathan Fontenotf03cdb32009-05-27 04:41:21 +0000160 struct device_node *root;
Anton Blanchardca5de4e2013-12-12 15:59:37 +1100161 const __be32 *perf_level;
Nathan Fotenot11529392008-07-24 04:25:16 +1000162 int rc;
163
Robert Jennings398778f2008-07-24 04:28:05 +1000164 rc = h_get_ppp(&ppp_data);
Nathan Fotenot11529392008-07-24 04:25:16 +1000165 if (rc)
166 return;
167
Ingo Molnarfe333322009-01-06 14:26:03 +0000168 seq_printf(m, "partition_entitled_capacity=%lld\n",
Robert Jennings398778f2008-07-24 04:28:05 +1000169 ppp_data.entitlement);
170 seq_printf(m, "group=%d\n", ppp_data.group_num);
171 seq_printf(m, "system_active_processors=%d\n",
172 ppp_data.active_system_procs);
Nathan Fotenot11529392008-07-24 04:25:16 +1000173
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300174 /* pool related entries are appropriate for shared configs */
Anton Blanchardf13c13a2013-08-07 02:01:26 +1000175 if (lppaca_shared_proc(get_lppaca())) {
Nathan Fotenot11529392008-07-24 04:25:16 +1000176 unsigned long pool_idle_time, pool_procs;
177
Robert Jennings398778f2008-07-24 04:28:05 +1000178 seq_printf(m, "pool=%d\n", ppp_data.pool_num);
Nathan Fotenot11529392008-07-24 04:25:16 +1000179
180 /* report pool_capacity in percentage */
Robert Jennings398778f2008-07-24 04:28:05 +1000181 seq_printf(m, "pool_capacity=%d\n",
182 ppp_data.active_procs_in_pool * 100);
Nathan Fotenot11529392008-07-24 04:25:16 +1000183
184 h_pic(&pool_idle_time, &pool_procs);
185 seq_printf(m, "pool_idle_time=%ld\n", pool_idle_time);
186 seq_printf(m, "pool_num_procs=%ld\n", pool_procs);
187 }
188
Robert Jennings398778f2008-07-24 04:28:05 +1000189 seq_printf(m, "unallocated_capacity_weight=%d\n",
190 ppp_data.unallocated_weight);
191 seq_printf(m, "capacity_weight=%d\n", ppp_data.weight);
192 seq_printf(m, "capped=%d\n", ppp_data.capped);
Ingo Molnarfe333322009-01-06 14:26:03 +0000193 seq_printf(m, "unallocated_capacity=%lld\n",
Robert Jennings398778f2008-07-24 04:28:05 +1000194 ppp_data.unallocated_entitlement);
Nathan Fontenotf03cdb32009-05-27 04:41:21 +0000195
196 /* The last bits of information returned from h_get_ppp are only
197 * valid if the ibm,partition-performance-parameters-level
198 * property is >= 1.
199 */
200 root = of_find_node_by_path("/");
201 if (root) {
202 perf_level = of_get_property(root,
203 "ibm,partition-performance-parameters-level",
204 NULL);
Anton Blanchardca5de4e2013-12-12 15:59:37 +1100205 if (perf_level && (be32_to_cpup(perf_level) >= 1)) {
Nathan Fontenotf03cdb32009-05-27 04:41:21 +0000206 seq_printf(m,
207 "physical_procs_allocated_to_virtualization=%d\n",
208 ppp_data.phys_platform_procs);
209 seq_printf(m, "max_proc_capacity_available=%d\n",
210 ppp_data.max_proc_cap_avail);
211 seq_printf(m, "entitled_proc_capacity_available=%d\n",
212 ppp_data.entitled_proc_cap_avail);
213 }
214
215 of_node_put(root);
216 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217}
218
Nathan Fontenotdfc34032008-07-24 04:27:30 +1000219/**
220 * parse_mpp_data
221 * Parse out data returned from h_get_mpp
222 */
223static void parse_mpp_data(struct seq_file *m)
224{
225 struct hvcall_mpp_data mpp_data;
226 int rc;
227
228 rc = h_get_mpp(&mpp_data);
229 if (rc)
230 return;
231
232 seq_printf(m, "entitled_memory=%ld\n", mpp_data.entitled_mem);
233
234 if (mpp_data.mapped_mem != -1)
235 seq_printf(m, "mapped_entitled_memory=%ld\n",
236 mpp_data.mapped_mem);
237
238 seq_printf(m, "entitled_memory_group_number=%d\n", mpp_data.group_num);
239 seq_printf(m, "entitled_memory_pool_number=%d\n", mpp_data.pool_num);
240
241 seq_printf(m, "entitled_memory_weight=%d\n", mpp_data.mem_weight);
242 seq_printf(m, "unallocated_entitled_memory_weight=%d\n",
243 mpp_data.unallocated_mem_weight);
244 seq_printf(m, "unallocated_io_mapping_entitlement=%ld\n",
245 mpp_data.unallocated_entitlement);
246
247 if (mpp_data.pool_size != -1)
248 seq_printf(m, "entitled_memory_pool_size=%ld bytes\n",
249 mpp_data.pool_size);
250
251 seq_printf(m, "entitled_memory_loan_request=%ld\n",
252 mpp_data.loan_request);
253
254 seq_printf(m, "backing_memory=%ld bytes\n", mpp_data.backing_mem);
255}
256
Brian King9ee820f2011-05-04 16:01:20 +1000257/**
258 * parse_mpp_x_data
259 * Parse out data returned from h_get_mpp_x
260 */
261static void parse_mpp_x_data(struct seq_file *m)
262{
263 struct hvcall_mpp_x_data mpp_x_data;
264
265 if (!firmware_has_feature(FW_FEATURE_XCMO))
266 return;
267 if (h_get_mpp_x(&mpp_x_data))
268 return;
269
270 seq_printf(m, "coalesced_bytes=%ld\n", mpp_x_data.coalesced_bytes);
271
272 if (mpp_x_data.pool_coalesced_bytes)
273 seq_printf(m, "pool_coalesced_bytes=%ld\n",
274 mpp_x_data.pool_coalesced_bytes);
275 if (mpp_x_data.pool_purr_cycles)
276 seq_printf(m, "coalesce_pool_purr=%ld\n", mpp_x_data.pool_purr_cycles);
277 if (mpp_x_data.pool_spurr_cycles)
278 seq_printf(m, "coalesce_pool_spurr=%ld\n", mpp_x_data.pool_spurr_cycles);
279}
280
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281#define SPLPAR_CHARACTERISTICS_TOKEN 20
282#define SPLPAR_MAXLENGTH 1026*(sizeof(char))
283
284/*
285 * parse_system_parameter_string()
286 * Retrieve the potential_processors, max_entitled_capacity and friends
287 * through the get-system-parameter rtas call. Replace keyword strings as
288 * necessary.
289 */
290static void parse_system_parameter_string(struct seq_file *m)
291{
292 int call_status;
293
Will Schmidt34422fe2006-03-31 09:07:48 -0600294 unsigned char *local_buffer = kmalloc(SPLPAR_MAXLENGTH, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 if (!local_buffer) {
Frans Pop8354be92010-02-06 07:47:20 +0000296 printk(KERN_ERR "%s %s kmalloc failure at line %d\n",
Harvey Harrisone48b1b42008-03-29 08:21:07 +1100297 __FILE__, __func__, __LINE__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 return;
299 }
300
301 spin_lock(&rtas_data_buf_lock);
302 memset(rtas_data_buf, 0, SPLPAR_MAXLENGTH);
303 call_status = rtas_call(rtas_token("ibm,get-system-parameter"), 3, 1,
304 NULL,
305 SPLPAR_CHARACTERISTICS_TOKEN,
Will Schmidt34422fe2006-03-31 09:07:48 -0600306 __pa(rtas_data_buf),
307 RTAS_DATA_BUF_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 memcpy(local_buffer, rtas_data_buf, SPLPAR_MAXLENGTH);
Chen Gang56760052013-04-22 17:12:54 +0000309 local_buffer[SPLPAR_MAXLENGTH - 1] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 spin_unlock(&rtas_data_buf_lock);
311
312 if (call_status != 0) {
313 printk(KERN_INFO
314 "%s %s Error calling get-system-parameter (0x%x)\n",
Harvey Harrisone48b1b42008-03-29 08:21:07 +1100315 __FILE__, __func__, call_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 } else {
317 int splpar_strlen;
318 int idx, w_idx;
Yoann Padioleaudd00cc42007-07-19 01:49:03 -0700319 char *workbuffer = kzalloc(SPLPAR_MAXLENGTH, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 if (!workbuffer) {
Frans Pop8354be92010-02-06 07:47:20 +0000321 printk(KERN_ERR "%s %s kmalloc failure at line %d\n",
Harvey Harrisone48b1b42008-03-29 08:21:07 +1100322 __FILE__, __func__, __LINE__);
David Gibsond3d21762005-11-10 15:26:20 +1100323 kfree(local_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 return;
325 }
326#ifdef LPARCFG_DEBUG
Frans Pop8354be92010-02-06 07:47:20 +0000327 printk(KERN_INFO "success calling get-system-parameter\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328#endif
Will Schmidt34422fe2006-03-31 09:07:48 -0600329 splpar_strlen = local_buffer[0] * 256 + local_buffer[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 local_buffer += 2; /* step over strlen value */
331
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 w_idx = 0;
333 idx = 0;
334 while ((*local_buffer) && (idx < splpar_strlen)) {
335 workbuffer[w_idx++] = local_buffer[idx++];
336 if ((local_buffer[idx] == ',')
337 || (local_buffer[idx] == '\0')) {
338 workbuffer[w_idx] = '\0';
339 if (w_idx) {
340 /* avoid the empty string */
341 seq_printf(m, "%s\n", workbuffer);
342 }
343 memset(workbuffer, 0, SPLPAR_MAXLENGTH);
344 idx++; /* skip the comma */
345 w_idx = 0;
346 } else if (local_buffer[idx] == '=') {
347 /* code here to replace workbuffer contents
348 with different keyword strings */
349 if (0 == strcmp(workbuffer, "MaxEntCap")) {
350 strcpy(workbuffer,
351 "partition_max_entitled_capacity");
352 w_idx = strlen(workbuffer);
353 }
354 if (0 == strcmp(workbuffer, "MaxPlatProcs")) {
355 strcpy(workbuffer,
356 "system_potential_processors");
357 w_idx = strlen(workbuffer);
358 }
359 }
360 }
361 kfree(workbuffer);
362 local_buffer -= 2; /* back up over strlen value */
363 }
364 kfree(local_buffer);
365}
366
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367/* Return the number of processors in the system.
368 * This function reads through the device tree and counts
369 * the virtual processors, this does not include threads.
370 */
371static int lparcfg_count_active_processors(void)
372{
Dmitry Torokhov9625e692017-01-31 17:54:38 -0800373 struct device_node *cpus_dn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 int count = 0;
375
Dmitry Torokhov9625e692017-01-31 17:54:38 -0800376 for_each_node_by_type(cpus_dn, "cpu") {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377#ifdef LPARCFG_DEBUG
Frans Pop8354be92010-02-06 07:47:20 +0000378 printk(KERN_ERR "cpus_dn %p\n", cpus_dn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379#endif
380 count++;
381 }
382 return count;
383}
384
Brian Kingffa5abb2008-07-24 04:30:58 +1000385static void pseries_cmo_data(struct seq_file *m)
386{
387 int cpu;
388 unsigned long cmo_faults = 0;
389 unsigned long cmo_fault_time = 0;
390
Robert Jenningsac224292008-08-16 05:10:18 +1000391 seq_printf(m, "cmo_enabled=%d\n", firmware_has_feature(FW_FEATURE_CMO));
392
Brian Kingffa5abb2008-07-24 04:30:58 +1000393 if (!firmware_has_feature(FW_FEATURE_CMO))
394 return;
395
396 for_each_possible_cpu(cpu) {
Anton Blanchard7ffcf8e2013-08-07 02:01:46 +1000397 cmo_faults += be64_to_cpu(lppaca_of(cpu).cmo_faults);
398 cmo_fault_time += be64_to_cpu(lppaca_of(cpu).cmo_fault_time);
Brian Kingffa5abb2008-07-24 04:30:58 +1000399 }
400
401 seq_printf(m, "cmo_faults=%lu\n", cmo_faults);
402 seq_printf(m, "cmo_fault_time_usec=%lu\n",
403 cmo_fault_time / tb_ticks_per_usec);
Robert Jenningsac224292008-08-16 05:10:18 +1000404 seq_printf(m, "cmo_primary_psp=%d\n", cmo_get_primary_psp());
405 seq_printf(m, "cmo_secondary_psp=%d\n", cmo_get_secondary_psp());
406 seq_printf(m, "cmo_page_size=%lu\n", cmo_get_page_size());
Brian Kingffa5abb2008-07-24 04:30:58 +1000407}
408
Anton Blanchard0559f0a2009-03-31 20:12:44 +0000409static void splpar_dispatch_data(struct seq_file *m)
410{
411 int cpu;
412 unsigned long dispatches = 0;
413 unsigned long dispatch_dispersions = 0;
414
415 for_each_possible_cpu(cpu) {
Anton Blanchard7ffcf8e2013-08-07 02:01:46 +1000416 dispatches += be32_to_cpu(lppaca_of(cpu).yield_count);
417 dispatch_dispersions +=
418 be32_to_cpu(lppaca_of(cpu).dispersion_count);
Anton Blanchard0559f0a2009-03-31 20:12:44 +0000419 }
420
421 seq_printf(m, "dispatches=%lu\n", dispatches);
422 seq_printf(m, "dispatch_dispersions=%lu\n", dispatch_dispersions);
423}
424
Vaidyanathan Srinivasan6fe9d1f2010-03-31 21:39:24 +0000425static void parse_em_data(struct seq_file *m)
426{
427 unsigned long retbuf[PLPAR_HCALL_BUFSIZE];
428
Benjamin Herrenschmidtf5f6cbb2013-08-27 16:38:33 +1000429 if (firmware_has_feature(FW_FEATURE_LPAR) &&
430 plpar_hcall(H_GET_EM_PARMS, retbuf) == H_SUCCESS)
Vaidyanathan Srinivasan6fe9d1f2010-03-31 21:39:24 +0000431 seq_printf(m, "power_mode_data=%016lx\n", retbuf[0]);
432}
433
Stephen Rothwell16e9f992006-06-29 15:07:42 +1000434static int pseries_lparcfg_data(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435{
436 int partition_potential_processors;
437 int partition_active_processors;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 struct device_node *rtas_node;
Anton Blanchardca5de4e2013-12-12 15:59:37 +1100439 const __be32 *lrdrp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
Stephen Rothwell8c8dc322007-04-24 13:50:55 +1000441 rtas_node = of_find_node_by_path("/rtas");
Olof Johansson2b9a32e2006-02-15 21:40:44 -0600442 if (rtas_node)
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000443 lrdrp = of_get_property(rtas_node, "ibm,lrdr-capacity", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
445 if (lrdrp == NULL) {
Paul Mackerras271c3f32005-11-11 23:04:40 +1100446 partition_potential_processors = vdso_data->processorCount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 } else {
Anton Blanchardca5de4e2013-12-12 15:59:37 +1100448 partition_potential_processors = be32_to_cpup(lrdrp + 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 }
Stephen Rothwell8c8dc322007-04-24 13:50:55 +1000450 of_node_put(rtas_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
452 partition_active_processors = lparcfg_count_active_processors();
453
Stephen Rothwell1ababe12005-08-03 14:35:25 +1000454 if (firmware_has_feature(FW_FEATURE_SPLPAR)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 /* this call handles the ibm,get-system-parameter contents */
456 parse_system_parameter_string(m);
Nathan Fotenot11529392008-07-24 04:25:16 +1000457 parse_ppp_data(m);
Nathan Fontenotdfc34032008-07-24 04:27:30 +1000458 parse_mpp_data(m);
Brian King9ee820f2011-05-04 16:01:20 +1000459 parse_mpp_x_data(m);
Brian Kingffa5abb2008-07-24 04:30:58 +1000460 pseries_cmo_data(m);
Anton Blanchard0559f0a2009-03-31 20:12:44 +0000461 splpar_dispatch_data(m);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
Nathan Fotenot11529392008-07-24 04:25:16 +1000463 seq_printf(m, "purr=%ld\n", get_purr());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 } else { /* non SPLPAR case */
465
466 seq_printf(m, "system_active_processors=%d\n",
467 partition_potential_processors);
468
469 seq_printf(m, "system_potential_processors=%d\n",
470 partition_potential_processors);
471
472 seq_printf(m, "partition_max_entitled_capacity=%d\n",
473 partition_potential_processors * 100);
474
475 seq_printf(m, "partition_entitled_capacity=%d\n",
476 partition_active_processors * 100);
477 }
478
479 seq_printf(m, "partition_active_processors=%d\n",
480 partition_active_processors);
481
482 seq_printf(m, "partition_potential_processors=%d\n",
483 partition_potential_processors);
484
Anton Blanchardf13c13a2013-08-07 02:01:26 +1000485 seq_printf(m, "shared_processor_mode=%d\n",
486 lppaca_shared_proc(get_lppaca()));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
Michael Ellerman4e003742017-10-19 15:08:43 +1100488#ifdef CONFIG_PPC_BOOK3S_64
Brian King46db2f82009-08-28 12:06:29 +0000489 seq_printf(m, "slb_size=%d\n", mmu_slb_size);
Aneesh Kumar K.Vd8c476e2016-04-29 23:26:08 +1000490#endif
Vaidyanathan Srinivasan6fe9d1f2010-03-31 21:39:24 +0000491 parse_em_data(m);
492
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 return 0;
494}
495
Nathan Fotenot11529392008-07-24 04:25:16 +1000496static ssize_t update_ppp(u64 *entitlement, u8 *weight)
497{
Robert Jennings398778f2008-07-24 04:28:05 +1000498 struct hvcall_ppp_data ppp_data;
499 u8 new_weight;
Nathan Fotenot11529392008-07-24 04:25:16 +1000500 u64 new_entitled;
501 ssize_t retval;
502
503 /* Get our current parameters */
Robert Jennings398778f2008-07-24 04:28:05 +1000504 retval = h_get_ppp(&ppp_data);
Nathan Fotenot11529392008-07-24 04:25:16 +1000505 if (retval)
506 return retval;
507
Nathan Fotenot11529392008-07-24 04:25:16 +1000508 if (entitlement) {
Robert Jennings398778f2008-07-24 04:28:05 +1000509 new_weight = ppp_data.weight;
Nathan Fotenot11529392008-07-24 04:25:16 +1000510 new_entitled = *entitlement;
511 } else if (weight) {
512 new_weight = *weight;
Robert Jennings398778f2008-07-24 04:28:05 +1000513 new_entitled = ppp_data.entitlement;
Nathan Fotenot11529392008-07-24 04:25:16 +1000514 } else
515 return -EINVAL;
516
Ingo Molnarfe333322009-01-06 14:26:03 +0000517 pr_debug("%s: current_entitled = %llu, current_weight = %u\n",
Harvey Harrison5df72bf2008-07-31 05:29:03 +1000518 __func__, ppp_data.entitlement, ppp_data.weight);
Nathan Fotenot11529392008-07-24 04:25:16 +1000519
Ingo Molnarfe333322009-01-06 14:26:03 +0000520 pr_debug("%s: new_entitled = %llu, new_weight = %u\n",
Harvey Harrison5df72bf2008-07-31 05:29:03 +1000521 __func__, new_entitled, new_weight);
Nathan Fotenot11529392008-07-24 04:25:16 +1000522
523 retval = plpar_hcall_norets(H_SET_PPP, new_entitled, new_weight);
524 return retval;
525}
526
Nathan Fontenotdfc34032008-07-24 04:27:30 +1000527/**
528 * update_mpp
529 *
530 * Update the memory entitlement and weight for the partition. Caller must
531 * specify either a new entitlement or weight, not both, to be updated
532 * since the h_set_mpp call takes both entitlement and weight as parameters.
533 */
534static ssize_t update_mpp(u64 *entitlement, u8 *weight)
535{
536 struct hvcall_mpp_data mpp_data;
537 u64 new_entitled;
538 u8 new_weight;
539 ssize_t rc;
540
Nathan Fontenot22e1a4d2008-07-24 04:31:52 +1000541 if (entitlement) {
542 /* Check with vio to ensure the new memory entitlement
543 * can be handled.
544 */
545 rc = vio_cmo_entitlement_update(*entitlement);
546 if (rc)
547 return rc;
548 }
549
Nathan Fontenotdfc34032008-07-24 04:27:30 +1000550 rc = h_get_mpp(&mpp_data);
551 if (rc)
552 return rc;
553
554 if (entitlement) {
555 new_weight = mpp_data.mem_weight;
556 new_entitled = *entitlement;
557 } else if (weight) {
558 new_weight = *weight;
559 new_entitled = mpp_data.entitled_mem;
560 } else
561 return -EINVAL;
562
563 pr_debug("%s: current_entitled = %lu, current_weight = %u\n",
Harvey Harrison5df72bf2008-07-31 05:29:03 +1000564 __func__, mpp_data.entitled_mem, mpp_data.mem_weight);
Nathan Fontenotdfc34032008-07-24 04:27:30 +1000565
Ingo Molnarfe333322009-01-06 14:26:03 +0000566 pr_debug("%s: new_entitled = %llu, new_weight = %u\n",
Harvey Harrison5df72bf2008-07-31 05:29:03 +1000567 __func__, new_entitled, new_weight);
Nathan Fontenotdfc34032008-07-24 04:27:30 +1000568
569 rc = plpar_hcall_norets(H_SET_MPP, new_entitled, new_weight);
570 return rc;
571}
572
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573/*
574 * Interface for changing system parameters (variable capacity weight
575 * and entitled capacity). Format of input is "param_name=value";
576 * anything after value is ignored. Valid parameters at this time are
577 * "partition_entitled_capacity" and "capacity_weight". We use
578 * H_SET_PPP to alter parameters.
579 *
580 * This function should be invoked only on systems with
581 * FW_FEATURE_SPLPAR.
582 */
583static ssize_t lparcfg_write(struct file *file, const char __user * buf,
584 size_t count, loff_t * off)
585{
Nathan Fontenot16c14b42008-07-24 05:10:46 +1000586 int kbuf_sz = 64;
587 char kbuf[kbuf_sz];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 char *tmp;
589 u64 new_entitled, *new_entitled_ptr = &new_entitled;
590 u8 new_weight, *new_weight_ptr = &new_weight;
Nathan Fontenot16c14b42008-07-24 05:10:46 +1000591 ssize_t retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
Stephen Rothwellf5339272012-03-15 18:18:00 +0000593 if (!firmware_has_feature(FW_FEATURE_SPLPAR))
Stephen Rothwell0524aad2007-02-05 16:14:05 -0800594 return -EINVAL;
595
Nathan Fontenot16c14b42008-07-24 05:10:46 +1000596 if (count > kbuf_sz)
597 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 if (copy_from_user(kbuf, buf, count))
Nathan Fontenot16c14b42008-07-24 05:10:46 +1000600 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 kbuf[count - 1] = '\0';
603 tmp = strchr(kbuf, '=');
604 if (!tmp)
Nathan Fontenot16c14b42008-07-24 05:10:46 +1000605 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
607 *tmp++ = '\0';
608
609 if (!strcmp(kbuf, "partition_entitled_capacity")) {
610 char *endp;
611 *new_entitled_ptr = (u64) simple_strtoul(tmp, &endp, 10);
612 if (endp == tmp)
Nathan Fontenot16c14b42008-07-24 05:10:46 +1000613 return -EINVAL;
Nathan Fotenot11529392008-07-24 04:25:16 +1000614
615 retval = update_ppp(new_entitled_ptr, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 } else if (!strcmp(kbuf, "capacity_weight")) {
617 char *endp;
618 *new_weight_ptr = (u8) simple_strtoul(tmp, &endp, 10);
619 if (endp == tmp)
Nathan Fontenot16c14b42008-07-24 05:10:46 +1000620 return -EINVAL;
Nathan Fotenot11529392008-07-24 04:25:16 +1000621
622 retval = update_ppp(NULL, new_weight_ptr);
Nathan Fontenotdfc34032008-07-24 04:27:30 +1000623 } else if (!strcmp(kbuf, "entitled_memory")) {
624 char *endp;
625 *new_entitled_ptr = (u64) simple_strtoul(tmp, &endp, 10);
626 if (endp == tmp)
Nathan Fontenot16c14b42008-07-24 05:10:46 +1000627 return -EINVAL;
Nathan Fontenotdfc34032008-07-24 04:27:30 +1000628
629 retval = update_mpp(new_entitled_ptr, NULL);
630 } else if (!strcmp(kbuf, "entitled_memory_weight")) {
631 char *endp;
632 *new_weight_ptr = (u8) simple_strtoul(tmp, &endp, 10);
633 if (endp == tmp)
Nathan Fontenot16c14b42008-07-24 05:10:46 +1000634 return -EINVAL;
Nathan Fontenotdfc34032008-07-24 04:27:30 +1000635
636 retval = update_mpp(NULL, new_weight_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 } else
Nathan Fontenot16c14b42008-07-24 05:10:46 +1000638 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
Segher Boessenkool706c8c92006-03-30 14:49:40 +0200640 if (retval == H_SUCCESS || retval == H_CONSTRAINED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 retval = count;
Segher Boessenkool706c8c92006-03-30 14:49:40 +0200642 } else if (retval == H_BUSY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 retval = -EBUSY;
Segher Boessenkool706c8c92006-03-30 14:49:40 +0200644 } else if (retval == H_HARDWARE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 retval = -EIO;
Segher Boessenkool706c8c92006-03-30 14:49:40 +0200646 } else if (retval == H_PARAMETER) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 retval = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 }
649
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 return retval;
651}
652
Stephen Rothwell16e9f992006-06-29 15:07:42 +1000653static int lparcfg_data(struct seq_file *m, void *v)
654{
655 struct device_node *rootdn;
656 const char *model = "";
657 const char *system_id = "";
658 const char *tmp;
Anton Blanchardca5de4e2013-12-12 15:59:37 +1100659 const __be32 *lp_index_ptr;
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000660 unsigned int lp_index = 0;
Stephen Rothwell16e9f992006-06-29 15:07:42 +1000661
Frans Pop8354be92010-02-06 07:47:20 +0000662 seq_printf(m, "%s %s\n", MODULE_NAME, MODULE_VERS);
Stephen Rothwell16e9f992006-06-29 15:07:42 +1000663
Stephen Rothwell8c8dc322007-04-24 13:50:55 +1000664 rootdn = of_find_node_by_path("/");
Stephen Rothwell16e9f992006-06-29 15:07:42 +1000665 if (rootdn) {
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000666 tmp = of_get_property(rootdn, "model", NULL);
Stephen Rothwellf5339272012-03-15 18:18:00 +0000667 if (tmp)
Stephen Rothwell16e9f992006-06-29 15:07:42 +1000668 model = tmp;
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000669 tmp = of_get_property(rootdn, "system-id", NULL);
Stephen Rothwellf5339272012-03-15 18:18:00 +0000670 if (tmp)
Stephen Rothwell16e9f992006-06-29 15:07:42 +1000671 system_id = tmp;
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000672 lp_index_ptr = of_get_property(rootdn, "ibm,partition-no",
673 NULL);
Stephen Rothwell16e9f992006-06-29 15:07:42 +1000674 if (lp_index_ptr)
Anton Blanchardca5de4e2013-12-12 15:59:37 +1100675 lp_index = be32_to_cpup(lp_index_ptr);
Stephen Rothwell8c8dc322007-04-24 13:50:55 +1000676 of_node_put(rootdn);
Stephen Rothwell16e9f992006-06-29 15:07:42 +1000677 }
678 seq_printf(m, "serial_number=%s\n", system_id);
679 seq_printf(m, "system_type=%s\n", model);
680 seq_printf(m, "partition_id=%d\n", (int)lp_index);
681
Stephen Rothwell16e9f992006-06-29 15:07:42 +1000682 return pseries_lparcfg_data(m, v);
683}
684
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685static int lparcfg_open(struct inode *inode, struct file *file)
686{
687 return single_open(file, lparcfg_data, NULL);
688}
689
Michael Ellerman1c21a292008-05-08 14:27:19 +1000690static const struct file_operations lparcfg_fops = {
Anton Blanchard8acb8882005-11-11 13:53:11 +1100691 .read = seq_read,
Stephen Rothwell0524aad2007-02-05 16:14:05 -0800692 .write = lparcfg_write,
Anton Blanchard8acb8882005-11-11 13:53:11 +1100693 .open = lparcfg_open,
694 .release = single_release,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200695 .llseek = seq_lseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696};
697
Michael Ellerman1c21a292008-05-08 14:27:19 +1000698static int __init lparcfg_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699{
Al Virod161a132011-07-24 03:36:29 -0400700 umode_t mode = S_IRUSR | S_IRGRP | S_IROTH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701
702 /* Allow writing if we have FW_FEATURE_SPLPAR */
Stephen Rothwellf5339272012-03-15 18:18:00 +0000703 if (firmware_has_feature(FW_FEATURE_SPLPAR))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 mode |= S_IWUSR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
Al Virob177a292013-03-31 23:21:50 -0400706 if (!proc_create("powerpc/lparcfg", mode, NULL, &lparcfg_fops)) {
Benjamin Herrenschmidt188917e2009-09-24 19:29:13 +0000707 printk(KERN_ERR "Failed to create powerpc/lparcfg\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 return -EIO;
709 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 return 0;
711}
Benjamin Herrenschmidtf5f6cbb2013-08-27 16:38:33 +1000712machine_device_initcall(pseries, lparcfg_init);