lparcfg.c

来自「Linux Kernel 2.6.9 for OMAP1710」· C语言 代码 · 共 578 行 · 第 1/2 页

C
578
字号
/* * 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/config.h>#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>#include <asm/uaccess.h>#include <asm/iSeries/HvLpConfig.h>#include <asm/iSeries/ItLpPaca.h>#include <asm/iSeries/LparData.h>#include <asm/hvcall.h>#include <asm/cputable.h>#include <asm/rtas.h>#include <asm/system.h>#define MODULE_VERS "1.4"#define MODULE_NAME "lparcfg"/* #define LPARCFG_DEBUG *//* find a better place for this function... */void log_plpar_hcall_return(unsigned long rc, char *tag){	if (rc == 0)		/* success, return */		return;/* check for null tag ? */	if (rc == H_Hardware)		printk(KERN_INFO		       "plpar-hcall (%s) failed with hardware fault\n", tag);	else if (rc == H_Function)		printk(KERN_INFO		       "plpar-hcall (%s) failed; function not allowed\n", tag);	else if (rc == H_Authority)		printk(KERN_INFO		       "plpar-hcall (%s) failed; not authorized to this function\n",		       tag);	else if (rc == H_Parameter)		printk(KERN_INFO "plpar-hcall (%s) failed; Bad parameter(s)\n",		       tag);	else		printk(KERN_INFO		       "plpar-hcall (%s) failed with unexpected rc(0x%lx)\n",		       tag, rc);}static struct proc_dir_entry *proc_ppc64_lparcfg;#define LPARCFG_BUFF_SIZE 4096#ifdef CONFIG_PPC_ISERIES#define lparcfg_write NULL/*  * Methods used to fetch LPAR data when running on an iSeries platform. */static int lparcfg_data(struct seq_file *m, void *v){	unsigned long pool_id, lp_index;	int shared, entitled_capacity, max_entitled_capacity;	int processors, max_processors;	struct paca_struct *lpaca = get_paca();	shared = (int)(lpaca->lppaca_ptr->xSharedProc);	seq_printf(m, "serial_number=%c%c%c%c%c%c%c\n",		   e2a(xItExtVpdPanel.mfgID[2]),		   e2a(xItExtVpdPanel.mfgID[3]),		   e2a(xItExtVpdPanel.systemSerial[1]),		   e2a(xItExtVpdPanel.systemSerial[2]),		   e2a(xItExtVpdPanel.systemSerial[3]),		   e2a(xItExtVpdPanel.systemSerial[4]),		   e2a(xItExtVpdPanel.systemSerial[5]));	seq_printf(m, "system_type=%c%c%c%c\n",		   e2a(xItExtVpdPanel.machineType[0]),		   e2a(xItExtVpdPanel.machineType[1]),		   e2a(xItExtVpdPanel.machineType[2]),		   e2a(xItExtVpdPanel.machineType[3]));	lp_index = HvLpConfig_getLpIndex();	seq_printf(m, "partition_id=%d\n", (int)lp_index);	seq_printf(m, "system_active_processors=%d\n",		   (int)HvLpConfig_getSystemPhysicalProcessors());	seq_printf(m, "system_potential_processors=%d\n",		   (int)HvLpConfig_getSystemPhysicalProcessors());	processors = (int)HvLpConfig_getPhysicalProcessors();	seq_printf(m, "partition_active_processors=%d\n", processors);	max_processors = (int)HvLpConfig_getMaxPhysicalProcessors();	seq_printf(m, "partition_potential_processors=%d\n", max_processors);	if (shared) {		entitled_capacity = HvLpConfig_getSharedProcUnits();		max_entitled_capacity = HvLpConfig_getMaxSharedProcUnits();	} else {		entitled_capacity = processors * 100;		max_entitled_capacity = max_processors * 100;	}	seq_printf(m, "partition_entitled_capacity=%d\n", entitled_capacity);	seq_printf(m, "partition_max_entitled_capacity=%d\n",		   max_entitled_capacity);	if (shared) {		pool_id = HvLpConfig_getSharedPoolIndex();		seq_printf(m, "pool=%d\n", (int)pool_id);		seq_printf(m, "pool_capacity=%d\n",			   (int)(HvLpConfig_getNumProcsInSharedPool(pool_id) *				 100));	}	seq_printf(m, "shared_processor_mode=%d\n", shared);	return 0;}#endif				/* CONFIG_PPC_ISERIES */#ifdef CONFIG_PPC_PSERIES/*  * Methods used to fetch LPAR data when running on a pSeries platform. *//* * H_GET_PPP hcall returns info in 4 parms. *  entitled_capacity,unallocated_capacity, *  aggregation, resource_capability). * *  R4 = Entitled Processor Capacity Percentage.  *  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. *                  XXXX  - Processors active on platform.  */static unsigned int h_get_ppp(unsigned long *entitled,			      unsigned long *unallocated,			      unsigned long *aggregation,			      unsigned long *resource){	unsigned long rc;	rc = plpar_hcall_4out(H_GET_PPP, 0, 0, 0, 0, entitled, unallocated,			      aggregation, resource);	log_plpar_hcall_return(rc, "H_GET_PPP");	return rc;}static void h_pic(unsigned long *pool_idle_time, unsigned long *num_procs){	unsigned long rc;	unsigned long dummy;	rc = plpar_hcall(H_PIC, 0, 0, 0, 0, pool_idle_time, num_procs, &dummy);	log_plpar_hcall_return(rc, "H_PIC");}static unsigned long get_purr(void);/* ToDo:  get sum of purr across all processors.  The purr collection code * is coming, but at this time is still problematic, so for now this * function will return 0. */static unsigned long get_purr(){	unsigned long sum_purr = 0;	return sum_purr;}#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;	char *local_buffer = kmalloc(SPLPAR_MAXLENGTH, GFP_KERNEL);	if (!local_buffer) {		printk(KERN_ERR "%s %s kmalloc failure at line %d \n",		       __FILE__, __FUNCTION__, __LINE__);		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,				__pa(rtas_data_buf));	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",		       __FILE__, __FUNCTION__, call_status);	} else {		int splpar_strlen;		int idx, w_idx;		char *workbuffer = kmalloc(SPLPAR_MAXLENGTH, GFP_KERNEL);		if (!workbuffer) {			printk(KERN_ERR "%s %s kmalloc failure at line %d \n",			       __FILE__, __FUNCTION__, __LINE__);			return;		}#ifdef LPARCFG_DEBUG		printk(KERN_INFO "success calling get-system-parameter \n");#endif		splpar_strlen = local_buffer[0] * 16 + local_buffer[1];		local_buffer += 2;	/* step over strlen value */		memset(workbuffer, 0, SPLPAR_MAXLENGTH);		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);}static int lparcfg_count_active_processors(void);/* 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.

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?