lparcfg.c 19.2 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
/*
 * PowerPC64 LPAR Configuration Information Driver
 *
 * Dave Engebretsen engebret@us.ibm.com
 *    Copyright (c) 2003 Dave Engebretsen
 * Will Schmidt willschm@us.ibm.com
 *    SPLPAR updates, Copyright (c) 2003 Will Schmidt IBM Corporation.
 *    seq_file updates, Copyright (c) 2004 Will Schmidt IBM Corporation.
 * Nathan Lynch nathanl@austin.ibm.com
 *    Added lparcfg_write, Copyright (C) 2004 Nathan Lynch IBM Corporation.
 *
 *      This program is free software; you can redistribute it and/or
 *      modify it under the terms of the GNU General Public License
 *      as published by the Free Software Foundation; either version
 *      2 of the License, or (at your option) any later version.
 *
 * This driver creates a proc file at /proc/ppc64/lparcfg which contains
 * keyword - value pairs that specify the configuration of the partition.
 */

#include <linux/module.h>
#include <linux/types.h>
#include <linux/errno.h>
#include <linux/proc_fs.h>
#include <linux/init.h>
#include <linux/seq_file.h>
27
#include <linux/slab.h>
L
Linus Torvalds 已提交
28 29 30
#include <asm/uaccess.h>
#include <asm/lppaca.h>
#include <asm/hvcall.h>
31
#include <asm/firmware.h>
L
Linus Torvalds 已提交
32 33
#include <asm/rtas.h>
#include <asm/time.h>
34
#include <asm/prom.h>
35
#include <asm/vdso_datapage.h>
36
#include <asm/vio.h>
37
#include <asm/mmu.h>
L
Linus Torvalds 已提交
38

39
#define MODULE_VERS "1.9"
L
Linus Torvalds 已提交
40 41 42 43 44 45 46
#define MODULE_NAME "lparcfg"

/* #define LPARCFG_DEBUG */

static struct proc_dir_entry *proc_ppc64_lparcfg;

/*
47 48
 * Track sum of all purrs across all processors. This is used to further
 * calculate usage values by different applications
L
Linus Torvalds 已提交
49 50 51 52 53 54
 */
static unsigned long get_purr(void)
{
	unsigned long sum_purr = 0;
	int cpu;

55
	for_each_possible_cpu(cpu) {
56
		struct cpu_usage *cu;
L
Linus Torvalds 已提交
57

58 59
		cu = &per_cpu(cpu_usage_array, cpu);
		sum_purr += cu->current_tb;
L
Linus Torvalds 已提交
60 61 62 63
	}
	return sum_purr;
}

64
/*
L
Linus Torvalds 已提交
65 66
 * Methods used to fetch LPAR data when running on a pSeries platform.
 */
67

68 69 70 71 72 73 74 75 76 77
struct hvcall_ppp_data {
	u64	entitlement;
	u64	unallocated_entitlement;
	u16	group_num;
	u16	pool_num;
	u8	capped;
	u8	weight;
	u8	unallocated_weight;
	u16	active_procs_in_pool;
	u16	active_system_procs;
78 79 80
	u16	phys_platform_procs;
	u32	max_proc_cap_avail;
	u32	entitled_proc_cap_avail;
81 82
};

L
Linus Torvalds 已提交
83 84 85 86 87
/*
 * H_GET_PPP hcall returns info in 4 parms.
 *  entitled_capacity,unallocated_capacity,
 *  aggregation, resource_capability).
 *
88
 *  R4 = Entitled Processor Capacity Percentage.
L
Linus Torvalds 已提交
89 90 91 92 93 94 95 96 97 98 99 100
 *  R5 = Unallocated Processor Capacity Percentage.
 *  R6 (AABBCCDDEEFFGGHH).
 *      XXXX - reserved (0)
 *          XXXX - reserved (0)
 *              XXXX - Group Number
 *                  XXXX - Pool Number.
 *  R7 (IIJJKKLLMMNNOOPP).
 *      XX - reserved. (0)
 *        XX - bit 0-6 reserved (0).   bit 7 is Capped indicator.
 *          XX - variable processor Capacity Weight
 *            XX - Unallocated Variable Processor Capacity Weight.
 *              XXXX - Active processors in Physical Processor Pool.
101
 *                  XXXX  - Processors active on platform.
102 103 104 105 106
 *  R8 (QQQQRRRRRRSSSSSS). if ibm,partition-performance-parameters-level >= 1
 *	XXXX - Physical platform procs allocated to virtualization.
 *	    XXXXXX - Max procs capacity % available to the partitions pool.
 *	          XXXXXX - Entitled procs capacity % available to the
 *			   partitions pool.
L
Linus Torvalds 已提交
107
 */
