Merge branch 'merge' of git://git.kernel.org/pub/scm/linux/kernel/git/jk/spufs into...
[deliverable/linux.git] / arch / x86 / include / asm / msr.h
CommitLineData
1965aae3
PA
1#ifndef _ASM_X86_MSR_H
2#define _ASM_X86_MSR_H
be7baf80
TG
3
4#include <asm/msr-index.h>
5
d43a3312
MF
6#ifndef __ASSEMBLY__
7# include <linux/types.h>
8#endif
9
8f12dea6
GOC
10#ifdef __KERNEL__
11#ifndef __ASSEMBLY__
c210d249
GOC
12
13#include <asm/asm.h>
14#include <asm/errno.h>
15
1e160cc3 16static inline unsigned long long native_read_tscp(unsigned int *aux)
8f12dea6
GOC
17{
18 unsigned long low, high;
abb0ade0
JP
19 asm volatile(".byte 0x0f,0x01,0xf9"
20 : "=a" (low), "=d" (high), "=c" (*aux));
41aefdcc 21 return low | ((u64)high << 32);
8f12dea6
GOC
22}
23
c210d249
GOC
24/*
25 * i386 calling convention returns 64-bit value in edx:eax, while
26 * x86_64 returns at rax. Also, the "A" constraint does not really
27 * mean rdx:rax in x86_64, so we need specialized behaviour for each
28 * architecture
29 */
30#ifdef CONFIG_X86_64
31#define DECLARE_ARGS(val, low, high) unsigned low, high
abb0ade0 32#define EAX_EDX_VAL(val, low, high) ((low) | ((u64)(high) << 32))
c210d249
GOC
33#define EAX_EDX_ARGS(val, low, high) "a" (low), "d" (high)
34#define EAX_EDX_RET(val, low, high) "=a" (low), "=d" (high)
35#else
36#define DECLARE_ARGS(val, low, high) unsigned long long val
37#define EAX_EDX_VAL(val, low, high) (val)
38#define EAX_EDX_ARGS(val, low, high) "A" (val)
39#define EAX_EDX_RET(val, low, high) "=A" (val)
8f12dea6
GOC
40#endif
41
be7baf80
TG
42static inline unsigned long long native_read_msr(unsigned int msr)
43{
c210d249 44 DECLARE_ARGS(val, low, high);
be7baf80 45
c210d249
GOC
46 asm volatile("rdmsr" : EAX_EDX_RET(val, low, high) : "c" (msr));
47 return EAX_EDX_VAL(val, low, high);
be7baf80
TG
48}
49
50static inline unsigned long long native_read_msr_safe(unsigned int msr,
51 int *err)
52{
c210d249 53 DECLARE_ARGS(val, low, high);
be7baf80 54
08970fc4 55 asm volatile("2: rdmsr ; xor %[err],%[err]\n"
be7baf80
TG
56 "1:\n\t"
57 ".section .fixup,\"ax\"\n\t"
08970fc4 58 "3: mov %[fault],%[err] ; jmp 1b\n\t"
be7baf80 59 ".previous\n\t"
abb0ade0 60 _ASM_EXTABLE(2b, 3b)
08970fc4
PA
61 : [err] "=r" (*err), EAX_EDX_RET(val, low, high)
62 : "c" (msr), [fault] "i" (-EFAULT));
c210d249 63 return EAX_EDX_VAL(val, low, high);
be7baf80
TG
64}
65
b05f78f5
YL
66static inline unsigned long long native_read_msr_amd_safe(unsigned int msr,
67 int *err)
68{
69 DECLARE_ARGS(val, low, high);
70
56ec1ddc 71 asm volatile("2: rdmsr ; xor %0,%0\n"
be7baf80
TG
72 "1:\n\t"
73 ".section .fixup,\"ax\"\n\t"
56ec1ddc 74 "3: mov %3,%0 ; jmp 1b\n\t"
be7baf80 75 ".previous\n\t"
abb0ade0 76 _ASM_EXTABLE(2b, 3b)
c210d249 77 : "=r" (*err), EAX_EDX_RET(val, low, high)
b05f78f5 78 : "c" (msr), "D" (0x9c5a203a), "i" (-EFAULT));
c210d249 79 return EAX_EDX_VAL(val, low, high);
be7baf80
TG
80}
81
c9dcda5c
GOC
82static inline void native_write_msr(unsigned int msr,
83 unsigned low, unsigned high)
be7baf80 84{
af2b1c60 85 asm volatile("wrmsr" : : "c" (msr), "a"(low), "d" (high) : "memory");
be7baf80
TG
86}
87
88static inline int native_write_msr_safe(unsigned int msr,
c9dcda5c 89 unsigned low, unsigned high)
be7baf80
TG
90{
91 int err;
08970fc4 92 asm volatile("2: wrmsr ; xor %[err],%[err]\n"
be7baf80
TG
93 "1:\n\t"
94 ".section .fixup,\"ax\"\n\t"
08970fc4 95 "3: mov %[fault],%[err] ; jmp 1b\n\t"
be7baf80 96 ".previous\n\t"
abb0ade0 97 _ASM_EXTABLE(2b, 3b)
08970fc4 98 : [err] "=a" (err)
c9dcda5c 99 : "c" (msr), "0" (low), "d" (high),
08970fc4 100 [fault] "i" (-EFAULT)
af2b1c60 101 : "memory");
be7baf80
TG
102 return err;
103}
104
cdc7957d 105extern unsigned long long native_read_tsc(void);
be7baf80 106
92767af0
IM
107static __always_inline unsigned long long __native_read_tsc(void)
108{
109 DECLARE_ARGS(val, low, high);
110
92767af0 111 asm volatile("rdtsc" : EAX_EDX_RET(val, low, high));
92767af0
IM
112
113 return EAX_EDX_VAL(val, low, high);
114}
115
b8d1fae7 116static inline unsigned long long native_read_pmc(int counter)
be7baf80 117{
c210d249
GOC
118 DECLARE_ARGS(val, low, high);
119
120 asm volatile("rdpmc" : EAX_EDX_RET(val, low, high) : "c" (counter));
121 return EAX_EDX_VAL(val, low, high);
be7baf80
TG
122}
123
124#ifdef CONFIG_PARAVIRT
125#include <asm/paravirt.h>
96a388de 126#else
be7baf80
TG
127#include <linux/errno.h>
128/*
129 * Access to machine-specific registers (available on 586 and better only)
130 * Note: the rd* operations modify the parameters directly (without using
131 * pointer indirection), this allows gcc to optimize better
132 */
133
abb0ade0
JP
134#define rdmsr(msr, val1, val2) \
135do { \
136 u64 __val = native_read_msr((msr)); \
137 (val1) = (u32)__val; \
138 (val2) = (u32)(__val >> 32); \
139} while (0)
be7baf80 140
c9dcda5c 141static inline void wrmsr(unsigned msr, unsigned low, unsigned high)
be7baf80 142{
c9dcda5c 143 native_write_msr(msr, low, high);
be7baf80
TG
144}
145
abb0ade0
JP
146#define rdmsrl(msr, val) \
147 ((val) = native_read_msr((msr)))
be7baf80 148
c210d249 149#define wrmsrl(msr, val) \
abb0ade0 150 native_write_msr((msr), (u32)((u64)(val)), (u32)((u64)(val) >> 32))
be7baf80
TG
151
152/* wrmsr with exception handling */
c9dcda5c 153static inline int wrmsr_safe(unsigned msr, unsigned low, unsigned high)
be7baf80 154{
c9dcda5c 155 return native_write_msr_safe(msr, low, high);
be7baf80
TG
156}
157
158/* rdmsr with exception handling */
abb0ade0
JP
159#define rdmsr_safe(msr, p1, p2) \
160({ \
161 int __err; \
162 u64 __val = native_read_msr_safe((msr), &__err); \
163 (*p1) = (u32)__val; \
164 (*p2) = (u32)(__val >> 32); \
165 __err; \
166})
be7baf80 167
1de87bd4
AK
168static inline int rdmsrl_safe(unsigned msr, unsigned long long *p)
169{
170 int err;
171
172 *p = native_read_msr_safe(msr, &err);
173 return err;
174}
b05f78f5
YL
175static inline int rdmsrl_amd_safe(unsigned msr, unsigned long long *p)
176{
177 int err;
178
179 *p = native_read_msr_amd_safe(msr, &err);
180 return err;
181}
1de87bd4 182
be7baf80
TG
183#define rdtscl(low) \
184 ((low) = (u32)native_read_tsc())
185
186#define rdtscll(val) \
187 ((val) = native_read_tsc())
188
abb0ade0
JP
189#define rdpmc(counter, low, high) \
190do { \
191 u64 _l = native_read_pmc((counter)); \
192 (low) = (u32)_l; \
193 (high) = (u32)(_l >> 32); \
194} while (0)
be7baf80 195
abb0ade0
JP
196#define rdtscp(low, high, aux) \
197do { \
198 unsigned long long _val = native_read_tscp(&(aux)); \
199 (low) = (u32)_val; \
200 (high) = (u32)(_val >> 32); \
201} while (0)
be7baf80 202
c210d249 203#define rdtscpll(val, aux) (val) = native_read_tscp(&(aux))
be7baf80 204
c210d249 205#endif /* !CONFIG_PARAVIRT */
be7baf80 206
be7baf80 207
abb0ade0
JP
208#define checking_wrmsrl(msr, val) wrmsr_safe((msr), (u32)(val), \
209 (u32)((val) >> 32))
be7baf80 210
abb0ade0 211#define write_tsc(val1, val2) wrmsr(0x10, (val1), (val2))
be7baf80 212
abb0ade0 213#define write_rdtscp_aux(val) wrmsr(0xc0000103, (val), 0)
be7baf80 214
be7baf80 215#ifdef CONFIG_SMP
c6f31932
PA
216int rdmsr_on_cpu(unsigned int cpu, u32 msr_no, u32 *l, u32 *h);
217int wrmsr_on_cpu(unsigned int cpu, u32 msr_no, u32 l, u32 h);
be7baf80
TG
218int rdmsr_safe_on_cpu(unsigned int cpu, u32 msr_no, u32 *l, u32 *h);
219int wrmsr_safe_on_cpu(unsigned int cpu, u32 msr_no, u32 l, u32 h);
220#else /* CONFIG_SMP */
c6f31932 221static inline int rdmsr_on_cpu(unsigned int cpu, u32 msr_no, u32 *l, u32 *h)
be7baf80
TG
222{
223 rdmsr(msr_no, *l, *h);
c6f31932 224 return 0;
be7baf80 225}
c6f31932 226static inline int wrmsr_on_cpu(unsigned int cpu, u32 msr_no, u32 l, u32 h)
be7baf80
TG
227{
228 wrmsr(msr_no, l, h);
c6f31932 229 return 0;
be7baf80 230}
abb0ade0
JP
231static inline int rdmsr_safe_on_cpu(unsigned int cpu, u32 msr_no,
232 u32 *l, u32 *h)
be7baf80
TG
233{
234 return rdmsr_safe(msr_no, l, h);
235}
236static inline int wrmsr_safe_on_cpu(unsigned int cpu, u32 msr_no, u32 l, u32 h)
237{
238 return wrmsr_safe(msr_no, l, h);
239}
240#endif /* CONFIG_SMP */
751de83c 241#endif /* __ASSEMBLY__ */
c210d249
GOC
242#endif /* __KERNEL__ */
243
be7baf80 244
1965aae3 245#endif /* _ASM_X86_MSR_H */
This page took 0.234983 seconds and 5 git commands to generate.