Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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> |
Kelly Daly | 15b1718 | 2005-11-02 11:55:28 +1100 | [diff] [blame] | 28 | #include <asm/iseries/hv_lp_config.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | #include <asm/lppaca.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | #include <asm/hvcall.h> |
Stephen Rothwell | 1ababe1 | 2005-08-03 14:35:25 +1000 | [diff] [blame] | 31 | #include <asm/firmware.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | #include <asm/rtas.h> |
| 33 | #include <asm/system.h> |
| 34 | #include <asm/time.h> |
Michael Ellerman | 856509d | 2005-06-25 14:54:42 -0700 | [diff] [blame] | 35 | #include <asm/prom.h> |
Paul Mackerras | 271c3f3 | 2005-11-11 23:04:40 +1100 | [diff] [blame] | 36 | #include <asm/vdso_datapage.h> |
Nathan Fontenot | 22e1a4d | 2008-07-24 04:31:52 +1000 | [diff] [blame^] | 37 | #include <asm/vio.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | |
Nathan Fontenot | dfc3403 | 2008-07-24 04:27:30 +1000 | [diff] [blame] | 39 | #define MODULE_VERS "1.8" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | #define MODULE_NAME "lparcfg" |
| 41 | |
| 42 | /* #define LPARCFG_DEBUG */ |
| 43 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | static struct proc_dir_entry *proc_ppc64_lparcfg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | /* |
Stephen Rothwell | 16e9f99 | 2006-06-29 15:07:42 +1000 | [diff] [blame] | 47 | * Track sum of all purrs across all processors. This is used to further |
| 48 | * calculate usage values by different applications |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | */ |
| 50 | static unsigned long get_purr(void) |
| 51 | { |
| 52 | unsigned long sum_purr = 0; |
| 53 | int cpu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | |
KAMEZAWA Hiroyuki | 0e55195 | 2006-03-28 14:50:51 -0800 | [diff] [blame] | 55 | for_each_possible_cpu(cpu) { |
Stephen Rothwell | 16e9f99 | 2006-06-29 15:07:42 +1000 | [diff] [blame] | 56 | if (firmware_has_feature(FW_FEATURE_ISERIES)) |
| 57 | sum_purr += lppaca[cpu].emulated_time_base; |
| 58 | else { |
| 59 | struct cpu_usage *cu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | |
Stephen Rothwell | 16e9f99 | 2006-06-29 15:07:42 +1000 | [diff] [blame] | 61 | cu = &per_cpu(cpu_usage_array, cpu); |
| 62 | sum_purr += cu->current_tb; |
| 63 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | } |
| 65 | return sum_purr; |
| 66 | } |
| 67 | |
Stephen Rothwell | 16e9f99 | 2006-06-29 15:07:42 +1000 | [diff] [blame] | 68 | #ifdef CONFIG_PPC_ISERIES |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | |
David Gibson | d3d2176 | 2005-11-10 15:26:20 +1100 | [diff] [blame] | 70 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | * Methods used to fetch LPAR data when running on an iSeries platform. |
| 72 | */ |
Stephen Rothwell | 16e9f99 | 2006-06-29 15:07:42 +1000 | [diff] [blame] | 73 | static int iseries_lparcfg_data(struct seq_file *m, void *v) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | { |
Stephen Rothwell | 16e9f99 | 2006-06-29 15:07:42 +1000 | [diff] [blame] | 75 | unsigned long pool_id; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | int shared, entitled_capacity, max_entitled_capacity; |
| 77 | int processors, max_processors; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | unsigned long purr = get_purr(); |
| 79 | |
Hugh Dickins | 048c8bc | 2006-11-01 05:44:54 +1100 | [diff] [blame] | 80 | shared = (int)(local_paca->lppaca_ptr->shared_proc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | |
| 82 | seq_printf(m, "system_active_processors=%d\n", |
| 83 | (int)HvLpConfig_getSystemPhysicalProcessors()); |
| 84 | |
| 85 | seq_printf(m, "system_potential_processors=%d\n", |
| 86 | (int)HvLpConfig_getSystemPhysicalProcessors()); |
| 87 | |
| 88 | processors = (int)HvLpConfig_getPhysicalProcessors(); |
| 89 | seq_printf(m, "partition_active_processors=%d\n", processors); |
| 90 | |
| 91 | max_processors = (int)HvLpConfig_getMaxPhysicalProcessors(); |
| 92 | seq_printf(m, "partition_potential_processors=%d\n", max_processors); |
| 93 | |
| 94 | if (shared) { |
| 95 | entitled_capacity = HvLpConfig_getSharedProcUnits(); |
| 96 | max_entitled_capacity = HvLpConfig_getMaxSharedProcUnits(); |
| 97 | } else { |
| 98 | entitled_capacity = processors * 100; |
| 99 | max_entitled_capacity = max_processors * 100; |
| 100 | } |
| 101 | seq_printf(m, "partition_entitled_capacity=%d\n", entitled_capacity); |
| 102 | |
| 103 | seq_printf(m, "partition_max_entitled_capacity=%d\n", |
| 104 | max_entitled_capacity); |
| 105 | |
| 106 | if (shared) { |
| 107 | pool_id = HvLpConfig_getSharedPoolIndex(); |
| 108 | seq_printf(m, "pool=%d\n", (int)pool_id); |
| 109 | seq_printf(m, "pool_capacity=%d\n", |
| 110 | (int)(HvLpConfig_getNumProcsInSharedPool(pool_id) * |
| 111 | 100)); |
| 112 | seq_printf(m, "purr=%ld\n", purr); |
| 113 | } |
| 114 | |
| 115 | seq_printf(m, "shared_processor_mode=%d\n", shared); |
| 116 | |
| 117 | return 0; |
| 118 | } |
Stephen Rothwell | 16e9f99 | 2006-06-29 15:07:42 +1000 | [diff] [blame] | 119 | |
| 120 | #else /* CONFIG_PPC_ISERIES */ |
| 121 | |
| 122 | static int iseries_lparcfg_data(struct seq_file *m, void *v) |
| 123 | { |
| 124 | return 0; |
| 125 | } |
| 126 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | #endif /* CONFIG_PPC_ISERIES */ |
| 128 | |
| 129 | #ifdef CONFIG_PPC_PSERIES |
David Gibson | d3d2176 | 2005-11-10 15:26:20 +1100 | [diff] [blame] | 130 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | * Methods used to fetch LPAR data when running on a pSeries platform. |
| 132 | */ |
Nathan Fontenot | dfc3403 | 2008-07-24 04:27:30 +1000 | [diff] [blame] | 133 | /** |
| 134 | * h_get_mpp |
| 135 | * H_GET_MPP hcall returns info in 7 parms |
| 136 | */ |
| 137 | int h_get_mpp(struct hvcall_mpp_data *mpp_data) |
| 138 | { |
| 139 | int rc; |
| 140 | unsigned long retbuf[PLPAR_HCALL9_BUFSIZE]; |
| 141 | |
| 142 | rc = plpar_hcall9(H_GET_MPP, retbuf); |
| 143 | |
| 144 | mpp_data->entitled_mem = retbuf[0]; |
| 145 | mpp_data->mapped_mem = retbuf[1]; |
| 146 | |
| 147 | mpp_data->group_num = (retbuf[2] >> 2 * 8) & 0xffff; |
| 148 | mpp_data->pool_num = retbuf[2] & 0xffff; |
| 149 | |
| 150 | mpp_data->mem_weight = (retbuf[3] >> 7 * 8) & 0xff; |
| 151 | mpp_data->unallocated_mem_weight = (retbuf[3] >> 6 * 8) & 0xff; |
| 152 | mpp_data->unallocated_entitlement = retbuf[3] & 0xffffffffffff; |
| 153 | |
| 154 | mpp_data->pool_size = retbuf[4]; |
| 155 | mpp_data->loan_request = retbuf[5]; |
| 156 | mpp_data->backing_mem = retbuf[6]; |
| 157 | |
| 158 | return rc; |
| 159 | } |
| 160 | EXPORT_SYMBOL(h_get_mpp); |
| 161 | |
Robert Jennings | 398778f | 2008-07-24 04:28:05 +1000 | [diff] [blame] | 162 | struct hvcall_ppp_data { |
| 163 | u64 entitlement; |
| 164 | u64 unallocated_entitlement; |
| 165 | u16 group_num; |
| 166 | u16 pool_num; |
| 167 | u8 capped; |
| 168 | u8 weight; |
| 169 | u8 unallocated_weight; |
| 170 | u16 active_procs_in_pool; |
| 171 | u16 active_system_procs; |
| 172 | }; |
| 173 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | /* |
| 175 | * H_GET_PPP hcall returns info in 4 parms. |
| 176 | * entitled_capacity,unallocated_capacity, |
| 177 | * aggregation, resource_capability). |
| 178 | * |
David Gibson | d3d2176 | 2005-11-10 15:26:20 +1100 | [diff] [blame] | 179 | * R4 = Entitled Processor Capacity Percentage. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | * R5 = Unallocated Processor Capacity Percentage. |
| 181 | * R6 (AABBCCDDEEFFGGHH). |
| 182 | * XXXX - reserved (0) |
| 183 | * XXXX - reserved (0) |
| 184 | * XXXX - Group Number |
| 185 | * XXXX - Pool Number. |
| 186 | * R7 (IIJJKKLLMMNNOOPP). |
| 187 | * XX - reserved. (0) |
| 188 | * XX - bit 0-6 reserved (0). bit 7 is Capped indicator. |
| 189 | * XX - variable processor Capacity Weight |
| 190 | * XX - Unallocated Variable Processor Capacity Weight. |
| 191 | * XXXX - Active processors in Physical Processor Pool. |
David Gibson | d3d2176 | 2005-11-10 15:26:20 +1100 | [diff] [blame] | 192 | * XXXX - Processors active on platform. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | */ |
Robert Jennings | 398778f | 2008-07-24 04:28:05 +1000 | [diff] [blame] | 194 | static unsigned int h_get_ppp(struct hvcall_ppp_data *ppp_data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | { |
| 196 | unsigned long rc; |
Anton Blanchard | b9377ff | 2006-07-19 08:01:28 +1000 | [diff] [blame] | 197 | unsigned long retbuf[PLPAR_HCALL_BUFSIZE]; |
| 198 | |
| 199 | rc = plpar_hcall(H_GET_PPP, retbuf); |
| 200 | |
Robert Jennings | 398778f | 2008-07-24 04:28:05 +1000 | [diff] [blame] | 201 | ppp_data->entitlement = retbuf[0]; |
| 202 | ppp_data->unallocated_entitlement = retbuf[1]; |
| 203 | |
| 204 | ppp_data->group_num = (retbuf[2] >> 2 * 8) & 0xffff; |
| 205 | ppp_data->pool_num = retbuf[2] & 0xffff; |
| 206 | |
| 207 | ppp_data->capped = (retbuf[3] >> 6 * 8) & 0x01; |
| 208 | ppp_data->weight = (retbuf[3] >> 5 * 8) & 0xff; |
| 209 | ppp_data->unallocated_weight = (retbuf[3] >> 4 * 8) & 0xff; |
| 210 | ppp_data->active_procs_in_pool = (retbuf[3] >> 2 * 8) & 0xffff; |
| 211 | ppp_data->active_system_procs = retbuf[3] & 0xffff; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | return rc; |
| 214 | } |
| 215 | |
Nathan Fotenot | 1152939 | 2008-07-24 04:25:16 +1000 | [diff] [blame] | 216 | static unsigned h_pic(unsigned long *pool_idle_time, |
| 217 | unsigned long *num_procs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 218 | { |
| 219 | unsigned long rc; |
Anton Blanchard | b9377ff | 2006-07-19 08:01:28 +1000 | [diff] [blame] | 220 | unsigned long retbuf[PLPAR_HCALL_BUFSIZE]; |
| 221 | |
| 222 | rc = plpar_hcall(H_PIC, retbuf); |
| 223 | |
| 224 | *pool_idle_time = retbuf[0]; |
| 225 | *num_procs = retbuf[1]; |
Nathan Fotenot | 1152939 | 2008-07-24 04:25:16 +1000 | [diff] [blame] | 226 | |
| 227 | return rc; |
| 228 | } |
| 229 | |
| 230 | /* |
| 231 | * parse_ppp_data |
| 232 | * Parse out the data returned from h_get_ppp and h_pic |
| 233 | */ |
| 234 | static void parse_ppp_data(struct seq_file *m) |
| 235 | { |
Robert Jennings | 398778f | 2008-07-24 04:28:05 +1000 | [diff] [blame] | 236 | struct hvcall_ppp_data ppp_data; |
Nathan Fotenot | 1152939 | 2008-07-24 04:25:16 +1000 | [diff] [blame] | 237 | int rc; |
| 238 | |
Robert Jennings | 398778f | 2008-07-24 04:28:05 +1000 | [diff] [blame] | 239 | rc = h_get_ppp(&ppp_data); |
Nathan Fotenot | 1152939 | 2008-07-24 04:25:16 +1000 | [diff] [blame] | 240 | if (rc) |
| 241 | return; |
| 242 | |
Robert Jennings | 398778f | 2008-07-24 04:28:05 +1000 | [diff] [blame] | 243 | seq_printf(m, "partition_entitled_capacity=%ld\n", |
| 244 | ppp_data.entitlement); |
| 245 | seq_printf(m, "group=%d\n", ppp_data.group_num); |
| 246 | seq_printf(m, "system_active_processors=%d\n", |
| 247 | ppp_data.active_system_procs); |
Nathan Fotenot | 1152939 | 2008-07-24 04:25:16 +1000 | [diff] [blame] | 248 | |
| 249 | /* pool related entries are apropriate for shared configs */ |
| 250 | if (lppaca[0].shared_proc) { |
| 251 | unsigned long pool_idle_time, pool_procs; |
| 252 | |
Robert Jennings | 398778f | 2008-07-24 04:28:05 +1000 | [diff] [blame] | 253 | seq_printf(m, "pool=%d\n", ppp_data.pool_num); |
Nathan Fotenot | 1152939 | 2008-07-24 04:25:16 +1000 | [diff] [blame] | 254 | |
| 255 | /* report pool_capacity in percentage */ |
Robert Jennings | 398778f | 2008-07-24 04:28:05 +1000 | [diff] [blame] | 256 | seq_printf(m, "pool_capacity=%d\n", |
| 257 | ppp_data.active_procs_in_pool * 100); |
Nathan Fotenot | 1152939 | 2008-07-24 04:25:16 +1000 | [diff] [blame] | 258 | |
| 259 | h_pic(&pool_idle_time, &pool_procs); |
| 260 | seq_printf(m, "pool_idle_time=%ld\n", pool_idle_time); |
| 261 | seq_printf(m, "pool_num_procs=%ld\n", pool_procs); |
| 262 | } |
| 263 | |
Robert Jennings | 398778f | 2008-07-24 04:28:05 +1000 | [diff] [blame] | 264 | seq_printf(m, "unallocated_capacity_weight=%d\n", |
| 265 | ppp_data.unallocated_weight); |
| 266 | seq_printf(m, "capacity_weight=%d\n", ppp_data.weight); |
| 267 | seq_printf(m, "capped=%d\n", ppp_data.capped); |
| 268 | seq_printf(m, "unallocated_capacity=%ld\n", |
| 269 | ppp_data.unallocated_entitlement); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | } |
| 271 | |
Nathan Fontenot | dfc3403 | 2008-07-24 04:27:30 +1000 | [diff] [blame] | 272 | /** |
| 273 | * parse_mpp_data |
| 274 | * Parse out data returned from h_get_mpp |
| 275 | */ |
| 276 | static void parse_mpp_data(struct seq_file *m) |
| 277 | { |
| 278 | struct hvcall_mpp_data mpp_data; |
| 279 | int rc; |
| 280 | |
| 281 | rc = h_get_mpp(&mpp_data); |
| 282 | if (rc) |
| 283 | return; |
| 284 | |
| 285 | seq_printf(m, "entitled_memory=%ld\n", mpp_data.entitled_mem); |
| 286 | |
| 287 | if (mpp_data.mapped_mem != -1) |
| 288 | seq_printf(m, "mapped_entitled_memory=%ld\n", |
| 289 | mpp_data.mapped_mem); |
| 290 | |
| 291 | seq_printf(m, "entitled_memory_group_number=%d\n", mpp_data.group_num); |
| 292 | seq_printf(m, "entitled_memory_pool_number=%d\n", mpp_data.pool_num); |
| 293 | |
| 294 | seq_printf(m, "entitled_memory_weight=%d\n", mpp_data.mem_weight); |
| 295 | seq_printf(m, "unallocated_entitled_memory_weight=%d\n", |
| 296 | mpp_data.unallocated_mem_weight); |
| 297 | seq_printf(m, "unallocated_io_mapping_entitlement=%ld\n", |
| 298 | mpp_data.unallocated_entitlement); |
| 299 | |
| 300 | if (mpp_data.pool_size != -1) |
| 301 | seq_printf(m, "entitled_memory_pool_size=%ld bytes\n", |
| 302 | mpp_data.pool_size); |
| 303 | |
| 304 | seq_printf(m, "entitled_memory_loan_request=%ld\n", |
| 305 | mpp_data.loan_request); |
| 306 | |
| 307 | seq_printf(m, "backing_memory=%ld bytes\n", mpp_data.backing_mem); |
| 308 | } |
| 309 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | #define SPLPAR_CHARACTERISTICS_TOKEN 20 |
| 311 | #define SPLPAR_MAXLENGTH 1026*(sizeof(char)) |
| 312 | |
| 313 | /* |
| 314 | * parse_system_parameter_string() |
| 315 | * Retrieve the potential_processors, max_entitled_capacity and friends |
| 316 | * through the get-system-parameter rtas call. Replace keyword strings as |
| 317 | * necessary. |
| 318 | */ |
| 319 | static void parse_system_parameter_string(struct seq_file *m) |
| 320 | { |
| 321 | int call_status; |
| 322 | |
Will Schmidt | 34422fe | 2006-03-31 09:07:48 -0600 | [diff] [blame] | 323 | unsigned char *local_buffer = kmalloc(SPLPAR_MAXLENGTH, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 324 | if (!local_buffer) { |
| 325 | printk(KERN_ERR "%s %s kmalloc failure at line %d \n", |
Harvey Harrison | e48b1b4 | 2008-03-29 08:21:07 +1100 | [diff] [blame] | 326 | __FILE__, __func__, __LINE__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 327 | return; |
| 328 | } |
| 329 | |
| 330 | spin_lock(&rtas_data_buf_lock); |
| 331 | memset(rtas_data_buf, 0, SPLPAR_MAXLENGTH); |
| 332 | call_status = rtas_call(rtas_token("ibm,get-system-parameter"), 3, 1, |
| 333 | NULL, |
| 334 | SPLPAR_CHARACTERISTICS_TOKEN, |
Will Schmidt | 34422fe | 2006-03-31 09:07:48 -0600 | [diff] [blame] | 335 | __pa(rtas_data_buf), |
| 336 | RTAS_DATA_BUF_SIZE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 337 | memcpy(local_buffer, rtas_data_buf, SPLPAR_MAXLENGTH); |
| 338 | spin_unlock(&rtas_data_buf_lock); |
| 339 | |
| 340 | if (call_status != 0) { |
| 341 | printk(KERN_INFO |
| 342 | "%s %s Error calling get-system-parameter (0x%x)\n", |
Harvey Harrison | e48b1b4 | 2008-03-29 08:21:07 +1100 | [diff] [blame] | 343 | __FILE__, __func__, call_status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | } else { |
| 345 | int splpar_strlen; |
| 346 | int idx, w_idx; |
Yoann Padioleau | dd00cc4 | 2007-07-19 01:49:03 -0700 | [diff] [blame] | 347 | char *workbuffer = kzalloc(SPLPAR_MAXLENGTH, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 348 | if (!workbuffer) { |
| 349 | printk(KERN_ERR "%s %s kmalloc failure at line %d \n", |
Harvey Harrison | e48b1b4 | 2008-03-29 08:21:07 +1100 | [diff] [blame] | 350 | __FILE__, __func__, __LINE__); |
David Gibson | d3d2176 | 2005-11-10 15:26:20 +1100 | [diff] [blame] | 351 | kfree(local_buffer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 352 | return; |
| 353 | } |
| 354 | #ifdef LPARCFG_DEBUG |
| 355 | printk(KERN_INFO "success calling get-system-parameter \n"); |
| 356 | #endif |
Will Schmidt | 34422fe | 2006-03-31 09:07:48 -0600 | [diff] [blame] | 357 | splpar_strlen = local_buffer[0] * 256 + local_buffer[1]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | local_buffer += 2; /* step over strlen value */ |
| 359 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | w_idx = 0; |
| 361 | idx = 0; |
| 362 | while ((*local_buffer) && (idx < splpar_strlen)) { |
| 363 | workbuffer[w_idx++] = local_buffer[idx++]; |
| 364 | if ((local_buffer[idx] == ',') |
| 365 | || (local_buffer[idx] == '\0')) { |
| 366 | workbuffer[w_idx] = '\0'; |
| 367 | if (w_idx) { |
| 368 | /* avoid the empty string */ |
| 369 | seq_printf(m, "%s\n", workbuffer); |
| 370 | } |
| 371 | memset(workbuffer, 0, SPLPAR_MAXLENGTH); |
| 372 | idx++; /* skip the comma */ |
| 373 | w_idx = 0; |
| 374 | } else if (local_buffer[idx] == '=') { |
| 375 | /* code here to replace workbuffer contents |
| 376 | with different keyword strings */ |
| 377 | if (0 == strcmp(workbuffer, "MaxEntCap")) { |
| 378 | strcpy(workbuffer, |
| 379 | "partition_max_entitled_capacity"); |
| 380 | w_idx = strlen(workbuffer); |
| 381 | } |
| 382 | if (0 == strcmp(workbuffer, "MaxPlatProcs")) { |
| 383 | strcpy(workbuffer, |
| 384 | "system_potential_processors"); |
| 385 | w_idx = strlen(workbuffer); |
| 386 | } |
| 387 | } |
| 388 | } |
| 389 | kfree(workbuffer); |
| 390 | local_buffer -= 2; /* back up over strlen value */ |
| 391 | } |
| 392 | kfree(local_buffer); |
| 393 | } |
| 394 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 395 | /* Return the number of processors in the system. |
| 396 | * This function reads through the device tree and counts |
| 397 | * the virtual processors, this does not include threads. |
| 398 | */ |
| 399 | static int lparcfg_count_active_processors(void) |
| 400 | { |
| 401 | struct device_node *cpus_dn = NULL; |
| 402 | int count = 0; |
| 403 | |
| 404 | while ((cpus_dn = of_find_node_by_type(cpus_dn, "cpu"))) { |
| 405 | #ifdef LPARCFG_DEBUG |
| 406 | printk(KERN_ERR "cpus_dn %p \n", cpus_dn); |
| 407 | #endif |
| 408 | count++; |
| 409 | } |
| 410 | return count; |
| 411 | } |
| 412 | |
Brian King | ffa5abb | 2008-07-24 04:30:58 +1000 | [diff] [blame] | 413 | static void pseries_cmo_data(struct seq_file *m) |
| 414 | { |
| 415 | int cpu; |
| 416 | unsigned long cmo_faults = 0; |
| 417 | unsigned long cmo_fault_time = 0; |
| 418 | |
| 419 | if (!firmware_has_feature(FW_FEATURE_CMO)) |
| 420 | return; |
| 421 | |
| 422 | for_each_possible_cpu(cpu) { |
| 423 | cmo_faults += lppaca[cpu].cmo_faults; |
| 424 | cmo_fault_time += lppaca[cpu].cmo_fault_time; |
| 425 | } |
| 426 | |
| 427 | seq_printf(m, "cmo_faults=%lu\n", cmo_faults); |
| 428 | seq_printf(m, "cmo_fault_time_usec=%lu\n", |
| 429 | cmo_fault_time / tb_ticks_per_usec); |
| 430 | } |
| 431 | |
Stephen Rothwell | 16e9f99 | 2006-06-29 15:07:42 +1000 | [diff] [blame] | 432 | static int pseries_lparcfg_data(struct seq_file *m, void *v) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 433 | { |
| 434 | int partition_potential_processors; |
| 435 | int partition_active_processors; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 436 | struct device_node *rtas_node; |
Jeremy Kerr | a7f67bd | 2006-07-12 15:35:54 +1000 | [diff] [blame] | 437 | const int *lrdrp = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 438 | |
Stephen Rothwell | 8c8dc32 | 2007-04-24 13:50:55 +1000 | [diff] [blame] | 439 | rtas_node = of_find_node_by_path("/rtas"); |
Olof Johansson | 2b9a32e | 2006-02-15 21:40:44 -0600 | [diff] [blame] | 440 | if (rtas_node) |
Stephen Rothwell | e2eb639 | 2007-04-03 22:26:41 +1000 | [diff] [blame] | 441 | lrdrp = of_get_property(rtas_node, "ibm,lrdr-capacity", NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 442 | |
| 443 | if (lrdrp == NULL) { |
Paul Mackerras | 271c3f3 | 2005-11-11 23:04:40 +1100 | [diff] [blame] | 444 | partition_potential_processors = vdso_data->processorCount; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 445 | } else { |
| 446 | partition_potential_processors = *(lrdrp + 4); |
| 447 | } |
Stephen Rothwell | 8c8dc32 | 2007-04-24 13:50:55 +1000 | [diff] [blame] | 448 | of_node_put(rtas_node); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 449 | |
| 450 | partition_active_processors = lparcfg_count_active_processors(); |
| 451 | |
Stephen Rothwell | 1ababe1 | 2005-08-03 14:35:25 +1000 | [diff] [blame] | 452 | if (firmware_has_feature(FW_FEATURE_SPLPAR)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 453 | /* this call handles the ibm,get-system-parameter contents */ |
| 454 | parse_system_parameter_string(m); |
Nathan Fotenot | 1152939 | 2008-07-24 04:25:16 +1000 | [diff] [blame] | 455 | parse_ppp_data(m); |
Nathan Fontenot | dfc3403 | 2008-07-24 04:27:30 +1000 | [diff] [blame] | 456 | parse_mpp_data(m); |
Brian King | ffa5abb | 2008-07-24 04:30:58 +1000 | [diff] [blame] | 457 | pseries_cmo_data(m); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 458 | |
Nathan Fotenot | 1152939 | 2008-07-24 04:25:16 +1000 | [diff] [blame] | 459 | seq_printf(m, "purr=%ld\n", get_purr()); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 460 | } else { /* non SPLPAR case */ |
| 461 | |
| 462 | seq_printf(m, "system_active_processors=%d\n", |
| 463 | partition_potential_processors); |
| 464 | |
| 465 | seq_printf(m, "system_potential_processors=%d\n", |
| 466 | partition_potential_processors); |
| 467 | |
| 468 | seq_printf(m, "partition_max_entitled_capacity=%d\n", |
| 469 | partition_potential_processors * 100); |
| 470 | |
| 471 | seq_printf(m, "partition_entitled_capacity=%d\n", |
| 472 | partition_active_processors * 100); |
| 473 | } |
| 474 | |
| 475 | seq_printf(m, "partition_active_processors=%d\n", |
| 476 | partition_active_processors); |
| 477 | |
| 478 | seq_printf(m, "partition_potential_processors=%d\n", |
| 479 | partition_potential_processors); |
| 480 | |
David Gibson | 3356bb9f7 | 2006-01-13 10:26:42 +1100 | [diff] [blame] | 481 | seq_printf(m, "shared_processor_mode=%d\n", lppaca[0].shared_proc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 482 | |
| 483 | return 0; |
| 484 | } |
| 485 | |
Nathan Fotenot | 1152939 | 2008-07-24 04:25:16 +1000 | [diff] [blame] | 486 | static ssize_t update_ppp(u64 *entitlement, u8 *weight) |
| 487 | { |
Robert Jennings | 398778f | 2008-07-24 04:28:05 +1000 | [diff] [blame] | 488 | struct hvcall_ppp_data ppp_data; |
| 489 | u8 new_weight; |
Nathan Fotenot | 1152939 | 2008-07-24 04:25:16 +1000 | [diff] [blame] | 490 | u64 new_entitled; |
| 491 | ssize_t retval; |
| 492 | |
| 493 | /* Get our current parameters */ |
Robert Jennings | 398778f | 2008-07-24 04:28:05 +1000 | [diff] [blame] | 494 | retval = h_get_ppp(&ppp_data); |
Nathan Fotenot | 1152939 | 2008-07-24 04:25:16 +1000 | [diff] [blame] | 495 | if (retval) |
| 496 | return retval; |
| 497 | |
Nathan Fotenot | 1152939 | 2008-07-24 04:25:16 +1000 | [diff] [blame] | 498 | if (entitlement) { |
Robert Jennings | 398778f | 2008-07-24 04:28:05 +1000 | [diff] [blame] | 499 | new_weight = ppp_data.weight; |
Nathan Fotenot | 1152939 | 2008-07-24 04:25:16 +1000 | [diff] [blame] | 500 | new_entitled = *entitlement; |
| 501 | } else if (weight) { |
| 502 | new_weight = *weight; |
Robert Jennings | 398778f | 2008-07-24 04:28:05 +1000 | [diff] [blame] | 503 | new_entitled = ppp_data.entitlement; |
Nathan Fotenot | 1152939 | 2008-07-24 04:25:16 +1000 | [diff] [blame] | 504 | } else |
| 505 | return -EINVAL; |
| 506 | |
| 507 | pr_debug("%s: current_entitled = %lu, current_weight = %u\n", |
Robert Jennings | 398778f | 2008-07-24 04:28:05 +1000 | [diff] [blame] | 508 | __FUNCTION__, ppp_data.entitlement, ppp_data.weight); |
Nathan Fotenot | 1152939 | 2008-07-24 04:25:16 +1000 | [diff] [blame] | 509 | |
| 510 | pr_debug("%s: new_entitled = %lu, new_weight = %u\n", |
| 511 | __FUNCTION__, new_entitled, new_weight); |
| 512 | |
| 513 | retval = plpar_hcall_norets(H_SET_PPP, new_entitled, new_weight); |
| 514 | return retval; |
| 515 | } |
| 516 | |
Nathan Fontenot | dfc3403 | 2008-07-24 04:27:30 +1000 | [diff] [blame] | 517 | /** |
| 518 | * update_mpp |
| 519 | * |
| 520 | * Update the memory entitlement and weight for the partition. Caller must |
| 521 | * specify either a new entitlement or weight, not both, to be updated |
| 522 | * since the h_set_mpp call takes both entitlement and weight as parameters. |
| 523 | */ |
| 524 | static ssize_t update_mpp(u64 *entitlement, u8 *weight) |
| 525 | { |
| 526 | struct hvcall_mpp_data mpp_data; |
| 527 | u64 new_entitled; |
| 528 | u8 new_weight; |
| 529 | ssize_t rc; |
| 530 | |
Nathan Fontenot | 22e1a4d | 2008-07-24 04:31:52 +1000 | [diff] [blame^] | 531 | if (entitlement) { |
| 532 | /* Check with vio to ensure the new memory entitlement |
| 533 | * can be handled. |
| 534 | */ |
| 535 | rc = vio_cmo_entitlement_update(*entitlement); |
| 536 | if (rc) |
| 537 | return rc; |
| 538 | } |
| 539 | |
Nathan Fontenot | dfc3403 | 2008-07-24 04:27:30 +1000 | [diff] [blame] | 540 | rc = h_get_mpp(&mpp_data); |
| 541 | if (rc) |
| 542 | return rc; |
| 543 | |
| 544 | if (entitlement) { |
| 545 | new_weight = mpp_data.mem_weight; |
| 546 | new_entitled = *entitlement; |
| 547 | } else if (weight) { |
| 548 | new_weight = *weight; |
| 549 | new_entitled = mpp_data.entitled_mem; |
| 550 | } else |
| 551 | return -EINVAL; |
| 552 | |
| 553 | pr_debug("%s: current_entitled = %lu, current_weight = %u\n", |
| 554 | __FUNCTION__, mpp_data.entitled_mem, mpp_data.mem_weight); |
| 555 | |
| 556 | pr_debug("%s: new_entitled = %lu, new_weight = %u\n", |
| 557 | __FUNCTION__, new_entitled, new_weight); |
| 558 | |
| 559 | rc = plpar_hcall_norets(H_SET_MPP, new_entitled, new_weight); |
| 560 | return rc; |
| 561 | } |
| 562 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 563 | /* |
| 564 | * Interface for changing system parameters (variable capacity weight |
| 565 | * and entitled capacity). Format of input is "param_name=value"; |
| 566 | * anything after value is ignored. Valid parameters at this time are |
| 567 | * "partition_entitled_capacity" and "capacity_weight". We use |
| 568 | * H_SET_PPP to alter parameters. |
| 569 | * |
| 570 | * This function should be invoked only on systems with |
| 571 | * FW_FEATURE_SPLPAR. |
| 572 | */ |
| 573 | static ssize_t lparcfg_write(struct file *file, const char __user * buf, |
| 574 | size_t count, loff_t * off) |
| 575 | { |
| 576 | char *kbuf; |
| 577 | char *tmp; |
| 578 | u64 new_entitled, *new_entitled_ptr = &new_entitled; |
| 579 | u8 new_weight, *new_weight_ptr = &new_weight; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 580 | ssize_t retval = -ENOMEM; |
| 581 | |
Stephen Rothwell | 0524aad | 2007-02-05 16:14:05 -0800 | [diff] [blame] | 582 | if (!firmware_has_feature(FW_FEATURE_SPLPAR) || |
| 583 | firmware_has_feature(FW_FEATURE_ISERIES)) |
| 584 | return -EINVAL; |
| 585 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 586 | kbuf = kmalloc(count, GFP_KERNEL); |
| 587 | if (!kbuf) |
| 588 | goto out; |
| 589 | |
| 590 | retval = -EFAULT; |
| 591 | if (copy_from_user(kbuf, buf, count)) |
| 592 | goto out; |
| 593 | |
| 594 | retval = -EINVAL; |
| 595 | kbuf[count - 1] = '\0'; |
| 596 | tmp = strchr(kbuf, '='); |
| 597 | if (!tmp) |
| 598 | goto out; |
| 599 | |
| 600 | *tmp++ = '\0'; |
| 601 | |
| 602 | if (!strcmp(kbuf, "partition_entitled_capacity")) { |
| 603 | char *endp; |
| 604 | *new_entitled_ptr = (u64) simple_strtoul(tmp, &endp, 10); |
| 605 | if (endp == tmp) |
| 606 | goto out; |
Nathan Fotenot | 1152939 | 2008-07-24 04:25:16 +1000 | [diff] [blame] | 607 | |
| 608 | retval = update_ppp(new_entitled_ptr, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 609 | } else if (!strcmp(kbuf, "capacity_weight")) { |
| 610 | char *endp; |
| 611 | *new_weight_ptr = (u8) simple_strtoul(tmp, &endp, 10); |
| 612 | if (endp == tmp) |
| 613 | goto out; |
Nathan Fotenot | 1152939 | 2008-07-24 04:25:16 +1000 | [diff] [blame] | 614 | |
| 615 | retval = update_ppp(NULL, new_weight_ptr); |
Nathan Fontenot | dfc3403 | 2008-07-24 04:27:30 +1000 | [diff] [blame] | 616 | } else if (!strcmp(kbuf, "entitled_memory")) { |
| 617 | char *endp; |
| 618 | *new_entitled_ptr = (u64) simple_strtoul(tmp, &endp, 10); |
| 619 | if (endp == tmp) |
| 620 | goto out; |
| 621 | |
| 622 | retval = update_mpp(new_entitled_ptr, NULL); |
| 623 | } else if (!strcmp(kbuf, "entitled_memory_weight")) { |
| 624 | char *endp; |
| 625 | *new_weight_ptr = (u8) simple_strtoul(tmp, &endp, 10); |
| 626 | if (endp == tmp) |
| 627 | goto out; |
| 628 | |
| 629 | retval = update_mpp(NULL, new_weight_ptr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 630 | } else |
| 631 | goto out; |
| 632 | |
Segher Boessenkool | 706c8c9 | 2006-03-30 14:49:40 +0200 | [diff] [blame] | 633 | if (retval == H_SUCCESS || retval == H_CONSTRAINED) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 634 | retval = count; |
Segher Boessenkool | 706c8c9 | 2006-03-30 14:49:40 +0200 | [diff] [blame] | 635 | } else if (retval == H_BUSY) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 636 | retval = -EBUSY; |
Segher Boessenkool | 706c8c9 | 2006-03-30 14:49:40 +0200 | [diff] [blame] | 637 | } else if (retval == H_HARDWARE) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 638 | retval = -EIO; |
Segher Boessenkool | 706c8c9 | 2006-03-30 14:49:40 +0200 | [diff] [blame] | 639 | } else if (retval == H_PARAMETER) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 640 | retval = -EINVAL; |
| 641 | } else { |
| 642 | printk(KERN_WARNING "%s: received unknown hv return code %ld", |
Harvey Harrison | e48b1b4 | 2008-03-29 08:21:07 +1100 | [diff] [blame] | 643 | __func__, retval); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 644 | retval = -EIO; |
| 645 | } |
| 646 | |
Anton Blanchard | 8acb888 | 2005-11-11 13:53:11 +1100 | [diff] [blame] | 647 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 648 | kfree(kbuf); |
| 649 | return retval; |
| 650 | } |
| 651 | |
Stephen Rothwell | 16e9f99 | 2006-06-29 15:07:42 +1000 | [diff] [blame] | 652 | #else /* CONFIG_PPC_PSERIES */ |
| 653 | |
| 654 | static int pseries_lparcfg_data(struct seq_file *m, void *v) |
| 655 | { |
| 656 | return 0; |
| 657 | } |
| 658 | |
| 659 | static ssize_t lparcfg_write(struct file *file, const char __user * buf, |
| 660 | size_t count, loff_t * off) |
| 661 | { |
Stephen Rothwell | 0524aad | 2007-02-05 16:14:05 -0800 | [diff] [blame] | 662 | return -EINVAL; |
Stephen Rothwell | 16e9f99 | 2006-06-29 15:07:42 +1000 | [diff] [blame] | 663 | } |
| 664 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 665 | #endif /* CONFIG_PPC_PSERIES */ |
| 666 | |
Stephen Rothwell | 16e9f99 | 2006-06-29 15:07:42 +1000 | [diff] [blame] | 667 | static int lparcfg_data(struct seq_file *m, void *v) |
| 668 | { |
| 669 | struct device_node *rootdn; |
| 670 | const char *model = ""; |
| 671 | const char *system_id = ""; |
| 672 | const char *tmp; |
Jeremy Kerr | a7f67bd | 2006-07-12 15:35:54 +1000 | [diff] [blame] | 673 | const unsigned int *lp_index_ptr; |
| 674 | unsigned int lp_index = 0; |
Stephen Rothwell | 16e9f99 | 2006-06-29 15:07:42 +1000 | [diff] [blame] | 675 | |
| 676 | seq_printf(m, "%s %s \n", MODULE_NAME, MODULE_VERS); |
| 677 | |
Stephen Rothwell | 8c8dc32 | 2007-04-24 13:50:55 +1000 | [diff] [blame] | 678 | rootdn = of_find_node_by_path("/"); |
Stephen Rothwell | 16e9f99 | 2006-06-29 15:07:42 +1000 | [diff] [blame] | 679 | if (rootdn) { |
Stephen Rothwell | e2eb639 | 2007-04-03 22:26:41 +1000 | [diff] [blame] | 680 | tmp = of_get_property(rootdn, "model", NULL); |
Stephen Rothwell | 16e9f99 | 2006-06-29 15:07:42 +1000 | [diff] [blame] | 681 | if (tmp) { |
| 682 | model = tmp; |
| 683 | /* Skip "IBM," - see platforms/iseries/dt.c */ |
| 684 | if (firmware_has_feature(FW_FEATURE_ISERIES)) |
| 685 | model += 4; |
| 686 | } |
Stephen Rothwell | e2eb639 | 2007-04-03 22:26:41 +1000 | [diff] [blame] | 687 | tmp = of_get_property(rootdn, "system-id", NULL); |
Stephen Rothwell | 16e9f99 | 2006-06-29 15:07:42 +1000 | [diff] [blame] | 688 | if (tmp) { |
| 689 | system_id = tmp; |
| 690 | /* Skip "IBM," - see platforms/iseries/dt.c */ |
| 691 | if (firmware_has_feature(FW_FEATURE_ISERIES)) |
| 692 | system_id += 4; |
| 693 | } |
Stephen Rothwell | e2eb639 | 2007-04-03 22:26:41 +1000 | [diff] [blame] | 694 | lp_index_ptr = of_get_property(rootdn, "ibm,partition-no", |
| 695 | NULL); |
Stephen Rothwell | 16e9f99 | 2006-06-29 15:07:42 +1000 | [diff] [blame] | 696 | if (lp_index_ptr) |
| 697 | lp_index = *lp_index_ptr; |
Stephen Rothwell | 8c8dc32 | 2007-04-24 13:50:55 +1000 | [diff] [blame] | 698 | of_node_put(rootdn); |
Stephen Rothwell | 16e9f99 | 2006-06-29 15:07:42 +1000 | [diff] [blame] | 699 | } |
| 700 | seq_printf(m, "serial_number=%s\n", system_id); |
| 701 | seq_printf(m, "system_type=%s\n", model); |
| 702 | seq_printf(m, "partition_id=%d\n", (int)lp_index); |
| 703 | |
| 704 | if (firmware_has_feature(FW_FEATURE_ISERIES)) |
| 705 | return iseries_lparcfg_data(m, v); |
| 706 | return pseries_lparcfg_data(m, v); |
| 707 | } |
| 708 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 709 | static int lparcfg_open(struct inode *inode, struct file *file) |
| 710 | { |
| 711 | return single_open(file, lparcfg_data, NULL); |
| 712 | } |
| 713 | |
Michael Ellerman | 1c21a29 | 2008-05-08 14:27:19 +1000 | [diff] [blame] | 714 | static const struct file_operations lparcfg_fops = { |
Anton Blanchard | 8acb888 | 2005-11-11 13:53:11 +1100 | [diff] [blame] | 715 | .owner = THIS_MODULE, |
| 716 | .read = seq_read, |
Stephen Rothwell | 0524aad | 2007-02-05 16:14:05 -0800 | [diff] [blame] | 717 | .write = lparcfg_write, |
Anton Blanchard | 8acb888 | 2005-11-11 13:53:11 +1100 | [diff] [blame] | 718 | .open = lparcfg_open, |
| 719 | .release = single_release, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 720 | }; |
| 721 | |
Michael Ellerman | 1c21a29 | 2008-05-08 14:27:19 +1000 | [diff] [blame] | 722 | static int __init lparcfg_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 723 | { |
| 724 | struct proc_dir_entry *ent; |
Wim Coekaerts | 7183926 | 2005-09-05 20:22:47 -0700 | [diff] [blame] | 725 | mode_t mode = S_IRUSR | S_IRGRP | S_IROTH; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 726 | |
| 727 | /* Allow writing if we have FW_FEATURE_SPLPAR */ |
Stephen Rothwell | 16e9f99 | 2006-06-29 15:07:42 +1000 | [diff] [blame] | 728 | if (firmware_has_feature(FW_FEATURE_SPLPAR) && |
Stephen Rothwell | 0524aad | 2007-02-05 16:14:05 -0800 | [diff] [blame] | 729 | !firmware_has_feature(FW_FEATURE_ISERIES)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 730 | mode |= S_IWUSR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 731 | |
Denis V. Lunev | 6674713 | 2008-04-29 01:02:26 -0700 | [diff] [blame] | 732 | ent = proc_create("ppc64/lparcfg", mode, NULL, &lparcfg_fops); |
| 733 | if (!ent) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 734 | printk(KERN_ERR "Failed to create ppc64/lparcfg\n"); |
| 735 | return -EIO; |
| 736 | } |
| 737 | |
| 738 | proc_ppc64_lparcfg = ent; |
| 739 | return 0; |
| 740 | } |
| 741 | |
Michael Ellerman | 1c21a29 | 2008-05-08 14:27:19 +1000 | [diff] [blame] | 742 | static void __exit lparcfg_cleanup(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 743 | { |
Nathan Lynch | 0d9dc4b | 2007-12-05 03:03:49 +1100 | [diff] [blame] | 744 | if (proc_ppc64_lparcfg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 745 | remove_proc_entry("lparcfg", proc_ppc64_lparcfg->parent); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 746 | } |
| 747 | |
| 748 | module_init(lparcfg_init); |
| 749 | module_exit(lparcfg_cleanup); |
| 750 | MODULE_DESCRIPTION("Interface for LPAR configuration data"); |
| 751 | MODULE_AUTHOR("Dave Engebretsen"); |
| 752 | MODULE_LICENSE("GPL"); |