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