Linux Audio

Check our new training course

Buildroot integration, development and maintenance

Need a Buildroot system for your embedded project?
Loading...
v6.13.7
  1/* SPDX-License-Identifier: GPL-2.0 */
  2#ifndef ARCH_X86_KVM_CPUID_H
  3#define ARCH_X86_KVM_CPUID_H
  4
  5#include "reverse_cpuid.h"
  6#include <asm/cpu.h>
  7#include <asm/processor.h>
  8#include <uapi/asm/kvm_para.h>
  9
 10extern u32 kvm_cpu_caps[NR_KVM_CPU_CAPS] __read_mostly;
 11void kvm_set_cpu_caps(void);
 12
 13void kvm_update_cpuid_runtime(struct kvm_vcpu *vcpu);
 14void kvm_update_pv_runtime(struct kvm_vcpu *vcpu);
 15struct kvm_cpuid_entry2 *kvm_find_cpuid_entry_index(struct kvm_vcpu *vcpu,
 16						    u32 function, u32 index);
 17struct kvm_cpuid_entry2 *kvm_find_cpuid_entry(struct kvm_vcpu *vcpu,
 18					      u32 function);
 19int kvm_dev_ioctl_get_cpuid(struct kvm_cpuid2 *cpuid,
 20			    struct kvm_cpuid_entry2 __user *entries,
 21			    unsigned int type);
 22int kvm_vcpu_ioctl_set_cpuid(struct kvm_vcpu *vcpu,
 23			     struct kvm_cpuid *cpuid,
 24			     struct kvm_cpuid_entry __user *entries);
 25int kvm_vcpu_ioctl_set_cpuid2(struct kvm_vcpu *vcpu,
 26			      struct kvm_cpuid2 *cpuid,
 27			      struct kvm_cpuid_entry2 __user *entries);
 28int kvm_vcpu_ioctl_get_cpuid2(struct kvm_vcpu *vcpu,
 29			      struct kvm_cpuid2 *cpuid,
 30			      struct kvm_cpuid_entry2 __user *entries);
 31bool kvm_cpuid(struct kvm_vcpu *vcpu, u32 *eax, u32 *ebx,
 32	       u32 *ecx, u32 *edx, bool exact_only);
 33
 34void __init kvm_init_xstate_sizes(void);
 35u32 xstate_required_size(u64 xstate_bv, bool compacted);
 36
 37int cpuid_query_maxphyaddr(struct kvm_vcpu *vcpu);
 38u64 kvm_vcpu_reserved_gpa_bits_raw(struct kvm_vcpu *vcpu);
 39
 40static inline int cpuid_maxphyaddr(struct kvm_vcpu *vcpu)
 41{
 42	return vcpu->arch.maxphyaddr;
 43}
 44
 45static inline bool kvm_vcpu_is_legal_gpa(struct kvm_vcpu *vcpu, gpa_t gpa)
 46{
 47	return !(gpa & vcpu->arch.reserved_gpa_bits);
 48}
 
 49
 50static inline bool kvm_vcpu_is_legal_aligned_gpa(struct kvm_vcpu *vcpu,
 51						 gpa_t gpa, gpa_t alignment)
 52{
 53	return IS_ALIGNED(gpa, alignment) && kvm_vcpu_is_legal_gpa(vcpu, gpa);
 54}
 
 
 
 
 
 
 
 
 
 
 
 
 
 55
 56static inline bool page_address_valid(struct kvm_vcpu *vcpu, gpa_t gpa)
 57{
 58	return kvm_vcpu_is_legal_aligned_gpa(vcpu, gpa, PAGE_SIZE);
 59}
 60
 61static __always_inline void cpuid_entry_override(struct kvm_cpuid_entry2 *entry,
 62						 unsigned int leaf)
 63{
 64	u32 *reg = cpuid_entry_get_reg(entry, leaf * 32);
 65
 66	BUILD_BUG_ON(leaf >= ARRAY_SIZE(kvm_cpu_caps));
 67	*reg = kvm_cpu_caps[leaf];
 68}
 69
 70static __always_inline u32 *guest_cpuid_get_register(struct kvm_vcpu *vcpu,
 71						     unsigned int x86_feature)
 72{
 73	const struct cpuid_reg cpuid = x86_feature_cpuid(x86_feature);
 74	struct kvm_cpuid_entry2 *entry;
 
 75
 76	entry = kvm_find_cpuid_entry_index(vcpu, cpuid.function, cpuid.index);
 77	if (!entry)
 78		return NULL;
 79
 80	return __cpuid_entry_get_reg(entry, cpuid.reg);
 
 
 
 
 
 
 
 
 
 
 
 
 81}
 82
 83static __always_inline bool guest_cpuid_has(struct kvm_vcpu *vcpu,
 84					    unsigned int x86_feature)
 85{
 86	u32 *reg;
 
 
 
 
 87
 88	reg = guest_cpuid_get_register(vcpu, x86_feature);
 89	if (!reg)
 90		return false;
 91
 92	return *reg & __feature_bit(x86_feature);
 93}
 94
 95static __always_inline void guest_cpuid_clear(struct kvm_vcpu *vcpu,
 96					      unsigned int x86_feature)
 97{
 98	u32 *reg;
 99
100	reg = guest_cpuid_get_register(vcpu, x86_feature);
101	if (reg)
102		*reg &= ~__feature_bit(x86_feature);
103}
104
105static inline bool guest_cpuid_is_amd_compatible(struct kvm_vcpu *vcpu)
106{
107	return vcpu->arch.is_amd_compatible;
108}
109
110static inline bool guest_cpuid_is_intel_compatible(struct kvm_vcpu *vcpu)
111{
112	return !guest_cpuid_is_amd_compatible(vcpu);
113}
114
115static inline int guest_cpuid_family(struct kvm_vcpu *vcpu)
116{
117	struct kvm_cpuid_entry2 *best;
118
119	best = kvm_find_cpuid_entry(vcpu, 0x1);
120	if (!best)
121		return -1;
122
123	return x86_family(best->eax);
124}
125
126static inline int guest_cpuid_model(struct kvm_vcpu *vcpu)
127{
128	struct kvm_cpuid_entry2 *best;
129
130	best = kvm_find_cpuid_entry(vcpu, 0x1);
131	if (!best)
132		return -1;
133
134	return x86_model(best->eax);
135}
136
137static inline bool cpuid_model_is_consistent(struct kvm_vcpu *vcpu)
138{
139	return boot_cpu_data.x86_model == guest_cpuid_model(vcpu);
140}
141
142static inline int guest_cpuid_stepping(struct kvm_vcpu *vcpu)
143{
144	struct kvm_cpuid_entry2 *best;
145
146	best = kvm_find_cpuid_entry(vcpu, 0x1);
147	if (!best)
148		return -1;
149
150	return x86_stepping(best->eax);
151}
152
153static inline bool guest_has_spec_ctrl_msr(struct kvm_vcpu *vcpu)
154{
155	return (guest_cpuid_has(vcpu, X86_FEATURE_SPEC_CTRL) ||
156		guest_cpuid_has(vcpu, X86_FEATURE_AMD_STIBP) ||
157		guest_cpuid_has(vcpu, X86_FEATURE_AMD_IBRS) ||
158		guest_cpuid_has(vcpu, X86_FEATURE_AMD_SSBD));
159}
160
161static inline bool guest_has_pred_cmd_msr(struct kvm_vcpu *vcpu)
162{
163	return (guest_cpuid_has(vcpu, X86_FEATURE_SPEC_CTRL) ||
164		guest_cpuid_has(vcpu, X86_FEATURE_AMD_IBPB) ||
165		guest_cpuid_has(vcpu, X86_FEATURE_SBPB));
166}
167
168static inline bool supports_cpuid_fault(struct kvm_vcpu *vcpu)
169{
170	return vcpu->arch.msr_platform_info & MSR_PLATFORM_INFO_CPUID_FAULT;
171}
172
173static inline bool cpuid_fault_enabled(struct kvm_vcpu *vcpu)
174{
175	return vcpu->arch.msr_misc_features_enables &
176		  MSR_MISC_FEATURES_ENABLES_CPUID_FAULT;
177}
178
179static __always_inline void kvm_cpu_cap_clear(unsigned int x86_feature)
180{
181	unsigned int x86_leaf = __feature_leaf(x86_feature);
182
183	reverse_cpuid_check(x86_leaf);
184	kvm_cpu_caps[x86_leaf] &= ~__feature_bit(x86_feature);
185}
186
187static __always_inline void kvm_cpu_cap_set(unsigned int x86_feature)
188{
189	unsigned int x86_leaf = __feature_leaf(x86_feature);
190
191	reverse_cpuid_check(x86_leaf);
192	kvm_cpu_caps[x86_leaf] |= __feature_bit(x86_feature);
193}
194
195static __always_inline u32 kvm_cpu_cap_get(unsigned int x86_feature)
196{
197	unsigned int x86_leaf = __feature_leaf(x86_feature);
198
199	reverse_cpuid_check(x86_leaf);
200	return kvm_cpu_caps[x86_leaf] & __feature_bit(x86_feature);
201}
202
203static __always_inline bool kvm_cpu_cap_has(unsigned int x86_feature)
204{
205	return !!kvm_cpu_cap_get(x86_feature);
206}
207
208static __always_inline void kvm_cpu_cap_check_and_set(unsigned int x86_feature)
209{
210	if (boot_cpu_has(x86_feature))
211		kvm_cpu_cap_set(x86_feature);
212}
213
214static __always_inline bool guest_pv_has(struct kvm_vcpu *vcpu,
215					 unsigned int kvm_feature)
216{
217	if (!vcpu->arch.pv_cpuid.enforce)
218		return true;
219
220	return vcpu->arch.pv_cpuid.features & (1u << kvm_feature);
221}
222
223enum kvm_governed_features {
224#define KVM_GOVERNED_FEATURE(x) KVM_GOVERNED_##x,
225#include "governed_features.h"
226	KVM_NR_GOVERNED_FEATURES
227};
228
229static __always_inline int kvm_governed_feature_index(unsigned int x86_feature)
230{
231	switch (x86_feature) {
232#define KVM_GOVERNED_FEATURE(x) case x: return KVM_GOVERNED_##x;
233#include "governed_features.h"
234	default:
235		return -1;
236	}
237}
238
239static __always_inline bool kvm_is_governed_feature(unsigned int x86_feature)
240{
241	return kvm_governed_feature_index(x86_feature) >= 0;
242}
243
244static __always_inline void kvm_governed_feature_set(struct kvm_vcpu *vcpu,
245						     unsigned int x86_feature)
246{
247	BUILD_BUG_ON(!kvm_is_governed_feature(x86_feature));
248
249	__set_bit(kvm_governed_feature_index(x86_feature),
250		  vcpu->arch.governed_features.enabled);
251}
252
253static __always_inline void kvm_governed_feature_check_and_set(struct kvm_vcpu *vcpu,
254							       unsigned int x86_feature)
255{
256	if (kvm_cpu_cap_has(x86_feature) && guest_cpuid_has(vcpu, x86_feature))
257		kvm_governed_feature_set(vcpu, x86_feature);
258}
259
260static __always_inline bool guest_can_use(struct kvm_vcpu *vcpu,
261					  unsigned int x86_feature)
262{
263	BUILD_BUG_ON(!kvm_is_governed_feature(x86_feature));
264
265	return test_bit(kvm_governed_feature_index(x86_feature),
266			vcpu->arch.governed_features.enabled);
267}
268
269static inline bool kvm_vcpu_is_legal_cr3(struct kvm_vcpu *vcpu, unsigned long cr3)
270{
271	if (guest_can_use(vcpu, X86_FEATURE_LAM))
272		cr3 &= ~(X86_CR3_LAM_U48 | X86_CR3_LAM_U57);
273
274	return kvm_vcpu_is_legal_gpa(vcpu, cr3);
275}
276
277#endif
v4.17
  1/* SPDX-License-Identifier: GPL-2.0 */
  2#ifndef ARCH_X86_KVM_CPUID_H
  3#define ARCH_X86_KVM_CPUID_H
  4
  5#include "x86.h"
  6#include <asm/cpu.h>
  7#include <asm/processor.h>
 
  8
  9int kvm_update_cpuid(struct kvm_vcpu *vcpu);
 10bool kvm_mpx_supported(void);
 
 
 
 
 
 11struct kvm_cpuid_entry2 *kvm_find_cpuid_entry(struct kvm_vcpu *vcpu,
 12					      u32 function, u32 index);
 13int kvm_dev_ioctl_get_cpuid(struct kvm_cpuid2 *cpuid,
 14			    struct kvm_cpuid_entry2 __user *entries,
 15			    unsigned int type);
 16int kvm_vcpu_ioctl_set_cpuid(struct kvm_vcpu *vcpu,
 17			     struct kvm_cpuid *cpuid,
 18			     struct kvm_cpuid_entry __user *entries);
 19int kvm_vcpu_ioctl_set_cpuid2(struct kvm_vcpu *vcpu,
 20			      struct kvm_cpuid2 *cpuid,
 21			      struct kvm_cpuid_entry2 __user *entries);
 22int kvm_vcpu_ioctl_get_cpuid2(struct kvm_vcpu *vcpu,
 23			      struct kvm_cpuid2 *cpuid,
 24			      struct kvm_cpuid_entry2 __user *entries);
 25bool kvm_cpuid(struct kvm_vcpu *vcpu, u32 *eax, u32 *ebx,
 26	       u32 *ecx, u32 *edx, bool check_limit);
 
 
 
 27
 28int cpuid_query_maxphyaddr(struct kvm_vcpu *vcpu);
 
 29
 30static inline int cpuid_maxphyaddr(struct kvm_vcpu *vcpu)
 31{
 32	return vcpu->arch.maxphyaddr;
 33}
 34
 35struct cpuid_reg {
 36	u32 function;
 37	u32 index;
 38	int reg;
 39};
 40
 41static const struct cpuid_reg reverse_cpuid[] = {
 42	[CPUID_1_EDX]         = {         1, 0, CPUID_EDX},
 43	[CPUID_8000_0001_EDX] = {0x80000001, 0, CPUID_EDX},
 44	[CPUID_8086_0001_EDX] = {0x80860001, 0, CPUID_EDX},
 45	[CPUID_1_ECX]         = {         1, 0, CPUID_ECX},
 46	[CPUID_C000_0001_EDX] = {0xc0000001, 0, CPUID_EDX},
 47	[CPUID_8000_0001_ECX] = {0x80000001, 0, CPUID_ECX},
 48	[CPUID_7_0_EBX]       = {         7, 0, CPUID_EBX},
 49	[CPUID_D_1_EAX]       = {       0xd, 1, CPUID_EAX},
 50	[CPUID_F_0_EDX]       = {       0xf, 0, CPUID_EDX},
 51	[CPUID_F_1_EDX]       = {       0xf, 1, CPUID_EDX},
 52	[CPUID_8000_0008_EBX] = {0x80000008, 0, CPUID_EBX},
 53	[CPUID_6_EAX]         = {         6, 0, CPUID_EAX},
 54	[CPUID_8000_000A_EDX] = {0x8000000a, 0, CPUID_EDX},
 55	[CPUID_7_ECX]         = {         7, 0, CPUID_ECX},
 56	[CPUID_8000_0007_EBX] = {0x80000007, 0, CPUID_EBX},
 57	[CPUID_7_EDX]         = {         7, 0, CPUID_EDX},
 58};
 59
 60static __always_inline struct cpuid_reg x86_feature_cpuid(unsigned x86_feature)
 61{
 62	unsigned x86_leaf = x86_feature / 32;
 
 63
 64	BUILD_BUG_ON(x86_leaf >= ARRAY_SIZE(reverse_cpuid));
 65	BUILD_BUG_ON(reverse_cpuid[x86_leaf].function == 0);
 
 
 66
 67	return reverse_cpuid[x86_leaf];
 
 68}
 69
 70static __always_inline int *guest_cpuid_get_register(struct kvm_vcpu *vcpu, unsigned x86_feature)
 
 71{
 
 72	struct kvm_cpuid_entry2 *entry;
 73	const struct cpuid_reg cpuid = x86_feature_cpuid(x86_feature);
 74
 75	entry = kvm_find_cpuid_entry(vcpu, cpuid.function, cpuid.index);
 76	if (!entry)
 77		return NULL;
 78
 79	switch (cpuid.reg) {
 80	case CPUID_EAX:
 81		return &entry->eax;
 82	case CPUID_EBX:
 83		return &entry->ebx;
 84	case CPUID_ECX:
 85		return &entry->ecx;
 86	case CPUID_EDX:
 87		return &entry->edx;
 88	default:
 89		BUILD_BUG();
 90		return NULL;
 91	}
 92}
 93
 94static __always_inline bool guest_cpuid_has(struct kvm_vcpu *vcpu, unsigned x86_feature)
 
 95{
 96	int *reg;
 97
 98	if (x86_feature == X86_FEATURE_XSAVE &&
 99			!static_cpu_has(X86_FEATURE_XSAVE))
100		return false;
101
102	reg = guest_cpuid_get_register(vcpu, x86_feature);
103	if (!reg)
104		return false;
105
106	return *reg & bit(x86_feature);
107}
108
109static __always_inline void guest_cpuid_clear(struct kvm_vcpu *vcpu, unsigned x86_feature)
 
