msr.h 8.7 KB
Newer Older
H
H. Peter Anvin 已提交
1 2
#ifndef _ASM_X86_MSR_H
#define _ASM_X86_MSR_H
T
Thomas Gleixner 已提交
3

4
#include "msr-index.h"
T
Thomas Gleixner 已提交
5

6
#ifndef __ASSEMBLY__
7 8 9

#include <asm/asm.h>
#include <asm/errno.h>
10
#include <asm/cpumask.h>
11
#include <uapi/asm/msr.h>
12 13 14 15 16 17 18 19 20 21

struct msr {
	union {
		struct {
			u32 l;
			u32 h;
		};
		u64 q;
	};
};
22

23 24 25 26 27 28 29 30 31 32 33 34
struct msr_info {
	u32 msr_no;
	struct msr reg;
	struct msr *msrs;
	int err;
};

struct msr_regs_info {
	u32 *regs;
	int err;
};

A
Andrew Morton 已提交
35
static inline unsigned long long native_read_tscp(unsigned int *aux)
36 37
{
	unsigned long low, high;
38 39
	asm volatile(".byte 0x0f,0x01,0xf9"
		     : "=a" (low), "=d" (high), "=c" (*aux));
40
	return low | ((u64)high << 32);
41 42
}

43
/*
44 45 46 47
 * both i386 and x86_64 returns 64-bit value in edx:eax, but gcc's "A"
 * constraint has different meanings. For i386, "A" means exactly
 * edx:eax, while for x86_64 it doesn't mean rdx:rax or edx:eax. Instead,
 * it means rax *or* rdx.
48 49
 */
#ifdef CONFIG_X86_64
50 51 52
/* Using 64-bit values saves one instruction clearing the high half of low */
#define DECLARE_ARGS(val, low, high)	unsigned long low, high
#define EAX_EDX_VAL(val, low, high)	((low) | (high) << 32)
53 54 55 56 57
#define EAX_EDX_RET(val, low, high)	"=a" (low), "=d" (high)
#else
#define DECLARE_ARGS(val, low, high)	unsigned long long val
#define EAX_EDX_VAL(val, low, high)	(val)
#define EAX_EDX_RET(val, low, high)	"=A" (val)
58 59
#endif

T
Thomas Gleixner 已提交
60 61
static inline unsigned long long native_read_msr(unsigned int msr)
{
62
	DECLARE_ARGS(val, low, high);
T
Thomas Gleixner 已提交
63

64 65
	asm volatile("rdmsr" : EAX_EDX_RET(val, low, high) : "c" (msr));
	return EAX_EDX_VAL(val, low, high);
T
Thomas Gleixner 已提交
66 67 68 69 70
}

static inline unsigned long long native_read_msr_safe(unsigned int msr,
						      int *err)
{
71
	DECLARE_ARGS(val, low, high);
T
Thomas Gleixner 已提交
72

73
	asm volatile("2: rdmsr ; xor %[err],%[err]\n"
T
Thomas Gleixner 已提交
74 75
		     "1:\n\t"
		     ".section .fixup,\"ax\"\n\t"
76
		     "3:  mov %[fault],%[err] ; jmp 1b\n\t"
T
Thomas Gleixner 已提交
77
		     ".previous\n\t"
78
		     _ASM_EXTABLE(2b, 3b)
79
		     : [err] "=r" (*err), EAX_EDX_RET(val, low, high)
80
		     : "c" (msr), [fault] "i" (-EIO));
81
	return EAX_EDX_VAL(val, low, high);
T
Thomas Gleixner 已提交
82 83
}

84 85
static inline void native_write_msr(unsigned int msr,
				    unsigned low, unsigned high)
T
Thomas Gleixner 已提交
86
{
87
	asm volatile("wrmsr" : : "c" (msr), "a"(low), "d" (high) : "memory");
T
Thomas Gleixner 已提交
88 89
}

