1 /* $NetBSD: xen.h,v 1.3 2008/05/04 19:56:28 cegger Exp $ */
2 /******************************************************************************
5 * Guest OS interface to x86 Xen.
7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to
9 * deal in the Software without restriction, including without limitation the
10 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
11 * sell copies of the Software, and to permit persons to whom the Software is
12 * furnished to do so, subject to the following conditions:
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
22 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
23 * DEALINGS IN THE SOFTWARE.
25 * Copyright (c) 2004-2006, K A Fraser
30 #ifndef __XEN_PUBLIC_ARCH_X86_XEN_H__
31 #define __XEN_PUBLIC_ARCH_X86_XEN_H__
33 /* Structural guest handles introduced in 0x00030201. */
34 #if __XEN_INTERFACE_VERSION__ >= 0x00030201
35 #define ___DEFINE_XEN_GUEST_HANDLE(name, type) \
36 typedef struct { type *p; } __guest_handle_ ## name
38 #define ___DEFINE_XEN_GUEST_HANDLE(name, type) \
39 typedef type * __guest_handle_ ## name
42 #define __DEFINE_XEN_GUEST_HANDLE(name, type) \
43 ___DEFINE_XEN_GUEST_HANDLE(name, type); \
44 ___DEFINE_XEN_GUEST_HANDLE(const_##name, const type)
45 #define DEFINE_XEN_GUEST_HANDLE(name) __DEFINE_XEN_GUEST_HANDLE(name, name)
46 #define __XEN_GUEST_HANDLE(name) __guest_handle_ ## name
47 #define XEN_GUEST_HANDLE(name) __XEN_GUEST_HANDLE(name)
48 #define set_xen_guest_handle(hnd, val) do { (hnd).p = val; } while (0)
50 #define get_xen_guest_handle(val, hnd) do { val = (hnd).p; } while (0)
54 #include "xen-x86_32.h"
55 #elif defined(__x86_64__)
56 #include "xen-x86_64.h"
60 typedef unsigned long xen_pfn_t
;
61 #define PRI_xen_pfn "lx"
65 * SEGMENT DESCRIPTOR TABLES
68 * A number of GDT entries are reserved by Xen. These are not situated at the
69 * start of the GDT because some stupid OSes export hard-coded selector values
70 * in their ABI. These hard-coded values are always near the start of the GDT,
71 * so Xen places itself out of the way, at the far end of the GDT.
73 #define FIRST_RESERVED_GDT_PAGE 14
74 #define FIRST_RESERVED_GDT_BYTE (FIRST_RESERVED_GDT_PAGE * 4096)
75 #define FIRST_RESERVED_GDT_ENTRY (FIRST_RESERVED_GDT_BYTE / 8)
77 /* Maximum number of virtual CPUs in multi-processor guests. */
78 #define MAX_VIRT_CPUS 32
81 /* Machine check support */
86 typedef unsigned long xen_ulong_t
;
89 * Send an array of these to HYPERVISOR_set_trap_table().
90 * The privilege level specifies which modes may enter a trap via a software
91 * interrupt. On x86/64, since rings 1 and 2 are unavailable, we allocate
92 * privilege levels as follows:
93 * Level == 0: Noone may enter
94 * Level == 1: Kernel may enter
95 * Level == 2: Kernel may enter
96 * Level == 3: Everyone may enter
98 #define TI_GET_DPL(_ti) ((_ti)->flags & 3)
99 #define TI_GET_IF(_ti) ((_ti)->flags & 4)
100 #define TI_SET_DPL(_ti,_dpl) ((_ti)->flags |= (_dpl))
101 #define TI_SET_IF(_ti,_if) ((_ti)->flags |= ((!!(_if))<<2))
103 uint8_t vector
; /* exception vector */
104 uint8_t flags
; /* 0-3: privilege level; 4: clear event enable? */
105 uint16_t cs
; /* code selector */
106 unsigned long address
; /* code offset */
108 typedef struct trap_info trap_info_t
;
109 DEFINE_XEN_GUEST_HANDLE(trap_info_t
);
111 typedef uint64_t tsc_timestamp_t
; /* RDTSC timestamp */
114 * The following is all CPU context. Note that the fpu_ctxt block is filled
115 * in by FXSAVE if the CPU has feature FXSR; otherwise FSAVE is used.
117 struct vcpu_guest_context
{
118 /* FPU registers come first so they can be aligned for FXSAVE/FXRSTOR. */
119 struct { char x
[512]; } fpu_ctxt
; /* User-level FPU registers */
120 #define VGCF_I387_VALID (1<<0)
121 #define VGCF_IN_KERNEL (1<<2)
122 #define _VGCF_i387_valid 0
123 #define VGCF_i387_valid (1<<_VGCF_i387_valid)
124 #define _VGCF_in_kernel 2
125 #define VGCF_in_kernel (1<<_VGCF_in_kernel)
126 #define _VGCF_failsafe_disables_events 3
127 #define VGCF_failsafe_disables_events (1<<_VGCF_failsafe_disables_events)
128 #define _VGCF_syscall_disables_events 4
129 #define VGCF_syscall_disables_events (1<<_VGCF_syscall_disables_events)
130 #define _VGCF_online 5
131 #define VGCF_online (1<<_VGCF_online)
132 unsigned long flags
; /* VGCF_* flags */
133 struct cpu_user_regs user_regs
; /* User-level CPU registers */
134 struct trap_info trap_ctxt
[256]; /* Virtual IDT */
135 unsigned long ldt_base
, ldt_ents
; /* LDT (linear address, # ents) */
136 unsigned long gdt_frames
[16], gdt_ents
; /* GDT (machine frames, # ents) */
137 unsigned long kernel_ss
, kernel_sp
; /* Virtual TSS (only SS1/SP1) */
138 /* NB. User pagetable on x86/64 is placed in ctrlreg[1]. */
139 unsigned long ctrlreg
[8]; /* CR0-CR7 (control registers) */
140 unsigned long debugreg
[8]; /* DB0-DB7 (debug registers) */
142 unsigned long event_callback_cs
; /* CS:EIP of event callback */
143 unsigned long event_callback_eip
;
144 unsigned long failsafe_callback_cs
; /* CS:EIP of failsafe callback */
145 unsigned long failsafe_callback_eip
;
147 unsigned long event_callback_eip
;
148 unsigned long failsafe_callback_eip
;
151 unsigned long syscall_callback_eip
;
153 unsigned int event_callback_cs
; /* compat CS of event cb */
154 unsigned int failsafe_callback_cs
; /* compat CS of failsafe cb */
158 unsigned long syscall_callback_eip
;
161 unsigned long vm_assist
; /* VMASST_TYPE_* bitmap */
163 /* Segment base addresses. */
165 uint64_t gs_base_kernel
;
166 uint64_t gs_base_user
;
169 typedef struct vcpu_guest_context vcpu_guest_context_t
;
170 DEFINE_XEN_GUEST_HANDLE(vcpu_guest_context_t
);
172 struct arch_shared_info
{
173 unsigned long max_pfn
; /* max pfn that appears in table */
174 /* Frame containing list of mfns containing list of mfns containing p2m. */
175 xen_pfn_t pfn_to_mfn_frame_list_list
;
176 unsigned long nmi_reason
;
179 typedef struct arch_shared_info arch_shared_info_t
;
181 #endif /* !__ASSEMBLY__ */
184 * Prefix forces emulation of some non-trapping instructions.
185 * Currently only CPUID.
188 #define XEN_EMULATE_PREFIX .byte 0x0f,0x0b,0x78,0x65,0x6e ;
189 #define XEN_CPUID XEN_EMULATE_PREFIX cpuid
191 #define XEN_EMULATE_PREFIX ".byte 0x0f,0x0b,0x78,0x65,0x6e ; "
192 #define XEN_CPUID XEN_EMULATE_PREFIX "cpuid"
195 #endif /* __XEN_PUBLIC_ARCH_X86_XEN_H__ */
203 * indent-tabs-mode: nil