110{
111	int *reg;
112
113	reg = guest_cpuid_get_register(vcpu, x86_feature);
114	if (reg)
115		*reg &= ~bit(x86_feature);
116}
117
118static inline bool guest_cpuid_is_amd(struct kvm_vcpu *vcpu)
119{
120	struct kvm_cpuid_entry2 *best;
 
121
122	best = kvm_find_cpuid_entry(vcpu, 0, 0);
123	return best && best->ebx == X86EMUL_CPUID_VENDOR_AuthenticAMD_ebx;
 
124}
125
126static inline int guest_cpuid_family(struct kvm_vcpu *vcpu)
127{
128	struct kvm_cpuid_entry2 *best;
129
130	best = kvm_find_cpuid_entry(vcpu, 0x1, 0);
131	if (!best)
132		return -1;
133
134	return x86_family(best->eax);
135}
136
137static inline int guest_cpuid_model(struct kvm_vcpu *vcpu)
138{
139	struct kvm_cpuid_entry2 *best;
140
141	best = kvm_find_cpuid_entry(vcpu, 0x1, 0);
142	if (!best)
143		return -1;
144
145	return x86_model(best->eax);
146}
147
 
 
 
 
 
148static inline int guest_cpuid_stepping(struct kvm_vcpu *vcpu)
149{
150	struct kvm_cpuid_entry2 *best;
151
152	best = kvm_find_cpuid_entry(vcpu, 0x1, 0);
153	if (!best)
154		return -1;
155
156	return x86_stepping(best->eax);
157}
158
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
159static inline bool supports_cpuid_fault(struct kvm_vcpu *vcpu)
160{
161	return vcpu->arch.msr_platform_info & MSR_PLATFORM_INFO_CPUID_FAULT;
162}
163
164static inline bool cpuid_fault_enabled(struct kvm_vcpu *vcpu)
165{
166	return vcpu->arch.msr_misc_features_enables &
167		  MSR_MISC_FEATURES_ENABLES_CPUID_FAULT;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
168}
169
170#endif