90 91
/* Can be uninlined because referenced by paravirt */
notrace static inline int native_write_msr_safe(unsigned int msr,
92
					unsigned low, unsigned high)
T
Thomas Gleixner 已提交
93 94
{
	int err;
95
	asm volatile("2: wrmsr ; xor %[err],%[err]\n"
T
Thomas Gleixner 已提交
96 97
		     "1:\n\t"
		     ".section .fixup,\"ax\"\n\t"
98
		     "3:  mov %[fault],%[err] ; jmp 1b\n\t"
T
Thomas Gleixner 已提交
99
		     ".previous\n\t"
100
		     _ASM_EXTABLE(2b, 3b)
101
		     : [err] "=a" (err)
102
		     : "c" (msr), "0" (low), "d" (high),
103
		       [fault] "i" (-EIO)
104
		     : "memory");
T
Thomas Gleixner 已提交
105 106 107
	return err;
}

108 109
extern int rdmsr_safe_regs(u32 regs[8]);
extern int wrmsr_safe_regs(u32 regs[8]);
110

111 112 113 114 115 116 117 118 119 120
/**
 * rdtsc() - returns the current TSC without ordering constraints
 *
 * rdtsc() returns the result of RDTSC as a 64-bit integer.  The
 * only ordering constraint it supplies is the ordering implied by
 * "asm volatile": it will put the RDTSC in the place you expect.  The
 * CPU can and will speculatively execute that RDTSC, though, so the
 * results can be non-monotonic if compared on different CPUs.
 */
static __always_inline unsigned long long rdtsc(void)
I
Ingo Molnar 已提交
121 122 123 124 125 126 127 128
{
	DECLARE_ARGS(val, low, high);

	asm volatile("rdtsc" : EAX_EDX_RET(val, low, high));

	return EAX_EDX_VAL(val, low, high);
}

129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154
/**
 * rdtsc_ordered() - read the current TSC in program order
 *
 * rdtsc_ordered() returns the result of RDTSC as a 64-bit integer.
 * It is ordered like a load to a global in-memory counter.  It should
 * be impossible to observe non-monotonic rdtsc_unordered() behavior
 * across multiple CPUs as long as the TSC is synced.
 */
static __always_inline unsigned long long rdtsc_ordered(void)
{
	/*
	 * The RDTSC instruction is not ordered relative to memory
	 * access.  The Intel SDM and the AMD APM are both vague on this
	 * point, but empirically an RDTSC instruction can be
	 * speculatively executed before prior loads.  An RDTSC
	 * immediately after an appropriate barrier appears to be
	 * ordered as a normal load, that is, it provides the same
	 * ordering guarantees as reading from a global memory location
	 * that some other imaginary CPU is updating continuously with a
	 * time stamp.
	 */
	alternative_2("", "mfence", X86_FEATURE_MFENCE_RDTSC,
			  "lfence", X86_FEATURE_LFENCE_RDTSC);
	return rdtsc();
}

155 156 157
/* Deprecated, keep it for a cycle for easier merging: */
#define rdtscll(now)	do { (now) = rdtsc_ordered(); } while (0)

158
static inline unsigned long long native_read_pmc(int counter)
T
Thomas Gleixner 已提交
159
{
160 161 162 163
	DECLARE_ARGS(val, low, high);

	asm volatile("rdpmc" : EAX_EDX_RET(val, low, high) : "c" (counter));
	return EAX_EDX_VAL(val, low, high);
T
Thomas Gleixner 已提交
164 165 166 167
}

#ifdef CONFIG_PARAVIRT
#include <asm/paravirt.h>
168
#else
T
Thomas Gleixner 已提交
169 170 171 172 173 174 175
#include <linux/errno.h>
/*
 * Access to machine-specific registers (available on 586 and better only)
 * Note: the rd* operations modify the parameters directly (without using
 * pointer indirection), this allows gcc to optimize better
 */

