| 
									
										
										
										
											2011-03-30 16:30:11 +02:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  *  (C) 2010,2011       Thomas Renninger <trenn@suse.de>, Novell Inc. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  Licensed under the terms of the GNU GPL License version 2. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Miscellaneous helpers which do not fit or are worth | 
					
						
							|  |  |  |  * to put into separate headers | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef __CPUPOWERUTILS_HELPERS__
 | 
					
						
							|  |  |  | #define __CPUPOWERUTILS_HELPERS__
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <libintl.h>
 | 
					
						
							|  |  |  | #include <locale.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "helpers/bitmask.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Internationalization ****************************/ | 
					
						
							| 
									
										
										
										
											2011-08-19 17:00:02 +02:00
										 |  |  | #ifdef NLS
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-30 16:30:11 +02:00
										 |  |  | #define _(String) gettext(String)
 | 
					
						
							|  |  |  | #ifndef gettext_noop
 | 
					
						
							|  |  |  | #define gettext_noop(String) String
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2011-04-19 20:16:05 +02:00
										 |  |  | #define N_(String) gettext_noop(String)
 | 
					
						
							| 
									
										
										
										
											2011-08-19 17:00:02 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | #else /* !NLS */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define _(String) String
 | 
					
						
							|  |  |  | #define N_(String) String
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2011-03-30 16:30:11 +02:00
										 |  |  | /* Internationalization ****************************/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | extern int run_as_root; | 
					
						
							|  |  |  | extern struct bitmask *cpus_chosen; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Global verbose (-d) stuff *********************************/ | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * define DEBUG via global Makefile variable | 
					
						
							|  |  |  |  * Debug output is sent to stderr, do: | 
					
						
							|  |  |  |  * cpupower monitor 2>/tmp/debug | 
					
						
							|  |  |  |  * to split debug output away from normal output | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | #ifdef DEBUG
 | 
					
						
							|  |  |  | extern int be_verbose; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define dprint(fmt, ...) {					\
 | 
					
						
							|  |  |  | 		if (be_verbose) {				\ | 
					
						
							|  |  |  | 			fprintf(stderr, "%s: " fmt,		\ | 
					
						
							| 
									
										
										
										
											2011-04-19 20:16:05 +02:00
										 |  |  | 				__func__, ##__VA_ARGS__);	\ | 
					
						
							| 
									
										
										
										
											2011-03-30 16:30:11 +02:00
										 |  |  | 		}						\ | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2011-04-19 20:16:05 +02:00
										 |  |  | static inline void dprint(const char *fmt, ...) { } | 
					
						
							| 
									
										
										
										
											2011-03-30 16:30:11 +02:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | extern int be_verbose; | 
					
						
							|  |  |  | /* Global verbose (-v) stuff *********************************/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* cpuid and cpuinfo helpers  **************************/ | 
					
						
							|  |  |  | enum cpupower_cpu_vendor {X86_VENDOR_UNKNOWN = 0, X86_VENDOR_INTEL, | 
					
						
							|  |  |  | 			  X86_VENDOR_AMD, X86_VENDOR_MAX}; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-07-21 11:54:53 +02:00
										 |  |  | #define CPUPOWER_CAP_INV_TSC		0x00000001
 | 
					
						
							|  |  |  | #define CPUPOWER_CAP_APERF		0x00000002
 | 
					
						
							|  |  |  | #define CPUPOWER_CAP_AMD_CBP		0x00000004
 | 
					
						
							|  |  |  | #define CPUPOWER_CAP_PERF_BIAS		0x00000008
 | 
					
						
							|  |  |  | #define CPUPOWER_CAP_HAS_TURBO_RATIO	0x00000010
 | 
					
						
							| 
									
										
										
										
											2012-02-08 02:05:10 +01:00
										 |  |  | #define CPUPOWER_CAP_IS_SNB		0x00000020
 | 
					
						
							|  |  |  | #define CPUPOWER_CAP_INTEL_IDA		0x00000040
 | 
					
						
							| 
									
										
										
										
											2011-03-30 16:30:11 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define MAX_HW_PSTATES 10
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct cpupower_cpu_info { | 
					
						
							|  |  |  | 	enum cpupower_cpu_vendor vendor; | 
					
						
							|  |  |  | 	unsigned int family; | 
					
						
							|  |  |  | 	unsigned int model; | 
					
						
							|  |  |  | 	unsigned int stepping; | 
					
						
							|  |  |  | 	/* CPU capabilities read out from cpuid */ | 
					
						
							|  |  |  | 	unsigned long long caps; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* get_cpu_info
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Extract CPU vendor, family, model, stepping info from /proc/cpuinfo | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Returns 0 on success or a negativ error code | 
					
						
							|  |  |  |  * Only used on x86, below global's struct values are zero/unknown on | 
					
						
							|  |  |  |  * other archs | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | extern int get_cpu_info(unsigned int cpu, struct cpupower_cpu_info *cpu_info); | 
					
						
							|  |  |  | extern struct cpupower_cpu_info cpupower_cpu_info; | 
					
						
							|  |  |  | /* cpuid and cpuinfo helpers  **************************/ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-27 13:17:46 +01:00
										 |  |  | struct cpuid_core_info { | 
					
						
							|  |  |  | 	int pkg; | 
					
						
							|  |  |  | 	int core; | 
					
						
							|  |  |  | 	int cpu; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* flags */ | 
					
						
							|  |  |  | 	unsigned int is_online:1; | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2011-03-30 16:30:11 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* CPU topology/hierarchy parsing ******************/ | 
					
						
							|  |  |  | struct cpupower_topology { | 
					
						
							|  |  |  | 	/* Amount of CPU cores, packages and threads per core in the system */ | 
					
						
							|  |  |  | 	unsigned int cores; | 
					
						
							|  |  |  | 	unsigned int pkgs; | 
					
						
							|  |  |  | 	unsigned int threads; /* per core */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Array gets mallocated with cores entries, holding per core info */ | 
					
						
							| 
									
										
										
										
											2012-11-27 13:17:46 +01:00
										 |  |  | 	struct cpuid_core_info *core_info; | 
					
						
							| 
									
										
										
										
											2011-03-30 16:30:11 +02:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | extern int get_cpu_topology(struct cpupower_topology *cpu_top); | 
					
						
							|  |  |  | extern void cpu_topology_release(struct cpupower_topology cpu_top); | 
					
						
							| 
									
										
										
										
											2012-11-27 13:17:48 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-30 16:30:11 +02:00
										 |  |  | /* CPU topology/hierarchy parsing ******************/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* X86 ONLY ****************************************/ | 
					
						
							|  |  |  | #if defined(__i386__) || defined(__x86_64__)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <pci/pci.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Read/Write msr ****************************/ | 
					
						
							|  |  |  | extern int read_msr(int cpu, unsigned int idx, unsigned long long *val); | 
					
						
							|  |  |  | extern int write_msr(int cpu, unsigned int idx, unsigned long long val); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | extern int msr_intel_set_perf_bias(unsigned int cpu, unsigned int val); | 
					
						
							|  |  |  | extern int msr_intel_get_perf_bias(unsigned int cpu); | 
					
						
							| 
									
										
										
										
											2011-07-21 11:54:53 +02:00
										 |  |  | extern unsigned long long msr_intel_get_turbo_ratio(unsigned int cpu); | 
					
						
							| 
									
										
										
										
											2011-03-30 16:30:11 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Read/Write msr ****************************/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* PCI stuff ****************************/ | 
					
						
							|  |  |  | extern int amd_pci_get_num_boost_states(int *active, int *states); | 
					
						
							| 
									
										
										
										
											2011-10-11 15:33:50 +02:00
										 |  |  | extern struct pci_dev *pci_acc_init(struct pci_access **pacc, int domain, | 
					
						
							|  |  |  | 				    int bus, int slot, int func, int vendor, | 
					
						
							|  |  |  | 				    int dev); | 
					
						
							|  |  |  | extern struct pci_dev *pci_slot_func_init(struct pci_access **pacc, | 
					
						
							|  |  |  | 					      int slot, int func); | 
					
						
							| 
									
										
										
										
											2011-03-30 16:30:11 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* PCI stuff ****************************/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* AMD HW pstate decoding **************************/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | extern int decode_pstates(unsigned int cpu, unsigned int cpu_family, | 
					
						
							|  |  |  | 			  int boost_states, unsigned long *pstates, int *no); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* AMD HW pstate decoding **************************/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | extern int cpufreq_has_boost_support(unsigned int cpu, int *support, | 
					
						
							|  |  |  | 				     int *active, int * states); | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * CPUID functions returning a single datum | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | unsigned int cpuid_eax(unsigned int op); | 
					
						
							|  |  |  | unsigned int cpuid_ebx(unsigned int op); | 
					
						
							|  |  |  | unsigned int cpuid_ecx(unsigned int op); | 
					
						
							|  |  |  | unsigned int cpuid_edx(unsigned int op); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* cpuid and cpuinfo helpers  **************************/ | 
					
						
							|  |  |  | /* X86 ONLY ********************************************/ | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | static inline int decode_pstates(unsigned int cpu, unsigned int cpu_family, | 
					
						
							|  |  |  | 				 int boost_states, unsigned long *pstates, | 
					
						
							|  |  |  | 				 int *no) | 
					
						
							|  |  |  | { return -1; }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static inline int read_msr(int cpu, unsigned int idx, unsigned long long *val) | 
					
						
							|  |  |  | { return -1; }; | 
					
						
							|  |  |  | static inline int write_msr(int cpu, unsigned int idx, unsigned long long val) | 
					
						
							|  |  |  | { return -1; }; | 
					
						
							|  |  |  | static inline int msr_intel_set_perf_bias(unsigned int cpu, unsigned int val) | 
					
						
							|  |  |  | { return -1; }; | 
					
						
							|  |  |  | static inline int msr_intel_get_perf_bias(unsigned int cpu) | 
					
						
							|  |  |  | { return -1; }; | 
					
						
							| 
									
										
										
										
											2011-07-21 11:54:53 +02:00
										 |  |  | static inline unsigned long long msr_intel_get_turbo_ratio(unsigned int cpu) | 
					
						
							|  |  |  | { return 0; }; | 
					
						
							| 
									
										
										
										
											2011-03-30 16:30:11 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Read/Write msr ****************************/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static inline int cpufreq_has_boost_support(unsigned int cpu, int *support, | 
					
						
							|  |  |  | 					    int *active, int * states) | 
					
						
							|  |  |  | { return -1; } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* cpuid and cpuinfo helpers  **************************/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static inline unsigned int cpuid_eax(unsigned int op) { return 0; }; | 
					
						
							|  |  |  | static inline unsigned int cpuid_ebx(unsigned int op) { return 0; }; | 
					
						
							|  |  |  | static inline unsigned int cpuid_ecx(unsigned int op) { return 0; }; | 
					
						
							|  |  |  | static inline unsigned int cpuid_edx(unsigned int op) { return 0; }; | 
					
						
							|  |  |  | #endif /* defined(__i386__) || defined(__x86_64__) */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif /* __CPUPOWERUTILS_HELPERS__ */
 |