108
static unsigned int h_get_ppp(struct hvcall_ppp_data *ppp_data)
L
Linus Torvalds 已提交
109 110
{
	unsigned long rc;
111
	unsigned long retbuf[PLPAR_HCALL9_BUFSIZE];
112

113
	rc = plpar_hcall9(H_GET_PPP, retbuf);
114

115 116 117 118 119 120 121 122 123 124 125
	ppp_data->entitlement = retbuf[0];
	ppp_data->unallocated_entitlement = retbuf[1];

	ppp_data->group_num = (retbuf[2] >> 2 * 8) & 0xffff;
	ppp_data->pool_num = retbuf[2] & 0xffff;

	ppp_data->capped = (retbuf[3] >> 6 * 8) & 0x01;
	ppp_data->weight = (retbuf[3] >> 5 * 8) & 0xff;
	ppp_data->unallocated_weight = (retbuf[3] >> 4 * 8) & 0xff;
	ppp_data->active_procs_in_pool = (retbuf[3] >> 2 * 8) & 0xffff;
	ppp_data->active_system_procs = retbuf[3] & 0xffff;
L
Linus Torvalds 已提交
126

127 128 129 130
	ppp_data->phys_platform_procs = retbuf[4] >> 6 * 8;
	ppp_data->max_proc_cap_avail = (retbuf[4] >> 3 * 8) & 0xffffff;
	ppp_data->entitled_proc_cap_avail = retbuf[4] & 0xffffff;

L
Linus Torvalds 已提交
131 132 133
	return rc;
}

134 135
static unsigned h_pic(unsigned long *pool_idle_time,
		      unsigned long *num_procs)
L
Linus Torvalds 已提交
136 137
{
	unsigned long rc;
138 139 140 141 142 143
	unsigned long retbuf[PLPAR_HCALL_BUFSIZE];

	rc = plpar_hcall(H_PIC, retbuf);

	*pool_idle_time = retbuf[0];
	*num_procs = retbuf[1];
144 145 146 147 148 149 150 151 152 153

	return rc;
}

/*
 * parse_ppp_data
 * Parse out the data returned from h_get_ppp and h_pic
 */
static void parse_ppp_data(struct seq_file *m)
{
154
	struct hvcall_ppp_data ppp_data;
155 156
	struct device_node *root;
	const int *perf_level;
157 158
	int rc;

159
	rc = h_get_ppp(&ppp_data);
160 161 162
	if (rc)
		return;

163
	seq_printf(m, "partition_entitled_capacity=%lld\n",
164 165 166 167
	           ppp_data.entitlement);
	seq_printf(m, "group=%d\n", ppp_data.group_num);
	seq_printf(m, "system_active_processors=%d\n",
	           ppp_data.active_system_procs);
168

L
Lucas De Marchi 已提交
169
	/* pool related entries are appropriate for shared configs */
170
	if (lppaca_of(0).shared_proc) {
171 172
		unsigned long pool_idle_time, pool_procs;

173
		seq_printf(m, "pool=%d\n", ppp_data.pool_num);
174 175

		/* report pool_capacity in percentage */
176 177
		seq_printf(m, "pool_capacity=%d\n",
			   ppp_data.active_procs_in_pool * 100);
178 179 180 181 182 183

		h_pic(&pool_idle_time, &pool_procs);
		seq_printf(m, "pool_idle_time=%ld\n", pool_idle_time);
		seq_printf(m, "pool_num_procs=%ld\n", pool_procs);
	}

184 185 186 187
	seq_printf(m, "unallocated_capacity_weight=%d\n",
		   ppp_data.unallocated_weight);
	seq_printf(m, "capacity_weight=%d\n", ppp_data.weight);
	seq_printf(m, "capped=%d\n", ppp_data.capped);
188
	seq_printf(m, "unallocated_capacity=%lld\n",
189
		   ppp_data.unallocated_entitlement);
190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211

	/* The last bits of information returned from h_get_ppp are only
	 * valid if the ibm,partition-performance-parameters-level
	 * property is >= 1.
	 */
	root = of_find_node_by_path("/");
	if (root) {
		perf_level = of_get_property(root,
				"ibm,partition-performance-parameters-level",
					     NULL);
		if (perf_level && (*perf_level >= 1)) {
			seq_printf(m,
			    "physical_procs_allocated_to_virtualization=%d\n",
				   ppp_data.phys_platform_procs);
			seq_printf(m, "max_proc_capacity_available=%d\n",
				   ppp_data.max_proc_cap_avail);
			seq_printf(m, "entitled_proc_capacity_available=%d\n",
				   ppp_data.entitled_proc_cap_avail);
		}

		of_node_put(root);
	}
L
Linus Torvalds 已提交
212 213
}

