4 #include <asm/msr-index.h>
8 #include <linux/types.h>
9 #include <linux/ioctl.h>
11 #define X86_IOC_RDMSR_REGS _IOWR('c', 0xA0, __u32[8])
12 #define X86_IOC_WRMSR_REGS _IOWR('c', 0xA1, __u32[8])
17 #include <asm/errno.h>
18 #include <asm/cpumask.h>
37 struct msr_regs_info
{
42 static inline unsigned long long native_read_tscp(unsigned int *aux
)
44 unsigned long low
, high
;
45 asm volatile(".byte 0x0f,0x01,0xf9"
46 : "=a" (low
), "=d" (high
), "=c" (*aux
));
47 return low
| ((u64
)high
<< 32);
51 * both i386 and x86_64 returns 64-bit value in edx:eax, but gcc's "A"
52 * constraint has different meanings. For i386, "A" means exactly
53 * edx:eax, while for x86_64 it doesn't mean rdx:rax or edx:eax. Instead,
54 * it means rax *or* rdx.
57 #define DECLARE_ARGS(val, low, high) unsigned low, high
58 #define EAX_EDX_VAL(val, low, high) ((low) | ((u64)(high) << 32))
59 #define EAX_EDX_ARGS(val, low, high) "a" (low), "d" (high)
60 #define EAX_EDX_RET(val, low, high) "=a" (low), "=d" (high)
62 #define DECLARE_ARGS(val, low, high) unsigned long long val
63 #define EAX_EDX_VAL(val, low, high) (val)
64 #define EAX_EDX_ARGS(val, low, high) "A" (val)
65 #define EAX_EDX_RET(val, low, high) "=A" (val)
68 static inline unsigned long long native_read_msr(unsigned int msr
)
70 DECLARE_ARGS(val
, low
, high
);
72 asm volatile("rdmsr" : EAX_EDX_RET(val
, low
, high
) : "c" (msr
));
73 return EAX_EDX_VAL(val
, low
, high
);
76 static inline unsigned long long native_read_msr_safe(unsigned int msr
,
79 DECLARE_ARGS(val
, low
, high
);
81 asm volatile("2: rdmsr ; xor %[err],%[err]\n"
83 ".section .fixup,\"ax\"\n\t"
84 "3: mov %[fault],%[err] ; jmp 1b\n\t"
87 : [err
] "=r" (*err
), EAX_EDX_RET(val
, low
, high
)
88 : "c" (msr
), [fault
] "i" (-EIO
));
89 return EAX_EDX_VAL(val
, low
, high
);
92 static inline void native_write_msr(unsigned int msr
,
93 unsigned low
, unsigned high
)
95 asm volatile("wrmsr" : : "c" (msr
), "a"(low
), "d" (high
) : "memory");
98 /* Can be uninlined because referenced by paravirt */
99 notrace
static inline int native_write_msr_safe(unsigned int msr
,
100 unsigned low
, unsigned high
)
103 asm volatile("2: wrmsr ; xor %[err],%[err]\n"
105 ".section .fixup,\"ax\"\n\t"
106 "3: mov %[fault],%[err] ; jmp 1b\n\t"
110 : "c" (msr
), "0" (low
), "d" (high
),
116 extern unsigned long long native_read_tsc(void);
118 extern int native_rdmsr_safe_regs(u32 regs
[8]);
119 extern int native_wrmsr_safe_regs(u32 regs
[8]);
121 static __always_inline
unsigned long long __native_read_tsc(void)
123 DECLARE_ARGS(val
, low
, high
);
125 asm volatile("rdtsc" : EAX_EDX_RET(val
, low
, high
));
127 return EAX_EDX_VAL(val
, low
, high
);
130 static inline unsigned long long native_read_pmc(int counter
)
132 DECLARE_ARGS(val
, low
, high
);
134 asm volatile("rdpmc" : EAX_EDX_RET(val
, low
, high
) : "c" (counter
));
135 return EAX_EDX_VAL(val
, low
, high
);
138 #ifdef CONFIG_PARAVIRT
139 #include <asm/paravirt.h>
141 #include <linux/errno.h>
143 * Access to machine-specific registers (available on 586 and better only)
144 * Note: the rd* operations modify the parameters directly (without using
145 * pointer indirection), this allows gcc to optimize better
148 #define rdmsr(msr, val1, val2) \
150 u64 __val = native_read_msr((msr)); \
151 (void)((val1) = (u32)__val); \
152 (void)((val2) = (u32)(__val >> 32)); \
155 static inline void wrmsr(unsigned msr
, unsigned low
, unsigned high
)
157 native_write_msr(msr
, low
, high
);
160 #define rdmsrl(msr, val) \
161 ((val) = native_read_msr((msr)))
163 #define wrmsrl(msr, val) \
164 native_write_msr((msr), (u32)((u64)(val)), (u32)((u64)(val) >> 32))
166 /* wrmsr with exception handling */
167 static inline int wrmsr_safe(unsigned msr
, unsigned low
, unsigned high
)
169 return native_write_msr_safe(msr
, low
, high
);
172 /* rdmsr with exception handling */
173 #define rdmsr_safe(msr, p1, p2) \
176 u64 __val = native_read_msr_safe((msr), &__err); \
177 (*p1) = (u32)__val; \
178 (*p2) = (u32)(__val >> 32); \
182 static inline int rdmsrl_safe(unsigned msr
, unsigned long long *p
)
186 *p
= native_read_msr_safe(msr
, &err
);
190 static inline int rdmsrl_amd_safe(unsigned msr
, unsigned long long *p
)
196 gprs
[7] = 0x9c5a203a;
198 err
= native_rdmsr_safe_regs(gprs
);
200 *p
= gprs
[0] | ((u64
)gprs
[2] << 32);
205 static inline int wrmsrl_amd_safe(unsigned msr
, unsigned long long val
)
212 gprs
[7] = 0x9c5a203a;
214 return native_wrmsr_safe_regs(gprs
);
217 static inline int rdmsr_safe_regs(u32 regs
[8])
219 return native_rdmsr_safe_regs(regs
);
222 static inline int wrmsr_safe_regs(u32 regs
[8])
224 return native_wrmsr_safe_regs(regs
);
227 #define rdtscl(low) \
228 ((low) = (u32)__native_read_tsc())
230 #define rdtscll(val) \
231 ((val) = __native_read_tsc())
233 #define rdpmc(counter, low, high) \
235 u64 _l = native_read_pmc((counter)); \
237 (high) = (u32)(_l >> 32); \
240 #define rdtscp(low, high, aux) \
242 unsigned long long _val = native_read_tscp(&(aux)); \
244 (high) = (u32)(_val >> 32); \
247 #define rdtscpll(val, aux) (val) = native_read_tscp(&(aux))
249 #endif /* !CONFIG_PARAVIRT */
252 #define checking_wrmsrl(msr, val) wrmsr_safe((msr), (u32)(val), \
255 #define write_tsc(val1, val2) wrmsr(MSR_IA32_TSC, (val1), (val2))
257 #define write_rdtscp_aux(val) wrmsr(MSR_TSC_AUX, (val), 0)
259 struct msr
*msrs_alloc(void);
260 void msrs_free(struct msr
*msrs
);
263 int rdmsr_on_cpu(unsigned int cpu
, u32 msr_no
, u32
*l
, u32
*h
);
264 int wrmsr_on_cpu(unsigned int cpu
, u32 msr_no
, u32 l
, u32 h
);
265 void rdmsr_on_cpus(const struct cpumask
*mask
, u32 msr_no
, struct msr
*msrs
);
266 void wrmsr_on_cpus(const struct cpumask
*mask
, u32 msr_no
, struct msr
*msrs
);
267 int rdmsr_safe_on_cpu(unsigned int cpu
, u32 msr_no
, u32
*l
, u32
*h
);
268 int wrmsr_safe_on_cpu(unsigned int cpu
, u32 msr_no
, u32 l
, u32 h
);
269 int rdmsr_safe_regs_on_cpu(unsigned int cpu
, u32 regs
[8]);
270 int wrmsr_safe_regs_on_cpu(unsigned int cpu
, u32 regs
[8]);
271 #else /* CONFIG_SMP */
272 static inline int rdmsr_on_cpu(unsigned int cpu
, u32 msr_no
, u32
*l
, u32
*h
)
274 rdmsr(msr_no
, *l
, *h
);
277 static inline int wrmsr_on_cpu(unsigned int cpu
, u32 msr_no
, u32 l
, u32 h
)
282 static inline void rdmsr_on_cpus(const struct cpumask
*m
, u32 msr_no
,
285 rdmsr_on_cpu(0, msr_no
, &(msrs
[0].l
), &(msrs
[0].h
));
287 static inline void wrmsr_on_cpus(const struct cpumask
*m
, u32 msr_no
,
290 wrmsr_on_cpu(0, msr_no
, msrs
[0].l
, msrs
[0].h
);
292 static inline int rdmsr_safe_on_cpu(unsigned int cpu
, u32 msr_no
,
295 return rdmsr_safe(msr_no
, l
, h
);
297 static inline int wrmsr_safe_on_cpu(unsigned int cpu
, u32 msr_no
, u32 l
, u32 h
)
299 return wrmsr_safe(msr_no
, l
, h
);
301 static inline int rdmsr_safe_regs_on_cpu(unsigned int cpu
, u32 regs
[8])
303 return rdmsr_safe_regs(regs
);
305 static inline int wrmsr_safe_regs_on_cpu(unsigned int cpu
, u32 regs
[8])
307 return wrmsr_safe_regs(regs
);
309 #endif /* CONFIG_SMP */
310 #endif /* __KERNEL__ */
311 #endif /* __ASSEMBLY__ */
312 #endif /* _ASM_X86_MSR_H */