blob: e73c7e30efe638ecc697f34b89ca7996912847f9 [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>
Aravinda Prasad772b0392018-10-10 15:52:59 +053029#include <linux/hugetlb.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <asm/lppaca.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <asm/hvcall.h>
Stephen Rothwell1ababe12005-08-03 14:35:25 +100032#include <asm/firmware.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <asm/rtas.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <asm/time.h>
Michael Ellerman856509d2005-06-25 14:54:42 -070035#include <asm/prom.h>
Paul Mackerras271c3f32005-11-11 23:04:40 +110036#include <asm/vdso_datapage.h>
Nathan Fontenot22e1a4d2008-07-24 04:31:52 +100037#include <asm/vio.h>
Brian King46db2f82009-08-28 12:06:29 +000038#include <asm/mmu.h>
Benjamin Herrenschmidtf5f6cbb2013-08-27 16:38:33 +100039#include <asm/machdep.h>
Aravinda Prasad772b0392018-10-10 15:52:59 +053040#include <asm/drmem.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Michael Ellerman8f272a52016-11-14 16:28:10 +110042#include "pseries.h"
Benjamin Herrenschmidtf5f6cbb2013-08-27 16:38:33 +100043
44/*
45 * This isn't a module but we expose that to userspace
46 * via /proc so leave the definitions here
47 */
Vaidyanathan Srinivasan6fe9d1f2010-03-31 21:39:24 +000048#define MODULE_VERS "1.9"
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#define MODULE_NAME "lparcfg"
50
51/* #define LPARCFG_DEBUG */
52
Linus Torvalds1da177e2005-04-16 15:20:36 -070053/*
Stephen Rothwell16e9f992006-06-29 15:07:42 +100054 * Track sum of all purrs across all processors. This is used to further
55 * calculate usage values by different applications
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 */
Nicholas Piggin3d3a6022018-05-05 03:19:30 +100057static void cpu_get_purr(void *arg)
58{
59 atomic64_t *sum = arg;
60
61 atomic64_add(mfspr(SPRN_PURR), sum);
62}
63
Linus Torvalds1da177e2005-04-16 15:20:36 -070064static unsigned long get_purr(void)
65{
Nicholas Piggin3d3a6022018-05-05 03:19:30 +100066 atomic64_t purr = ATOMIC64_INIT(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Nicholas Piggin3d3a6022018-05-05 03:19:30 +100068 on_each_cpu(cpu_get_purr, &purr, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
Nicholas Piggin3d3a6022018-05-05 03:19:30 +100070 return atomic64_read(&purr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071}
72
David Gibsond3d21762005-11-10 15:26:20 +110073/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 * Methods used to fetch LPAR data when running on a pSeries platform.
75 */
Nathan Fontenotdfc34032008-07-24 04:27:30 +100076
Robert Jennings398778f2008-07-24 04:28:05 +100077struct hvcall_ppp_data {
78 u64 entitlement;
79 u64 unallocated_entitlement;
80 u16 group_num;
81 u16 pool_num;
82 u8 capped;
83 u8 weight;
84 u8 unallocated_weight;
85 u16 active_procs_in_pool;
86 u16 active_system_procs;
Nathan Fontenotf03cdb32009-05-27 04:41:21 +000087 u16 phys_platform_procs;
88 u32 max_proc_cap_avail;
89 u32 entitled_proc_cap_avail;
Robert Jennings398778f2008-07-24 04:28:05 +100090};
91
Linus Torvalds1da177e2005-04-16 15:20:36 -070092/*
93 * H_GET_PPP hcall returns info in 4 parms.
94 * entitled_capacity,unallocated_capacity,
95 * aggregation, resource_capability).
96 *
David Gibsond3d21762005-11-10 15:26:20 +110097 * R4 = Entitled Processor Capacity Percentage.
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 * R5 = Unallocated Processor Capacity Percentage.
99 * R6 (AABBCCDDEEFFGGHH).
100 * XXXX - reserved (0)
101 * XXXX - reserved (0)
102 * XXXX - Group Number
103 * XXXX - Pool Number.
104 * R7 (IIJJKKLLMMNNOOPP).
105 * XX - reserved. (0)
106 * XX - bit 0-6 reserved (0). bit 7 is Capped indicator.
107 * XX - variable processor Capacity Weight
108 * XX - Unallocated Variable Processor Capacity Weight.
109 * XXXX - Active processors in Physical Processor Pool.
David Gibsond3d21762005-11-10 15:26:20 +1100110 * XXXX - Processors active on platform.
Nathan Fontenotf03cdb32009-05-27 04:41:21 +0000111 * R8 (QQQQRRRRRRSSSSSS). if ibm,partition-performance-parameters-level >= 1
112 * XXXX - Physical platform procs allocated to virtualization.
113 * XXXXXX - Max procs capacity % available to the partitions pool.
114 * XXXXXX - Entitled procs capacity % available to the
115 * partitions pool.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 */
Robert Jennings398778f2008-07-24 04:28:05 +1000117static unsigned int h_get_ppp(struct hvcall_ppp_data *ppp_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118{
119 unsigned long rc;
Nathan Fontenotf03cdb32009-05-27 04:41:21 +0000120 unsigned long retbuf[PLPAR_HCALL9_BUFSIZE];
Anton Blanchardb9377ff2006-07-19 08:01:28 +1000121
Nathan Fontenotf03cdb32009-05-27 04:41:21 +0000122 rc = plpar_hcall9(H_GET_PPP, retbuf);
Anton Blanchardb9377ff2006-07-19 08:01:28 +1000123
Robert Jennings398778f2008-07-24 04:28:05 +1000124 ppp_data->entitlement = retbuf[0];
125 ppp_data->unallocated_entitlement = retbuf[1];
126
127 ppp_data->group_num = (retbuf[2] >> 2 * 8) & 0xffff;
128 ppp_data->pool_num = retbuf[2] & 0xffff;
129
130 ppp_data->capped = (retbuf[3] >> 6 * 8) & 0x01;
131 ppp_data->weight = (retbuf[3] >> 5 * 8) & 0xff;
132 ppp_data->unallocated_weight = (retbuf[3] >> 4 * 8) & 0xff;
133 ppp_data->active_procs_in_pool = (retbuf[3] >> 2 * 8) & 0xffff;
134 ppp_data->active_system_procs = retbuf[3] & 0xffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
Nathan Fontenotf03cdb32009-05-27 04:41:21 +0000136 ppp_data->phys_platform_procs = retbuf[4] >> 6 * 8;
137 ppp_data->max_proc_cap_avail = (retbuf[4] >> 3 * 8) & 0xffffff;
138 ppp_data->entitled_proc_cap_avail = retbuf[4] & 0xffffff;
139
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 return rc;
141}
142
Nathan Fotenot11529392008-07-24 04:25:16 +1000143static unsigned h_pic(unsigned long *pool_idle_time,
144 unsigned long *num_procs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145{
146 unsigned long rc;
Anton Blanchardb9377ff2006-07-19 08:01:28 +1000147 unsigned long retbuf[PLPAR_HCALL_BUFSIZE];
148
149 rc = plpar_hcall(H_PIC, retbuf);
150
151 *pool_idle_time = retbuf[0];
152 *num_procs = retbuf[1];
Nathan Fotenot11529392008-07-24 04:25:16 +1000153
154 return rc;
155}
156
157/*
158 * parse_ppp_data
159 * Parse out the data returned from h_get_ppp and h_pic
160 */
161static void parse_ppp_data(struct seq_file *m)
162{
Robert Jennings398778f2008-07-24 04:28:05 +1000163 struct hvcall_ppp_data ppp_data;
Nathan Fontenotf03cdb32009-05-27 04:41:21 +0000164 struct device_node *root;
Anton Blanchardca5de4e2013-12-12 15:59:37 +1100165 const __be32 *perf_level;
Nathan Fotenot11529392008-07-24 04:25:16 +1000166 int rc;
167
Robert Jennings398778f2008-07-24 04:28:05 +1000168 rc = h_get_ppp(&ppp_data);
Nathan Fotenot11529392008-07-24 04:25:16 +1000169 if (rc)
170 return;
171
Ingo Molnarfe333322009-01-06 14:26:03 +0000172 seq_printf(m, "partition_entitled_capacity=%lld\n",
Robert Jennings398778f2008-07-24 04:28:05 +1000173 ppp_data.entitlement);
174 seq_printf(m, "group=%d\n", ppp_data.group_num);
175 seq_printf(m, "system_active_processors=%d\n",
176 ppp_data.active_system_procs);
Nathan Fotenot11529392008-07-24 04:25:16 +1000177
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300178 /* pool related entries are appropriate for shared configs */
Anton Blanchardf13c13a2013-08-07 02:01:26 +1000179 if (lppaca_shared_proc(get_lppaca())) {
Nathan Fotenot11529392008-07-24 04:25:16 +1000180 unsigned long pool_idle_time, pool_procs;
181
Robert Jennings398778f2008-07-24 04:28:05 +1000182 seq_printf(m, "pool=%d\n", ppp_data.pool_num);
Nathan Fotenot11529392008-07-24 04:25:16 +1000183
184 /* report pool_capacity in percentage */
Robert Jennings398778f2008-07-24 04:28:05 +1000185 seq_printf(m, "pool_capacity=%d\n",
186 ppp_data.active_procs_in_pool * 100);
Nathan Fotenot11529392008-07-24 04:25:16 +1000187
188 h_pic(&pool_idle_time, &pool_procs);
189 seq_printf(m, "pool_idle_time=%ld\n", pool_idle_time);
190 seq_printf(m, "pool_num_procs=%ld\n", pool_procs);
191 }
192
Robert Jennings398778f2008-07-24 04:28:05 +1000193 seq_printf(m, "unallocated_capacity_weight=%d\n",
194 ppp_data.unallocated_weight);
195 seq_printf(m, "capacity_weight=%d\n", ppp_data.weight);
196 seq_printf(m, "capped=%d\n", ppp_data.capped);
Ingo Molnarfe333322009-01-06 14:26:03 +0000197 seq_printf(m, "unallocated_capacity=%lld\n",
Robert Jennings398778f2008-07-24 04:28:05 +1000198 ppp_data.unallocated_entitlement);
Nathan Fontenotf03cdb32009-05-27 04:41:21 +0000199
200 /* The last bits of information returned from h_get_ppp are only
201 * valid if the ibm,partition-performance-parameters-level
202 * property is >= 1.
203 */
204 root = of_find_node_by_path("/");
205 if (root) {
206 perf_level = of_get_property(root,
207 "ibm,partition-performance-parameters-level",
208 NULL);
Anton Blanchardca5de4e2013-12-12 15:59:37 +1100209 if (perf_level && (be32_to_cpup(perf_level) >= 1)) {
Nathan Fontenotf03cdb32009-05-27 04:41:21 +0000210 seq_printf(m,
211 "physical_procs_allocated_to_virtualization=%d\n",
212 ppp_data.phys_platform_procs);
213 seq_printf(m, "max_proc_capacity_available=%d\n",
214 ppp_data.max_proc_cap_avail);
215 seq_printf(m, "entitled_proc_capacity_available=%d\n",
216 ppp_data.entitled_proc_cap_avail);
217 }
218
219 of_node_put(root);
220 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221}
222
Nathan Fontenotdfc34032008-07-24 04:27:30 +1000223/**
224 * parse_mpp_data
225 * Parse out data returned from h_get_mpp
226 */
227static void parse_mpp_data(struct seq_file *m)
228{
229 struct hvcall_mpp_data mpp_data;
230 int rc;
231
232 rc = h_get_mpp(&mpp_data);
233 if (rc)
234 return;
235
236 seq_printf(m, "entitled_memory=%ld\n", mpp_data.entitled_mem);
237
238 if (mpp_data.mapped_mem != -1)
239 seq_printf(m, "mapped_entitled_memory=%ld\n",
240 mpp_data.mapped_mem);
241
242 seq_printf(m, "entitled_memory_group_number=%d\n", mpp_data.group_num);
243 seq_printf(m, "entitled_memory_pool_number=%d\n", mpp_data.pool_num);
244
245 seq_printf(m, "entitled_memory_weight=%d\n", mpp_data.mem_weight);
246 seq_printf(m, "unallocated_entitled_memory_weight=%d\n",
247 mpp_data.unallocated_mem_weight);
248 seq_printf(m, "unallocated_io_mapping_entitlement=%ld\n",
249 mpp_data.unallocated_entitlement);
250
251 if (mpp_data.pool_size != -1)
252 seq_printf(m, "entitled_memory_pool_size=%ld bytes\n",
253 mpp_data.pool_size);
254
255 seq_printf(m, "entitled_memory_loan_request=%ld\n",
256 mpp_data.loan_request);
257
258 seq_printf(m, "backing_memory=%ld bytes\n", mpp_data.backing_mem);
259}
260
Brian King9ee820f2011-05-04 16:01:20 +1000261/**
262 * parse_mpp_x_data
263 * Parse out data returned from h_get_mpp_x
264 */
265static void parse_mpp_x_data(struct seq_file *m)
266{
267 struct hvcall_mpp_x_data mpp_x_data;
268
269 if (!firmware_has_feature(FW_FEATURE_XCMO))
270 return;
271 if (h_get_mpp_x(&mpp_x_data))
272 return;
273
274 seq_printf(m, "coalesced_bytes=%ld\n", mpp_x_data.coalesced_bytes);
275
276 if (mpp_x_data.pool_coalesced_bytes)
277 seq_printf(m, "pool_coalesced_bytes=%ld\n",
278 mpp_x_data.pool_coalesced_bytes);
279 if (mpp_x_data.pool_purr_cycles)
280 seq_printf(m, "coalesce_pool_purr=%ld\n", mpp_x_data.pool_purr_cycles);
281 if (mpp_x_data.pool_spurr_cycles)
282 seq_printf(m, "coalesce_pool_spurr=%ld\n", mpp_x_data.pool_spurr_cycles);
283}
284
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285#define SPLPAR_CHARACTERISTICS_TOKEN 20
286#define SPLPAR_MAXLENGTH 1026*(sizeof(char))
287
288/*
289 * parse_system_parameter_string()
290 * Retrieve the potential_processors, max_entitled_capacity and friends
291 * through the get-system-parameter rtas call. Replace keyword strings as
292 * necessary.
293 */
294static void parse_system_parameter_string(struct seq_file *m)
295{
296 int call_status;
297
Will Schmidt34422fe2006-03-31 09:07:48 -0600298 unsigned char *local_buffer = kmalloc(SPLPAR_MAXLENGTH, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 if (!local_buffer) {
Frans Pop8354be92010-02-06 07:47:20 +0000300 printk(KERN_ERR "%s %s kmalloc failure at line %d\n",
Harvey Harrisone48b1b42008-03-29 08:21:07 +1100301 __FILE__, __func__, __LINE__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 return;
303 }
304
305 spin_lock(&rtas_data_buf_lock);
306 memset(rtas_data_buf, 0, SPLPAR_MAXLENGTH);
307 call_status = rtas_call(rtas_token("ibm,get-system-parameter"), 3, 1,
308 NULL,
309 SPLPAR_CHARACTERISTICS_TOKEN,
Will Schmidt34422fe2006-03-31 09:07:48 -0600310 __pa(rtas_data_buf),
311 RTAS_DATA_BUF_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 memcpy(local_buffer, rtas_data_buf, SPLPAR_MAXLENGTH);
Chen Gang56760052013-04-22 17:12:54 +0000313 local_buffer[SPLPAR_MAXLENGTH - 1] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 spin_unlock(&rtas_data_buf_lock);
315
316 if (call_status != 0) {
317 printk(KERN_INFO
318 "%s %s Error calling get-system-parameter (0x%x)\n",
Harvey Harrisone48b1b42008-03-29 08:21:07 +1100319 __FILE__, __func__, call_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 } else {
321 int splpar_strlen;
322 int idx, w_idx;
Yoann Padioleaudd00cc42007-07-19 01:49:03 -0700323 char *workbuffer = kzalloc(SPLPAR_MAXLENGTH, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 if (!workbuffer) {
Frans Pop8354be92010-02-06 07:47:20 +0000325 printk(KERN_ERR "%s %s kmalloc failure at line %d\n",
Harvey Harrisone48b1b42008-03-29 08:21:07 +1100326 __FILE__, __func__, __LINE__);
David Gibsond3d21762005-11-10 15:26:20 +1100327 kfree(local_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 return;
329 }
330#ifdef LPARCFG_DEBUG
Frans Pop8354be92010-02-06 07:47:20 +0000331 printk(KERN_INFO "success calling get-system-parameter\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332#endif
Will Schmidt34422fe2006-03-31 09:07:48 -0600333 splpar_strlen = local_buffer[0] * 256 + local_buffer[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 local_buffer += 2; /* step over strlen value */
335
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 w_idx = 0;
337 idx = 0;
338 while ((*local_buffer) && (idx < splpar_strlen)) {
339 workbuffer[w_idx++] = local_buffer[idx++];
340 if ((local_buffer[idx] == ',')
341 || (local_buffer[idx] == '\0')) {
342 workbuffer[w_idx] = '\0';
343 if (w_idx) {
344 /* avoid the empty string */
345 seq_printf(m, "%s\n", workbuffer);
346 }
347 memset(workbuffer, 0, SPLPAR_MAXLENGTH);
348 idx++; /* skip the comma */
349 w_idx = 0;
350 } else if (local_buffer[idx] == '=') {
351 /* code here to replace workbuffer contents
352 with different keyword strings */
353 if (0 == strcmp(workbuffer, "MaxEntCap")) {
354 strcpy(workbuffer,
355 "partition_max_entitled_capacity");
356 w_idx = strlen(workbuffer);
357 }
358 if (0 == strcmp(workbuffer, "MaxPlatProcs")) {
359 strcpy(workbuffer,
360 "system_potential_processors");
361 w_idx = strlen(workbuffer);
362 }
363 }
364 }
365 kfree(workbuffer);
366 local_buffer -= 2; /* back up over strlen value */
367 }
368 kfree(local_buffer);
369}
370
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371/* Return the number of processors in the system.
372 * This function reads through the device tree and counts
373 * the virtual processors, this does not include threads.
374 */
375static int lparcfg_count_active_processors(void)
376{
Dmitry Torokhov9625e692017-01-31 17:54:38 -0800377 struct device_node *cpus_dn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 int count = 0;
379
Dmitry Torokhov9625e692017-01-31 17:54:38 -0800380 for_each_node_by_type(cpus_dn, "cpu") {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381#ifdef LPARCFG_DEBUG
Frans Pop8354be92010-02-06 07:47:20 +0000382 printk(KERN_ERR "cpus_dn %p\n", cpus_dn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383#endif
384 count++;
385 }
386 return count;
387}
388
Brian Kingffa5abb2008-07-24 04:30:58 +1000389static void pseries_cmo_data(struct seq_file *m)
390{
391 int cpu;
392 unsigned long cmo_faults = 0;
393 unsigned long cmo_fault_time = 0;
394
Robert Jenningsac224292008-08-16 05:10:18 +1000395 seq_printf(m, "cmo_enabled=%d\n", firmware_has_feature(FW_FEATURE_CMO));
396
Brian Kingffa5abb2008-07-24 04:30:58 +1000397 if (!firmware_has_feature(FW_FEATURE_CMO))
398 return;
399
400 for_each_possible_cpu(cpu) {
Anton Blanchard7ffcf8e2013-08-07 02:01:46 +1000401 cmo_faults += be64_to_cpu(lppaca_of(cpu).cmo_faults);
402 cmo_fault_time += be64_to_cpu(lppaca_of(cpu).cmo_fault_time);
Brian Kingffa5abb2008-07-24 04:30:58 +1000403 }
404
405 seq_printf(m, "cmo_faults=%lu\n", cmo_faults);
406 seq_printf(m, "cmo_fault_time_usec=%lu\n",
407 cmo_fault_time / tb_ticks_per_usec);
Robert Jenningsac224292008-08-16 05:10:18 +1000408 seq_printf(m, "cmo_primary_psp=%d\n", cmo_get_primary_psp());
409 seq_printf(m, "cmo_secondary_psp=%d\n", cmo_get_secondary_psp());
410 seq_printf(m, "cmo_page_size=%lu\n", cmo_get_page_size());
Brian Kingffa5abb2008-07-24 04:30:58 +1000411}
412
Anton Blanchard0559f0a2009-03-31 20:12:44 +0000413static void splpar_dispatch_data(struct seq_file *m)
414{
415 int cpu;
416 unsigned long dispatches = 0;
417 unsigned long dispatch_dispersions = 0;
418
419 for_each_possible_cpu(cpu) {
Anton Blanchard7ffcf8e2013-08-07 02:01:46 +1000420 dispatches += be32_to_cpu(lppaca_of(cpu).yield_count);
421 dispatch_dispersions +=
422 be32_to_cpu(lppaca_of(cpu).dispersion_count);
Anton Blanchard0559f0a2009-03-31 20:12:44 +0000423 }
424
425 seq_printf(m, "dispatches=%lu\n", dispatches);
426 seq_printf(m, "dispatch_dispersions=%lu\n", dispatch_dispersions);
427}
428
Vaidyanathan Srinivasan6fe9d1f2010-03-31 21:39:24 +0000429static void parse_em_data(struct seq_file *m)
430{
431 unsigned long retbuf[PLPAR_HCALL_BUFSIZE];
432
Benjamin Herrenschmidtf5f6cbb2013-08-27 16:38:33 +1000433 if (firmware_has_feature(FW_FEATURE_LPAR) &&
434 plpar_hcall(H_GET_EM_PARMS, retbuf) == H_SUCCESS)
Vaidyanathan Srinivasan6fe9d1f2010-03-31 21:39:24 +0000435 seq_printf(m, "power_mode_data=%016lx\n", retbuf[0]);
436}
437
Aravinda Prasad772b0392018-10-10 15:52:59 +0530438static void maxmem_data(struct seq_file *m)
439{
440 unsigned long maxmem = 0;
441
442 maxmem += drmem_info->n_lmbs * drmem_info->lmb_size;
443 maxmem += hugetlb_total_pages() * PAGE_SIZE;
444
445 seq_printf(m, "MaxMem=%ld\n", maxmem);
446}
447
Stephen Rothwell16e9f992006-06-29 15:07:42 +1000448static int pseries_lparcfg_data(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449{
450 int partition_potential_processors;
451 int partition_active_processors;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 struct device_node *rtas_node;
Anton Blanchardca5de4e2013-12-12 15:59:37 +1100453 const __be32 *lrdrp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
Stephen Rothwell8c8dc322007-04-24 13:50:55 +1000455 rtas_node = of_find_node_by_path("/rtas");
Olof Johansson2b9a32e2006-02-15 21:40:44 -0600456 if (rtas_node)
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000457 lrdrp = of_get_property(rtas_node, "ibm,lrdr-capacity", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
459 if (lrdrp == NULL) {
Paul Mackerras271c3f32005-11-11 23:04:40 +1100460 partition_potential_processors = vdso_data->processorCount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 } else {
Anton Blanchardca5de4e2013-12-12 15:59:37 +1100462 partition_potential_processors = be32_to_cpup(lrdrp + 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 }
Stephen Rothwell8c8dc322007-04-24 13:50:55 +1000464 of_node_put(rtas_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
466 partition_active_processors = lparcfg_count_active_processors();
467
Stephen Rothwell1ababe12005-08-03 14:35:25 +1000468 if (firmware_has_feature(FW_FEATURE_SPLPAR)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 /* this call handles the ibm,get-system-parameter contents */
470 parse_system_parameter_string(m);
Nathan Fotenot11529392008-07-24 04:25:16 +1000471 parse_ppp_data(m);
Nathan Fontenotdfc34032008-07-24 04:27:30 +1000472 parse_mpp_data(m);
Brian King9ee820f2011-05-04 16:01:20 +1000473 parse_mpp_x_data(m);
Brian Kingffa5abb2008-07-24 04:30:58 +1000474 pseries_cmo_data(m);
Anton Blanchard0559f0a2009-03-31 20:12:44 +0000475 splpar_dispatch_data(m);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
Nathan Fotenot11529392008-07-24 04:25:16 +1000477 seq_printf(m, "purr=%ld\n", get_purr());
Tyrel Datwyler9f3ba362018-12-08 17:48:27 -0600478 seq_printf(m, "tbr=%ld\n", mftb());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 } else { /* non SPLPAR case */
480
481 seq_printf(m, "system_active_processors=%d\n",
482 partition_potential_processors);
483
484 seq_printf(m, "system_potential_processors=%d\n",
485 partition_potential_processors);
486
487 seq_printf(m, "partition_max_entitled_capacity=%d\n",
488 partition_potential_processors * 100);
489
490 seq_printf(m, "partition_entitled_capacity=%d\n",
491 partition_active_processors * 100);
492 }
493
494 seq_printf(m, "partition_active_processors=%d\n",
495 partition_active_processors);
496
497 seq_printf(m, "partition_potential_processors=%d\n",
498 partition_potential_processors);
499
Anton Blanchardf13c13a2013-08-07 02:01:26 +1000500 seq_printf(m, "shared_processor_mode=%d\n",
501 lppaca_shared_proc(get_lppaca()));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
Michael Ellerman4e003742017-10-19 15:08:43 +1100503#ifdef CONFIG_PPC_BOOK3S_64
Brian King46db2f82009-08-28 12:06:29 +0000504 seq_printf(m, "slb_size=%d\n", mmu_slb_size);
Aneesh Kumar K.Vd8c476e2016-04-29 23:26:08 +1000505#endif
Vaidyanathan Srinivasan6fe9d1f2010-03-31 21:39:24 +0000506 parse_em_data(m);
Aravinda Prasad772b0392018-10-10 15:52:59 +0530507 maxmem_data(m);
Vaidyanathan Srinivasan6fe9d1f2010-03-31 21:39:24 +0000508
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 return 0;
510}
511
Nathan Fotenot11529392008-07-24 04:25:16 +1000512static ssize_t update_ppp(u64 *entitlement, u8 *weight)
513{
Robert Jennings398778f2008-07-24 04:28:05 +1000514 struct hvcall_ppp_data ppp_data;
515 u8 new_weight;
Nathan Fotenot11529392008-07-24 04:25:16 +1000516 u64 new_entitled;
517 ssize_t retval;
518
519 /* Get our current parameters */
Robert Jennings398778f2008-07-24 04:28:05 +1000520 retval = h_get_ppp(&ppp_data);
Nathan Fotenot11529392008-07-24 04:25:16 +1000521 if (retval)
522 return retval;
523
Nathan Fotenot11529392008-07-24 04:25:16 +1000524 if (entitlement) {
Robert Jennings398778f2008-07-24 04:28:05 +1000525 new_weight = ppp_data.weight;
Nathan Fotenot11529392008-07-24 04:25:16 +1000526 new_entitled = *entitlement;
527 } else if (weight) {
528 new_weight = *weight;
Robert Jennings398778f2008-07-24 04:28:05 +1000529 new_entitled = ppp_data.entitlement;
Nathan Fotenot11529392008-07-24 04:25:16 +1000530 } else
531 return -EINVAL;
532
Ingo Molnarfe333322009-01-06 14:26:03 +0000533 pr_debug("%s: current_entitled = %llu, current_weight = %u\n",
Harvey Harrison5df72bf2008-07-31 05:29:03 +1000534 __func__, ppp_data.entitlement, ppp_data.weight);
Nathan Fotenot11529392008-07-24 04:25:16 +1000535
Ingo Molnarfe333322009-01-06 14:26:03 +0000536 pr_debug("%s: new_entitled = %llu, new_weight = %u\n",
Harvey Harrison5df72bf2008-07-31 05:29:03 +1000537 __func__, new_entitled, new_weight);
Nathan Fotenot11529392008-07-24 04:25:16 +1000538
539 retval = plpar_hcall_norets(H_SET_PPP, new_entitled, new_weight);
540 return retval;
541}
542
Nathan Fontenotdfc34032008-07-24 04:27:30 +1000543/**
544 * update_mpp
545 *
546 * Update the memory entitlement and weight for the partition. Caller must
547 * specify either a new entitlement or weight, not both, to be updated
548 * since the h_set_mpp call takes both entitlement and weight as parameters.
549 */
550static ssize_t update_mpp(u64 *entitlement, u8 *weight)
551{
552 struct hvcall_mpp_data mpp_data;
553 u64 new_entitled;
554 u8 new_weight;
555 ssize_t rc;
556
Nathan Fontenot22e1a4d2008-07-24 04:31:52 +1000557 if (entitlement) {
558 /* Check with vio to ensure the new memory entitlement
559 * can be handled.
560 */
561 rc = vio_cmo_entitlement_update(*entitlement);
562 if (rc)
563 return rc;
564 }
565
Nathan Fontenotdfc34032008-07-24 04:27:30 +1000566 rc = h_get_mpp(&mpp_data);
567 if (rc)
568 return rc;
569
570 if (entitlement) {
571 new_weight = mpp_data.mem_weight;
572 new_entitled = *entitlement;
573 } else if (weight) {
574 new_weight = *weight;
575 new_entitled = mpp_data.entitled_mem;
576 } else
577 return -EINVAL;
578
579 pr_debug("%s: current_entitled = %lu, current_weight = %u\n",
Harvey Harrison5df72bf2008-07-31 05:29:03 +1000580 __func__, mpp_data.entitled_mem, mpp_data.mem_weight);
Nathan Fontenotdfc34032008-07-24 04:27:30 +1000581
Ingo Molnarfe333322009-01-06 14:26:03 +0000582 pr_debug("%s: new_entitled = %llu, new_weight = %u\n",
Harvey Harrison5df72bf2008-07-31 05:29:03 +1000583 __func__, new_entitled, new_weight);
Nathan Fontenotdfc34032008-07-24 04:27:30 +1000584
585 rc = plpar_hcall_norets(H_SET_MPP, new_entitled, new_weight);
586 return rc;
587}
588
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589/*
590 * Interface for changing system parameters (variable capacity weight
591 * and entitled capacity). Format of input is "param_name=value";
592 * anything after value is ignored. Valid parameters at this time are
593 * "partition_entitled_capacity" and "capacity_weight". We use
594 * H_SET_PPP to alter parameters.
595 *
596 * This function should be invoked only on systems with
597 * FW_FEATURE_SPLPAR.
598 */
599static ssize_t lparcfg_write(struct file *file, const char __user * buf,
600 size_t count, loff_t * off)
601{
Suraj Jitindar Singh74422e22018-09-05 12:09:51 +1000602 char kbuf[64];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 char *tmp;
604 u64 new_entitled, *new_entitled_ptr = &new_entitled;
605 u8 new_weight, *new_weight_ptr = &new_weight;
Nathan Fontenot16c14b42008-07-24 05:10:46 +1000606 ssize_t retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
Stephen Rothwellf5339272012-03-15 18:18:00 +0000608 if (!firmware_has_feature(FW_FEATURE_SPLPAR))
Stephen Rothwell0524aad2007-02-05 16:14:05 -0800609 return -EINVAL;
610
Suraj Jitindar Singh74422e22018-09-05 12:09:51 +1000611 if (count > sizeof(kbuf))
Nathan Fontenot16c14b42008-07-24 05:10:46 +1000612 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 if (copy_from_user(kbuf, buf, count))
Nathan Fontenot16c14b42008-07-24 05:10:46 +1000615 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 kbuf[count - 1] = '\0';
618 tmp = strchr(kbuf, '=');
619 if (!tmp)
Nathan Fontenot16c14b42008-07-24 05:10:46 +1000620 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
622 *tmp++ = '\0';
623
624 if (!strcmp(kbuf, "partition_entitled_capacity")) {
625 char *endp;
626 *new_entitled_ptr = (u64) simple_strtoul(tmp, &endp, 10);
627 if (endp == tmp)
Nathan Fontenot16c14b42008-07-24 05:10:46 +1000628 return -EINVAL;
Nathan Fotenot11529392008-07-24 04:25:16 +1000629
630 retval = update_ppp(new_entitled_ptr, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 } else if (!strcmp(kbuf, "capacity_weight")) {
632 char *endp;
633 *new_weight_ptr = (u8) simple_strtoul(tmp, &endp, 10);
634 if (endp == tmp)
Nathan Fontenot16c14b42008-07-24 05:10:46 +1000635 return -EINVAL;
Nathan Fotenot11529392008-07-24 04:25:16 +1000636
637 retval = update_ppp(NULL, new_weight_ptr);
Nathan Fontenotdfc34032008-07-24 04:27:30 +1000638 } else if (!strcmp(kbuf, "entitled_memory")) {
639 char *endp;
640 *new_entitled_ptr = (u64) simple_strtoul(tmp, &endp, 10);
641 if (endp == tmp)
Nathan Fontenot16c14b42008-07-24 05:10:46 +1000642 return -EINVAL;
Nathan Fontenotdfc34032008-07-24 04:27:30 +1000643
644 retval = update_mpp(new_entitled_ptr, NULL);
645 } else if (!strcmp(kbuf, "entitled_memory_weight")) {
646 char *endp;
647 *new_weight_ptr = (u8) simple_strtoul(tmp, &endp, 10);
648 if (endp == tmp)
Nathan Fontenot16c14b42008-07-24 05:10:46 +1000649 return -EINVAL;
Nathan Fontenotdfc34032008-07-24 04:27:30 +1000650
651 retval = update_mpp(NULL, new_weight_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 } else
Nathan Fontenot16c14b42008-07-24 05:10:46 +1000653 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
Segher Boessenkool706c8c92006-03-30 14:49:40 +0200655 if (retval == H_SUCCESS || retval == H_CONSTRAINED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 retval = count;
Segher Boessenkool706c8c92006-03-30 14:49:40 +0200657 } else if (retval == H_BUSY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 retval = -EBUSY;
Segher Boessenkool706c8c92006-03-30 14:49:40 +0200659 } else if (retval == H_HARDWARE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 retval = -EIO;
Segher Boessenkool706c8c92006-03-30 14:49:40 +0200661 } else if (retval == H_PARAMETER) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 retval = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 }
664
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 return retval;
666}
667
Stephen Rothwell16e9f992006-06-29 15:07:42 +1000668static int lparcfg_data(struct seq_file *m, void *v)
669{
670 struct device_node *rootdn;
671 const char *model = "";
672 const char *system_id = "";
673 const char *tmp;
Anton Blanchardca5de4e2013-12-12 15:59:37 +1100674 const __be32 *lp_index_ptr;
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000675 unsigned int lp_index = 0;
Stephen Rothwell16e9f992006-06-29 15:07:42 +1000676
Frans Pop8354be92010-02-06 07:47:20 +0000677 seq_printf(m, "%s %s\n", MODULE_NAME, MODULE_VERS);
Stephen Rothwell16e9f992006-06-29 15:07:42 +1000678
Stephen Rothwell8c8dc322007-04-24 13:50:55 +1000679 rootdn = of_find_node_by_path("/");
Stephen Rothwell16e9f992006-06-29 15:07:42 +1000680 if (rootdn) {
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000681 tmp = of_get_property(rootdn, "model", NULL);
Stephen Rothwellf5339272012-03-15 18:18:00 +0000682 if (tmp)
Stephen Rothwell16e9f992006-06-29 15:07:42 +1000683 model = tmp;
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000684 tmp = of_get_property(rootdn, "system-id", NULL);
Stephen Rothwellf5339272012-03-15 18:18:00 +0000685 if (tmp)
Stephen Rothwell16e9f992006-06-29 15:07:42 +1000686 system_id = tmp;
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000687 lp_index_ptr = of_get_property(rootdn, "ibm,partition-no",
688 NULL);
Stephen Rothwell16e9f992006-06-29 15:07:42 +1000689 if (lp_index_ptr)
Anton Blanchardca5de4e2013-12-12 15:59:37 +1100690 lp_index = be32_to_cpup(lp_index_ptr);
Stephen Rothwell8c8dc322007-04-24 13:50:55 +1000691 of_node_put(rootdn);
Stephen Rothwell16e9f992006-06-29 15:07:42 +1000692 }
693 seq_printf(m, "serial_number=%s\n", system_id);
694 seq_printf(m, "system_type=%s\n", model);
695 seq_printf(m, "partition_id=%d\n", (int)lp_index);
696
Stephen Rothwell16e9f992006-06-29 15:07:42 +1000697 return pseries_lparcfg_data(m, v);
698}
699
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700static int lparcfg_open(struct inode *inode, struct file *file)
701{
702 return single_open(file, lparcfg_data, NULL);
703}
704
Michael Ellerman1c21a292008-05-08 14:27:19 +1000705static const struct file_operations lparcfg_fops = {
Anton Blanchard8acb8882005-11-11 13:53:11 +1100706 .read = seq_read,
Stephen Rothwell0524aad2007-02-05 16:14:05 -0800707 .write = lparcfg_write,
Anton Blanchard8acb8882005-11-11 13:53:11 +1100708 .open = lparcfg_open,
709 .release = single_release,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200710 .llseek = seq_lseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711};
712
Michael Ellerman1c21a292008-05-08 14:27:19 +1000713static int __init lparcfg_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714{
Russell Currey57ad583f2017-01-12 14:54:13 +1100715 umode_t mode = 0444;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716
717 /* Allow writing if we have FW_FEATURE_SPLPAR */
Stephen Rothwellf5339272012-03-15 18:18:00 +0000718 if (firmware_has_feature(FW_FEATURE_SPLPAR))
Russell Currey57ad583f2017-01-12 14:54:13 +1100719 mode |= 0200;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
Al Virob177a292013-03-31 23:21:50 -0400721 if (!proc_create("powerpc/lparcfg", mode, NULL, &lparcfg_fops)) {
Benjamin Herrenschmidt188917e2009-09-24 19:29:13 +0000722 printk(KERN_ERR "Failed to create powerpc/lparcfg\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 return -EIO;
724 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 return 0;
726}
Benjamin Herrenschmidtf5f6cbb2013-08-27 16:38:33 +1000727machine_device_initcall(pseries, lparcfg_init);