214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251
/**
 * parse_mpp_data
 * Parse out data returned from h_get_mpp
 */
static void parse_mpp_data(struct seq_file *m)
{
	struct hvcall_mpp_data mpp_data;
	int rc;

	rc = h_get_mpp(&mpp_data);
	if (rc)
		return;

	seq_printf(m, "entitled_memory=%ld\n", mpp_data.entitled_mem);

	if (mpp_data.mapped_mem != -1)
		seq_printf(m, "mapped_entitled_memory=%ld\n",
		           mpp_data.mapped_mem);

	seq_printf(m, "entitled_memory_group_number=%d\n", mpp_data.group_num);
	seq_printf(m, "entitled_memory_pool_number=%d\n", mpp_data.pool_num);

	seq_printf(m, "entitled_memory_weight=%d\n", mpp_data.mem_weight);
	seq_printf(m, "unallocated_entitled_memory_weight=%d\n",
	           mpp_data.unallocated_mem_weight);
	seq_printf(m, "unallocated_io_mapping_entitlement=%ld\n",
	           mpp_data.unallocated_entitlement);

	if (mpp_data.pool_size != -1)
		seq_printf(m, "entitled_memory_pool_size=%ld bytes\n",
		           mpp_data.pool_size);

	seq_printf(m, "entitled_memory_loan_request=%ld\n",
	           mpp_data.loan_request);

	seq_printf(m, "backing_memory=%ld bytes\n", mpp_data.backing_mem);
}

252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275
/**
 * parse_mpp_x_data
 * Parse out data returned from h_get_mpp_x
 */
static void parse_mpp_x_data(struct seq_file *m)
{
	struct hvcall_mpp_x_data mpp_x_data;

	if (!firmware_has_feature(FW_FEATURE_XCMO))
		return;
	if (h_get_mpp_x(&mpp_x_data))
		return;

	seq_printf(m, "coalesced_bytes=%ld\n", mpp_x_data.coalesced_bytes);

	if (mpp_x_data.pool_coalesced_bytes)
		seq_printf(m, "pool_coalesced_bytes=%ld\n",
			   mpp_x_data.pool_coalesced_bytes);
	if (mpp_x_data.pool_purr_cycles)
		seq_printf(m, "coalesce_pool_purr=%ld\n", mpp_x_data.pool_purr_cycles);
	if (mpp_x_data.pool_spurr_cycles)
		seq_printf(m, "coalesce_pool_spurr=%ld\n", mpp_x_data.pool_spurr_cycles);
}

L
Linus Torvalds 已提交
276 277 278 279 280 281 282 283 284 285 286 287 288
#define SPLPAR_CHARACTERISTICS_TOKEN 20
#define SPLPAR_MAXLENGTH 1026*(sizeof(char))

/*
 * parse_system_parameter_string()
 * Retrieve the potential_processors, max_entitled_capacity and friends
 * through the get-system-parameter rtas call.  Replace keyword strings as
 * necessary.
 */
