2 * PowerPC64 LPAR Configuration Information Driver
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.
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.
17 * This driver creates a proc file at /proc/ppc64/lparcfg which contains
18 * keyword - value pairs that specify the configuration of the partition.
21 #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>
27 #include <asm/uaccess.h>
28 #include <asm/iseries/hv_lp_config.h>
29 #include <asm/lppaca.h>
30 #include <asm/hvcall.h>
31 #include <asm/firmware.h>
33 #include <asm/system.h>
36 #include <asm/vdso_datapage.h>
40 #define MODULE_VERS "1.8"
41 #define MODULE_NAME "lparcfg"
43 /* #define LPARCFG_DEBUG */
45 static struct proc_dir_entry *proc_ppc64_lparcfg;
48 * Track sum of all purrs across all processors. This is used to further
49 * calculate usage values by different applications
51 static unsigned long get_purr(void)
53 unsigned long sum_purr = 0;
56 for_each_possible_cpu(cpu) {
57 if (firmware_has_feature(FW_FEATURE_ISERIES))
58 sum_purr += lppaca[cpu].emulated_time_base;
62 cu = &per_cpu(cpu_usage_array, cpu);
63 sum_purr += cu->current_tb;
69 #ifdef CONFIG_PPC_ISERIES
72 * Methods used to fetch LPAR data when running on an iSeries platform.
74 static int iseries_lparcfg_data(struct seq_file *m, void *v)
76 unsigned long pool_id;
77 int shared, entitled_capacity, max_entitled_capacity;
78 int processors, max_processors;
79 unsigned long purr = get_purr();
81 shared = (int)(local_paca->lppaca_ptr->shared_proc);
83 seq_printf(m, "system_active_processors=%d\n",
84 (int)HvLpConfig_getSystemPhysicalProcessors());
86 seq_printf(m, "system_potential_processors=%d\n",
87 (int)HvLpConfig_getSystemPhysicalProcessors());
89 processors = (int)HvLpConfig_getPhysicalProcessors();
90 seq_printf(m, "partition_active_processors=%d\n", processors);
92 max_processors = (int)HvLpConfig_getMaxPhysicalProcessors();
93 seq_printf(m, "partition_potential_processors=%d\n", max_processors);
96 entitled_capacity = HvLpConfig_getSharedProcUnits();
97 max_entitled_capacity = HvLpConfig_getMaxSharedProcUnits();
99 entitled_capacity = processors * 100;
100 max_entitled_capacity = max_processors * 100;
102 seq_printf(m, "partition_entitled_capacity=%d\n", entitled_capacity);
104 seq_printf(m, "partition_max_entitled_capacity=%d\n",
105 max_entitled_capacity);
108 pool_id = HvLpConfig_getSharedPoolIndex();
109 seq_printf(m, "pool=%d\n", (int)pool_id);
110 seq_printf(m, "pool_capacity=%d\n",
111 (int)(HvLpConfig_getNumProcsInSharedPool(pool_id) *
113 seq_printf(m, "purr=%ld\n", purr);
116 seq_printf(m, "shared_processor_mode=%d\n", shared);
121 #else /* CONFIG_PPC_ISERIES */
123 static int iseries_lparcfg_data(struct seq_file *m, void *v)
128 #endif /* CONFIG_PPC_ISERIES */
130 #ifdef CONFIG_PPC_PSERIES
132 * Methods used to fetch LPAR data when running on a pSeries platform.
136 * H_GET_MPP hcall returns info in 7 parms
138 int h_get_mpp(struct hvcall_mpp_data *mpp_data)
141 unsigned long retbuf[PLPAR_HCALL9_BUFSIZE];
143 rc = plpar_hcall9(H_GET_MPP, retbuf);
145 mpp_data->entitled_mem = retbuf[0];
146 mpp_data->mapped_mem = retbuf[1];
148 mpp_data->group_num = (retbuf[2] >> 2 * 8) & 0xffff;
149 mpp_data->pool_num = retbuf[2] & 0xffff;
151 mpp_data->mem_weight = (retbuf[3] >> 7 * 8) & 0xff;
152 mpp_data->unallocated_mem_weight = (retbuf[3] >> 6 * 8) & 0xff;
153 mpp_data->unallocated_entitlement = retbuf[3] & 0xffffffffffff;
155 mpp_data->pool_size = retbuf[4];
156 mpp_data->loan_request = retbuf[5];
157 mpp_data->backing_mem = retbuf[6];
161 EXPORT_SYMBOL(h_get_mpp);
163 struct hvcall_ppp_data {
165 u64 unallocated_entitlement;
170 u8 unallocated_weight;
171 u16 active_procs_in_pool;
172 u16 active_system_procs;
173 u16 phys_platform_procs;
174 u32 max_proc_cap_avail;
175 u32 entitled_proc_cap_avail;
179 * H_GET_PPP hcall returns info in 4 parms.
180 * entitled_capacity,unallocated_capacity,
181 * aggregation, resource_capability).
183 * R4 = Entitled Processor Capacity Percentage.
184 * R5 = Unallocated Processor Capacity Percentage.
185 * R6 (AABBCCDDEEFFGGHH).
186 * XXXX - reserved (0)
187 * XXXX - reserved (0)
188 * XXXX - Group Number
189 * XXXX - Pool Number.
190 * R7 (IIJJKKLLMMNNOOPP).
192 * XX - bit 0-6 reserved (0). bit 7 is Capped indicator.
193 * XX - variable processor Capacity Weight
194 * XX - Unallocated Variable Processor Capacity Weight.
195 * XXXX - Active processors in Physical Processor Pool.
196 * XXXX - Processors active on platform.
197 * R8 (QQQQRRRRRRSSSSSS). if ibm,partition-performance-parameters-level >= 1
198 * XXXX - Physical platform procs allocated to virtualization.
199 * XXXXXX - Max procs capacity % available to the partitions pool.
200 * XXXXXX - Entitled procs capacity % available to the
203 static unsigned int h_get_ppp(struct hvcall_ppp_data *ppp_data)
206 unsigned long retbuf[PLPAR_HCALL9_BUFSIZE];
208 rc = plpar_hcall9(H_GET_PPP, retbuf);
210 ppp_data->entitlement = retbuf[0];
211 ppp_data->unallocated_entitlement = retbuf[1];
213 ppp_data->group_num = (retbuf[2] >> 2 * 8) & 0xffff;
214 ppp_data->pool_num = retbuf[2] & 0xffff;
216 ppp_data->capped = (retbuf[3] >> 6 * 8) & 0x01;
217 ppp_data->weight = (retbuf[3] >> 5 * 8) & 0xff;
218 ppp_data->unallocated_weight = (retbuf[3] >> 4 * 8) & 0xff;
219 ppp_data->active_procs_in_pool = (retbuf[3] >> 2 * 8) & 0xffff;
220 ppp_data->active_system_procs = retbuf[3] & 0xffff;
222 ppp_data->phys_platform_procs = retbuf[4] >> 6 * 8;
223 ppp_data->max_proc_cap_avail = (retbuf[4] >> 3 * 8) & 0xffffff;
224 ppp_data->entitled_proc_cap_avail = retbuf[4] & 0xffffff;
229 static unsigned h_pic(unsigned long *pool_idle_time,
230 unsigned long *num_procs)
233 unsigned long retbuf[PLPAR_HCALL_BUFSIZE];
235 rc = plpar_hcall(H_PIC, retbuf);
237 *pool_idle_time = retbuf[0];
238 *num_procs = retbuf[1];
245 * Parse out the data returned from h_get_ppp and h_pic
247 static void parse_ppp_data(struct seq_file *m)
249 struct hvcall_ppp_data ppp_data;
250 struct device_node *root;
251 const int *perf_level;
254 rc = h_get_ppp(&ppp_data);
258 seq_printf(m, "partition_entitled_capacity=%lld\n",
259 ppp_data.entitlement);
260 seq_printf(m, "group=%d\n", ppp_data.group_num);
261 seq_printf(m, "system_active_processors=%d\n",
262 ppp_data.active_system_procs);
264 /* pool related entries are apropriate for shared configs */
265 if (lppaca[0].shared_proc) {
266 unsigned long pool_idle_time, pool_procs;
268 seq_printf(m, "pool=%d\n", ppp_data.pool_num);
270 /* report pool_capacity in percentage */
271 seq_printf(m, "pool_capacity=%d\n",
272 ppp_data.active_procs_in_pool * 100);
274 h_pic(&pool_idle_time, &pool_procs);
275 seq_printf(m, "pool_idle_time=%ld\n", pool_idle_time);
276 seq_printf(m, "pool_num_procs=%ld\n", pool_procs);
279 seq_printf(m, "unallocated_capacity_weight=%d\n",
280 ppp_data.unallocated_weight);
281 seq_printf(m, "capacity_weight=%d\n", ppp_data.weight);
282 seq_printf(m, "capped=%d\n", ppp_data.capped);
283 seq_printf(m, "unallocated_capacity=%lld\n",
284 ppp_data.unallocated_entitlement);
286 /* The last bits of information returned from h_get_ppp are only
287 * valid if the ibm,partition-performance-parameters-level
290 root = of_find_node_by_path("/");
292 perf_level = of_get_property(root,
293 "ibm,partition-performance-parameters-level",
295 if (perf_level && (*perf_level >= 1)) {
297 "physical_procs_allocated_to_virtualization=%d\n",
298 ppp_data.phys_platform_procs);
299 seq_printf(m, "max_proc_capacity_available=%d\n",
300 ppp_data.max_proc_cap_avail);
301 seq_printf(m, "entitled_proc_capacity_available=%d\n",
302 ppp_data.entitled_proc_cap_avail);
311 * Parse out data returned from h_get_mpp
313 static void parse_mpp_data(struct seq_file *m)
315 struct hvcall_mpp_data mpp_data;
318 rc = h_get_mpp(&mpp_data);
322 seq_printf(m, "entitled_memory=%ld\n", mpp_data.entitled_mem);
324 if (mpp_data.mapped_mem != -1)
325 seq_printf(m, "mapped_entitled_memory=%ld\n",
326 mpp_data.mapped_mem);
328 seq_printf(m, "entitled_memory_group_number=%d\n", mpp_data.group_num);
329 seq_printf(m, "entitled_memory_pool_number=%d\n", mpp_data.pool_num);
331 seq_printf(m, "entitled_memory_weight=%d\n", mpp_data.mem_weight);
332 seq_printf(m, "unallocated_entitled_memory_weight=%d\n",
333 mpp_data.unallocated_mem_weight);
334 seq_printf(m, "unallocated_io_mapping_entitlement=%ld\n",
335 mpp_data.unallocated_entitlement);
337 if (mpp_data.pool_size != -1)
338 seq_printf(m, "entitled_memory_pool_size=%ld bytes\n",
341 seq_printf(m, "entitled_memory_loan_request=%ld\n",
342 mpp_data.loan_request);
344 seq_printf(m, "backing_memory=%ld bytes\n", mpp_data.backing_mem);
347 #define SPLPAR_CHARACTERISTICS_TOKEN 20
348 #define SPLPAR_MAXLENGTH 1026*(sizeof(char))
351 * parse_system_parameter_string()
352 * Retrieve the potential_processors, max_entitled_capacity and friends
353 * through the get-system-parameter rtas call. Replace keyword strings as
356 static void parse_system_parameter_string(struct seq_file *m)
360 unsigned char *local_buffer = kmalloc(SPLPAR_MAXLENGTH, GFP_KERNEL);
362 printk(KERN_ERR "%s %s kmalloc failure at line %d \n",
363 __FILE__, __func__, __LINE__);
367 spin_lock(&rtas_data_buf_lock);
368 memset(rtas_data_buf, 0, SPLPAR_MAXLENGTH);
369 call_status = rtas_call(rtas_token("ibm,get-system-parameter"), 3, 1,
371 SPLPAR_CHARACTERISTICS_TOKEN,
374 memcpy(local_buffer, rtas_data_buf, SPLPAR_MAXLENGTH);
375 spin_unlock(&rtas_data_buf_lock);
377 if (call_status != 0) {
379 "%s %s Error calling get-system-parameter (0x%x)\n",
380 __FILE__, __func__, call_status);
384 char *workbuffer = kzalloc(SPLPAR_MAXLENGTH, GFP_KERNEL);
386 printk(KERN_ERR "%s %s kmalloc failure at line %d \n",
387 __FILE__, __func__, __LINE__);
392 printk(KERN_INFO "success calling get-system-parameter \n");
394 splpar_strlen = local_buffer[0] * 256 + local_buffer[1];
395 local_buffer += 2; /* step over strlen value */
399 while ((*local_buffer) && (idx < splpar_strlen)) {
400 workbuffer[w_idx++] = local_buffer[idx++];
401 if ((local_buffer[idx] == ',')
402 || (local_buffer[idx] == '\0')) {
403 workbuffer[w_idx] = '\0';
405 /* avoid the empty string */
406 seq_printf(m, "%s\n", workbuffer);
408 memset(workbuffer, 0, SPLPAR_MAXLENGTH);
409 idx++; /* skip the comma */
411 } else if (local_buffer[idx] == '=') {
412 /* code here to replace workbuffer contents
413 with different keyword strings */
414 if (0 == strcmp(workbuffer, "MaxEntCap")) {
416 "partition_max_entitled_capacity");
417 w_idx = strlen(workbuffer);
419 if (0 == strcmp(workbuffer, "MaxPlatProcs")) {
421 "system_potential_processors");
422 w_idx = strlen(workbuffer);
427 local_buffer -= 2; /* back up over strlen value */
432 /* Return the number of processors in the system.
433 * This function reads through the device tree and counts
434 * the virtual processors, this does not include threads.
436 static int lparcfg_count_active_processors(void)
438 struct device_node *cpus_dn = NULL;
441 while ((cpus_dn = of_find_node_by_type(cpus_dn, "cpu"))) {
443 printk(KERN_ERR "cpus_dn %p \n", cpus_dn);
450 static void pseries_cmo_data(struct seq_file *m)
453 unsigned long cmo_faults = 0;
454 unsigned long cmo_fault_time = 0;
456 seq_printf(m, "cmo_enabled=%d\n", firmware_has_feature(FW_FEATURE_CMO));
458 if (!firmware_has_feature(FW_FEATURE_CMO))
461 for_each_possible_cpu(cpu) {
462 cmo_faults += lppaca[cpu].cmo_faults;
463 cmo_fault_time += lppaca[cpu].cmo_fault_time;
466 seq_printf(m, "cmo_faults=%lu\n", cmo_faults);
467 seq_printf(m, "cmo_fault_time_usec=%lu\n",
468 cmo_fault_time / tb_ticks_per_usec);
469 seq_printf(m, "cmo_primary_psp=%d\n", cmo_get_primary_psp());
470 seq_printf(m, "cmo_secondary_psp=%d\n", cmo_get_secondary_psp());
471 seq_printf(m, "cmo_page_size=%lu\n", cmo_get_page_size());
474 static void splpar_dispatch_data(struct seq_file *m)
477 unsigned long dispatches = 0;
478 unsigned long dispatch_dispersions = 0;
480 for_each_possible_cpu(cpu) {
481 dispatches += lppaca[cpu].yield_count;
482 dispatch_dispersions += lppaca[cpu].dispersion_count;
485 seq_printf(m, "dispatches=%lu\n", dispatches);
486 seq_printf(m, "dispatch_dispersions=%lu\n", dispatch_dispersions);
489 static int pseries_lparcfg_data(struct seq_file *m, void *v)
491 int partition_potential_processors;
492 int partition_active_processors;
493 struct device_node *rtas_node;
494 const int *lrdrp = NULL;
496 rtas_node = of_find_node_by_path("/rtas");
498 lrdrp = of_get_property(rtas_node, "ibm,lrdr-capacity", NULL);
501 partition_potential_processors = vdso_data->processorCount;
503 partition_potential_processors = *(lrdrp + 4);
505 of_node_put(rtas_node);
507 partition_active_processors = lparcfg_count_active_processors();
509 if (firmware_has_feature(FW_FEATURE_SPLPAR)) {
510 /* this call handles the ibm,get-system-parameter contents */
511 parse_system_parameter_string(m);
515 splpar_dispatch_data(m);
517 seq_printf(m, "purr=%ld\n", get_purr());
518 } else { /* non SPLPAR case */
520 seq_printf(m, "system_active_processors=%d\n",
521 partition_potential_processors);
523 seq_printf(m, "system_potential_processors=%d\n",
524 partition_potential_processors);
526 seq_printf(m, "partition_max_entitled_capacity=%d\n",
527 partition_potential_processors * 100);
529 seq_printf(m, "partition_entitled_capacity=%d\n",
530 partition_active_processors * 100);
533 seq_printf(m, "partition_active_processors=%d\n",
534 partition_active_processors);
536 seq_printf(m, "partition_potential_processors=%d\n",
537 partition_potential_processors);
539 seq_printf(m, "shared_processor_mode=%d\n", lppaca[0].shared_proc);
541 seq_printf(m, "slb_size=%d\n", mmu_slb_size);
546 static ssize_t update_ppp(u64 *entitlement, u8 *weight)
548 struct hvcall_ppp_data ppp_data;
553 /* Get our current parameters */
554 retval = h_get_ppp(&ppp_data);
559 new_weight = ppp_data.weight;
560 new_entitled = *entitlement;
562 new_weight = *weight;
563 new_entitled = ppp_data.entitlement;
567 pr_debug("%s: current_entitled = %llu, current_weight = %u\n",
568 __func__, ppp_data.entitlement, ppp_data.weight);
570 pr_debug("%s: new_entitled = %llu, new_weight = %u\n",
571 __func__, new_entitled, new_weight);
573 retval = plpar_hcall_norets(H_SET_PPP, new_entitled, new_weight);
580 * Update the memory entitlement and weight for the partition. Caller must
581 * specify either a new entitlement or weight, not both, to be updated
582 * since the h_set_mpp call takes both entitlement and weight as parameters.
584 static ssize_t update_mpp(u64 *entitlement, u8 *weight)
586 struct hvcall_mpp_data mpp_data;
592 /* Check with vio to ensure the new memory entitlement
595 rc = vio_cmo_entitlement_update(*entitlement);
600 rc = h_get_mpp(&mpp_data);
605 new_weight = mpp_data.mem_weight;
606 new_entitled = *entitlement;
608 new_weight = *weight;
609 new_entitled = mpp_data.entitled_mem;
613 pr_debug("%s: current_entitled = %lu, current_weight = %u\n",
614 __func__, mpp_data.entitled_mem, mpp_data.mem_weight);
616 pr_debug("%s: new_entitled = %llu, new_weight = %u\n",
617 __func__, new_entitled, new_weight);
619 rc = plpar_hcall_norets(H_SET_MPP, new_entitled, new_weight);
624 * Interface for changing system parameters (variable capacity weight
625 * and entitled capacity). Format of input is "param_name=value";
626 * anything after value is ignored. Valid parameters at this time are
627 * "partition_entitled_capacity" and "capacity_weight". We use
628 * H_SET_PPP to alter parameters.
630 * This function should be invoked only on systems with
633 static ssize_t lparcfg_write(struct file *file, const char __user * buf,
634 size_t count, loff_t * off)
639 u64 new_entitled, *new_entitled_ptr = &new_entitled;
640 u8 new_weight, *new_weight_ptr = &new_weight;
643 if (!firmware_has_feature(FW_FEATURE_SPLPAR) ||
644 firmware_has_feature(FW_FEATURE_ISERIES))
650 if (copy_from_user(kbuf, buf, count))
653 kbuf[count - 1] = '\0';
654 tmp = strchr(kbuf, '=');
660 if (!strcmp(kbuf, "partition_entitled_capacity")) {
662 *new_entitled_ptr = (u64) simple_strtoul(tmp, &endp, 10);
666 retval = update_ppp(new_entitled_ptr, NULL);
667 } else if (!strcmp(kbuf, "capacity_weight")) {
669 *new_weight_ptr = (u8) simple_strtoul(tmp, &endp, 10);
673 retval = update_ppp(NULL, new_weight_ptr);
674 } else if (!strcmp(kbuf, "entitled_memory")) {
676 *new_entitled_ptr = (u64) simple_strtoul(tmp, &endp, 10);
680 retval = update_mpp(new_entitled_ptr, NULL);
681 } else if (!strcmp(kbuf, "entitled_memory_weight")) {
683 *new_weight_ptr = (u8) simple_strtoul(tmp, &endp, 10);
687 retval = update_mpp(NULL, new_weight_ptr);
691 if (retval == H_SUCCESS || retval == H_CONSTRAINED) {
693 } else if (retval == H_BUSY) {
695 } else if (retval == H_HARDWARE) {
697 } else if (retval == H_PARAMETER) {
704 #else /* CONFIG_PPC_PSERIES */
706 static int pseries_lparcfg_data(struct seq_file *m, void *v)
711 static ssize_t lparcfg_write(struct file *file, const char __user * buf,
712 size_t count, loff_t * off)
717 #endif /* CONFIG_PPC_PSERIES */
719 static int lparcfg_data(struct seq_file *m, void *v)
721 struct device_node *rootdn;
722 const char *model = "";
723 const char *system_id = "";
725 const unsigned int *lp_index_ptr;
726 unsigned int lp_index = 0;
728 seq_printf(m, "%s %s \n", MODULE_NAME, MODULE_VERS);
730 rootdn = of_find_node_by_path("/");
732 tmp = of_get_property(rootdn, "model", NULL);
735 /* Skip "IBM," - see platforms/iseries/dt.c */
736 if (firmware_has_feature(FW_FEATURE_ISERIES))
739 tmp = of_get_property(rootdn, "system-id", NULL);
742 /* Skip "IBM," - see platforms/iseries/dt.c */
743 if (firmware_has_feature(FW_FEATURE_ISERIES))
746 lp_index_ptr = of_get_property(rootdn, "ibm,partition-no",
749 lp_index = *lp_index_ptr;
752 seq_printf(m, "serial_number=%s\n", system_id);
753 seq_printf(m, "system_type=%s\n", model);
754 seq_printf(m, "partition_id=%d\n", (int)lp_index);
756 if (firmware_has_feature(FW_FEATURE_ISERIES))
757 return iseries_lparcfg_data(m, v);
758 return pseries_lparcfg_data(m, v);
761 static int lparcfg_open(struct inode *inode, struct file *file)
763 return single_open(file, lparcfg_data, NULL);
766 static const struct file_operations lparcfg_fops = {
767 .owner = THIS_MODULE,
769 .write = lparcfg_write,
770 .open = lparcfg_open,
771 .release = single_release,
774 static int __init lparcfg_init(void)
776 struct proc_dir_entry *ent;
777 mode_t mode = S_IRUSR | S_IRGRP | S_IROTH;
779 /* Allow writing if we have FW_FEATURE_SPLPAR */
780 if (firmware_has_feature(FW_FEATURE_SPLPAR) &&
781 !firmware_has_feature(FW_FEATURE_ISERIES))
784 ent = proc_create("ppc64/lparcfg", mode, NULL, &lparcfg_fops);
786 printk(KERN_ERR "Failed to create ppc64/lparcfg\n");
790 proc_ppc64_lparcfg = ent;
794 static void __exit lparcfg_cleanup(void)
796 if (proc_ppc64_lparcfg)
797 remove_proc_entry("lparcfg", proc_ppc64_lparcfg->parent);
800 module_init(lparcfg_init);
801 module_exit(lparcfg_cleanup);
802 MODULE_DESCRIPTION("Interface for LPAR configuration data");
803 MODULE_AUTHOR("Dave Engebretsen");
804 MODULE_LICENSE("GPL");