xref: /illumos-gate/usr/src/uts/intel/io/vmm/amd/svm_softc.h (revision 7c8c0b8227679b4684566e408ccc96d6ef7175e9)
1 /*-
2  * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3  *
4  * Copyright (c) 2013 Anish Gupta (akgupt3@gmail.com)
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice unmodified, this list of conditions, and the following
12  *    disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27  *
28  * $FreeBSD$
29  */
30 
31 #ifndef	_SVM_SOFTC_H_
32 #define	_SVM_SOFTC_H_
33 
34 #define	SVM_IO_BITMAP_SIZE	(3 * PAGE_SIZE)
35 #define	SVM_MSR_BITMAP_SIZE	(2 * PAGE_SIZE)
36 
37 #include <sys/hma.h>
38 
39 /* This must match HOST_MSR_NUM in svm_msr.c (where it is CTASSERTed) */
40 #define	SVM_HOST_MSR_NUM	4
41 
42 /*
43  * XXX separate out 'struct vmcb' from 'svm_vcpu' to avoid wasting space
44  * due to VMCB alignment requirements.
45  */
46 struct svm_vcpu {
47 	struct vmcb	vmcb;	 /* hardware saved vcpu context */
48 	struct svm_regctx swctx; /* software saved vcpu context */
49 	uint64_t	vmcb_pa; /* VMCB physical address */
50 	uint64_t	nextrip; /* next instruction to be executed by guest */
51 	int		lastcpu; /* host cpu that the vcpu last ran on */
52 	uint32_t	dirty;	 /* state cache bits that must be cleared */
53 	uint64_t	nptgen;	 /* page table gen when the vcpu last ran */
54 	hma_svm_asid_t	hma_asid;
55 	boolean_t	loaded;
56 } __aligned(PAGE_SIZE);
57 
58 /*
59  * SVM softc, one per virtual machine.
60  */
61 struct svm_softc {
62 	uint8_t apic_page[VM_MAXCPU][PAGE_SIZE];
63 	struct svm_vcpu vcpu[VM_MAXCPU];
64 	uint64_t	nptp;		/* nested page table (host PA) */
65 	uint8_t		*iopm_bitmap;	/* shared by all vcpus */
66 	uint8_t		*msr_bitmap;	/* shared by all vcpus */
67 	struct vm	*vm;
68 	uint64_t	host_msrs[VM_MAXCPU][SVM_HOST_MSR_NUM];
69 };
70 
71 CTASSERT((offsetof(struct svm_softc, nptp) & PAGE_MASK) == 0);
72 
73 static __inline struct svm_vcpu *
74 svm_get_vcpu(struct svm_softc *sc, int vcpu)
75 {
76 
77 	return (&(sc->vcpu[vcpu]));
78 }
79 
80 static __inline struct vmcb *
81 svm_get_vmcb(struct svm_softc *sc, int vcpu)
82 {
83 
84 	return (&(sc->vcpu[vcpu].vmcb));
85 }
86 
87 static __inline struct vmcb_state *
88 svm_get_vmcb_state(struct svm_softc *sc, int vcpu)
89 {
90 
91 	return (&(sc->vcpu[vcpu].vmcb.state));
92 }
93 
94 static __inline struct vmcb_ctrl *
95 svm_get_vmcb_ctrl(struct svm_softc *sc, int vcpu)
96 {
97 
98 	return (&(sc->vcpu[vcpu].vmcb.ctrl));
99 }
100 
101 static __inline struct svm_regctx *
102 svm_get_guest_regctx(struct svm_softc *sc, int vcpu)
103 {
104 
105 	return (&(sc->vcpu[vcpu].swctx));
106 }
107 
108 static __inline void
109 svm_set_dirty(struct svm_softc *sc, int vcpu, uint32_t dirtybits)
110 {
111 	struct svm_vcpu *vcpustate;
112 
113 	vcpustate = svm_get_vcpu(sc, vcpu);
114 	vcpustate->dirty |= dirtybits;
115 }
116 
117 #endif /* _SVM_SOFTC_H_ */
118