B
Borislav Petkov 已提交
176
#define rdmsr(msr, low, high)					\
177 178
do {								\
	u64 __val = native_read_msr((msr));			\
B
Borislav Petkov 已提交
179 180
	(void)((low) = (u32)__val);				\
	(void)((high) = (u32)(__val >> 32));			\
181
} while (0)
T
Thomas Gleixner 已提交
182

183
static inline void wrmsr(unsigned msr, unsigned low, unsigned high)
T
Thomas Gleixner 已提交
184
{
185
	native_write_msr(msr, low, high);
T
Thomas Gleixner 已提交
186 187
}

188 189
#define rdmsrl(msr, val)			\
	((val) = native_read_msr((msr)))
T
Thomas Gleixner 已提交
190

191 192 193 194
static inline void wrmsrl(unsigned msr, u64 val)
{
	native_write_msr(msr, (u32)val, (u32)(val >> 32));
}
T
Thomas Gleixner 已提交
195 196

/* wrmsr with exception handling */
197
static inline int wrmsr_safe(unsigned msr, unsigned low, unsigned high)
T
Thomas Gleixner 已提交
198
{
199
	return native_write_msr_safe(msr, low, high);
T
Thomas Gleixner 已提交
200 201
}

202
/* rdmsr with exception handling */
B
Borislav Petkov 已提交
203
#define rdmsr_safe(msr, low, high)				\
204 205 206
({								\
	int __err;						\
	u64 __val = native_read_msr_safe((msr), &__err);	\
B
Borislav Petkov 已提交
207 208
	(*low) = (u32)__val;					\
	(*high) = (u32)(__val >> 32);				\
209 210
	__err;							\
})
T
Thomas Gleixner 已提交
211

A
Andi Kleen 已提交
212 213 214 215 216 217 218
static inline int rdmsrl_safe(unsigned msr, unsigned long long *p)
{
	int err;

	*p = native_read_msr_safe(msr, &err);
	return err;
}
219

220 221 222 223 224 225
#define rdpmc(counter, low, high)			\
do {							\
	u64 _l = native_read_pmc((counter));		\
	(low)  = (u32)_l;				\
	(high) = (u32)(_l >> 32);			\
} while (0)
T
Thomas Gleixner 已提交
226

A
Andi Kleen 已提交
227 228
#define rdpmcl(counter, val) ((val) = native_read_pmc(counter))

229 230
#endif	/* !CONFIG_PARAVIRT */

231 232 233 234 235 236 237
/*
 * 64-bit version of wrmsr_safe():
 */
static inline int wrmsrl_safe(u32 msr, u64 val)
{
	return wrmsr_safe(msr, (u32)val,  (u32)(val >> 32));
}
T
Thomas Gleixner 已提交
238

B
Borislav Petkov 已提交
239
#define write_tsc(low, high) wrmsr(MSR_IA32_TSC, (low), (high))
T
Thomas Gleixner 已提交
240

S
Sheng Yang 已提交
241
#define write_rdtscp_aux(val) wrmsr(MSR_TSC_AUX, (val), 0)
T
Thomas Gleixner 已提交
242

243 244
struct msr *msrs_alloc(void);
void msrs_free(struct msr *msrs);
245 246
int msr_set_bit(u32 msr, u8 bit);
int msr_clear_bit(u32 msr, u8 bit);
247

