xref: /freebsd/sys/dev/xen/control/control.c (revision b406166f664417f55f3c170dd2436837bee7e091)
1ff662b5cSJustin T. Gibbs /*-
2ff662b5cSJustin T. Gibbs  * Copyright (c) 2010 Justin T. Gibbs, Spectra Logic Corporation
3ff662b5cSJustin T. Gibbs  * All rights reserved.
4ff662b5cSJustin T. Gibbs  *
5ff662b5cSJustin T. Gibbs  * Redistribution and use in source and binary forms, with or without
6ff662b5cSJustin T. Gibbs  * modification, are permitted provided that the following conditions
7ff662b5cSJustin T. Gibbs  * are met:
8ff662b5cSJustin T. Gibbs  * 1. Redistributions of source code must retain the above copyright
9ff662b5cSJustin T. Gibbs  *    notice, this list of conditions, and the following disclaimer,
10ff662b5cSJustin T. Gibbs  *    without modification.
11ff662b5cSJustin T. Gibbs  * 2. Redistributions in binary form must reproduce at minimum a disclaimer
12ff662b5cSJustin T. Gibbs  *    substantially similar to the "NO WARRANTY" disclaimer below
13ff662b5cSJustin T. Gibbs  *    ("Disclaimer") and any redistribution must be conditioned upon
14ff662b5cSJustin T. Gibbs  *    including a substantially similar Disclaimer requirement for further
15ff662b5cSJustin T. Gibbs  *    binary redistribution.
16ff662b5cSJustin T. Gibbs  *
17ff662b5cSJustin T. Gibbs  * NO WARRANTY
18ff662b5cSJustin T. Gibbs  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19ff662b5cSJustin T. Gibbs  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20ff662b5cSJustin T. Gibbs  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
21ff662b5cSJustin T. Gibbs  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22ff662b5cSJustin T. Gibbs  * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23ff662b5cSJustin T. Gibbs  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24ff662b5cSJustin T. Gibbs  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25ff662b5cSJustin T. Gibbs  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
26ff662b5cSJustin T. Gibbs  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
27ff662b5cSJustin T. Gibbs  * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28ff662b5cSJustin T. Gibbs  * POSSIBILITY OF SUCH DAMAGES.
29ff662b5cSJustin T. Gibbs  */
30ff662b5cSJustin T. Gibbs 
31ff662b5cSJustin T. Gibbs /*-
32ff662b5cSJustin T. Gibbs  * PV suspend/resume support:
33ff662b5cSJustin T. Gibbs  *
34ff662b5cSJustin T. Gibbs  * Copyright (c) 2004 Christian Limpach.
35ff662b5cSJustin T. Gibbs  * Copyright (c) 2004-2006,2008 Kip Macy
36ff662b5cSJustin T. Gibbs  * All rights reserved.
37ff662b5cSJustin T. Gibbs  *
38ff662b5cSJustin T. Gibbs  * Redistribution and use in source and binary forms, with or without
39ff662b5cSJustin T. Gibbs  * modification, are permitted provided that the following conditions
40ff662b5cSJustin T. Gibbs  * are met:
41ff662b5cSJustin T. Gibbs  * 1. Redistributions of source code must retain the above copyright
42ff662b5cSJustin T. Gibbs  *    notice, this list of conditions and the following disclaimer.
43ff662b5cSJustin T. Gibbs  * 2. Redistributions in binary form must reproduce the above copyright
44ff662b5cSJustin T. Gibbs  *    notice, this list of conditions and the following disclaimer in the
45ff662b5cSJustin T. Gibbs  *    documentation and/or other materials provided with the distribution.
46ff662b5cSJustin T. Gibbs  * 3. All advertising materials mentioning features or use of this software
47ff662b5cSJustin T. Gibbs  *    must display the following acknowledgement:
48ff662b5cSJustin T. Gibbs  *      This product includes software developed by Christian Limpach.
49ff662b5cSJustin T. Gibbs  * 4. The name of the author may not be used to endorse or promote products
50ff662b5cSJustin T. Gibbs  *    derived from this software without specific prior written permission.
51ff662b5cSJustin T. Gibbs  *
52ff662b5cSJustin T. Gibbs  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
53ff662b5cSJustin T. Gibbs  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
54ff662b5cSJustin T. Gibbs  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
55ff662b5cSJustin T. Gibbs  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
56ff662b5cSJustin T. Gibbs  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
57ff662b5cSJustin T. Gibbs  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
58ff662b5cSJustin T. Gibbs  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
59ff662b5cSJustin T. Gibbs  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
60ff662b5cSJustin T. Gibbs  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
61ff662b5cSJustin T. Gibbs  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
62ff662b5cSJustin T. Gibbs  */
63ff662b5cSJustin T. Gibbs 
64ff662b5cSJustin T. Gibbs /*-
65ff662b5cSJustin T. Gibbs  * HVM suspend/resume support:
66ff662b5cSJustin T. Gibbs  *
67ff662b5cSJustin T. Gibbs  * Copyright (c) 2008 Citrix Systems, Inc.
68ff662b5cSJustin T. Gibbs  * All rights reserved.
69ff662b5cSJustin T. Gibbs  *
70ff662b5cSJustin T. Gibbs  * Redistribution and use in source and binary forms, with or without
71ff662b5cSJustin T. Gibbs  * modification, are permitted provided that the following conditions
72ff662b5cSJustin T. Gibbs  * are met:
73ff662b5cSJustin T. Gibbs  * 1. Redistributions of source code must retain the above copyright
74ff662b5cSJustin T. Gibbs  *    notice, this list of conditions and the following disclaimer.
75ff662b5cSJustin T. Gibbs  * 2. Redistributions in binary form must reproduce the above copyright
76ff662b5cSJustin T. Gibbs  *    notice, this list of conditions and the following disclaimer in the
77ff662b5cSJustin T. Gibbs  *    documentation and/or other materials provided with the distribution.
78ff662b5cSJustin T. Gibbs  *
79ff662b5cSJustin T. Gibbs  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
80ff662b5cSJustin T. Gibbs  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
81ff662b5cSJustin T. Gibbs  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
82ff662b5cSJustin T. Gibbs  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
83ff662b5cSJustin T. Gibbs  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
84ff662b5cSJustin T. Gibbs  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
85ff662b5cSJustin T. Gibbs  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
86ff662b5cSJustin T. Gibbs  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
87ff662b5cSJustin T. Gibbs  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
88ff662b5cSJustin T. Gibbs  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
89ff662b5cSJustin T. Gibbs  * SUCH DAMAGE.
90ff662b5cSJustin T. Gibbs  */
91ff662b5cSJustin T. Gibbs #include <sys/cdefs.h>
92ff662b5cSJustin T. Gibbs __FBSDID("$FreeBSD$");
93ff662b5cSJustin T. Gibbs 
94ff662b5cSJustin T. Gibbs /**
95ff662b5cSJustin T. Gibbs  * \file control.c
96ff662b5cSJustin T. Gibbs  *
97ff662b5cSJustin T. Gibbs  * \brief Device driver to repond to control domain events that impact
98ff662b5cSJustin T. Gibbs  *        this VM.
99ff662b5cSJustin T. Gibbs  */
100ff662b5cSJustin T. Gibbs 
101ff662b5cSJustin T. Gibbs #include <sys/param.h>
102ff662b5cSJustin T. Gibbs #include <sys/systm.h>
103ff662b5cSJustin T. Gibbs #include <sys/kernel.h>
104ff662b5cSJustin T. Gibbs #include <sys/malloc.h>
105ff662b5cSJustin T. Gibbs 
106ff662b5cSJustin T. Gibbs #include <sys/bio.h>
107ff662b5cSJustin T. Gibbs #include <sys/bus.h>
108ff662b5cSJustin T. Gibbs #include <sys/conf.h>
109ff662b5cSJustin T. Gibbs #include <sys/disk.h>
110ff662b5cSJustin T. Gibbs #include <sys/fcntl.h>
111ff662b5cSJustin T. Gibbs #include <sys/filedesc.h>
112ff662b5cSJustin T. Gibbs #include <sys/kdb.h>
113ff662b5cSJustin T. Gibbs #include <sys/module.h>
114ff662b5cSJustin T. Gibbs #include <sys/namei.h>
115ff662b5cSJustin T. Gibbs #include <sys/proc.h>
116ff662b5cSJustin T. Gibbs #include <sys/reboot.h>
117ff662b5cSJustin T. Gibbs #include <sys/rman.h>
1182ca7463bSJustin T. Gibbs #include <sys/sched.h>
119ff662b5cSJustin T. Gibbs #include <sys/taskqueue.h>
120ff662b5cSJustin T. Gibbs #include <sys/types.h>
121ff662b5cSJustin T. Gibbs #include <sys/vnode.h>
122ff662b5cSJustin T. Gibbs #include <sys/sched.h>
123ff662b5cSJustin T. Gibbs #include <sys/smp.h>
124428b7ca2SJustin T. Gibbs #include <sys/eventhandler.h>
125ff662b5cSJustin T. Gibbs 
126ff662b5cSJustin T. Gibbs #include <geom/geom.h>
127ff662b5cSJustin T. Gibbs 
128ff662b5cSJustin T. Gibbs #include <machine/_inttypes.h>
12976acc41fSJustin T. Gibbs #include <machine/intr_machdep.h>
130ff662b5cSJustin T. Gibbs 
13115226522SRoger Pau Monné #include <x86/apicvar.h>
13215226522SRoger Pau Monné 
133ff662b5cSJustin T. Gibbs #include <vm/vm.h>
134ff662b5cSJustin T. Gibbs #include <vm/vm_extern.h>
135ff662b5cSJustin T. Gibbs #include <vm/vm_kern.h>
136ff662b5cSJustin T. Gibbs 
13776acc41fSJustin T. Gibbs #include <xen/xen-os.h>
138ff662b5cSJustin T. Gibbs #include <xen/blkif.h>
139ff662b5cSJustin T. Gibbs #include <xen/evtchn.h>
140ff662b5cSJustin T. Gibbs #include <xen/gnttab.h>
141ff662b5cSJustin T. Gibbs #include <xen/xen_intr.h>
142ff662b5cSJustin T. Gibbs 
143428b7ca2SJustin T. Gibbs #include <xen/hvm.h>
144428b7ca2SJustin T. Gibbs 
145ff662b5cSJustin T. Gibbs #include <xen/interface/event_channel.h>
146ff662b5cSJustin T. Gibbs #include <xen/interface/grant_table.h>
147ff662b5cSJustin T. Gibbs 
148ff662b5cSJustin T. Gibbs #include <xen/xenbus/xenbusvar.h>
149ff662b5cSJustin T. Gibbs 
150ff662b5cSJustin T. Gibbs /*--------------------------- Forward Declarations --------------------------*/
151ff662b5cSJustin T. Gibbs /** Function signature for shutdown event handlers. */
152ff662b5cSJustin T. Gibbs typedef	void (xctrl_shutdown_handler_t)(void);
153ff662b5cSJustin T. Gibbs 
154ff662b5cSJustin T. Gibbs static xctrl_shutdown_handler_t xctrl_poweroff;
155ff662b5cSJustin T. Gibbs static xctrl_shutdown_handler_t xctrl_reboot;
156ff662b5cSJustin T. Gibbs static xctrl_shutdown_handler_t xctrl_suspend;
157ff662b5cSJustin T. Gibbs static xctrl_shutdown_handler_t xctrl_crash;
158ff662b5cSJustin T. Gibbs 
159ff662b5cSJustin T. Gibbs /*-------------------------- Private Data Structures -------------------------*/
160ff662b5cSJustin T. Gibbs /** Element type for lookup table of event name to handler. */
161ff662b5cSJustin T. Gibbs struct xctrl_shutdown_reason {
162ff662b5cSJustin T. Gibbs 	const char		 *name;
163ff662b5cSJustin T. Gibbs 	xctrl_shutdown_handler_t *handler;
164ff662b5cSJustin T. Gibbs };
165ff662b5cSJustin T. Gibbs 
166ff662b5cSJustin T. Gibbs /** Lookup table for shutdown event name to handler. */
167dcceabd3SMarius Strobl static const struct xctrl_shutdown_reason xctrl_shutdown_reasons[] = {
168ff662b5cSJustin T. Gibbs 	{ "poweroff", xctrl_poweroff },
169ff662b5cSJustin T. Gibbs 	{ "reboot",   xctrl_reboot   },
170ff662b5cSJustin T. Gibbs 	{ "suspend",  xctrl_suspend  },
171ff662b5cSJustin T. Gibbs 	{ "crash",    xctrl_crash    },
1724c85fcfaSJustin T. Gibbs 	{ "halt",     xctrl_poweroff },
173ff662b5cSJustin T. Gibbs };
174ff662b5cSJustin T. Gibbs 
175ff662b5cSJustin T. Gibbs struct xctrl_softc {
176ff662b5cSJustin T. Gibbs 	struct xs_watch    xctrl_watch;
177ff662b5cSJustin T. Gibbs };
178ff662b5cSJustin T. Gibbs 
179ff662b5cSJustin T. Gibbs /*------------------------------ Event Handlers ------------------------------*/
180ff662b5cSJustin T. Gibbs static void
181ff662b5cSJustin T. Gibbs xctrl_poweroff()
182ff662b5cSJustin T. Gibbs {
183ff662b5cSJustin T. Gibbs 	shutdown_nice(RB_POWEROFF|RB_HALT);
184ff662b5cSJustin T. Gibbs }
185ff662b5cSJustin T. Gibbs 
186ff662b5cSJustin T. Gibbs static void
187ff662b5cSJustin T. Gibbs xctrl_reboot()
188ff662b5cSJustin T. Gibbs {
189ff662b5cSJustin T. Gibbs 	shutdown_nice(0);
190ff662b5cSJustin T. Gibbs }
191ff662b5cSJustin T. Gibbs 
192ff662b5cSJustin T. Gibbs static void
193ff662b5cSJustin T. Gibbs xctrl_suspend()
194ff662b5cSJustin T. Gibbs {
195428b7ca2SJustin T. Gibbs #ifdef SMP
196428b7ca2SJustin T. Gibbs 	cpuset_t cpu_suspend_map;
197428b7ca2SJustin T. Gibbs #endif
198ff662b5cSJustin T. Gibbs 	int suspend_cancelled;
199ff662b5cSJustin T. Gibbs 
2002ca7463bSJustin T. Gibbs 	EVENTHANDLER_INVOKE(power_suspend);
2012ca7463bSJustin T. Gibbs 
202428b7ca2SJustin T. Gibbs 	if (smp_started) {
203428b7ca2SJustin T. Gibbs 		thread_lock(curthread);
204428b7ca2SJustin T. Gibbs 		sched_bind(curthread, 0);
205428b7ca2SJustin T. Gibbs 		thread_unlock(curthread);
206428b7ca2SJustin T. Gibbs 	}
207428b7ca2SJustin T. Gibbs 	KASSERT((PCPU_GET(cpuid) == 0), ("Not running on CPU#0"));
208428b7ca2SJustin T. Gibbs 
209428b7ca2SJustin T. Gibbs 	/*
210428b7ca2SJustin T. Gibbs 	 * Clear our XenStore node so the toolstack knows we are
211428b7ca2SJustin T. Gibbs 	 * responding to the suspend request.
212428b7ca2SJustin T. Gibbs 	 */
213428b7ca2SJustin T. Gibbs 	xs_write(XST_NIL, "control", "shutdown", "");
214428b7ca2SJustin T. Gibbs 
2152ca7463bSJustin T. Gibbs 	/*
2162ca7463bSJustin T. Gibbs 	 * Be sure to hold Giant across DEVICE_SUSPEND/RESUME since non-MPSAFE
2172ca7463bSJustin T. Gibbs 	 * drivers need this.
2182ca7463bSJustin T. Gibbs 	 */
2192ca7463bSJustin T. Gibbs 	mtx_lock(&Giant);
220dcceabd3SMarius Strobl 	if (DEVICE_SUSPEND(root_bus) != 0) {
2212ca7463bSJustin T. Gibbs 		mtx_unlock(&Giant);
222dcceabd3SMarius Strobl 		printf("%s: device_suspend failed\n", __func__);
223ff662b5cSJustin T. Gibbs 		return;
224ff662b5cSJustin T. Gibbs 	}
2252ca7463bSJustin T. Gibbs 	mtx_unlock(&Giant);
226ff662b5cSJustin T. Gibbs 
227428b7ca2SJustin T. Gibbs #ifdef SMP
228faf8ff5fSDimitry Andric 	CPU_ZERO(&cpu_suspend_map);	/* silence gcc */
229428b7ca2SJustin T. Gibbs 	if (smp_started) {
230428b7ca2SJustin T. Gibbs 		/*
231428b7ca2SJustin T. Gibbs 		 * Suspend other CPUs. This prevents IPIs while we
232428b7ca2SJustin T. Gibbs 		 * are resuming, and will allow us to reset per-cpu
233428b7ca2SJustin T. Gibbs 		 * vcpu_info on resume.
234428b7ca2SJustin T. Gibbs 		 */
235428b7ca2SJustin T. Gibbs 		cpu_suspend_map = all_cpus;
236428b7ca2SJustin T. Gibbs 		CPU_CLR(PCPU_GET(cpuid), &cpu_suspend_map);
237428b7ca2SJustin T. Gibbs 		if (!CPU_EMPTY(&cpu_suspend_map))
238428b7ca2SJustin T. Gibbs 			suspend_cpus(cpu_suspend_map);
239428b7ca2SJustin T. Gibbs 	}
240428b7ca2SJustin T. Gibbs #endif
241428b7ca2SJustin T. Gibbs 
242ff662b5cSJustin T. Gibbs 	/*
243ff662b5cSJustin T. Gibbs 	 * Prevent any races with evtchn_interrupt() handler.
244ff662b5cSJustin T. Gibbs 	 */
245ff662b5cSJustin T. Gibbs 	disable_intr();
24676acc41fSJustin T. Gibbs 	intr_suspend();
247428b7ca2SJustin T. Gibbs 	xen_hvm_suspend();
248ff662b5cSJustin T. Gibbs 
249ff662b5cSJustin T. Gibbs 	suspend_cancelled = HYPERVISOR_suspend(0);
25076acc41fSJustin T. Gibbs 
251428b7ca2SJustin T. Gibbs 	xen_hvm_resume(suspend_cancelled != 0);
252428b7ca2SJustin T. Gibbs 	intr_resume(suspend_cancelled != 0);
253428b7ca2SJustin T. Gibbs 	enable_intr();
254ff662b5cSJustin T. Gibbs 
255ff662b5cSJustin T. Gibbs 	/*
256428b7ca2SJustin T. Gibbs 	 * Reset grant table info.
257ff662b5cSJustin T. Gibbs 	 */
258a8f2f559SRoger Pau Monné 	gnttab_resume(NULL);
259428b7ca2SJustin T. Gibbs 
260428b7ca2SJustin T. Gibbs #ifdef SMP
26115226522SRoger Pau Monné 	/* Send an IPI_BITMAP in case there are pending bitmap IPIs. */
26215226522SRoger Pau Monné 	lapic_ipi_vectored(IPI_BITMAP_VECTOR, APIC_IPI_DEST_ALL);
263*b406166fSJohn Baldwin 	if (!CPU_EMPTY(&cpu_suspend_map)) {
264428b7ca2SJustin T. Gibbs 		/*
265428b7ca2SJustin T. Gibbs 		 * Now that event channels have been initialized,
266428b7ca2SJustin T. Gibbs 		 * resume CPUs.
267428b7ca2SJustin T. Gibbs 		 */
268428b7ca2SJustin T. Gibbs 		resume_cpus(cpu_suspend_map);
269428b7ca2SJustin T. Gibbs 	}
270428b7ca2SJustin T. Gibbs #endif
271ff662b5cSJustin T. Gibbs 
272ff662b5cSJustin T. Gibbs 	/*
273ff662b5cSJustin T. Gibbs 	 * FreeBSD really needs to add DEVICE_SUSPEND_CANCEL or
274ff662b5cSJustin T. Gibbs 	 * similar.
275ff662b5cSJustin T. Gibbs 	 */
2762ca7463bSJustin T. Gibbs 	mtx_lock(&Giant);
277ff662b5cSJustin T. Gibbs 	DEVICE_RESUME(root_bus);
2782ca7463bSJustin T. Gibbs 	mtx_unlock(&Giant);
2792ca7463bSJustin T. Gibbs 
280428b7ca2SJustin T. Gibbs 	if (smp_started) {
281428b7ca2SJustin T. Gibbs 		thread_lock(curthread);
282428b7ca2SJustin T. Gibbs 		sched_unbind(curthread);
283428b7ca2SJustin T. Gibbs 		thread_unlock(curthread);
284428b7ca2SJustin T. Gibbs 	}
285428b7ca2SJustin T. Gibbs 
2862ca7463bSJustin T. Gibbs 	EVENTHANDLER_INVOKE(power_resume);
287428b7ca2SJustin T. Gibbs 
288428b7ca2SJustin T. Gibbs 	if (bootverbose)
289428b7ca2SJustin T. Gibbs 		printf("System resumed after suspension\n");
290428b7ca2SJustin T. Gibbs 
291ff662b5cSJustin T. Gibbs }
292ff662b5cSJustin T. Gibbs 
293ff662b5cSJustin T. Gibbs static void
294ff662b5cSJustin T. Gibbs xctrl_crash()
295ff662b5cSJustin T. Gibbs {
296ff662b5cSJustin T. Gibbs 	panic("Xen directed crash");
297ff662b5cSJustin T. Gibbs }
298ff662b5cSJustin T. Gibbs 
299bd851e63SRoger Pau Monné static void
300bd851e63SRoger Pau Monné xen_pv_shutdown_final(void *arg, int howto)
301bd851e63SRoger Pau Monné {
302bd851e63SRoger Pau Monné 	/*
303bd851e63SRoger Pau Monné 	 * Inform the hypervisor that shutdown is complete.
304bd851e63SRoger Pau Monné 	 * This is not necessary in HVM domains since Xen
305bd851e63SRoger Pau Monné 	 * emulates ACPI in that mode and FreeBSD's ACPI
306bd851e63SRoger Pau Monné 	 * support will request this transition.
307bd851e63SRoger Pau Monné 	 */
308bd851e63SRoger Pau Monné 	if (howto & (RB_HALT | RB_POWEROFF))
309bd851e63SRoger Pau Monné 		HYPERVISOR_shutdown(SHUTDOWN_poweroff);
310bd851e63SRoger Pau Monné 	else
311bd851e63SRoger Pau Monné 		HYPERVISOR_shutdown(SHUTDOWN_reboot);
312bd851e63SRoger Pau Monné }
313bd851e63SRoger Pau Monné 
314ff662b5cSJustin T. Gibbs /*------------------------------ Event Reception -----------------------------*/
315ff662b5cSJustin T. Gibbs static void
316ff662b5cSJustin T. Gibbs xctrl_on_watch_event(struct xs_watch *watch, const char **vec, unsigned int len)
317ff662b5cSJustin T. Gibbs {
318dcceabd3SMarius Strobl 	const struct xctrl_shutdown_reason *reason;
319dcceabd3SMarius Strobl 	const struct xctrl_shutdown_reason *last_reason;
320ff662b5cSJustin T. Gibbs 	char *result;
321ff662b5cSJustin T. Gibbs 	int   error;
322ff662b5cSJustin T. Gibbs 	int   result_len;
323ff662b5cSJustin T. Gibbs 
324ff662b5cSJustin T. Gibbs 	error = xs_read(XST_NIL, "control", "shutdown",
325ff662b5cSJustin T. Gibbs 			&result_len, (void **)&result);
326ff662b5cSJustin T. Gibbs 	if (error != 0)
327ff662b5cSJustin T. Gibbs 		return;
328ff662b5cSJustin T. Gibbs 
329ff662b5cSJustin T. Gibbs 	reason = xctrl_shutdown_reasons;
330dcceabd3SMarius Strobl 	last_reason = reason + nitems(xctrl_shutdown_reasons);
331ff662b5cSJustin T. Gibbs 	while (reason < last_reason) {
332ff662b5cSJustin T. Gibbs 
333ff662b5cSJustin T. Gibbs 		if (!strcmp(result, reason->name)) {
334ff662b5cSJustin T. Gibbs 			reason->handler();
335ff662b5cSJustin T. Gibbs 			break;
336ff662b5cSJustin T. Gibbs 		}
337ff662b5cSJustin T. Gibbs 		reason++;
338ff662b5cSJustin T. Gibbs 	}
339ff662b5cSJustin T. Gibbs 
340ff662b5cSJustin T. Gibbs 	free(result, M_XENSTORE);
341ff662b5cSJustin T. Gibbs }
342ff662b5cSJustin T. Gibbs 
343ff662b5cSJustin T. Gibbs /*------------------ Private Device Attachment Functions  --------------------*/
344ff662b5cSJustin T. Gibbs /**
345ff662b5cSJustin T. Gibbs  * \brief Identify instances of this device type in the system.
346ff662b5cSJustin T. Gibbs  *
347ff662b5cSJustin T. Gibbs  * \param driver  The driver performing this identify action.
348ff662b5cSJustin T. Gibbs  * \param parent  The NewBus parent device for any devices this method adds.
349ff662b5cSJustin T. Gibbs  */
350ff662b5cSJustin T. Gibbs static void
351ff662b5cSJustin T. Gibbs xctrl_identify(driver_t *driver __unused, device_t parent)
352ff662b5cSJustin T. Gibbs {
353ff662b5cSJustin T. Gibbs 	/*
354ff662b5cSJustin T. Gibbs 	 * A single device instance for our driver is always present
355ff662b5cSJustin T. Gibbs 	 * in a system operating under Xen.
356ff662b5cSJustin T. Gibbs 	 */
357ff662b5cSJustin T. Gibbs 	BUS_ADD_CHILD(parent, 0, driver->name, 0);
358ff662b5cSJustin T. Gibbs }
359ff662b5cSJustin T. Gibbs 
360ff662b5cSJustin T. Gibbs /**
361ff662b5cSJustin T. Gibbs  * \brief Probe for the existance of the Xen Control device
362ff662b5cSJustin T. Gibbs  *
363ff662b5cSJustin T. Gibbs  * \param dev  NewBus device_t for this Xen control instance.
364ff662b5cSJustin T. Gibbs  *
365ff662b5cSJustin T. Gibbs  * \return  Always returns 0 indicating success.
366ff662b5cSJustin T. Gibbs  */
367ff662b5cSJustin T. Gibbs static int
368ff662b5cSJustin T. Gibbs xctrl_probe(device_t dev)
369ff662b5cSJustin T. Gibbs {
370ff662b5cSJustin T. Gibbs 	device_set_desc(dev, "Xen Control Device");
371ff662b5cSJustin T. Gibbs 
3722f9ec994SRoger Pau Monné 	return (BUS_PROBE_NOWILDCARD);
373ff662b5cSJustin T. Gibbs }
374ff662b5cSJustin T. Gibbs 
375ff662b5cSJustin T. Gibbs /**
376ff662b5cSJustin T. Gibbs  * \brief Attach the Xen control device.
377ff662b5cSJustin T. Gibbs  *
378ff662b5cSJustin T. Gibbs  * \param dev  NewBus device_t for this Xen control instance.
379ff662b5cSJustin T. Gibbs  *
380ff662b5cSJustin T. Gibbs  * \return  On success, 0. Otherwise an errno value indicating the
381ff662b5cSJustin T. Gibbs  *          type of failure.
382ff662b5cSJustin T. Gibbs  */
383ff662b5cSJustin T. Gibbs static int
384ff662b5cSJustin T. Gibbs xctrl_attach(device_t dev)
385ff662b5cSJustin T. Gibbs {
386ff662b5cSJustin T. Gibbs 	struct xctrl_softc *xctrl;
387ff662b5cSJustin T. Gibbs 
388ff662b5cSJustin T. Gibbs 	xctrl = device_get_softc(dev);
389ff662b5cSJustin T. Gibbs 
390ff662b5cSJustin T. Gibbs 	/* Activate watch */
391ff662b5cSJustin T. Gibbs 	xctrl->xctrl_watch.node = "control/shutdown";
392ff662b5cSJustin T. Gibbs 	xctrl->xctrl_watch.callback = xctrl_on_watch_event;
393283d6f72SJustin T. Gibbs 	xctrl->xctrl_watch.callback_data = (uintptr_t)xctrl;
394ff662b5cSJustin T. Gibbs 	xs_register_watch(&xctrl->xctrl_watch);
395ff662b5cSJustin T. Gibbs 
396bd851e63SRoger Pau Monné 	if (xen_pv_domain())
397ff662b5cSJustin T. Gibbs 		EVENTHANDLER_REGISTER(shutdown_final, xen_pv_shutdown_final, NULL,
398ff662b5cSJustin T. Gibbs 		                      SHUTDOWN_PRI_LAST);
399ff662b5cSJustin T. Gibbs 
400ff662b5cSJustin T. Gibbs 	return (0);
401ff662b5cSJustin T. Gibbs }
402ff662b5cSJustin T. Gibbs 
403ff662b5cSJustin T. Gibbs /**
404ff662b5cSJustin T. Gibbs  * \brief Detach the Xen control device.
405ff662b5cSJustin T. Gibbs  *
406ff662b5cSJustin T. Gibbs  * \param dev  NewBus device_t for this Xen control device instance.
407ff662b5cSJustin T. Gibbs  *
408ff662b5cSJustin T. Gibbs  * \return  On success, 0. Otherwise an errno value indicating the
409ff662b5cSJustin T. Gibbs  *          type of failure.
410ff662b5cSJustin T. Gibbs  */
411ff662b5cSJustin T. Gibbs static int
412ff662b5cSJustin T. Gibbs xctrl_detach(device_t dev)
413ff662b5cSJustin T. Gibbs {
414ff662b5cSJustin T. Gibbs 	struct xctrl_softc *xctrl;
415ff662b5cSJustin T. Gibbs 
416ff662b5cSJustin T. Gibbs 	xctrl = device_get_softc(dev);
417ff662b5cSJustin T. Gibbs 
418ff662b5cSJustin T. Gibbs 	/* Release watch */
419ff662b5cSJustin T. Gibbs 	xs_unregister_watch(&xctrl->xctrl_watch);
420ff662b5cSJustin T. Gibbs 
421ff662b5cSJustin T. Gibbs 	return (0);
422ff662b5cSJustin T. Gibbs }
423ff662b5cSJustin T. Gibbs 
424ff662b5cSJustin T. Gibbs /*-------------------- Private Device Attachment Data  -----------------------*/
425ff662b5cSJustin T. Gibbs static device_method_t xctrl_methods[] = {
426ff662b5cSJustin T. Gibbs 	/* Device interface */
427ff662b5cSJustin T. Gibbs 	DEVMETHOD(device_identify,	xctrl_identify),
428ff662b5cSJustin T. Gibbs 	DEVMETHOD(device_probe,         xctrl_probe),
429ff662b5cSJustin T. Gibbs 	DEVMETHOD(device_attach,        xctrl_attach),
430ff662b5cSJustin T. Gibbs 	DEVMETHOD(device_detach,        xctrl_detach),
431ff662b5cSJustin T. Gibbs 
432dcceabd3SMarius Strobl 	DEVMETHOD_END
433ff662b5cSJustin T. Gibbs };
434ff662b5cSJustin T. Gibbs 
435ff662b5cSJustin T. Gibbs DEFINE_CLASS_0(xctrl, xctrl_driver, xctrl_methods, sizeof(struct xctrl_softc));
436ff662b5cSJustin T. Gibbs devclass_t xctrl_devclass;
437ff662b5cSJustin T. Gibbs 
438dcceabd3SMarius Strobl DRIVER_MODULE(xctrl, xenstore, xctrl_driver, xctrl_devclass, NULL, NULL);
439