| 
									
										
										
										
											2008-10-22 22:26:29 -07:00
										 |  |  | #ifndef _ASM_X86_MSR_H
 | 
					
						
							|  |  |  | #define _ASM_X86_MSR_H
 | 
					
						
							| 
									
										
										
										
											2007-10-23 22:37:24 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-14 22:37:13 +00:00
										 |  |  | #include <uapi/asm/msr.h>
 | 
					
						
							| 
									
										
										
										
											2007-10-23 22:37:24 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-30 13:31:06 +01:00
										 |  |  | #ifndef __ASSEMBLY__
 | 
					
						
							| 
									
										
										
										
											2008-01-30 13:31:07 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include <asm/asm.h>
 | 
					
						
							|  |  |  | #include <asm/errno.h>
 | 
					
						
							| 
									
										
										
										
											2009-05-22 12:12:01 +02:00
										 |  |  | #include <asm/cpumask.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct msr { | 
					
						
							|  |  |  | 	union { | 
					
						
							|  |  |  | 		struct { | 
					
						
							|  |  |  | 			u32 l; | 
					
						
							|  |  |  | 			u32 h; | 
					
						
							|  |  |  | 		}; | 
					
						
							|  |  |  | 		u64 q; | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2008-01-30 13:31:07 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-17 00:16:25 +01:00
										 |  |  | struct msr_info { | 
					
						
							|  |  |  | 	u32 msr_no; | 
					
						
							|  |  |  | 	struct msr reg; | 
					
						
							|  |  |  | 	struct msr *msrs; | 
					
						
							|  |  |  | 	int err; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct msr_regs_info { | 
					
						
							|  |  |  | 	u32 *regs; | 
					
						
							|  |  |  | 	int err; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-30 13:31:17 +01:00
										 |  |  | static inline unsigned long long native_read_tscp(unsigned int *aux) | 
					
						
							| 
									
										
										
										
											2008-01-30 13:31:06 +01:00
										 |  |  | { | 
					
						
							|  |  |  | 	unsigned long low, high; | 
					
						
							| 
									
										
										
										
											2008-03-23 01:02:51 -07:00
										 |  |  | 	asm volatile(".byte 0x0f,0x01,0xf9" | 
					
						
							|  |  |  | 		     : "=a" (low), "=d" (high), "=c" (*aux)); | 
					
						
							| 
									
										
										
										
											2008-06-25 14:45:28 -07:00
										 |  |  | 	return low | ((u64)high << 32); | 
					
						
							| 
									
										
										
										
											2008-01-30 13:31:06 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-30 13:31:07 +01:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2008-10-17 13:25:07 +08:00
										 |  |  |  * both i386 and x86_64 returns 64-bit value in edx:eax, but gcc's "A" | 
					
						
							|  |  |  |  * constraint has different meanings. For i386, "A" means exactly | 
					
						
							|  |  |  |  * edx:eax, while for x86_64 it doesn't mean rdx:rax or edx:eax. Instead, | 
					
						
							|  |  |  |  * it means rax *or* rdx. | 
					
						
							| 
									
										
										
										
											2008-01-30 13:31:07 +01:00
										 |  |  |  */ | 
					
						
							|  |  |  | #ifdef CONFIG_X86_64
 | 
					
						
							|  |  |  | #define DECLARE_ARGS(val, low, high)	unsigned low, high
 | 
					
						
							| 
									
										
										
										
											2008-03-23 01:02:51 -07:00
										 |  |  | #define EAX_EDX_VAL(val, low, high)	((low) | ((u64)(high) << 32))
 | 
					
						
							| 
									
										
										
										
											2008-01-30 13:31:07 +01:00
										 |  |  | #define EAX_EDX_ARGS(val, low, high)	"a" (low), "d" (high)
 | 
					
						
							|  |  |  | #define EAX_EDX_RET(val, low, high)	"=a" (low), "=d" (high)
 | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | #define DECLARE_ARGS(val, low, high)	unsigned long long val
 | 
					
						
							|  |  |  | #define EAX_EDX_VAL(val, low, high)	(val)
 | 
					
						
							|  |  |  | #define EAX_EDX_ARGS(val, low, high)	"A" (val)
 | 
					
						
							|  |  |  | #define EAX_EDX_RET(val, low, high)	"=A" (val)
 | 
					
						
							| 
									
										
										
										
											2008-01-30 13:31:06 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-23 22:37:24 +02:00
										 |  |  | static inline unsigned long long native_read_msr(unsigned int msr) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2008-01-30 13:31:07 +01:00
										 |  |  | 	DECLARE_ARGS(val, low, high); | 
					
						
							| 
									
										
										
										
											2007-10-23 22:37:24 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-30 13:31:07 +01:00
										 |  |  | 	asm volatile("rdmsr" : EAX_EDX_RET(val, low, high) : "c" (msr)); | 
					
						
							|  |  |  | 	return EAX_EDX_VAL(val, low, high); | 
					
						
							| 
									
										
										
										
											2007-10-23 22:37:24 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static inline unsigned long long native_read_msr_safe(unsigned int msr, | 
					
						
							|  |  |  | 						      int *err) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2008-01-30 13:31:07 +01:00
										 |  |  | 	DECLARE_ARGS(val, low, high); | 
					
						
							| 
									
										
										
										
											2007-10-23 22:37:24 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-25 22:39:15 -07:00
										 |  |  | 	asm volatile("2: rdmsr ; xor %[err],%[err]\n" | 
					
						
							| 
									
										
										
										
											2007-10-23 22:37:24 +02:00
										 |  |  | 		     "1:\n\t" | 
					
						
							|  |  |  | 		     ".section .fixup,\"ax\"\n\t" | 
					
						
							| 
									
										
										
										
											2008-08-25 22:39:15 -07:00
										 |  |  | 		     "3:  mov %[fault],%[err] ; jmp 1b\n\t" | 
					
						
							| 
									
										
										
										
											2007-10-23 22:37:24 +02:00
										 |  |  | 		     ".previous\n\t" | 
					
						
							| 
									
										
										
										
											2008-03-23 01:02:51 -07:00
										 |  |  | 		     _ASM_EXTABLE(2b, 3b) | 
					
						
							| 
									
										
										
										
											2008-08-25 22:39:15 -07:00
										 |  |  | 		     : [err] "=r" (*err), EAX_EDX_RET(val, low, high) | 
					
						
							| 
									
										
										
										
											2009-08-31 14:23:29 -07:00
										 |  |  | 		     : "c" (msr), [fault] "i" (-EIO)); | 
					
						
							| 
									
										
										
										
											2008-01-30 13:31:07 +01:00
										 |  |  | 	return EAX_EDX_VAL(val, low, high); | 
					
						
							| 
									
										
										
										
											2007-10-23 22:37:24 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-30 13:31:07 +01:00
										 |  |  | static inline void native_write_msr(unsigned int msr, | 
					
						
							|  |  |  | 				    unsigned low, unsigned high) | 
					
						
							| 
									
										
										
										
											2007-10-23 22:37:24 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-06-25 00:18:59 -04:00
										 |  |  | 	asm volatile("wrmsr" : : "c" (msr), "a"(low), "d" (high) : "memory"); | 
					
						
							| 
									
										
										
										
											2007-10-23 22:37:24 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-24 23:30:02 +01:00
										 |  |  | /* Can be uninlined because referenced by paravirt */ | 
					
						
							|  |  |  | notrace static inline int native_write_msr_safe(unsigned int msr, | 
					
						
							| 
									
										
										
										
											2008-01-30 13:31:07 +01:00
										 |  |  | 					unsigned low, unsigned high) | 
					
						
							| 
									
										
										
										
											2007-10-23 22:37:24 +02:00
										 |  |  | { | 
					
						
							|  |  |  | 	int err; | 
					
						
							| 
									
										
										
										
											2008-08-25 22:39:15 -07:00
										 |  |  | 	asm volatile("2: wrmsr ; xor %[err],%[err]\n" | 
					
						
							| 
									
										
										
										
											2007-10-23 22:37:24 +02:00
										 |  |  | 		     "1:\n\t" | 
					
						
							|  |  |  | 		     ".section .fixup,\"ax\"\n\t" | 
					
						
							| 
									
										
										
										
											2008-08-25 22:39:15 -07:00
										 |  |  | 		     "3:  mov %[fault],%[err] ; jmp 1b\n\t" | 
					
						
							| 
									
										
										
										
											2007-10-23 22:37:24 +02:00
										 |  |  | 		     ".previous\n\t" | 
					
						
							| 
									
										
										
										
											2008-03-23 01:02:51 -07:00
										 |  |  | 		     _ASM_EXTABLE(2b, 3b) | 
					
						
							| 
									
										
										
										
											2008-08-25 22:39:15 -07:00
										 |  |  | 		     : [err] "=a" (err) | 
					
						
							| 
									
										
										
										
											2008-01-30 13:31:07 +01:00
										 |  |  | 		     : "c" (msr), "0" (low), "d" (high), | 
					
						
							| 
									
										
										
										
											2009-08-31 14:23:29 -07:00
										 |  |  | 		       [fault] "i" (-EIO) | 
					
						
							| 
									
										
										
										
											2008-06-25 00:18:59 -04:00
										 |  |  | 		     : "memory"); | 
					
						
							| 
									
										
										
										
											2007-10-23 22:37:24 +02:00
										 |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-30 13:32:39 +01:00
										 |  |  | extern unsigned long long native_read_tsc(void); | 
					
						
							| 
									
										
										
										
											2007-10-23 22:37:24 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-06-01 16:52:35 +02:00
										 |  |  | extern int rdmsr_safe_regs(u32 regs[8]); | 
					
						
							|  |  |  | extern int wrmsr_safe_regs(u32 regs[8]); | 
					
						
							| 
									
										
										
										
											2009-08-31 09:50:09 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-30 13:32:40 +01:00
										 |  |  | static __always_inline unsigned long long __native_read_tsc(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	DECLARE_ARGS(val, low, high); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	asm volatile("rdtsc" : EAX_EDX_RET(val, low, high)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return EAX_EDX_VAL(val, low, high); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-30 13:31:07 +01:00
										 |  |  | static inline unsigned long long native_read_pmc(int counter) | 
					
						
							| 
									
										
										
										
											2007-10-23 22:37:24 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-01-30 13:31:07 +01:00
										 |  |  | 	DECLARE_ARGS(val, low, high); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	asm volatile("rdpmc" : EAX_EDX_RET(val, low, high) : "c" (counter)); | 
					
						
							|  |  |  | 	return EAX_EDX_VAL(val, low, high); | 
					
						
							| 
									
										
										
										
											2007-10-23 22:37:24 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef CONFIG_PARAVIRT
 | 
					
						
							|  |  |  | #include <asm/paravirt.h>
 | 
					
						
							| 
									
										
										
										
											2007-10-11 11:20:03 +02:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2007-10-23 22:37:24 +02:00
										 |  |  | #include <linux/errno.h>
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Access to machine-specific registers (available on 586 and better only) | 
					
						
							|  |  |  |  * Note: the rd* operations modify the parameters directly (without using | 
					
						
							|  |  |  |  * pointer indirection), this allows gcc to optimize better | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-04 21:16:19 +01:00
										 |  |  | #define rdmsr(msr, low, high)					\
 | 
					
						
							| 
									
										
										
										
											2008-03-23 01:02:51 -07:00
										 |  |  | do {								\ | 
					
						
							|  |  |  | 	u64 __val = native_read_msr((msr));			\ | 
					
						
							| 
									
										
										
										
											2013-03-04 21:16:19 +01:00
										 |  |  | 	(void)((low) = (u32)__val);				\ | 
					
						
							|  |  |  | 	(void)((high) = (u32)(__val >> 32));			\ | 
					
						
							| 
									
										
										
										
											2008-03-23 01:02:51 -07:00
										 |  |  | } while (0) | 
					
						
							| 
									
										
										
										
											2007-10-23 22:37:24 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-30 13:31:07 +01:00
										 |  |  | static inline void wrmsr(unsigned msr, unsigned low, unsigned high) | 
					
						
							| 
									
										
										
										
											2007-10-23 22:37:24 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-01-30 13:31:07 +01:00
										 |  |  | 	native_write_msr(msr, low, high); | 
					
						
							| 
									
										
										
										
											2007-10-23 22:37:24 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-03-23 01:02:51 -07:00
										 |  |  | #define rdmsrl(msr, val)			\
 | 
					
						
							|  |  |  | 	((val) = native_read_msr((msr))) | 
					
						
							| 
									
										
										
										
											2007-10-23 22:37:24 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-30 13:31:07 +01:00
										 |  |  | #define wrmsrl(msr, val)						\
 | 
					
						
							| 
									
										
										
										
											2008-03-23 01:02:51 -07:00
										 |  |  | 	native_write_msr((msr), (u32)((u64)(val)), (u32)((u64)(val) >> 32)) | 
					
						
							| 
									
										
										
										
											2007-10-23 22:37:24 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* wrmsr with exception handling */ | 
					
						
							| 
									
										
										
										
											2008-01-30 13:31:07 +01:00
										 |  |  | static inline int wrmsr_safe(unsigned msr, unsigned low, unsigned high) | 
					
						
							| 
									
										
										
										
											2007-10-23 22:37:24 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-01-30 13:31:07 +01:00
										 |  |  | 	return native_write_msr_safe(msr, low, high); | 
					
						
							| 
									
										
										
										
											2007-10-23 22:37:24 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-19 17:07:34 -07:00
										 |  |  | /* rdmsr with exception handling */ | 
					
						
							| 
									
										
										
										
											2013-03-04 21:16:19 +01:00
										 |  |  | #define rdmsr_safe(msr, low, high)				\
 | 
					
						
							| 
									
										
										
										
											2008-03-23 01:02:51 -07:00
										 |  |  | ({								\ | 
					
						
							|  |  |  | 	int __err;						\ | 
					
						
							|  |  |  | 	u64 __val = native_read_msr_safe((msr), &__err);	\ | 
					
						
							| 
									
										
										
										
											2013-03-04 21:16:19 +01:00
										 |  |  | 	(*low) = (u32)__val;					\ | 
					
						
							|  |  |  | 	(*high) = (u32)(__val >> 32);				\ | 
					
						
							| 
									
										
										
										
											2008-03-23 01:02:51 -07:00
										 |  |  | 	__err;							\ | 
					
						
							|  |  |  | }) | 
					
						
							| 
									
										
										
										
											2007-10-23 22:37:24 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-03-22 10:59:28 +01:00
										 |  |  | static inline int rdmsrl_safe(unsigned msr, unsigned long long *p) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	*p = native_read_msr_safe(msr, &err); | 
					
						
							|  |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2009-08-31 09:50:10 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-23 22:37:24 +02:00
										 |  |  | #define rdtscl(low)						\
 | 
					
						
							| 
									
										
										
										
											2008-12-16 00:32:21 -08:00
										 |  |  | 	((low) = (u32)__native_read_tsc()) | 
					
						
							| 
									
										
										
										
											2007-10-23 22:37:24 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define rdtscll(val)						\
 | 
					
						
							| 
									
										
										
										
											2008-12-16 00:32:21 -08:00
										 |  |  | 	((val) = __native_read_tsc()) | 
					
						
							| 
									
										
										
										
											2007-10-23 22:37:24 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-03-23 01:02:51 -07:00
										 |  |  | #define rdpmc(counter, low, high)			\
 | 
					
						
							|  |  |  | do {							\ | 
					
						
							|  |  |  | 	u64 _l = native_read_pmc((counter));		\ | 
					
						
							|  |  |  | 	(low)  = (u32)_l;				\ | 
					
						
							|  |  |  | 	(high) = (u32)(_l >> 32);			\ | 
					
						
							|  |  |  | } while (0) | 
					
						
							| 
									
										
										
										
											2007-10-23 22:37:24 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-06-05 17:56:50 -07:00
										 |  |  | #define rdpmcl(counter, val) ((val) = native_read_pmc(counter))
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-03-23 01:02:51 -07:00
										 |  |  | #define rdtscp(low, high, aux)					\
 | 
					
						
							|  |  |  | do {                                                            \ | 
					
						
							|  |  |  | 	unsigned long long _val = native_read_tscp(&(aux));     \ | 
					
						
							|  |  |  | 	(low) = (u32)_val;                                      \ | 
					
						
							|  |  |  | 	(high) = (u32)(_val >> 32);                             \ | 
					
						
							|  |  |  | } while (0) | 
					
						
							| 
									
										
										
										
											2007-10-23 22:37:24 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-30 13:31:07 +01:00
										 |  |  | #define rdtscpll(val, aux) (val) = native_read_tscp(&(aux))
 | 
					
						
							| 
									
										
										
										
											2007-10-23 22:37:24 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-30 13:31:07 +01:00
										 |  |  | #endif	/* !CONFIG_PARAVIRT */
 | 
					
						
							| 
									
										
										
										
											2007-10-23 22:37:24 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-06-07 13:32:04 -07:00
										 |  |  | #define wrmsrl_safe(msr, val) wrmsr_safe((msr), (u32)(val),		\
 | 
					
						
							| 
									
										
										
										
											2008-03-23 01:02:51 -07:00
										 |  |  | 					     (u32)((val) >> 32)) | 
					
						
							| 
									
										
										
										
											2007-10-23 22:37:24 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-04 21:16:19 +01:00
										 |  |  | #define write_tsc(low, high) wrmsr(MSR_IA32_TSC, (low), (high))
 | 
					
						
							| 
									
										
										
										
											2007-10-23 22:37:24 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-16 13:48:04 +08:00
										 |  |  | #define write_rdtscp_aux(val) wrmsr(MSR_TSC_AUX, (val), 0)
 | 
					
						
							| 
									
										
										
										
											2007-10-23 22:37:24 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-11 18:14:40 +01:00
										 |  |  | struct msr *msrs_alloc(void); | 
					
						
							|  |  |  | void msrs_free(struct msr *msrs); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-23 22:37:24 +02:00
										 |  |  | #ifdef CONFIG_SMP
 | 
					
						
							| 
									
										
										
										
											2008-08-25 17:27:21 -07:00
										 |  |  | int rdmsr_on_cpu(unsigned int cpu, u32 msr_no, u32 *l, u32 *h); | 
					
						
							|  |  |  | int wrmsr_on_cpu(unsigned int cpu, u32 msr_no, u32 l, u32 h); | 
					
						
							| 
									
										
										
										
											2013-10-11 16:54:58 -07:00
										 |  |  | int rdmsrl_on_cpu(unsigned int cpu, u32 msr_no, u64 *q); | 
					
						
							|  |  |  | int wrmsrl_on_cpu(unsigned int cpu, u32 msr_no, u64 q); | 
					
						
							| 
									
										
										
										
											2009-07-30 11:10:02 +02:00
										 |  |  | void rdmsr_on_cpus(const struct cpumask *mask, u32 msr_no, struct msr *msrs); | 
					
						
							|  |  |  | void wrmsr_on_cpus(const struct cpumask *mask, u32 msr_no, struct msr *msrs); | 
					
						
							| 
									
										
										
										
											2007-10-23 22:37:24 +02:00
										 |  |  | int rdmsr_safe_on_cpu(unsigned int cpu, u32 msr_no, u32 *l, u32 *h); | 
					
						
							|  |  |  | int wrmsr_safe_on_cpu(unsigned int cpu, u32 msr_no, u32 l, u32 h); | 
					
						
							| 
									
										
										
										
											2013-10-11 16:54:58 -07:00
										 |  |  | int rdmsrl_safe_on_cpu(unsigned int cpu, u32 msr_no, u64 *q); | 
					
						
							|  |  |  | int wrmsrl_safe_on_cpu(unsigned int cpu, u32 msr_no, u64 q); | 
					
						
							| 
									
										
										
										
											2009-08-31 14:13:48 -07:00
										 |  |  | int rdmsr_safe_regs_on_cpu(unsigned int cpu, u32 regs[8]); | 
					
						
							|  |  |  | int wrmsr_safe_regs_on_cpu(unsigned int cpu, u32 regs[8]); | 
					
						
							| 
									
										
										
										
											2007-10-23 22:37:24 +02:00
										 |  |  | #else  /*  CONFIG_SMP  */
 | 
					
						
							| 
									
										
										
										
											2008-08-25 17:27:21 -07:00
										 |  |  | static inline int rdmsr_on_cpu(unsigned int cpu, u32 msr_no, u32 *l, u32 *h) | 
					
						
							| 
									
										
										
										
											2007-10-23 22:37:24 +02:00
										 |  |  | { | 
					
						
							|  |  |  | 	rdmsr(msr_no, *l, *h); | 
					
						
							| 
									
										
										
										
											2008-08-25 17:27:21 -07:00
										 |  |  | 	return 0; | 
					
						
							| 
									
										
										
										
											2007-10-23 22:37:24 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2008-08-25 17:27:21 -07:00
										 |  |  | static inline int wrmsr_on_cpu(unsigned int cpu, u32 msr_no, u32 l, u32 h) | 
					
						
							| 
									
										
										
										
											2007-10-23 22:37:24 +02:00
										 |  |  | { | 
					
						
							|  |  |  | 	wrmsr(msr_no, l, h); | 
					
						
							| 
									
										
										
										
											2008-08-25 17:27:21 -07:00
										 |  |  | 	return 0; | 
					
						
							| 
									
										
										
										
											2007-10-23 22:37:24 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2013-10-11 16:54:58 -07:00
										 |  |  | static inline int rdmsrl_on_cpu(unsigned int cpu, u32 msr_no, u64 *q) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	rdmsrl(msr_no, *q); | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | static inline int wrmsrl_on_cpu(unsigned int cpu, u32 msr_no, u64 q) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	wrmsrl(msr_no, q); | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2009-11-05 22:45:41 +10:30
										 |  |  | static inline void rdmsr_on_cpus(const struct cpumask *m, u32 msr_no, | 
					
						
							| 
									
										
										
										
											2009-05-22 13:52:19 +02:00
										 |  |  | 				struct msr *msrs) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |        rdmsr_on_cpu(0, msr_no, &(msrs[0].l), &(msrs[0].h)); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2009-11-05 22:45:41 +10:30
										 |  |  | static inline void wrmsr_on_cpus(const struct cpumask *m, u32 msr_no, | 
					
						
							| 
									
										
										
										
											2009-05-22 13:52:19 +02:00
										 |  |  | 				struct msr *msrs) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |        wrmsr_on_cpu(0, msr_no, msrs[0].l, msrs[0].h); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2008-03-23 01:02:51 -07:00
										 |  |  | static inline int rdmsr_safe_on_cpu(unsigned int cpu, u32 msr_no, | 
					
						
							|  |  |  | 				    u32 *l, u32 *h) | 
					
						
							| 
									
										
										
										
											2007-10-23 22:37:24 +02:00
										 |  |  | { | 
					
						
							|  |  |  | 	return rdmsr_safe(msr_no, l, h); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | static inline int wrmsr_safe_on_cpu(unsigned int cpu, u32 msr_no, u32 l, u32 h) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return wrmsr_safe(msr_no, l, h); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2013-10-11 16:54:58 -07:00
										 |  |  | static inline int rdmsrl_safe_on_cpu(unsigned int cpu, u32 msr_no, u64 *q) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return rdmsrl_safe(msr_no, q); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | static inline int wrmsrl_safe_on_cpu(unsigned int cpu, u32 msr_no, u64 q) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return wrmsrl_safe(msr_no, q); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2009-08-31 14:13:48 -07:00
										 |  |  | static inline int rdmsr_safe_regs_on_cpu(unsigned int cpu, u32 regs[8]) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return rdmsr_safe_regs(regs); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | static inline int wrmsr_safe_regs_on_cpu(unsigned int cpu, u32 regs[8]) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return wrmsr_safe_regs(regs); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2007-10-23 22:37:24 +02:00
										 |  |  | #endif  /* CONFIG_SMP */
 | 
					
						
							| 
									
										
										
										
											2009-08-31 14:16:57 -07:00
										 |  |  | #endif /* __ASSEMBLY__ */
 | 
					
						
							| 
									
										
										
										
											2008-10-22 22:26:29 -07:00
										 |  |  | #endif /* _ASM_X86_MSR_H */
 |