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