vmm.h revision 266933
1221828Sgrehan/*-
2221828Sgrehan * Copyright (c) 2011 NetApp, Inc.
3221828Sgrehan * All rights reserved.
4221828Sgrehan *
5221828Sgrehan * Redistribution and use in source and binary forms, with or without
6221828Sgrehan * modification, are permitted provided that the following conditions
7221828Sgrehan * are met:
8221828Sgrehan * 1. Redistributions of source code must retain the above copyright
9221828Sgrehan *    notice, this list of conditions and the following disclaimer.
10221828Sgrehan * 2. Redistributions in binary form must reproduce the above copyright
11221828Sgrehan *    notice, this list of conditions and the following disclaimer in the
12221828Sgrehan *    documentation and/or other materials provided with the distribution.
13221828Sgrehan *
14221828Sgrehan * THIS SOFTWARE IS PROVIDED BY NETAPP, INC ``AS IS'' AND
15221828Sgrehan * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16221828Sgrehan * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17221828Sgrehan * ARE DISCLAIMED.  IN NO EVENT SHALL NETAPP, INC OR CONTRIBUTORS BE LIABLE
18221828Sgrehan * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19221828Sgrehan * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20221828Sgrehan * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21221828Sgrehan * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22221828Sgrehan * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23221828Sgrehan * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24221828Sgrehan * SUCH DAMAGE.
25221828Sgrehan *
26245678Sneel * $FreeBSD: head/sys/amd64/include/vmm.h 266933 2014-05-31 23:37:34Z neel $
27221828Sgrehan */
28221828Sgrehan
29221828Sgrehan#ifndef _VMM_H_
30221828Sgrehan#define	_VMM_H_
31221828Sgrehan
32265062Sneelenum vm_suspend_how {
33265062Sneel	VM_SUSPEND_NONE,
34265062Sneel	VM_SUSPEND_RESET,
35265062Sneel	VM_SUSPEND_POWEROFF,
36265203Sneel	VM_SUSPEND_HALT,
37265062Sneel	VM_SUSPEND_LAST
38265062Sneel};
39265062Sneel
40221828Sgrehan#ifdef _KERNEL
41221828Sgrehan
42221828Sgrehan#define	VM_MAX_NAMELEN	32
43221828Sgrehan
44221828Sgrehanstruct vm;
45262506Sneelstruct vm_exception;
46221828Sgrehanstruct vm_memory_segment;
47221828Sgrehanstruct seg_desc;
48221828Sgrehanstruct vm_exit;
49221828Sgrehanstruct vm_run;
50258579Sneelstruct vhpet;
51258075Sneelstruct vioapic;
52221828Sgrehanstruct vlapic;
53256072Sneelstruct vmspace;
54256072Sneelstruct vm_object;
55256072Sneelstruct pmap;
56221828Sgrehan
57266573Sneelenum vm_reg_name;
58240922Sneelenum x2apic_state;
59240922Sneel
60260466Sneeltypedef int	(*vmm_init_func_t)(int ipinum);
61221828Sgrehantypedef int	(*vmm_cleanup_func_t)(void);
62259782Sjhbtypedef void	(*vmm_resume_func_t)(void);
63256072Sneeltypedef void *	(*vmi_init_func_t)(struct vm *vm, struct pmap *pmap);
64256072Sneeltypedef int	(*vmi_run_func_t)(void *vmi, int vcpu, register_t rip,
65263780Sneel				  struct pmap *pmap, void *rendezvous_cookie,
66263780Sneel				  void *suspend_cookie);
67221828Sgrehantypedef void	(*vmi_cleanup_func_t)(void *vmi);
68221828Sgrehantypedef int	(*vmi_get_register_t)(void *vmi, int vcpu, int num,
69221828Sgrehan				      uint64_t *retval);
70221828Sgrehantypedef int	(*vmi_set_register_t)(void *vmi, int vcpu, int num,
71221828Sgrehan				      uint64_t val);
72221828Sgrehantypedef int	(*vmi_get_desc_t)(void *vmi, int vcpu, int num,
73221828Sgrehan				  struct seg_desc *desc);
74221828Sgrehantypedef int	(*vmi_set_desc_t)(void *vmi, int vcpu, int num,
75221828Sgrehan				  struct seg_desc *desc);
76221828Sgrehantypedef int	(*vmi_get_cap_t)(void *vmi, int vcpu, int num, int *retval);
77221828Sgrehantypedef int	(*vmi_set_cap_t)(void *vmi, int vcpu, int num, int val);
78256072Sneeltypedef struct vmspace * (*vmi_vmspace_alloc)(vm_offset_t min, vm_offset_t max);
79256072Sneeltypedef void	(*vmi_vmspace_free)(struct vmspace *vmspace);
80259863Sneeltypedef struct vlapic * (*vmi_vlapic_init)(void *vmi, int vcpu);
81259863Sneeltypedef void	(*vmi_vlapic_cleanup)(void *vmi, struct vlapic *vlapic);
82221828Sgrehan
83221828Sgrehanstruct vmm_ops {
84221828Sgrehan	vmm_init_func_t		init;		/* module wide initialization */
85221828Sgrehan	vmm_cleanup_func_t	cleanup;
86259782Sjhb	vmm_resume_func_t	resume;
87221828Sgrehan
88221828Sgrehan	vmi_init_func_t		vminit;		/* vm-specific initialization */
89221828Sgrehan	vmi_run_func_t		vmrun;
90221828Sgrehan	vmi_cleanup_func_t	vmcleanup;
91221828Sgrehan	vmi_get_register_t	vmgetreg;
92221828Sgrehan	vmi_set_register_t	vmsetreg;
93221828Sgrehan	vmi_get_desc_t		vmgetdesc;
94221828Sgrehan	vmi_set_desc_t		vmsetdesc;
95221828Sgrehan	vmi_get_cap_t		vmgetcap;
96221828Sgrehan	vmi_set_cap_t		vmsetcap;
97256072Sneel	vmi_vmspace_alloc	vmspace_alloc;
98256072Sneel	vmi_vmspace_free	vmspace_free;
99259863Sneel	vmi_vlapic_init		vlapic_init;
100259863Sneel	vmi_vlapic_cleanup	vlapic_cleanup;
101221828Sgrehan};
102221828Sgrehan
103221828Sgrehanextern struct vmm_ops vmm_ops_intel;
104221828Sgrehanextern struct vmm_ops vmm_ops_amd;
105221828Sgrehan
106249396Sneelint vm_create(const char *name, struct vm **retvm);
107221828Sgrehanvoid vm_destroy(struct vm *vm);
108221828Sgrehanconst char *vm_name(struct vm *vm);
109241041Sneelint vm_malloc(struct vm *vm, vm_paddr_t gpa, size_t len);
110221828Sgrehanint vm_map_mmio(struct vm *vm, vm_paddr_t gpa, size_t len, vm_paddr_t hpa);
111221828Sgrehanint vm_unmap_mmio(struct vm *vm, vm_paddr_t gpa, size_t len);
112256072Sneelvoid *vm_gpa_hold(struct vm *, vm_paddr_t gpa, size_t len, int prot,
113256072Sneel		  void **cookie);
114256072Sneelvoid vm_gpa_release(void *cookie);
115221828Sgrehanint vm_gpabase2memseg(struct vm *vm, vm_paddr_t gpabase,
116221828Sgrehan	      struct vm_memory_segment *seg);
117256072Sneelint vm_get_memobj(struct vm *vm, vm_paddr_t gpa, size_t len,
118256072Sneel		  vm_offset_t *offset, struct vm_object **object);
119256072Sneelboolean_t vm_mem_allocated(struct vm *vm, vm_paddr_t gpa);
120221828Sgrehanint vm_get_register(struct vm *vm, int vcpu, int reg, uint64_t *retval);
121221828Sgrehanint vm_set_register(struct vm *vm, int vcpu, int reg, uint64_t val);
122221828Sgrehanint vm_get_seg_desc(struct vm *vm, int vcpu, int reg,
123221828Sgrehan		    struct seg_desc *ret_desc);
124221828Sgrehanint vm_set_seg_desc(struct vm *vm, int vcpu, int reg,
125221828Sgrehan		    struct seg_desc *desc);
126221828Sgrehanint vm_run(struct vm *vm, struct vm_run *vmrun);
127265062Sneelint vm_suspend(struct vm *vm, enum vm_suspend_how how);
128221828Sgrehanint vm_inject_nmi(struct vm *vm, int vcpu);
129241982Sneelint vm_nmi_pending(struct vm *vm, int vcpuid);
130241982Sneelvoid vm_nmi_clear(struct vm *vm, int vcpuid);
131263211Stychonint vm_inject_extint(struct vm *vm, int vcpu);
132263211Stychonint vm_extint_pending(struct vm *vm, int vcpuid);
133263211Stychonvoid vm_extint_clear(struct vm *vm, int vcpuid);
134221828Sgrehanuint64_t *vm_guest_msrs(struct vm *vm, int cpu);
135221828Sgrehanstruct vlapic *vm_lapic(struct vm *vm, int cpu);
136258075Sneelstruct vioapic *vm_ioapic(struct vm *vm);
137258579Sneelstruct vhpet *vm_hpet(struct vm *vm);
138221828Sgrehanint vm_get_capability(struct vm *vm, int vcpu, int type, int *val);
139221828Sgrehanint vm_set_capability(struct vm *vm, int vcpu, int type, int val);
140240922Sneelint vm_get_x2apic_state(struct vm *vm, int vcpu, enum x2apic_state *state);
141240922Sneelint vm_set_x2apic_state(struct vm *vm, int vcpu, enum x2apic_state state);
142258075Sneelint vm_apicid2vcpuid(struct vm *vm, int apicid);
143266933Sneelint vm_activate_cpu(struct vm *vm, int vcpu);
144223621Sgrehancpuset_t vm_active_cpus(struct vm *vm);
145266933Sneelcpuset_t vm_suspended_cpus(struct vm *vm);
146240894Sneelstruct vm_exit *vm_exitinfo(struct vm *vm, int vcpuid);
147265062Sneelvoid vm_exit_suspended(struct vm *vm, int vcpuid, uint64_t rip);
148221828Sgrehan
149221828Sgrehan/*
150260619Sneel * Rendezvous all vcpus specified in 'dest' and execute 'func(arg)'.
151260619Sneel * The rendezvous 'func(arg)' is not allowed to do anything that will
152260619Sneel * cause the thread to be put to sleep.
153260619Sneel *
154260619Sneel * If the rendezvous is being initiated from a vcpu context then the
155260619Sneel * 'vcpuid' must refer to that vcpu, otherwise it should be set to -1.
156260619Sneel *
157260619Sneel * The caller cannot hold any locks when initiating the rendezvous.
158260619Sneel *
159260619Sneel * The implementation of this API may cause vcpus other than those specified
160260619Sneel * by 'dest' to be stalled. The caller should not rely on any vcpus making
161260619Sneel * forward progress when the rendezvous is in progress.
162260619Sneel */
163260619Sneeltypedef void (*vm_rendezvous_func_t)(struct vm *vm, int vcpuid, void *arg);
164260619Sneelvoid vm_smp_rendezvous(struct vm *vm, int vcpuid, cpuset_t dest,
165260619Sneel    vm_rendezvous_func_t func, void *arg);
166260619Sneel
167260619Sneelstatic __inline int
168260619Sneelvcpu_rendezvous_pending(void *rendezvous_cookie)
169260619Sneel{
170260619Sneel
171260619Sneel	return (*(uintptr_t *)rendezvous_cookie != 0);
172260619Sneel}
173260619Sneel
174263780Sneelstatic __inline int
175263780Sneelvcpu_suspended(void *suspend_cookie)
176263780Sneel{
177263780Sneel
178263780Sneel	return (*(int *)suspend_cookie);
179263780Sneel}
180263780Sneel
181260619Sneel/*
182221828Sgrehan * Return 1 if device indicated by bus/slot/func is supposed to be a
183221828Sgrehan * pci passthrough device.
184221828Sgrehan *
185221828Sgrehan * Return 0 otherwise.
186221828Sgrehan */
187221828Sgrehanint vmm_is_pptdev(int bus, int slot, int func);
188221828Sgrehan
189221828Sgrehanvoid *vm_iommu_domain(struct vm *vm);
190221828Sgrehan
191241489Sneelenum vcpu_state {
192241489Sneel	VCPU_IDLE,
193256072Sneel	VCPU_FROZEN,
194241489Sneel	VCPU_RUNNING,
195256072Sneel	VCPU_SLEEPING,
196241489Sneel};
197221828Sgrehan
198259737Sneelint vcpu_set_state(struct vm *vm, int vcpu, enum vcpu_state state,
199259737Sneel    bool from_idle);
200249879Sgrehanenum vcpu_state vcpu_get_state(struct vm *vm, int vcpu, int *hostcpu);
201221828Sgrehan
202221828Sgrehanstatic int __inline
203249879Sgrehanvcpu_is_running(struct vm *vm, int vcpu, int *hostcpu)
204221828Sgrehan{
205249879Sgrehan	return (vcpu_get_state(vm, vcpu, hostcpu) == VCPU_RUNNING);
206221828Sgrehan}
207221828Sgrehan
208241489Sneelvoid *vcpu_stats(struct vm *vm, int vcpu);
209259863Sneelvoid vcpu_notify_event(struct vm *vm, int vcpuid, bool lapic_intr);
210256072Sneelstruct vmspace *vm_get_vmspace(struct vm *vm);
211256072Sneelint vm_assign_pptdev(struct vm *vm, int bus, int slot, int func);
212256072Sneelint vm_unassign_pptdev(struct vm *vm, int bus, int slot, int func);
213263035Stychonstruct vatpic *vm_atpic(struct vm *vm);
214263744Stychonstruct vatpit *vm_atpit(struct vm *vm);
215262506Sneel
216262506Sneel/*
217262506Sneel * Inject exception 'vme' into the guest vcpu. This function returns 0 on
218262506Sneel * success and non-zero on failure.
219262506Sneel *
220262506Sneel * Wrapper functions like 'vm_inject_gp()' should be preferred to calling
221262506Sneel * this function directly because they enforce the trap-like or fault-like
222262506Sneel * behavior of an exception.
223262506Sneel *
224262506Sneel * This function should only be called in the context of the thread that is
225262506Sneel * executing this vcpu.
226262506Sneel */
227262506Sneelint vm_inject_exception(struct vm *vm, int vcpuid, struct vm_exception *vme);
228262506Sneel
229262506Sneel/*
230262506Sneel * Returns 0 if there is no exception pending for this vcpu. Returns 1 if an
231262506Sneel * exception is pending and also updates 'vme'. The pending exception is
232262506Sneel * cleared when this function returns.
233262506Sneel *
234262506Sneel * This function should only be called in the context of the thread that is
235262506Sneel * executing this vcpu.
236262506Sneel */
237262506Sneelint vm_exception_pending(struct vm *vm, int vcpuid, struct vm_exception *vme);
238262506Sneel
239262506Sneelvoid vm_inject_gp(struct vm *vm, int vcpuid); /* general protection fault */
240262506Sneelvoid vm_inject_ud(struct vm *vm, int vcpuid); /* undefined instruction fault */
241266626Sneelvoid vm_inject_pf(struct vm *vm, int vcpuid, int error_code, uint64_t cr2);
242262506Sneel
243266573Sneelenum vm_reg_name vm_segment_name(int seg_encoding);
244266573Sneel
245221828Sgrehan#endif	/* KERNEL */
246221828Sgrehan
247255438Sgrehan#define	VM_MAXCPU	16			/* maximum virtual cpus */
248221828Sgrehan
249221828Sgrehan/*
250221828Sgrehan * Identifiers for architecturally defined registers.
251221828Sgrehan */
252221828Sgrehanenum vm_reg_name {
253221828Sgrehan	VM_REG_GUEST_RAX,
254221828Sgrehan	VM_REG_GUEST_RBX,
255221828Sgrehan	VM_REG_GUEST_RCX,
256221828Sgrehan	VM_REG_GUEST_RDX,
257221828Sgrehan	VM_REG_GUEST_RSI,
258221828Sgrehan	VM_REG_GUEST_RDI,
259221828Sgrehan	VM_REG_GUEST_RBP,
260221828Sgrehan	VM_REG_GUEST_R8,
261221828Sgrehan	VM_REG_GUEST_R9,
262221828Sgrehan	VM_REG_GUEST_R10,
263221828Sgrehan	VM_REG_GUEST_R11,
264221828Sgrehan	VM_REG_GUEST_R12,
265221828Sgrehan	VM_REG_GUEST_R13,
266221828Sgrehan	VM_REG_GUEST_R14,
267221828Sgrehan	VM_REG_GUEST_R15,
268221828Sgrehan	VM_REG_GUEST_CR0,
269221828Sgrehan	VM_REG_GUEST_CR3,
270221828Sgrehan	VM_REG_GUEST_CR4,
271221828Sgrehan	VM_REG_GUEST_DR7,
272221828Sgrehan	VM_REG_GUEST_RSP,
273221828Sgrehan	VM_REG_GUEST_RIP,
274221828Sgrehan	VM_REG_GUEST_RFLAGS,
275221828Sgrehan	VM_REG_GUEST_ES,
276221828Sgrehan	VM_REG_GUEST_CS,
277221828Sgrehan	VM_REG_GUEST_SS,
278221828Sgrehan	VM_REG_GUEST_DS,
279221828Sgrehan	VM_REG_GUEST_FS,
280221828Sgrehan	VM_REG_GUEST_GS,
281221828Sgrehan	VM_REG_GUEST_LDTR,
282221828Sgrehan	VM_REG_GUEST_TR,
283221828Sgrehan	VM_REG_GUEST_IDTR,
284221828Sgrehan	VM_REG_GUEST_GDTR,
285221828Sgrehan	VM_REG_GUEST_EFER,
286266626Sneel	VM_REG_GUEST_CR2,
287221828Sgrehan	VM_REG_LAST
288221828Sgrehan};
289221828Sgrehan
290221828Sgrehan/*
291221828Sgrehan * Identifiers for optional vmm capabilities
292221828Sgrehan */
293221828Sgrehanenum vm_cap_type {
294221828Sgrehan	VM_CAP_HALT_EXIT,
295221828Sgrehan	VM_CAP_MTRAP_EXIT,
296221828Sgrehan	VM_CAP_PAUSE_EXIT,
297221828Sgrehan	VM_CAP_UNRESTRICTED_GUEST,
298256645Sneel	VM_CAP_ENABLE_INVPCID,
299221828Sgrehan	VM_CAP_MAX
300221828Sgrehan};
301221828Sgrehan
302240922Sneelenum x2apic_state {
303262236Sneel	X2APIC_DISABLED,
304240922Sneel	X2APIC_ENABLED,
305240922Sneel	X2APIC_STATE_LAST
306240922Sneel};
307240922Sneel
308266125Sjhbenum vm_intr_trigger {
309266125Sjhb	EDGE_TRIGGER,
310266125Sjhb	LEVEL_TRIGGER
311266125Sjhb};
312266125Sjhb
313221828Sgrehan/*
314221828Sgrehan * The 'access' field has the format specified in Table 21-2 of the Intel
315221828Sgrehan * Architecture Manual vol 3b.
316221828Sgrehan *
317221828Sgrehan * XXX The contents of the 'access' field are architecturally defined except
318221828Sgrehan * bit 16 - Segment Unusable.
319221828Sgrehan */
320221828Sgrehanstruct seg_desc {
321221828Sgrehan	uint64_t	base;
322221828Sgrehan	uint32_t	limit;
323221828Sgrehan	uint32_t	access;
324221828Sgrehan};
325266724Sneel#define	SEG_DESC_TYPE(desc)		((desc)->access & 0x001f)
326266724Sneel#define	SEG_DESC_PRESENT(desc)		((desc)->access & 0x0080)
327266724Sneel#define	SEG_DESC_DEF32(desc)		((desc)->access & 0x4000)
328266724Sneel#define	SEG_DESC_GRANULARITY(desc)	((desc)->access & 0x8000)
329266724Sneel#define	SEG_DESC_UNUSABLE(desc)		((desc)->access & 0x10000)
330221828Sgrehan
331266627Sneelenum vm_cpu_mode {
332266627Sneel	CPU_MODE_COMPATIBILITY,		/* IA-32E mode (CS.L = 0) */
333266627Sneel	CPU_MODE_64BIT,			/* IA-32E mode (CS.L = 1) */
334266627Sneel};
335266627Sneel
336266627Sneelenum vm_paging_mode {
337266627Sneel	PAGING_MODE_FLAT,
338266627Sneel	PAGING_MODE_32,
339266627Sneel	PAGING_MODE_PAE,
340266627Sneel	PAGING_MODE_64,
341266627Sneel};
342266627Sneel
343266627Sneelstruct vm_guest_paging {
344266627Sneel	uint64_t	cr3;
345266627Sneel	int		cpl;
346266627Sneel	enum vm_cpu_mode cpu_mode;
347266627Sneel	enum vm_paging_mode paging_mode;
348266627Sneel};
349266627Sneel
350266627Sneel/*
351266627Sneel * The data structures 'vie' and 'vie_op' are meant to be opaque to the
352266627Sneel * consumers of instruction decoding. The only reason why their contents
353266627Sneel * need to be exposed is because they are part of the 'vm_exit' structure.
354266627Sneel */
355266627Sneelstruct vie_op {
356266627Sneel	uint8_t		op_byte;	/* actual opcode byte */
357266627Sneel	uint8_t		op_type;	/* type of operation (e.g. MOV) */
358266627Sneel	uint16_t	op_flags;
359266627Sneel};
360266627Sneel
361266627Sneel#define	VIE_INST_SIZE	15
362266627Sneelstruct vie {
363266627Sneel	uint8_t		inst[VIE_INST_SIZE];	/* instruction bytes */
364266627Sneel	uint8_t		num_valid;		/* size of the instruction */
365266627Sneel	uint8_t		num_processed;
366266627Sneel
367266627Sneel	uint8_t		rex_w:1,		/* REX prefix */
368266627Sneel			rex_r:1,
369266627Sneel			rex_x:1,
370266627Sneel			rex_b:1,
371266627Sneel			rex_present:1;
372266627Sneel
373266627Sneel	uint8_t		mod:2,			/* ModRM byte */
374266627Sneel			reg:4,
375266627Sneel			rm:4;
376266627Sneel
377266627Sneel	uint8_t		ss:2,			/* SIB byte */
378266627Sneel			index:4,
379266627Sneel			base:4;
380266627Sneel
381266627Sneel	uint8_t		disp_bytes;
382266627Sneel	uint8_t		imm_bytes;
383266627Sneel
384266627Sneel	uint8_t		scale;
385266627Sneel	int		base_register;		/* VM_REG_GUEST_xyz */
386266627Sneel	int		index_register;		/* VM_REG_GUEST_xyz */
387266627Sneel
388266627Sneel	int64_t		displacement;		/* optional addr displacement */
389266627Sneel	int64_t		immediate;		/* optional immediate operand */
390266627Sneel
391266627Sneel	uint8_t		decoded;	/* set to 1 if successfully decoded */
392266627Sneel
393266627Sneel	struct vie_op	op;			/* opcode description */
394266627Sneel};
395266627Sneel
396221828Sgrehanenum vm_exitcode {
397221828Sgrehan	VM_EXITCODE_INOUT,
398221828Sgrehan	VM_EXITCODE_VMX,
399221828Sgrehan	VM_EXITCODE_BOGUS,
400221828Sgrehan	VM_EXITCODE_RDMSR,
401221828Sgrehan	VM_EXITCODE_WRMSR,
402221828Sgrehan	VM_EXITCODE_HLT,
403221828Sgrehan	VM_EXITCODE_MTRAP,
404221828Sgrehan	VM_EXITCODE_PAUSE,
405234761Sgrehan	VM_EXITCODE_PAGING,
406256072Sneel	VM_EXITCODE_INST_EMUL,
407240912Sneel	VM_EXITCODE_SPINUP_AP,
408265101Sneel	VM_EXITCODE_DEPRECATED1,	/* used to be SPINDOWN_CPU */
409260619Sneel	VM_EXITCODE_RENDEZVOUS,
410261170Sneel	VM_EXITCODE_IOAPIC_EOI,
411263780Sneel	VM_EXITCODE_SUSPENDED,
412266573Sneel	VM_EXITCODE_INOUT_STR,
413234761Sgrehan	VM_EXITCODE_MAX
414221828Sgrehan};
415221828Sgrehan
416266573Sneelstruct vm_inout {
417266573Sneel	uint16_t	bytes:3;	/* 1 or 2 or 4 */
418266573Sneel	uint16_t	in:1;
419266573Sneel	uint16_t	string:1;
420266573Sneel	uint16_t	rep:1;
421266573Sneel	uint16_t	port;
422266573Sneel	uint32_t	eax;		/* valid for out */
423266573Sneel};
424266573Sneel
425266573Sneelstruct vm_inout_str {
426266573Sneel	struct vm_inout	inout;		/* must be the first element */
427266627Sneel	struct vm_guest_paging paging;
428266573Sneel	uint64_t	rflags;
429266573Sneel	uint64_t	cr0;
430266573Sneel	uint64_t	index;
431266573Sneel	uint64_t	count;		/* rep=1 (%rcx), rep=0 (1) */
432266573Sneel	int		addrsize;
433266573Sneel	enum vm_reg_name seg_name;
434266573Sneel	struct seg_desc seg_desc;
435266573Sneel};
436266573Sneel
437221828Sgrehanstruct vm_exit {
438221828Sgrehan	enum vm_exitcode	exitcode;
439221828Sgrehan	int			inst_length;	/* 0 means unknown */
440221828Sgrehan	uint64_t		rip;
441221828Sgrehan	union {
442266573Sneel		struct vm_inout	inout;
443266573Sneel		struct vm_inout_str inout_str;
444221828Sgrehan		struct {
445241497Sgrehan			uint64_t	gpa;
446256072Sneel			int		fault_type;
447256072Sneel		} paging;
448256072Sneel		struct {
449256072Sneel			uint64_t	gpa;
450256072Sneel			uint64_t	gla;
451266627Sneel			struct vm_guest_paging paging;
452243640Sneel			struct vie	vie;
453256072Sneel		} inst_emul;
454221828Sgrehan		/*
455221828Sgrehan		 * VMX specific payload. Used when there is no "better"
456221828Sgrehan		 * exitcode to represent the VM-exit.
457221828Sgrehan		 */
458221828Sgrehan		struct {
459260167Sneel			int		status;		/* vmx inst status */
460260167Sneel			/*
461260167Sneel			 * 'exit_reason' and 'exit_qualification' are valid
462260167Sneel			 * only if 'status' is zero.
463260167Sneel			 */
464221828Sgrehan			uint32_t	exit_reason;
465221828Sgrehan			uint64_t	exit_qualification;
466260167Sneel			/*
467260167Sneel			 * 'inst_error' and 'inst_type' are valid
468260167Sneel			 * only if 'status' is non-zero.
469260167Sneel			 */
470260167Sneel			int		inst_type;
471260167Sneel			int		inst_error;
472221828Sgrehan		} vmx;
473221828Sgrehan		struct {
474221828Sgrehan			uint32_t	code;		/* ecx value */
475221828Sgrehan			uint64_t	wval;
476221828Sgrehan		} msr;
477240912Sneel		struct {
478240912Sneel			int		vcpu;
479240912Sneel			uint64_t	rip;
480240912Sneel		} spinup_ap;
481259081Sneel		struct {
482259081Sneel			uint64_t	rflags;
483259081Sneel		} hlt;
484261170Sneel		struct {
485261170Sneel			int		vector;
486261170Sneel		} ioapic_eoi;
487265062Sneel		struct {
488265062Sneel			enum vm_suspend_how how;
489265062Sneel		} suspended;
490221828Sgrehan	} u;
491221828Sgrehan};
492221828Sgrehan
493221828Sgrehan#endif	/* _VMM_H_ */
494