static void parse_system_parameter_string(struct seq_file *m)
{
	int call_status;

289
	unsigned char *local_buffer = kmalloc(SPLPAR_MAXLENGTH, GFP_KERNEL);
L
Linus Torvalds 已提交
290
	if (!local_buffer) {
291
		printk(KERN_ERR "%s %s kmalloc failure at line %d\n",
292
		       __FILE__, __func__, __LINE__);
L
Linus Torvalds 已提交
293 294 295 296 297 298 299 300
		return;
	}

	spin_lock(&rtas_data_buf_lock);
	memset(rtas_data_buf, 0, SPLPAR_MAXLENGTH);
	call_status = rtas_call(rtas_token("ibm,get-system-parameter"), 3, 1,
				NULL,
				SPLPAR_CHARACTERISTICS_TOKEN,
301 302
				__pa(rtas_data_buf),
				RTAS_DATA_BUF_SIZE);
L
Linus Torvalds 已提交
303 304 305 306 307 308
	memcpy(local_buffer, rtas_data_buf, SPLPAR_MAXLENGTH);
	spin_unlock(&rtas_data_buf_lock);

	if (call_status != 0) {
		printk(KERN_INFO
		       "%s %s Error calling get-system-parameter (0x%x)\n",
309
		       __FILE__, __func__, call_status);
L
Linus Torvalds 已提交
310 311 312
	} else {
		int splpar_strlen;
		int idx, w_idx;
313
		char *workbuffer = kzalloc(SPLPAR_MAXLENGTH, GFP_KERNEL);
L
Linus Torvalds 已提交
314
		if (!workbuffer) {
315
			printk(KERN_ERR "%s %s kmalloc failure at line %d\n",
316
			       __FILE__, __func__, __LINE__);
317
			kfree(local_buffer);
L
Linus Torvalds 已提交
318 319 320
			return;
		}
#ifdef LPARCFG_DEBUG
321
		printk(KERN_INFO "success calling get-system-parameter\n");
L
Linus Torvalds 已提交
322
#endif
323
		splpar_strlen = local_buffer[0] * 256 + local_buffer[1];
L
Linus Torvalds 已提交
324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371
		local_buffer += 2;	/* step over strlen value */

		w_idx = 0;
		idx = 0;
		while ((*local_buffer) && (idx < splpar_strlen)) {
			workbuffer[w_idx++] = local_buffer[idx++];
			if ((local_buffer[idx] == ',')
			    || (local_buffer[idx] == '\0')) {
				workbuffer[w_idx] = '\0';
				if (w_idx) {
					/* avoid the empty string */
					seq_printf(m, "%s\n", workbuffer);
				}
				memset(workbuffer, 0, SPLPAR_MAXLENGTH);
				idx++;	/* skip the comma */
				w_idx = 0;
			} else if (local_buffer[idx] == '=') {
				/* code here to replace workbuffer contents
				   with different keyword strings */
				if (0 == strcmp(workbuffer, "MaxEntCap")) {
					strcpy(workbuffer,
					       "partition_max_entitled_capacity");
					w_idx = strlen(workbuffer);
				}
				if (0 == strcmp(workbuffer, "MaxPlatProcs")) {
					strcpy(workbuffer,
					       "system_potential_processors");
					w_idx = strlen(workbuffer);
				}
			}
		}
		kfree(workbuffer);
		local_buffer -= 2;	/* back up over strlen value */
	}
	kfree(local_buffer);
}

/* Return the number of processors in the system.
 * This function reads through the device tree and counts
 * the virtual processors, this does not include threads.
 */
static int lparcfg_count_active_processors(void)
{
	struct device_node *cpus_dn = NULL;
	int count = 0;

	while ((cpus_dn = of_find_node_by_type(cpus_dn, "cpu"))) {
#ifdef LPARCFG_DEBUG
372
		printk(KERN_ERR "cpus_dn %p\n", cpus_dn);
L
Linus Torvalds 已提交
373 374 375 376 377 378
#endif
		count++;
	}
	return count;
}

379 380 381 382 383 384
static void pseries_cmo_data(struct seq_file *m)
{
	int cpu;
	unsigned long cmo_faults = 0;
	unsigned long cmo_fault_time = 0;

385 386
	seq_printf(m, "cmo_enabled=%d\n", firmware_has_feature(FW_FEATURE_CMO));

387 388 389 390
	if (!firmware_has_feature(FW_FEATURE_CMO))
		return;

	for_each_possible_cpu(cpu) {
391 392
		cmo_faults += lppaca_of(cpu).cmo_faults;
		cmo_fault_time += lppaca_of(cpu).cmo_fault_time;
393 394 395 396 397
	}

	seq_printf(m, "cmo_faults=%lu\n", cmo_faults);
	seq_printf(m, "cmo_fault_time_usec=%lu\n",
		   cmo_fault_time / tb_ticks_per_usec);
398 399 400
	seq_printf(m, "cmo_primary_psp=%d\n", cmo_get_primary_psp());
	seq_printf(m, "cmo_secondary_psp=%d\n", cmo_get_secondary_psp());
	seq_printf(m, "cmo_page_size=%lu\n", cmo_get_page_size());
401 402
}

