xref: /illumos-gate/usr/src/uts/intel/sys/hypervisor.h (revision de81e71e031139a0a7f13b7bf64152c3faa76698)
1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License (the "License").
6  * You may not use this file except in compliance with the License.
7  *
8  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9  * or http://www.opensolaris.org/os/licensing.
10  * See the License for the specific language governing permissions
11  * and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL HEADER in each
14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15  * If applicable, add the following below this CDDL HEADER, with the
16  * fields enclosed by brackets "[]" replaced with your own identifying
17  * information: Portions Copyright [yyyy] [name of copyright owner]
18  *
19  * CDDL HEADER END
20  */
21 
22 /*
23  * Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
24  * Use is subject to license terms.
25  */
26 
27 /*
28  *
29  * Communication to/from hypervisor.
30  *
31  * Copyright (c) 2002-2004, K A Fraser
32  *
33  * Permission is hereby granted, free of charge, to any person obtaining a copy
34  * of this source file (the "Software"), to deal in the Software without
35  * restriction, including without limitation the rights to use, copy, modify,
36  * merge, publish, distribute, sublicense, and/or sell copies of the Software,
37  * and to permit persons to whom the Software is furnished to do so, subject to
38  * the following conditions:
39  *
40  * The above copyright notice and this permission notice shall be included in
41  * all copies or substantial portions of the Software.
42  *
43  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
44  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
45  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
46  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
47  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
48  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
49  * IN THE SOFTWARE.
50  */
51 
52 #ifndef _SYS_HYPERVISOR_H
53 #define	_SYS_HYPERVISOR_H
54 
55 #ifdef __cplusplus
56 extern "C" {
57 #endif
58 
59 #ifdef XPV_HVM_DRIVER
60 #include <sys/xpv_support.h>
61 #else
62 #include <sys/xpv_impl.h>
63 #endif
64 #include <sys/xen_errno.h>
65 
66 #if !defined(_ASM)
67 
68 #include <sys/processor.h>
69 #include <sys/cpuvar.h>
70 #ifndef XPV_HVM_DRIVER
71 #include <sys/xen_mmu.h>
72 #endif
73 #include <sys/systm.h>
74 #include <xen/public/callback.h>
75 #include <xen/public/event_channel.h>
76 #include <xen/public/grant_table.h>
77 #include <xen/public/io/blkif.h>
78 #include <xen/public/io/xenbus.h>
79 #include <xen/public/memory.h>
80 #include <xen/public/nmi.h>
81 #include <xen/public/physdev.h>
82 #include <xen/public/sched.h>
83 #include <xen/public/sysctl.h>
84 #include <xen/public/platform.h>
85 #include <xen/public/vcpu.h>
86 #include <xen/public/version.h>
87 #include <xen/public/acm_ops.h>
88 #include <xen/public/hvm/params.h>
89 
90 extern shared_info_t *HYPERVISOR_shared_info;
91 extern void *HYPERVISOR_console_page;
92 
93 /* -- move these definitions elsewhere -- */
94 
95 extern int xen_debug_handler(void *);
96 extern void xen_printf(const char *, ...) __KPRINTFLIKE(1);
97 #pragma rarely_called(xen_printf)
98 
99 extern void xen_callback(void);
100 extern void xen_failsafe_callback(void);
101 
102 extern hrtime_t xpv_gethrtime(void);
103 extern hrtime_t xpv_getsystime(void);
104 
105 extern void xpv_time_suspend(void);
106 extern void xpv_time_resume(void);
107 
108 extern void startup_xen_version(void);
109 extern void startup_xen_mca(void);
110 
111 extern void mach_cpucontext_reset(cpu_t *);
112 extern void mach_cpucontext_restore(cpu_t *);
113 
114 extern void mp_enter_barrier(void);
115 extern void mp_leave_barrier(void);
116 
117 extern cpuset_t cpu_suspend_lost_set;
118 
119 extern int xen_gdt_setprot(cpu_t *, uint_t);
120 extern int xen_ldt_setprot(user_desc_t *, size_t, uint_t);
121 
122 /* -- while you're down there, move these too -- */
123 
124 typedef struct xen_mc_lcpu_cookie *xen_mc_lcpu_cookie_t;
125 
126 extern xen_mc_lcpu_cookie_t xen_physcpu_next(xen_mc_lcpu_cookie_t);
127 extern const char *xen_physcpu_vendorstr(xen_mc_lcpu_cookie_t);
128 extern int xen_physcpu_family(xen_mc_lcpu_cookie_t);
129 extern int xen_physcpu_model(xen_mc_lcpu_cookie_t);
130 extern int xen_physcpu_stepping(xen_mc_lcpu_cookie_t);
131 extern id_t xen_physcpu_chipid(xen_mc_lcpu_cookie_t);
132 extern id_t xen_physcpu_coreid(xen_mc_lcpu_cookie_t);
133 extern id_t xen_physcpu_strandid(xen_mc_lcpu_cookie_t);
134 extern boolean_t xen_physcpu_is_cmt(xen_mc_lcpu_cookie_t);
135 extern id_t xen_physcpu_logical_id(xen_mc_lcpu_cookie_t);
136 extern uint64_t xen_physcpu_mcg_cap(xen_mc_lcpu_cookie_t);
137 
138 extern int xen_map_gref(uint_t cmd, gnttab_map_grant_ref_t *mapop,
139     uint_t count, boolean_t uvaddr);
140 
141 /*
142  * Wrappered versions of the hypercalls that diagnose/panic on failure
143  */
144 extern void xen_set_gdt(ulong_t *, int);
145 extern void xen_set_ldt(user_desc_t *, uint_t);
146 extern void xen_stack_switch(ulong_t, ulong_t);
147 extern long xen_set_trap_table(trap_info_t *);
148 
149 #if defined(__amd64)
150 extern void xen_set_segment_base(int, ulong_t);
151 #endif	/* __amd64 */
152 extern long xen_vcpu_up(processorid_t);
153 extern long xen_vcpu_down(processorid_t);
154 extern void xen_enable_user_iopl(void);
155 extern void xen_disable_user_iopl(void);
156 
157 extern int xen_get_physinfo(xen_sysctl_physinfo_t *);
158 extern int xen_get_mc_physcpuinfo(xen_mc_logical_cpu_t *, uint_t *);
159 extern uint_t xen_phys_ncpus;
160 extern xen_mc_logical_cpu_t *xen_phys_cpus;
161 
162 /*
163  * A quick way to ask if we're DOM0 or not ..
164  */
165 #ifdef XPV_HVM_DRIVER
166 
167 #define	DOMAIN_IS_INITDOMAIN(info)	(__lintzero)
168 #define	DOMAIN_IS_PRIVILEGED(info)	(__lintzero)
169 
170 #else
171 
172 #define	DOMAIN_IS_INITDOMAIN(info)	\
173 	(((info)->flags & SIF_INITDOMAIN) == SIF_INITDOMAIN)
174 
175 #define	DOMAIN_IS_PRIVILEGED(info)	\
176 	(((info)->flags & SIF_PRIVILEGED) == SIF_PRIVILEGED)
177 
178 #endif
179 
180 /*
181  * start of day information passed up from the hypervisor
182  */
183 extern start_info_t *xen_info;
184 
185 extern long __hypercall0(int);
186 extern long __hypercall1(int, ulong_t);
187 extern long __hypercall2(int, ulong_t, ulong_t);
188 extern long __hypercall3(int, ulong_t, ulong_t, ulong_t);
189 extern long __hypercall4(int, ulong_t, ulong_t, ulong_t, ulong_t);
190 extern long __hypercall5(int, ulong_t, ulong_t, ulong_t, ulong_t, ulong_t);
191 
192 extern int __hypercall0_int(int);
193 extern int __hypercall1_int(int, ulong_t);
194 extern int __hypercall2_int(int, ulong_t, ulong_t);
195 extern int __hypercall3_int(int, ulong_t, ulong_t, ulong_t);
196 extern int __hypercall4_int(int, ulong_t, ulong_t, ulong_t, ulong_t);
197 extern int __hypercall5_int(int, ulong_t, ulong_t, ulong_t, ulong_t, ulong_t);
198 
199 extern long HYPERVISOR_set_trap_table(trap_info_t *);
200 extern int HYPERVISOR_mmu_update(mmu_update_t *, int, int *, domid_t);
201 extern long HYPERVISOR_set_gdt(ulong_t *, int);
202 extern long HYPERVISOR_stack_switch(ulong_t, ulong_t);
203 #if defined(__amd64)
204 extern long HYPERVISOR_set_callbacks(ulong_t, ulong_t, ulong_t);
205 #else
206 extern long HYPERVISOR_set_callbacks(ulong_t, ulong_t, ulong_t, ulong_t);
207 #endif
208 extern long HYPERVISOR_fpu_taskswitch(int);
209 /* *** __HYPERVISOR_sched_op_compat *** OBSOLETED */
210 extern long HYPERVISOR_platform_op(xen_platform_op_t *);
211 /* *** __HYPERVISOR_set_debugreg *** NOT IMPLEMENTED */
212 /* *** __HYPERVISOR_get_debugreg *** NOT IMPLEMENTED */
213 extern long HYPERVISOR_update_descriptor(maddr_t, uint64_t);
214 extern long HYPERVISOR_memory_op(int, void *);
215 extern long HYPERVISOR_multicall(void *, uint_t);
216 extern int HYPERVISOR_update_va_mapping(ulong_t, uint64_t, ulong_t);
217 extern long HYPERVISOR_set_timer_op(uint64_t);
218 /* *** __HYPERVISOR_event_channel_op_compat *** OBSOLETED */
219 extern long HYPERVISOR_xen_version(int, void *);
220 extern long HYPERVISOR_console_io(int, int, char *);
221 /* *** __HYPERVISOR_physdev_op_compat *** OBSOLETED */
222 extern long HYPERVISOR_grant_table_op(unsigned int, void *, unsigned int);
223 extern long HYPERVISOR_vm_assist(unsigned int, unsigned int);
224 extern int HYPERVISOR_update_va_mapping_otherdomain(ulong_t,
225     uint64_t, ulong_t, domid_t);
226 /* *** __HYPERVISOR_iret *** IN i86xpv/sys/machprivregs.h */
227 extern long HYPERVISOR_vcpu_op(int, int, void *);
228 #if defined(__amd64)
229 extern long HYPERVISOR_set_segment_base(int, ulong_t);
230 #endif	/* __amd64 */
231 extern int HYPERVISOR_mmuext_op(struct mmuext_op *, int, uint_t *, domid_t);
232 extern long HYPERVISOR_acm_op(struct xen_acmctl *);
233 extern long HYPERVISOR_nmi_op(int cmd, void *);
234 extern long HYPERVISOR_sched_op(int, void *);
235 extern long HYPERVISOR_callback_op(int, void *);
236 /* *** __HYPERVISOR_xenoprof_op *** NOT IMPLEMENTED */
237 extern long HYPERVISOR_event_channel_op(int, void *); /* does return long */
238 extern long HYPERVISOR_physdev_op(int, void *);
239 extern long HYPERVISOR_hvm_op(int cmd, void *);
240 extern long HYPERVISOR_sysctl(xen_sysctl_t *);
241 extern long HYPERVISOR_domctl(xen_domctl_t *domctl);
242 /* *** __HYPERVISOR_kexec_op *** NOT IMPLEMENTED */
243 extern long HYPERVISOR_mca(uint32_t, xen_mc_arg_t *);
244 
245 
246 /*
247  * HYPERCALL HELPER ROUTINES
248  *    These don't have their own unique hypercalls.
249  */
250 extern long HYPERVISOR_yield(void);
251 extern long HYPERVISOR_block(void);
252 extern long HYPERVISOR_shutdown(uint_t);
253 extern long HYPERVISOR_poll(evtchn_port_t *, uint_t, uint64_t);
254 extern long HYPERVISOR_suspend(ulong_t);
255 
256 #endif /* !_ASM */
257 
258 #ifdef __cplusplus
259 }
260 #endif
261 
262 #endif /* _SYS_HYPERVISOR_H */
263