]> git.proxmox.com Git - mirror_ubuntu-kernels.git/blob - arch/x86/kvm/svm/svm.h
KVM: SVM: Replace "avic_mode" enum with "x2avic_enabled" boolean
[mirror_ubuntu-kernels.git] / arch / x86 / kvm / svm / svm.h
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3 * Kernel-based Virtual Machine driver for Linux
4 *
5 * AMD SVM support
6 *
7 * Copyright (C) 2006 Qumranet, Inc.
8 * Copyright 2010 Red Hat, Inc. and/or its affiliates.
9 *
10 * Authors:
11 * Yaniv Kamay <yaniv@qumranet.com>
12 * Avi Kivity <avi@qumranet.com>
13 */
14
15 #ifndef __SVM_SVM_H
16 #define __SVM_SVM_H
17
18 #include <linux/kvm_types.h>
19 #include <linux/kvm_host.h>
20 #include <linux/bits.h>
21
22 #include <asm/svm.h>
23 #include <asm/sev-common.h>
24
25 #include "kvm_cache_regs.h"
26
27 #define __sme_page_pa(x) __sme_set(page_to_pfn(x) << PAGE_SHIFT)
28
29 #define IOPM_SIZE PAGE_SIZE * 3
30 #define MSRPM_SIZE PAGE_SIZE * 2
31
32 #define MAX_DIRECT_ACCESS_MSRS 46
33 #define MSRPM_OFFSETS 32
34 extern u32 msrpm_offsets[MSRPM_OFFSETS] __read_mostly;
35 extern bool npt_enabled;
36 extern int vgif;
37 extern bool intercept_smi;
38 extern bool x2avic_enabled;
39
40 /*
41 * Clean bits in VMCB.
42 * VMCB_ALL_CLEAN_MASK might also need to
43 * be updated if this enum is modified.
44 */
45 enum {
46 VMCB_INTERCEPTS, /* Intercept vectors, TSC offset,
47 pause filter count */
48 VMCB_PERM_MAP, /* IOPM Base and MSRPM Base */
49 VMCB_ASID, /* ASID */
50 VMCB_INTR, /* int_ctl, int_vector */
51 VMCB_NPT, /* npt_en, nCR3, gPAT */
52 VMCB_CR, /* CR0, CR3, CR4, EFER */
53 VMCB_DR, /* DR6, DR7 */
54 VMCB_DT, /* GDT, IDT */
55 VMCB_SEG, /* CS, DS, SS, ES, CPL */
56 VMCB_CR2, /* CR2 only */
57 VMCB_LBR, /* DBGCTL, BR_FROM, BR_TO, LAST_EX_FROM, LAST_EX_TO */
58 VMCB_AVIC, /* AVIC APIC_BAR, AVIC APIC_BACKING_PAGE,
59 * AVIC PHYSICAL_TABLE pointer,
60 * AVIC LOGICAL_TABLE pointer
61 */
62 VMCB_SW = 31, /* Reserved for hypervisor/software use */
63 };
64
65 #define VMCB_ALL_CLEAN_MASK ( \
66 (1U << VMCB_INTERCEPTS) | (1U << VMCB_PERM_MAP) | \
67 (1U << VMCB_ASID) | (1U << VMCB_INTR) | \
68 (1U << VMCB_NPT) | (1U << VMCB_CR) | (1U << VMCB_DR) | \
69 (1U << VMCB_DT) | (1U << VMCB_SEG) | (1U << VMCB_CR2) | \
70 (1U << VMCB_LBR) | (1U << VMCB_AVIC) | \
71 (1U << VMCB_SW))
72
73 /* TPR and CR2 are always written before VMRUN */
74 #define VMCB_ALWAYS_DIRTY_MASK ((1U << VMCB_INTR) | (1U << VMCB_CR2))
75
76 struct kvm_sev_info {
77 bool active; /* SEV enabled guest */
78 bool es_active; /* SEV-ES enabled guest */
79 unsigned int asid; /* ASID used for this guest */
80 unsigned int handle; /* SEV firmware handle */
81 int fd; /* SEV device fd */
82 unsigned long pages_locked; /* Number of pages locked */
83 struct list_head regions_list; /* List of registered regions */
84 u64 ap_jump_table; /* SEV-ES AP Jump Table address */
85 struct kvm *enc_context_owner; /* Owner of copied encryption context */
86 struct list_head mirror_vms; /* List of VMs mirroring */
87 struct list_head mirror_entry; /* Use as a list entry of mirrors */
88 struct misc_cg *misc_cg; /* For misc cgroup accounting */
89 atomic_t migration_in_progress;
90 };
91
92 struct kvm_svm {
93 struct kvm kvm;
94
95 /* Struct members for AVIC */
96 u32 avic_vm_id;
97 struct page *avic_logical_id_table_page;
98 struct page *avic_physical_id_table_page;
99 struct hlist_node hnode;
100
101 struct kvm_sev_info sev_info;
102 };
103
104 struct kvm_vcpu;
105
106 struct kvm_vmcb_info {
107 struct vmcb *ptr;
108 unsigned long pa;
109 int cpu;
110 uint64_t asid_generation;
111 };
112
113 struct vmcb_save_area_cached {
114 u64 efer;
115 u64 cr4;
116 u64 cr3;
117 u64 cr0;
118 u64 dr7;
119 u64 dr6;
120 };
121
122 struct vmcb_ctrl_area_cached {
123 u32 intercepts[MAX_INTERCEPT];
124 u16 pause_filter_thresh;
125 u16 pause_filter_count;
126 u64 iopm_base_pa;
127 u64 msrpm_base_pa;
128 u64 tsc_offset;
129 u32 asid;
130 u8 tlb_ctl;
131 u32 int_ctl;
132 u32 int_vector;
133 u32 int_state;
134 u32 exit_code;
135 u32 exit_code_hi;
136 u64 exit_info_1;
137 u64 exit_info_2;
138 u32 exit_int_info;
139 u32 exit_int_info_err;
140 u64 nested_ctl;
141 u32 event_inj;
142 u32 event_inj_err;
143 u64 next_rip;
144 u64 nested_cr3;
145 u64 virt_ext;
146 u32 clean;
147 union {
148 struct hv_vmcb_enlightenments hv_enlightenments;
149 u8 reserved_sw[32];
150 };
151 };
152
153 struct svm_nested_state {
154 struct kvm_vmcb_info vmcb02;
155 u64 hsave_msr;
156 u64 vm_cr_msr;
157 u64 vmcb12_gpa;
158 u64 last_vmcb12_gpa;
159
160 /* These are the merged vectors */
161 u32 *msrpm;
162
163 /* A VMRUN has started but has not yet been performed, so
164 * we cannot inject a nested vmexit yet. */
165 bool nested_run_pending;
166
167 /* cache for control fields of the guest */
168 struct vmcb_ctrl_area_cached ctl;
169
170 /*
171 * Note: this struct is not kept up-to-date while L2 runs; it is only
172 * valid within nested_svm_vmrun.
173 */
174 struct vmcb_save_area_cached save;
175
176 bool initialized;
177
178 /*
179 * Indicates whether MSR bitmap for L2 needs to be rebuilt due to
180 * changes in MSR bitmap for L1 or switching to a different L2. Note,
181 * this flag can only be used reliably in conjunction with a paravirt L1
182 * which informs L0 whether any changes to MSR bitmap for L2 were done
183 * on its side.
184 */
185 bool force_msr_bitmap_recalc;
186 };
187
188 struct vcpu_sev_es_state {
189 /* SEV-ES support */
190 struct sev_es_save_area *vmsa;
191 struct ghcb *ghcb;
192 struct kvm_host_map ghcb_map;
193 bool received_first_sipi;
194
195 /* SEV-ES scratch area support */
196 void *ghcb_sa;
197 u32 ghcb_sa_len;
198 bool ghcb_sa_sync;
199 bool ghcb_sa_free;
200 };
201
202 struct vcpu_svm {
203 struct kvm_vcpu vcpu;
204 /* vmcb always points at current_vmcb->ptr, it's purely a shorthand. */
205 struct vmcb *vmcb;
206 struct kvm_vmcb_info vmcb01;
207 struct kvm_vmcb_info *current_vmcb;
208 u32 asid;
209 u32 sysenter_esp_hi;
210 u32 sysenter_eip_hi;
211 uint64_t tsc_aux;
212
213 u64 msr_decfg;
214
215 u64 next_rip;
216
217 u64 spec_ctrl;
218
219 u64 tsc_ratio_msr;
220 /*
221 * Contains guest-controlled bits of VIRT_SPEC_CTRL, which will be
222 * translated into the appropriate L2_CFG bits on the host to
223 * perform speculative control.
224 */
225 u64 virt_spec_ctrl;
226
227 u32 *msrpm;
228
229 ulong nmi_iret_rip;
230
231 struct svm_nested_state nested;
232
233 bool nmi_singlestep;
234 u64 nmi_singlestep_guest_rflags;
235 bool nmi_l1_to_l2;
236
237 unsigned long soft_int_csbase;
238 unsigned long soft_int_old_rip;
239 unsigned long soft_int_next_rip;
240 bool soft_int_injected;
241
242 /* optional nested SVM features that are enabled for this guest */
243 bool nrips_enabled : 1;
244 bool tsc_scaling_enabled : 1;
245 bool v_vmload_vmsave_enabled : 1;
246 bool lbrv_enabled : 1;
247 bool pause_filter_enabled : 1;
248 bool pause_threshold_enabled : 1;
249 bool vgif_enabled : 1;
250
251 u32 ldr_reg;
252 u32 dfr_reg;
253 struct page *avic_backing_page;
254 u64 *avic_physical_id_cache;
255
256 /*
257 * Per-vcpu list of struct amd_svm_iommu_ir:
258 * This is used mainly to store interrupt remapping information used
259 * when update the vcpu affinity. This avoids the need to scan for
260 * IRTE and try to match ga_tag in the IOMMU driver.
261 */
262 struct list_head ir_list;
263 spinlock_t ir_list_lock;
264
265 /* Save desired MSR intercept (read: pass-through) state */
266 struct {
267 DECLARE_BITMAP(read, MAX_DIRECT_ACCESS_MSRS);
268 DECLARE_BITMAP(write, MAX_DIRECT_ACCESS_MSRS);
269 } shadow_msr_intercept;
270
271 struct vcpu_sev_es_state sev_es;
272
273 bool guest_state_loaded;
274
275 bool x2avic_msrs_intercepted;
276 };
277
278 struct svm_cpu_data {
279 u64 asid_generation;
280 u32 max_asid;
281 u32 next_asid;
282 u32 min_asid;
283 struct kvm_ldttss_desc *tss_desc;
284
285 struct page *save_area;
286 unsigned long save_area_pa;
287
288 struct vmcb *current_vmcb;
289
290 /* index = sev_asid, value = vmcb pointer */
291 struct vmcb **sev_vmcbs;
292 };
293
294 DECLARE_PER_CPU(struct svm_cpu_data, svm_data);
295
296 void recalc_intercepts(struct vcpu_svm *svm);
297
298 static __always_inline struct kvm_svm *to_kvm_svm(struct kvm *kvm)
299 {
300 return container_of(kvm, struct kvm_svm, kvm);
301 }
302
303 static __always_inline bool sev_guest(struct kvm *kvm)
304 {
305 #ifdef CONFIG_KVM_AMD_SEV
306 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
307
308 return sev->active;
309 #else
310 return false;
311 #endif
312 }
313
314 static __always_inline bool sev_es_guest(struct kvm *kvm)
315 {
316 #ifdef CONFIG_KVM_AMD_SEV
317 struct kvm_sev_info *sev = &to_kvm_svm(kvm)->sev_info;
318
319 return sev->es_active && !WARN_ON_ONCE(!sev->active);
320 #else
321 return false;
322 #endif
323 }
324
325 static inline void vmcb_mark_all_dirty(struct vmcb *vmcb)
326 {
327 vmcb->control.clean = 0;
328 }
329
330 static inline void vmcb_mark_all_clean(struct vmcb *vmcb)
331 {
332 vmcb->control.clean = VMCB_ALL_CLEAN_MASK
333 & ~VMCB_ALWAYS_DIRTY_MASK;
334 }
335
336 static inline void vmcb_mark_dirty(struct vmcb *vmcb, int bit)
337 {
338 vmcb->control.clean &= ~(1 << bit);
339 }
340
341 static inline bool vmcb_is_dirty(struct vmcb *vmcb, int bit)
342 {
343 return !test_bit(bit, (unsigned long *)&vmcb->control.clean);
344 }
345
346 static __always_inline struct vcpu_svm *to_svm(struct kvm_vcpu *vcpu)
347 {
348 return container_of(vcpu, struct vcpu_svm, vcpu);
349 }
350
351 /*
352 * Only the PDPTRs are loaded on demand into the shadow MMU. All other
353 * fields are synchronized on VM-Exit, because accessing the VMCB is cheap.
354 *
355 * CR3 might be out of date in the VMCB but it is not marked dirty; instead,
356 * KVM_REQ_LOAD_MMU_PGD is always requested when the cached vcpu->arch.cr3
357 * is changed. svm_load_mmu_pgd() then syncs the new CR3 value into the VMCB.
358 */
359 #define SVM_REGS_LAZY_LOAD_SET (1 << VCPU_EXREG_PDPTR)
360
361 static inline void vmcb_set_intercept(struct vmcb_control_area *control, u32 bit)
362 {
363 WARN_ON_ONCE(bit >= 32 * MAX_INTERCEPT);
364 __set_bit(bit, (unsigned long *)&control->intercepts);
365 }
366
367 static inline void vmcb_clr_intercept(struct vmcb_control_area *control, u32 bit)
368 {
369 WARN_ON_ONCE(bit >= 32 * MAX_INTERCEPT);
370 __clear_bit(bit, (unsigned long *)&control->intercepts);
371 }
372
373 static inline bool vmcb_is_intercept(struct vmcb_control_area *control, u32 bit)
374 {
375 WARN_ON_ONCE(bit >= 32 * MAX_INTERCEPT);
376 return test_bit(bit, (unsigned long *)&control->intercepts);
377 }
378
379 static inline bool vmcb12_is_intercept(struct vmcb_ctrl_area_cached *control, u32 bit)
380 {
381 WARN_ON_ONCE(bit >= 32 * MAX_INTERCEPT);
382 return test_bit(bit, (unsigned long *)&control->intercepts);
383 }
384
385 static inline void set_dr_intercepts(struct vcpu_svm *svm)
386 {
387 struct vmcb *vmcb = svm->vmcb01.ptr;
388
389 if (!sev_es_guest(svm->vcpu.kvm)) {
390 vmcb_set_intercept(&vmcb->control, INTERCEPT_DR0_READ);
391 vmcb_set_intercept(&vmcb->control, INTERCEPT_DR1_READ);
392 vmcb_set_intercept(&vmcb->control, INTERCEPT_DR2_READ);
393 vmcb_set_intercept(&vmcb->control, INTERCEPT_DR3_READ);
394 vmcb_set_intercept(&vmcb->control, INTERCEPT_DR4_READ);
395 vmcb_set_intercept(&vmcb->control, INTERCEPT_DR5_READ);
396 vmcb_set_intercept(&vmcb->control, INTERCEPT_DR6_READ);
397 vmcb_set_intercept(&vmcb->control, INTERCEPT_DR0_WRITE);
398 vmcb_set_intercept(&vmcb->control, INTERCEPT_DR1_WRITE);
399 vmcb_set_intercept(&vmcb->control, INTERCEPT_DR2_WRITE);
400 vmcb_set_intercept(&vmcb->control, INTERCEPT_DR3_WRITE);
401 vmcb_set_intercept(&vmcb->control, INTERCEPT_DR4_WRITE);
402 vmcb_set_intercept(&vmcb->control, INTERCEPT_DR5_WRITE);
403 vmcb_set_intercept(&vmcb->control, INTERCEPT_DR6_WRITE);
404 }
405
406 vmcb_set_intercept(&vmcb->control, INTERCEPT_DR7_READ);
407 vmcb_set_intercept(&vmcb->control, INTERCEPT_DR7_WRITE);
408
409 recalc_intercepts(svm);
410 }
411
412 static inline void clr_dr_intercepts(struct vcpu_svm *svm)
413 {
414 struct vmcb *vmcb = svm->vmcb01.ptr;
415
416 vmcb->control.intercepts[INTERCEPT_DR] = 0;
417
418 /* DR7 access must remain intercepted for an SEV-ES guest */
419 if (sev_es_guest(svm->vcpu.kvm)) {
420 vmcb_set_intercept(&vmcb->control, INTERCEPT_DR7_READ);
421 vmcb_set_intercept(&vmcb->control, INTERCEPT_DR7_WRITE);
422 }
423
424 recalc_intercepts(svm);
425 }
426
427 static inline void set_exception_intercept(struct vcpu_svm *svm, u32 bit)
428 {
429 struct vmcb *vmcb = svm->vmcb01.ptr;
430
431 WARN_ON_ONCE(bit >= 32);
432 vmcb_set_intercept(&vmcb->control, INTERCEPT_EXCEPTION_OFFSET + bit);
433
434 recalc_intercepts(svm);
435 }
436
437 static inline void clr_exception_intercept(struct vcpu_svm *svm, u32 bit)
438 {
439 struct vmcb *vmcb = svm->vmcb01.ptr;
440
441 WARN_ON_ONCE(bit >= 32);
442 vmcb_clr_intercept(&vmcb->control, INTERCEPT_EXCEPTION_OFFSET + bit);
443
444 recalc_intercepts(svm);
445 }
446
447 static inline void svm_set_intercept(struct vcpu_svm *svm, int bit)
448 {
449 struct vmcb *vmcb = svm->vmcb01.ptr;
450
451 vmcb_set_intercept(&vmcb->control, bit);
452
453 recalc_intercepts(svm);
454 }
455
456 static inline void svm_clr_intercept(struct vcpu_svm *svm, int bit)
457 {
458 struct vmcb *vmcb = svm->vmcb01.ptr;
459
460 vmcb_clr_intercept(&vmcb->control, bit);
461
462 recalc_intercepts(svm);
463 }
464
465 static inline bool svm_is_intercept(struct vcpu_svm *svm, int bit)
466 {
467 return vmcb_is_intercept(&svm->vmcb->control, bit);
468 }
469
470 static inline bool nested_vgif_enabled(struct vcpu_svm *svm)
471 {
472 return svm->vgif_enabled && (svm->nested.ctl.int_ctl & V_GIF_ENABLE_MASK);
473 }
474
475 static inline struct vmcb *get_vgif_vmcb(struct vcpu_svm *svm)
476 {
477 if (!vgif)
478 return NULL;
479
480 if (is_guest_mode(&svm->vcpu) && !nested_vgif_enabled(svm))
481 return svm->nested.vmcb02.ptr;
482 else
483 return svm->vmcb01.ptr;
484 }
485
486 static inline void enable_gif(struct vcpu_svm *svm)
487 {
488 struct vmcb *vmcb = get_vgif_vmcb(svm);
489
490 if (vmcb)
491 vmcb->control.int_ctl |= V_GIF_MASK;
492 else
493 svm->vcpu.arch.hflags |= HF_GIF_MASK;
494 }
495
496 static inline void disable_gif(struct vcpu_svm *svm)
497 {
498 struct vmcb *vmcb = get_vgif_vmcb(svm);
499
500 if (vmcb)
501 vmcb->control.int_ctl &= ~V_GIF_MASK;
502 else
503 svm->vcpu.arch.hflags &= ~HF_GIF_MASK;
504 }
505
506 static inline bool gif_set(struct vcpu_svm *svm)
507 {
508 struct vmcb *vmcb = get_vgif_vmcb(svm);
509
510 if (vmcb)
511 return !!(vmcb->control.int_ctl & V_GIF_MASK);
512 else
513 return !!(svm->vcpu.arch.hflags & HF_GIF_MASK);
514 }
515
516 static inline bool nested_npt_enabled(struct vcpu_svm *svm)
517 {
518 return svm->nested.ctl.nested_ctl & SVM_NESTED_CTL_NP_ENABLE;
519 }
520
521 static inline bool is_x2apic_msrpm_offset(u32 offset)
522 {
523 /* 4 msrs per u8, and 4 u8 in u32 */
524 u32 msr = offset * 16;
525
526 return (msr >= APIC_BASE_MSR) &&
527 (msr < (APIC_BASE_MSR + 0x100));
528 }
529
530 /* svm.c */
531 #define MSR_INVALID 0xffffffffU
532
533 #define DEBUGCTL_RESERVED_BITS (~(0x3fULL))
534
535 extern bool dump_invalid_vmcb;
536
537 u32 svm_msrpm_offset(u32 msr);
538 u32 *svm_vcpu_alloc_msrpm(void);
539 void svm_vcpu_init_msrpm(struct kvm_vcpu *vcpu, u32 *msrpm);
540 void svm_vcpu_free_msrpm(u32 *msrpm);
541 void svm_copy_lbrs(struct vmcb *to_vmcb, struct vmcb *from_vmcb);
542 void svm_update_lbrv(struct kvm_vcpu *vcpu);
543
544 int svm_set_efer(struct kvm_vcpu *vcpu, u64 efer);
545 void svm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0);
546 void svm_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4);
547 void disable_nmi_singlestep(struct vcpu_svm *svm);
548 bool svm_smi_blocked(struct kvm_vcpu *vcpu);
549 bool svm_nmi_blocked(struct kvm_vcpu *vcpu);
550 bool svm_interrupt_blocked(struct kvm_vcpu *vcpu);
551 void svm_set_gif(struct vcpu_svm *svm, bool value);
552 int svm_invoke_exit_handler(struct kvm_vcpu *vcpu, u64 exit_code);
553 void set_msr_interception(struct kvm_vcpu *vcpu, u32 *msrpm, u32 msr,
554 int read, int write);
555 void svm_set_x2apic_msr_interception(struct vcpu_svm *svm, bool disable);
556 void svm_complete_interrupt_delivery(struct kvm_vcpu *vcpu, int delivery_mode,
557 int trig_mode, int vec);
558
559 /* nested.c */
560
561 #define NESTED_EXIT_HOST 0 /* Exit handled on host level */
562 #define NESTED_EXIT_DONE 1 /* Exit caused nested vmexit */
563 #define NESTED_EXIT_CONTINUE 2 /* Further checks needed */
564
565 static inline bool nested_svm_virtualize_tpr(struct kvm_vcpu *vcpu)
566 {
567 struct vcpu_svm *svm = to_svm(vcpu);
568
569 return is_guest_mode(vcpu) && (svm->nested.ctl.int_ctl & V_INTR_MASKING_MASK);
570 }
571
572 static inline bool nested_exit_on_smi(struct vcpu_svm *svm)
573 {
574 return vmcb12_is_intercept(&svm->nested.ctl, INTERCEPT_SMI);
575 }
576
577 static inline bool nested_exit_on_intr(struct vcpu_svm *svm)
578 {
579 return vmcb12_is_intercept(&svm->nested.ctl, INTERCEPT_INTR);
580 }
581
582 static inline bool nested_exit_on_nmi(struct vcpu_svm *svm)
583 {
584 return vmcb12_is_intercept(&svm->nested.ctl, INTERCEPT_NMI);
585 }
586
587 int enter_svm_guest_mode(struct kvm_vcpu *vcpu,
588 u64 vmcb_gpa, struct vmcb *vmcb12, bool from_vmrun);
589 void svm_leave_nested(struct kvm_vcpu *vcpu);
590 void svm_free_nested(struct vcpu_svm *svm);
591 int svm_allocate_nested(struct vcpu_svm *svm);
592 int nested_svm_vmrun(struct kvm_vcpu *vcpu);
593 void svm_copy_vmrun_state(struct vmcb_save_area *to_save,
594 struct vmcb_save_area *from_save);
595 void svm_copy_vmloadsave_state(struct vmcb *to_vmcb, struct vmcb *from_vmcb);
596 int nested_svm_vmexit(struct vcpu_svm *svm);
597
598 static inline int nested_svm_simple_vmexit(struct vcpu_svm *svm, u32 exit_code)
599 {
600 svm->vmcb->control.exit_code = exit_code;
601 svm->vmcb->control.exit_info_1 = 0;
602 svm->vmcb->control.exit_info_2 = 0;
603 return nested_svm_vmexit(svm);
604 }
605
606 int nested_svm_exit_handled(struct vcpu_svm *svm);
607 int nested_svm_check_permissions(struct kvm_vcpu *vcpu);
608 int nested_svm_check_exception(struct vcpu_svm *svm, unsigned nr,
609 bool has_error_code, u32 error_code);
610 int nested_svm_exit_special(struct vcpu_svm *svm);
611 void nested_svm_update_tsc_ratio_msr(struct kvm_vcpu *vcpu);
612 void __svm_write_tsc_multiplier(u64 multiplier);
613 void nested_copy_vmcb_control_to_cache(struct vcpu_svm *svm,
614 struct vmcb_control_area *control);
615 void nested_copy_vmcb_save_to_cache(struct vcpu_svm *svm,
616 struct vmcb_save_area *save);
617 void nested_sync_control_from_vmcb02(struct vcpu_svm *svm);
618 void nested_vmcb02_compute_g_pat(struct vcpu_svm *svm);
619 void svm_switch_vmcb(struct vcpu_svm *svm, struct kvm_vmcb_info *target_vmcb);
620
621 extern struct kvm_x86_nested_ops svm_nested_ops;
622
623 /* avic.c */
624
625 bool avic_hardware_setup(struct kvm_x86_ops *ops);
626 int avic_ga_log_notifier(u32 ga_tag);
627 void avic_vm_destroy(struct kvm *kvm);
628 int avic_vm_init(struct kvm *kvm);
629 void avic_init_vmcb(struct vcpu_svm *svm, struct vmcb *vmcb);
630 int avic_incomplete_ipi_interception(struct kvm_vcpu *vcpu);
631 int avic_unaccelerated_access_interception(struct kvm_vcpu *vcpu);
632 int avic_init_vcpu(struct vcpu_svm *svm);
633 void avic_vcpu_load(struct kvm_vcpu *vcpu, int cpu);
634 void avic_vcpu_put(struct kvm_vcpu *vcpu);
635 void avic_apicv_post_state_restore(struct kvm_vcpu *vcpu);
636 void avic_refresh_apicv_exec_ctrl(struct kvm_vcpu *vcpu);
637 bool avic_check_apicv_inhibit_reasons(enum kvm_apicv_inhibit reason);
638 int avic_pi_update_irte(struct kvm *kvm, unsigned int host_irq,
639 uint32_t guest_irq, bool set);
640 void avic_vcpu_blocking(struct kvm_vcpu *vcpu);
641 void avic_vcpu_unblocking(struct kvm_vcpu *vcpu);
642 void avic_ring_doorbell(struct kvm_vcpu *vcpu);
643 unsigned long avic_vcpu_get_apicv_inhibit_reasons(struct kvm_vcpu *vcpu);
644 void avic_refresh_virtual_apic_mode(struct kvm_vcpu *vcpu);
645
646
647 /* sev.c */
648
649 #define GHCB_VERSION_MAX 1ULL
650 #define GHCB_VERSION_MIN 1ULL
651
652
653 extern unsigned int max_sev_asid;
654
655 void sev_vm_destroy(struct kvm *kvm);
656 int sev_mem_enc_ioctl(struct kvm *kvm, void __user *argp);
657 int sev_mem_enc_register_region(struct kvm *kvm,
658 struct kvm_enc_region *range);
659 int sev_mem_enc_unregister_region(struct kvm *kvm,
660 struct kvm_enc_region *range);
661 int sev_vm_copy_enc_context_from(struct kvm *kvm, unsigned int source_fd);
662 int sev_vm_move_enc_context_from(struct kvm *kvm, unsigned int source_fd);
663 void sev_guest_memory_reclaimed(struct kvm *kvm);
664
665 void pre_sev_run(struct vcpu_svm *svm, int cpu);
666 void __init sev_set_cpu_caps(void);
667 void __init sev_hardware_setup(void);
668 void sev_hardware_unsetup(void);
669 int sev_cpu_init(struct svm_cpu_data *sd);
670 void sev_init_vmcb(struct vcpu_svm *svm);
671 void sev_free_vcpu(struct kvm_vcpu *vcpu);
672 int sev_handle_vmgexit(struct kvm_vcpu *vcpu);
673 int sev_es_string_io(struct vcpu_svm *svm, int size, unsigned int port, int in);
674 void sev_es_vcpu_reset(struct vcpu_svm *svm);
675 void sev_vcpu_deliver_sipi_vector(struct kvm_vcpu *vcpu, u8 vector);
676 void sev_es_prepare_switch_to_guest(struct sev_es_save_area *hostsa);
677 void sev_es_unmap_ghcb(struct vcpu_svm *svm);
678
679 /* vmenter.S */
680
681 void __svm_sev_es_vcpu_run(struct vcpu_svm *svm, bool spec_ctrl_intercepted);
682 void __svm_vcpu_run(struct vcpu_svm *svm, bool spec_ctrl_intercepted);
683
684 #endif