]> rtime.felk.cvut.cz Git - l4.git/blob - l4/pkg/l4sys/include/__vm-svm.h
update
[l4.git] / l4 / pkg / l4sys / include / __vm-svm.h
1 /**
2  * \internal
3  * \file
4  * \brief X86 virtualization interface.
5  */
6 /*
7  * (c) 2008-2009 Adam Lackorzynski <adam@os.inf.tu-dresden.de>,
8  *               Alexander Warg <warg@os.inf.tu-dresden.de>
9  *     economic rights: Technische Universität Dresden (Germany)
10  *
11  * This file is part of TUD:OS and distributed under the terms of the
12  * GNU General Public License 2.
13  * Please see the COPYING-GPL-2 file for details.
14  *
15  * As a special exception, you may use this file as part of a free software
16  * library without restriction.  Specifically, if other files instantiate
17  * templates or use macros or inline functions from this file, or you compile
18  * this file and link it with other files to produce an executable, this
19  * file does not by itself cause the resulting executable to be covered by
20  * the GNU General Public License.  This exception does not however
21  * invalidate any other reasons why the executable file might be covered by
22  * the GNU General Public License.
23  */
24 #pragma once
25
26 #include <l4/sys/types.h>
27
28 /**
29  * \defgroup l4_vm_svm_api VM API for SVM
30  * \brief Virtual machine API for SVM.
31  * \ingroup l4_vm_api
32  */
33
34
35 /**
36  * \brief VMCB structure for SVM VMs
37  * \ingroup l4_vm_svm_api
38  */
39 typedef struct l4_vm_svm_vmcb_control_area
40 {
41   l4_uint16_t intercept_rd_crX;
42   l4_uint16_t intercept_wr_crX;
43
44   l4_uint16_t intercept_rd_drX;
45   l4_uint16_t intercept_wr_drX;
46
47   l4_uint32_t intercept_exceptions;
48
49   l4_uint32_t intercept_instruction0;
50   l4_uint32_t intercept_instruction1;
51
52   l4_uint8_t _reserved0[44];
53
54   l4_uint64_t iopm_base_pa;
55   l4_uint64_t msrpm_base_pa;
56   l4_uint64_t tsc_offset;
57   l4_uint64_t guest_asid_tlb_ctl;
58   l4_uint64_t interrupt_ctl;
59   l4_uint64_t interrupt_shadow;
60   l4_uint64_t exitcode;
61   l4_uint64_t exitinfo1;
62   l4_uint64_t exitinfo2;
63   l4_uint64_t exitintinfo;
64   l4_uint64_t np_enable;
65
66   l4_uint8_t _reserved1[16];
67
68   l4_uint64_t eventinj;
69   l4_uint64_t n_cr3;
70   l4_uint64_t lbr_virtualization_enable;
71
72   l4_uint8_t _reserved2[832];
73 } __attribute__((packed)) l4_vm_svm_vmcb_control_area_t;
74
75 /**
76  * \brief State save area segment selector struct
77  * \ingroup l4_vm_svm_api
78  */
79 typedef struct l4_vm_svm_vmcb_state_save_area_seg
80 {
81   l4_uint16_t selector;
82   l4_uint16_t attrib;
83   l4_uint32_t limit;
84   l4_uint64_t base;
85 } __attribute__((packed)) l4_vm_svm_vmcb_state_save_area_seg_t;
86
87 /**
88  * \brief State save area structure for SVM VMs
89  * \ingroup l4_vm_svm_api
90  */
91 typedef struct l4_vm_svm_vmcb_state_save_area
92 {
93   struct l4_vm_svm_vmcb_state_save_area_seg es;
94   struct l4_vm_svm_vmcb_state_save_area_seg cs;
95   struct l4_vm_svm_vmcb_state_save_area_seg ss;
96   struct l4_vm_svm_vmcb_state_save_area_seg ds;
97   struct l4_vm_svm_vmcb_state_save_area_seg fs;
98   struct l4_vm_svm_vmcb_state_save_area_seg gs;
99   struct l4_vm_svm_vmcb_state_save_area_seg gdtr;
100   struct l4_vm_svm_vmcb_state_save_area_seg ldtr;
101   struct l4_vm_svm_vmcb_state_save_area_seg idtr;
102   struct l4_vm_svm_vmcb_state_save_area_seg tr;
103
104   l4_uint8_t _reserved0[43];
105
106   l4_uint8_t cpl;
107
108   l4_uint32_t _reserved1;
109
110   l4_uint64_t efer;
111
112   l4_uint8_t _reserved2[112];
113
114   l4_uint64_t cr4;
115   l4_uint64_t cr3;
116   l4_uint64_t cr0;
117   l4_uint64_t dr7;
118   l4_uint64_t dr6;
119   l4_uint64_t rflags;
120   l4_uint64_t rip;
121
122   l4_uint8_t _reserved3[88];
123
124   l4_uint64_t rsp;
125
126   l4_uint8_t _reserved4[24];
127
128   l4_uint64_t rax;
129   l4_uint64_t star;
130   l4_uint64_t lstar;
131   l4_uint64_t cstar;
132   l4_uint64_t sfmask;
133   l4_uint64_t kernelgsbase;
134   l4_uint64_t sysenter_cs;
135   l4_uint64_t sysenter_esp;
136   l4_uint64_t sysenter_eip;
137   l4_uint64_t cr2;
138
139   l4_uint8_t _reserved5[32];
140
141   l4_uint64_t g_pat;
142   l4_uint64_t dbgctl;
143   l4_uint64_t br_from;
144   l4_uint64_t br_to;
145   l4_uint64_t lastexcpfrom;
146   l4_uint64_t last_excpto;
147
148   l4_uint8_t _reserved6[2408];
149 } __attribute__((packed)) l4_vm_svm_vmcb_state_save_area_t;
150
151
152 /**
153  * \brief Control structure for SVM VMs
154  * \ingroup l4_vm_svm_api
155  */
156 typedef struct l4_vm_svm_vmcb_t
157 {
158   l4_vm_svm_vmcb_control_area_t    control_area;
159   l4_vm_svm_vmcb_state_save_area_t state_save_area;
160 } l4_vm_svm_vmcb_t;