Thomas Gleixner | 2874c5f | 2019-05-27 08:55:01 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
| 3 | * PowerPC64 LPAR Configuration Information Driver |
| 4 | * |
| 5 | * Dave Engebretsen engebret@us.ibm.com |
| 6 | * Copyright (c) 2003 Dave Engebretsen |
| 7 | * Will Schmidt willschm@us.ibm.com |
| 8 | * SPLPAR updates, Copyright (c) 2003 Will Schmidt IBM Corporation. |
| 9 | * seq_file updates, Copyright (c) 2004 Will Schmidt IBM Corporation. |
| 10 | * Nathan Lynch nathanl@austin.ibm.com |
| 11 | * Added lparcfg_write, Copyright (C) 2004 Nathan Lynch IBM Corporation. |
| 12 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | * This driver creates a proc file at /proc/ppc64/lparcfg which contains |
| 14 | * keyword - value pairs that specify the configuration of the partition. |
| 15 | */ |
| 16 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include <linux/module.h> |
| 18 | #include <linux/types.h> |
| 19 | #include <linux/errno.h> |
| 20 | #include <linux/proc_fs.h> |
| 21 | #include <linux/init.h> |
| 22 | #include <linux/seq_file.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 23 | #include <linux/slab.h> |
Linus Torvalds | 7c0f6ba | 2016-12-24 11:46:01 -0800 | [diff] [blame] | 24 | #include <linux/uaccess.h> |
Aravinda Prasad | 772b039 | 2018-10-10 15:52:59 +0530 | [diff] [blame] | 25 | #include <linux/hugetlb.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | #include <asm/lppaca.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | #include <asm/hvcall.h> |
Stephen Rothwell | 1ababe1 | 2005-08-03 14:35:25 +1000 | [diff] [blame] | 28 | #include <asm/firmware.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | #include <asm/rtas.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | #include <asm/time.h> |
Michael Ellerman | 856509d | 2005-06-25 14:54:42 -0700 | [diff] [blame] | 31 | #include <asm/prom.h> |
Paul Mackerras | 271c3f3 | 2005-11-11 23:04:40 +1100 | [diff] [blame] | 32 | #include <asm/vdso_datapage.h> |
Nathan Fontenot | 22e1a4d | 2008-07-24 04:31:52 +1000 | [diff] [blame] | 33 | #include <asm/vio.h> |
Brian King | 46db2f8 | 2009-08-28 12:06:29 +0000 | [diff] [blame] | 34 | #include <asm/mmu.h> |
Benjamin Herrenschmidt | f5f6cbb | 2013-08-27 16:38:33 +1000 | [diff] [blame] | 35 | #include <asm/machdep.h> |
Aravinda Prasad | 772b039 | 2018-10-10 15:52:59 +0530 | [diff] [blame] | 36 | #include <asm/drmem.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | |
Michael Ellerman | 8f272a5 | 2016-11-14 16:28:10 +1100 | [diff] [blame] | 38 | #include "pseries.h" |
Benjamin Herrenschmidt | f5f6cbb | 2013-08-27 16:38:33 +1000 | [diff] [blame] | 39 | |
| 40 | /* |
| 41 | * This isn't a module but we expose that to userspace |
| 42 | * via /proc so leave the definitions here |
| 43 | */ |
Vaidyanathan Srinivasan | 6fe9d1f | 2010-03-31 21:39:24 +0000 | [diff] [blame] | 44 | #define MODULE_VERS "1.9" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | #define MODULE_NAME "lparcfg" |
| 46 | |
| 47 | /* #define LPARCFG_DEBUG */ |
| 48 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | /* |
Stephen Rothwell | 16e9f99 | 2006-06-29 15:07:42 +1000 | [diff] [blame] | 50 | * Track sum of all purrs across all processors. This is used to further |
| 51 | * calculate usage values by different applications |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | */ |
Nicholas Piggin | 3d3a602 | 2018-05-05 03:19:30 +1000 | [diff] [blame] | 53 | static void cpu_get_purr(void *arg) |
| 54 | { |
| 55 | atomic64_t *sum = arg; |
| 56 | |
| 57 | atomic64_add(mfspr(SPRN_PURR), sum); |
| 58 | } |
| 59 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | static unsigned long get_purr(void) |
| 61 | { |
Nicholas Piggin | 3d3a602 | 2018-05-05 03:19:30 +1000 | [diff] [blame] | 62 | atomic64_t purr = ATOMIC64_INIT(0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | |
Nicholas Piggin | 3d3a602 | 2018-05-05 03:19:30 +1000 | [diff] [blame] | 64 | on_each_cpu(cpu_get_purr, &purr, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | |
Nicholas Piggin | 3d3a602 | 2018-05-05 03:19:30 +1000 | [diff] [blame] | 66 | return atomic64_read(&purr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | } |
| 68 | |
David Gibson | d3d2176 | 2005-11-10 15:26:20 +1100 | [diff] [blame] | 69 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | * Methods used to fetch LPAR data when running on a pSeries platform. |
| 71 | */ |
Nathan Fontenot | dfc3403 | 2008-07-24 04:27:30 +1000 | [diff] [blame] | 72 | |
Robert Jennings | 398778f | 2008-07-24 04:28:05 +1000 | [diff] [blame] | 73 | struct hvcall_ppp_data { |
| 74 | u64 entitlement; |
| 75 | u64 unallocated_entitlement; |
| 76 | u16 group_num; |
| 77 | u16 pool_num; |
| 78 | u8 capped; |
| 79 | u8 weight; |
| 80 | u8 unallocated_weight; |
| 81 | u16 active_procs_in_pool; |
| 82 | u16 active_system_procs; |
Nathan Fontenot | f03cdb3 | 2009-05-27 04:41:21 +0000 | [diff] [blame] | 83 | u16 phys_platform_procs; |
| 84 | u32 max_proc_cap_avail; |
| 85 | u32 entitled_proc_cap_avail; |
Robert Jennings | 398778f | 2008-07-24 04:28:05 +1000 | [diff] [blame] | 86 | }; |
| 87 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | /* |
| 89 | * H_GET_PPP hcall returns info in 4 parms. |
| 90 | * entitled_capacity,unallocated_capacity, |
| 91 | * aggregation, resource_capability). |
| 92 | * |
David Gibson | d3d2176 | 2005-11-10 15:26:20 +1100 | [diff] [blame] | 93 | * R4 = Entitled Processor Capacity Percentage. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | * R5 = Unallocated Processor Capacity Percentage. |
| 95 | * R6 (AABBCCDDEEFFGGHH). |
| 96 | * XXXX - reserved (0) |
| 97 | * XXXX - reserved (0) |
| 98 | * XXXX - Group Number |
| 99 | * XXXX - Pool Number. |
| 100 | * R7 (IIJJKKLLMMNNOOPP). |
| 101 | * XX - reserved. (0) |
| 102 | * XX - bit 0-6 reserved (0). bit 7 is Capped indicator. |
| 103 | * XX - variable processor Capacity Weight |
| 104 | * XX - Unallocated Variable Processor Capacity Weight. |
| 105 | * XXXX - Active processors in Physical Processor Pool. |
David Gibson | d3d2176 | 2005-11-10 15:26:20 +1100 | [diff] [blame] | 106 | * XXXX - Processors active on platform. |
Nathan Fontenot | f03cdb3 | 2009-05-27 04:41:21 +0000 | [diff] [blame] | 107 | * R8 (QQQQRRRRRRSSSSSS). if ibm,partition-performance-parameters-level >= 1 |
| 108 | * XXXX - Physical platform procs allocated to virtualization. |
| 109 | * XXXXXX - Max procs capacity % available to the partitions pool. |
| 110 | * XXXXXX - Entitled procs capacity % available to the |
| 111 | * partitions pool. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | */ |
Robert Jennings | 398778f | 2008-07-24 04:28:05 +1000 | [diff] [blame] | 113 | static unsigned int h_get_ppp(struct hvcall_ppp_data *ppp_data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | { |
| 115 | unsigned long rc; |
Nathan Fontenot | f03cdb3 | 2009-05-27 04:41:21 +0000 | [diff] [blame] | 116 | unsigned long retbuf[PLPAR_HCALL9_BUFSIZE]; |
Anton Blanchard | b9377ff | 2006-07-19 08:01:28 +1000 | [diff] [blame] | 117 | |
Nathan Fontenot | f03cdb3 | 2009-05-27 04:41:21 +0000 | [diff] [blame] | 118 | rc = plpar_hcall9(H_GET_PPP, retbuf); |
Anton Blanchard | b9377ff | 2006-07-19 08:01:28 +1000 | [diff] [blame] | 119 | |
Robert Jennings | 398778f | 2008-07-24 04:28:05 +1000 | [diff] [blame] | 120 | ppp_data->entitlement = retbuf[0]; |
| 121 | ppp_data->unallocated_entitlement = retbuf[1]; |
| 122 | |
| 123 | ppp_data->group_num = (retbuf[2] >> 2 * 8) & 0xffff; |
| 124 | ppp_data->pool_num = retbuf[2] & 0xffff; |
| 125 | |
| 126 | ppp_data->capped = (retbuf[3] >> 6 * 8) & 0x01; |
| 127 | ppp_data->weight = (retbuf[3] >> 5 * 8) & 0xff; |
| 128 | ppp_data->unallocated_weight = (retbuf[3] >> 4 * 8) & 0xff; |
| 129 | ppp_data->active_procs_in_pool = (retbuf[3] >> 2 * 8) & 0xffff; |
| 130 | ppp_data->active_system_procs = retbuf[3] & 0xffff; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | |
Nathan Fontenot | f03cdb3 | 2009-05-27 04:41:21 +0000 | [diff] [blame] | 132 | ppp_data->phys_platform_procs = retbuf[4] >> 6 * 8; |
| 133 | ppp_data->max_proc_cap_avail = (retbuf[4] >> 3 * 8) & 0xffffff; |
| 134 | ppp_data->entitled_proc_cap_avail = retbuf[4] & 0xffffff; |
| 135 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | return rc; |
| 137 | } |
| 138 | |
Nathan Fotenot | 1152939 | 2008-07-24 04:25:16 +1000 | [diff] [blame] | 139 | static unsigned h_pic(unsigned long *pool_idle_time, |
| 140 | unsigned long *num_procs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | { |
| 142 | unsigned long rc; |
Anton Blanchard | b9377ff | 2006-07-19 08:01:28 +1000 | [diff] [blame] | 143 | unsigned long retbuf[PLPAR_HCALL_BUFSIZE]; |
| 144 | |
| 145 | rc = plpar_hcall(H_PIC, retbuf); |
| 146 | |
| 147 | *pool_idle_time = retbuf[0]; |
| 148 | *num_procs = retbuf[1]; |
Nathan Fotenot | 1152939 | 2008-07-24 04:25:16 +1000 | [diff] [blame] | 149 | |
| 150 | return rc; |
| 151 | } |
| 152 | |
| 153 | /* |
| 154 | * parse_ppp_data |
| 155 | * Parse out the data returned from h_get_ppp and h_pic |
| 156 | */ |
| 157 | static void parse_ppp_data(struct seq_file *m) |
| 158 | { |
Robert Jennings | 398778f | 2008-07-24 04:28:05 +1000 | [diff] [blame] | 159 | struct hvcall_ppp_data ppp_data; |
Nathan Fontenot | f03cdb3 | 2009-05-27 04:41:21 +0000 | [diff] [blame] | 160 | struct device_node *root; |
Anton Blanchard | ca5de4e | 2013-12-12 15:59:37 +1100 | [diff] [blame] | 161 | const __be32 *perf_level; |
Nathan Fotenot | 1152939 | 2008-07-24 04:25:16 +1000 | [diff] [blame] | 162 | int rc; |
| 163 | |
Robert Jennings | 398778f | 2008-07-24 04:28:05 +1000 | [diff] [blame] | 164 | rc = h_get_ppp(&ppp_data); |
Nathan Fotenot | 1152939 | 2008-07-24 04:25:16 +1000 | [diff] [blame] | 165 | if (rc) |
| 166 | return; |
| 167 | |
Ingo Molnar | fe33332 | 2009-01-06 14:26:03 +0000 | [diff] [blame] | 168 | seq_printf(m, "partition_entitled_capacity=%lld\n", |
Robert Jennings | 398778f | 2008-07-24 04:28:05 +1000 | [diff] [blame] | 169 | ppp_data.entitlement); |
| 170 | seq_printf(m, "group=%d\n", ppp_data.group_num); |
| 171 | seq_printf(m, "system_active_processors=%d\n", |
| 172 | ppp_data.active_system_procs); |
Nathan Fotenot | 1152939 | 2008-07-24 04:25:16 +1000 | [diff] [blame] | 173 | |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 174 | /* pool related entries are appropriate for shared configs */ |
Anton Blanchard | f13c13a | 2013-08-07 02:01:26 +1000 | [diff] [blame] | 175 | if (lppaca_shared_proc(get_lppaca())) { |
Nathan Fotenot | 1152939 | 2008-07-24 04:25:16 +1000 | [diff] [blame] | 176 | unsigned long pool_idle_time, pool_procs; |
| 177 | |
Robert Jennings | 398778f | 2008-07-24 04:28:05 +1000 | [diff] [blame] | 178 | seq_printf(m, "pool=%d\n", ppp_data.pool_num); |
Nathan Fotenot | 1152939 | 2008-07-24 04:25:16 +1000 | [diff] [blame] | 179 | |
| 180 | /* report pool_capacity in percentage */ |
Robert Jennings | 398778f | 2008-07-24 04:28:05 +1000 | [diff] [blame] | 181 | seq_printf(m, "pool_capacity=%d\n", |
| 182 | ppp_data.active_procs_in_pool * 100); |
Nathan Fotenot | 1152939 | 2008-07-24 04:25:16 +1000 | [diff] [blame] | 183 | |
| 184 | h_pic(&pool_idle_time, &pool_procs); |
| 185 | seq_printf(m, "pool_idle_time=%ld\n", pool_idle_time); |
| 186 | seq_printf(m, "pool_num_procs=%ld\n", pool_procs); |
| 187 | } |
| 188 | |
Robert Jennings | 398778f | 2008-07-24 04:28:05 +1000 | [diff] [blame] | 189 | seq_printf(m, "unallocated_capacity_weight=%d\n", |
| 190 | ppp_data.unallocated_weight); |
| 191 | seq_printf(m, "capacity_weight=%d\n", ppp_data.weight); |
| 192 | seq_printf(m, "capped=%d\n", ppp_data.capped); |
Ingo Molnar | fe33332 | 2009-01-06 14:26:03 +0000 | [diff] [blame] | 193 | seq_printf(m, "unallocated_capacity=%lld\n", |
Robert Jennings | 398778f | 2008-07-24 04:28:05 +1000 | [diff] [blame] | 194 | ppp_data.unallocated_entitlement); |
Nathan Fontenot | f03cdb3 | 2009-05-27 04:41:21 +0000 | [diff] [blame] | 195 | |
| 196 | /* The last bits of information returned from h_get_ppp are only |
| 197 | * valid if the ibm,partition-performance-parameters-level |
| 198 | * property is >= 1. |
| 199 | */ |
| 200 | root = of_find_node_by_path("/"); |
| 201 | if (root) { |
| 202 | perf_level = of_get_property(root, |
| 203 | "ibm,partition-performance-parameters-level", |
| 204 | NULL); |
Anton Blanchard | ca5de4e | 2013-12-12 15:59:37 +1100 | [diff] [blame] | 205 | if (perf_level && (be32_to_cpup(perf_level) >= 1)) { |
Nathan Fontenot | f03cdb3 | 2009-05-27 04:41:21 +0000 | [diff] [blame] | 206 | seq_printf(m, |
| 207 | "physical_procs_allocated_to_virtualization=%d\n", |
| 208 | ppp_data.phys_platform_procs); |
| 209 | seq_printf(m, "max_proc_capacity_available=%d\n", |
| 210 | ppp_data.max_proc_cap_avail); |
| 211 | seq_printf(m, "entitled_proc_capacity_available=%d\n", |
| 212 | ppp_data.entitled_proc_cap_avail); |
| 213 | } |
| 214 | |
| 215 | of_node_put(root); |
| 216 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | } |
| 218 | |
Nathan Fontenot | dfc3403 | 2008-07-24 04:27:30 +1000 | [diff] [blame] | 219 | /** |
| 220 | * parse_mpp_data |
| 221 | * Parse out data returned from h_get_mpp |
| 222 | */ |
| 223 | static void parse_mpp_data(struct seq_file *m) |
| 224 | { |
| 225 | struct hvcall_mpp_data mpp_data; |
| 226 | int rc; |
| 227 | |
| 228 | rc = h_get_mpp(&mpp_data); |
| 229 | if (rc) |
| 230 | return; |
| 231 | |
| 232 | seq_printf(m, "entitled_memory=%ld\n", mpp_data.entitled_mem); |
| 233 | |
| 234 | if (mpp_data.mapped_mem != -1) |
| 235 | seq_printf(m, "mapped_entitled_memory=%ld\n", |
| 236 | mpp_data.mapped_mem); |
| 237 | |
| 238 | seq_printf(m, "entitled_memory_group_number=%d\n", mpp_data.group_num); |
| 239 | seq_printf(m, "entitled_memory_pool_number=%d\n", mpp_data.pool_num); |
| 240 | |
| 241 | seq_printf(m, "entitled_memory_weight=%d\n", mpp_data.mem_weight); |
| 242 | seq_printf(m, "unallocated_entitled_memory_weight=%d\n", |
| 243 | mpp_data.unallocated_mem_weight); |
| 244 | seq_printf(m, "unallocated_io_mapping_entitlement=%ld\n", |
| 245 | mpp_data.unallocated_entitlement); |
| 246 | |
| 247 | if (mpp_data.pool_size != -1) |
| 248 | seq_printf(m, "entitled_memory_pool_size=%ld bytes\n", |
| 249 | mpp_data.pool_size); |
| 250 | |
| 251 | seq_printf(m, "entitled_memory_loan_request=%ld\n", |
| 252 | mpp_data.loan_request); |
| 253 | |
| 254 | seq_printf(m, "backing_memory=%ld bytes\n", mpp_data.backing_mem); |
| 255 | } |
| 256 | |
Brian King | 9ee820f | 2011-05-04 16:01:20 +1000 | [diff] [blame] | 257 | /** |
| 258 | * parse_mpp_x_data |
| 259 | * Parse out data returned from h_get_mpp_x |
| 260 | */ |
| 261 | static void parse_mpp_x_data(struct seq_file *m) |
| 262 | { |
| 263 | struct hvcall_mpp_x_data mpp_x_data; |
| 264 | |
| 265 | if (!firmware_has_feature(FW_FEATURE_XCMO)) |
| 266 | return; |
| 267 | if (h_get_mpp_x(&mpp_x_data)) |
| 268 | return; |
| 269 | |
| 270 | seq_printf(m, "coalesced_bytes=%ld\n", mpp_x_data.coalesced_bytes); |
| 271 | |
| 272 | if (mpp_x_data.pool_coalesced_bytes) |
| 273 | seq_printf(m, "pool_coalesced_bytes=%ld\n", |
| 274 | mpp_x_data.pool_coalesced_bytes); |
| 275 | if (mpp_x_data.pool_purr_cycles) |
| 276 | seq_printf(m, "coalesce_pool_purr=%ld\n", mpp_x_data.pool_purr_cycles); |
| 277 | if (mpp_x_data.pool_spurr_cycles) |
| 278 | seq_printf(m, "coalesce_pool_spurr=%ld\n", mpp_x_data.pool_spurr_cycles); |
| 279 | } |
| 280 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | #define SPLPAR_CHARACTERISTICS_TOKEN 20 |
| 282 | #define SPLPAR_MAXLENGTH 1026*(sizeof(char)) |
| 283 | |
| 284 | /* |
| 285 | * parse_system_parameter_string() |
| 286 | * Retrieve the potential_processors, max_entitled_capacity and friends |
| 287 | * through the get-system-parameter rtas call. Replace keyword strings as |
| 288 | * necessary. |
| 289 | */ |
| 290 | static void parse_system_parameter_string(struct seq_file *m) |
| 291 | { |
| 292 | int call_status; |
| 293 | |
Will Schmidt | 34422fe | 2006-03-31 09:07:48 -0600 | [diff] [blame] | 294 | unsigned char *local_buffer = kmalloc(SPLPAR_MAXLENGTH, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 295 | if (!local_buffer) { |
Frans Pop | 8354be9 | 2010-02-06 07:47:20 +0000 | [diff] [blame] | 296 | printk(KERN_ERR "%s %s kmalloc failure at line %d\n", |
Harvey Harrison | e48b1b4 | 2008-03-29 08:21:07 +1100 | [diff] [blame] | 297 | __FILE__, __func__, __LINE__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | return; |
| 299 | } |
| 300 | |
| 301 | spin_lock(&rtas_data_buf_lock); |
| 302 | memset(rtas_data_buf, 0, SPLPAR_MAXLENGTH); |
| 303 | call_status = rtas_call(rtas_token("ibm,get-system-parameter"), 3, 1, |
| 304 | NULL, |
| 305 | SPLPAR_CHARACTERISTICS_TOKEN, |
Will Schmidt | 34422fe | 2006-03-31 09:07:48 -0600 | [diff] [blame] | 306 | __pa(rtas_data_buf), |
| 307 | RTAS_DATA_BUF_SIZE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 | memcpy(local_buffer, rtas_data_buf, SPLPAR_MAXLENGTH); |
Chen Gang | 5676005 | 2013-04-22 17:12:54 +0000 | [diff] [blame] | 309 | local_buffer[SPLPAR_MAXLENGTH - 1] = '\0'; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | spin_unlock(&rtas_data_buf_lock); |
| 311 | |
| 312 | if (call_status != 0) { |
| 313 | printk(KERN_INFO |
| 314 | "%s %s Error calling get-system-parameter (0x%x)\n", |
Harvey Harrison | e48b1b4 | 2008-03-29 08:21:07 +1100 | [diff] [blame] | 315 | __FILE__, __func__, call_status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | } else { |
| 317 | int splpar_strlen; |
| 318 | int idx, w_idx; |
Yoann Padioleau | dd00cc4 | 2007-07-19 01:49:03 -0700 | [diff] [blame] | 319 | char *workbuffer = kzalloc(SPLPAR_MAXLENGTH, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 320 | if (!workbuffer) { |
Frans Pop | 8354be9 | 2010-02-06 07:47:20 +0000 | [diff] [blame] | 321 | printk(KERN_ERR "%s %s kmalloc failure at line %d\n", |
Harvey Harrison | e48b1b4 | 2008-03-29 08:21:07 +1100 | [diff] [blame] | 322 | __FILE__, __func__, __LINE__); |
David Gibson | d3d2176 | 2005-11-10 15:26:20 +1100 | [diff] [blame] | 323 | kfree(local_buffer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 324 | return; |
| 325 | } |
| 326 | #ifdef LPARCFG_DEBUG |
Frans Pop | 8354be9 | 2010-02-06 07:47:20 +0000 | [diff] [blame] | 327 | printk(KERN_INFO "success calling get-system-parameter\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 328 | #endif |
Will Schmidt | 34422fe | 2006-03-31 09:07:48 -0600 | [diff] [blame] | 329 | splpar_strlen = local_buffer[0] * 256 + local_buffer[1]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 330 | local_buffer += 2; /* step over strlen value */ |
| 331 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 332 | w_idx = 0; |
| 333 | idx = 0; |
| 334 | while ((*local_buffer) && (idx < splpar_strlen)) { |
| 335 | workbuffer[w_idx++] = local_buffer[idx++]; |
| 336 | if ((local_buffer[idx] == ',') |
| 337 | || (local_buffer[idx] == '\0')) { |
| 338 | workbuffer[w_idx] = '\0'; |
| 339 | if (w_idx) { |
| 340 | /* avoid the empty string */ |
| 341 | seq_printf(m, "%s\n", workbuffer); |
| 342 | } |
| 343 | memset(workbuffer, 0, SPLPAR_MAXLENGTH); |
| 344 | idx++; /* skip the comma */ |
| 345 | w_idx = 0; |
| 346 | } else if (local_buffer[idx] == '=') { |
| 347 | /* code here to replace workbuffer contents |
| 348 | with different keyword strings */ |
| 349 | if (0 == strcmp(workbuffer, "MaxEntCap")) { |
| 350 | strcpy(workbuffer, |
| 351 | "partition_max_entitled_capacity"); |
| 352 | w_idx = strlen(workbuffer); |
| 353 | } |
| 354 | if (0 == strcmp(workbuffer, "MaxPlatProcs")) { |
| 355 | strcpy(workbuffer, |
| 356 | "system_potential_processors"); |
| 357 | w_idx = strlen(workbuffer); |
| 358 | } |
| 359 | } |
| 360 | } |
| 361 | kfree(workbuffer); |
| 362 | local_buffer -= 2; /* back up over strlen value */ |
| 363 | } |
| 364 | kfree(local_buffer); |
| 365 | } |
| 366 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | /* Return the number of processors in the system. |
| 368 | * This function reads through the device tree and counts |
| 369 | * the virtual processors, this does not include threads. |
| 370 | */ |
| 371 | static int lparcfg_count_active_processors(void) |
| 372 | { |
Dmitry Torokhov | 9625e69 | 2017-01-31 17:54:38 -0800 | [diff] [blame] | 373 | struct device_node *cpus_dn; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | int count = 0; |
| 375 | |
Dmitry Torokhov | 9625e69 | 2017-01-31 17:54:38 -0800 | [diff] [blame] | 376 | for_each_node_by_type(cpus_dn, "cpu") { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 377 | #ifdef LPARCFG_DEBUG |
Frans Pop | 8354be9 | 2010-02-06 07:47:20 +0000 | [diff] [blame] | 378 | printk(KERN_ERR "cpus_dn %p\n", cpus_dn); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 379 | #endif |
| 380 | count++; |
| 381 | } |
| 382 | return count; |
| 383 | } |
| 384 | |
Brian King | ffa5abb | 2008-07-24 04:30:58 +1000 | [diff] [blame] | 385 | static void pseries_cmo_data(struct seq_file *m) |
| 386 | { |
| 387 | int cpu; |
| 388 | unsigned long cmo_faults = 0; |
| 389 | unsigned long cmo_fault_time = 0; |
| 390 | |
Robert Jennings | ac22429 | 2008-08-16 05:10:18 +1000 | [diff] [blame] | 391 | seq_printf(m, "cmo_enabled=%d\n", firmware_has_feature(FW_FEATURE_CMO)); |
| 392 | |
Brian King | ffa5abb | 2008-07-24 04:30:58 +1000 | [diff] [blame] | 393 | if (!firmware_has_feature(FW_FEATURE_CMO)) |
| 394 | return; |
| 395 | |
| 396 | for_each_possible_cpu(cpu) { |
Anton Blanchard | 7ffcf8e | 2013-08-07 02:01:46 +1000 | [diff] [blame] | 397 | cmo_faults += be64_to_cpu(lppaca_of(cpu).cmo_faults); |
| 398 | cmo_fault_time += be64_to_cpu(lppaca_of(cpu).cmo_fault_time); |
Brian King | ffa5abb | 2008-07-24 04:30:58 +1000 | [diff] [blame] | 399 | } |
| 400 | |
| 401 | seq_printf(m, "cmo_faults=%lu\n", cmo_faults); |
| 402 | seq_printf(m, "cmo_fault_time_usec=%lu\n", |
| 403 | cmo_fault_time / tb_ticks_per_usec); |
Robert Jennings | ac22429 | 2008-08-16 05:10:18 +1000 | [diff] [blame] | 404 | seq_printf(m, "cmo_primary_psp=%d\n", cmo_get_primary_psp()); |
| 405 | seq_printf(m, "cmo_secondary_psp=%d\n", cmo_get_secondary_psp()); |
| 406 | seq_printf(m, "cmo_page_size=%lu\n", cmo_get_page_size()); |
Brian King | ffa5abb | 2008-07-24 04:30:58 +1000 | [diff] [blame] | 407 | } |
| 408 | |
Anton Blanchard | 0559f0a | 2009-03-31 20:12:44 +0000 | [diff] [blame] | 409 | static void splpar_dispatch_data(struct seq_file *m) |
| 410 | { |
| 411 | int cpu; |
| 412 | unsigned long dispatches = 0; |
| 413 | unsigned long dispatch_dispersions = 0; |
| 414 | |
| 415 | for_each_possible_cpu(cpu) { |
Anton Blanchard | 7ffcf8e | 2013-08-07 02:01:46 +1000 | [diff] [blame] | 416 | dispatches += be32_to_cpu(lppaca_of(cpu).yield_count); |
| 417 | dispatch_dispersions += |
| 418 | be32_to_cpu(lppaca_of(cpu).dispersion_count); |
Anton Blanchard | 0559f0a | 2009-03-31 20:12:44 +0000 | [diff] [blame] | 419 | } |
| 420 | |
| 421 | seq_printf(m, "dispatches=%lu\n", dispatches); |
| 422 | seq_printf(m, "dispatch_dispersions=%lu\n", dispatch_dispersions); |
| 423 | } |
| 424 | |
Vaidyanathan Srinivasan | 6fe9d1f | 2010-03-31 21:39:24 +0000 | [diff] [blame] | 425 | static void parse_em_data(struct seq_file *m) |
| 426 | { |
| 427 | unsigned long retbuf[PLPAR_HCALL_BUFSIZE]; |
| 428 | |
Benjamin Herrenschmidt | f5f6cbb | 2013-08-27 16:38:33 +1000 | [diff] [blame] | 429 | if (firmware_has_feature(FW_FEATURE_LPAR) && |
| 430 | plpar_hcall(H_GET_EM_PARMS, retbuf) == H_SUCCESS) |
Vaidyanathan Srinivasan | 6fe9d1f | 2010-03-31 21:39:24 +0000 | [diff] [blame] | 431 | seq_printf(m, "power_mode_data=%016lx\n", retbuf[0]); |
| 432 | } |
| 433 | |
Aravinda Prasad | 772b039 | 2018-10-10 15:52:59 +0530 | [diff] [blame] | 434 | static void maxmem_data(struct seq_file *m) |
| 435 | { |
| 436 | unsigned long maxmem = 0; |
| 437 | |
Michael Bringmann | f1dbc1c | 2020-01-15 08:53:59 -0600 | [diff] [blame] | 438 | maxmem += (unsigned long)drmem_info->n_lmbs * drmem_info->lmb_size; |
Aravinda Prasad | 772b039 | 2018-10-10 15:52:59 +0530 | [diff] [blame] | 439 | maxmem += hugetlb_total_pages() * PAGE_SIZE; |
| 440 | |
Michael Bringmann | f1dbc1c | 2020-01-15 08:53:59 -0600 | [diff] [blame] | 441 | seq_printf(m, "MaxMem=%lu\n", maxmem); |
Aravinda Prasad | 772b039 | 2018-10-10 15:52:59 +0530 | [diff] [blame] | 442 | } |
| 443 | |
Stephen Rothwell | 16e9f99 | 2006-06-29 15:07:42 +1000 | [diff] [blame] | 444 | static int pseries_lparcfg_data(struct seq_file *m, void *v) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 445 | { |
| 446 | int partition_potential_processors; |
| 447 | int partition_active_processors; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 448 | struct device_node *rtas_node; |
Anton Blanchard | ca5de4e | 2013-12-12 15:59:37 +1100 | [diff] [blame] | 449 | const __be32 *lrdrp = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 450 | |
Stephen Rothwell | 8c8dc32 | 2007-04-24 13:50:55 +1000 | [diff] [blame] | 451 | rtas_node = of_find_node_by_path("/rtas"); |
Olof Johansson | 2b9a32e | 2006-02-15 21:40:44 -0600 | [diff] [blame] | 452 | if (rtas_node) |
Stephen Rothwell | e2eb639 | 2007-04-03 22:26:41 +1000 | [diff] [blame] | 453 | lrdrp = of_get_property(rtas_node, "ibm,lrdr-capacity", NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 454 | |
| 455 | if (lrdrp == NULL) { |
Paul Mackerras | 271c3f3 | 2005-11-11 23:04:40 +1100 | [diff] [blame] | 456 | partition_potential_processors = vdso_data->processorCount; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 457 | } else { |
Anton Blanchard | ca5de4e | 2013-12-12 15:59:37 +1100 | [diff] [blame] | 458 | partition_potential_processors = be32_to_cpup(lrdrp + 4); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 459 | } |
Stephen Rothwell | 8c8dc32 | 2007-04-24 13:50:55 +1000 | [diff] [blame] | 460 | of_node_put(rtas_node); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 461 | |
| 462 | partition_active_processors = lparcfg_count_active_processors(); |
| 463 | |
Stephen Rothwell | 1ababe1 | 2005-08-03 14:35:25 +1000 | [diff] [blame] | 464 | if (firmware_has_feature(FW_FEATURE_SPLPAR)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 465 | /* this call handles the ibm,get-system-parameter contents */ |
| 466 | parse_system_parameter_string(m); |
Nathan Fotenot | 1152939 | 2008-07-24 04:25:16 +1000 | [diff] [blame] | 467 | parse_ppp_data(m); |
Nathan Fontenot | dfc3403 | 2008-07-24 04:27:30 +1000 | [diff] [blame] | 468 | parse_mpp_data(m); |
Brian King | 9ee820f | 2011-05-04 16:01:20 +1000 | [diff] [blame] | 469 | parse_mpp_x_data(m); |
Brian King | ffa5abb | 2008-07-24 04:30:58 +1000 | [diff] [blame] | 470 | pseries_cmo_data(m); |
Anton Blanchard | 0559f0a | 2009-03-31 20:12:44 +0000 | [diff] [blame] | 471 | splpar_dispatch_data(m); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 472 | |
Nathan Fotenot | 1152939 | 2008-07-24 04:25:16 +1000 | [diff] [blame] | 473 | seq_printf(m, "purr=%ld\n", get_purr()); |
Tyrel Datwyler | 9f3ba36 | 2018-12-08 17:48:27 -0600 | [diff] [blame] | 474 | seq_printf(m, "tbr=%ld\n", mftb()); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 475 | } else { /* non SPLPAR case */ |
| 476 | |
| 477 | seq_printf(m, "system_active_processors=%d\n", |
| 478 | partition_potential_processors); |
| 479 | |
| 480 | seq_printf(m, "system_potential_processors=%d\n", |
| 481 | partition_potential_processors); |
| 482 | |
| 483 | seq_printf(m, "partition_max_entitled_capacity=%d\n", |
| 484 | partition_potential_processors * 100); |
| 485 | |
| 486 | seq_printf(m, "partition_entitled_capacity=%d\n", |
| 487 | partition_active_processors * 100); |
| 488 | } |
| 489 | |
| 490 | seq_printf(m, "partition_active_processors=%d\n", |
| 491 | partition_active_processors); |
| 492 | |
| 493 | seq_printf(m, "partition_potential_processors=%d\n", |
| 494 | partition_potential_processors); |
| 495 | |
Anton Blanchard | f13c13a | 2013-08-07 02:01:26 +1000 | [diff] [blame] | 496 | seq_printf(m, "shared_processor_mode=%d\n", |
| 497 | lppaca_shared_proc(get_lppaca())); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 498 | |
Michael Ellerman | 4e00374 | 2017-10-19 15:08:43 +1100 | [diff] [blame] | 499 | #ifdef CONFIG_PPC_BOOK3S_64 |
Brian King | 46db2f8 | 2009-08-28 12:06:29 +0000 | [diff] [blame] | 500 | seq_printf(m, "slb_size=%d\n", mmu_slb_size); |
Aneesh Kumar K.V | d8c476e | 2016-04-29 23:26:08 +1000 | [diff] [blame] | 501 | #endif |
Vaidyanathan Srinivasan | 6fe9d1f | 2010-03-31 21:39:24 +0000 | [diff] [blame] | 502 | parse_em_data(m); |
Aravinda Prasad | 772b039 | 2018-10-10 15:52:59 +0530 | [diff] [blame] | 503 | maxmem_data(m); |
Vaidyanathan Srinivasan | 6fe9d1f | 2010-03-31 21:39:24 +0000 | [diff] [blame] | 504 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 505 | return 0; |
| 506 | } |
| 507 | |
Nathan Fotenot | 1152939 | 2008-07-24 04:25:16 +1000 | [diff] [blame] | 508 | static ssize_t update_ppp(u64 *entitlement, u8 *weight) |
| 509 | { |
Robert Jennings | 398778f | 2008-07-24 04:28:05 +1000 | [diff] [blame] | 510 | struct hvcall_ppp_data ppp_data; |
| 511 | u8 new_weight; |
Nathan Fotenot | 1152939 | 2008-07-24 04:25:16 +1000 | [diff] [blame] | 512 | u64 new_entitled; |
| 513 | ssize_t retval; |
| 514 | |
| 515 | /* Get our current parameters */ |
Robert Jennings | 398778f | 2008-07-24 04:28:05 +1000 | [diff] [blame] | 516 | retval = h_get_ppp(&ppp_data); |
Nathan Fotenot | 1152939 | 2008-07-24 04:25:16 +1000 | [diff] [blame] | 517 | if (retval) |
| 518 | return retval; |
| 519 | |
Nathan Fotenot | 1152939 | 2008-07-24 04:25:16 +1000 | [diff] [blame] | 520 | if (entitlement) { |
Robert Jennings | 398778f | 2008-07-24 04:28:05 +1000 | [diff] [blame] | 521 | new_weight = ppp_data.weight; |
Nathan Fotenot | 1152939 | 2008-07-24 04:25:16 +1000 | [diff] [blame] | 522 | new_entitled = *entitlement; |
| 523 | } else if (weight) { |
| 524 | new_weight = *weight; |
Robert Jennings | 398778f | 2008-07-24 04:28:05 +1000 | [diff] [blame] | 525 | new_entitled = ppp_data.entitlement; |
Nathan Fotenot | 1152939 | 2008-07-24 04:25:16 +1000 | [diff] [blame] | 526 | } else |
| 527 | return -EINVAL; |
| 528 | |
Ingo Molnar | fe33332 | 2009-01-06 14:26:03 +0000 | [diff] [blame] | 529 | pr_debug("%s: current_entitled = %llu, current_weight = %u\n", |
Harvey Harrison | 5df72bf | 2008-07-31 05:29:03 +1000 | [diff] [blame] | 530 | __func__, ppp_data.entitlement, ppp_data.weight); |
Nathan Fotenot | 1152939 | 2008-07-24 04:25:16 +1000 | [diff] [blame] | 531 | |
Ingo Molnar | fe33332 | 2009-01-06 14:26:03 +0000 | [diff] [blame] | 532 | pr_debug("%s: new_entitled = %llu, new_weight = %u\n", |
Harvey Harrison | 5df72bf | 2008-07-31 05:29:03 +1000 | [diff] [blame] | 533 | __func__, new_entitled, new_weight); |
Nathan Fotenot | 1152939 | 2008-07-24 04:25:16 +1000 | [diff] [blame] | 534 | |
| 535 | retval = plpar_hcall_norets(H_SET_PPP, new_entitled, new_weight); |
| 536 | return retval; |
| 537 | } |
| 538 | |
Nathan Fontenot | dfc3403 | 2008-07-24 04:27:30 +1000 | [diff] [blame] | 539 | /** |
| 540 | * update_mpp |
| 541 | * |
| 542 | * Update the memory entitlement and weight for the partition. Caller must |
| 543 | * specify either a new entitlement or weight, not both, to be updated |
| 544 | * since the h_set_mpp call takes both entitlement and weight as parameters. |
| 545 | */ |
| 546 | static ssize_t update_mpp(u64 *entitlement, u8 *weight) |
| 547 | { |
| 548 | struct hvcall_mpp_data mpp_data; |
| 549 | u64 new_entitled; |
| 550 | u8 new_weight; |
| 551 | ssize_t rc; |
| 552 | |
Nathan Fontenot | 22e1a4d | 2008-07-24 04:31:52 +1000 | [diff] [blame] | 553 | if (entitlement) { |
| 554 | /* Check with vio to ensure the new memory entitlement |
| 555 | * can be handled. |
| 556 | */ |
| 557 | rc = vio_cmo_entitlement_update(*entitlement); |
| 558 | if (rc) |
| 559 | return rc; |
| 560 | } |
| 561 | |
Nathan Fontenot | dfc3403 | 2008-07-24 04:27:30 +1000 | [diff] [blame] | 562 | rc = h_get_mpp(&mpp_data); |
| 563 | if (rc) |
| 564 | return rc; |
| 565 | |
| 566 | if (entitlement) { |
| 567 | new_weight = mpp_data.mem_weight; |
| 568 | new_entitled = *entitlement; |
| 569 | } else if (weight) { |
| 570 | new_weight = *weight; |
| 571 | new_entitled = mpp_data.entitled_mem; |
| 572 | } else |
| 573 | return -EINVAL; |
| 574 | |
| 575 | pr_debug("%s: current_entitled = %lu, current_weight = %u\n", |
Harvey Harrison | 5df72bf | 2008-07-31 05:29:03 +1000 | [diff] [blame] | 576 | __func__, mpp_data.entitled_mem, mpp_data.mem_weight); |
Nathan Fontenot | dfc3403 | 2008-07-24 04:27:30 +1000 | [diff] [blame] | 577 | |
Ingo Molnar | fe33332 | 2009-01-06 14:26:03 +0000 | [diff] [blame] | 578 | pr_debug("%s: new_entitled = %llu, new_weight = %u\n", |
Harvey Harrison | 5df72bf | 2008-07-31 05:29:03 +1000 | [diff] [blame] | 579 | __func__, new_entitled, new_weight); |
Nathan Fontenot | dfc3403 | 2008-07-24 04:27:30 +1000 | [diff] [blame] | 580 | |
| 581 | rc = plpar_hcall_norets(H_SET_MPP, new_entitled, new_weight); |
| 582 | return rc; |
| 583 | } |
| 584 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 585 | /* |
| 586 | * Interface for changing system parameters (variable capacity weight |
| 587 | * and entitled capacity). Format of input is "param_name=value"; |
| 588 | * anything after value is ignored. Valid parameters at this time are |
| 589 | * "partition_entitled_capacity" and "capacity_weight". We use |
| 590 | * H_SET_PPP to alter parameters. |
| 591 | * |
| 592 | * This function should be invoked only on systems with |
| 593 | * FW_FEATURE_SPLPAR. |
| 594 | */ |
| 595 | static ssize_t lparcfg_write(struct file *file, const char __user * buf, |
| 596 | size_t count, loff_t * off) |
| 597 | { |
Suraj Jitindar Singh | 74422e2 | 2018-09-05 12:09:51 +1000 | [diff] [blame] | 598 | char kbuf[64]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 599 | char *tmp; |
| 600 | u64 new_entitled, *new_entitled_ptr = &new_entitled; |
| 601 | u8 new_weight, *new_weight_ptr = &new_weight; |
Nathan Fontenot | 16c14b4 | 2008-07-24 05:10:46 +1000 | [diff] [blame] | 602 | ssize_t retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 603 | |
Stephen Rothwell | f533927 | 2012-03-15 18:18:00 +0000 | [diff] [blame] | 604 | if (!firmware_has_feature(FW_FEATURE_SPLPAR)) |
Stephen Rothwell | 0524aad | 2007-02-05 16:14:05 -0800 | [diff] [blame] | 605 | return -EINVAL; |
| 606 | |
Suraj Jitindar Singh | 74422e2 | 2018-09-05 12:09:51 +1000 | [diff] [blame] | 607 | if (count > sizeof(kbuf)) |
Nathan Fontenot | 16c14b4 | 2008-07-24 05:10:46 +1000 | [diff] [blame] | 608 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 609 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 610 | if (copy_from_user(kbuf, buf, count)) |
Nathan Fontenot | 16c14b4 | 2008-07-24 05:10:46 +1000 | [diff] [blame] | 611 | return -EFAULT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 612 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 613 | kbuf[count - 1] = '\0'; |
| 614 | tmp = strchr(kbuf, '='); |
| 615 | if (!tmp) |
Nathan Fontenot | 16c14b4 | 2008-07-24 05:10:46 +1000 | [diff] [blame] | 616 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 617 | |
| 618 | *tmp++ = '\0'; |
| 619 | |
| 620 | if (!strcmp(kbuf, "partition_entitled_capacity")) { |
| 621 | char *endp; |
| 622 | *new_entitled_ptr = (u64) simple_strtoul(tmp, &endp, 10); |
| 623 | if (endp == tmp) |
Nathan Fontenot | 16c14b4 | 2008-07-24 05:10:46 +1000 | [diff] [blame] | 624 | return -EINVAL; |
Nathan Fotenot | 1152939 | 2008-07-24 04:25:16 +1000 | [diff] [blame] | 625 | |
| 626 | retval = update_ppp(new_entitled_ptr, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 627 | } else if (!strcmp(kbuf, "capacity_weight")) { |
| 628 | char *endp; |
| 629 | *new_weight_ptr = (u8) simple_strtoul(tmp, &endp, 10); |
| 630 | if (endp == tmp) |
Nathan Fontenot | 16c14b4 | 2008-07-24 05:10:46 +1000 | [diff] [blame] | 631 | return -EINVAL; |
Nathan Fotenot | 1152939 | 2008-07-24 04:25:16 +1000 | [diff] [blame] | 632 | |
| 633 | retval = update_ppp(NULL, new_weight_ptr); |
Nathan Fontenot | dfc3403 | 2008-07-24 04:27:30 +1000 | [diff] [blame] | 634 | } else if (!strcmp(kbuf, "entitled_memory")) { |
| 635 | char *endp; |
| 636 | *new_entitled_ptr = (u64) simple_strtoul(tmp, &endp, 10); |
| 637 | if (endp == tmp) |
Nathan Fontenot | 16c14b4 | 2008-07-24 05:10:46 +1000 | [diff] [blame] | 638 | return -EINVAL; |
Nathan Fontenot | dfc3403 | 2008-07-24 04:27:30 +1000 | [diff] [blame] | 639 | |
| 640 | retval = update_mpp(new_entitled_ptr, NULL); |
| 641 | } else if (!strcmp(kbuf, "entitled_memory_weight")) { |
| 642 | char *endp; |
| 643 | *new_weight_ptr = (u8) simple_strtoul(tmp, &endp, 10); |
| 644 | if (endp == tmp) |
Nathan Fontenot | 16c14b4 | 2008-07-24 05:10:46 +1000 | [diff] [blame] | 645 | return -EINVAL; |
Nathan Fontenot | dfc3403 | 2008-07-24 04:27:30 +1000 | [diff] [blame] | 646 | |
| 647 | retval = update_mpp(NULL, new_weight_ptr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 648 | } else |
Nathan Fontenot | 16c14b4 | 2008-07-24 05:10:46 +1000 | [diff] [blame] | 649 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 650 | |
Segher Boessenkool | 706c8c9 | 2006-03-30 14:49:40 +0200 | [diff] [blame] | 651 | if (retval == H_SUCCESS || retval == H_CONSTRAINED) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 652 | retval = count; |
Segher Boessenkool | 706c8c9 | 2006-03-30 14:49:40 +0200 | [diff] [blame] | 653 | } else if (retval == H_BUSY) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 654 | retval = -EBUSY; |
Segher Boessenkool | 706c8c9 | 2006-03-30 14:49:40 +0200 | [diff] [blame] | 655 | } else if (retval == H_HARDWARE) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 656 | retval = -EIO; |
Segher Boessenkool | 706c8c9 | 2006-03-30 14:49:40 +0200 | [diff] [blame] | 657 | } else if (retval == H_PARAMETER) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 658 | retval = -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 659 | } |
| 660 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 661 | return retval; |
| 662 | } |
| 663 | |
Stephen Rothwell | 16e9f99 | 2006-06-29 15:07:42 +1000 | [diff] [blame] | 664 | static int lparcfg_data(struct seq_file *m, void *v) |
| 665 | { |
| 666 | struct device_node *rootdn; |
| 667 | const char *model = ""; |
| 668 | const char *system_id = ""; |
| 669 | const char *tmp; |
Anton Blanchard | ca5de4e | 2013-12-12 15:59:37 +1100 | [diff] [blame] | 670 | const __be32 *lp_index_ptr; |
Jeremy Kerr | a7f67bd | 2006-07-12 15:35:54 +1000 | [diff] [blame] | 671 | unsigned int lp_index = 0; |
Stephen Rothwell | 16e9f99 | 2006-06-29 15:07:42 +1000 | [diff] [blame] | 672 | |
Frans Pop | 8354be9 | 2010-02-06 07:47:20 +0000 | [diff] [blame] | 673 | seq_printf(m, "%s %s\n", MODULE_NAME, MODULE_VERS); |
Stephen Rothwell | 16e9f99 | 2006-06-29 15:07:42 +1000 | [diff] [blame] | 674 | |
Stephen Rothwell | 8c8dc32 | 2007-04-24 13:50:55 +1000 | [diff] [blame] | 675 | rootdn = of_find_node_by_path("/"); |
Stephen Rothwell | 16e9f99 | 2006-06-29 15:07:42 +1000 | [diff] [blame] | 676 | if (rootdn) { |
Stephen Rothwell | e2eb639 | 2007-04-03 22:26:41 +1000 | [diff] [blame] | 677 | tmp = of_get_property(rootdn, "model", NULL); |
Stephen Rothwell | f533927 | 2012-03-15 18:18:00 +0000 | [diff] [blame] | 678 | if (tmp) |
Stephen Rothwell | 16e9f99 | 2006-06-29 15:07:42 +1000 | [diff] [blame] | 679 | model = tmp; |
Stephen Rothwell | e2eb639 | 2007-04-03 22:26:41 +1000 | [diff] [blame] | 680 | tmp = of_get_property(rootdn, "system-id", NULL); |
Stephen Rothwell | f533927 | 2012-03-15 18:18:00 +0000 | [diff] [blame] | 681 | if (tmp) |
Stephen Rothwell | 16e9f99 | 2006-06-29 15:07:42 +1000 | [diff] [blame] | 682 | system_id = tmp; |
Stephen Rothwell | e2eb639 | 2007-04-03 22:26:41 +1000 | [diff] [blame] | 683 | lp_index_ptr = of_get_property(rootdn, "ibm,partition-no", |
| 684 | NULL); |
Stephen Rothwell | 16e9f99 | 2006-06-29 15:07:42 +1000 | [diff] [blame] | 685 | if (lp_index_ptr) |
Anton Blanchard | ca5de4e | 2013-12-12 15:59:37 +1100 | [diff] [blame] | 686 | lp_index = be32_to_cpup(lp_index_ptr); |
Stephen Rothwell | 8c8dc32 | 2007-04-24 13:50:55 +1000 | [diff] [blame] | 687 | of_node_put(rootdn); |
Stephen Rothwell | 16e9f99 | 2006-06-29 15:07:42 +1000 | [diff] [blame] | 688 | } |
| 689 | seq_printf(m, "serial_number=%s\n", system_id); |
| 690 | seq_printf(m, "system_type=%s\n", model); |
| 691 | seq_printf(m, "partition_id=%d\n", (int)lp_index); |
| 692 | |
Stephen Rothwell | 16e9f99 | 2006-06-29 15:07:42 +1000 | [diff] [blame] | 693 | return pseries_lparcfg_data(m, v); |
| 694 | } |
| 695 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 696 | static int lparcfg_open(struct inode *inode, struct file *file) |
| 697 | { |
| 698 | return single_open(file, lparcfg_data, NULL); |
| 699 | } |
| 700 | |
Alexey Dobriyan | 97a3253 | 2020-02-03 17:37:17 -0800 | [diff] [blame] | 701 | static const struct proc_ops lparcfg_proc_ops = { |
| 702 | .proc_read = seq_read, |
| 703 | .proc_write = lparcfg_write, |
| 704 | .proc_open = lparcfg_open, |
| 705 | .proc_release = single_release, |
| 706 | .proc_lseek = seq_lseek, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 707 | }; |
| 708 | |
Michael Ellerman | 1c21a29 | 2008-05-08 14:27:19 +1000 | [diff] [blame] | 709 | static int __init lparcfg_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 710 | { |
Russell Currey | 57ad583f | 2017-01-12 14:54:13 +1100 | [diff] [blame] | 711 | umode_t mode = 0444; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 712 | |
| 713 | /* Allow writing if we have FW_FEATURE_SPLPAR */ |
Stephen Rothwell | f533927 | 2012-03-15 18:18:00 +0000 | [diff] [blame] | 714 | if (firmware_has_feature(FW_FEATURE_SPLPAR)) |
Russell Currey | 57ad583f | 2017-01-12 14:54:13 +1100 | [diff] [blame] | 715 | mode |= 0200; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 716 | |
Alexey Dobriyan | 97a3253 | 2020-02-03 17:37:17 -0800 | [diff] [blame] | 717 | if (!proc_create("powerpc/lparcfg", mode, NULL, &lparcfg_proc_ops)) { |
Benjamin Herrenschmidt | 188917e | 2009-09-24 19:29:13 +0000 | [diff] [blame] | 718 | printk(KERN_ERR "Failed to create powerpc/lparcfg\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 719 | return -EIO; |
| 720 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 721 | return 0; |
| 722 | } |
Benjamin Herrenschmidt | f5f6cbb | 2013-08-27 16:38:33 +1000 | [diff] [blame] | 723 | machine_device_initcall(pseries, lparcfg_init); |