blob: 0f727b50bd3d2dcabbcf3d661b9b6aefe02e924a [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Avi Kivity26eef702008-07-03 14:59:22 +03002#ifndef ARCH_X86_KVM_X86_H
3#define ARCH_X86_KVM_X86_H
4
5#include <linux/kvm_host.h>
Uros Bizjak3f1a18b2020-10-29 14:56:00 +01006#include <asm/mce.h>
Marcelo Tosatti8d93c872016-06-20 22:28:02 -03007#include <asm/pvclock.h>
Avi Kivity3eeb3282010-01-21 15:31:48 +02008#include "kvm_cache_regs.h"
Sean Christopherson2f728d62020-02-18 15:29:49 -08009#include "kvm_emulate.h"
Avi Kivity26eef702008-07-03 14:59:22 +030010
Babu Mogerc8e88712018-03-16 16:37:24 -040011#define KVM_DEFAULT_PLE_GAP 128
12#define KVM_VMX_DEFAULT_PLE_WINDOW 4096
13#define KVM_DEFAULT_PLE_WINDOW_GROW 2
14#define KVM_DEFAULT_PLE_WINDOW_SHRINK 0
15#define KVM_VMX_DEFAULT_PLE_WINDOW_MAX UINT_MAX
Babu Moger8566ac82018-03-16 16:37:26 -040016#define KVM_SVM_DEFAULT_PLE_WINDOW_MAX USHRT_MAX
17#define KVM_SVM_DEFAULT_PLE_WINDOW 3000
Babu Mogerc8e88712018-03-16 16:37:24 -040018
19static inline unsigned int __grow_ple_window(unsigned int val,
20 unsigned int base, unsigned int modifier, unsigned int max)
21{
22 u64 ret = val;
23
24 if (modifier < 1)
25 return base;
26
27 if (modifier < base)
28 ret *= modifier;
29 else
30 ret += modifier;
31
32 return min(ret, (u64)max);
33}
34
35static inline unsigned int __shrink_ple_window(unsigned int val,
36 unsigned int base, unsigned int modifier, unsigned int min)
37{
38 if (modifier < 1)
39 return base;
40
41 if (modifier < base)
42 val /= modifier;
43 else
44 val -= modifier;
45
46 return max(val, min);
47}
48
Radim Krčmář74545702015-04-27 15:11:25 +020049#define MSR_IA32_CR_PAT_DEFAULT 0x0007040600070406ULL
50
Avi Kivity26eef702008-07-03 14:59:22 +030051static inline void kvm_clear_exception_queue(struct kvm_vcpu *vcpu)
52{
Liran Alon5c7d4f92017-11-19 18:25:43 +020053 vcpu->arch.exception.pending = false;
Wanpeng Li664f8e22017-08-24 03:35:09 -070054 vcpu->arch.exception.injected = false;
Avi Kivity26eef702008-07-03 14:59:22 +030055}
56
Gleb Natapov66fd3f72009-05-11 13:35:50 +030057static inline void kvm_queue_interrupt(struct kvm_vcpu *vcpu, u8 vector,
58 bool soft)
Avi Kivity937a7ea2008-07-03 15:17:01 +030059{
Liran Alon04140b42018-03-23 03:01:31 +030060 vcpu->arch.interrupt.injected = true;
Gleb Natapov66fd3f72009-05-11 13:35:50 +030061 vcpu->arch.interrupt.soft = soft;
Avi Kivity937a7ea2008-07-03 15:17:01 +030062 vcpu->arch.interrupt.nr = vector;
63}
64
65static inline void kvm_clear_interrupt_queue(struct kvm_vcpu *vcpu)
66{
Liran Alon04140b42018-03-23 03:01:31 +030067 vcpu->arch.interrupt.injected = false;
Avi Kivity937a7ea2008-07-03 15:17:01 +030068}
69
Gleb Natapov3298b752009-05-11 13:35:46 +030070static inline bool kvm_event_needs_reinjection(struct kvm_vcpu *vcpu)
71{
Liran Alon04140b42018-03-23 03:01:31 +030072 return vcpu->arch.exception.injected || vcpu->arch.interrupt.injected ||
Gleb Natapov3298b752009-05-11 13:35:46 +030073 vcpu->arch.nmi_injected;
74}
Gleb Natapov66fd3f72009-05-11 13:35:50 +030075
76static inline bool kvm_exception_is_soft(unsigned int nr)
77{
78 return (nr == BP_VECTOR) || (nr == OF_VECTOR);
79}
Gleb Natapovfc61b802009-07-05 17:39:35 +030080
Avi Kivity3eeb3282010-01-21 15:31:48 +020081static inline bool is_protmode(struct kvm_vcpu *vcpu)
82{
83 return kvm_read_cr0_bits(vcpu, X86_CR0_PE);
84}
85
Avi Kivity836a1b32010-01-21 15:31:49 +020086static inline int is_long_mode(struct kvm_vcpu *vcpu)
87{
88#ifdef CONFIG_X86_64
Avi Kivityf6801df2010-01-21 15:31:50 +020089 return vcpu->arch.efer & EFER_LMA;
Avi Kivity836a1b32010-01-21 15:31:49 +020090#else
91 return 0;
92#endif
93}
94
Nadav Amit57773922014-06-18 17:19:23 +030095static inline bool is_64_bit_mode(struct kvm_vcpu *vcpu)
96{
97 int cs_db, cs_l;
98
99 if (!is_long_mode(vcpu))
100 return false;
Sean Christophersonafaf0b22020-03-21 13:26:00 -0700101 kvm_x86_ops.get_cs_db_l_bits(vcpu, &cs_db, &cs_l);
Nadav Amit57773922014-06-18 17:19:23 +0300102 return cs_l;
103}
104
Yu Zhang855feb62017-08-24 20:27:55 +0800105static inline bool is_la57_mode(struct kvm_vcpu *vcpu)
106{
107#ifdef CONFIG_X86_64
108 return (vcpu->arch.efer & EFER_LMA) &&
109 kvm_read_cr4_bits(vcpu, X86_CR4_LA57);
110#else
111 return 0;
112#endif
113}
114
Marc Orr04473782018-06-20 17:21:29 -0700115static inline bool x86_exception_has_error_code(unsigned int vector)
116{
117 static u32 exception_has_error_code = BIT(DF_VECTOR) | BIT(TS_VECTOR) |
118 BIT(NP_VECTOR) | BIT(SS_VECTOR) | BIT(GP_VECTOR) |
119 BIT(PF_VECTOR) | BIT(AC_VECTOR);
120
121 return (1U << vector) & exception_has_error_code;
122}
123
Joerg Roedel6539e732010-09-10 17:30:50 +0200124static inline bool mmu_is_nested(struct kvm_vcpu *vcpu)
125{
126 return vcpu->arch.walk_mmu == &vcpu->arch.nested_mmu;
127}
128
Sean Christophersoneeeb4f62020-03-20 14:28:20 -0700129static inline void kvm_vcpu_flush_tlb_current(struct kvm_vcpu *vcpu)
130{
131 ++vcpu->stat.tlb_flush;
132 kvm_x86_ops.tlb_flush_current(vcpu);
133}
134
Avi Kivity836a1b32010-01-21 15:31:49 +0200135static inline int is_pae(struct kvm_vcpu *vcpu)
136{
137 return kvm_read_cr4_bits(vcpu, X86_CR4_PAE);
138}
139
140static inline int is_pse(struct kvm_vcpu *vcpu)
141{
142 return kvm_read_cr4_bits(vcpu, X86_CR4_PSE);
143}
144
145static inline int is_paging(struct kvm_vcpu *vcpu)
146{
Davidlohr Buesoc36fc042012-03-08 12:45:54 +0100147 return likely(kvm_read_cr0_bits(vcpu, X86_CR0_PG));
Avi Kivity836a1b32010-01-21 15:31:49 +0200148}
149
Paolo Bonzinibf03d4f2019-06-06 18:52:44 +0200150static inline bool is_pae_paging(struct kvm_vcpu *vcpu)
151{
152 return !is_long_mode(vcpu) && is_pae(vcpu) && is_paging(vcpu);
153}
154
Yu Zhangfd8cb432017-08-24 20:27:56 +0800155static inline u8 vcpu_virt_addr_bits(struct kvm_vcpu *vcpu)
156{
157 return kvm_read_cr4_bits(vcpu, X86_CR4_LA57) ? 57 : 48;
158}
159
Yu Zhangfd8cb432017-08-24 20:27:56 +0800160static inline u64 get_canonical(u64 la, u8 vaddr_bits)
161{
162 return ((int64_t)la << (64 - vaddr_bits)) >> (64 - vaddr_bits);
163}
164
165static inline bool is_noncanonical_address(u64 la, struct kvm_vcpu *vcpu)
166{
Yu Zhangfd8cb432017-08-24 20:27:56 +0800167 return get_canonical(la, vcpu_virt_addr_bits(vcpu)) != la;
Yu Zhangfd8cb432017-08-24 20:27:56 +0800168}
169
Xiao Guangrongbebb1062011-07-12 03:23:20 +0800170static inline void vcpu_cache_mmio_info(struct kvm_vcpu *vcpu,
171 gva_t gva, gfn_t gfn, unsigned access)
172{
Sean Christophersonddfd1732019-02-05 13:01:13 -0800173 u64 gen = kvm_memslots(vcpu->kvm)->generation;
174
Sean Christopherson361209e2019-02-05 13:01:14 -0800175 if (unlikely(gen & KVM_MEMSLOT_GEN_UPDATE_IN_PROGRESS))
Sean Christophersonddfd1732019-02-05 13:01:13 -0800176 return;
177
Paolo Bonzini9034e6e2017-08-17 18:36:58 +0200178 /*
179 * If this is a shadow nested page table, the "GVA" is
180 * actually a nGPA.
181 */
182 vcpu->arch.mmio_gva = mmu_is_nested(vcpu) ? 0 : gva & PAGE_MASK;
Sean Christopherson871bd032019-08-01 13:35:21 -0700183 vcpu->arch.mmio_access = access;
Xiao Guangrongbebb1062011-07-12 03:23:20 +0800184 vcpu->arch.mmio_gfn = gfn;
Sean Christophersonddfd1732019-02-05 13:01:13 -0800185 vcpu->arch.mmio_gen = gen;
David Matlack56f17dd2014-08-18 15:46:07 -0700186}
187
188static inline bool vcpu_match_mmio_gen(struct kvm_vcpu *vcpu)
189{
190 return vcpu->arch.mmio_gen == kvm_memslots(vcpu->kvm)->generation;
Xiao Guangrongbebb1062011-07-12 03:23:20 +0800191}
192
193/*
David Matlack56f17dd2014-08-18 15:46:07 -0700194 * Clear the mmio cache info for the given gva. If gva is MMIO_GVA_ANY, we
195 * clear all mmio cache info.
Xiao Guangrongbebb1062011-07-12 03:23:20 +0800196 */
David Matlack56f17dd2014-08-18 15:46:07 -0700197#define MMIO_GVA_ANY (~(gva_t)0)
198
Xiao Guangrongbebb1062011-07-12 03:23:20 +0800199static inline void vcpu_clear_mmio_info(struct kvm_vcpu *vcpu, gva_t gva)
200{
David Matlack56f17dd2014-08-18 15:46:07 -0700201 if (gva != MMIO_GVA_ANY && vcpu->arch.mmio_gva != (gva & PAGE_MASK))
Xiao Guangrongbebb1062011-07-12 03:23:20 +0800202 return;
203
204 vcpu->arch.mmio_gva = 0;
205}
206
207static inline bool vcpu_match_mmio_gva(struct kvm_vcpu *vcpu, unsigned long gva)
208{
David Matlack56f17dd2014-08-18 15:46:07 -0700209 if (vcpu_match_mmio_gen(vcpu) && vcpu->arch.mmio_gva &&
210 vcpu->arch.mmio_gva == (gva & PAGE_MASK))
Xiao Guangrongbebb1062011-07-12 03:23:20 +0800211 return true;
212
213 return false;
214}
215
216static inline bool vcpu_match_mmio_gpa(struct kvm_vcpu *vcpu, gpa_t gpa)
217{
David Matlack56f17dd2014-08-18 15:46:07 -0700218 if (vcpu_match_mmio_gen(vcpu) && vcpu->arch.mmio_gfn &&
219 vcpu->arch.mmio_gfn == gpa >> PAGE_SHIFT)
Xiao Guangrongbebb1062011-07-12 03:23:20 +0800220 return true;
221
222 return false;
223}
224
Sean Christopherson489cbcf2019-09-27 14:45:20 -0700225static inline unsigned long kvm_register_readl(struct kvm_vcpu *vcpu, int reg)
Nadav Amit57773922014-06-18 17:19:23 +0300226{
227 unsigned long val = kvm_register_read(vcpu, reg);
228
229 return is_64_bit_mode(vcpu) ? val : (u32)val;
230}
231
Nadav Amit27e6fb52014-06-18 17:19:26 +0300232static inline void kvm_register_writel(struct kvm_vcpu *vcpu,
Sean Christopherson489cbcf2019-09-27 14:45:20 -0700233 int reg, unsigned long val)
Nadav Amit27e6fb52014-06-18 17:19:26 +0300234{
235 if (!is_64_bit_mode(vcpu))
236 val = (u32)val;
237 return kvm_register_write(vcpu, reg, val);
238}
239
Paolo Bonzini41dbc6b2015-07-23 08:22:45 +0200240static inline bool kvm_check_has_quirk(struct kvm *kvm, u64 quirk)
241{
242 return !(kvm->arch.disabled_quirks & quirk);
243}
244
Liran Alon27cbe7d2019-11-11 11:16:40 +0200245static inline bool kvm_vcpu_latch_init(struct kvm_vcpu *vcpu)
246{
Sean Christophersonafaf0b22020-03-21 13:26:00 -0700247 return is_smm(vcpu) || kvm_x86_ops.apic_init_signal_blocked(vcpu);
Liran Alon27cbe7d2019-11-11 11:16:40 +0200248}
249
Sean Christopherson9497e1f2019-08-27 14:40:36 -0700250void kvm_inject_realmode_interrupt(struct kvm_vcpu *vcpu, int irq, int inc_eip);
Zhang, Yanminff9d07a2010-04-19 13:32:45 +0800251
Will Auld8fe8ab42012-11-29 12:42:12 -0800252void kvm_write_tsc(struct kvm_vcpu *vcpu, struct msr_data *msr);
Paolo Bonzini108b2492016-09-01 14:21:03 +0200253u64 get_kvmclock_ns(struct kvm *kvm);
Zachary Amsden99e3e302010-08-19 22:07:17 -1000254
Paolo Bonzinice14e868a2018-06-06 17:37:49 +0200255int kvm_read_guest_virt(struct kvm_vcpu *vcpu,
Nadav Har'El064aea72011-05-25 23:04:56 +0300256 gva_t addr, void *val, unsigned int bytes,
257 struct x86_exception *exception);
258
Paolo Bonzinice14e868a2018-06-06 17:37:49 +0200259int kvm_write_guest_virt_system(struct kvm_vcpu *vcpu,
Nadav Har'El6a4d7552011-05-25 23:08:00 +0300260 gva_t addr, void *val, unsigned int bytes,
261 struct x86_exception *exception);
262
Wanpeng Li082d06e2018-04-03 16:28:48 -0700263int handle_ud(struct kvm_vcpu *vcpu);
264
Jim Mattsonda998b42018-10-16 14:29:22 -0700265void kvm_deliver_exception_payload(struct kvm_vcpu *vcpu);
266
Xiao Guangrong19efffa2015-06-15 16:55:31 +0800267void kvm_vcpu_mtrr_init(struct kvm_vcpu *vcpu);
Xiao Guangrongff536042015-06-15 16:55:22 +0800268u8 kvm_mtrr_get_guest_memory_type(struct kvm_vcpu *vcpu, gfn_t gfn);
Nadav Amit45666542014-09-18 22:39:44 +0300269bool kvm_mtrr_valid(struct kvm_vcpu *vcpu, u32 msr, u64 data);
Xiao Guangrongff536042015-06-15 16:55:22 +0800270int kvm_mtrr_set_msr(struct kvm_vcpu *vcpu, u32 msr, u64 data);
271int kvm_mtrr_get_msr(struct kvm_vcpu *vcpu, u32 msr, u64 *pdata);
Xiao Guangrong6a39bbc2015-06-15 16:55:35 +0800272bool kvm_mtrr_check_gfn_range_consistency(struct kvm_vcpu *vcpu, gfn_t gfn,
273 int page_num);
Feng Wu520040142016-01-25 16:53:33 +0800274bool kvm_vector_hashing_enabled(void);
Mohammed Gamal89786142020-07-10 17:48:03 +0200275void kvm_fixup_and_inject_pf_error(struct kvm_vcpu *vcpu, gva_t gva, u16 error_code);
Sean Christopherson736c2912019-12-06 15:57:14 -0800276int x86_emulate_instruction(struct kvm_vcpu *vcpu, gpa_t cr2_or_gpa,
Sean Christophersonc60658d2018-08-23 13:56:53 -0700277 int emulation_type, void *insn, int insn_len);
Wanpeng Li404d5d72020-04-28 14:23:25 +0800278fastpath_t handle_fastpath_set_msr_irqoff(struct kvm_vcpu *vcpu);
Nadav Amit45666542014-09-18 22:39:44 +0300279
Avi Kivity00b27a32011-11-23 16:30:32 +0200280extern u64 host_xcr0;
Sean Christophersoncfc48182020-03-02 15:56:23 -0800281extern u64 supported_xcr0;
Tom Lendacky86137772020-12-10 11:10:07 -0600282extern u64 host_xss;
Paolo Bonzini408e9a32020-03-05 16:11:56 +0100283extern u64 supported_xss;
Paolo Bonzini4ff41732014-02-24 12:15:16 +0100284
Sean Christopherson615a4ae2020-03-02 15:56:25 -0800285static inline bool kvm_mpx_supported(void)
286{
287 return (supported_xcr0 & (XFEATURE_MASK_BNDREGS | XFEATURE_MASK_BNDCSR))
288 == (XFEATURE_MASK_BNDREGS | XFEATURE_MASK_BNDCSR);
289}
290
Marcelo Tosatti9ed96e82014-01-06 12:00:02 -0200291extern unsigned int min_timer_period_us;
292
Liran Alonc4ae60e2018-03-12 13:12:47 +0200293extern bool enable_vmware_backdoor;
294
Wanpeng Li0c5f81d2019-07-06 09:26:51 +0800295extern int pi_inject_timer;
296
Gleb Natapov54e98182012-08-05 15:58:32 +0300297extern struct static_key kvm_no_apic_vcpu;
Paolo Bonzinib51012d2016-01-22 11:39:22 +0100298
Marcelo Tosatti8d93c872016-06-20 22:28:02 -0300299static inline u64 nsec_to_cycles(struct kvm_vcpu *vcpu, u64 nsec)
300{
301 return pvclock_scale_delta(nsec, vcpu->arch.virtual_tsc_mult,
302 vcpu->arch.virtual_tsc_shift);
303}
304
Paolo Bonzinib51012d2016-01-22 11:39:22 +0100305/* Same "calling convention" as do_div:
306 * - divide (n << 32) by base
307 * - put result in n
308 * - return remainder
309 */
310#define do_shl32_div32(n, base) \
311 ({ \
312 u32 __quot, __rem; \
313 asm("divl %2" : "=a" (__quot), "=d" (__rem) \
314 : "rm" (base), "0" (0), "1" ((u32) n)); \
315 n = __quot; \
316 __rem; \
317 })
318
Wanpeng Li4d5422c2018-03-12 04:53:02 -0700319static inline bool kvm_mwait_in_guest(struct kvm *kvm)
Michael S. Tsirkin668fffa2017-04-21 12:27:17 +0200320{
Wanpeng Li4d5422c2018-03-12 04:53:02 -0700321 return kvm->arch.mwait_in_guest;
Michael S. Tsirkin668fffa2017-04-21 12:27:17 +0200322}
323
Wanpeng Licaa057a2018-03-12 04:53:03 -0700324static inline bool kvm_hlt_in_guest(struct kvm *kvm)
325{
326 return kvm->arch.hlt_in_guest;
327}
328
Wanpeng Lib31c1142018-03-12 04:53:04 -0700329static inline bool kvm_pause_in_guest(struct kvm *kvm)
330{
331 return kvm->arch.pause_in_guest;
332}
333
Wanpeng Lib5170062019-05-21 14:06:53 +0800334static inline bool kvm_cstate_in_guest(struct kvm *kvm)
335{
336 return kvm->arch.cstate_in_guest;
337}
338
Andi Kleendd60d212017-07-25 17:20:32 -0700339DECLARE_PER_CPU(struct kvm_vcpu *, current_vcpu);
340
341static inline void kvm_before_interrupt(struct kvm_vcpu *vcpu)
342{
343 __this_cpu_write(current_vcpu, vcpu);
344}
345
346static inline void kvm_after_interrupt(struct kvm_vcpu *vcpu)
347{
348 __this_cpu_write(current_vcpu, NULL);
349}
350
Paolo Bonzini674ea352019-04-10 11:41:40 +0200351
352static inline bool kvm_pat_valid(u64 data)
353{
354 if (data & 0xF8F8F8F8F8F8F8F8ull)
355 return false;
356 /* 0, 1, 4, 5, 6, 7 are valid values. */
357 return (data | ((data & 0x0202020202020202ull) << 1)) == data;
358}
359
Sean Christopherson9b5e8532020-01-24 15:07:22 -0800360static inline bool kvm_dr7_valid(u64 data)
Krish Sadhukhanb91991b2020-01-15 19:54:32 -0500361{
362 /* Bits [63:32] are reserved */
363 return !(data >> 32);
364}
Krish Sadhukhanf5f61452020-05-22 18:19:51 -0400365static inline bool kvm_dr6_valid(u64 data)
366{
367 /* Bits [63:32] are reserved */
368 return !(data >> 32);
369}
Krish Sadhukhanb91991b2020-01-15 19:54:32 -0500370
Uros Bizjak3f1a18b2020-10-29 14:56:00 +0100371/*
372 * Trigger machine check on the host. We assume all the MSRs are already set up
373 * by the CPU and that we still run on the same CPU as the MCE occurred on.
374 * We pass a fake environment to the machine check handler because we want
375 * the guest to be always treated like user space, no matter what context
376 * it used internally.
377 */
378static inline void kvm_machine_check(void)
379{
380#if defined(CONFIG_X86_MCE)
381 struct pt_regs regs = {
382 .cs = 3, /* Fake ring 3 no matter what the guest ran on */
383 .flags = X86_EFLAGS_IF,
384 };
385
386 do_machine_check(&regs);
387#endif
388}
389
Aaron Lewis139a12c2019-10-21 16:30:25 -0700390void kvm_load_guest_xsave_state(struct kvm_vcpu *vcpu);
391void kvm_load_host_xsave_state(struct kvm_vcpu *vcpu);
Maxim Levitsky841c2be2020-07-08 14:57:31 +0300392int kvm_spec_ctrl_test_value(u64 value);
Sean Christophersonee69c922020-10-06 18:44:16 -0700393bool kvm_is_valid_cr4(struct kvm_vcpu *vcpu, unsigned long cr4);
Wanpeng Li5a9f5442020-04-28 14:23:26 +0800394bool kvm_vcpu_exit_request(struct kvm_vcpu *vcpu);
Babu Moger3f3393b2020-09-11 14:29:05 -0500395int kvm_handle_memory_failure(struct kvm_vcpu *vcpu, int r,
396 struct x86_exception *e);
Babu Moger97150922020-09-11 14:29:12 -0500397int kvm_handle_invpcid(struct kvm_vcpu *vcpu, unsigned long type, gva_t gva);
Alexander Graf51de8152020-09-25 16:34:17 +0200398bool kvm_msr_allowed(struct kvm_vcpu *vcpu, u32 index, u32 type);
Paolo Bonzini674ea352019-04-10 11:41:40 +0200399
Maxim Levitskycc4cb012020-11-01 13:55:23 +0200400/*
401 * Internal error codes that are used to indicate that MSR emulation encountered
402 * an error that should result in #GP in the guest, unless userspace
403 * handles it.
404 */
405#define KVM_MSR_RET_INVALID 2 /* in-kernel MSR emulation #GP condition */
406#define KVM_MSR_RET_FILTERED 3 /* #GP due to userspace MSR filter */
Peter Xu6abe9c12020-06-22 18:04:41 -0400407
Krish Sadhukhanb899c132020-07-08 00:39:55 +0000408#define __cr4_reserved_bits(__cpu_has, __c) \
409({ \
410 u64 __reserved_bits = CR4_RESERVED_BITS; \
411 \
412 if (!__cpu_has(__c, X86_FEATURE_XSAVE)) \
413 __reserved_bits |= X86_CR4_OSXSAVE; \
414 if (!__cpu_has(__c, X86_FEATURE_SMEP)) \
415 __reserved_bits |= X86_CR4_SMEP; \
416 if (!__cpu_has(__c, X86_FEATURE_SMAP)) \
417 __reserved_bits |= X86_CR4_SMAP; \
418 if (!__cpu_has(__c, X86_FEATURE_FSGSBASE)) \
419 __reserved_bits |= X86_CR4_FSGSBASE; \
420 if (!__cpu_has(__c, X86_FEATURE_PKU)) \
421 __reserved_bits |= X86_CR4_PKE; \
422 if (!__cpu_has(__c, X86_FEATURE_LA57)) \
423 __reserved_bits |= X86_CR4_LA57; \
424 if (!__cpu_has(__c, X86_FEATURE_UMIP)) \
425 __reserved_bits |= X86_CR4_UMIP; \
Paolo Bonzini53efe522020-07-08 07:02:50 -0400426 if (!__cpu_has(__c, X86_FEATURE_VMX)) \
427 __reserved_bits |= X86_CR4_VMXE; \
Vitaly Kuznetsov4683d752021-02-01 15:28:43 +0100428 if (!__cpu_has(__c, X86_FEATURE_PCID)) \
429 __reserved_bits |= X86_CR4_PCIDE; \
Krish Sadhukhanb899c132020-07-08 00:39:55 +0000430 __reserved_bits; \
431})
432
Tom Lendacky8f423a82020-12-10 11:09:53 -0600433int kvm_sev_es_mmio_write(struct kvm_vcpu *vcpu, gpa_t src, unsigned int bytes,
434 void *dst);
435int kvm_sev_es_mmio_read(struct kvm_vcpu *vcpu, gpa_t src, unsigned int bytes,
436 void *dst);
Tom Lendacky7ed9abf2020-12-10 11:09:54 -0600437int kvm_sev_es_string_io(struct kvm_vcpu *vcpu, unsigned int size,
438 unsigned int port, void *data, unsigned int count,
439 int in);
Tom Lendacky8f423a82020-12-10 11:09:53 -0600440
Avi Kivity26eef702008-07-03 14:59:22 +0300441#endif