blob: 943fdd572e16938682cbe83ef345745e838918a0 [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#ifdef __KERNEL__
7#ifndef __ASSEMBLY__
Glauber de Oliveira Costac210d242008-01-30 13:31:07 +01008
Jaswinder Singh Rajput8fa62ad2009-06-17 14:11:10 +05309#include <linux/types.h>
Glauber de Oliveira Costac210d242008-01-30 13:31:07 +010010#include <asm/asm.h>
11#include <asm/errno.h>
Borislav Petkov6bc10962009-05-22 12:12:01 +020012#include <asm/cpumask.h>
13
14struct msr {
15 union {
16 struct {
17 u32 l;
18 u32 h;
19 };
20 u64 q;
21 };
22};
Glauber de Oliveira Costac210d242008-01-30 13:31:07 +010023
Andrew Morton1e160cc2008-01-30 13:31:17 +010024static inline unsigned long long native_read_tscp(unsigned int *aux)
Glauber de Oliveira Costa8f12dea2008-01-30 13:31:06 +010025{
26 unsigned long low, high;
Joe Perchesabb0ade2008-03-23 01:02:51 -070027 asm volatile(".byte 0x0f,0x01,0xf9"
28 : "=a" (low), "=d" (high), "=c" (*aux));
Max Asbock41aefdc2008-06-25 14:45:28 -070029 return low | ((u64)high << 32);
Glauber de Oliveira Costa8f12dea2008-01-30 13:31:06 +010030}
31
Glauber de Oliveira Costac210d242008-01-30 13:31:07 +010032/*
Jike Songd4f1b102008-10-17 13:25:07 +080033 * both i386 and x86_64 returns 64-bit value in edx:eax, but gcc's "A"
34 * constraint has different meanings. For i386, "A" means exactly
35 * edx:eax, while for x86_64 it doesn't mean rdx:rax or edx:eax. Instead,
36 * it means rax *or* rdx.
Glauber de Oliveira Costac210d242008-01-30 13:31:07 +010037 */
38#ifdef CONFIG_X86_64
39#define DECLARE_ARGS(val, low, high) unsigned low, high
Joe Perchesabb0ade2008-03-23 01:02:51 -070040#define EAX_EDX_VAL(val, low, high) ((low) | ((u64)(high) << 32))
Glauber de Oliveira Costac210d242008-01-30 13:31:07 +010041#define EAX_EDX_ARGS(val, low, high) "a" (low), "d" (high)
42#define EAX_EDX_RET(val, low, high) "=a" (low), "=d" (high)
43#else
44#define DECLARE_ARGS(val, low, high) unsigned long long val
45#define EAX_EDX_VAL(val, low, high) (val)
46#define EAX_EDX_ARGS(val, low, high) "A" (val)
47#define EAX_EDX_RET(val, low, high) "=A" (val)
Glauber de Oliveira Costa8f12dea2008-01-30 13:31:06 +010048#endif
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +020049
50static inline unsigned long long native_read_msr(unsigned int msr)
51{
Glauber de Oliveira Costac210d242008-01-30 13:31:07 +010052 DECLARE_ARGS(val, low, high);
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +020053
Glauber de Oliveira Costac210d242008-01-30 13:31:07 +010054 asm volatile("rdmsr" : EAX_EDX_RET(val, low, high) : "c" (msr));
55 return EAX_EDX_VAL(val, low, high);
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +020056}
57
58static inline unsigned long long native_read_msr_safe(unsigned int msr,
59 int *err)
60{
Glauber de Oliveira Costac210d242008-01-30 13:31:07 +010061 DECLARE_ARGS(val, low, high);
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +020062
H. Peter Anvin08970fc2008-08-25 22:39:15 -070063 asm volatile("2: rdmsr ; xor %[err],%[err]\n"
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +020064 "1:\n\t"
65 ".section .fixup,\"ax\"\n\t"
H. Peter Anvin08970fc2008-08-25 22:39:15 -070066 "3: mov %[fault],%[err] ; jmp 1b\n\t"
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +020067 ".previous\n\t"
Joe Perchesabb0ade2008-03-23 01:02:51 -070068 _ASM_EXTABLE(2b, 3b)
H. Peter Anvin08970fc2008-08-25 22:39:15 -070069 : [err] "=r" (*err), EAX_EDX_RET(val, low, high)
H. Peter Anvin0cc02132009-08-31 14:23:29 -070070 : "c" (msr), [fault] "i" (-EIO));
Glauber de Oliveira Costac210d242008-01-30 13:31:07 +010071 return EAX_EDX_VAL(val, low, high);
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +020072}
73
Glauber de Oliveira Costac9dcda52008-01-30 13:31:07 +010074static inline void native_write_msr(unsigned int msr,
75 unsigned low, unsigned high)
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +020076{
Jeremy Fitzhardingeaf2b1c62008-06-25 00:18:59 -040077 asm volatile("wrmsr" : : "c" (msr), "a"(low), "d" (high) : "memory");
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +020078}
79
Frederic Weisbecker0ca59dd2008-12-24 23:30:02 +010080/* Can be uninlined because referenced by paravirt */
81notrace static inline int native_write_msr_safe(unsigned int msr,
Glauber de Oliveira Costac9dcda52008-01-30 13:31:07 +010082 unsigned low, unsigned high)
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +020083{
84 int err;
H. Peter Anvin08970fc2008-08-25 22:39:15 -070085 asm volatile("2: wrmsr ; xor %[err],%[err]\n"
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +020086 "1:\n\t"
87 ".section .fixup,\"ax\"\n\t"
H. Peter Anvin08970fc2008-08-25 22:39:15 -070088 "3: mov %[fault],%[err] ; jmp 1b\n\t"
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +020089 ".previous\n\t"
Joe Perchesabb0ade2008-03-23 01:02:51 -070090 _ASM_EXTABLE(2b, 3b)
H. Peter Anvin08970fc2008-08-25 22:39:15 -070091 : [err] "=a" (err)
Glauber de Oliveira Costac9dcda52008-01-30 13:31:07 +010092 : "c" (msr), "0" (low), "d" (high),
H. Peter Anvin0cc02132009-08-31 14:23:29 -070093 [fault] "i" (-EIO)
Jeremy Fitzhardingeaf2b1c62008-06-25 00:18:59 -040094 : "memory");
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +020095 return err;
96}
97
Ingo Molnarcdc79572008-01-30 13:32:39 +010098extern unsigned long long native_read_tsc(void);
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +020099
Borislav Petkov132ec922009-08-31 09:50:09 +0200100extern int native_rdmsr_safe_regs(u32 *regs);
101extern int native_wrmsr_safe_regs(u32 *regs);
102
Ingo Molnar92767af2008-01-30 13:32:40 +0100103static __always_inline unsigned long long __native_read_tsc(void)
104{
105 DECLARE_ARGS(val, low, high);
106
Ingo Molnar92767af2008-01-30 13:32:40 +0100107 asm volatile("rdtsc" : EAX_EDX_RET(val, low, high));
Ingo Molnar92767af2008-01-30 13:32:40 +0100108
109 return EAX_EDX_VAL(val, low, high);
110}
111
Glauber de Oliveira Costab8d1fae2008-01-30 13:31:07 +0100112static inline unsigned long long native_read_pmc(int counter)
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +0200113{
Glauber de Oliveira Costac210d242008-01-30 13:31:07 +0100114 DECLARE_ARGS(val, low, high);
115
116 asm volatile("rdpmc" : EAX_EDX_RET(val, low, high) : "c" (counter));
117 return EAX_EDX_VAL(val, low, high);
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +0200118}
119
120#ifdef CONFIG_PARAVIRT
121#include <asm/paravirt.h>
Thomas Gleixner96a388d2007-10-11 11:20:03 +0200122#else
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +0200123#include <linux/errno.h>
124/*
125 * Access to machine-specific registers (available on 586 and better only)
126 * Note: the rd* operations modify the parameters directly (without using
127 * pointer indirection), this allows gcc to optimize better
128 */
129
Joe Perchesabb0ade2008-03-23 01:02:51 -0700130#define rdmsr(msr, val1, val2) \
131do { \
132 u64 __val = native_read_msr((msr)); \
133 (val1) = (u32)__val; \
134 (val2) = (u32)(__val >> 32); \
135} while (0)
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +0200136
Glauber de Oliveira Costac9dcda52008-01-30 13:31:07 +0100137static inline void wrmsr(unsigned msr, unsigned low, unsigned high)
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +0200138{
Glauber de Oliveira Costac9dcda52008-01-30 13:31:07 +0100139 native_write_msr(msr, low, high);
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +0200140}
141
Joe Perchesabb0ade2008-03-23 01:02:51 -0700142#define rdmsrl(msr, val) \
143 ((val) = native_read_msr((msr)))
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +0200144
Glauber de Oliveira Costac210d242008-01-30 13:31:07 +0100145#define wrmsrl(msr, val) \
Joe Perchesabb0ade2008-03-23 01:02:51 -0700146 native_write_msr((msr), (u32)((u64)(val)), (u32)((u64)(val) >> 32))
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +0200147
148/* wrmsr with exception handling */
Glauber de Oliveira Costac9dcda52008-01-30 13:31:07 +0100149static inline int wrmsr_safe(unsigned msr, unsigned low, unsigned high)
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +0200150{
Glauber de Oliveira Costac9dcda52008-01-30 13:31:07 +0100151 return native_write_msr_safe(msr, low, high);
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +0200152}
153
154/* rdmsr with exception handling */
Joe Perchesabb0ade2008-03-23 01:02:51 -0700155#define rdmsr_safe(msr, p1, p2) \
156({ \
157 int __err; \
158 u64 __val = native_read_msr_safe((msr), &__err); \
159 (*p1) = (u32)__val; \
160 (*p2) = (u32)(__val >> 32); \
161 __err; \
162})
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +0200163
Andi Kleen1de87bd2008-03-22 10:59:28 +0100164static inline int rdmsrl_safe(unsigned msr, unsigned long long *p)
165{
166 int err;
167
168 *p = native_read_msr_safe(msr, &err);
169 return err;
170}
Borislav Petkov177fed12009-08-31 09:50:10 +0200171
Yinghai Lub05f78f2008-08-22 01:32:50 -0700172static inline int rdmsrl_amd_safe(unsigned msr, unsigned long long *p)
173{
Borislav Petkov177fed12009-08-31 09:50:10 +0200174 u32 gprs[8] = { 0 };
Yinghai Lub05f78f2008-08-22 01:32:50 -0700175 int err;
176
Borislav Petkov177fed12009-08-31 09:50:10 +0200177 gprs[1] = msr;
178 gprs[7] = 0x9c5a203a;
179
180 err = native_rdmsr_safe_regs(gprs);
181
182 *p = gprs[0] | ((u64)gprs[2] << 32);
183
Yinghai Lub05f78f2008-08-22 01:32:50 -0700184 return err;
185}
Andi Kleen1de87bd2008-03-22 10:59:28 +0100186
Borislav Petkov177fed12009-08-31 09:50:10 +0200187static inline int wrmsrl_amd_safe(unsigned msr, unsigned long long val)
188{
189 u32 gprs[8] = { 0 };
190
191 gprs[0] = (u32)val;
192 gprs[1] = msr;
193 gprs[2] = val >> 32;
194 gprs[7] = 0x9c5a203a;
195
196 return native_wrmsr_safe_regs(gprs);
197}
198
Borislav Petkov132ec922009-08-31 09:50:09 +0200199static inline int rdmsr_safe_regs(u32 *regs)
200{
201 return native_rdmsr_safe_regs(regs);
202}
203
204static inline int wrmsr_safe_regs(u32 *regs)
205{
206 return native_wrmsr_safe_regs(regs);
207}
208
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +0200209#define rdtscl(low) \
Ken Chen205516c2008-12-16 00:32:21 -0800210 ((low) = (u32)__native_read_tsc())
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +0200211
212#define rdtscll(val) \
Ken Chen205516c2008-12-16 00:32:21 -0800213 ((val) = __native_read_tsc())
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +0200214
Joe Perchesabb0ade2008-03-23 01:02:51 -0700215#define rdpmc(counter, low, high) \
216do { \
217 u64 _l = native_read_pmc((counter)); \
218 (low) = (u32)_l; \
219 (high) = (u32)(_l >> 32); \
220} while (0)
Glauber de Oliveira Costac210d242008-01-30 13:31:07 +0100221
Joe Perchesabb0ade2008-03-23 01:02:51 -0700222#define rdtscp(low, high, aux) \
223do { \
224 unsigned long long _val = native_read_tscp(&(aux)); \
225 (low) = (u32)_val; \
226 (high) = (u32)(_val >> 32); \
227} while (0)
Glauber de Oliveira Costac210d242008-01-30 13:31:07 +0100228
229#define rdtscpll(val, aux) (val) = native_read_tscp(&(aux))
230
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +0200231#endif /* !CONFIG_PARAVIRT */
232
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +0200233
Joe Perchesabb0ade2008-03-23 01:02:51 -0700234#define checking_wrmsrl(msr, val) wrmsr_safe((msr), (u32)(val), \
235 (u32)((val) >> 32))
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +0200236
Joe Perchesabb0ade2008-03-23 01:02:51 -0700237#define write_tsc(val1, val2) wrmsr(0x10, (val1), (val2))
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +0200238
Joe Perchesabb0ade2008-03-23 01:02:51 -0700239#define write_rdtscp_aux(val) wrmsr(0xc0000103, (val), 0)
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +0200240
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +0200241#ifdef CONFIG_SMP
H. Peter Anvinc6f31932008-08-25 17:27:21 -0700242int rdmsr_on_cpu(unsigned int cpu, u32 msr_no, u32 *l, u32 *h);
243int wrmsr_on_cpu(unsigned int cpu, u32 msr_no, u32 l, u32 h);
Borislav Petkovb034c192009-05-22 13:52:19 +0200244void rdmsr_on_cpus(const cpumask_t *mask, u32 msr_no, struct msr *msrs);
245void wrmsr_on_cpus(const cpumask_t *mask, u32 msr_no, struct msr *msrs);
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +0200246int rdmsr_safe_on_cpu(unsigned int cpu, u32 msr_no, u32 *l, u32 *h);
247int wrmsr_safe_on_cpu(unsigned int cpu, u32 msr_no, u32 l, u32 h);
248#else /* CONFIG_SMP */
H. Peter Anvinc6f31932008-08-25 17:27:21 -0700249static inline int rdmsr_on_cpu(unsigned int cpu, u32 msr_no, u32 *l, u32 *h)
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +0200250{
251 rdmsr(msr_no, *l, *h);
H. Peter Anvinc6f31932008-08-25 17:27:21 -0700252 return 0;
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +0200253}
H. Peter Anvinc6f31932008-08-25 17:27:21 -0700254static inline int wrmsr_on_cpu(unsigned int cpu, u32 msr_no, u32 l, u32 h)
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +0200255{
256 wrmsr(msr_no, l, h);
H. Peter Anvinc6f31932008-08-25 17:27:21 -0700257 return 0;
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +0200258}
Borislav Petkovb034c192009-05-22 13:52:19 +0200259static inline void rdmsr_on_cpus(const cpumask_t *m, u32 msr_no,
260 struct msr *msrs)
261{
262 rdmsr_on_cpu(0, msr_no, &(msrs[0].l), &(msrs[0].h));
263}
264static inline void wrmsr_on_cpus(const cpumask_t *m, u32 msr_no,
265 struct msr *msrs)
266{
267 wrmsr_on_cpu(0, msr_no, msrs[0].l, msrs[0].h);
268}
Joe Perchesabb0ade2008-03-23 01:02:51 -0700269static inline int rdmsr_safe_on_cpu(unsigned int cpu, u32 msr_no,
270 u32 *l, u32 *h)
Thomas Gleixnerbe7baf82007-10-23 22:37:24 +0200271{
272 return rdmsr_safe(msr_no, l, h);
273}
274static inline int wrmsr_safe_on_cpu(unsigned int cpu, u32 msr_no, u32 l, u32 h)
275{
276 return wrmsr_safe(msr_no, l, h);
277}
278#endif /* CONFIG_SMP */
Glauber de Oliveira Costa751de832008-01-30 13:31:03 +0100279#endif /* __ASSEMBLY__ */
Glauber de Oliveira Costac210d242008-01-30 13:31:07 +0100280#endif /* __KERNEL__ */
H. Peter Anvin1965aae2008-10-22 22:26:29 -0700281#endif /* _ASM_X86_MSR_H */