blob: 3b5915d5e26a871b828677b3f92bb8914fe7ff8e [file] [log] [blame]
Graeme Russ98568f02012-12-02 04:55:11 +00001/*
2 * Taken from the linux kernel file of the same name
3 *
4 * (C) Copyright 2012
5 * Graeme Russ, <graeme.russ@gmail.com>
6 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02007 * SPDX-License-Identifier: GPL-2.0+
Graeme Russ98568f02012-12-02 04:55:11 +00008 */
9
10#ifndef _ASM_X86_MSR_H
11#define _ASM_X86_MSR_H
12
13#include <asm/msr-index.h>
14
15#ifndef __ASSEMBLY__
16
17#include <linux/types.h>
18#include <linux/ioctl.h>
19
20#define X86_IOC_RDMSR_REGS _IOWR('c', 0xA0, __u32[8])
21#define X86_IOC_WRMSR_REGS _IOWR('c', 0xA1, __u32[8])
22
23#ifdef __KERNEL__
24
25#include <asm/errno.h>
26
27struct msr {
28 union {
29 struct {
30 u32 l;
31 u32 h;
32 };
33 u64 q;
34 };
35};
36
37struct msr_info {
38 u32 msr_no;
39 struct msr reg;
40 struct msr *msrs;
41 int err;
42};
43
44struct msr_regs_info {
45 u32 *regs;
46 int err;
47};
48
49static inline unsigned long long native_read_tscp(unsigned int *aux)
50{
51 unsigned long low, high;
52 asm volatile(".byte 0x0f,0x01,0xf9"
53 : "=a" (low), "=d" (high), "=c" (*aux));
54 return low | ((u64)high << 32);
55}
56
57/*
58 * both i386 and x86_64 returns 64-bit value in edx:eax, but gcc's "A"
59 * constraint has different meanings. For i386, "A" means exactly
60 * edx:eax, while for x86_64 it doesn't mean rdx:rax or edx:eax. Instead,
61 * it means rax *or* rdx.
62 */
63#ifdef CONFIG_X86_64
64#define DECLARE_ARGS(val, low, high) unsigned low, high
65#define EAX_EDX_VAL(val, low, high) ((low) | ((u64)(high) << 32))
66#define EAX_EDX_ARGS(val, low, high) "a" (low), "d" (high)
67#define EAX_EDX_RET(val, low, high) "=a" (low), "=d" (high)
68#else
69#define DECLARE_ARGS(val, low, high) unsigned long long val
70#define EAX_EDX_VAL(val, low, high) (val)
71#define EAX_EDX_ARGS(val, low, high) "A" (val)
72#define EAX_EDX_RET(val, low, high) "=A" (val)
73#endif
74
Simon Glassd8819f92013-06-11 11:14:52 -070075static inline __attribute__((no_instrument_function))
76 unsigned long long native_read_msr(unsigned int msr)
Graeme Russ98568f02012-12-02 04:55:11 +000077{
78 DECLARE_ARGS(val, low, high);
79
80 asm volatile("rdmsr" : EAX_EDX_RET(val, low, high) : "c" (msr));
81 return EAX_EDX_VAL(val, low, high);
82}
83
84static inline void native_write_msr(unsigned int msr,
85 unsigned low, unsigned high)
86{
87 asm volatile("wrmsr" : : "c" (msr), "a"(low), "d" (high) : "memory");
88}
89
90extern unsigned long long native_read_tsc(void);
91
92extern int native_rdmsr_safe_regs(u32 regs[8]);
93extern int native_wrmsr_safe_regs(u32 regs[8]);
94
95static inline unsigned long long native_read_pmc(int counter)
96{
97 DECLARE_ARGS(val, low, high);
98
99 asm volatile("rdpmc" : EAX_EDX_RET(val, low, high) : "c" (counter));
100 return EAX_EDX_VAL(val, low, high);
101}
102
103#ifdef CONFIG_PARAVIRT
104#include <asm/paravirt.h>
105#else
106#include <errno.h>
107/*
108 * Access to machine-specific registers (available on 586 and better only)
109 * Note: the rd* operations modify the parameters directly (without using
110 * pointer indirection), this allows gcc to optimize better
111 */
112
113#define rdmsr(msr, val1, val2) \
114do { \
115 u64 __val = native_read_msr((msr)); \
116 (void)((val1) = (u32)__val); \
117 (void)((val2) = (u32)(__val >> 32)); \
118} while (0)
119
120static inline void wrmsr(unsigned msr, unsigned low, unsigned high)
121{
122 native_write_msr(msr, low, high);
123}
124
125#define rdmsrl(msr, val) \
126 ((val) = native_read_msr((msr)))
127
128#define wrmsrl(msr, val) \
129 native_write_msr((msr), (u32)((u64)(val)), (u32)((u64)(val) >> 32))
130
131/* rdmsr with exception handling */
132#define rdmsr_safe(msr, p1, p2) \
133({ \
134 int __err; \
135 u64 __val = native_read_msr_safe((msr), &__err); \
136 (*p1) = (u32)__val; \
137 (*p2) = (u32)(__val >> 32); \
138 __err; \
139})
140
141static inline int rdmsrl_amd_safe(unsigned msr, unsigned long long *p)
142{
143 u32 gprs[8] = { 0 };
144 int err;
145
146 gprs[1] = msr;
147 gprs[7] = 0x9c5a203a;
148
149 err = native_rdmsr_safe_regs(gprs);
150
151 *p = gprs[0] | ((u64)gprs[2] << 32);
152
153 return err;
154}
155
156static inline int wrmsrl_amd_safe(unsigned msr, unsigned long long val)
157{
158 u32 gprs[8] = { 0 };
159
160 gprs[0] = (u32)val;
161 gprs[1] = msr;
162 gprs[2] = val >> 32;
163 gprs[7] = 0x9c5a203a;
164
165 return native_wrmsr_safe_regs(gprs);
166}
167
168static inline int rdmsr_safe_regs(u32 regs[8])
169{
170 return native_rdmsr_safe_regs(regs);
171}
172
173static inline int wrmsr_safe_regs(u32 regs[8])
174{
175 return native_wrmsr_safe_regs(regs);
176}
177
178#define rdtscl(low) \
179 ((low) = (u32)__native_read_tsc())
180
181#define rdtscll(val) \
182 ((val) = __native_read_tsc())
183
184#define rdpmc(counter, low, high) \
185do { \
186 u64 _l = native_read_pmc((counter)); \
187 (low) = (u32)_l; \
188 (high) = (u32)(_l >> 32); \
189} while (0)
190
191#define rdtscp(low, high, aux) \
192do { \
193 unsigned long long _val = native_read_tscp(&(aux)); \
194 (low) = (u32)_val; \
195 (high) = (u32)(_val >> 32); \
196} while (0)
197
198#define rdtscpll(val, aux) (val) = native_read_tscp(&(aux))
199
200#endif /* !CONFIG_PARAVIRT */
201
202
203#define checking_wrmsrl(msr, val) wrmsr_safe((msr), (u32)(val), \
204 (u32)((val) >> 32))
205
206#define write_tsc(val1, val2) wrmsr(MSR_IA32_TSC, (val1), (val2))
207
208#define write_rdtscp_aux(val) wrmsr(MSR_TSC_AUX, (val), 0)
209
210struct msr *msrs_alloc(void);
211void msrs_free(struct msr *msrs);
212
213#ifdef CONFIG_SMP
214int rdmsr_on_cpu(unsigned int cpu, u32 msr_no, u32 *l, u32 *h);
215int wrmsr_on_cpu(unsigned int cpu, u32 msr_no, u32 l, u32 h);
216void rdmsr_on_cpus(const struct cpumask *mask, u32 msr_no, struct msr *msrs);
217void wrmsr_on_cpus(const struct cpumask *mask, u32 msr_no, struct msr *msrs);
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);
220int rdmsr_safe_regs_on_cpu(unsigned int cpu, u32 regs[8]);
221int wrmsr_safe_regs_on_cpu(unsigned int cpu, u32 regs[8]);
222
223#endif /* CONFIG_SMP */
224#endif /* __KERNEL__ */
225#endif /* __ASSEMBLY__ */
226#endif /* _ASM_X86_MSR_H */