blob: 7e2b6ba962ff86d9c442d22c9f2ed1843a946fd9 [file] [log] [blame]
H. Peter Anvin1965aae2008-10-22 22:26:29 -07001#ifndef _ASM_X86_MSR_H
2#define _ASM_X86_MSR_H
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +02003
4#include <asm/msr-index.h>
5
Glauber de Oliveira Costa8f12dea2008-01-30 13:31:06 +01006#ifndef __ASSEMBLY__
Glauber de Oliveira Costac210d242008-01-30 13:31:07 +01007
Jaswinder Singh Rajput8fa62ad2009-06-17 14:11:10 +05308#include <linux/types.h>
H. Peter Anvinff55df52009-08-31 14:16:57 -07009#include <linux/ioctl.h>
10
11#define X86_IOC_RDMSR_REGS _IOWR('c', 0xA0, __u32[8])
12#define X86_IOC_WRMSR_REGS _IOWR('c', 0xA1, __u32[8])
13
14#ifdef __KERNEL__
15
Glauber de Oliveira Costac210d242008-01-30 13:31:07 +010016#include <asm/asm.h>
17#include <asm/errno.h>
Borislav Petkov6bc10962009-05-22 12:12:01 +020018#include <asm/cpumask.h>
19
20struct msr {
21 union {
22 struct {
23 u32 l;
24 u32 h;
25 };
26 u64 q;
27 };
28};
Glauber de Oliveira Costac210d242008-01-30 13:31:07 +010029
Andrew Morton1e160cc2008-01-30 13:31:17 +010030static inline unsigned long long native_read_tscp(unsigned int *aux)
Glauber de Oliveira Costa8f12dea2008-01-30 13:31:06 +010031{
32 unsigned long low, high;
Joe Perchesabb0ade2008-03-23 01:02:51 -070033 asm volatile(".byte 0x0f,0x01,0xf9"
34 : "=a" (low), "=d" (high), "=c" (*aux));
Max Asbock41aefdc2008-06-25 14:45:28 -070035 return low | ((u64)high << 32);
Glauber de Oliveira Costa8f12dea2008-01-30 13:31:06 +010036}
37
Glauber de Oliveira Costac210d242008-01-30 13:31:07 +010038/*
Jike Songd4f1b102008-10-17 13:25:07 +080039 * both i386 and x86_64 returns 64-bit value in edx:eax, but gcc's "A"
40 * constraint has different meanings. For i386, "A" means exactly
41 * edx:eax, while for x86_64 it doesn't mean rdx:rax or edx:eax. Instead,
42 * it means rax *or* rdx.
Glauber de Oliveira Costac210d242008-01-30 13:31:07 +010043 */
44#ifdef CONFIG_X86_64
45#define DECLARE_ARGS(val, low, high) unsigned low, high
Joe Perchesabb0ade2008-03-23 01:02:51 -070046#define EAX_EDX_VAL(val, low, high) ((low) | ((u64)(high) << 32))
Glauber de Oliveira Costac210d242008-01-30 13:31:07 +010047#define EAX_EDX_ARGS(val, low, high) "a" (low), "d" (high)
48#define EAX_EDX_RET(val, low, high) "=a" (low), "=d" (high)
49#else
50#define DECLARE_ARGS(val, low, high) unsigned long long val
51#define EAX_EDX_VAL(val, low, high) (val)
52#define EAX_EDX_ARGS(val, low, high) "A" (val)
53#define EAX_EDX_RET(val, low, high) "=A" (val)
Glauber de Oliveira Costa8f12dea2008-01-30 13:31:06 +010054#endif
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +020055
56static inline unsigned long long native_read_msr(unsigned int msr)
57{
Glauber de Oliveira Costac210d242008-01-30 13:31:07 +010058 DECLARE_ARGS(val, low, high);
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +020059
Glauber de Oliveira Costac210d242008-01-30 13:31:07 +010060 asm volatile("rdmsr" : EAX_EDX_RET(val, low, high) : "c" (msr));
61 return EAX_EDX_VAL(val, low, high);
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +020062}
63
64static inline unsigned long long native_read_msr_safe(unsigned int msr,
65 int *err)
66{
Glauber de Oliveira Costac210d242008-01-30 13:31:07 +010067 DECLARE_ARGS(val, low, high);
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +020068
H. Peter Anvin08970fc2008-08-25 22:39:15 -070069 asm volatile("2: rdmsr ; xor %[err],%[err]\n"
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +020070 "1:\n\t"
71 ".section .fixup,\"ax\"\n\t"
H. Peter Anvin08970fc2008-08-25 22:39:15 -070072 "3: mov %[fault],%[err] ; jmp 1b\n\t"
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +020073 ".previous\n\t"
Joe Perchesabb0ade2008-03-23 01:02:51 -070074 _ASM_EXTABLE(2b, 3b)
H. Peter Anvin08970fc2008-08-25 22:39:15 -070075 : [err] "=r" (*err), EAX_EDX_RET(val, low, high)
H. Peter Anvin0cc02132009-08-31 14:23:29 -070076 : "c" (msr), [fault] "i" (-EIO));
Glauber de Oliveira Costac210d242008-01-30 13:31:07 +010077 return EAX_EDX_VAL(val, low, high);
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +020078}
79
Glauber de Oliveira Costac9dcda52008-01-30 13:31:07 +010080static inline void native_write_msr(unsigned int msr,
81 unsigned low, unsigned high)
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +020082{
Jeremy Fitzhardingeaf2b1c62008-06-25 00:18:59 -040083 asm volatile("wrmsr" : : "c" (msr), "a"(low), "d" (high) : "memory");
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +020084}
85
Frederic Weisbecker0ca59dd2008-12-24 23:30:02 +010086/* Can be uninlined because referenced by paravirt */
87notrace static inline int native_write_msr_safe(unsigned int msr,
Glauber de Oliveira Costac9dcda52008-01-30 13:31:07 +010088 unsigned low, unsigned high)
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +020089{
90 int err;
H. Peter Anvin08970fc2008-08-25 22:39:15 -070091 asm volatile("2: wrmsr ; xor %[err],%[err]\n"
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +020092 "1:\n\t"
93 ".section .fixup,\"ax\"\n\t"
H. Peter Anvin08970fc2008-08-25 22:39:15 -070094 "3: mov %[fault],%[err] ; jmp 1b\n\t"
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +020095 ".previous\n\t"
Joe Perchesabb0ade2008-03-23 01:02:51 -070096 _ASM_EXTABLE(2b, 3b)
H. Peter Anvin08970fc2008-08-25 22:39:15 -070097 : [err] "=a" (err)
Glauber de Oliveira Costac9dcda52008-01-30 13:31:07 +010098 : "c" (msr), "0" (low), "d" (high),
H. Peter Anvin0cc02132009-08-31 14:23:29 -070099 [fault] "i" (-EIO)
Jeremy Fitzhardingeaf2b1c62008-06-25 00:18:59 -0400100 : "memory");
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +0200101 return err;
102}
103
Ingo Molnarcdc79572008-01-30 13:32:39 +0100104extern unsigned long long native_read_tsc(void);
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +0200105
H. Peter Anvin8b956bf2009-08-31 14:13:48 -0700106extern int native_rdmsr_safe_regs(u32 regs[8]);
107extern int native_wrmsr_safe_regs(u32 regs[8]);
Borislav Petkov132ec922009-08-31 09:50:09 +0200108
Ingo Molnar92767af2008-01-30 13:32:40 +0100109static __always_inline unsigned long long __native_read_tsc(void)
110{
111 DECLARE_ARGS(val, low, high);
112
Ingo Molnar92767af2008-01-30 13:32:40 +0100113 asm volatile("rdtsc" : EAX_EDX_RET(val, low, high));
Ingo Molnar92767af2008-01-30 13:32:40 +0100114
115 return EAX_EDX_VAL(val, low, high);
116}
117
Glauber de Oliveira Costab8d1fae2008-01-30 13:31:07 +0100118static inline unsigned long long native_read_pmc(int counter)
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +0200119{
Glauber de Oliveira Costac210d242008-01-30 13:31:07 +0100120 DECLARE_ARGS(val, low, high);
121
122 asm volatile("rdpmc" : EAX_EDX_RET(val, low, high) : "c" (counter));
123 return EAX_EDX_VAL(val, low, high);
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +0200124}
125
126#ifdef CONFIG_PARAVIRT
127#include <asm/paravirt.h>
Thomas Gleixner96a388d2007-10-11 11:20:03 +0200128#else
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +0200129#include <linux/errno.h>
130/*
131 * Access to machine-specific registers (available on 586 and better only)
132 * Note: the rd* operations modify the parameters directly (without using
133 * pointer indirection), this allows gcc to optimize better
134 */
135
Joe Perchesabb0ade2008-03-23 01:02:51 -0700136#define rdmsr(msr, val1, val2) \
137do { \
138 u64 __val = native_read_msr((msr)); \
139 (val1) = (u32)__val; \
140 (val2) = (u32)(__val >> 32); \
141} while (0)
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +0200142
Glauber de Oliveira Costac9dcda52008-01-30 13:31:07 +0100143static inline void wrmsr(unsigned msr, unsigned low, unsigned high)
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +0200144{
Glauber de Oliveira Costac9dcda52008-01-30 13:31:07 +0100145 native_write_msr(msr, low, high);
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +0200146}
147
Joe Perchesabb0ade2008-03-23 01:02:51 -0700148#define rdmsrl(msr, val) \
149 ((val) = native_read_msr((msr)))
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +0200150
Glauber de Oliveira Costac210d242008-01-30 13:31:07 +0100151#define wrmsrl(msr, val) \
Joe Perchesabb0ade2008-03-23 01:02:51 -0700152 native_write_msr((msr), (u32)((u64)(val)), (u32)((u64)(val) >> 32))
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +0200153
154/* wrmsr with exception handling */
Glauber de Oliveira Costac9dcda52008-01-30 13:31:07 +0100155static inline int wrmsr_safe(unsigned msr, unsigned low, unsigned high)
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +0200156{
Glauber de Oliveira Costac9dcda52008-01-30 13:31:07 +0100157 return native_write_msr_safe(msr, low, high);
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +0200158}
159
160/* rdmsr with exception handling */
Joe Perchesabb0ade2008-03-23 01:02:51 -0700161#define rdmsr_safe(msr, p1, p2) \
162({ \
163 int __err; \
164 u64 __val = native_read_msr_safe((msr), &__err); \
165 (*p1) = (u32)__val; \
166 (*p2) = (u32)(__val >> 32); \
167 __err; \
168})
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +0200169
Andi Kleen1de87bd2008-03-22 10:59:28 +0100170static inline int rdmsrl_safe(unsigned msr, unsigned long long *p)
171{
172 int err;
173
174 *p = native_read_msr_safe(msr, &err);
175 return err;
176}
Borislav Petkov177fed12009-08-31 09:50:10 +0200177
Yinghai Lub05f78f2008-08-22 01:32:50 -0700178static inline int rdmsrl_amd_safe(unsigned msr, unsigned long long *p)
179{
Borislav Petkov177fed12009-08-31 09:50:10 +0200180 u32 gprs[8] = { 0 };
Yinghai Lub05f78f2008-08-22 01:32:50 -0700181 int err;
182
Borislav Petkov177fed12009-08-31 09:50:10 +0200183 gprs[1] = msr;
184 gprs[7] = 0x9c5a203a;
185
186 err = native_rdmsr_safe_regs(gprs);
187
188 *p = gprs[0] | ((u64)gprs[2] << 32);
189
Yinghai Lub05f78f2008-08-22 01:32:50 -0700190 return err;
191}
Andi Kleen1de87bd2008-03-22 10:59:28 +0100192
Borislav Petkov177fed12009-08-31 09:50:10 +0200193static inline int wrmsrl_amd_safe(unsigned msr, unsigned long long val)
194{
195 u32 gprs[8] = { 0 };
196
197 gprs[0] = (u32)val;
198 gprs[1] = msr;
199 gprs[2] = val >> 32;
200 gprs[7] = 0x9c5a203a;
201
202 return native_wrmsr_safe_regs(gprs);
203}
204
H. Peter Anvin8b956bf2009-08-31 14:13:48 -0700205static inline int rdmsr_safe_regs(u32 regs[8])
Borislav Petkov132ec922009-08-31 09:50:09 +0200206{
207 return native_rdmsr_safe_regs(regs);
208}
209
H. Peter Anvin8b956bf2009-08-31 14:13:48 -0700210static inline int wrmsr_safe_regs(u32 regs[8])
Borislav Petkov132ec922009-08-31 09:50:09 +0200211{
212 return native_wrmsr_safe_regs(regs);
213}
214
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +0200215#define rdtscl(low) \
Ken Chen205516c2008-12-16 00:32:21 -0800216 ((low) = (u32)__native_read_tsc())
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +0200217
218#define rdtscll(val) \
Ken Chen205516c2008-12-16 00:32:21 -0800219 ((val) = __native_read_tsc())
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +0200220
Joe Perchesabb0ade2008-03-23 01:02:51 -0700221#define rdpmc(counter, low, high) \
222do { \
223 u64 _l = native_read_pmc((counter)); \
224 (low) = (u32)_l; \
225 (high) = (u32)(_l >> 32); \
226} while (0)
Glauber de Oliveira Costac210d242008-01-30 13:31:07 +0100227
Joe Perchesabb0ade2008-03-23 01:02:51 -0700228#define rdtscp(low, high, aux) \
229do { \
230 unsigned long long _val = native_read_tscp(&(aux)); \
231 (low) = (u32)_val; \
232 (high) = (u32)(_val >> 32); \
233} while (0)
Glauber de Oliveira Costac210d242008-01-30 13:31:07 +0100234
235#define rdtscpll(val, aux) (val) = native_read_tscp(&(aux))
236
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +0200237#endif /* !CONFIG_PARAVIRT */
238
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +0200239
Joe Perchesabb0ade2008-03-23 01:02:51 -0700240#define checking_wrmsrl(msr, val) wrmsr_safe((msr), (u32)(val), \
241 (u32)((val) >> 32))
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +0200242
Joe Perchesabb0ade2008-03-23 01:02:51 -0700243#define write_tsc(val1, val2) wrmsr(0x10, (val1), (val2))
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +0200244
Joe Perchesabb0ade2008-03-23 01:02:51 -0700245#define write_rdtscp_aux(val) wrmsr(0xc0000103, (val), 0)
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +0200246
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +0200247#ifdef CONFIG_SMP
H. Peter Anvinc6f31932008-08-25 17:27:21 -0700248int rdmsr_on_cpu(unsigned int cpu, u32 msr_no, u32 *l, u32 *h);
249int wrmsr_on_cpu(unsigned int cpu, u32 msr_no, u32 l, u32 h);
Borislav Petkovb034c192009-05-22 13:52:19 +0200250void rdmsr_on_cpus(const cpumask_t *mask, u32 msr_no, struct msr *msrs);
251void wrmsr_on_cpus(const cpumask_t *mask, u32 msr_no, struct msr *msrs);
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +0200252int rdmsr_safe_on_cpu(unsigned int cpu, u32 msr_no, u32 *l, u32 *h);
253int wrmsr_safe_on_cpu(unsigned int cpu, u32 msr_no, u32 l, u32 h);
H. Peter Anvin8b956bf2009-08-31 14:13:48 -0700254int rdmsr_safe_regs_on_cpu(unsigned int cpu, u32 regs[8]);
255int wrmsr_safe_regs_on_cpu(unsigned int cpu, u32 regs[8]);
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +0200256#else /* CONFIG_SMP */
H. Peter Anvinc6f31932008-08-25 17:27:21 -0700257static inline int rdmsr_on_cpu(unsigned int cpu, u32 msr_no, u32 *l, u32 *h)
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +0200258{
259 rdmsr(msr_no, *l, *h);
H. Peter Anvinc6f31932008-08-25 17:27:21 -0700260 return 0;
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +0200261}
H. Peter Anvinc6f31932008-08-25 17:27:21 -0700262static inline int wrmsr_on_cpu(unsigned int cpu, u32 msr_no, u32 l, u32 h)
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +0200263{
264 wrmsr(msr_no, l, h);
H. Peter Anvinc6f31932008-08-25 17:27:21 -0700265 return 0;
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +0200266}
Borislav Petkovb034c192009-05-22 13:52:19 +0200267static inline void rdmsr_on_cpus(const cpumask_t *m, u32 msr_no,
268 struct msr *msrs)
269{
270 rdmsr_on_cpu(0, msr_no, &(msrs[0].l), &(msrs[0].h));
271}
272static inline void wrmsr_on_cpus(const cpumask_t *m, u32 msr_no,
273 struct msr *msrs)
274{
275 wrmsr_on_cpu(0, msr_no, msrs[0].l, msrs[0].h);
276}
Joe Perchesabb0ade2008-03-23 01:02:51 -0700277static inline int rdmsr_safe_on_cpu(unsigned int cpu, u32 msr_no,
278 u32 *l, u32 *h)
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +0200279{
280 return rdmsr_safe(msr_no, l, h);
281}
282static inline int wrmsr_safe_on_cpu(unsigned int cpu, u32 msr_no, u32 l, u32 h)
283{
284 return wrmsr_safe(msr_no, l, h);
285}
H. Peter Anvin8b956bf2009-08-31 14:13:48 -0700286static inline int rdmsr_safe_regs_on_cpu(unsigned int cpu, u32 regs[8])
287{
288 return rdmsr_safe_regs(regs);
289}
290static inline int wrmsr_safe_regs_on_cpu(unsigned int cpu, u32 regs[8])
291{
292 return wrmsr_safe_regs(regs);
293}
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +0200294#endif /* CONFIG_SMP */
Glauber de Oliveira Costac210d242008-01-30 13:31:07 +0100295#endif /* __KERNEL__ */
H. Peter Anvinff55df52009-08-31 14:16:57 -0700296#endif /* __ASSEMBLY__ */
H. Peter Anvin1965aae2008-10-22 22:26:29 -0700297#endif /* _ASM_X86_MSR_H */