blob: 870fa66f76dc25a13c8e1d619ca86cae800f2bbd [file] [log] [blame]
Ben Cheng655a7c02013-10-16 16:09:24 -07001/****************************************************************************
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 __LINUX_KVM_H
20#define __LINUX_KVM_H
21#include <linux/types.h>
22#include <linux/compiler.h>
23/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
24#include <linux/ioctl.h>
25#include <asm/kvm.h>
26#define KVM_API_VERSION 12
27#define KVM_TRC_SHIFT 16
28/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
29#define KVM_TRC_ENTRYEXIT (1 << KVM_TRC_SHIFT)
30#define KVM_TRC_HANDLER (1 << (KVM_TRC_SHIFT + 1))
31#define KVM_TRC_VMENTRY (KVM_TRC_ENTRYEXIT + 0x01)
32#define KVM_TRC_VMEXIT (KVM_TRC_ENTRYEXIT + 0x02)
33/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
34#define KVM_TRC_PAGE_FAULT (KVM_TRC_HANDLER + 0x01)
35#define KVM_TRC_HEAD_SIZE 12
36#define KVM_TRC_CYCLE_SIZE 8
37#define KVM_TRC_EXTRA_MAX 7
38/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
39#define KVM_TRC_INJ_VIRQ (KVM_TRC_HANDLER + 0x02)
40#define KVM_TRC_REDELIVER_EVT (KVM_TRC_HANDLER + 0x03)
41#define KVM_TRC_PEND_INTR (KVM_TRC_HANDLER + 0x04)
42#define KVM_TRC_IO_READ (KVM_TRC_HANDLER + 0x05)
43/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
44#define KVM_TRC_IO_WRITE (KVM_TRC_HANDLER + 0x06)
45#define KVM_TRC_CR_READ (KVM_TRC_HANDLER + 0x07)
46#define KVM_TRC_CR_WRITE (KVM_TRC_HANDLER + 0x08)
47#define KVM_TRC_DR_READ (KVM_TRC_HANDLER + 0x09)
48/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
49#define KVM_TRC_DR_WRITE (KVM_TRC_HANDLER + 0x0A)
50#define KVM_TRC_MSR_READ (KVM_TRC_HANDLER + 0x0B)
51#define KVM_TRC_MSR_WRITE (KVM_TRC_HANDLER + 0x0C)
52#define KVM_TRC_CPUID (KVM_TRC_HANDLER + 0x0D)
53/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
54#define KVM_TRC_INTR (KVM_TRC_HANDLER + 0x0E)
55#define KVM_TRC_NMI (KVM_TRC_HANDLER + 0x0F)
56#define KVM_TRC_VMMCALL (KVM_TRC_HANDLER + 0x10)
57#define KVM_TRC_HLT (KVM_TRC_HANDLER + 0x11)
58/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
59#define KVM_TRC_CLTS (KVM_TRC_HANDLER + 0x12)
60#define KVM_TRC_LMSW (KVM_TRC_HANDLER + 0x13)
61#define KVM_TRC_APIC_ACCESS (KVM_TRC_HANDLER + 0x14)
62#define KVM_TRC_TDP_FAULT (KVM_TRC_HANDLER + 0x15)
63/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
64#define KVM_TRC_GTLB_WRITE (KVM_TRC_HANDLER + 0x16)
65#define KVM_TRC_STLB_WRITE (KVM_TRC_HANDLER + 0x17)
66#define KVM_TRC_STLB_INVAL (KVM_TRC_HANDLER + 0x18)
67#define KVM_TRC_PPC_INSTR (KVM_TRC_HANDLER + 0x19)
68/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
69struct kvm_user_trace_setup {
Tao Baod7db5942015-01-28 10:07:51 -080070 __u32 buf_size;
71 __u32 buf_nr;
Ben Cheng655a7c02013-10-16 16:09:24 -070072};
73/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -080074#define __KVM_DEPRECATED_MAIN_W_0x06 _IOW(KVMIO, 0x06, struct kvm_user_trace_setup)
Ben Cheng655a7c02013-10-16 16:09:24 -070075#define __KVM_DEPRECATED_MAIN_0x07 _IO(KVMIO, 0x07)
76#define __KVM_DEPRECATED_MAIN_0x08 _IO(KVMIO, 0x08)
77#define __KVM_DEPRECATED_VM_R_0x70 _IOR(KVMIO, 0x70, struct kvm_assigned_irq)
78/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
79struct kvm_breakpoint {
Tao Baod7db5942015-01-28 10:07:51 -080080 __u32 enabled;
81 __u32 padding;
82 __u64 address;
Ben Cheng655a7c02013-10-16 16:09:24 -070083/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
84};
85struct kvm_debug_guest {
Tao Baod7db5942015-01-28 10:07:51 -080086 __u32 enabled;
87 __u32 pad;
Ben Cheng655a7c02013-10-16 16:09:24 -070088/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -080089 struct kvm_breakpoint breakpoints[4];
90 __u32 singlestep;
Ben Cheng655a7c02013-10-16 16:09:24 -070091};
92#define __KVM_DEPRECATED_VCPU_W_0x87 _IOW(KVMIO, 0x87, struct kvm_debug_guest)
93/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
94struct kvm_memory_region {
Tao Baod7db5942015-01-28 10:07:51 -080095 __u32 slot;
96 __u32 flags;
97 __u64 guest_phys_addr;
Ben Cheng655a7c02013-10-16 16:09:24 -070098/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -080099 __u64 memory_size;
Ben Cheng655a7c02013-10-16 16:09:24 -0700100};
101struct kvm_userspace_memory_region {
Tao Baod7db5942015-01-28 10:07:51 -0800102 __u32 slot;
Ben Cheng655a7c02013-10-16 16:09:24 -0700103/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -0800104 __u32 flags;
105 __u64 guest_phys_addr;
106 __u64 memory_size;
107 __u64 userspace_addr;
Ben Cheng655a7c02013-10-16 16:09:24 -0700108/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
109};
110#define KVM_MEM_LOG_DIRTY_PAGES (1UL << 0)
111#define KVM_MEM_READONLY (1UL << 1)
112struct kvm_irq_level {
113/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -0800114 union {
115 __u32 irq;
116 __s32 status;
117 };
Ben Cheng655a7c02013-10-16 16:09:24 -0700118/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -0800119 __u32 level;
Ben Cheng655a7c02013-10-16 16:09:24 -0700120};
121struct kvm_irqchip {
Tao Baod7db5942015-01-28 10:07:51 -0800122 __u32 chip_id;
Ben Cheng655a7c02013-10-16 16:09:24 -0700123/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -0800124 __u32 pad;
125 union {
126 char dummy[512];
Ben Cheng655a7c02013-10-16 16:09:24 -0700127#ifdef __KVM_HAVE_PIT
128/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -0800129 struct kvm_pic_state pic;
Ben Cheng655a7c02013-10-16 16:09:24 -0700130#endif
131#ifdef __KVM_HAVE_IOAPIC
Tao Baod7db5942015-01-28 10:07:51 -0800132 struct kvm_ioapic_state ioapic;
Ben Cheng655a7c02013-10-16 16:09:24 -0700133/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
134#endif
Tao Baod7db5942015-01-28 10:07:51 -0800135 } chip;
Ben Cheng655a7c02013-10-16 16:09:24 -0700136};
137struct kvm_pit_config {
138/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -0800139 __u32 flags;
140 __u32 pad[15];
Ben Cheng655a7c02013-10-16 16:09:24 -0700141};
142#define KVM_PIT_SPEAKER_DUMMY 1
143/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
144#define KVM_EXIT_UNKNOWN 0
145#define KVM_EXIT_EXCEPTION 1
146#define KVM_EXIT_IO 2
147#define KVM_EXIT_HYPERCALL 3
148/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
149#define KVM_EXIT_DEBUG 4
150#define KVM_EXIT_HLT 5
151#define KVM_EXIT_MMIO 6
152#define KVM_EXIT_IRQ_WINDOW_OPEN 7
153/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
154#define KVM_EXIT_SHUTDOWN 8
155#define KVM_EXIT_FAIL_ENTRY 9
156#define KVM_EXIT_INTR 10
157#define KVM_EXIT_SET_TPR 11
158/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
159#define KVM_EXIT_TPR_ACCESS 12
160#define KVM_EXIT_S390_SIEIC 13
161#define KVM_EXIT_S390_RESET 14
162#define KVM_EXIT_DCR 15
163/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
164#define KVM_EXIT_NMI 16
165#define KVM_EXIT_INTERNAL_ERROR 17
166#define KVM_EXIT_OSI 18
167#define KVM_EXIT_PAPR_HCALL 19
168/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
169#define KVM_EXIT_S390_UCONTROL 20
170#define KVM_EXIT_WATCHDOG 21
171#define KVM_EXIT_S390_TSCH 22
172#define KVM_EXIT_EPR 23
173/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700174#define KVM_EXIT_SYSTEM_EVENT 24
Ben Cheng655a7c02013-10-16 16:09:24 -0700175#define KVM_INTERNAL_ERROR_EMULATION 1
176#define KVM_INTERNAL_ERROR_SIMUL_EX 2
177#define KVM_INTERNAL_ERROR_DELIVERY_EV 3
Ben Cheng655a7c02013-10-16 16:09:24 -0700178/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700179struct kvm_run {
Tao Baod7db5942015-01-28 10:07:51 -0800180 __u8 request_interrupt_window;
181 __u8 padding1[7];
182 __u32 exit_reason;
Ben Cheng655a7c02013-10-16 16:09:24 -0700183/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -0800184 __u8 ready_for_interrupt_injection;
185 __u8 if_flag;
186 __u8 padding2[2];
187 __u64 cr8;
Ben Cheng655a7c02013-10-16 16:09:24 -0700188/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -0800189 __u64 apic_base;
Ben Cheng655a7c02013-10-16 16:09:24 -0700190#ifdef __KVM_S390
Tao Baod7db5942015-01-28 10:07:51 -0800191 __u64 psw_mask;
192 __u64 psw_addr;
Ben Cheng655a7c02013-10-16 16:09:24 -0700193/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700194#endif
Tao Baod7db5942015-01-28 10:07:51 -0800195 union {
196 struct {
197 __u64 hardware_exit_reason;
Ben Cheng655a7c02013-10-16 16:09:24 -0700198/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -0800199 } hw;
200 struct {
201 __u64 hardware_entry_failure_reason;
202 } fail_entry;
Ben Cheng655a7c02013-10-16 16:09:24 -0700203/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -0800204 struct {
205 __u32 exception;
206 __u32 error_code;
207 } ex;
Ben Cheng655a7c02013-10-16 16:09:24 -0700208/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -0800209 struct {
Ben Cheng655a7c02013-10-16 16:09:24 -0700210#define KVM_EXIT_IO_IN 0
211#define KVM_EXIT_IO_OUT 1
Tao Baod7db5942015-01-28 10:07:51 -0800212 __u8 direction;
Ben Cheng655a7c02013-10-16 16:09:24 -0700213/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -0800214 __u8 size;
215 __u16 port;
216 __u32 count;
217 __u64 data_offset;
Ben Cheng655a7c02013-10-16 16:09:24 -0700218/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -0800219 } io;
220 struct {
221 struct kvm_debug_exit_arch arch;
222 } debug;
Ben Cheng655a7c02013-10-16 16:09:24 -0700223/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -0800224 struct {
225 __u64 phys_addr;
226 __u8 data[8];
227 __u32 len;
Ben Cheng655a7c02013-10-16 16:09:24 -0700228/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -0800229 __u8 is_write;
230 } mmio;
231 struct {
232 __u64 nr;
Ben Cheng655a7c02013-10-16 16:09:24 -0700233/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -0800234 __u64 args[6];
235 __u64 ret;
236 __u32 longmode;
237 __u32 pad;
Ben Cheng655a7c02013-10-16 16:09:24 -0700238/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -0800239 } hypercall;
240 struct {
241 __u64 rip;
242 __u32 is_write;
Ben Cheng655a7c02013-10-16 16:09:24 -0700243/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -0800244 __u32 pad;
245 } tpr_access;
246 struct {
247 __u8 icptcode;
Ben Cheng655a7c02013-10-16 16:09:24 -0700248/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -0800249 __u16 ipa;
250 __u32 ipb;
251 } s390_sieic;
Ben Cheng655a7c02013-10-16 16:09:24 -0700252#define KVM_S390_RESET_POR 1
Ben Cheng655a7c02013-10-16 16:09:24 -0700253/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700254#define KVM_S390_RESET_CLEAR 2
Ben Cheng655a7c02013-10-16 16:09:24 -0700255#define KVM_S390_RESET_SUBSYSTEM 4
256#define KVM_S390_RESET_CPU_INIT 8
257#define KVM_S390_RESET_IPL 16
Ben Cheng655a7c02013-10-16 16:09:24 -0700258/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -0800259 __u64 s390_reset_flags;
260 struct {
261 __u64 trans_exc_code;
262 __u32 pgm_code;
Ben Cheng655a7c02013-10-16 16:09:24 -0700263/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -0800264 } s390_ucontrol;
265 struct {
266 __u32 dcrn;
267 __u32 data;
Ben Cheng655a7c02013-10-16 16:09:24 -0700268/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -0800269 __u8 is_write;
270 } dcr;
271 struct {
272 __u32 suberror;
Ben Cheng655a7c02013-10-16 16:09:24 -0700273/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -0800274 __u32 ndata;
275 __u64 data[16];
276 } internal;
277 struct {
Ben Cheng655a7c02013-10-16 16:09:24 -0700278/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -0800279 __u64 gprs[32];
280 } osi;
281 struct {
282 __u64 nr;
Ben Cheng655a7c02013-10-16 16:09:24 -0700283/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -0800284 __u64 ret;
285 __u64 args[9];
286 } papr_hcall;
287 struct {
Ben Cheng655a7c02013-10-16 16:09:24 -0700288/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -0800289 __u16 subchannel_id;
290 __u16 subchannel_nr;
291 __u32 io_int_parm;
292 __u32 io_int_word;
Ben Cheng655a7c02013-10-16 16:09:24 -0700293/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -0800294 __u32 ipb;
295 __u8 dequeued;
296 } s390_tsch;
297 struct {
Ben Cheng655a7c02013-10-16 16:09:24 -0700298/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -0800299 __u32 epr;
300 } epr;
301 struct {
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700302#define KVM_SYSTEM_EVENT_SHUTDOWN 1
303/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
304#define KVM_SYSTEM_EVENT_RESET 2
Tao Baod7db5942015-01-28 10:07:51 -0800305 __u32 type;
306 __u64 flags;
307 } system_event;
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700308/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -0800309 char padding[256];
310 };
311 __u64 kvm_valid_regs;
312 __u64 kvm_dirty_regs;
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700313/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -0800314 union {
315 struct kvm_sync_regs regs;
316 char padding[1024];
317 } s;
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700318/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700319};
320struct kvm_coalesced_mmio_zone {
Tao Baod7db5942015-01-28 10:07:51 -0800321 __u64 addr;
322 __u32 size;
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700323/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -0800324 __u32 pad;
Ben Cheng655a7c02013-10-16 16:09:24 -0700325};
326struct kvm_coalesced_mmio {
Tao Baod7db5942015-01-28 10:07:51 -0800327 __u64 phys_addr;
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700328/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -0800329 __u32 len;
330 __u32 pad;
331 __u8 data[8];
Ben Cheng655a7c02013-10-16 16:09:24 -0700332};
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700333/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700334struct kvm_coalesced_mmio_ring {
Tao Baod7db5942015-01-28 10:07:51 -0800335 __u32 first, last;
336 struct kvm_coalesced_mmio coalesced_mmio[0];
Ben Cheng655a7c02013-10-16 16:09:24 -0700337};
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700338/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -0800339#define KVM_COALESCED_MMIO_MAX ((PAGE_SIZE - sizeof(struct kvm_coalesced_mmio_ring)) / sizeof(struct kvm_coalesced_mmio))
Ben Cheng655a7c02013-10-16 16:09:24 -0700340struct kvm_translation {
Tao Baod7db5942015-01-28 10:07:51 -0800341 __u64 linear_address;
342 __u64 physical_address;
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700343/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -0800344 __u8 valid;
345 __u8 writeable;
346 __u8 usermode;
347 __u8 pad[5];
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700348/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700349};
350struct kvm_interrupt {
Tao Baod7db5942015-01-28 10:07:51 -0800351 __u32 irq;
Ben Cheng655a7c02013-10-16 16:09:24 -0700352};
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700353/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700354struct kvm_dirty_log {
Tao Baod7db5942015-01-28 10:07:51 -0800355 __u32 slot;
356 __u32 padding1;
357 union {
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700358/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -0800359 void __user * dirty_bitmap;
360 __u64 padding2;
361 };
Ben Cheng655a7c02013-10-16 16:09:24 -0700362};
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700363/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700364struct kvm_signal_mask {
Tao Baod7db5942015-01-28 10:07:51 -0800365 __u32 len;
366 __u8 sigset[0];
Ben Cheng655a7c02013-10-16 16:09:24 -0700367};
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700368/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700369struct kvm_tpr_access_ctl {
Tao Baod7db5942015-01-28 10:07:51 -0800370 __u32 enabled;
371 __u32 flags;
372 __u32 reserved[8];
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700373/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700374};
375struct kvm_vapic_addr {
Tao Baod7db5942015-01-28 10:07:51 -0800376 __u64 vapic_addr;
Ben Cheng655a7c02013-10-16 16:09:24 -0700377};
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700378/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700379#define KVM_MP_STATE_RUNNABLE 0
380#define KVM_MP_STATE_UNINITIALIZED 1
381#define KVM_MP_STATE_INIT_RECEIVED 2
Ben Cheng655a7c02013-10-16 16:09:24 -0700382#define KVM_MP_STATE_HALTED 3
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700383/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700384#define KVM_MP_STATE_SIPI_RECEIVED 4
Christopher Ferris82d75042015-01-26 10:57:07 -0800385#define KVM_MP_STATE_STOPPED 5
386#define KVM_MP_STATE_CHECK_STOP 6
387#define KVM_MP_STATE_OPERATING 7
388/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
389#define KVM_MP_STATE_LOAD 8
Ben Cheng655a7c02013-10-16 16:09:24 -0700390struct kvm_mp_state {
Tao Baod7db5942015-01-28 10:07:51 -0800391 __u32 mp_state;
Ben Cheng655a7c02013-10-16 16:09:24 -0700392};
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700393/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700394struct kvm_s390_psw {
Tao Baod7db5942015-01-28 10:07:51 -0800395 __u64 mask;
396 __u64 addr;
Ben Cheng655a7c02013-10-16 16:09:24 -0700397};
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700398/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700399#define KVM_S390_SIGP_STOP 0xfffe0000u
400#define KVM_S390_PROGRAM_INT 0xfffe0001u
401#define KVM_S390_SIGP_SET_PREFIX 0xfffe0002u
Ben Cheng655a7c02013-10-16 16:09:24 -0700402#define KVM_S390_RESTART 0xfffe0003u
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700403/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
404#define KVM_S390_INT_PFAULT_INIT 0xfffe0004u
405#define KVM_S390_INT_PFAULT_DONE 0xfffe0005u
Ben Cheng655a7c02013-10-16 16:09:24 -0700406#define KVM_S390_MCHK 0xfffe1000u
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700407#define KVM_S390_INT_CLOCK_COMP 0xffff1004u
408/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
409#define KVM_S390_INT_CPU_TIMER 0xffff1005u
Ben Cheng655a7c02013-10-16 16:09:24 -0700410#define KVM_S390_INT_VIRTIO 0xffff2603u
411#define KVM_S390_INT_SERVICE 0xffff2401u
Ben Cheng655a7c02013-10-16 16:09:24 -0700412#define KVM_S390_INT_EMERGENCY 0xffff1201u
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700413/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700414#define KVM_S390_INT_EXTERNAL_CALL 0xffff1202u
Tao Baod7db5942015-01-28 10:07:51 -0800415#define KVM_S390_INT_IO(ai,cssid,ssid,schid) (((schid)) | ((ssid) << 16) | ((cssid) << 18) | ((ai) << 26))
Ben Cheng655a7c02013-10-16 16:09:24 -0700416#define KVM_S390_INT_IO_MIN 0x00000000u
Ben Cheng655a7c02013-10-16 16:09:24 -0700417#define KVM_S390_INT_IO_MAX 0xfffdffffu
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700418/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700419struct kvm_s390_interrupt {
Tao Baod7db5942015-01-28 10:07:51 -0800420 __u32 type;
421 __u32 parm;
422 __u64 parm64;
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700423/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700424};
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700425struct kvm_s390_io_info {
Tao Baod7db5942015-01-28 10:07:51 -0800426 __u16 subchannel_id;
427 __u16 subchannel_nr;
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700428/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -0800429 __u32 io_int_parm;
430 __u32 io_int_word;
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700431};
432struct kvm_s390_ext_info {
433/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -0800434 __u32 ext_params;
435 __u32 pad;
436 __u64 ext_params2;
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700437};
438/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
439struct kvm_s390_pgm_info {
Tao Baod7db5942015-01-28 10:07:51 -0800440 __u64 trans_exc_code;
441 __u64 mon_code;
442 __u64 per_address;
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700443/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -0800444 __u32 data_exc_code;
445 __u16 code;
446 __u16 mon_class_nr;
447 __u8 per_code;
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700448/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -0800449 __u8 per_atmid;
450 __u8 exc_access_id;
451 __u8 per_access_id;
452 __u8 op_access_id;
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700453/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -0800454 __u8 pad[3];
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700455};
456struct kvm_s390_prefix_info {
Tao Baod7db5942015-01-28 10:07:51 -0800457 __u32 address;
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700458/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
459};
460struct kvm_s390_extcall_info {
Tao Baod7db5942015-01-28 10:07:51 -0800461 __u16 code;
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700462};
463/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
464struct kvm_s390_emerg_info {
Tao Baod7db5942015-01-28 10:07:51 -0800465 __u16 code;
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700466};
467struct kvm_s390_mchk_info {
468/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -0800469 __u64 cr14;
470 __u64 mcic;
471 __u64 failing_storage_address;
472 __u32 ext_damage_code;
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700473/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -0800474 __u32 pad;
475 __u8 fixed_logout[16];
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700476};
477struct kvm_s390_irq {
478/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -0800479 __u64 type;
480 union {
481 struct kvm_s390_io_info io;
482 struct kvm_s390_ext_info ext;
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700483/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -0800484 struct kvm_s390_pgm_info pgm;
485 struct kvm_s390_emerg_info emerg;
486 struct kvm_s390_extcall_info extcall;
487 struct kvm_s390_prefix_info prefix;
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700488/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -0800489 struct kvm_s390_mchk_info mchk;
490 char reserved[64];
491 } u;
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700492};
493/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700494#define KVM_GUESTDBG_ENABLE 0x00000001
495#define KVM_GUESTDBG_SINGLESTEP 0x00000002
Ben Cheng655a7c02013-10-16 16:09:24 -0700496struct kvm_guest_debug {
Tao Baod7db5942015-01-28 10:07:51 -0800497 __u32 control;
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700498/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -0800499 __u32 pad;
500 struct kvm_guest_debug_arch arch;
Ben Cheng655a7c02013-10-16 16:09:24 -0700501};
502enum {
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700503/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -0800504 kvm_ioeventfd_flag_nr_datamatch,
505 kvm_ioeventfd_flag_nr_pio,
506 kvm_ioeventfd_flag_nr_deassign,
507 kvm_ioeventfd_flag_nr_virtio_ccw_notify,
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700508/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -0800509 kvm_ioeventfd_flag_nr_fast_mmio,
510 kvm_ioeventfd_flag_nr_max,
Ben Cheng655a7c02013-10-16 16:09:24 -0700511};
Ben Cheng655a7c02013-10-16 16:09:24 -0700512#define KVM_IOEVENTFD_FLAG_DATAMATCH (1 << kvm_ioeventfd_flag_nr_datamatch)
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700513/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700514#define KVM_IOEVENTFD_FLAG_PIO (1 << kvm_ioeventfd_flag_nr_pio)
515#define KVM_IOEVENTFD_FLAG_DEASSIGN (1 << kvm_ioeventfd_flag_nr_deassign)
Tao Baod7db5942015-01-28 10:07:51 -0800516#define KVM_IOEVENTFD_FLAG_VIRTIO_CCW_NOTIFY (1 << kvm_ioeventfd_flag_nr_virtio_ccw_notify)
Ben Cheng655a7c02013-10-16 16:09:24 -0700517#define KVM_IOEVENTFD_VALID_FLAG_MASK ((1 << kvm_ioeventfd_flag_nr_max) - 1)
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700518/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700519struct kvm_ioeventfd {
Tao Baod7db5942015-01-28 10:07:51 -0800520 __u64 datamatch;
521 __u64 addr;
522 __u32 len;
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700523/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -0800524 __s32 fd;
525 __u32 flags;
526 __u8 pad[36];
Ben Cheng655a7c02013-10-16 16:09:24 -0700527};
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700528/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700529struct kvm_enable_cap {
Tao Baod7db5942015-01-28 10:07:51 -0800530 __u32 cap;
531 __u32 flags;
532 __u64 args[4];
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700533/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -0800534 __u8 pad[64];
Ben Cheng655a7c02013-10-16 16:09:24 -0700535};
536struct kvm_ppc_pvinfo {
Tao Baod7db5942015-01-28 10:07:51 -0800537 __u32 flags;
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700538/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -0800539 __u32 hcall[4];
540 __u8 pad[108];
Ben Cheng655a7c02013-10-16 16:09:24 -0700541};
Ben Cheng655a7c02013-10-16 16:09:24 -0700542#define KVM_PPC_PAGE_SIZES_MAX_SZ 8
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700543/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700544struct kvm_ppc_one_page_size {
Tao Baod7db5942015-01-28 10:07:51 -0800545 __u32 page_shift;
546 __u32 pte_enc;
Ben Cheng655a7c02013-10-16 16:09:24 -0700547};
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700548/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700549struct kvm_ppc_one_seg_page_size {
Tao Baod7db5942015-01-28 10:07:51 -0800550 __u32 page_shift;
551 __u32 slb_enc;
552 struct kvm_ppc_one_page_size enc[KVM_PPC_PAGE_SIZES_MAX_SZ];
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700553/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700554};
555#define KVM_PPC_PAGE_SIZES_REAL 0x00000001
556#define KVM_PPC_1T_SEGMENTS 0x00000002
Ben Cheng655a7c02013-10-16 16:09:24 -0700557struct kvm_ppc_smmu_info {
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700558/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -0800559 __u64 flags;
560 __u32 slb_size;
561 __u32 pad;
562 struct kvm_ppc_one_seg_page_size sps[KVM_PPC_PAGE_SIZES_MAX_SZ];
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700563/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700564};
Tao Baod7db5942015-01-28 10:07:51 -0800565#define KVM_PPC_PVINFO_FLAGS_EV_IDLE (1 << 0)
Ben Cheng655a7c02013-10-16 16:09:24 -0700566#define KVMIO 0xAE
Ben Cheng655a7c02013-10-16 16:09:24 -0700567#define KVM_VM_S390_UCONTROL 1
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700568/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Christopher Ferris38062f92014-07-09 15:33:25 -0700569#define KVM_VM_PPC_HV 1
570#define KVM_VM_PPC_PR 2
Ben Cheng655a7c02013-10-16 16:09:24 -0700571#define KVM_S390_SIE_PAGE_OFFSET 1
572#define KVM_GET_API_VERSION _IO(KVMIO, 0x00)
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700573/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700574#define KVM_CREATE_VM _IO(KVMIO, 0x01)
Ben Cheng655a7c02013-10-16 16:09:24 -0700575#define KVM_GET_MSR_INDEX_LIST _IOWR(KVMIO, 0x02, struct kvm_msr_list)
576#define KVM_S390_ENABLE_SIE _IO(KVMIO, 0x06)
577#define KVM_CHECK_EXTENSION _IO(KVMIO, 0x03)
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700578/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700579#define KVM_GET_VCPU_MMAP_SIZE _IO(KVMIO, 0x04)
Ben Cheng655a7c02013-10-16 16:09:24 -0700580#define KVM_GET_SUPPORTED_CPUID _IOWR(KVMIO, 0x05, struct kvm_cpuid2)
581#define KVM_TRACE_ENABLE __KVM_DEPRECATED_MAIN_W_0x06
582#define KVM_TRACE_PAUSE __KVM_DEPRECATED_MAIN_0x07
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700583/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700584#define KVM_TRACE_DISABLE __KVM_DEPRECATED_MAIN_0x08
Christopher Ferris38062f92014-07-09 15:33:25 -0700585#define KVM_GET_EMULATED_CPUID _IOWR(KVMIO, 0x09, struct kvm_cpuid2)
Ben Cheng655a7c02013-10-16 16:09:24 -0700586#define KVM_CAP_IRQCHIP 0
587#define KVM_CAP_HLT 1
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700588/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700589#define KVM_CAP_MMU_SHADOW_CACHE_CONTROL 2
590#define KVM_CAP_USER_MEMORY 3
Ben Cheng655a7c02013-10-16 16:09:24 -0700591#define KVM_CAP_SET_TSS_ADDR 4
592#define KVM_CAP_VAPIC 6
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700593/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700594#define KVM_CAP_EXT_CPUID 7
595#define KVM_CAP_CLOCKSOURCE 8
Ben Cheng655a7c02013-10-16 16:09:24 -0700596#define KVM_CAP_NR_VCPUS 9
597#define KVM_CAP_NR_MEMSLOTS 10
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700598/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700599#define KVM_CAP_PIT 11
600#define KVM_CAP_NOP_IO_DELAY 12
Ben Cheng655a7c02013-10-16 16:09:24 -0700601#define KVM_CAP_PV_MMU 13
602#define KVM_CAP_MP_STATE 14
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700603/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700604#define KVM_CAP_COALESCED_MMIO 15
605#define KVM_CAP_SYNC_MMU 16
Ben Cheng655a7c02013-10-16 16:09:24 -0700606#define KVM_CAP_DEVICE_ASSIGNMENT 17
607#define KVM_CAP_IOMMU 18
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700608/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700609#ifdef __KVM_HAVE_MSI
610#define KVM_CAP_DEVICE_MSI 20
Ben Cheng655a7c02013-10-16 16:09:24 -0700611#endif
612#define KVM_CAP_DESTROY_MEMORY_REGION_WORKS 21
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700613/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700614#define KVM_CAP_USER_NMI 22
Ben Cheng655a7c02013-10-16 16:09:24 -0700615#ifdef __KVM_HAVE_GUEST_DEBUG
616#define KVM_CAP_SET_GUEST_DEBUG 23
617#endif
Christopher Ferris82d75042015-01-26 10:57:07 -0800618/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700619#ifdef __KVM_HAVE_PIT
620#define KVM_CAP_REINJECT_CONTROL 24
621#endif
622#define KVM_CAP_IRQ_ROUTING 25
Christopher Ferris82d75042015-01-26 10:57:07 -0800623/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700624#define KVM_CAP_IRQ_INJECT_STATUS 26
625#define KVM_CAP_DEVICE_DEASSIGNMENT 27
626#ifdef __KVM_HAVE_MSIX
627#define KVM_CAP_DEVICE_MSIX 28
Christopher Ferris82d75042015-01-26 10:57:07 -0800628/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700629#endif
630#define KVM_CAP_ASSIGN_DEV_IRQ 29
631#define KVM_CAP_JOIN_MEMORY_REGIONS_WORKS 30
632#ifdef __KVM_HAVE_MCE
Christopher Ferris82d75042015-01-26 10:57:07 -0800633/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700634#define KVM_CAP_MCE 31
635#endif
636#define KVM_CAP_IRQFD 32
637#ifdef __KVM_HAVE_PIT
Christopher Ferris82d75042015-01-26 10:57:07 -0800638/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700639#define KVM_CAP_PIT2 33
640#endif
641#define KVM_CAP_SET_BOOT_CPU_ID 34
642#ifdef __KVM_HAVE_PIT_STATE2
Christopher Ferris82d75042015-01-26 10:57:07 -0800643/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700644#define KVM_CAP_PIT_STATE2 35
645#endif
646#define KVM_CAP_IOEVENTFD 36
647#define KVM_CAP_SET_IDENTITY_MAP_ADDR 37
Christopher Ferris82d75042015-01-26 10:57:07 -0800648/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700649#ifdef __KVM_HAVE_XEN_HVM
650#define KVM_CAP_XEN_HVM 38
651#endif
652#define KVM_CAP_ADJUST_CLOCK 39
Christopher Ferris82d75042015-01-26 10:57:07 -0800653/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700654#define KVM_CAP_INTERNAL_ERROR_DATA 40
655#ifdef __KVM_HAVE_VCPU_EVENTS
656#define KVM_CAP_VCPU_EVENTS 41
657#endif
Christopher Ferris82d75042015-01-26 10:57:07 -0800658/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700659#define KVM_CAP_S390_PSW 42
660#define KVM_CAP_PPC_SEGSTATE 43
661#define KVM_CAP_HYPERV 44
662#define KVM_CAP_HYPERV_VAPIC 45
Christopher Ferris82d75042015-01-26 10:57:07 -0800663/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700664#define KVM_CAP_HYPERV_SPIN 46
665#define KVM_CAP_PCI_SEGMENT 47
666#define KVM_CAP_PPC_PAIRED_SINGLES 48
667#define KVM_CAP_INTR_SHADOW 49
Christopher Ferris82d75042015-01-26 10:57:07 -0800668/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700669#ifdef __KVM_HAVE_DEBUGREGS
670#define KVM_CAP_DEBUGREGS 50
671#endif
672#define KVM_CAP_X86_ROBUST_SINGLESTEP 51
Christopher Ferris82d75042015-01-26 10:57:07 -0800673/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700674#define KVM_CAP_PPC_OSI 52
675#define KVM_CAP_PPC_UNSET_IRQ 53
676#define KVM_CAP_ENABLE_CAP 54
677#ifdef __KVM_HAVE_XSAVE
Christopher Ferris82d75042015-01-26 10:57:07 -0800678/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700679#define KVM_CAP_XSAVE 55
680#endif
681#ifdef __KVM_HAVE_XCRS
682#define KVM_CAP_XCRS 56
Christopher Ferris82d75042015-01-26 10:57:07 -0800683/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700684#endif
685#define KVM_CAP_PPC_GET_PVINFO 57
686#define KVM_CAP_PPC_IRQ_LEVEL 58
687#define KVM_CAP_ASYNC_PF 59
Christopher Ferris82d75042015-01-26 10:57:07 -0800688/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700689#define KVM_CAP_TSC_CONTROL 60
690#define KVM_CAP_GET_TSC_KHZ 61
691#define KVM_CAP_PPC_BOOKE_SREGS 62
692#define KVM_CAP_SPAPR_TCE 63
Christopher Ferris82d75042015-01-26 10:57:07 -0800693/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700694#define KVM_CAP_PPC_SMT 64
695#define KVM_CAP_PPC_RMA 65
696#define KVM_CAP_MAX_VCPUS 66
697#define KVM_CAP_PPC_HIOR 67
Christopher Ferris82d75042015-01-26 10:57:07 -0800698/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700699#define KVM_CAP_PPC_PAPR 68
700#define KVM_CAP_SW_TLB 69
701#define KVM_CAP_ONE_REG 70
702#define KVM_CAP_S390_GMAP 71
Christopher Ferris82d75042015-01-26 10:57:07 -0800703/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700704#define KVM_CAP_TSC_DEADLINE_TIMER 72
705#define KVM_CAP_S390_UCONTROL 73
706#define KVM_CAP_SYNC_REGS 74
707#define KVM_CAP_PCI_2_3 75
Christopher Ferris82d75042015-01-26 10:57:07 -0800708/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700709#define KVM_CAP_KVMCLOCK_CTRL 76
710#define KVM_CAP_SIGNAL_MSI 77
711#define KVM_CAP_PPC_GET_SMMU_INFO 78
712#define KVM_CAP_S390_COW 79
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700713/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Christopher Ferris82d75042015-01-26 10:57:07 -0800714#define KVM_CAP_PPC_ALLOC_HTAB 80
Ben Cheng655a7c02013-10-16 16:09:24 -0700715#define KVM_CAP_READONLY_MEM 81
Ben Cheng655a7c02013-10-16 16:09:24 -0700716#define KVM_CAP_IRQFD_RESAMPLE 82
717#define KVM_CAP_PPC_BOOKE_WATCHDOG 83
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700718/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700719#define KVM_CAP_PPC_HTAB_FD 84
720#define KVM_CAP_S390_CSS_SUPPORT 85
Ben Cheng655a7c02013-10-16 16:09:24 -0700721#define KVM_CAP_PPC_EPR 86
722#define KVM_CAP_ARM_PSCI 87
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700723/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700724#define KVM_CAP_ARM_SET_DEVICE_ADDR 88
725#define KVM_CAP_DEVICE_CTRL 89
Ben Cheng655a7c02013-10-16 16:09:24 -0700726#define KVM_CAP_IRQ_MPIC 90
727#define KVM_CAP_PPC_RTAS 91
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700728/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700729#define KVM_CAP_IRQ_XICS 92
Christopher Ferris38062f92014-07-09 15:33:25 -0700730#define KVM_CAP_ARM_EL1_32BIT 93
731#define KVM_CAP_SPAPR_MULTITCE 94
Christopher Ferris38062f92014-07-09 15:33:25 -0700732#define KVM_CAP_EXT_EMUL_CPUID 95
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700733/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Christopher Ferris38062f92014-07-09 15:33:25 -0700734#define KVM_CAP_HYPERV_TIME 96
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700735#define KVM_CAP_IOAPIC_POLARITY_IGNORED 97
736#define KVM_CAP_ENABLE_CAP_VM 98
737#define KVM_CAP_S390_IRQCHIP 99
738/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
739#define KVM_CAP_IOEVENTFD_NO_LENGTH 100
740#define KVM_CAP_VM_ATTRIBUTES 101
741#define KVM_CAP_ARM_PSCI_0_2 102
742#define KVM_CAP_PPC_FIXUP_HCALL 103
743/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Christopher Ferris82d75042015-01-26 10:57:07 -0800744#define KVM_CAP_PPC_ENABLE_HCALL 104
745#define KVM_CAP_CHECK_EXTENSION_VM 105
Christopher Ferris38062f92014-07-09 15:33:25 -0700746#ifdef KVM_CAP_IRQ_ROUTING
Ben Cheng655a7c02013-10-16 16:09:24 -0700747struct kvm_irq_routing_irqchip {
Christopher Ferris82d75042015-01-26 10:57:07 -0800748/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -0800749 __u32 irqchip;
750 __u32 pin;
Ben Cheng655a7c02013-10-16 16:09:24 -0700751};
752struct kvm_irq_routing_msi {
Christopher Ferris82d75042015-01-26 10:57:07 -0800753/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -0800754 __u32 address_lo;
755 __u32 address_hi;
756 __u32 data;
757 __u32 pad;
Christopher Ferris82d75042015-01-26 10:57:07 -0800758/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700759};
760struct kvm_irq_routing_s390_adapter {
Tao Baod7db5942015-01-28 10:07:51 -0800761 __u64 ind_addr;
762 __u64 summary_addr;
Christopher Ferris82d75042015-01-26 10:57:07 -0800763/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -0800764 __u64 ind_offset;
765 __u32 summary_offset;
766 __u32 adapter_id;
Ben Cheng655a7c02013-10-16 16:09:24 -0700767};
Christopher Ferris82d75042015-01-26 10:57:07 -0800768/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700769#define KVM_IRQ_ROUTING_IRQCHIP 1
Ben Cheng655a7c02013-10-16 16:09:24 -0700770#define KVM_IRQ_ROUTING_MSI 2
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700771#define KVM_IRQ_ROUTING_S390_ADAPTER 3
772struct kvm_irq_routing_entry {
Christopher Ferris82d75042015-01-26 10:57:07 -0800773/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -0800774 __u32 gsi;
775 __u32 type;
776 __u32 flags;
777 __u32 pad;
Christopher Ferris82d75042015-01-26 10:57:07 -0800778/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -0800779 union {
780 struct kvm_irq_routing_irqchip irqchip;
781 struct kvm_irq_routing_msi msi;
782 struct kvm_irq_routing_s390_adapter adapter;
Christopher Ferris82d75042015-01-26 10:57:07 -0800783/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -0800784 __u32 pad[8];
785 } u;
Ben Cheng655a7c02013-10-16 16:09:24 -0700786};
Ben Cheng655a7c02013-10-16 16:09:24 -0700787struct kvm_irq_routing {
Christopher Ferris82d75042015-01-26 10:57:07 -0800788/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -0800789 __u32 nr;
790 __u32 flags;
791 struct kvm_irq_routing_entry entries[0];
Ben Cheng655a7c02013-10-16 16:09:24 -0700792};
Christopher Ferris82d75042015-01-26 10:57:07 -0800793/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700794#endif
795#ifdef KVM_CAP_MCE
796struct kvm_x86_mce {
Tao Baod7db5942015-01-28 10:07:51 -0800797 __u64 status;
Christopher Ferris82d75042015-01-26 10:57:07 -0800798/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -0800799 __u64 addr;
800 __u64 misc;
801 __u64 mcg_status;
802 __u8 bank;
Christopher Ferris82d75042015-01-26 10:57:07 -0800803/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -0800804 __u8 pad1[7];
805 __u64 pad2[3];
Ben Cheng655a7c02013-10-16 16:09:24 -0700806};
Ben Cheng655a7c02013-10-16 16:09:24 -0700807#endif
Christopher Ferris82d75042015-01-26 10:57:07 -0800808/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700809#ifdef KVM_CAP_XEN_HVM
810struct kvm_xen_hvm_config {
Tao Baod7db5942015-01-28 10:07:51 -0800811 __u32 flags;
812 __u32 msr;
Christopher Ferris82d75042015-01-26 10:57:07 -0800813/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -0800814 __u64 blob_addr_32;
815 __u64 blob_addr_64;
816 __u8 blob_size_32;
817 __u8 blob_size_64;
Christopher Ferris82d75042015-01-26 10:57:07 -0800818/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -0800819 __u8 pad2[30];
Ben Cheng655a7c02013-10-16 16:09:24 -0700820};
821#endif
Ben Cheng655a7c02013-10-16 16:09:24 -0700822#define KVM_IRQFD_FLAG_DEASSIGN (1 << 0)
Christopher Ferris82d75042015-01-26 10:57:07 -0800823/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700824#define KVM_IRQFD_FLAG_RESAMPLE (1 << 1)
825struct kvm_irqfd {
Tao Baod7db5942015-01-28 10:07:51 -0800826 __u32 fd;
827 __u32 gsi;
Christopher Ferris82d75042015-01-26 10:57:07 -0800828/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -0800829 __u32 flags;
830 __u32 resamplefd;
831 __u8 pad[16];
Ben Cheng655a7c02013-10-16 16:09:24 -0700832};
Christopher Ferris82d75042015-01-26 10:57:07 -0800833/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700834struct kvm_clock_data {
Tao Baod7db5942015-01-28 10:07:51 -0800835 __u64 clock;
836 __u32 flags;
837 __u32 pad[9];
Christopher Ferris82d75042015-01-26 10:57:07 -0800838/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700839};
840#define KVM_MMU_FSL_BOOKE_NOHV 0
841#define KVM_MMU_FSL_BOOKE_HV 1
Ben Cheng655a7c02013-10-16 16:09:24 -0700842struct kvm_config_tlb {
Christopher Ferris82d75042015-01-26 10:57:07 -0800843/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -0800844 __u64 params;
845 __u64 array;
846 __u32 mmu_type;
847 __u32 array_len;
Christopher Ferris82d75042015-01-26 10:57:07 -0800848/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700849};
850struct kvm_dirty_tlb {
Tao Baod7db5942015-01-28 10:07:51 -0800851 __u64 bitmap;
852 __u32 num_dirty;
Christopher Ferris82d75042015-01-26 10:57:07 -0800853/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700854};
855#define KVM_REG_ARCH_MASK 0xff00000000000000ULL
856#define KVM_REG_GENERIC 0x0000000000000000ULL
Ben Cheng655a7c02013-10-16 16:09:24 -0700857#define KVM_REG_PPC 0x1000000000000000ULL
Christopher Ferris82d75042015-01-26 10:57:07 -0800858/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700859#define KVM_REG_X86 0x2000000000000000ULL
860#define KVM_REG_IA64 0x3000000000000000ULL
861#define KVM_REG_ARM 0x4000000000000000ULL
Ben Cheng655a7c02013-10-16 16:09:24 -0700862#define KVM_REG_S390 0x5000000000000000ULL
Christopher Ferris82d75042015-01-26 10:57:07 -0800863/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Christopher Ferris38062f92014-07-09 15:33:25 -0700864#define KVM_REG_ARM64 0x6000000000000000ULL
Ben Cheng655a7c02013-10-16 16:09:24 -0700865#define KVM_REG_MIPS 0x7000000000000000ULL
866#define KVM_REG_SIZE_SHIFT 52
Ben Cheng655a7c02013-10-16 16:09:24 -0700867#define KVM_REG_SIZE_MASK 0x00f0000000000000ULL
Christopher Ferris82d75042015-01-26 10:57:07 -0800868/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700869#define KVM_REG_SIZE_U8 0x0000000000000000ULL
870#define KVM_REG_SIZE_U16 0x0010000000000000ULL
871#define KVM_REG_SIZE_U32 0x0020000000000000ULL
Ben Cheng655a7c02013-10-16 16:09:24 -0700872#define KVM_REG_SIZE_U64 0x0030000000000000ULL
Christopher Ferris82d75042015-01-26 10:57:07 -0800873/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700874#define KVM_REG_SIZE_U128 0x0040000000000000ULL
875#define KVM_REG_SIZE_U256 0x0050000000000000ULL
876#define KVM_REG_SIZE_U512 0x0060000000000000ULL
Ben Cheng655a7c02013-10-16 16:09:24 -0700877#define KVM_REG_SIZE_U1024 0x0070000000000000ULL
Christopher Ferris82d75042015-01-26 10:57:07 -0800878/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700879struct kvm_reg_list {
Tao Baod7db5942015-01-28 10:07:51 -0800880 __u64 n;
881 __u64 reg[0];
Ben Cheng655a7c02013-10-16 16:09:24 -0700882};
Christopher Ferris82d75042015-01-26 10:57:07 -0800883/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700884struct kvm_one_reg {
Tao Baod7db5942015-01-28 10:07:51 -0800885 __u64 id;
886 __u64 addr;
Ben Cheng655a7c02013-10-16 16:09:24 -0700887};
Christopher Ferris82d75042015-01-26 10:57:07 -0800888/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700889struct kvm_msi {
Tao Baod7db5942015-01-28 10:07:51 -0800890 __u32 address_lo;
891 __u32 address_hi;
892 __u32 data;
Christopher Ferris82d75042015-01-26 10:57:07 -0800893/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -0800894 __u32 flags;
895 __u8 pad[16];
Ben Cheng655a7c02013-10-16 16:09:24 -0700896};
Ben Cheng655a7c02013-10-16 16:09:24 -0700897struct kvm_arm_device_addr {
Christopher Ferris82d75042015-01-26 10:57:07 -0800898/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -0800899 __u64 id;
900 __u64 addr;
Ben Cheng655a7c02013-10-16 16:09:24 -0700901};
Ben Cheng655a7c02013-10-16 16:09:24 -0700902#define KVM_CREATE_DEVICE_TEST 1
Christopher Ferris82d75042015-01-26 10:57:07 -0800903/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700904struct kvm_create_device {
Tao Baod7db5942015-01-28 10:07:51 -0800905 __u32 type;
906 __u32 fd;
907 __u32 flags;
Christopher Ferris82d75042015-01-26 10:57:07 -0800908/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700909};
910struct kvm_device_attr {
Tao Baod7db5942015-01-28 10:07:51 -0800911 __u32 flags;
912 __u32 group;
Christopher Ferris82d75042015-01-26 10:57:07 -0800913/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -0800914 __u64 attr;
915 __u64 addr;
Ben Cheng655a7c02013-10-16 16:09:24 -0700916};
Christopher Ferris38062f92014-07-09 15:33:25 -0700917#define KVM_DEV_VFIO_GROUP 1
Christopher Ferris82d75042015-01-26 10:57:07 -0800918/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Christopher Ferris38062f92014-07-09 15:33:25 -0700919#define KVM_DEV_VFIO_GROUP_ADD 1
Christopher Ferris38062f92014-07-09 15:33:25 -0700920#define KVM_DEV_VFIO_GROUP_DEL 2
Christopher Ferris82d75042015-01-26 10:57:07 -0800921enum kvm_device_type {
Tao Baod7db5942015-01-28 10:07:51 -0800922 KVM_DEV_TYPE_FSL_MPIC_20 = 1,
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700923/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Christopher Ferris82d75042015-01-26 10:57:07 -0800924#define KVM_DEV_TYPE_FSL_MPIC_20 KVM_DEV_TYPE_FSL_MPIC_20
Tao Baod7db5942015-01-28 10:07:51 -0800925 KVM_DEV_TYPE_FSL_MPIC_42,
Christopher Ferris82d75042015-01-26 10:57:07 -0800926#define KVM_DEV_TYPE_FSL_MPIC_42 KVM_DEV_TYPE_FSL_MPIC_42
Tao Baod7db5942015-01-28 10:07:51 -0800927 KVM_DEV_TYPE_XICS,
Christopher Ferris82d75042015-01-26 10:57:07 -0800928/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
929#define KVM_DEV_TYPE_XICS KVM_DEV_TYPE_XICS
Tao Baod7db5942015-01-28 10:07:51 -0800930 KVM_DEV_TYPE_VFIO,
Christopher Ferris82d75042015-01-26 10:57:07 -0800931#define KVM_DEV_TYPE_VFIO KVM_DEV_TYPE_VFIO
Tao Baod7db5942015-01-28 10:07:51 -0800932 KVM_DEV_TYPE_ARM_VGIC_V2,
Christopher Ferris82d75042015-01-26 10:57:07 -0800933/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
934#define KVM_DEV_TYPE_ARM_VGIC_V2 KVM_DEV_TYPE_ARM_VGIC_V2
Tao Baod7db5942015-01-28 10:07:51 -0800935 KVM_DEV_TYPE_FLIC,
Christopher Ferris82d75042015-01-26 10:57:07 -0800936#define KVM_DEV_TYPE_FLIC KVM_DEV_TYPE_FLIC
Tao Baod7db5942015-01-28 10:07:51 -0800937 KVM_DEV_TYPE_MAX,
Christopher Ferris82d75042015-01-26 10:57:07 -0800938/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
939};
Ben Cheng655a7c02013-10-16 16:09:24 -0700940#define KVM_SET_MEMORY_REGION _IOW(KVMIO, 0x40, struct kvm_memory_region)
Ben Cheng655a7c02013-10-16 16:09:24 -0700941#define KVM_CREATE_VCPU _IO(KVMIO, 0x41)
Christopher Ferris38062f92014-07-09 15:33:25 -0700942#define KVM_GET_DIRTY_LOG _IOW(KVMIO, 0x42, struct kvm_dirty_log)
Christopher Ferris82d75042015-01-26 10:57:07 -0800943/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700944#define KVM_SET_MEMORY_ALIAS _IOW(KVMIO, 0x43, struct kvm_memory_alias)
945#define KVM_SET_NR_MMU_PAGES _IO(KVMIO, 0x44)
Ben Cheng655a7c02013-10-16 16:09:24 -0700946#define KVM_GET_NR_MMU_PAGES _IO(KVMIO, 0x45)
Tao Baod7db5942015-01-28 10:07:51 -0800947#define KVM_SET_USER_MEMORY_REGION _IOW(KVMIO, 0x46, struct kvm_userspace_memory_region)
Christopher Ferris82d75042015-01-26 10:57:07 -0800948/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700949#define KVM_SET_TSS_ADDR _IO(KVMIO, 0x47)
950#define KVM_SET_IDENTITY_MAP_ADDR _IOW(KVMIO, 0x48, __u64)
Ben Cheng655a7c02013-10-16 16:09:24 -0700951struct kvm_s390_ucas_mapping {
Tao Baod7db5942015-01-28 10:07:51 -0800952 __u64 user_addr;
Christopher Ferris82d75042015-01-26 10:57:07 -0800953/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -0800954 __u64 vcpu_addr;
955 __u64 length;
Ben Cheng655a7c02013-10-16 16:09:24 -0700956};
Christopher Ferris38062f92014-07-09 15:33:25 -0700957#define KVM_S390_UCAS_MAP _IOW(KVMIO, 0x50, struct kvm_s390_ucas_mapping)
Christopher Ferris82d75042015-01-26 10:57:07 -0800958/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700959#define KVM_S390_UCAS_UNMAP _IOW(KVMIO, 0x51, struct kvm_s390_ucas_mapping)
960#define KVM_S390_VCPU_FAULT _IOW(KVMIO, 0x52, unsigned long)
Ben Cheng655a7c02013-10-16 16:09:24 -0700961#define KVM_CREATE_IRQCHIP _IO(KVMIO, 0x60)
Christopher Ferris38062f92014-07-09 15:33:25 -0700962#define KVM_IRQ_LINE _IOW(KVMIO, 0x61, struct kvm_irq_level)
Christopher Ferris82d75042015-01-26 10:57:07 -0800963/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700964#define KVM_GET_IRQCHIP _IOWR(KVMIO, 0x62, struct kvm_irqchip)
965#define KVM_SET_IRQCHIP _IOR(KVMIO, 0x63, struct kvm_irqchip)
Ben Cheng655a7c02013-10-16 16:09:24 -0700966#define KVM_CREATE_PIT _IO(KVMIO, 0x64)
Christopher Ferris38062f92014-07-09 15:33:25 -0700967#define KVM_GET_PIT _IOWR(KVMIO, 0x65, struct kvm_pit_state)
Christopher Ferris82d75042015-01-26 10:57:07 -0800968/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700969#define KVM_SET_PIT _IOR(KVMIO, 0x66, struct kvm_pit_state)
970#define KVM_IRQ_LINE_STATUS _IOWR(KVMIO, 0x67, struct kvm_irq_level)
Tao Baod7db5942015-01-28 10:07:51 -0800971#define KVM_REGISTER_COALESCED_MMIO _IOW(KVMIO, 0x67, struct kvm_coalesced_mmio_zone)
972#define KVM_UNREGISTER_COALESCED_MMIO _IOW(KVMIO, 0x68, struct kvm_coalesced_mmio_zone)
Christopher Ferris82d75042015-01-26 10:57:07 -0800973/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -0800974#define KVM_ASSIGN_PCI_DEVICE _IOR(KVMIO, 0x69, struct kvm_assigned_pci_dev)
Ben Cheng655a7c02013-10-16 16:09:24 -0700975#define KVM_SET_GSI_ROUTING _IOW(KVMIO, 0x6a, struct kvm_irq_routing)
Ben Cheng655a7c02013-10-16 16:09:24 -0700976#define KVM_ASSIGN_IRQ __KVM_DEPRECATED_VM_R_0x70
Christopher Ferris38062f92014-07-09 15:33:25 -0700977#define KVM_ASSIGN_DEV_IRQ _IOW(KVMIO, 0x70, struct kvm_assigned_irq)
Christopher Ferris82d75042015-01-26 10:57:07 -0800978/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700979#define KVM_REINJECT_CONTROL _IO(KVMIO, 0x71)
Tao Baod7db5942015-01-28 10:07:51 -0800980#define KVM_DEASSIGN_PCI_DEVICE _IOW(KVMIO, 0x72, struct kvm_assigned_pci_dev)
981#define KVM_ASSIGN_SET_MSIX_NR _IOW(KVMIO, 0x73, struct kvm_assigned_msix_nr)
982#define KVM_ASSIGN_SET_MSIX_ENTRY _IOW(KVMIO, 0x74, struct kvm_assigned_msix_entry)
Christopher Ferris82d75042015-01-26 10:57:07 -0800983/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700984#define KVM_DEASSIGN_DEV_IRQ _IOW(KVMIO, 0x75, struct kvm_assigned_irq)
985#define KVM_IRQFD _IOW(KVMIO, 0x76, struct kvm_irqfd)
Ben Cheng655a7c02013-10-16 16:09:24 -0700986#define KVM_CREATE_PIT2 _IOW(KVMIO, 0x77, struct kvm_pit_config)
Christopher Ferris38062f92014-07-09 15:33:25 -0700987#define KVM_SET_BOOT_CPU_ID _IO(KVMIO, 0x78)
Christopher Ferris82d75042015-01-26 10:57:07 -0800988/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700989#define KVM_IOEVENTFD _IOW(KVMIO, 0x79, struct kvm_ioeventfd)
990#define KVM_XEN_HVM_CONFIG _IOW(KVMIO, 0x7a, struct kvm_xen_hvm_config)
Ben Cheng655a7c02013-10-16 16:09:24 -0700991#define KVM_SET_CLOCK _IOW(KVMIO, 0x7b, struct kvm_clock_data)
Christopher Ferris38062f92014-07-09 15:33:25 -0700992#define KVM_GET_CLOCK _IOR(KVMIO, 0x7c, struct kvm_clock_data)
Christopher Ferris82d75042015-01-26 10:57:07 -0800993/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700994#define KVM_GET_PIT2 _IOR(KVMIO, 0x9f, struct kvm_pit_state2)
995#define KVM_SET_PIT2 _IOW(KVMIO, 0xa0, struct kvm_pit_state2)
Ben Cheng655a7c02013-10-16 16:09:24 -0700996#define KVM_PPC_GET_PVINFO _IOW(KVMIO, 0xa1, struct kvm_ppc_pvinfo)
Christopher Ferris38062f92014-07-09 15:33:25 -0700997#define KVM_SET_TSC_KHZ _IO(KVMIO, 0xa2)
Christopher Ferris82d75042015-01-26 10:57:07 -0800998/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -0700999#define KVM_GET_TSC_KHZ _IO(KVMIO, 0xa3)
Tao Baod7db5942015-01-28 10:07:51 -08001000#define KVM_ASSIGN_SET_INTX_MASK _IOW(KVMIO, 0xa4, struct kvm_assigned_pci_dev)
Ben Cheng655a7c02013-10-16 16:09:24 -07001001#define KVM_SIGNAL_MSI _IOW(KVMIO, 0xa5, struct kvm_msi)
Christopher Ferris38062f92014-07-09 15:33:25 -07001002#define KVM_PPC_GET_SMMU_INFO _IOR(KVMIO, 0xa6, struct kvm_ppc_smmu_info)
Christopher Ferris82d75042015-01-26 10:57:07 -08001003/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -07001004#define KVM_PPC_ALLOCATE_HTAB _IOWR(KVMIO, 0xa7, __u32)
1005#define KVM_CREATE_SPAPR_TCE _IOW(KVMIO, 0xa8, struct kvm_create_spapr_tce)
Ben Cheng655a7c02013-10-16 16:09:24 -07001006#define KVM_ALLOCATE_RMA _IOR(KVMIO, 0xa9, struct kvm_allocate_rma)
Christopher Ferris38062f92014-07-09 15:33:25 -07001007#define KVM_PPC_GET_HTAB_FD _IOW(KVMIO, 0xaa, struct kvm_get_htab_fd)
Christopher Ferris82d75042015-01-26 10:57:07 -08001008/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -07001009#define KVM_ARM_SET_DEVICE_ADDR _IOW(KVMIO, 0xab, struct kvm_arm_device_addr)
1010#define KVM_PPC_RTAS_DEFINE_TOKEN _IOW(KVMIO, 0xac, struct kvm_rtas_token_args)
Ben Cheng655a7c02013-10-16 16:09:24 -07001011#define KVM_CREATE_DEVICE _IOWR(KVMIO, 0xe0, struct kvm_create_device)
Christopher Ferris38062f92014-07-09 15:33:25 -07001012#define KVM_SET_DEVICE_ATTR _IOW(KVMIO, 0xe1, struct kvm_device_attr)
Christopher Ferris82d75042015-01-26 10:57:07 -08001013/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -07001014#define KVM_GET_DEVICE_ATTR _IOW(KVMIO, 0xe2, struct kvm_device_attr)
1015#define KVM_HAS_DEVICE_ATTR _IOW(KVMIO, 0xe3, struct kvm_device_attr)
Ben Cheng655a7c02013-10-16 16:09:24 -07001016#define KVM_RUN _IO(KVMIO, 0x80)
Christopher Ferris38062f92014-07-09 15:33:25 -07001017#define KVM_GET_REGS _IOR(KVMIO, 0x81, struct kvm_regs)
Christopher Ferris82d75042015-01-26 10:57:07 -08001018/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -07001019#define KVM_SET_REGS _IOW(KVMIO, 0x82, struct kvm_regs)
1020#define KVM_GET_SREGS _IOR(KVMIO, 0x83, struct kvm_sregs)
Ben Cheng655a7c02013-10-16 16:09:24 -07001021#define KVM_SET_SREGS _IOW(KVMIO, 0x84, struct kvm_sregs)
Christopher Ferris38062f92014-07-09 15:33:25 -07001022#define KVM_TRANSLATE _IOWR(KVMIO, 0x85, struct kvm_translation)
Christopher Ferris82d75042015-01-26 10:57:07 -08001023/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -07001024#define KVM_INTERRUPT _IOW(KVMIO, 0x86, struct kvm_interrupt)
1025#define KVM_DEBUG_GUEST __KVM_DEPRECATED_VCPU_W_0x87
Ben Cheng655a7c02013-10-16 16:09:24 -07001026#define KVM_GET_MSRS _IOWR(KVMIO, 0x88, struct kvm_msrs)
Christopher Ferris38062f92014-07-09 15:33:25 -07001027#define KVM_SET_MSRS _IOW(KVMIO, 0x89, struct kvm_msrs)
Christopher Ferris82d75042015-01-26 10:57:07 -08001028/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -07001029#define KVM_SET_CPUID _IOW(KVMIO, 0x8a, struct kvm_cpuid)
1030#define KVM_SET_SIGNAL_MASK _IOW(KVMIO, 0x8b, struct kvm_signal_mask)
Ben Cheng655a7c02013-10-16 16:09:24 -07001031#define KVM_GET_FPU _IOR(KVMIO, 0x8c, struct kvm_fpu)
Christopher Ferris38062f92014-07-09 15:33:25 -07001032#define KVM_SET_FPU _IOW(KVMIO, 0x8d, struct kvm_fpu)
Christopher Ferris82d75042015-01-26 10:57:07 -08001033/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -07001034#define KVM_GET_LAPIC _IOR(KVMIO, 0x8e, struct kvm_lapic_state)
1035#define KVM_SET_LAPIC _IOW(KVMIO, 0x8f, struct kvm_lapic_state)
Ben Cheng655a7c02013-10-16 16:09:24 -07001036#define KVM_SET_CPUID2 _IOW(KVMIO, 0x90, struct kvm_cpuid2)
Christopher Ferris38062f92014-07-09 15:33:25 -07001037#define KVM_GET_CPUID2 _IOWR(KVMIO, 0x91, struct kvm_cpuid2)
Christopher Ferris82d75042015-01-26 10:57:07 -08001038/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -07001039#define KVM_TPR_ACCESS_REPORTING _IOWR(KVMIO, 0x92, struct kvm_tpr_access_ctl)
1040#define KVM_SET_VAPIC_ADDR _IOW(KVMIO, 0x93, struct kvm_vapic_addr)
Ben Cheng655a7c02013-10-16 16:09:24 -07001041#define KVM_S390_INTERRUPT _IOW(KVMIO, 0x94, struct kvm_s390_interrupt)
Tao Baod7db5942015-01-28 10:07:51 -08001042#define KVM_S390_STORE_STATUS_NOADDR (- 1ul)
Christopher Ferris82d75042015-01-26 10:57:07 -08001043/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -08001044#define KVM_S390_STORE_STATUS_PREFIXED (- 2ul)
Ben Cheng655a7c02013-10-16 16:09:24 -07001045#define KVM_S390_STORE_STATUS _IOW(KVMIO, 0x95, unsigned long)
Ben Cheng655a7c02013-10-16 16:09:24 -07001046#define KVM_S390_SET_INITIAL_PSW _IOW(KVMIO, 0x96, struct kvm_s390_psw)
Christopher Ferris38062f92014-07-09 15:33:25 -07001047#define KVM_S390_INITIAL_RESET _IO(KVMIO, 0x97)
Christopher Ferris82d75042015-01-26 10:57:07 -08001048/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -07001049#define KVM_GET_MP_STATE _IOR(KVMIO, 0x98, struct kvm_mp_state)
1050#define KVM_SET_MP_STATE _IOW(KVMIO, 0x99, struct kvm_mp_state)
Ben Cheng655a7c02013-10-16 16:09:24 -07001051#define KVM_NMI _IO(KVMIO, 0x9a)
Christopher Ferris38062f92014-07-09 15:33:25 -07001052#define KVM_SET_GUEST_DEBUG _IOW(KVMIO, 0x9b, struct kvm_guest_debug)
Christopher Ferris82d75042015-01-26 10:57:07 -08001053/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -07001054#define KVM_X86_SETUP_MCE _IOW(KVMIO, 0x9c, __u64)
1055#define KVM_X86_GET_MCE_CAP_SUPPORTED _IOR(KVMIO, 0x9d, __u64)
Ben Cheng655a7c02013-10-16 16:09:24 -07001056#define KVM_X86_SET_MCE _IOW(KVMIO, 0x9e, struct kvm_x86_mce)
Christopher Ferris38062f92014-07-09 15:33:25 -07001057#define KVM_IA64_VCPU_GET_STACK _IOR(KVMIO, 0x9a, void *)
Christopher Ferris82d75042015-01-26 10:57:07 -08001058/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -07001059#define KVM_IA64_VCPU_SET_STACK _IOW(KVMIO, 0x9b, void *)
1060#define KVM_GET_VCPU_EVENTS _IOR(KVMIO, 0x9f, struct kvm_vcpu_events)
Ben Cheng655a7c02013-10-16 16:09:24 -07001061#define KVM_SET_VCPU_EVENTS _IOW(KVMIO, 0xa0, struct kvm_vcpu_events)
Christopher Ferris38062f92014-07-09 15:33:25 -07001062#define KVM_GET_DEBUGREGS _IOR(KVMIO, 0xa1, struct kvm_debugregs)
Christopher Ferris82d75042015-01-26 10:57:07 -08001063/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -07001064#define KVM_SET_DEBUGREGS _IOW(KVMIO, 0xa2, struct kvm_debugregs)
1065#define KVM_ENABLE_CAP _IOW(KVMIO, 0xa3, struct kvm_enable_cap)
Ben Cheng655a7c02013-10-16 16:09:24 -07001066#define KVM_GET_XSAVE _IOR(KVMIO, 0xa4, struct kvm_xsave)
Christopher Ferris38062f92014-07-09 15:33:25 -07001067#define KVM_SET_XSAVE _IOW(KVMIO, 0xa5, struct kvm_xsave)
Christopher Ferris82d75042015-01-26 10:57:07 -08001068/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -07001069#define KVM_GET_XCRS _IOR(KVMIO, 0xa6, struct kvm_xcrs)
1070#define KVM_SET_XCRS _IOW(KVMIO, 0xa7, struct kvm_xcrs)
Ben Cheng655a7c02013-10-16 16:09:24 -07001071#define KVM_DIRTY_TLB _IOW(KVMIO, 0xaa, struct kvm_dirty_tlb)
Christopher Ferris38062f92014-07-09 15:33:25 -07001072#define KVM_GET_ONE_REG _IOW(KVMIO, 0xab, struct kvm_one_reg)
Christopher Ferris82d75042015-01-26 10:57:07 -08001073/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -07001074#define KVM_SET_ONE_REG _IOW(KVMIO, 0xac, struct kvm_one_reg)
1075#define KVM_KVMCLOCK_CTRL _IO(KVMIO, 0xad)
Ben Cheng655a7c02013-10-16 16:09:24 -07001076#define KVM_ARM_VCPU_INIT _IOW(KVMIO, 0xae, struct kvm_vcpu_init)
Christopher Ferris38062f92014-07-09 15:33:25 -07001077#define KVM_ARM_PREFERRED_TARGET _IOR(KVMIO, 0xaf, struct kvm_vcpu_init)
Christopher Ferris82d75042015-01-26 10:57:07 -08001078/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Christopher Ferris38062f92014-07-09 15:33:25 -07001079#define KVM_GET_REG_LIST _IOWR(KVMIO, 0xb0, struct kvm_reg_list)
Ben Cheng655a7c02013-10-16 16:09:24 -07001080#define KVM_DEV_ASSIGN_ENABLE_IOMMU (1 << 0)
1081#define KVM_DEV_ASSIGN_PCI_2_3 (1 << 1)
Ben Cheng655a7c02013-10-16 16:09:24 -07001082#define KVM_DEV_ASSIGN_MASK_INTX (1 << 2)
Christopher Ferris82d75042015-01-26 10:57:07 -08001083/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -07001084struct kvm_assigned_pci_dev {
Tao Baod7db5942015-01-28 10:07:51 -08001085 __u32 assigned_dev_id;
1086 __u32 busnr;
1087 __u32 devfn;
Christopher Ferris82d75042015-01-26 10:57:07 -08001088/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -08001089 __u32 flags;
1090 __u32 segnr;
1091 union {
1092 __u32 reserved[11];
Christopher Ferris82d75042015-01-26 10:57:07 -08001093/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -08001094 };
Ben Cheng655a7c02013-10-16 16:09:24 -07001095};
1096#define KVM_DEV_IRQ_HOST_INTX (1 << 0)
Ben Cheng655a7c02013-10-16 16:09:24 -07001097#define KVM_DEV_IRQ_HOST_MSI (1 << 1)
Christopher Ferris82d75042015-01-26 10:57:07 -08001098/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -07001099#define KVM_DEV_IRQ_HOST_MSIX (1 << 2)
1100#define KVM_DEV_IRQ_GUEST_INTX (1 << 8)
1101#define KVM_DEV_IRQ_GUEST_MSI (1 << 9)
Ben Cheng655a7c02013-10-16 16:09:24 -07001102#define KVM_DEV_IRQ_GUEST_MSIX (1 << 10)
Christopher Ferris82d75042015-01-26 10:57:07 -08001103/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -07001104#define KVM_DEV_IRQ_HOST_MASK 0x00ff
1105#define KVM_DEV_IRQ_GUEST_MASK 0xff00
1106struct kvm_assigned_irq {
Tao Baod7db5942015-01-28 10:07:51 -08001107 __u32 assigned_dev_id;
Christopher Ferris82d75042015-01-26 10:57:07 -08001108/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -08001109 __u32 host_irq;
1110 __u32 guest_irq;
1111 __u32 flags;
1112 union {
Christopher Ferris82d75042015-01-26 10:57:07 -08001113/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -08001114 __u32 reserved[12];
1115 };
Ben Cheng655a7c02013-10-16 16:09:24 -07001116};
Ben Cheng655a7c02013-10-16 16:09:24 -07001117struct kvm_assigned_msix_nr {
Christopher Ferris82d75042015-01-26 10:57:07 -08001118/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -08001119 __u32 assigned_dev_id;
1120 __u16 entry_nr;
1121 __u16 padding;
Ben Cheng655a7c02013-10-16 16:09:24 -07001122};
Christopher Ferris82d75042015-01-26 10:57:07 -08001123/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -07001124#define KVM_MAX_MSIX_PER_DEV 256
1125struct kvm_assigned_msix_entry {
Tao Baod7db5942015-01-28 10:07:51 -08001126 __u32 assigned_dev_id;
1127 __u32 gsi;
Christopher Ferris82d75042015-01-26 10:57:07 -08001128/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -08001129 __u16 entry;
1130 __u16 padding[3];
Ben Cheng655a7c02013-10-16 16:09:24 -07001131};
Ben Cheng655a7c02013-10-16 16:09:24 -07001132#endif
Christopher Ferris82d75042015-01-26 10:57:07 -08001133/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */