blob: 578f35f187236ced4b8e783cce9b897603725095 [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 Torvalds1da177e2005-04-16 15:20:36 -070028#include <asm/uaccess.h>
Kelly Daly15b17182005-11-02 11:55:28 +110029#include <asm/iseries/hv_lp_config.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>
34#include <asm/system.h>
35#include <asm/time.h>
Michael Ellerman856509d2005-06-25 14:54:42 -070036#include <asm/prom.h>
Paul Mackerras271c3f32005-11-11 23:04:40 +110037#include <asm/vdso_datapage.h>
Nathan Fontenot22e1a4d2008-07-24 04:31:52 +100038#include <asm/vio.h>
Brian King46db2f82009-08-28 12:06:29 +000039#include <asm/mmu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
Vaidyanathan Srinivasan6fe9d1f2010-03-31 21:39:24 +000041#define MODULE_VERS "1.9"
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#define MODULE_NAME "lparcfg"
43
44/* #define LPARCFG_DEBUG */
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046static struct proc_dir_entry *proc_ppc64_lparcfg;
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Linus Torvalds1da177e2005-04-16 15:20:36 -070048/*
Stephen Rothwell16e9f992006-06-29 15:07:42 +100049 * Track sum of all purrs across all processors. This is used to further
50 * calculate usage values by different applications
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 */
52static unsigned long get_purr(void)
53{
54 unsigned long sum_purr = 0;
55 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
KAMEZAWA Hiroyuki0e551952006-03-28 14:50:51 -080057 for_each_possible_cpu(cpu) {
Stephen Rothwell16e9f992006-06-29 15:07:42 +100058 if (firmware_has_feature(FW_FEATURE_ISERIES))
Paul Mackerras8154c5d2010-08-12 20:18:15 +000059 sum_purr += lppaca_of(cpu).emulated_time_base;
Stephen Rothwell16e9f992006-06-29 15:07:42 +100060 else {
61 struct cpu_usage *cu;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Stephen Rothwell16e9f992006-06-29 15:07:42 +100063 cu = &per_cpu(cpu_usage_array, cpu);
64 sum_purr += cu->current_tb;
65 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 }
67 return sum_purr;
68}
69
Stephen Rothwell16e9f992006-06-29 15:07:42 +100070#ifdef CONFIG_PPC_ISERIES
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
David Gibsond3d21762005-11-10 15:26:20 +110072/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 * Methods used to fetch LPAR data when running on an iSeries platform.
74 */
Stephen Rothwell16e9f992006-06-29 15:07:42 +100075static int iseries_lparcfg_data(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -070076{
Stephen Rothwell16e9f992006-06-29 15:07:42 +100077 unsigned long pool_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 int shared, entitled_capacity, max_entitled_capacity;
79 int processors, max_processors;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 unsigned long purr = get_purr();
81
Hugh Dickins048c8bc2006-11-01 05:44:54 +110082 shared = (int)(local_paca->lppaca_ptr->shared_proc);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
84 seq_printf(m, "system_active_processors=%d\n",
85 (int)HvLpConfig_getSystemPhysicalProcessors());
86
87 seq_printf(m, "system_potential_processors=%d\n",
88 (int)HvLpConfig_getSystemPhysicalProcessors());
89
90 processors = (int)HvLpConfig_getPhysicalProcessors();
91 seq_printf(m, "partition_active_processors=%d\n", processors);
92
93 max_processors = (int)HvLpConfig_getMaxPhysicalProcessors();
94 seq_printf(m, "partition_potential_processors=%d\n", max_processors);
95
96 if (shared) {
97 entitled_capacity = HvLpConfig_getSharedProcUnits();
98 max_entitled_capacity = HvLpConfig_getMaxSharedProcUnits();
99 } else {
100 entitled_capacity = processors * 100;
101 max_entitled_capacity = max_processors * 100;
102 }
103 seq_printf(m, "partition_entitled_capacity=%d\n", entitled_capacity);
104
105 seq_printf(m, "partition_max_entitled_capacity=%d\n",
106 max_entitled_capacity);
107
108 if (shared) {
109 pool_id = HvLpConfig_getSharedPoolIndex();
110 seq_printf(m, "pool=%d\n", (int)pool_id);
111 seq_printf(m, "pool_capacity=%d\n",
112 (int)(HvLpConfig_getNumProcsInSharedPool(pool_id) *
113 100));
114 seq_printf(m, "purr=%ld\n", purr);
115 }
116
117 seq_printf(m, "shared_processor_mode=%d\n", shared);
118
119 return 0;
120}
Stephen Rothwell16e9f992006-06-29 15:07:42 +1000121
122#else /* CONFIG_PPC_ISERIES */
123
124static int iseries_lparcfg_data(struct seq_file *m, void *v)
125{
126 return 0;
127}
128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129#endif /* CONFIG_PPC_ISERIES */
130
131#ifdef CONFIG_PPC_PSERIES
David Gibsond3d21762005-11-10 15:26:20 +1100132/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 * Methods used to fetch LPAR data when running on a pSeries platform.
134 */
Nathan Fontenotdfc34032008-07-24 04:27:30 +1000135
Robert Jennings398778f2008-07-24 04:28:05 +1000136struct hvcall_ppp_data {
137 u64 entitlement;
138 u64 unallocated_entitlement;
139 u16 group_num;
140 u16 pool_num;
141 u8 capped;
142 u8 weight;
143 u8 unallocated_weight;
144 u16 active_procs_in_pool;
145 u16 active_system_procs;
Nathan Fontenotf03cdb32009-05-27 04:41:21 +0000146 u16 phys_platform_procs;
147 u32 max_proc_cap_avail;
148 u32 entitled_proc_cap_avail;
Robert Jennings398778f2008-07-24 04:28:05 +1000149};
150
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151/*
152 * H_GET_PPP hcall returns info in 4 parms.
153 * entitled_capacity,unallocated_capacity,
154 * aggregation, resource_capability).
155 *
David Gibsond3d21762005-11-10 15:26:20 +1100156 * R4 = Entitled Processor Capacity Percentage.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 * R5 = Unallocated Processor Capacity Percentage.
158 * R6 (AABBCCDDEEFFGGHH).
159 * XXXX - reserved (0)
160 * XXXX - reserved (0)
161 * XXXX - Group Number
162 * XXXX - Pool Number.
163 * R7 (IIJJKKLLMMNNOOPP).
164 * XX - reserved. (0)
165 * XX - bit 0-6 reserved (0). bit 7 is Capped indicator.
166 * XX - variable processor Capacity Weight
167 * XX - Unallocated Variable Processor Capacity Weight.
168 * XXXX - Active processors in Physical Processor Pool.
David Gibsond3d21762005-11-10 15:26:20 +1100169 * XXXX - Processors active on platform.
Nathan Fontenotf03cdb32009-05-27 04:41:21 +0000170 * R8 (QQQQRRRRRRSSSSSS). if ibm,partition-performance-parameters-level >= 1
171 * XXXX - Physical platform procs allocated to virtualization.
172 * XXXXXX - Max procs capacity % available to the partitions pool.
173 * XXXXXX - Entitled procs capacity % available to the
174 * partitions pool.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 */
Robert Jennings398778f2008-07-24 04:28:05 +1000176static unsigned int h_get_ppp(struct hvcall_ppp_data *ppp_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177{
178 unsigned long rc;
Nathan Fontenotf03cdb32009-05-27 04:41:21 +0000179 unsigned long retbuf[PLPAR_HCALL9_BUFSIZE];
Anton Blanchardb9377ff2006-07-19 08:01:28 +1000180
Nathan Fontenotf03cdb32009-05-27 04:41:21 +0000181 rc = plpar_hcall9(H_GET_PPP, retbuf);
Anton Blanchardb9377ff2006-07-19 08:01:28 +1000182
Robert Jennings398778f2008-07-24 04:28:05 +1000183 ppp_data->entitlement = retbuf[0];
184 ppp_data->unallocated_entitlement = retbuf[1];
185
186 ppp_data->group_num = (retbuf[2] >> 2 * 8) & 0xffff;
187 ppp_data->pool_num = retbuf[2] & 0xffff;
188
189 ppp_data->capped = (retbuf[3] >> 6 * 8) & 0x01;
190 ppp_data->weight = (retbuf[3] >> 5 * 8) & 0xff;
191 ppp_data->unallocated_weight = (retbuf[3] >> 4 * 8) & 0xff;
192 ppp_data->active_procs_in_pool = (retbuf[3] >> 2 * 8) & 0xffff;
193 ppp_data->active_system_procs = retbuf[3] & 0xffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
Nathan Fontenotf03cdb32009-05-27 04:41:21 +0000195 ppp_data->phys_platform_procs = retbuf[4] >> 6 * 8;
196 ppp_data->max_proc_cap_avail = (retbuf[4] >> 3 * 8) & 0xffffff;
197 ppp_data->entitled_proc_cap_avail = retbuf[4] & 0xffffff;
198
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 return rc;
200}
201
Nathan Fotenot11529392008-07-24 04:25:16 +1000202static unsigned h_pic(unsigned long *pool_idle_time,
203 unsigned long *num_procs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204{
205 unsigned long rc;
Anton Blanchardb9377ff2006-07-19 08:01:28 +1000206 unsigned long retbuf[PLPAR_HCALL_BUFSIZE];
207
208 rc = plpar_hcall(H_PIC, retbuf);
209
210 *pool_idle_time = retbuf[0];
211 *num_procs = retbuf[1];
Nathan Fotenot11529392008-07-24 04:25:16 +1000212
213 return rc;
214}
215
216/*
217 * parse_ppp_data
218 * Parse out the data returned from h_get_ppp and h_pic
219 */
220static void parse_ppp_data(struct seq_file *m)
221{
Robert Jennings398778f2008-07-24 04:28:05 +1000222 struct hvcall_ppp_data ppp_data;
Nathan Fontenotf03cdb32009-05-27 04:41:21 +0000223 struct device_node *root;
224 const int *perf_level;
Nathan Fotenot11529392008-07-24 04:25:16 +1000225 int rc;
226
Robert Jennings398778f2008-07-24 04:28:05 +1000227 rc = h_get_ppp(&ppp_data);
Nathan Fotenot11529392008-07-24 04:25:16 +1000228 if (rc)
229 return;
230
Ingo Molnarfe333322009-01-06 14:26:03 +0000231 seq_printf(m, "partition_entitled_capacity=%lld\n",
Robert Jennings398778f2008-07-24 04:28:05 +1000232 ppp_data.entitlement);
233 seq_printf(m, "group=%d\n", ppp_data.group_num);
234 seq_printf(m, "system_active_processors=%d\n",
235 ppp_data.active_system_procs);
Nathan Fotenot11529392008-07-24 04:25:16 +1000236
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300237 /* pool related entries are appropriate for shared configs */
Paul Mackerras8154c5d2010-08-12 20:18:15 +0000238 if (lppaca_of(0).shared_proc) {
Nathan Fotenot11529392008-07-24 04:25:16 +1000239 unsigned long pool_idle_time, pool_procs;
240
Robert Jennings398778f2008-07-24 04:28:05 +1000241 seq_printf(m, "pool=%d\n", ppp_data.pool_num);
Nathan Fotenot11529392008-07-24 04:25:16 +1000242
243 /* report pool_capacity in percentage */
Robert Jennings398778f2008-07-24 04:28:05 +1000244 seq_printf(m, "pool_capacity=%d\n",
245 ppp_data.active_procs_in_pool * 100);
Nathan Fotenot11529392008-07-24 04:25:16 +1000246
247 h_pic(&pool_idle_time, &pool_procs);
248 seq_printf(m, "pool_idle_time=%ld\n", pool_idle_time);
249 seq_printf(m, "pool_num_procs=%ld\n", pool_procs);
250 }
251
Robert Jennings398778f2008-07-24 04:28:05 +1000252 seq_printf(m, "unallocated_capacity_weight=%d\n",
253 ppp_data.unallocated_weight);
254 seq_printf(m, "capacity_weight=%d\n", ppp_data.weight);
255 seq_printf(m, "capped=%d\n", ppp_data.capped);
Ingo Molnarfe333322009-01-06 14:26:03 +0000256 seq_printf(m, "unallocated_capacity=%lld\n",
Robert Jennings398778f2008-07-24 04:28:05 +1000257 ppp_data.unallocated_entitlement);
Nathan Fontenotf03cdb32009-05-27 04:41:21 +0000258
259 /* The last bits of information returned from h_get_ppp are only
260 * valid if the ibm,partition-performance-parameters-level
261 * property is >= 1.
262 */
263 root = of_find_node_by_path("/");
264 if (root) {
265 perf_level = of_get_property(root,
266 "ibm,partition-performance-parameters-level",
267 NULL);
268 if (perf_level && (*perf_level >= 1)) {
269 seq_printf(m,
270 "physical_procs_allocated_to_virtualization=%d\n",
271 ppp_data.phys_platform_procs);
272 seq_printf(m, "max_proc_capacity_available=%d\n",
273 ppp_data.max_proc_cap_avail);
274 seq_printf(m, "entitled_proc_capacity_available=%d\n",
275 ppp_data.entitled_proc_cap_avail);
276 }
277
278 of_node_put(root);
279 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280}
281
Nathan Fontenotdfc34032008-07-24 04:27:30 +1000282/**
283 * parse_mpp_data
284 * Parse out data returned from h_get_mpp
285 */
286static void parse_mpp_data(struct seq_file *m)
287{
288 struct hvcall_mpp_data mpp_data;
289 int rc;
290
291 rc = h_get_mpp(&mpp_data);
292 if (rc)
293 return;
294
295 seq_printf(m, "entitled_memory=%ld\n", mpp_data.entitled_mem);
296
297 if (mpp_data.mapped_mem != -1)
298 seq_printf(m, "mapped_entitled_memory=%ld\n",
299 mpp_data.mapped_mem);
300
301 seq_printf(m, "entitled_memory_group_number=%d\n", mpp_data.group_num);
302 seq_printf(m, "entitled_memory_pool_number=%d\n", mpp_data.pool_num);
303
304 seq_printf(m, "entitled_memory_weight=%d\n", mpp_data.mem_weight);
305 seq_printf(m, "unallocated_entitled_memory_weight=%d\n",
306 mpp_data.unallocated_mem_weight);
307 seq_printf(m, "unallocated_io_mapping_entitlement=%ld\n",
308 mpp_data.unallocated_entitlement);
309
310 if (mpp_data.pool_size != -1)
311 seq_printf(m, "entitled_memory_pool_size=%ld bytes\n",
312 mpp_data.pool_size);
313
314 seq_printf(m, "entitled_memory_loan_request=%ld\n",
315 mpp_data.loan_request);
316
317 seq_printf(m, "backing_memory=%ld bytes\n", mpp_data.backing_mem);
318}
319
Brian King9ee820f2011-05-04 16:01:20 +1000320/**
321 * parse_mpp_x_data
322 * Parse out data returned from h_get_mpp_x
323 */
324static void parse_mpp_x_data(struct seq_file *m)
325{
326 struct hvcall_mpp_x_data mpp_x_data;
327
328 if (!firmware_has_feature(FW_FEATURE_XCMO))
329 return;
330 if (h_get_mpp_x(&mpp_x_data))
331 return;
332
333 seq_printf(m, "coalesced_bytes=%ld\n", mpp_x_data.coalesced_bytes);
334
335 if (mpp_x_data.pool_coalesced_bytes)
336 seq_printf(m, "pool_coalesced_bytes=%ld\n",
337 mpp_x_data.pool_coalesced_bytes);
338 if (mpp_x_data.pool_purr_cycles)
339 seq_printf(m, "coalesce_pool_purr=%ld\n", mpp_x_data.pool_purr_cycles);
340 if (mpp_x_data.pool_spurr_cycles)
341 seq_printf(m, "coalesce_pool_spurr=%ld\n", mpp_x_data.pool_spurr_cycles);
342}
343
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344#define SPLPAR_CHARACTERISTICS_TOKEN 20
345#define SPLPAR_MAXLENGTH 1026*(sizeof(char))
346
347/*
348 * parse_system_parameter_string()
349 * Retrieve the potential_processors, max_entitled_capacity and friends
350 * through the get-system-parameter rtas call. Replace keyword strings as
351 * necessary.
352 */
353static void parse_system_parameter_string(struct seq_file *m)
354{
355 int call_status;
356
Will Schmidt34422fe2006-03-31 09:07:48 -0600357 unsigned char *local_buffer = kmalloc(SPLPAR_MAXLENGTH, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 if (!local_buffer) {
Frans Pop8354be92010-02-06 07:47:20 +0000359 printk(KERN_ERR "%s %s kmalloc failure at line %d\n",
Harvey Harrisone48b1b42008-03-29 08:21:07 +1100360 __FILE__, __func__, __LINE__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 return;
362 }
363
364 spin_lock(&rtas_data_buf_lock);
365 memset(rtas_data_buf, 0, SPLPAR_MAXLENGTH);
366 call_status = rtas_call(rtas_token("ibm,get-system-parameter"), 3, 1,
367 NULL,
368 SPLPAR_CHARACTERISTICS_TOKEN,
Will Schmidt34422fe2006-03-31 09:07:48 -0600369 __pa(rtas_data_buf),
370 RTAS_DATA_BUF_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 memcpy(local_buffer, rtas_data_buf, SPLPAR_MAXLENGTH);
372 spin_unlock(&rtas_data_buf_lock);
373
374 if (call_status != 0) {
375 printk(KERN_INFO
376 "%s %s Error calling get-system-parameter (0x%x)\n",
Harvey Harrisone48b1b42008-03-29 08:21:07 +1100377 __FILE__, __func__, call_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 } else {
379 int splpar_strlen;
380 int idx, w_idx;
Yoann Padioleaudd00cc42007-07-19 01:49:03 -0700381 char *workbuffer = kzalloc(SPLPAR_MAXLENGTH, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 if (!workbuffer) {
Frans Pop8354be92010-02-06 07:47:20 +0000383 printk(KERN_ERR "%s %s kmalloc failure at line %d\n",
Harvey Harrisone48b1b42008-03-29 08:21:07 +1100384 __FILE__, __func__, __LINE__);
David Gibsond3d21762005-11-10 15:26:20 +1100385 kfree(local_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 return;
387 }
388#ifdef LPARCFG_DEBUG
Frans Pop8354be92010-02-06 07:47:20 +0000389 printk(KERN_INFO "success calling get-system-parameter\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390#endif
Will Schmidt34422fe2006-03-31 09:07:48 -0600391 splpar_strlen = local_buffer[0] * 256 + local_buffer[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 local_buffer += 2; /* step over strlen value */
393
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 w_idx = 0;
395 idx = 0;
396 while ((*local_buffer) && (idx < splpar_strlen)) {
397 workbuffer[w_idx++] = local_buffer[idx++];
398 if ((local_buffer[idx] == ',')
399 || (local_buffer[idx] == '\0')) {
400 workbuffer[w_idx] = '\0';
401 if (w_idx) {
402 /* avoid the empty string */
403 seq_printf(m, "%s\n", workbuffer);
404 }
405 memset(workbuffer, 0, SPLPAR_MAXLENGTH);
406 idx++; /* skip the comma */
407 w_idx = 0;
408 } else if (local_buffer[idx] == '=') {
409 /* code here to replace workbuffer contents
410 with different keyword strings */
411 if (0 == strcmp(workbuffer, "MaxEntCap")) {
412 strcpy(workbuffer,
413 "partition_max_entitled_capacity");
414 w_idx = strlen(workbuffer);
415 }
416 if (0 == strcmp(workbuffer, "MaxPlatProcs")) {
417 strcpy(workbuffer,
418 "system_potential_processors");
419 w_idx = strlen(workbuffer);
420 }
421 }
422 }
423 kfree(workbuffer);
424 local_buffer -= 2; /* back up over strlen value */
425 }
426 kfree(local_buffer);
427}
428
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429/* Return the number of processors in the system.
430 * This function reads through the device tree and counts
431 * the virtual processors, this does not include threads.
432 */
433static int lparcfg_count_active_processors(void)
434{
435 struct device_node *cpus_dn = NULL;
436 int count = 0;
437
438 while ((cpus_dn = of_find_node_by_type(cpus_dn, "cpu"))) {
439#ifdef LPARCFG_DEBUG
Frans Pop8354be92010-02-06 07:47:20 +0000440 printk(KERN_ERR "cpus_dn %p\n", cpus_dn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441#endif
442 count++;
443 }
444 return count;
445}
446
Brian Kingffa5abb2008-07-24 04:30:58 +1000447static void pseries_cmo_data(struct seq_file *m)
448{
449 int cpu;
450 unsigned long cmo_faults = 0;
451 unsigned long cmo_fault_time = 0;
452
Robert Jenningsac224292008-08-16 05:10:18 +1000453 seq_printf(m, "cmo_enabled=%d\n", firmware_has_feature(FW_FEATURE_CMO));
454
Brian Kingffa5abb2008-07-24 04:30:58 +1000455 if (!firmware_has_feature(FW_FEATURE_CMO))
456 return;
457
458 for_each_possible_cpu(cpu) {
Paul Mackerras8154c5d2010-08-12 20:18:15 +0000459 cmo_faults += lppaca_of(cpu).cmo_faults;
460 cmo_fault_time += lppaca_of(cpu).cmo_fault_time;
Brian Kingffa5abb2008-07-24 04:30:58 +1000461 }
462
463 seq_printf(m, "cmo_faults=%lu\n", cmo_faults);
464 seq_printf(m, "cmo_fault_time_usec=%lu\n",
465 cmo_fault_time / tb_ticks_per_usec);
Robert Jenningsac224292008-08-16 05:10:18 +1000466 seq_printf(m, "cmo_primary_psp=%d\n", cmo_get_primary_psp());
467 seq_printf(m, "cmo_secondary_psp=%d\n", cmo_get_secondary_psp());
468 seq_printf(m, "cmo_page_size=%lu\n", cmo_get_page_size());
Brian Kingffa5abb2008-07-24 04:30:58 +1000469}
470
Anton Blanchard0559f0a2009-03-31 20:12:44 +0000471static void splpar_dispatch_data(struct seq_file *m)
472{
473 int cpu;
474 unsigned long dispatches = 0;
475 unsigned long dispatch_dispersions = 0;
476
477 for_each_possible_cpu(cpu) {
Paul Mackerras8154c5d2010-08-12 20:18:15 +0000478 dispatches += lppaca_of(cpu).yield_count;
479 dispatch_dispersions += lppaca_of(cpu).dispersion_count;
Anton Blanchard0559f0a2009-03-31 20:12:44 +0000480 }
481
482 seq_printf(m, "dispatches=%lu\n", dispatches);
483 seq_printf(m, "dispatch_dispersions=%lu\n", dispatch_dispersions);
484}
485
Vaidyanathan Srinivasan6fe9d1f2010-03-31 21:39:24 +0000486static void parse_em_data(struct seq_file *m)
487{
488 unsigned long retbuf[PLPAR_HCALL_BUFSIZE];
489
490 if (plpar_hcall(H_GET_EM_PARMS, retbuf) == H_SUCCESS)
491 seq_printf(m, "power_mode_data=%016lx\n", retbuf[0]);
492}
493
Stephen Rothwell16e9f992006-06-29 15:07:42 +1000494static int pseries_lparcfg_data(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495{
496 int partition_potential_processors;
497 int partition_active_processors;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 struct device_node *rtas_node;
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000499 const int *lrdrp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
Stephen Rothwell8c8dc322007-04-24 13:50:55 +1000501 rtas_node = of_find_node_by_path("/rtas");
Olof Johansson2b9a32e2006-02-15 21:40:44 -0600502 if (rtas_node)
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000503 lrdrp = of_get_property(rtas_node, "ibm,lrdr-capacity", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
505 if (lrdrp == NULL) {
Paul Mackerras271c3f32005-11-11 23:04:40 +1100506 partition_potential_processors = vdso_data->processorCount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 } else {
508 partition_potential_processors = *(lrdrp + 4);
509 }
Stephen Rothwell8c8dc322007-04-24 13:50:55 +1000510 of_node_put(rtas_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
512 partition_active_processors = lparcfg_count_active_processors();
513
Stephen Rothwell1ababe12005-08-03 14:35:25 +1000514 if (firmware_has_feature(FW_FEATURE_SPLPAR)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 /* this call handles the ibm,get-system-parameter contents */
516 parse_system_parameter_string(m);
Nathan Fotenot11529392008-07-24 04:25:16 +1000517 parse_ppp_data(m);
Nathan Fontenotdfc34032008-07-24 04:27:30 +1000518 parse_mpp_data(m);
Brian King9ee820f2011-05-04 16:01:20 +1000519 parse_mpp_x_data(m);
Brian Kingffa5abb2008-07-24 04:30:58 +1000520 pseries_cmo_data(m);
Anton Blanchard0559f0a2009-03-31 20:12:44 +0000521 splpar_dispatch_data(m);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
Nathan Fotenot11529392008-07-24 04:25:16 +1000523 seq_printf(m, "purr=%ld\n", get_purr());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 } else { /* non SPLPAR case */
525
526 seq_printf(m, "system_active_processors=%d\n",
527 partition_potential_processors);
528
529 seq_printf(m, "system_potential_processors=%d\n",
530 partition_potential_processors);
531
532 seq_printf(m, "partition_max_entitled_capacity=%d\n",
533 partition_potential_processors * 100);
534
535 seq_printf(m, "partition_entitled_capacity=%d\n",
536 partition_active_processors * 100);
537 }
538
539 seq_printf(m, "partition_active_processors=%d\n",
540 partition_active_processors);
541
542 seq_printf(m, "partition_potential_processors=%d\n",
543 partition_potential_processors);
544
Paul Mackerras8154c5d2010-08-12 20:18:15 +0000545 seq_printf(m, "shared_processor_mode=%d\n", lppaca_of(0).shared_proc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
Brian King46db2f82009-08-28 12:06:29 +0000547 seq_printf(m, "slb_size=%d\n", mmu_slb_size);
548
Vaidyanathan Srinivasan6fe9d1f2010-03-31 21:39:24 +0000549 parse_em_data(m);
550
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 return 0;
552}
553
Nathan Fotenot11529392008-07-24 04:25:16 +1000554static ssize_t update_ppp(u64 *entitlement, u8 *weight)
555{
Robert Jennings398778f2008-07-24 04:28:05 +1000556 struct hvcall_ppp_data ppp_data;
557 u8 new_weight;
Nathan Fotenot11529392008-07-24 04:25:16 +1000558 u64 new_entitled;
559 ssize_t retval;
560
561 /* Get our current parameters */
Robert Jennings398778f2008-07-24 04:28:05 +1000562 retval = h_get_ppp(&ppp_data);
Nathan Fotenot11529392008-07-24 04:25:16 +1000563 if (retval)
564 return retval;
565
Nathan Fotenot11529392008-07-24 04:25:16 +1000566 if (entitlement) {
Robert Jennings398778f2008-07-24 04:28:05 +1000567 new_weight = ppp_data.weight;
Nathan Fotenot11529392008-07-24 04:25:16 +1000568 new_entitled = *entitlement;
569 } else if (weight) {
570 new_weight = *weight;
Robert Jennings398778f2008-07-24 04:28:05 +1000571 new_entitled = ppp_data.entitlement;
Nathan Fotenot11529392008-07-24 04:25:16 +1000572 } else
573 return -EINVAL;
574
Ingo Molnarfe333322009-01-06 14:26:03 +0000575 pr_debug("%s: current_entitled = %llu, current_weight = %u\n",
Harvey Harrison5df72bf2008-07-31 05:29:03 +1000576 __func__, ppp_data.entitlement, ppp_data.weight);
Nathan Fotenot11529392008-07-24 04:25:16 +1000577
Ingo Molnarfe333322009-01-06 14:26:03 +0000578 pr_debug("%s: new_entitled = %llu, new_weight = %u\n",
Harvey Harrison5df72bf2008-07-31 05:29:03 +1000579 __func__, new_entitled, new_weight);
Nathan Fotenot11529392008-07-24 04:25:16 +1000580
581 retval = plpar_hcall_norets(H_SET_PPP, new_entitled, new_weight);
582 return retval;
583}
584
Nathan Fontenotdfc34032008-07-24 04:27:30 +1000585/**
586 * update_mpp
587 *
588 * Update the memory entitlement and weight for the partition. Caller must
589 * specify either a new entitlement or weight, not both, to be updated
590 * since the h_set_mpp call takes both entitlement and weight as parameters.
591 */
592static ssize_t update_mpp(u64 *entitlement, u8 *weight)
593{
594 struct hvcall_mpp_data mpp_data;
595 u64 new_entitled;
596 u8 new_weight;
597 ssize_t rc;
598
Nathan Fontenot22e1a4d2008-07-24 04:31:52 +1000599 if (entitlement) {
600 /* Check with vio to ensure the new memory entitlement
601 * can be handled.
602 */
603 rc = vio_cmo_entitlement_update(*entitlement);
604 if (rc)
605 return rc;
606 }
607
Nathan Fontenotdfc34032008-07-24 04:27:30 +1000608 rc = h_get_mpp(&mpp_data);
609 if (rc)
610 return rc;
611
612 if (entitlement) {
613 new_weight = mpp_data.mem_weight;
614 new_entitled = *entitlement;
615 } else if (weight) {
616 new_weight = *weight;
617 new_entitled = mpp_data.entitled_mem;
618 } else
619 return -EINVAL;
620
621 pr_debug("%s: current_entitled = %lu, current_weight = %u\n",
Harvey Harrison5df72bf2008-07-31 05:29:03 +1000622 __func__, mpp_data.entitled_mem, mpp_data.mem_weight);
Nathan Fontenotdfc34032008-07-24 04:27:30 +1000623
Ingo Molnarfe333322009-01-06 14:26:03 +0000624 pr_debug("%s: new_entitled = %llu, new_weight = %u\n",
Harvey Harrison5df72bf2008-07-31 05:29:03 +1000625 __func__, new_entitled, new_weight);
Nathan Fontenotdfc34032008-07-24 04:27:30 +1000626
627 rc = plpar_hcall_norets(H_SET_MPP, new_entitled, new_weight);
628 return rc;
629}
630
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631/*
632 * Interface for changing system parameters (variable capacity weight
633 * and entitled capacity). Format of input is "param_name=value";
634 * anything after value is ignored. Valid parameters at this time are
635 * "partition_entitled_capacity" and "capacity_weight". We use
636 * H_SET_PPP to alter parameters.
637 *
638 * This function should be invoked only on systems with
639 * FW_FEATURE_SPLPAR.
640 */
641static ssize_t lparcfg_write(struct file *file, const char __user * buf,
642 size_t count, loff_t * off)
643{
Nathan Fontenot16c14b42008-07-24 05:10:46 +1000644 int kbuf_sz = 64;
645 char kbuf[kbuf_sz];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 char *tmp;
647 u64 new_entitled, *new_entitled_ptr = &new_entitled;
648 u8 new_weight, *new_weight_ptr = &new_weight;
Nathan Fontenot16c14b42008-07-24 05:10:46 +1000649 ssize_t retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
Stephen Rothwell0524aad2007-02-05 16:14:05 -0800651 if (!firmware_has_feature(FW_FEATURE_SPLPAR) ||
652 firmware_has_feature(FW_FEATURE_ISERIES))
653 return -EINVAL;
654
Nathan Fontenot16c14b42008-07-24 05:10:46 +1000655 if (count > kbuf_sz)
656 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 if (copy_from_user(kbuf, buf, count))
Nathan Fontenot16c14b42008-07-24 05:10:46 +1000659 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 kbuf[count - 1] = '\0';
662 tmp = strchr(kbuf, '=');
663 if (!tmp)
Nathan Fontenot16c14b42008-07-24 05:10:46 +1000664 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665
666 *tmp++ = '\0';
667
668 if (!strcmp(kbuf, "partition_entitled_capacity")) {
669 char *endp;
670 *new_entitled_ptr = (u64) simple_strtoul(tmp, &endp, 10);
671 if (endp == tmp)
Nathan Fontenot16c14b42008-07-24 05:10:46 +1000672 return -EINVAL;
Nathan Fotenot11529392008-07-24 04:25:16 +1000673
674 retval = update_ppp(new_entitled_ptr, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 } else if (!strcmp(kbuf, "capacity_weight")) {
676 char *endp;
677 *new_weight_ptr = (u8) simple_strtoul(tmp, &endp, 10);
678 if (endp == tmp)
Nathan Fontenot16c14b42008-07-24 05:10:46 +1000679 return -EINVAL;
Nathan Fotenot11529392008-07-24 04:25:16 +1000680
681 retval = update_ppp(NULL, new_weight_ptr);
Nathan Fontenotdfc34032008-07-24 04:27:30 +1000682 } else if (!strcmp(kbuf, "entitled_memory")) {
683 char *endp;
684 *new_entitled_ptr = (u64) simple_strtoul(tmp, &endp, 10);
685 if (endp == tmp)
Nathan Fontenot16c14b42008-07-24 05:10:46 +1000686 return -EINVAL;
Nathan Fontenotdfc34032008-07-24 04:27:30 +1000687
688 retval = update_mpp(new_entitled_ptr, NULL);
689 } else if (!strcmp(kbuf, "entitled_memory_weight")) {
690 char *endp;
691 *new_weight_ptr = (u8) simple_strtoul(tmp, &endp, 10);
692 if (endp == tmp)
Nathan Fontenot16c14b42008-07-24 05:10:46 +1000693 return -EINVAL;
Nathan Fontenotdfc34032008-07-24 04:27:30 +1000694
695 retval = update_mpp(NULL, new_weight_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 } else
Nathan Fontenot16c14b42008-07-24 05:10:46 +1000697 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
Segher Boessenkool706c8c92006-03-30 14:49:40 +0200699 if (retval == H_SUCCESS || retval == H_CONSTRAINED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 retval = count;
Segher Boessenkool706c8c92006-03-30 14:49:40 +0200701 } else if (retval == H_BUSY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 retval = -EBUSY;
Segher Boessenkool706c8c92006-03-30 14:49:40 +0200703 } else if (retval == H_HARDWARE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 retval = -EIO;
Segher Boessenkool706c8c92006-03-30 14:49:40 +0200705 } else if (retval == H_PARAMETER) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 retval = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 }
708
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 return retval;
710}
711
Stephen Rothwell16e9f992006-06-29 15:07:42 +1000712#else /* CONFIG_PPC_PSERIES */
713
714static int pseries_lparcfg_data(struct seq_file *m, void *v)
715{
716 return 0;
717}
718
719static ssize_t lparcfg_write(struct file *file, const char __user * buf,
720 size_t count, loff_t * off)
721{
Stephen Rothwell0524aad2007-02-05 16:14:05 -0800722 return -EINVAL;
Stephen Rothwell16e9f992006-06-29 15:07:42 +1000723}
724
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725#endif /* CONFIG_PPC_PSERIES */
726
Stephen Rothwell16e9f992006-06-29 15:07:42 +1000727static int lparcfg_data(struct seq_file *m, void *v)
728{
729 struct device_node *rootdn;
730 const char *model = "";
731 const char *system_id = "";
732 const char *tmp;
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000733 const unsigned int *lp_index_ptr;
734 unsigned int lp_index = 0;
Stephen Rothwell16e9f992006-06-29 15:07:42 +1000735
Frans Pop8354be92010-02-06 07:47:20 +0000736 seq_printf(m, "%s %s\n", MODULE_NAME, MODULE_VERS);
Stephen Rothwell16e9f992006-06-29 15:07:42 +1000737
Stephen Rothwell8c8dc322007-04-24 13:50:55 +1000738 rootdn = of_find_node_by_path("/");
Stephen Rothwell16e9f992006-06-29 15:07:42 +1000739 if (rootdn) {
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000740 tmp = of_get_property(rootdn, "model", NULL);
Stephen Rothwell16e9f992006-06-29 15:07:42 +1000741 if (tmp) {
742 model = tmp;
743 /* Skip "IBM," - see platforms/iseries/dt.c */
744 if (firmware_has_feature(FW_FEATURE_ISERIES))
745 model += 4;
746 }
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000747 tmp = of_get_property(rootdn, "system-id", NULL);
Stephen Rothwell16e9f992006-06-29 15:07:42 +1000748 if (tmp) {
749 system_id = tmp;
750 /* Skip "IBM," - see platforms/iseries/dt.c */
751 if (firmware_has_feature(FW_FEATURE_ISERIES))
752 system_id += 4;
753 }
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000754 lp_index_ptr = of_get_property(rootdn, "ibm,partition-no",
755 NULL);
Stephen Rothwell16e9f992006-06-29 15:07:42 +1000756 if (lp_index_ptr)
757 lp_index = *lp_index_ptr;
Stephen Rothwell8c8dc322007-04-24 13:50:55 +1000758 of_node_put(rootdn);
Stephen Rothwell16e9f992006-06-29 15:07:42 +1000759 }
760 seq_printf(m, "serial_number=%s\n", system_id);
761 seq_printf(m, "system_type=%s\n", model);
762 seq_printf(m, "partition_id=%d\n", (int)lp_index);
763
764 if (firmware_has_feature(FW_FEATURE_ISERIES))
765 return iseries_lparcfg_data(m, v);
766 return pseries_lparcfg_data(m, v);
767}
768
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769static int lparcfg_open(struct inode *inode, struct file *file)
770{
771 return single_open(file, lparcfg_data, NULL);
772}
773
Michael Ellerman1c21a292008-05-08 14:27:19 +1000774static const struct file_operations lparcfg_fops = {
Anton Blanchard8acb8882005-11-11 13:53:11 +1100775 .owner = THIS_MODULE,
776 .read = seq_read,
Stephen Rothwell0524aad2007-02-05 16:14:05 -0800777 .write = lparcfg_write,
Anton Blanchard8acb8882005-11-11 13:53:11 +1100778 .open = lparcfg_open,
779 .release = single_release,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200780 .llseek = seq_lseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781};
782
Michael Ellerman1c21a292008-05-08 14:27:19 +1000783static int __init lparcfg_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784{
785 struct proc_dir_entry *ent;
Al Virod161a132011-07-24 03:36:29 -0400786 umode_t mode = S_IRUSR | S_IRGRP | S_IROTH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787
788 /* Allow writing if we have FW_FEATURE_SPLPAR */
Stephen Rothwell16e9f992006-06-29 15:07:42 +1000789 if (firmware_has_feature(FW_FEATURE_SPLPAR) &&
Stephen Rothwell0524aad2007-02-05 16:14:05 -0800790 !firmware_has_feature(FW_FEATURE_ISERIES))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 mode |= S_IWUSR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792
Benjamin Herrenschmidt188917e2009-09-24 19:29:13 +0000793 ent = proc_create("powerpc/lparcfg", mode, NULL, &lparcfg_fops);
Denis V. Lunev66747132008-04-29 01:02:26 -0700794 if (!ent) {
Benjamin Herrenschmidt188917e2009-09-24 19:29:13 +0000795 printk(KERN_ERR "Failed to create powerpc/lparcfg\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 return -EIO;
797 }
798
799 proc_ppc64_lparcfg = ent;
800 return 0;
801}
802
Michael Ellerman1c21a292008-05-08 14:27:19 +1000803static void __exit lparcfg_cleanup(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804{
Nathan Lynch0d9dc4b2007-12-05 03:03:49 +1100805 if (proc_ppc64_lparcfg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 remove_proc_entry("lparcfg", proc_ppc64_lparcfg->parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807}
808
809module_init(lparcfg_init);
810module_exit(lparcfg_cleanup);
811MODULE_DESCRIPTION("Interface for LPAR configuration data");
812MODULE_AUTHOR("Dave Engebretsen");
813MODULE_LICENSE("GPL");