T
Thomas Gleixner 已提交
248
#ifdef CONFIG_SMP
249 250
int rdmsr_on_cpu(unsigned int cpu, u32 msr_no, u32 *l, u32 *h);
int wrmsr_on_cpu(unsigned int cpu, u32 msr_no, u32 l, u32 h);
251 252
int rdmsrl_on_cpu(unsigned int cpu, u32 msr_no, u64 *q);
int wrmsrl_on_cpu(unsigned int cpu, u32 msr_no, u64 q);
253 254
void rdmsr_on_cpus(const struct cpumask *mask, u32 msr_no, struct msr *msrs);
void wrmsr_on_cpus(const struct cpumask *mask, u32 msr_no, struct msr *msrs);
T
Thomas Gleixner 已提交
255 256
int rdmsr_safe_on_cpu(unsigned int cpu, u32 msr_no, u32 *l, u32 *h);
int wrmsr_safe_on_cpu(unsigned int cpu, u32 msr_no, u32 l, u32 h);
257 258
int rdmsrl_safe_on_cpu(unsigned int cpu, u32 msr_no, u64 *q);
int wrmsrl_safe_on_cpu(unsigned int cpu, u32 msr_no, u64 q);
259 260
int rdmsr_safe_regs_on_cpu(unsigned int cpu, u32 regs[8]);
int wrmsr_safe_regs_on_cpu(unsigned int cpu, u32 regs[8]);
T
Thomas Gleixner 已提交
261
#else  /*  CONFIG_SMP  */
262
static inline int rdmsr_on_cpu(unsigned int cpu, u32 msr_no, u32 *l, u32 *h)
T
Thomas Gleixner 已提交
263 264
{
	rdmsr(msr_no, *l, *h);
265
	return 0;
T
Thomas Gleixner 已提交
266
}
267
static inline int wrmsr_on_cpu(unsigned int cpu, u32 msr_no, u32 l, u32 h)
T
Thomas Gleixner 已提交
268 269
{
	wrmsr(msr_no, l, h);
270
	return 0;
T
Thomas Gleixner 已提交
271
}
272 273 274 275 276 277 278 279 280 281
static inline int rdmsrl_on_cpu(unsigned int cpu, u32 msr_no, u64 *q)
{
	rdmsrl(msr_no, *q);
	return 0;
}
static inline int wrmsrl_on_cpu(unsigned int cpu, u32 msr_no, u64 q)
{
	wrmsrl(msr_no, q);
	return 0;
}
282
static inline void rdmsr_on_cpus(const struct cpumask *m, u32 msr_no,
283 284 285 286
				struct msr *msrs)
{
       rdmsr_on_cpu(0, msr_no, &(msrs[0].l), &(msrs[0].h));
}
287
static inline void wrmsr_on_cpus(const struct cpumask *m, u32 msr_no,
288 289 290 291
				struct msr *msrs)
{
       wrmsr_on_cpu(0, msr_no, msrs[0].l, msrs[0].h);
}
292 293
static inline int rdmsr_safe_on_cpu(unsigned int cpu, u32 msr_no,
				    u32 *l, u32 *h)
T
Thomas Gleixner 已提交
294 295 296 297 298 299 300
{
	return rdmsr_safe(msr_no, l, h);
}
static inline int wrmsr_safe_on_cpu(unsigned int cpu, u32 msr_no, u32 l, u32 h)
{
	return wrmsr_safe(msr_no, l, h);
}
301 302 303 304 305 306 307 308
static inline int rdmsrl_safe_on_cpu(unsigned int cpu, u32 msr_no, u64 *q)
{
	return rdmsrl_safe(msr_no, q);
}
static inline int wrmsrl_safe_on_cpu(unsigned int cpu, u32 msr_no, u64 q)
{
	return wrmsrl_safe(msr_no, q);
}
309 310 311 312 313 314 315 316
static inline int rdmsr_safe_regs_on_cpu(unsigned int cpu, u32 regs[8])
{
	return rdmsr_safe_regs(regs);
}
static inline int wrmsr_safe_regs_on_cpu(unsigned int cpu, u32 regs[8])
{
	return wrmsr_safe_regs(regs);
}
T
Thomas Gleixner 已提交
317
#endif  /* CONFIG_SMP */
318
#endif /* __ASSEMBLY__ */
H
H. Peter Anvin 已提交
319
#endif /* _ASM_X86_MSR_H */