403 404 405 406 407 408 409
static void splpar_dispatch_data(struct seq_file *m)
{
	int cpu;
	unsigned long dispatches = 0;
	unsigned long dispatch_dispersions = 0;

	for_each_possible_cpu(cpu) {
410 411
		dispatches += lppaca_of(cpu).yield_count;
		dispatch_dispersions += lppaca_of(cpu).dispersion_count;
412 413 414 415 416 417
	}

	seq_printf(m, "dispatches=%lu\n", dispatches);
	seq_printf(m, "dispatch_dispersions=%lu\n", dispatch_dispersions);
}

418 419 420 421 422 423 424 425
static void parse_em_data(struct seq_file *m)
{
	unsigned long retbuf[PLPAR_HCALL_BUFSIZE];

	if (plpar_hcall(H_GET_EM_PARMS, retbuf) == H_SUCCESS)
		seq_printf(m, "power_mode_data=%016lx\n", retbuf[0]);
}

426
static int pseries_lparcfg_data(struct seq_file *m, void *v)
L
Linus Torvalds 已提交
427 428 429 430
{
	int partition_potential_processors;
	int partition_active_processors;
	struct device_node *rtas_node;
431
	const int *lrdrp = NULL;
L
Linus Torvalds 已提交
432

433
	rtas_node = of_find_node_by_path("/rtas");
434
	if (rtas_node)
435
		lrdrp = of_get_property(rtas_node, "ibm,lrdr-capacity", NULL);
L
Linus Torvalds 已提交
436 437

	if (lrdrp == NULL) {
438
		partition_potential_processors = vdso_data->processorCount;
L
Linus Torvalds 已提交
439 440 441
	} else {
		partition_potential_processors = *(lrdrp + 4);
	}
442
	of_node_put(rtas_node);
L
Linus Torvalds 已提交
443 444 445

	partition_active_processors = lparcfg_count_active_processors();

446
	if (firmware_has_feature(FW_FEATURE_SPLPAR)) {
L
Linus Torvalds 已提交
447 448
		/* this call handles the ibm,get-system-parameter contents */
		parse_system_parameter_string(m);
449
		parse_ppp_data(m);
450
		parse_mpp_data(m);
451
		parse_mpp_x_data(m);
452
		pseries_cmo_data(m);
453
		splpar_dispatch_data(m);
L
Linus Torvalds 已提交
454

455
		seq_printf(m, "purr=%ld\n", get_purr());
L
Linus Torvalds 已提交
456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476
	} else {		/* non SPLPAR case */

		seq_printf(m, "system_active_processors=%d\n",
			   partition_potential_processors);

		seq_printf(m, "system_potential_processors=%d\n",
			   partition_potential_processors);

		seq_printf(m, "partition_max_entitled_capacity=%d\n",
			   partition_potential_processors * 100);

		seq_printf(m, "partition_entitled_capacity=%d\n",
			   partition_active_processors * 100);
	}

	seq_printf(m, "partition_active_processors=%d\n",
		   partition_active_processors);

	seq_printf(m, "partition_potential_processors=%d\n",
		   partition_potential_processors);

477
	seq_printf(m, "shared_processor_mode=%d\n", lppaca_of(0).shared_proc);
L
Linus Torvalds 已提交
478

479 480
	seq_printf(m, "slb_size=%d\n", mmu_slb_size);

481 482
	parse_em_data(m);

L
Linus Torvalds 已提交
483 484 485
	return 0;
}

486 487
static ssize_t update_ppp(u64 *entitlement, u8 *weight)
{
488 489
	struct hvcall_ppp_data ppp_data;
	u8 new_weight;
490 491 492 493
	u64 new_entitled;
	ssize_t retval;

	/* Get our current parameters */
494
	retval = h_get_ppp(&ppp_data);
495 496 497 498
	if (retval)
		return retval;

	if (entitlement) {
499
		new_weight = ppp_data.weight;
500 501 502
		new_entitled = *entitlement;
	} else if (weight) {
		new_weight = *weight;
503
		new_entitled = ppp_data.entitlement;
504 505 506
	} else
		return -EINVAL;

507
	pr_debug("%s: current_entitled = %llu, current_weight = %u\n",
508
		 __func__, ppp_data.entitlement, ppp_data.weight);
509

510
	pr_debug("%s: new_entitled = %llu, new_weight = %u\n",
511
		 __func__, new_entitled, new_weight);
512 513 514 515 516

	retval = plpar_hcall_norets(H_SET_PPP, new_entitled, new_weight);
	return retval;
}

