blob: 313fe232c9be14ef061b793cde885c4326ab3803 [file] [log] [blame]
Elliott Hughesabd62612013-11-08 11:45:48 -08001/****************************************************************************
2 ****************************************************************************
3 ***
4 *** This header was automatically generated from a Linux kernel header
5 *** of the same name, to make information necessary for userspace to
6 *** call into the kernel available to libc. It contains only constants,
7 *** structures, and macros generated from the original header, and thus,
8 *** contains no copyrightable information.
9 ***
10 *** To edit the content of this header, modify the corresponding
11 *** source file (e.g. under external/kernel-headers/original/) then
12 *** run bionic/libc/kernel/tools/update_all.py
13 ***
14 *** Any manual change here will be lost the next time this script will
15 *** be run. You've been warned!
16 ***
17 ****************************************************************************
18 ****************************************************************************/
19#ifndef _ASM_X86_KVM_H
20#define _ASM_X86_KVM_H
21#include <linux/types.h>
22#include <linux/ioctl.h>
Christopher Ferris525ce912017-07-26 13:12:53 -070023#define KVM_PIO_PAGE_OFFSET 1
24#define KVM_COALESCED_MMIO_PAGE_OFFSET 2
Christopher Ferris05667cd2021-02-16 16:01:34 -080025#define KVM_DIRTY_LOG_PAGE_OFFSET 64
Elliott Hughesabd62612013-11-08 11:45:48 -080026#define DE_VECTOR 0
27#define DB_VECTOR 1
28#define BP_VECTOR 3
29#define OF_VECTOR 4
Elliott Hughesabd62612013-11-08 11:45:48 -080030#define BR_VECTOR 5
31#define UD_VECTOR 6
32#define NM_VECTOR 7
33#define DF_VECTOR 8
Elliott Hughesabd62612013-11-08 11:45:48 -080034#define TS_VECTOR 10
35#define NP_VECTOR 11
36#define SS_VECTOR 12
37#define GP_VECTOR 13
Elliott Hughesabd62612013-11-08 11:45:48 -080038#define PF_VECTOR 14
39#define MF_VECTOR 16
Christopher Ferris82d75042015-01-26 10:57:07 -080040#define AC_VECTOR 17
Elliott Hughesabd62612013-11-08 11:45:48 -080041#define MC_VECTOR 18
Christopher Ferris82d75042015-01-26 10:57:07 -080042#define XM_VECTOR 19
43#define VE_VECTOR 20
44#define __KVM_HAVE_PIT
Elliott Hughesabd62612013-11-08 11:45:48 -080045#define __KVM_HAVE_IOAPIC
46#define __KVM_HAVE_IRQ_LINE
47#define __KVM_HAVE_MSI
48#define __KVM_HAVE_USER_NMI
Elliott Hughesabd62612013-11-08 11:45:48 -080049#define __KVM_HAVE_GUEST_DEBUG
50#define __KVM_HAVE_MSIX
51#define __KVM_HAVE_MCE
52#define __KVM_HAVE_PIT_STATE2
Elliott Hughesabd62612013-11-08 11:45:48 -080053#define __KVM_HAVE_XEN_HVM
54#define __KVM_HAVE_VCPU_EVENTS
55#define __KVM_HAVE_DEBUGREGS
56#define __KVM_HAVE_XSAVE
Elliott Hughesabd62612013-11-08 11:45:48 -080057#define __KVM_HAVE_XCRS
58#define __KVM_HAVE_READONLY_MEM
59#define KVM_NR_INTERRUPTS 256
60struct kvm_memory_alias {
Tao Baod7db5942015-01-28 10:07:51 -080061 __u32 slot;
Tao Baod7db5942015-01-28 10:07:51 -080062 __u32 flags;
63 __u64 guest_phys_addr;
64 __u64 memory_size;
65 __u64 target_phys_addr;
Elliott Hughesabd62612013-11-08 11:45:48 -080066};
67struct kvm_pic_state {
Tao Baod7db5942015-01-28 10:07:51 -080068 __u8 last_irr;
69 __u8 irr;
Tao Baod7db5942015-01-28 10:07:51 -080070 __u8 imr;
71 __u8 isr;
72 __u8 priority_add;
73 __u8 irq_base;
Tao Baod7db5942015-01-28 10:07:51 -080074 __u8 read_reg_select;
75 __u8 poll;
76 __u8 special_mask;
77 __u8 init_state;
Tao Baod7db5942015-01-28 10:07:51 -080078 __u8 auto_eoi;
79 __u8 rotate_on_auto_eoi;
80 __u8 special_fully_nested_mode;
81 __u8 init4;
Tao Baod7db5942015-01-28 10:07:51 -080082 __u8 elcr;
83 __u8 elcr_mask;
Elliott Hughesabd62612013-11-08 11:45:48 -080084};
Elliott Hughesabd62612013-11-08 11:45:48 -080085#define KVM_IOAPIC_NUM_PINS 24
86struct kvm_ioapic_state {
Tao Baod7db5942015-01-28 10:07:51 -080087 __u64 base_address;
88 __u32 ioregsel;
89 __u32 id;
Tao Baod7db5942015-01-28 10:07:51 -080090 __u32 irr;
91 __u32 pad;
92 union {
93 __u64 bits;
Tao Baod7db5942015-01-28 10:07:51 -080094 struct {
95 __u8 vector;
96 __u8 delivery_mode : 3;
97 __u8 dest_mode : 1;
Tao Baod7db5942015-01-28 10:07:51 -080098 __u8 delivery_status : 1;
99 __u8 polarity : 1;
100 __u8 remote_irr : 1;
101 __u8 trig_mode : 1;
Tao Baod7db5942015-01-28 10:07:51 -0800102 __u8 mask : 1;
103 __u8 reserve : 7;
104 __u8 reserved[4];
105 __u8 dest_id;
Tao Baod7db5942015-01-28 10:07:51 -0800106 } fields;
107 } redirtbl[KVM_IOAPIC_NUM_PINS];
Elliott Hughesabd62612013-11-08 11:45:48 -0800108};
Elliott Hughesabd62612013-11-08 11:45:48 -0800109#define KVM_IRQCHIP_PIC_MASTER 0
110#define KVM_IRQCHIP_PIC_SLAVE 1
111#define KVM_IRQCHIP_IOAPIC 2
112#define KVM_NR_IRQCHIPS 3
Christopher Ferris05d08e92016-02-04 13:16:38 -0800113#define KVM_RUN_X86_SMM (1 << 0)
Christopher Ferrisa9750ed2021-05-03 14:02:49 -0700114#define KVM_RUN_X86_BUS_LOCK (1 << 1)
Christopher Ferris05d08e92016-02-04 13:16:38 -0800115struct kvm_regs {
Tao Baod7db5942015-01-28 10:07:51 -0800116 __u64 rax, rbx, rcx, rdx;
117 __u64 rsi, rdi, rsp, rbp;
118 __u64 r8, r9, r10, r11;
Christopher Ferris05d08e92016-02-04 13:16:38 -0800119 __u64 r12, r13, r14, r15;
Tao Baod7db5942015-01-28 10:07:51 -0800120 __u64 rip, rflags;
Elliott Hughesabd62612013-11-08 11:45:48 -0800121};
122#define KVM_APIC_REG_SIZE 0x400
Christopher Ferris05d08e92016-02-04 13:16:38 -0800123struct kvm_lapic_state {
Tao Baod7db5942015-01-28 10:07:51 -0800124 char regs[KVM_APIC_REG_SIZE];
Elliott Hughesabd62612013-11-08 11:45:48 -0800125};
126struct kvm_segment {
Christopher Ferris05d08e92016-02-04 13:16:38 -0800127 __u64 base;
Tao Baod7db5942015-01-28 10:07:51 -0800128 __u32 limit;
129 __u16 selector;
130 __u8 type;
Christopher Ferris05d08e92016-02-04 13:16:38 -0800131 __u8 present, dpl, db, s, l, g, avl;
Tao Baod7db5942015-01-28 10:07:51 -0800132 __u8 unusable;
133 __u8 padding;
Elliott Hughesabd62612013-11-08 11:45:48 -0800134};
Christopher Ferris05d08e92016-02-04 13:16:38 -0800135struct kvm_dtable {
Tao Baod7db5942015-01-28 10:07:51 -0800136 __u64 base;
137 __u16 limit;
138 __u16 padding[3];
Christopher Ferris05d08e92016-02-04 13:16:38 -0800139};
Elliott Hughesabd62612013-11-08 11:45:48 -0800140struct kvm_sregs {
Tao Baod7db5942015-01-28 10:07:51 -0800141 struct kvm_segment cs, ds, es, fs, gs, ss;
142 struct kvm_segment tr, ldt;
Christopher Ferris05d08e92016-02-04 13:16:38 -0800143 struct kvm_dtable gdt, idt;
Tao Baod7db5942015-01-28 10:07:51 -0800144 __u64 cr0, cr2, cr3, cr4, cr8;
145 __u64 efer;
146 __u64 apic_base;
Christopher Ferris05d08e92016-02-04 13:16:38 -0800147 __u64 interrupt_bitmap[(KVM_NR_INTERRUPTS + 63) / 64];
Elliott Hughesabd62612013-11-08 11:45:48 -0800148};
149struct kvm_fpu {
Tao Baod7db5942015-01-28 10:07:51 -0800150 __u8 fpr[8][16];
Christopher Ferris05d08e92016-02-04 13:16:38 -0800151 __u16 fcw;
Tao Baod7db5942015-01-28 10:07:51 -0800152 __u16 fsw;
153 __u8 ftwx;
154 __u8 pad1;
Christopher Ferris05d08e92016-02-04 13:16:38 -0800155 __u16 last_opcode;
Tao Baod7db5942015-01-28 10:07:51 -0800156 __u64 last_ip;
157 __u64 last_dp;
158 __u8 xmm[16][16];
Christopher Ferris05d08e92016-02-04 13:16:38 -0800159 __u32 mxcsr;
Tao Baod7db5942015-01-28 10:07:51 -0800160 __u32 pad2;
Elliott Hughesabd62612013-11-08 11:45:48 -0800161};
162struct kvm_msr_entry {
Christopher Ferris05d08e92016-02-04 13:16:38 -0800163 __u32 index;
Tao Baod7db5942015-01-28 10:07:51 -0800164 __u32 reserved;
165 __u64 data;
Elliott Hughesabd62612013-11-08 11:45:48 -0800166};
Christopher Ferris05d08e92016-02-04 13:16:38 -0800167struct kvm_msrs {
Tao Baod7db5942015-01-28 10:07:51 -0800168 __u32 nmsrs;
169 __u32 pad;
170 struct kvm_msr_entry entries[0];
Christopher Ferris05d08e92016-02-04 13:16:38 -0800171};
Elliott Hughesabd62612013-11-08 11:45:48 -0800172struct kvm_msr_list {
Tao Baod7db5942015-01-28 10:07:51 -0800173 __u32 nmsrs;
174 __u32 indices[0];
Christopher Ferris05d08e92016-02-04 13:16:38 -0800175};
Christopher Ferris32ff3f82020-12-14 13:10:04 -0800176#define KVM_MSR_FILTER_MAX_BITMAP_SIZE 0x600
177struct kvm_msr_filter_range {
178#define KVM_MSR_FILTER_READ (1 << 0)
179#define KVM_MSR_FILTER_WRITE (1 << 1)
180 __u32 flags;
181 __u32 nmsrs;
182 __u32 base;
183 __u8 * bitmap;
184};
185#define KVM_MSR_FILTER_MAX_RANGES 16
186struct kvm_msr_filter {
187#define KVM_MSR_FILTER_DEFAULT_ALLOW (0 << 0)
188#define KVM_MSR_FILTER_DEFAULT_DENY (1 << 0)
189 __u32 flags;
190 struct kvm_msr_filter_range ranges[KVM_MSR_FILTER_MAX_RANGES];
191};
Elliott Hughesabd62612013-11-08 11:45:48 -0800192struct kvm_cpuid_entry {
Tao Baod7db5942015-01-28 10:07:51 -0800193 __u32 function;
194 __u32 eax;
Christopher Ferris05d08e92016-02-04 13:16:38 -0800195 __u32 ebx;
Tao Baod7db5942015-01-28 10:07:51 -0800196 __u32 ecx;
197 __u32 edx;
198 __u32 padding;
Christopher Ferris05d08e92016-02-04 13:16:38 -0800199};
Elliott Hughesabd62612013-11-08 11:45:48 -0800200struct kvm_cpuid {
Tao Baod7db5942015-01-28 10:07:51 -0800201 __u32 nent;
202 __u32 padding;
Christopher Ferris05d08e92016-02-04 13:16:38 -0800203 struct kvm_cpuid_entry entries[0];
Elliott Hughesabd62612013-11-08 11:45:48 -0800204};
205struct kvm_cpuid_entry2 {
Tao Baod7db5942015-01-28 10:07:51 -0800206 __u32 function;
Christopher Ferris05d08e92016-02-04 13:16:38 -0800207 __u32 index;
Tao Baod7db5942015-01-28 10:07:51 -0800208 __u32 flags;
209 __u32 eax;
210 __u32 ebx;
Christopher Ferris05d08e92016-02-04 13:16:38 -0800211 __u32 ecx;
Tao Baod7db5942015-01-28 10:07:51 -0800212 __u32 edx;
213 __u32 padding[3];
Elliott Hughesabd62612013-11-08 11:45:48 -0800214};
Christopher Ferris106b3a82016-08-24 12:15:38 -0700215#define KVM_CPUID_FLAG_SIGNIFCANT_INDEX (1 << 0)
216#define KVM_CPUID_FLAG_STATEFUL_FUNC (1 << 1)
217#define KVM_CPUID_FLAG_STATE_READ_NEXT (1 << 2)
Elliott Hughesabd62612013-11-08 11:45:48 -0800218struct kvm_cpuid2 {
Christopher Ferris05d08e92016-02-04 13:16:38 -0800219 __u32 nent;
Tao Baod7db5942015-01-28 10:07:51 -0800220 __u32 padding;
221 struct kvm_cpuid_entry2 entries[0];
Elliott Hughesabd62612013-11-08 11:45:48 -0800222};
Christopher Ferris05d08e92016-02-04 13:16:38 -0800223struct kvm_pit_channel_state {
Tao Baod7db5942015-01-28 10:07:51 -0800224 __u32 count;
225 __u16 latched_count;
226 __u8 count_latched;
Christopher Ferris05d08e92016-02-04 13:16:38 -0800227 __u8 status_latched;
Tao Baod7db5942015-01-28 10:07:51 -0800228 __u8 status;
229 __u8 read_state;
230 __u8 write_state;
Christopher Ferris05d08e92016-02-04 13:16:38 -0800231 __u8 write_latch;
Tao Baod7db5942015-01-28 10:07:51 -0800232 __u8 rw_mode;
233 __u8 mode;
234 __u8 bcd;
Christopher Ferris05d08e92016-02-04 13:16:38 -0800235 __u8 gate;
Tao Baod7db5942015-01-28 10:07:51 -0800236 __s64 count_load_time;
Elliott Hughesabd62612013-11-08 11:45:48 -0800237};
238struct kvm_debug_exit_arch {
Christopher Ferris05d08e92016-02-04 13:16:38 -0800239 __u32 exception;
Tao Baod7db5942015-01-28 10:07:51 -0800240 __u32 pad;
241 __u64 pc;
242 __u64 dr6;
Christopher Ferris05d08e92016-02-04 13:16:38 -0800243 __u64 dr7;
Elliott Hughesabd62612013-11-08 11:45:48 -0800244};
245#define KVM_GUESTDBG_USE_SW_BP 0x00010000
246#define KVM_GUESTDBG_USE_HW_BP 0x00020000
Christopher Ferris05d08e92016-02-04 13:16:38 -0800247#define KVM_GUESTDBG_INJECT_DB 0x00040000
Elliott Hughesabd62612013-11-08 11:45:48 -0800248#define KVM_GUESTDBG_INJECT_BP 0x00080000
249struct kvm_guest_debug_arch {
Tao Baod7db5942015-01-28 10:07:51 -0800250 __u64 debugreg[8];
Christopher Ferris05d08e92016-02-04 13:16:38 -0800251};
Elliott Hughesabd62612013-11-08 11:45:48 -0800252struct kvm_pit_state {
Tao Baod7db5942015-01-28 10:07:51 -0800253 struct kvm_pit_channel_state channels[3];
Elliott Hughesabd62612013-11-08 11:45:48 -0800254};
Christopher Ferris05d08e92016-02-04 13:16:38 -0800255#define KVM_PIT_FLAGS_HPET_LEGACY 0x00000001
Elliott Hughesabd62612013-11-08 11:45:48 -0800256struct kvm_pit_state2 {
Tao Baod7db5942015-01-28 10:07:51 -0800257 struct kvm_pit_channel_state channels[3];
258 __u32 flags;
Christopher Ferris05d08e92016-02-04 13:16:38 -0800259 __u32 reserved[9];
Elliott Hughesabd62612013-11-08 11:45:48 -0800260};
261struct kvm_reinject_control {
Tao Baod7db5942015-01-28 10:07:51 -0800262 __u8 pit_reinject;
Christopher Ferris05d08e92016-02-04 13:16:38 -0800263 __u8 reserved[31];
Elliott Hughesabd62612013-11-08 11:45:48 -0800264};
265#define KVM_VCPUEVENT_VALID_NMI_PENDING 0x00000001
266#define KVM_VCPUEVENT_VALID_SIPI_VECTOR 0x00000002
Christopher Ferris05d08e92016-02-04 13:16:38 -0800267#define KVM_VCPUEVENT_VALID_SHADOW 0x00000004
268#define KVM_VCPUEVENT_VALID_SMM 0x00000008
Christopher Ferris86a48372019-01-10 14:14:59 -0800269#define KVM_VCPUEVENT_VALID_PAYLOAD 0x00000010
Elliott Hughesabd62612013-11-08 11:45:48 -0800270#define KVM_X86_SHADOW_INT_MOV_SS 0x01
271#define KVM_X86_SHADOW_INT_STI 0x02
272struct kvm_vcpu_events {
Tao Baod7db5942015-01-28 10:07:51 -0800273 struct {
Tao Baod7db5942015-01-28 10:07:51 -0800274 __u8 injected;
275 __u8 nr;
276 __u8 has_error_code;
Christopher Ferris86a48372019-01-10 14:14:59 -0800277 __u8 pending;
Tao Baod7db5942015-01-28 10:07:51 -0800278 __u32 error_code;
279 } exception;
280 struct {
281 __u8 injected;
Tao Baod7db5942015-01-28 10:07:51 -0800282 __u8 nr;
283 __u8 soft;
284 __u8 shadow;
285 } interrupt;
Tao Baod7db5942015-01-28 10:07:51 -0800286 struct {
287 __u8 injected;
288 __u8 pending;
289 __u8 masked;
Tao Baod7db5942015-01-28 10:07:51 -0800290 __u8 pad;
291 } nmi;
292 __u32 sipi_vector;
293 __u32 flags;
Christopher Ferris05d08e92016-02-04 13:16:38 -0800294 struct {
295 __u8 smm;
Christopher Ferris05d08e92016-02-04 13:16:38 -0800296 __u8 pending;
297 __u8 smm_inside_nmi;
298 __u8 latched_init;
299 } smi;
Christopher Ferris86a48372019-01-10 14:14:59 -0800300 __u8 reserved[27];
301 __u8 exception_has_payload;
302 __u64 exception_payload;
Elliott Hughesabd62612013-11-08 11:45:48 -0800303};
304struct kvm_debugregs {
Tao Baod7db5942015-01-28 10:07:51 -0800305 __u64 db[4];
Tao Baod7db5942015-01-28 10:07:51 -0800306 __u64 dr6;
307 __u64 dr7;
308 __u64 flags;
309 __u64 reserved[9];
Elliott Hughesabd62612013-11-08 11:45:48 -0800310};
311struct kvm_xsave {
Tao Baod7db5942015-01-28 10:07:51 -0800312 __u32 region[1024];
Elliott Hughesabd62612013-11-08 11:45:48 -0800313};
314#define KVM_MAX_XCRS 16
315struct kvm_xcr {
Tao Baod7db5942015-01-28 10:07:51 -0800316 __u32 xcr;
317 __u32 reserved;
Tao Baod7db5942015-01-28 10:07:51 -0800318 __u64 value;
Elliott Hughesabd62612013-11-08 11:45:48 -0800319};
320struct kvm_xcrs {
Tao Baod7db5942015-01-28 10:07:51 -0800321 __u32 nr_xcrs;
Tao Baod7db5942015-01-28 10:07:51 -0800322 __u32 flags;
323 struct kvm_xcr xcrs[KVM_MAX_XCRS];
324 __u64 padding[16];
Elliott Hughesabd62612013-11-08 11:45:48 -0800325};
Christopher Ferris76a1d452018-06-27 14:12:29 -0700326#define KVM_SYNC_X86_REGS (1UL << 0)
327#define KVM_SYNC_X86_SREGS (1UL << 1)
328#define KVM_SYNC_X86_EVENTS (1UL << 2)
329#define KVM_SYNC_X86_VALID_FIELDS (KVM_SYNC_X86_REGS | KVM_SYNC_X86_SREGS | KVM_SYNC_X86_EVENTS)
Elliott Hughesabd62612013-11-08 11:45:48 -0800330struct kvm_sync_regs {
Christopher Ferris76a1d452018-06-27 14:12:29 -0700331 struct kvm_regs regs;
332 struct kvm_sregs sregs;
333 struct kvm_vcpu_events events;
Elliott Hughesabd62612013-11-08 11:45:48 -0800334};
Christopher Ferris05d08e92016-02-04 13:16:38 -0800335#define KVM_X86_QUIRK_LINT0_REENABLED (1 << 0)
336#define KVM_X86_QUIRK_CD_NW_CLEARED (1 << 1)
Christopher Ferris9ce28842018-10-25 12:11:39 -0700337#define KVM_X86_QUIRK_LAPIC_MMIO_HOLE (1 << 2)
Christopher Ferris24f97eb2019-05-20 12:58:13 -0700338#define KVM_X86_QUIRK_OUT_7E_INC_RIP (1 << 3)
Christopher Ferrisb8a95e22019-10-02 18:29:20 -0700339#define KVM_X86_QUIRK_MISC_ENABLE_NO_MWAIT (1 << 4)
Christopher Ferrisaeddbcf2019-07-08 12:45:46 -0700340#define KVM_STATE_NESTED_FORMAT_VMX 0
341#define KVM_STATE_NESTED_FORMAT_SVM 1
Christopher Ferris9ce28842018-10-25 12:11:39 -0700342#define KVM_STATE_NESTED_GUEST_MODE 0x00000001
343#define KVM_STATE_NESTED_RUN_PENDING 0x00000002
Christopher Ferris86a48372019-01-10 14:14:59 -0800344#define KVM_STATE_NESTED_EVMCS 0x00000004
Christopher Ferrisbb9fcb42020-04-06 11:38:04 -0700345#define KVM_STATE_NESTED_MTF_PENDING 0x00000008
Christopher Ferris8177cdf2020-08-03 11:53:55 -0700346#define KVM_STATE_NESTED_GIF_SET 0x00000100
Christopher Ferris9ce28842018-10-25 12:11:39 -0700347#define KVM_STATE_NESTED_SMM_GUEST_MODE 0x00000001
348#define KVM_STATE_NESTED_SMM_VMXON 0x00000002
Christopher Ferrisaeddbcf2019-07-08 12:45:46 -0700349#define KVM_STATE_NESTED_VMX_VMCS_SIZE 0x1000
Christopher Ferris8177cdf2020-08-03 11:53:55 -0700350#define KVM_STATE_NESTED_SVM_VMCB_SIZE 0x1000
351#define KVM_STATE_VMX_PREEMPTION_TIMER_DEADLINE 0x00000001
Christopher Ferrisaeddbcf2019-07-08 12:45:46 -0700352struct kvm_vmx_nested_state_data {
353 __u8 vmcs12[KVM_STATE_NESTED_VMX_VMCS_SIZE];
354 __u8 shadow_vmcs12[KVM_STATE_NESTED_VMX_VMCS_SIZE];
355};
356struct kvm_vmx_nested_state_hdr {
Christopher Ferris9ce28842018-10-25 12:11:39 -0700357 __u64 vmxon_pa;
Christopher Ferrisaeddbcf2019-07-08 12:45:46 -0700358 __u64 vmcs12_pa;
Christopher Ferris9ce28842018-10-25 12:11:39 -0700359 struct {
360 __u16 flags;
361 } smm;
Christopher Ferrisfcc3b4f2021-07-01 01:30:21 +0000362 __u16 pad;
Christopher Ferris8177cdf2020-08-03 11:53:55 -0700363 __u32 flags;
364 __u64 preemption_timer_deadline;
365};
366struct kvm_svm_nested_state_data {
367 __u8 vmcb12[KVM_STATE_NESTED_SVM_VMCB_SIZE];
368};
369struct kvm_svm_nested_state_hdr {
370 __u64 vmcb_pa;
Christopher Ferris9ce28842018-10-25 12:11:39 -0700371};
372struct kvm_nested_state {
373 __u16 flags;
374 __u16 format;
375 __u32 size;
376 union {
Christopher Ferrisaeddbcf2019-07-08 12:45:46 -0700377 struct kvm_vmx_nested_state_hdr vmx;
Christopher Ferris8177cdf2020-08-03 11:53:55 -0700378 struct kvm_svm_nested_state_hdr svm;
Christopher Ferris9ce28842018-10-25 12:11:39 -0700379 __u8 pad[120];
Christopher Ferrisaeddbcf2019-07-08 12:45:46 -0700380 } hdr;
381 union {
382 struct kvm_vmx_nested_state_data vmx[0];
Christopher Ferris8177cdf2020-08-03 11:53:55 -0700383 struct kvm_svm_nested_state_data svm[0];
Christopher Ferrisaeddbcf2019-07-08 12:45:46 -0700384 } data;
Christopher Ferris9ce28842018-10-25 12:11:39 -0700385};
Christopher Ferrisb8a95e22019-10-02 18:29:20 -0700386struct kvm_pmu_event_filter {
387 __u32 action;
388 __u32 nevents;
389 __u32 fixed_counter_bitmap;
390 __u32 flags;
391 __u32 pad[4];
392 __u64 events[0];
393};
394#define KVM_PMU_EVENT_ALLOW 0
395#define KVM_PMU_EVENT_DENY 1
Elliott Hughesabd62612013-11-08 11:45:48 -0800396#endif