]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - arch/x86/include/asm/msr.h
x86/paravirt: Add _safe to the read_ms()r and write_msr() PV callbacks
[mirror_ubuntu-artful-kernel.git] / arch / x86 / include / asm / msr.h
CommitLineData
1965aae3
PA
1#ifndef _ASM_X86_MSR_H
2#define _ASM_X86_MSR_H
be7baf80 3
b72e7464 4#include "msr-index.h"
be7baf80 5
8f12dea6 6#ifndef __ASSEMBLY__
c210d249
GOC
7
8#include <asm/asm.h>
9#include <asm/errno.h>
6bc1096d 10#include <asm/cpumask.h>
b72e7464 11#include <uapi/asm/msr.h>
6bc1096d
BP
12
13struct msr {
14 union {
15 struct {
16 u32 l;
17 u32 h;
18 };
19 u64 q;
20 };
21};
c210d249 22
6ede31e0
BP
23struct msr_info {
24 u32 msr_no;
25 struct msr reg;
26 struct msr *msrs;
27 int err;
28};
29
30struct msr_regs_info {
31 u32 *regs;
32 int err;
33};
34
7a9c2dd0
CY
35struct saved_msr {
36 bool valid;
37 struct msr_info info;
38};
39
40struct saved_msrs {
41 unsigned int num;
42 struct saved_msr *array;
43};
44
c210d249 45/*
d4f1b103
JS
46 * both i386 and x86_64 returns 64-bit value in edx:eax, but gcc's "A"
47 * constraint has different meanings. For i386, "A" means exactly
48 * edx:eax, while for x86_64 it doesn't mean rdx:rax or edx:eax. Instead,
49 * it means rax *or* rdx.
c210d249
GOC
50 */
51#ifdef CONFIG_X86_64
5a33fcb8
GS
52/* Using 64-bit values saves one instruction clearing the high half of low */
53#define DECLARE_ARGS(val, low, high) unsigned long low, high
54#define EAX_EDX_VAL(val, low, high) ((low) | (high) << 32)
c210d249
GOC
55#define EAX_EDX_RET(val, low, high) "=a" (low), "=d" (high)
56#else
57#define DECLARE_ARGS(val, low, high) unsigned long long val
58#define EAX_EDX_VAL(val, low, high) (val)
c210d249 59#define EAX_EDX_RET(val, low, high) "=A" (val)
8f12dea6
GOC
60#endif
61
7f47d8cc
AK
62#ifdef CONFIG_TRACEPOINTS
63/*
64 * Be very careful with includes. This header is prone to include loops.
65 */
66#include <asm/atomic.h>
67#include <linux/tracepoint-defs.h>
68
69extern struct tracepoint __tracepoint_read_msr;
70extern struct tracepoint __tracepoint_write_msr;
71extern struct tracepoint __tracepoint_rdpmc;
72#define msr_tracepoint_active(t) static_key_false(&(t).key)
73extern void do_trace_write_msr(unsigned msr, u64 val, int failed);
74extern void do_trace_read_msr(unsigned msr, u64 val, int failed);
75extern void do_trace_rdpmc(unsigned msr, u64 val, int failed);
76#else
77#define msr_tracepoint_active(t) false
78static inline void do_trace_write_msr(unsigned msr, u64 val, int failed) {}
79static inline void do_trace_read_msr(unsigned msr, u64 val, int failed) {}
80static inline void do_trace_rdpmc(unsigned msr, u64 val, int failed) {}
81#endif
82
be7baf80
TG
83static inline unsigned long long native_read_msr(unsigned int msr)
84{
c210d249 85 DECLARE_ARGS(val, low, high);
be7baf80 86
c210d249 87 asm volatile("rdmsr" : EAX_EDX_RET(val, low, high) : "c" (msr));
7f47d8cc
AK
88 if (msr_tracepoint_active(__tracepoint_read_msr))
89 do_trace_read_msr(msr, EAX_EDX_VAL(val, low, high), 0);
c210d249 90 return EAX_EDX_VAL(val, low, high);
be7baf80
TG
91}
92
93static inline unsigned long long native_read_msr_safe(unsigned int msr,
94 int *err)
95{
c210d249 96 DECLARE_ARGS(val, low, high);
be7baf80 97
08970fc4 98 asm volatile("2: rdmsr ; xor %[err],%[err]\n"
be7baf80
TG
99 "1:\n\t"
100 ".section .fixup,\"ax\"\n\t"
08970fc4 101 "3: mov %[fault],%[err] ; jmp 1b\n\t"
be7baf80 102 ".previous\n\t"
abb0ade0 103 _ASM_EXTABLE(2b, 3b)
08970fc4 104 : [err] "=r" (*err), EAX_EDX_RET(val, low, high)
0cc0213e 105 : "c" (msr), [fault] "i" (-EIO));
7f47d8cc
AK
106 if (msr_tracepoint_active(__tracepoint_read_msr))
107 do_trace_read_msr(msr, EAX_EDX_VAL(val, low, high), *err);
c210d249 108 return EAX_EDX_VAL(val, low, high);
be7baf80
TG
109}
110
c9dcda5c
GOC
111static inline void native_write_msr(unsigned int msr,
112 unsigned low, unsigned high)
be7baf80 113{
af2b1c60 114 asm volatile("wrmsr" : : "c" (msr), "a"(low), "d" (high) : "memory");
7f47d8cc
AK
115 if (msr_tracepoint_active(__tracepoint_read_msr))
116 do_trace_write_msr(msr, ((u64)high << 32 | low), 0);
be7baf80
TG
117}
118
0ca59dd9
FW
119/* Can be uninlined because referenced by paravirt */
120notrace static inline int native_write_msr_safe(unsigned int msr,
c9dcda5c 121 unsigned low, unsigned high)
be7baf80
TG
122{
123 int err;
08970fc4 124 asm volatile("2: wrmsr ; xor %[err],%[err]\n"
be7baf80
TG
125 "1:\n\t"
126 ".section .fixup,\"ax\"\n\t"
08970fc4 127 "3: mov %[fault],%[err] ; jmp 1b\n\t"
be7baf80 128 ".previous\n\t"
abb0ade0 129 _ASM_EXTABLE(2b, 3b)
08970fc4 130 : [err] "=a" (err)
c9dcda5c 131 : "c" (msr), "0" (low), "d" (high),
0cc0213e 132 [fault] "i" (-EIO)
af2b1c60 133 : "memory");
7f47d8cc
AK
134 if (msr_tracepoint_active(__tracepoint_read_msr))
135 do_trace_write_msr(msr, ((u64)high << 32 | low), err);
be7baf80
TG
136 return err;
137}
138
1f975f78
AP
139extern int rdmsr_safe_regs(u32 regs[8]);
140extern int wrmsr_safe_regs(u32 regs[8]);
132ec92f 141
4ea1636b
AL
142/**
143 * rdtsc() - returns the current TSC without ordering constraints
144 *
145 * rdtsc() returns the result of RDTSC as a 64-bit integer. The
146 * only ordering constraint it supplies is the ordering implied by
147 * "asm volatile": it will put the RDTSC in the place you expect. The
148 * CPU can and will speculatively execute that RDTSC, though, so the
149 * results can be non-monotonic if compared on different CPUs.
150 */
151static __always_inline unsigned long long rdtsc(void)
92767af0
IM
152{
153 DECLARE_ARGS(val, low, high);
154
92767af0 155 asm volatile("rdtsc" : EAX_EDX_RET(val, low, high));
92767af0
IM
156
157 return EAX_EDX_VAL(val, low, high);
158}
159
03b9730b
AL
160/**
161 * rdtsc_ordered() - read the current TSC in program order
162 *
163 * rdtsc_ordered() returns the result of RDTSC as a 64-bit integer.
164 * It is ordered like a load to a global in-memory counter. It should
165 * be impossible to observe non-monotonic rdtsc_unordered() behavior
166 * across multiple CPUs as long as the TSC is synced.
167 */
168static __always_inline unsigned long long rdtsc_ordered(void)
169{
170 /*
171 * The RDTSC instruction is not ordered relative to memory
172 * access. The Intel SDM and the AMD APM are both vague on this
173 * point, but empirically an RDTSC instruction can be
174 * speculatively executed before prior loads. An RDTSC
175 * immediately after an appropriate barrier appears to be
176 * ordered as a normal load, that is, it provides the same
177 * ordering guarantees as reading from a global memory location
178 * that some other imaginary CPU is updating continuously with a
179 * time stamp.
180 */
181 alternative_2("", "mfence", X86_FEATURE_MFENCE_RDTSC,
182 "lfence", X86_FEATURE_LFENCE_RDTSC);
183 return rdtsc();
184}
185
99770737
IM
186/* Deprecated, keep it for a cycle for easier merging: */
187#define rdtscll(now) do { (now) = rdtsc_ordered(); } while (0)
188
b8d1fae7 189static inline unsigned long long native_read_pmc(int counter)
be7baf80 190{
c210d249
GOC
191 DECLARE_ARGS(val, low, high);
192
193 asm volatile("rdpmc" : EAX_EDX_RET(val, low, high) : "c" (counter));
7f47d8cc
AK
194 if (msr_tracepoint_active(__tracepoint_rdpmc))
195 do_trace_rdpmc(counter, EAX_EDX_VAL(val, low, high), 0);
c210d249 196 return EAX_EDX_VAL(val, low, high);
be7baf80
TG
197}
198
199#ifdef CONFIG_PARAVIRT
200#include <asm/paravirt.h>
96a388de 201#else
be7baf80
TG
202#include <linux/errno.h>
203/*
204 * Access to machine-specific registers (available on 586 and better only)
205 * Note: the rd* operations modify the parameters directly (without using
206 * pointer indirection), this allows gcc to optimize better
207 */
208
1423bed2 209#define rdmsr(msr, low, high) \
abb0ade0
JP
210do { \
211 u64 __val = native_read_msr((msr)); \
1423bed2
BP
212 (void)((low) = (u32)__val); \
213 (void)((high) = (u32)(__val >> 32)); \
abb0ade0 214} while (0)
be7baf80 215
c9dcda5c 216static inline void wrmsr(unsigned msr, unsigned low, unsigned high)
be7baf80 217{
c9dcda5c 218 native_write_msr(msr, low, high);
be7baf80
TG
219}
220
abb0ade0
JP
221#define rdmsrl(msr, val) \
222 ((val) = native_read_msr((msr)))
be7baf80 223
47edb651
AL
224static inline void wrmsrl(unsigned msr, u64 val)
225{
679bcea8 226 native_write_msr(msr, (u32)(val & 0xffffffffULL), (u32)(val >> 32));
47edb651 227}
be7baf80
TG
228
229/* wrmsr with exception handling */
c9dcda5c 230static inline int wrmsr_safe(unsigned msr, unsigned low, unsigned high)
be7baf80 231{
c9dcda5c 232 return native_write_msr_safe(msr, low, high);
be7baf80
TG
233}
234
060feb65 235/* rdmsr with exception handling */
1423bed2 236#define rdmsr_safe(msr, low, high) \
abb0ade0
JP
237({ \
238 int __err; \
239 u64 __val = native_read_msr_safe((msr), &__err); \
1423bed2
BP
240 (*low) = (u32)__val; \
241 (*high) = (u32)(__val >> 32); \
abb0ade0
JP
242 __err; \
243})
be7baf80 244
1de87bd4
AK
245static inline int rdmsrl_safe(unsigned msr, unsigned long long *p)
246{
247 int err;
248
249 *p = native_read_msr_safe(msr, &err);
250 return err;
251}
177fed1e 252
abb0ade0
JP
253#define rdpmc(counter, low, high) \
254do { \
255 u64 _l = native_read_pmc((counter)); \
256 (low) = (u32)_l; \
257 (high) = (u32)(_l >> 32); \
258} while (0)
be7baf80 259
1ff4d58a
AK
260#define rdpmcl(counter, val) ((val) = native_read_pmc(counter))
261
9261e050
AL
262#endif /* !CONFIG_PARAVIRT */
263
cf991de2
AL
264/*
265 * 64-bit version of wrmsr_safe():
266 */
267static inline int wrmsrl_safe(u32 msr, u64 val)
268{
269 return wrmsr_safe(msr, (u32)val, (u32)(val >> 32));
270}
be7baf80 271
1423bed2 272#define write_tsc(low, high) wrmsr(MSR_IA32_TSC, (low), (high))
be7baf80 273
5df97400 274#define write_rdtscp_aux(val) wrmsr(MSR_TSC_AUX, (val), 0)
be7baf80 275
50542251
BP
276struct msr *msrs_alloc(void);
277void msrs_free(struct msr *msrs);
22085a66
BP
278int msr_set_bit(u32 msr, u8 bit);
279int msr_clear_bit(u32 msr, u8 bit);
50542251 280
be7baf80 281#ifdef CONFIG_SMP
c6f31932
PA
282int rdmsr_on_cpu(unsigned int cpu, u32 msr_no, u32 *l, u32 *h);
283int wrmsr_on_cpu(unsigned int cpu, u32 msr_no, u32 l, u32 h);
1a6b991a
JP
284int rdmsrl_on_cpu(unsigned int cpu, u32 msr_no, u64 *q);
285int wrmsrl_on_cpu(unsigned int cpu, u32 msr_no, u64 q);
b8a47541
BP
286void rdmsr_on_cpus(const struct cpumask *mask, u32 msr_no, struct msr *msrs);
287void wrmsr_on_cpus(const struct cpumask *mask, u32 msr_no, struct msr *msrs);
be7baf80
TG
288int rdmsr_safe_on_cpu(unsigned int cpu, u32 msr_no, u32 *l, u32 *h);
289int wrmsr_safe_on_cpu(unsigned int cpu, u32 msr_no, u32 l, u32 h);
1a6b991a
JP
290int rdmsrl_safe_on_cpu(unsigned int cpu, u32 msr_no, u64 *q);
291int wrmsrl_safe_on_cpu(unsigned int cpu, u32 msr_no, u64 q);
8b956bf1
PA
292int rdmsr_safe_regs_on_cpu(unsigned int cpu, u32 regs[8]);
293int wrmsr_safe_regs_on_cpu(unsigned int cpu, u32 regs[8]);
be7baf80 294#else /* CONFIG_SMP */
c6f31932 295static inline int rdmsr_on_cpu(unsigned int cpu, u32 msr_no, u32 *l, u32 *h)
be7baf80
TG
296{
297 rdmsr(msr_no, *l, *h);
c6f31932 298 return 0;
be7baf80 299}
c6f31932 300static inline int wrmsr_on_cpu(unsigned int cpu, u32 msr_no, u32 l, u32 h)
be7baf80
TG
301{
302 wrmsr(msr_no, l, h);
c6f31932 303 return 0;
be7baf80 304}
1a6b991a
JP
305static inline int rdmsrl_on_cpu(unsigned int cpu, u32 msr_no, u64 *q)
306{
307 rdmsrl(msr_no, *q);
308 return 0;
309}
310static inline int wrmsrl_on_cpu(unsigned int cpu, u32 msr_no, u64 q)
311{
312 wrmsrl(msr_no, q);
313 return 0;
314}
0d0fbbdd 315static inline void rdmsr_on_cpus(const struct cpumask *m, u32 msr_no,
b034c19f
BP
316 struct msr *msrs)
317{
318 rdmsr_on_cpu(0, msr_no, &(msrs[0].l), &(msrs[0].h));
319}
0d0fbbdd 320static inline void wrmsr_on_cpus(const struct cpumask *m, u32 msr_no,
b034c19f
BP
321 struct msr *msrs)
322{
323 wrmsr_on_cpu(0, msr_no, msrs[0].l, msrs[0].h);
324}
abb0ade0
JP
325static inline int rdmsr_safe_on_cpu(unsigned int cpu, u32 msr_no,
326 u32 *l, u32 *h)
be7baf80
TG
327{
328 return rdmsr_safe(msr_no, l, h);
329}
330static inline int wrmsr_safe_on_cpu(unsigned int cpu, u32 msr_no, u32 l, u32 h)
331{
332 return wrmsr_safe(msr_no, l, h);
333}
1a6b991a
JP
334static inline int rdmsrl_safe_on_cpu(unsigned int cpu, u32 msr_no, u64 *q)
335{
336 return rdmsrl_safe(msr_no, q);
337}
338static inline int wrmsrl_safe_on_cpu(unsigned int cpu, u32 msr_no, u64 q)
339{
340 return wrmsrl_safe(msr_no, q);
341}
8b956bf1
PA
342static inline int rdmsr_safe_regs_on_cpu(unsigned int cpu, u32 regs[8])
343{
344 return rdmsr_safe_regs(regs);
345}
346static inline int wrmsr_safe_regs_on_cpu(unsigned int cpu, u32 regs[8])
347{
348 return wrmsr_safe_regs(regs);
349}
be7baf80 350#endif /* CONFIG_SMP */
ff55df53 351#endif /* __ASSEMBLY__ */
1965aae3 352#endif /* _ASM_X86_MSR_H */