517 518 519 520 521 522 523 524 525 526 527 528 529 530
/**
 * update_mpp
 *
 * Update the memory entitlement and weight for the partition.  Caller must
 * specify either a new entitlement or weight, not both, to be updated
 * since the h_set_mpp call takes both entitlement and weight as parameters.
 */
static ssize_t update_mpp(u64 *entitlement, u8 *weight)
{
	struct hvcall_mpp_data mpp_data;
	u64 new_entitled;
	u8 new_weight;
	ssize_t rc;

531 532 533 534 535 536 537 538 539
	if (entitlement) {
		/* Check with vio to ensure the new memory entitlement
		 * can be handled.
		 */
		rc = vio_cmo_entitlement_update(*entitlement);
		if (rc)
			return rc;
	}

540 541 542 543 544 545 546 547 548 549 550 551 552 553
	rc = h_get_mpp(&mpp_data);
	if (rc)
		return rc;

	if (entitlement) {
		new_weight = mpp_data.mem_weight;
		new_entitled = *entitlement;
	} else if (weight) {
		new_weight = *weight;
		new_entitled = mpp_data.entitled_mem;
	} else
		return -EINVAL;

	pr_debug("%s: current_entitled = %lu, current_weight = %u\n",
554
	         __func__, mpp_data.entitled_mem, mpp_data.mem_weight);
555

556
	pr_debug("%s: new_entitled = %llu, new_weight = %u\n",
557
		 __func__, new_entitled, new_weight);
558 559 560 561 562

	rc = plpar_hcall_norets(H_SET_MPP, new_entitled, new_weight);
	return rc;
}

L
Linus Torvalds 已提交
563 564 565 566 567 568 569 570 571 572 573 574 575
/*
 * Interface for changing system parameters (variable capacity weight
 * and entitled capacity).  Format of input is "param_name=value";
 * anything after value is ignored.  Valid parameters at this time are
 * "partition_entitled_capacity" and "capacity_weight".  We use
 * H_SET_PPP to alter parameters.
 *
 * This function should be invoked only on systems with
 * FW_FEATURE_SPLPAR.
 */
static ssize_t lparcfg_write(struct file *file, const char __user * buf,
			     size_t count, loff_t * off)
{
576 577
	int kbuf_sz = 64;
	char kbuf[kbuf_sz];
L
Linus Torvalds 已提交
578 579 580
	char *tmp;
	u64 new_entitled, *new_entitled_ptr = &new_entitled;
	u8 new_weight, *new_weight_ptr = &new_weight;
581
	ssize_t retval;
L
Linus Torvalds 已提交
582

583
	if (!firmware_has_feature(FW_FEATURE_SPLPAR))
584 585
		return -EINVAL;

586 587
	if (count > kbuf_sz)
		return -EINVAL;
L
Linus Torvalds 已提交
588 589

	if (copy_from_user(kbuf, buf, count))
590
		return -EFAULT;
L
Linus Torvalds 已提交
591 592 593 594

	kbuf[count - 1] = '\0';
	tmp = strchr(kbuf, '=');
	if (!tmp)
595
		return -EINVAL;
L
Linus Torvalds 已提交
596 597 598 599 600 601 602

	*tmp++ = '\0';

	if (!strcmp(kbuf, "partition_entitled_capacity")) {
		char *endp;
		*new_entitled_ptr = (u64) simple_strtoul(tmp, &endp, 10);
		if (endp == tmp)
603
			return -EINVAL;
604 605

		retval = update_ppp(new_entitled_ptr, NULL);
L
Linus Torvalds 已提交
606 607 608 609
	} else if (!strcmp(kbuf, "capacity_weight")) {
		char *endp;
		*new_weight_ptr = (u8) simple_strtoul(tmp, &endp, 10);
		if (endp == tmp)
610
			return -EINVAL;
L
Linus Torvalds 已提交
611

612
		retval = update_ppp(NULL, new_weight_ptr);
613 614 615 616
	} else if (!strcmp(kbuf, "entitled_memory")) {
		char *endp;
		*new_entitled_ptr = (u64) simple_strtoul(tmp, &endp, 10);
		if (endp == tmp)
617
			return -EINVAL;
618 619 620 621 622 623

		retval = update_mpp(new_entitled_ptr, NULL);
	} else if (!strcmp(kbuf, "entitled_memory_weight")) {
		char *endp;
		*new_weight_ptr = (u8) simple_strtoul(tmp, &endp, 10);
		if (endp == tmp)
624
			return -EINVAL;
625 626

		retval = update_mpp(NULL, new_weight_ptr);
627
	} else
628
		return -EINVAL;
L
Linus Torvalds 已提交
629

630
	if (retval == H_SUCCESS || retval == H_CONSTRAINED) {
L
Linus Torvalds 已提交
631
		retval = count;
632
	} else if (retval == H_BUSY) {
L
Linus Torvalds 已提交
633
		retval = -EBUSY;
634
	} else if (retval == H_HARDWARE) {
L
Linus Torvalds 已提交
635
		retval = -EIO;
636
	} else if (retval == H_PARAMETER) {
L
Linus Torvalds 已提交
637 638 639 640 641 642
		retval = -EINVAL;
	}

	return retval;
}

643 644 645 646 647 648
static int lparcfg_data(struct seq_file *m, void *v)
{
	struct device_node *rootdn;
	const char *model = "";
	const char *system_id = "";
	const char *tmp;
649 650
	const unsigned int *lp_index_ptr;
	unsigned int lp_index = 0;
651

652
	seq_printf(m, "%s %s\n", MODULE_NAME, MODULE_VERS);
653

654
	rootdn = of_find_node_by_path("/");
655
	if (rootdn) {
656
		tmp = of_get_property(rootdn, "model", NULL);
657
		if (tmp)
658
			model = tmp;
659
		tmp = of_get_property(rootdn, "system-id", NULL);
660
		if (tmp)
661
			system_id = tmp;
662 663
		lp_index_ptr = of_get_property(rootdn, "ibm,partition-no",
					NULL);
664 665
		if (lp_index_ptr)
			lp_index = *lp_index_ptr;
666
		of_node_put(rootdn);
667 668 669 670 671 672 673 674
	}
	seq_printf(m, "serial_number=%s\n", system_id);
	seq_printf(m, "system_type=%s\n", model);
	seq_printf(m, "partition_id=%d\n", (int)lp_index);

	return pseries_lparcfg_data(m, v);
}

L
Linus Torvalds 已提交
675 676 677 678 679
static int lparcfg_open(struct inode *inode, struct file *file)
{
	return single_open(file, lparcfg_data, NULL);
}

680
static const struct file_operations lparcfg_fops = {
A
Anton Blanchard 已提交
681 682
	.owner		= THIS_MODULE,
	.read		= seq_read,
683
	.write		= lparcfg_write,
A
Anton Blanchard 已提交
684 685
	.open		= lparcfg_open,
	.release	= single_release,
686
	.llseek		= seq_lseek,
L
Linus Torvalds 已提交
687 688
};

689
static int __init lparcfg_init(void)
L
Linus Torvalds 已提交
690 691
{
	struct proc_dir_entry *ent;
A
Al Viro 已提交
692
	umode_t mode = S_IRUSR | S_IRGRP | S_IROTH;
L
Linus Torvalds 已提交
693 694

	/* Allow writing if we have FW_FEATURE_SPLPAR */
695
	if (firmware_has_feature(FW_FEATURE_SPLPAR))
L
Linus Torvalds 已提交
696 697
		mode |= S_IWUSR;

698
	ent = proc_create("powerpc/lparcfg", mode, NULL, &lparcfg_fops);
699
	if (!ent) {
700
		printk(KERN_ERR "Failed to create powerpc/lparcfg\n");
L
Linus Torvalds 已提交
701 702 703 704 705 706 707
		return -EIO;
	}

	proc_ppc64_lparcfg = ent;
	return 0;
}

708
static void __exit lparcfg_cleanup(void)
L
Linus Torvalds 已提交
709
{
710
	if (proc_ppc64_lparcfg)
L
Linus Torvalds 已提交
711 712 713 714 715 716 717 718
		remove_proc_entry("lparcfg", proc_ppc64_lparcfg->parent);
}

module_init(lparcfg_init);
module_exit(lparcfg_cleanup);
MODULE_DESCRIPTION("Interface for LPAR configuration data");
MODULE_AUTHOR("Dave Engebretsen");
MODULE_LICENSE("GPL");