xref: /freebsd/sys/dev/acpica/acpi.c (revision 6b806d21d144c25f4fad714e1c0cf780f5e27d7e)
1 /*-
2  * Copyright (c) 2000 Takanori Watanabe <takawata@jp.freebsd.org>
3  * Copyright (c) 2000 Mitsuru IWASAKI <iwasaki@jp.freebsd.org>
4  * Copyright (c) 2000, 2001 Michael Smith
5  * Copyright (c) 2000 BSDi
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  *
29  *	$FreeBSD$
30  */
31 
32 #include "opt_acpi.h"
33 #include <sys/param.h>
34 #include <sys/kernel.h>
35 #include <sys/proc.h>
36 #include <sys/fcntl.h>
37 #include <sys/malloc.h>
38 #include <sys/module.h>
39 #include <sys/bus.h>
40 #include <sys/conf.h>
41 #include <sys/ioccom.h>
42 #include <sys/reboot.h>
43 #include <sys/sysctl.h>
44 #include <sys/ctype.h>
45 #include <sys/linker.h>
46 #include <sys/power.h>
47 #include <sys/sbuf.h>
48 #include <sys/smp.h>
49 
50 #include <machine/clock.h>
51 #include <machine/resource.h>
52 #include <machine/bus.h>
53 #include <sys/rman.h>
54 #include <isa/isavar.h>
55 #include <isa/pnpvar.h>
56 
57 #include "acpi.h"
58 #include <dev/acpica/acpivar.h>
59 #include <dev/acpica/acpiio.h>
60 #include <contrib/dev/acpica/acnamesp.h>
61 
62 #include "pci_if.h"
63 #include <dev/pci/pcivar.h>
64 #include <dev/pci/pci_private.h>
65 
66 MALLOC_DEFINE(M_ACPIDEV, "acpidev", "ACPI devices");
67 
68 /* Hooks for the ACPI CA debugging infrastructure */
69 #define _COMPONENT	ACPI_BUS
70 ACPI_MODULE_NAME("ACPI")
71 
72 static d_open_t		acpiopen;
73 static d_close_t	acpiclose;
74 static d_ioctl_t	acpiioctl;
75 
76 static struct cdevsw acpi_cdevsw = {
77 	.d_version =	D_VERSION,
78 	.d_open =	acpiopen,
79 	.d_close =	acpiclose,
80 	.d_ioctl =	acpiioctl,
81 	.d_name =	"acpi",
82 };
83 
84 /* Global mutex for locking access to the ACPI subsystem. */
85 struct mtx	acpi_mutex;
86 
87 /* Bitmap of device quirks. */
88 int		acpi_quirks;
89 
90 static int	acpi_modevent(struct module *mod, int event, void *junk);
91 static void	acpi_identify(driver_t *driver, device_t parent);
92 static int	acpi_probe(device_t dev);
93 static int	acpi_attach(device_t dev);
94 static int	acpi_suspend(device_t dev);
95 static int	acpi_resume(device_t dev);
96 static int	acpi_shutdown(device_t dev);
97 static device_t	acpi_add_child(device_t bus, int order, const char *name,
98 			int unit);
99 static int	acpi_print_child(device_t bus, device_t child);
100 static void	acpi_probe_nomatch(device_t bus, device_t child);
101 static void	acpi_driver_added(device_t dev, driver_t *driver);
102 static int	acpi_read_ivar(device_t dev, device_t child, int index,
103 			uintptr_t *result);
104 static int	acpi_write_ivar(device_t dev, device_t child, int index,
105 			uintptr_t value);
106 static struct resource_list *acpi_get_rlist(device_t dev, device_t child);
107 static int	acpi_sysres_alloc(device_t dev);
108 static struct resource_list_entry *acpi_sysres_find(device_t dev, int type,
109 		    u_long addr);
110 static struct resource *acpi_alloc_resource(device_t bus, device_t child,
111 			int type, int *rid, u_long start, u_long end,
112 			u_long count, u_int flags);
113 static int	acpi_release_resource(device_t bus, device_t child, int type,
114 			int rid, struct resource *r);
115 static uint32_t	acpi_isa_get_logicalid(device_t dev);
116 static int	acpi_isa_get_compatid(device_t dev, uint32_t *cids, int count);
117 static char	*acpi_device_id_probe(device_t bus, device_t dev, char **ids);
118 static ACPI_STATUS acpi_device_eval_obj(device_t bus, device_t dev,
119 		    ACPI_STRING pathname, ACPI_OBJECT_LIST *parameters,
120 		    ACPI_BUFFER *ret);
121 static int	acpi_device_pwr_for_sleep(device_t bus, device_t dev,
122 		    int *dstate);
123 static ACPI_STATUS acpi_device_scan_cb(ACPI_HANDLE h, UINT32 level,
124 		    void *context, void **retval);
125 static ACPI_STATUS acpi_device_scan_children(device_t bus, device_t dev,
126 		    int max_depth, acpi_scan_cb_t user_fn, void *arg);
127 static int	acpi_set_powerstate_method(device_t bus, device_t child,
128 		    int state);
129 static int	acpi_isa_pnp_probe(device_t bus, device_t child,
130 		    struct isa_pnp_id *ids);
131 static void	acpi_probe_children(device_t bus);
132 static int	acpi_probe_order(ACPI_HANDLE handle, int *order);
133 static ACPI_STATUS acpi_probe_child(ACPI_HANDLE handle, UINT32 level,
134 		    void *context, void **status);
135 static BOOLEAN	acpi_MatchHid(ACPI_HANDLE h, const char *hid);
136 static void	acpi_shutdown_final(void *arg, int howto);
137 static void	acpi_enable_fixed_events(struct acpi_softc *sc);
138 static int	acpi_wake_sleep_prep(ACPI_HANDLE handle, int sstate);
139 static int	acpi_wake_run_prep(ACPI_HANDLE handle, int sstate);
140 static int	acpi_wake_prep_walk(int sstate);
141 static int	acpi_wake_sysctl_walk(device_t dev);
142 static int	acpi_wake_set_sysctl(SYSCTL_HANDLER_ARGS);
143 static void	acpi_system_eventhandler_sleep(void *arg, int state);
144 static void	acpi_system_eventhandler_wakeup(void *arg, int state);
145 static int	acpi_supported_sleep_state_sysctl(SYSCTL_HANDLER_ARGS);
146 static int	acpi_sleep_state_sysctl(SYSCTL_HANDLER_ARGS);
147 static int	acpi_pm_func(u_long cmd, void *arg, ...);
148 static int	acpi_child_location_str_method(device_t acdev, device_t child,
149 					       char *buf, size_t buflen);
150 static int	acpi_child_pnpinfo_str_method(device_t acdev, device_t child,
151 					      char *buf, size_t buflen);
152 
153 static device_method_t acpi_methods[] = {
154     /* Device interface */
155     DEVMETHOD(device_identify,		acpi_identify),
156     DEVMETHOD(device_probe,		acpi_probe),
157     DEVMETHOD(device_attach,		acpi_attach),
158     DEVMETHOD(device_shutdown,		acpi_shutdown),
159     DEVMETHOD(device_detach,		bus_generic_detach),
160     DEVMETHOD(device_suspend,		acpi_suspend),
161     DEVMETHOD(device_resume,		acpi_resume),
162 
163     /* Bus interface */
164     DEVMETHOD(bus_add_child,		acpi_add_child),
165     DEVMETHOD(bus_print_child,		acpi_print_child),
166     DEVMETHOD(bus_probe_nomatch,	acpi_probe_nomatch),
167     DEVMETHOD(bus_driver_added,		acpi_driver_added),
168     DEVMETHOD(bus_read_ivar,		acpi_read_ivar),
169     DEVMETHOD(bus_write_ivar,		acpi_write_ivar),
170     DEVMETHOD(bus_get_resource_list,	acpi_get_rlist),
171     DEVMETHOD(bus_set_resource,		bus_generic_rl_set_resource),
172     DEVMETHOD(bus_get_resource,		bus_generic_rl_get_resource),
173     DEVMETHOD(bus_alloc_resource,	acpi_alloc_resource),
174     DEVMETHOD(bus_release_resource,	acpi_release_resource),
175     DEVMETHOD(bus_child_pnpinfo_str,	acpi_child_pnpinfo_str_method),
176     DEVMETHOD(bus_child_location_str,	acpi_child_location_str_method),
177     DEVMETHOD(bus_activate_resource,	bus_generic_activate_resource),
178     DEVMETHOD(bus_deactivate_resource,	bus_generic_deactivate_resource),
179     DEVMETHOD(bus_setup_intr,		bus_generic_setup_intr),
180     DEVMETHOD(bus_teardown_intr,	bus_generic_teardown_intr),
181 
182     /* ACPI bus */
183     DEVMETHOD(acpi_id_probe,		acpi_device_id_probe),
184     DEVMETHOD(acpi_evaluate_object,	acpi_device_eval_obj),
185     DEVMETHOD(acpi_pwr_for_sleep,	acpi_device_pwr_for_sleep),
186     DEVMETHOD(acpi_scan_children,	acpi_device_scan_children),
187 
188     /* PCI emulation */
189     DEVMETHOD(pci_set_powerstate,	acpi_set_powerstate_method),
190 
191     /* ISA emulation */
192     DEVMETHOD(isa_pnp_probe,		acpi_isa_pnp_probe),
193 
194     {0, 0}
195 };
196 
197 static driver_t acpi_driver = {
198     "acpi",
199     acpi_methods,
200     sizeof(struct acpi_softc),
201 };
202 
203 static devclass_t acpi_devclass;
204 DRIVER_MODULE(acpi, nexus, acpi_driver, acpi_devclass, acpi_modevent, 0);
205 MODULE_VERSION(acpi, 1);
206 
207 ACPI_SERIAL_DECL(acpi, "ACPI root bus");
208 
209 /* Local pools for managing system resources for ACPI child devices. */
210 static struct rman acpi_rman_io, acpi_rman_mem;
211 
212 #define ACPI_MINIMUM_AWAKETIME	5
213 
214 static const char* sleep_state_names[] = {
215     "S0", "S1", "S2", "S3", "S4", "S5", "NONE"};
216 
217 SYSCTL_NODE(_debug, OID_AUTO, acpi, CTLFLAG_RW, NULL, "ACPI debugging");
218 static char acpi_ca_version[12];
219 SYSCTL_STRING(_debug_acpi, OID_AUTO, acpi_ca_version, CTLFLAG_RD,
220 	      acpi_ca_version, 0, "Version of Intel ACPI-CA");
221 
222 /*
223  * Allow override of whether methods execute in parallel or not.
224  * Enable this for serial behavior, which fixes "AE_ALREADY_EXISTS"
225  * errors for AML that really can't handle parallel method execution.
226  * It is off by default since this breaks recursive methods and
227  * some IBMs use such code.
228  */
229 static int acpi_serialize_methods;
230 TUNABLE_INT("hw.acpi.serialize_methods", &acpi_serialize_methods);
231 
232 /* Power devices off and on in suspend and resume.  XXX Remove once tested. */
233 static int acpi_do_powerstate = 1;
234 TUNABLE_INT("debug.acpi.do_powerstate", &acpi_do_powerstate);
235 SYSCTL_INT(_debug_acpi, OID_AUTO, do_powerstate, CTLFLAG_RW,
236     &acpi_do_powerstate, 1, "Turn off devices when suspending.");
237 
238 /*
239  * ACPI can only be loaded as a module by the loader; activating it after
240  * system bootstrap time is not useful, and can be fatal to the system.
241  * It also cannot be unloaded, since the entire system bus heirarchy hangs
242  * off it.
243  */
244 static int
245 acpi_modevent(struct module *mod, int event, void *junk)
246 {
247     switch (event) {
248     case MOD_LOAD:
249 	if (!cold) {
250 	    printf("The ACPI driver cannot be loaded after boot.\n");
251 	    return (EPERM);
252 	}
253 	break;
254     case MOD_UNLOAD:
255 	if (!cold && power_pm_get_type() == POWER_PM_TYPE_ACPI)
256 	    return (EBUSY);
257 	break;
258     default:
259 	break;
260     }
261     return (0);
262 }
263 
264 /*
265  * Perform early initialization.
266  */
267 ACPI_STATUS
268 acpi_Startup(void)
269 {
270     static int started = 0;
271     int error, val;
272 
273     ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__);
274 
275     /* Only run the startup code once.  The MADT driver also calls this. */
276     if (started)
277 	return_VALUE (0);
278     started = 1;
279 
280     /* Initialise the ACPI mutex */
281     mtx_init(&acpi_mutex, "ACPI global lock", NULL, MTX_DEF);
282 
283     /*
284      * Set the globals from our tunables.  This is needed because ACPI-CA
285      * uses UINT8 for some values and we have no tunable_byte.
286      */
287     AcpiGbl_AllMethodsSerialized = acpi_serialize_methods;
288     AcpiGbl_EnableInterpreterSlack = TRUE;
289 
290     /* Start up the ACPI CA subsystem. */
291     if (ACPI_FAILURE(error = AcpiInitializeSubsystem())) {
292 	printf("ACPI: initialisation failed: %s\n", AcpiFormatException(error));
293 	return_VALUE (error);
294     }
295 
296     if (ACPI_FAILURE(error = AcpiLoadTables())) {
297 	printf("ACPI: table load failed: %s\n", AcpiFormatException(error));
298 	AcpiTerminate();
299 	return_VALUE (error);
300     }
301 
302     /* Set up any quirks we have for this system. */
303     acpi_table_quirks(&acpi_quirks);
304 
305     /* If the user manually set the disabled hint to 0, override any quirk. */
306     if (resource_int_value("acpi", 0, "disabled", &val) == 0 && val == 0)
307 	acpi_quirks &= ~ACPI_Q_BROKEN;
308     if (acpi_quirks & ACPI_Q_BROKEN) {
309 	printf("ACPI disabled by blacklist.  Contact your BIOS vendor.\n");
310 	AcpiTerminate();
311 	return_VALUE (AE_ERROR);
312     }
313 
314     return_VALUE (AE_OK);
315 }
316 
317 /*
318  * Detect ACPI, perform early initialisation
319  */
320 static void
321 acpi_identify(driver_t *driver, device_t parent)
322 {
323     device_t	child;
324 
325     ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__);
326 
327     if (!cold)
328 	return_VOID;
329 
330     /* Check that we haven't been disabled with a hint. */
331     if (resource_disabled("acpi", 0))
332 	return_VOID;
333 
334     /* Make sure we're not being doubly invoked. */
335     if (device_find_child(parent, "acpi", 0) != NULL)
336 	return_VOID;
337 
338     /* Initialize ACPI-CA. */
339     if (ACPI_FAILURE(acpi_Startup()))
340 	return_VOID;
341 
342     snprintf(acpi_ca_version, sizeof(acpi_ca_version), "%#x", ACPI_CA_VERSION);
343 
344     /* Attach the actual ACPI device. */
345     if ((child = BUS_ADD_CHILD(parent, 0, "acpi", 0)) == NULL) {
346 	device_printf(parent, "device_identify failed\n");
347 	return_VOID;
348     }
349 }
350 
351 /*
352  * Fetch some descriptive data from ACPI to put in our attach message.
353  */
354 static int
355 acpi_probe(device_t dev)
356 {
357     ACPI_TABLE_HEADER	th;
358     char		buf[20];
359     int			error;
360     struct sbuf		sb;
361     ACPI_STATUS		status;
362 
363     ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__);
364 
365     if (power_pm_get_type() != POWER_PM_TYPE_NONE &&
366 	power_pm_get_type() != POWER_PM_TYPE_ACPI) {
367 	device_printf(dev, "probe failed, other PM system enabled.\n");
368 	return_VALUE (ENXIO);
369     }
370 
371     if (ACPI_FAILURE(status = AcpiGetTableHeader(ACPI_TABLE_XSDT, 1, &th))) {
372 	device_printf(dev, "couldn't get XSDT header: %s\n",
373 		      AcpiFormatException(status));
374 	error = ENXIO;
375     } else {
376 	sbuf_new(&sb, buf, sizeof(buf), SBUF_FIXEDLEN);
377 	sbuf_bcat(&sb, th.OemId, 6);
378 	sbuf_trim(&sb);
379 	sbuf_putc(&sb, ' ');
380 	sbuf_bcat(&sb, th.OemTableId, 8);
381 	sbuf_trim(&sb);
382 	sbuf_finish(&sb);
383 	device_set_desc_copy(dev, sbuf_data(&sb));
384 	sbuf_delete(&sb);
385 	error = 0;
386     }
387 
388     return_VALUE (error);
389 }
390 
391 static int
392 acpi_attach(device_t dev)
393 {
394     struct acpi_softc	*sc;
395     ACPI_STATUS		status;
396     int			error, state;
397     UINT32		flags;
398     UINT8		TypeA, TypeB;
399     char		*env;
400 
401     ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__);
402 
403     sc = device_get_softc(dev);
404     sc->acpi_dev = dev;
405 
406     /* Initialize resource manager. */
407     acpi_rman_io.rm_type = RMAN_ARRAY;
408     acpi_rman_io.rm_start = 0;
409     acpi_rman_io.rm_end = 0xffff;
410     acpi_rman_io.rm_descr = "I/O ports";
411     if (rman_init(&acpi_rman_io) != 0)
412 	panic("acpi rman_init IO ports failed");
413     acpi_rman_mem.rm_type = RMAN_ARRAY;
414     acpi_rman_mem.rm_start = 0;
415     acpi_rman_mem.rm_end = ~0ul;
416     acpi_rman_mem.rm_descr = "I/O memory addresses";
417     if (rman_init(&acpi_rman_mem) != 0)
418 	panic("acpi rman_init memory failed");
419 
420     /* Install the default address space handlers. */
421     error = ENXIO;
422     status = AcpiInstallAddressSpaceHandler(ACPI_ROOT_OBJECT,
423 		ACPI_ADR_SPACE_SYSTEM_MEMORY, ACPI_DEFAULT_HANDLER, NULL, NULL);
424     if (ACPI_FAILURE(status)) {
425 	device_printf(dev, "Could not initialise SystemMemory handler: %s\n",
426 		      AcpiFormatException(status));
427 	goto out;
428     }
429     status = AcpiInstallAddressSpaceHandler(ACPI_ROOT_OBJECT,
430 		ACPI_ADR_SPACE_SYSTEM_IO, ACPI_DEFAULT_HANDLER, NULL, NULL);
431     if (ACPI_FAILURE(status)) {
432 	device_printf(dev, "Could not initialise SystemIO handler: %s\n",
433 		      AcpiFormatException(status));
434 	goto out;
435     }
436     status = AcpiInstallAddressSpaceHandler(ACPI_ROOT_OBJECT,
437 		ACPI_ADR_SPACE_PCI_CONFIG, ACPI_DEFAULT_HANDLER, NULL, NULL);
438     if (ACPI_FAILURE(status)) {
439 	device_printf(dev, "could not initialise PciConfig handler: %s\n",
440 		      AcpiFormatException(status));
441 	goto out;
442     }
443 
444     /*
445      * Note that some systems (specifically, those with namespace evaluation
446      * issues that require the avoidance of parts of the namespace) must
447      * avoid running _INI and _STA on everything, as well as dodging the final
448      * object init pass.
449      *
450      * For these devices, we set ACPI_NO_DEVICE_INIT and ACPI_NO_OBJECT_INIT).
451      *
452      * XXX We should arrange for the object init pass after we have attached
453      *     all our child devices, but on many systems it works here.
454      */
455     flags = 0;
456     if (testenv("debug.acpi.avoid"))
457 	flags = ACPI_NO_DEVICE_INIT | ACPI_NO_OBJECT_INIT;
458 
459     /* Bring the hardware and basic handlers online. */
460     if (ACPI_FAILURE(status = AcpiEnableSubsystem(flags))) {
461 	device_printf(dev, "Could not enable ACPI: %s\n",
462 		      AcpiFormatException(status));
463 	goto out;
464     }
465 
466     /*
467      * Call the ECDT probe function to provide EC functionality before
468      * the namespace has been evaluated.
469      */
470     acpi_ec_ecdt_probe(dev);
471 
472     /* Bring device objects and regions online. */
473     if (ACPI_FAILURE(status = AcpiInitializeObjects(flags))) {
474 	device_printf(dev, "Could not initialize ACPI objects: %s\n",
475 		      AcpiFormatException(status));
476 	goto out;
477     }
478 
479     /*
480      * Setup our sysctl tree.
481      *
482      * XXX: This doesn't check to make sure that none of these fail.
483      */
484     sysctl_ctx_init(&sc->acpi_sysctl_ctx);
485     sc->acpi_sysctl_tree = SYSCTL_ADD_NODE(&sc->acpi_sysctl_ctx,
486 			       SYSCTL_STATIC_CHILDREN(_hw), OID_AUTO,
487 			       device_get_name(dev), CTLFLAG_RD, 0, "");
488     SYSCTL_ADD_PROC(&sc->acpi_sysctl_ctx, SYSCTL_CHILDREN(sc->acpi_sysctl_tree),
489 	OID_AUTO, "supported_sleep_state", CTLTYPE_STRING | CTLFLAG_RD,
490 	0, 0, acpi_supported_sleep_state_sysctl, "A", "");
491     SYSCTL_ADD_PROC(&sc->acpi_sysctl_ctx, SYSCTL_CHILDREN(sc->acpi_sysctl_tree),
492 	OID_AUTO, "power_button_state", CTLTYPE_STRING | CTLFLAG_RW,
493 	&sc->acpi_power_button_sx, 0, acpi_sleep_state_sysctl, "A", "");
494     SYSCTL_ADD_PROC(&sc->acpi_sysctl_ctx, SYSCTL_CHILDREN(sc->acpi_sysctl_tree),
495 	OID_AUTO, "sleep_button_state", CTLTYPE_STRING | CTLFLAG_RW,
496 	&sc->acpi_sleep_button_sx, 0, acpi_sleep_state_sysctl, "A", "");
497     SYSCTL_ADD_PROC(&sc->acpi_sysctl_ctx, SYSCTL_CHILDREN(sc->acpi_sysctl_tree),
498 	OID_AUTO, "lid_switch_state", CTLTYPE_STRING | CTLFLAG_RW,
499 	&sc->acpi_lid_switch_sx, 0, acpi_sleep_state_sysctl, "A", "");
500     SYSCTL_ADD_PROC(&sc->acpi_sysctl_ctx, SYSCTL_CHILDREN(sc->acpi_sysctl_tree),
501 	OID_AUTO, "standby_state", CTLTYPE_STRING | CTLFLAG_RW,
502 	&sc->acpi_standby_sx, 0, acpi_sleep_state_sysctl, "A", "");
503     SYSCTL_ADD_PROC(&sc->acpi_sysctl_ctx, SYSCTL_CHILDREN(sc->acpi_sysctl_tree),
504 	OID_AUTO, "suspend_state", CTLTYPE_STRING | CTLFLAG_RW,
505 	&sc->acpi_suspend_sx, 0, acpi_sleep_state_sysctl, "A", "");
506     SYSCTL_ADD_INT(&sc->acpi_sysctl_ctx, SYSCTL_CHILDREN(sc->acpi_sysctl_tree),
507 	OID_AUTO, "sleep_delay", CTLFLAG_RD | CTLFLAG_RW,
508 	&sc->acpi_sleep_delay, 0, "sleep delay");
509     SYSCTL_ADD_INT(&sc->acpi_sysctl_ctx, SYSCTL_CHILDREN(sc->acpi_sysctl_tree),
510 	OID_AUTO, "s4bios", CTLFLAG_RD | CTLFLAG_RW,
511 	&sc->acpi_s4bios, 0, "S4BIOS mode");
512     SYSCTL_ADD_INT(&sc->acpi_sysctl_ctx, SYSCTL_CHILDREN(sc->acpi_sysctl_tree),
513 	OID_AUTO, "verbose", CTLFLAG_RD | CTLFLAG_RW,
514 	&sc->acpi_verbose, 0, "verbose mode");
515 
516     /*
517      * Default to 1 second before sleeping to give some machines time to
518      * stabilize.
519      */
520     sc->acpi_sleep_delay = 1;
521     if (bootverbose)
522 	sc->acpi_verbose = 1;
523     if ((env = getenv("hw.acpi.verbose")) && strcmp(env, "0")) {
524 	sc->acpi_verbose = 1;
525 	freeenv(env);
526     }
527 
528     /* Only enable S4BIOS by default if the FACS says it is available. */
529     if (AcpiGbl_FACS->S4Bios_f != 0)
530 	sc->acpi_s4bios = 1;
531 
532     /*
533      * Dispatch the default sleep state to devices.  The lid switch is set
534      * to NONE by default to avoid surprising users.
535      */
536     sc->acpi_power_button_sx = ACPI_STATE_S5;
537     sc->acpi_lid_switch_sx = ACPI_S_STATES_MAX + 1;
538     sc->acpi_standby_sx = ACPI_STATE_S1;
539     sc->acpi_suspend_sx = ACPI_STATE_S3;
540 
541     /* Pick the first valid sleep state for the sleep button default. */
542     sc->acpi_sleep_button_sx = ACPI_S_STATES_MAX + 1;
543     for (state = ACPI_STATE_S1; state < ACPI_STATE_S5; state++)
544 	if (ACPI_SUCCESS(AcpiGetSleepTypeData(state, &TypeA, &TypeB))) {
545 	    sc->acpi_sleep_button_sx = state;
546 	    break;
547 	}
548 
549     acpi_enable_fixed_events(sc);
550 
551     /*
552      * Scan the namespace and attach/initialise children.
553      */
554 
555     /* Register our shutdown handler. */
556     EVENTHANDLER_REGISTER(shutdown_final, acpi_shutdown_final, sc,
557 	SHUTDOWN_PRI_LAST);
558 
559     /*
560      * Register our acpi event handlers.
561      * XXX should be configurable eg. via userland policy manager.
562      */
563     EVENTHANDLER_REGISTER(acpi_sleep_event, acpi_system_eventhandler_sleep,
564 	sc, ACPI_EVENT_PRI_LAST);
565     EVENTHANDLER_REGISTER(acpi_wakeup_event, acpi_system_eventhandler_wakeup,
566 	sc, ACPI_EVENT_PRI_LAST);
567 
568     /* Flag our initial states. */
569     sc->acpi_enabled = 1;
570     sc->acpi_sstate = ACPI_STATE_S0;
571     sc->acpi_sleep_disabled = 0;
572 
573     /* Create the control device */
574     sc->acpi_dev_t = make_dev(&acpi_cdevsw, 0, UID_ROOT, GID_WHEEL, 0644,
575 			      "acpi");
576     sc->acpi_dev_t->si_drv1 = sc;
577 
578     if ((error = acpi_task_thread_init()))
579 	goto out;
580 
581     if ((error = acpi_machdep_init(dev)))
582 	goto out;
583 
584     /* Register ACPI again to pass the correct argument of pm_func. */
585     power_pm_register(POWER_PM_TYPE_ACPI, acpi_pm_func, sc);
586 
587     if (!acpi_disabled("bus"))
588 	acpi_probe_children(dev);
589 
590     error = 0;
591 
592  out:
593     return_VALUE (error);
594 }
595 
596 static int
597 acpi_suspend(device_t dev)
598 {
599     struct acpi_softc *sc;
600     device_t child, *devlist;
601     int error, i, numdevs, pstate;
602 
603     GIANT_REQUIRED;
604 
605     /* First give child devices a chance to suspend. */
606     error = bus_generic_suspend(dev);
607     if (error)
608 	return (error);
609 
610     /*
611      * Now, set them into the appropriate power state, usually D3.  If the
612      * device has an _SxD method for the next sleep state, use that power
613      * state instead.
614      */
615     sc = device_get_softc(dev);
616     device_get_children(dev, &devlist, &numdevs);
617     for (i = 0; i < numdevs; i++) {
618 	/* If the device is not attached, we've powered it down elsewhere. */
619 	child = devlist[i];
620 	if (!device_is_attached(child))
621 	    continue;
622 
623 	/*
624 	 * Default to D3 for all sleep states.  The _SxD method is optional
625 	 * so set the powerstate even if it's absent.
626 	 */
627 	pstate = PCI_POWERSTATE_D3;
628 	error = acpi_device_pwr_for_sleep(device_get_parent(child),
629 	    child, &pstate);
630 	if ((error == 0 || error == ESRCH) && acpi_do_powerstate)
631 	    pci_set_powerstate(child, pstate);
632     }
633     free(devlist, M_TEMP);
634     error = 0;
635 
636     return (error);
637 }
638 
639 static int
640 acpi_resume(device_t dev)
641 {
642     ACPI_HANDLE handle;
643     int i, numdevs;
644     device_t child, *devlist;
645 
646     GIANT_REQUIRED;
647 
648     /*
649      * Put all devices in D0 before resuming them.  Call _S0D on each one
650      * since some systems expect this.
651      */
652     device_get_children(dev, &devlist, &numdevs);
653     for (i = 0; i < numdevs; i++) {
654 	child = devlist[i];
655 	handle = acpi_get_handle(child);
656 	if (handle)
657 	    AcpiEvaluateObject(handle, "_S0D", NULL, NULL);
658 	if (device_is_attached(child) && acpi_do_powerstate)
659 	    pci_set_powerstate(child, PCI_POWERSTATE_D0);
660     }
661     free(devlist, M_TEMP);
662 
663     return (bus_generic_resume(dev));
664 }
665 
666 static int
667 acpi_shutdown(device_t dev)
668 {
669 
670     GIANT_REQUIRED;
671 
672     /* Allow children to shutdown first. */
673     bus_generic_shutdown(dev);
674 
675     /*
676      * Enable any GPEs that are able to power-on the system (i.e., RTC).
677      * Also, disable any that are not valid for this state (most).
678      */
679     acpi_wake_prep_walk(ACPI_STATE_S5);
680 
681     return (0);
682 }
683 
684 /*
685  * Handle a new device being added
686  */
687 static device_t
688 acpi_add_child(device_t bus, int order, const char *name, int unit)
689 {
690     struct acpi_device	*ad;
691     device_t		child;
692 
693     if ((ad = malloc(sizeof(*ad), M_ACPIDEV, M_NOWAIT | M_ZERO)) == NULL)
694 	return (NULL);
695 
696     resource_list_init(&ad->ad_rl);
697 
698     child = device_add_child_ordered(bus, order, name, unit);
699     if (child != NULL)
700 	device_set_ivars(child, ad);
701     return (child);
702 }
703 
704 static int
705 acpi_print_child(device_t bus, device_t child)
706 {
707     struct acpi_device	 *adev = device_get_ivars(child);
708     struct resource_list *rl = &adev->ad_rl;
709     int retval = 0;
710 
711     retval += bus_print_child_header(bus, child);
712     retval += resource_list_print_type(rl, "port",  SYS_RES_IOPORT, "%#lx");
713     retval += resource_list_print_type(rl, "iomem", SYS_RES_MEMORY, "%#lx");
714     retval += resource_list_print_type(rl, "irq",   SYS_RES_IRQ,    "%ld");
715     retval += resource_list_print_type(rl, "drq",   SYS_RES_DRQ,    "%ld");
716     if (device_get_flags(child))
717 	retval += printf(" flags %#x", device_get_flags(child));
718     retval += bus_print_child_footer(bus, child);
719 
720     return (retval);
721 }
722 
723 /*
724  * If this device is an ACPI child but no one claimed it, attempt
725  * to power it off.  We'll power it back up when a driver is added.
726  *
727  * XXX Disabled for now since many necessary devices (like fdc and
728  * ATA) don't claim the devices we created for them but still expect
729  * them to be powered up.
730  */
731 static void
732 acpi_probe_nomatch(device_t bus, device_t child)
733 {
734 
735     /* pci_set_powerstate(child, PCI_POWERSTATE_D3); */
736 }
737 
738 /*
739  * If a new driver has a chance to probe a child, first power it up.
740  *
741  * XXX Disabled for now (see acpi_probe_nomatch for details).
742  */
743 static void
744 acpi_driver_added(device_t dev, driver_t *driver)
745 {
746     device_t child, *devlist;
747     int i, numdevs;
748 
749     DEVICE_IDENTIFY(driver, dev);
750     device_get_children(dev, &devlist, &numdevs);
751     for (i = 0; i < numdevs; i++) {
752 	child = devlist[i];
753 	if (device_get_state(child) == DS_NOTPRESENT) {
754 	    /* pci_set_powerstate(child, PCI_POWERSTATE_D0); */
755 	    if (device_probe_and_attach(child) != 0)
756 		; /* pci_set_powerstate(child, PCI_POWERSTATE_D3); */
757 	}
758     }
759     free(devlist, M_TEMP);
760 }
761 
762 /* Location hint for devctl(8) */
763 static int
764 acpi_child_location_str_method(device_t cbdev, device_t child, char *buf,
765     size_t buflen)
766 {
767     struct acpi_device *dinfo = device_get_ivars(child);
768 
769     if (dinfo->ad_handle)
770 	snprintf(buf, buflen, "handle=%s", acpi_name(dinfo->ad_handle));
771     else
772 	snprintf(buf, buflen, "unknown");
773     return (0);
774 }
775 
776 /* PnP information for devctl(8) */
777 static int
778 acpi_child_pnpinfo_str_method(device_t cbdev, device_t child, char *buf,
779     size_t buflen)
780 {
781     ACPI_BUFFER adbuf = {ACPI_ALLOCATE_BUFFER, NULL};
782     ACPI_DEVICE_INFO *adinfo;
783     struct acpi_device *dinfo = device_get_ivars(child);
784     char *end;
785     int error;
786 
787     error = AcpiGetObjectInfo(dinfo->ad_handle, &adbuf);
788     adinfo = (ACPI_DEVICE_INFO *) adbuf.Pointer;
789     if (error)
790 	snprintf(buf, buflen, "unknown");
791     else
792 	snprintf(buf, buflen, "_HID=%s _UID=%lu",
793 		 (adinfo->Valid & ACPI_VALID_HID) ?
794 		 adinfo->HardwareId.Value : "none",
795 		 (adinfo->Valid & ACPI_VALID_UID) ?
796 		 strtoul(adinfo->UniqueId.Value, &end, 10) : 0);
797     if (adinfo)
798 	AcpiOsFree(adinfo);
799 
800     return (0);
801 }
802 
803 /*
804  * Handle per-device ivars
805  */
806 static int
807 acpi_read_ivar(device_t dev, device_t child, int index, uintptr_t *result)
808 {
809     struct acpi_device	*ad;
810 
811     if ((ad = device_get_ivars(child)) == NULL) {
812 	printf("device has no ivars\n");
813 	return (ENOENT);
814     }
815 
816     /* ACPI and ISA compatibility ivars */
817     switch(index) {
818     case ACPI_IVAR_HANDLE:
819 	*(ACPI_HANDLE *)result = ad->ad_handle;
820 	break;
821     case ACPI_IVAR_MAGIC:
822 	*(int *)result = ad->ad_magic;
823 	break;
824     case ACPI_IVAR_PRIVATE:
825 	*(void **)result = ad->ad_private;
826 	break;
827     case ACPI_IVAR_FLAGS:
828 	*(int *)result = ad->ad_flags;
829 	break;
830     case ISA_IVAR_VENDORID:
831     case ISA_IVAR_SERIAL:
832     case ISA_IVAR_COMPATID:
833 	*(int *)result = -1;
834 	break;
835     case ISA_IVAR_LOGICALID:
836 	*(int *)result = acpi_isa_get_logicalid(child);
837 	break;
838     default:
839 	return (ENOENT);
840     }
841 
842     return (0);
843 }
844 
845 static int
846 acpi_write_ivar(device_t dev, device_t child, int index, uintptr_t value)
847 {
848     struct acpi_device	*ad;
849 
850     if ((ad = device_get_ivars(child)) == NULL) {
851 	printf("device has no ivars\n");
852 	return (ENOENT);
853     }
854 
855     switch(index) {
856     case ACPI_IVAR_HANDLE:
857 	ad->ad_handle = (ACPI_HANDLE)value;
858 	break;
859     case ACPI_IVAR_MAGIC:
860 	ad->ad_magic = (int)value;
861 	break;
862     case ACPI_IVAR_PRIVATE:
863 	ad->ad_private = (void *)value;
864 	break;
865     case ACPI_IVAR_FLAGS:
866 	ad->ad_flags = (int)value;
867 	break;
868     default:
869 	panic("bad ivar write request (%d)", index);
870 	return (ENOENT);
871     }
872 
873     return (0);
874 }
875 
876 /*
877  * Handle child resource allocation/removal
878  */
879 static struct resource_list *
880 acpi_get_rlist(device_t dev, device_t child)
881 {
882     struct acpi_device		*ad;
883 
884     ad = device_get_ivars(child);
885     return (&ad->ad_rl);
886 }
887 
888 /*
889  * Pre-allocate/manage all memory and IO resources.  Since rman can't handle
890  * duplicates, we merge any in the sysresource attach routine.
891  */
892 static int
893 acpi_sysres_alloc(device_t dev)
894 {
895     struct resource *res;
896     struct resource_list *rl;
897     struct resource_list_entry *rle;
898     struct rman *rm;
899 
900     rl = BUS_GET_RESOURCE_LIST(device_get_parent(dev), dev);
901     SLIST_FOREACH(rle, rl, link) {
902 	if (rle->res != NULL) {
903 	    device_printf(dev, "duplicate resource for %lx\n", rle->start);
904 	    continue;
905 	}
906 
907 	/* Only memory and IO resources are valid here. */
908 	switch (rle->type) {
909 	case SYS_RES_IOPORT:
910 	    rm = &acpi_rman_io;
911 	    break;
912 	case SYS_RES_MEMORY:
913 	    rm = &acpi_rman_mem;
914 	    break;
915 	default:
916 	    continue;
917 	}
918 
919 	/* Pre-allocate resource and add to our rman pool. */
920 	res = BUS_ALLOC_RESOURCE(device_get_parent(dev), dev, rle->type,
921 	    &rle->rid, rle->start, rle->start + rle->count - 1, rle->count, 0);
922 	if (res != NULL) {
923 	    rman_manage_region(rm, rman_get_start(res), rman_get_end(res));
924 	    rle->res = res;
925 	} else
926 	    device_printf(dev, "reservation of %lx, %lx (%d) failed\n",
927 		rle->start, rle->count, rle->type);
928     }
929     return (0);
930 }
931 
932 /* Find if we manage a given resource. */
933 static struct resource_list_entry *
934 acpi_sysres_find(device_t dev, int type, u_long addr)
935 {
936     struct resource_list *rl;
937     struct resource_list_entry *rle;
938 
939     ACPI_SERIAL_ASSERT(acpi);
940 
941     /* We only consider IO and memory resources for our pool. */
942     rle = NULL;
943     if (type != SYS_RES_IOPORT && type != SYS_RES_MEMORY)
944 	goto out;
945 
946     rl = BUS_GET_RESOURCE_LIST(device_get_parent(dev), dev);
947     SLIST_FOREACH(rle, rl, link) {
948 	if (type == rle->type && addr >= rle->start &&
949 	    addr < rle->start + rle->count)
950 	    break;
951     }
952 
953 out:
954     return (rle);
955 }
956 
957 static struct resource *
958 acpi_alloc_resource(device_t bus, device_t child, int type, int *rid,
959     u_long start, u_long end, u_long count, u_int flags)
960 {
961     ACPI_RESOURCE ares;
962     struct acpi_device *ad = device_get_ivars(child);
963     struct resource_list *rl = &ad->ad_rl;
964     struct resource_list_entry *rle;
965     struct resource *res;
966     struct rman *rm;
967 
968     res = NULL;
969     ACPI_SERIAL_BEGIN(acpi);
970 
971     /*
972      * If this is an allocation of the "default" range for a given RID, and
973      * we know what the resources for this device are (i.e., they're on the
974      * child's resource list), use those start/end values.
975      */
976     if (start == 0UL && end == ~0UL) {
977 	rle = resource_list_find(rl, type, *rid);
978 	if (rle == NULL)
979 	    goto out;
980 	start = rle->start;
981 	end = rle->end;
982 	count = rle->count;
983     }
984 
985     /* If we don't manage this address, pass the request up to the parent. */
986     rle = acpi_sysres_find(bus, type, start);
987     if (rle == NULL) {
988 	res = BUS_ALLOC_RESOURCE(device_get_parent(bus), child, type, rid,
989 	    start, end, count, flags);
990     } else {
991 
992 	/* We only handle memory and IO resources through rman. */
993 	switch (type) {
994 	case SYS_RES_IOPORT:
995 	    rm = &acpi_rman_io;
996 	    break;
997 	case SYS_RES_MEMORY:
998 	    rm = &acpi_rman_mem;
999 	    break;
1000 	default:
1001 	    panic("acpi_alloc_resource: invalid res type %d", type);
1002 	}
1003 
1004 	/* If we do know it, allocate it from the local pool. */
1005 	res = rman_reserve_resource(rm, start, end, count, flags & ~RF_ACTIVE,
1006 	    child);
1007 	if (res == NULL)
1008 	    goto out;
1009 
1010 	/* Copy the bus tag and handle from the pre-allocated resource. */
1011 	rman_set_bustag(res, rman_get_bustag(rle->res));
1012 	rman_set_bushandle(res, rman_get_start(res));
1013 
1014 	/* If requested, activate the resource using the parent's method. */
1015 	if (flags & RF_ACTIVE)
1016 	    if (bus_activate_resource(child, type, *rid, res) != 0) {
1017 		rman_release_resource(res);
1018 		res = NULL;
1019 		goto out;
1020 	    }
1021     }
1022 
1023     if (res != NULL && device_get_parent(child) == bus)
1024 	switch (type) {
1025 	case SYS_RES_IRQ:
1026 	    /*
1027 	     * Since bus_config_intr() takes immediate effect, we cannot
1028 	     * configure the interrupt associated with a device when we
1029 	     * parse the resources but have to defer it until a driver
1030 	     * actually allocates the interrupt via bus_alloc_resource().
1031 	     *
1032 	     * XXX: Should we handle the lookup failing?
1033 	     */
1034 	    if (ACPI_SUCCESS(acpi_lookup_irq_resource(child, *rid, res, &ares)))
1035 		acpi_config_intr(child, &ares);
1036 	    break;
1037 	}
1038 
1039 out:
1040     ACPI_SERIAL_END(acpi);
1041     return (res);
1042 }
1043 
1044 static int
1045 acpi_release_resource(device_t bus, device_t child, int type, int rid,
1046     struct resource *r)
1047 {
1048     int ret;
1049 
1050     ACPI_SERIAL_BEGIN(acpi);
1051 
1052     /*
1053      * If we know about this address, deactivate it and release it to the
1054      * local pool.  If we don't, pass this request up to the parent.
1055      */
1056     if (acpi_sysres_find(bus, type, rman_get_start(r)) == NULL) {
1057 	if (rman_get_flags(r) & RF_ACTIVE) {
1058 	    ret = bus_deactivate_resource(child, type, rid, r);
1059 	    if (ret != 0)
1060 		goto out;
1061 	}
1062 	ret = rman_release_resource(r);
1063     } else
1064 	ret = BUS_RELEASE_RESOURCE(device_get_parent(bus), child, type, rid, r);
1065 
1066 out:
1067     ACPI_SERIAL_END(acpi);
1068     return (ret);
1069 }
1070 
1071 /* Allocate an IO port or memory resource, given its GAS. */
1072 int
1073 acpi_bus_alloc_gas(device_t dev, int *type, int *rid, ACPI_GENERIC_ADDRESS *gas,
1074     struct resource **res)
1075 {
1076     int error, res_type;
1077 
1078     error = ENOMEM;
1079     if (type == NULL || rid == NULL || gas == NULL || res == NULL ||
1080 	!ACPI_VALID_ADDRESS(gas->Address) || gas->RegisterBitWidth < 8)
1081 	return (EINVAL);
1082 
1083     switch (gas->AddressSpaceId) {
1084     case ACPI_ADR_SPACE_SYSTEM_MEMORY:
1085 	res_type = SYS_RES_MEMORY;
1086 	break;
1087     case ACPI_ADR_SPACE_SYSTEM_IO:
1088 	res_type = SYS_RES_IOPORT;
1089 	break;
1090     default:
1091 	return (EOPNOTSUPP);
1092     }
1093 
1094     bus_set_resource(dev, res_type, *rid, gas->Address,
1095 	gas->RegisterBitWidth / 8);
1096     *res = bus_alloc_resource_any(dev, res_type, rid, RF_ACTIVE);
1097     if (*res != NULL) {
1098 	*type = res_type;
1099 	error = 0;
1100     }
1101     return (error);
1102 }
1103 
1104 /* Probe _HID and _CID for compatible ISA PNP ids. */
1105 static uint32_t
1106 acpi_isa_get_logicalid(device_t dev)
1107 {
1108     ACPI_DEVICE_INFO	*devinfo;
1109     ACPI_BUFFER		buf;
1110     ACPI_HANDLE		h;
1111     ACPI_STATUS		error;
1112     u_int32_t		pnpid;
1113 
1114     ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__);
1115 
1116     pnpid = 0;
1117     buf.Pointer = NULL;
1118     buf.Length = ACPI_ALLOCATE_BUFFER;
1119 
1120     /* Fetch and validate the HID. */
1121     if ((h = acpi_get_handle(dev)) == NULL)
1122 	goto out;
1123     error = AcpiGetObjectInfo(h, &buf);
1124     if (ACPI_FAILURE(error))
1125 	goto out;
1126     devinfo = (ACPI_DEVICE_INFO *)buf.Pointer;
1127 
1128     if ((devinfo->Valid & ACPI_VALID_HID) != 0)
1129 	pnpid = PNP_EISAID(devinfo->HardwareId.Value);
1130 
1131 out:
1132     if (buf.Pointer != NULL)
1133 	AcpiOsFree(buf.Pointer);
1134     return_VALUE (pnpid);
1135 }
1136 
1137 static int
1138 acpi_isa_get_compatid(device_t dev, uint32_t *cids, int count)
1139 {
1140     ACPI_DEVICE_INFO	*devinfo;
1141     ACPI_BUFFER		buf;
1142     ACPI_HANDLE		h;
1143     ACPI_STATUS		error;
1144     uint32_t		*pnpid;
1145     int			valid, i;
1146 
1147     ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__);
1148 
1149     pnpid = cids;
1150     valid = 0;
1151     buf.Pointer = NULL;
1152     buf.Length = ACPI_ALLOCATE_BUFFER;
1153 
1154     /* Fetch and validate the CID */
1155     if ((h = acpi_get_handle(dev)) == NULL)
1156 	goto out;
1157     error = AcpiGetObjectInfo(h, &buf);
1158     if (ACPI_FAILURE(error))
1159 	goto out;
1160     devinfo = (ACPI_DEVICE_INFO *)buf.Pointer;
1161     if ((devinfo->Valid & ACPI_VALID_CID) == 0)
1162 	goto out;
1163 
1164     if (devinfo->CompatibilityId.Count < count)
1165 	count = devinfo->CompatibilityId.Count;
1166     for (i = 0; i < count; i++) {
1167 	if (strncmp(devinfo->CompatibilityId.Id[i].Value, "PNP", 3) != 0)
1168 	    continue;
1169 	*pnpid++ = PNP_EISAID(devinfo->CompatibilityId.Id[i].Value);
1170 	valid++;
1171     }
1172 
1173 out:
1174     if (buf.Pointer != NULL)
1175 	AcpiOsFree(buf.Pointer);
1176     return_VALUE (valid);
1177 }
1178 
1179 static char *
1180 acpi_device_id_probe(device_t bus, device_t dev, char **ids)
1181 {
1182     ACPI_HANDLE h;
1183     int i;
1184 
1185     h = acpi_get_handle(dev);
1186     if (ids == NULL || h == NULL || acpi_get_type(dev) != ACPI_TYPE_DEVICE)
1187 	return (NULL);
1188 
1189     /* Try to match one of the array of IDs with a HID or CID. */
1190     for (i = 0; ids[i] != NULL; i++) {
1191 	if (acpi_MatchHid(h, ids[i]))
1192 	    return (ids[i]);
1193     }
1194     return (NULL);
1195 }
1196 
1197 static ACPI_STATUS
1198 acpi_device_eval_obj(device_t bus, device_t dev, ACPI_STRING pathname,
1199     ACPI_OBJECT_LIST *parameters, ACPI_BUFFER *ret)
1200 {
1201     ACPI_HANDLE h;
1202 
1203     if (dev == NULL)
1204 	h = ACPI_ROOT_OBJECT;
1205     else if ((h = acpi_get_handle(dev)) == NULL)
1206 	return (AE_BAD_PARAMETER);
1207     return (AcpiEvaluateObject(h, pathname, parameters, ret));
1208 }
1209 
1210 static int
1211 acpi_device_pwr_for_sleep(device_t bus, device_t dev, int *dstate)
1212 {
1213     struct acpi_softc *sc;
1214     ACPI_HANDLE handle;
1215     ACPI_STATUS status;
1216     char sxd[8];
1217     int error;
1218 
1219     sc = device_get_softc(bus);
1220     handle = acpi_get_handle(dev);
1221 
1222     /*
1223      * XXX If we find these devices, don't try to power them down.
1224      * The serial and IRDA ports on my T23 hang the system when
1225      * set to D3 and it appears that such legacy devices may
1226      * need special handling in their drivers.
1227      */
1228     if (handle == NULL ||
1229 	acpi_MatchHid(handle, "PNP0500") ||
1230 	acpi_MatchHid(handle, "PNP0501") ||
1231 	acpi_MatchHid(handle, "PNP0502") ||
1232 	acpi_MatchHid(handle, "PNP0510") ||
1233 	acpi_MatchHid(handle, "PNP0511"))
1234 	return (ENXIO);
1235 
1236     /*
1237      * Override next state with the value from _SxD, if present.  If no
1238      * dstate argument was provided, don't fetch the return value.
1239      */
1240     snprintf(sxd, sizeof(sxd), "_S%dD", sc->acpi_sstate);
1241     if (dstate)
1242 	status = acpi_GetInteger(handle, sxd, dstate);
1243     else
1244 	status = AcpiEvaluateObject(handle, sxd, NULL, NULL);
1245 
1246     switch (status) {
1247     case AE_OK:
1248 	error = 0;
1249 	break;
1250     case AE_NOT_FOUND:
1251 	error = ESRCH;
1252 	break;
1253     default:
1254 	error = ENXIO;
1255 	break;
1256     }
1257 
1258     return (error);
1259 }
1260 
1261 /* Callback arg for our implementation of walking the namespace. */
1262 struct acpi_device_scan_ctx {
1263     acpi_scan_cb_t	user_fn;
1264     void		*arg;
1265     ACPI_HANDLE		parent;
1266 };
1267 
1268 static ACPI_STATUS
1269 acpi_device_scan_cb(ACPI_HANDLE h, UINT32 level, void *arg, void **retval)
1270 {
1271     struct acpi_device_scan_ctx *ctx;
1272     device_t dev, old_dev;
1273     ACPI_STATUS status;
1274     ACPI_OBJECT_TYPE type;
1275 
1276     /*
1277      * Skip this device if we think we'll have trouble with it or it is
1278      * the parent where the scan began.
1279      */
1280     ctx = (struct acpi_device_scan_ctx *)arg;
1281     if (acpi_avoid(h) || h == ctx->parent)
1282 	return (AE_OK);
1283 
1284     /* If this is not a valid device type (e.g., a method), skip it. */
1285     if (ACPI_FAILURE(AcpiGetType(h, &type)))
1286 	return (AE_OK);
1287     if (type != ACPI_TYPE_DEVICE && type != ACPI_TYPE_PROCESSOR &&
1288 	type != ACPI_TYPE_THERMAL && type != ACPI_TYPE_POWER)
1289 	return (AE_OK);
1290 
1291     /*
1292      * Call the user function with the current device.  If it is unchanged
1293      * afterwards, return.  Otherwise, we update the handle to the new dev.
1294      */
1295     old_dev = acpi_get_device(h);
1296     dev = old_dev;
1297     status = ctx->user_fn(h, &dev, level, ctx->arg);
1298     if (ACPI_FAILURE(status) || old_dev == dev)
1299 	return (status);
1300 
1301     /* Remove the old child and its connection to the handle. */
1302     if (old_dev != NULL) {
1303 	device_delete_child(device_get_parent(old_dev), old_dev);
1304 	AcpiDetachData(h, acpi_fake_objhandler);
1305     }
1306 
1307     /* Recreate the handle association if the user created a device. */
1308     if (dev != NULL)
1309 	AcpiAttachData(h, acpi_fake_objhandler, dev);
1310 
1311     return (AE_OK);
1312 }
1313 
1314 static ACPI_STATUS
1315 acpi_device_scan_children(device_t bus, device_t dev, int max_depth,
1316     acpi_scan_cb_t user_fn, void *arg)
1317 {
1318     ACPI_HANDLE h;
1319     struct acpi_device_scan_ctx ctx;
1320 
1321     if (acpi_disabled("children"))
1322 	return (AE_OK);
1323 
1324     if (dev == NULL)
1325 	h = ACPI_ROOT_OBJECT;
1326     else if ((h = acpi_get_handle(dev)) == NULL)
1327 	return (AE_BAD_PARAMETER);
1328     ctx.user_fn = user_fn;
1329     ctx.arg = arg;
1330     ctx.parent = h;
1331     return (AcpiWalkNamespace(ACPI_TYPE_ANY, h, max_depth,
1332 	acpi_device_scan_cb, &ctx, NULL));
1333 }
1334 
1335 /*
1336  * Even though ACPI devices are not PCI, we use the PCI approach for setting
1337  * device power states since it's close enough to ACPI.
1338  */
1339 static int
1340 acpi_set_powerstate_method(device_t bus, device_t child, int state)
1341 {
1342     ACPI_HANDLE h;
1343     ACPI_STATUS status;
1344     int error;
1345 
1346     error = 0;
1347     h = acpi_get_handle(child);
1348     if (state < ACPI_STATE_D0 || state > ACPI_STATE_D3)
1349 	return (EINVAL);
1350     if (h == NULL)
1351 	return (0);
1352 
1353     /* Ignore errors if the power methods aren't present. */
1354     status = acpi_pwr_switch_consumer(h, state);
1355     if (ACPI_FAILURE(status) && status != AE_NOT_FOUND
1356 	&& status != AE_BAD_PARAMETER)
1357 	device_printf(bus, "failed to set ACPI power state D%d on %s: %s\n",
1358 	    state, acpi_name(h), AcpiFormatException(status));
1359 
1360     return (error);
1361 }
1362 
1363 static int
1364 acpi_isa_pnp_probe(device_t bus, device_t child, struct isa_pnp_id *ids)
1365 {
1366     int			result, cid_count, i;
1367     uint32_t		lid, cids[8];
1368 
1369     ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__);
1370 
1371     /*
1372      * ISA-style drivers attached to ACPI may persist and
1373      * probe manually if we return ENOENT.  We never want
1374      * that to happen, so don't ever return it.
1375      */
1376     result = ENXIO;
1377 
1378     /* Scan the supplied IDs for a match */
1379     lid = acpi_isa_get_logicalid(child);
1380     cid_count = acpi_isa_get_compatid(child, cids, 8);
1381     while (ids && ids->ip_id) {
1382 	if (lid == ids->ip_id) {
1383 	    result = 0;
1384 	    goto out;
1385 	}
1386 	for (i = 0; i < cid_count; i++) {
1387 	    if (cids[i] == ids->ip_id) {
1388 		result = 0;
1389 		goto out;
1390 	    }
1391 	}
1392 	ids++;
1393     }
1394 
1395  out:
1396     if (result == 0 && ids->ip_desc)
1397 	device_set_desc(child, ids->ip_desc);
1398 
1399     return_VALUE (result);
1400 }
1401 
1402 /*
1403  * Scan all of the ACPI namespace and attach child devices.
1404  *
1405  * We should only expect to find devices in the \_PR, \_TZ, \_SI, and
1406  * \_SB scopes, and \_PR and \_TZ became obsolete in the ACPI 2.0 spec.
1407  * However, in violation of the spec, some systems place their PCI link
1408  * devices in \, so we have to walk the whole namespace.  We check the
1409  * type of namespace nodes, so this should be ok.
1410  */
1411 static void
1412 acpi_probe_children(device_t bus)
1413 {
1414 
1415     ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__);
1416 
1417     /*
1418      * Scan the namespace and insert placeholders for all the devices that
1419      * we find.  We also probe/attach any early devices.
1420      *
1421      * Note that we use AcpiWalkNamespace rather than AcpiGetDevices because
1422      * we want to create nodes for all devices, not just those that are
1423      * currently present. (This assumes that we don't want to create/remove
1424      * devices as they appear, which might be smarter.)
1425      */
1426     ACPI_DEBUG_PRINT((ACPI_DB_OBJECTS, "namespace scan\n"));
1427     AcpiWalkNamespace(ACPI_TYPE_ANY, ACPI_ROOT_OBJECT, 100, acpi_probe_child,
1428 	bus, NULL);
1429 
1430     /* Pre-allocate resources for our rman from any sysresource devices. */
1431     acpi_sysres_alloc(bus);
1432 
1433     /* Create any static children by calling device identify methods. */
1434     ACPI_DEBUG_PRINT((ACPI_DB_OBJECTS, "device identify routines\n"));
1435     bus_generic_probe(bus);
1436 
1437     /* Probe/attach all children, created staticly and from the namespace. */
1438     ACPI_DEBUG_PRINT((ACPI_DB_OBJECTS, "first bus_generic_attach\n"));
1439     bus_generic_attach(bus);
1440 
1441     /*
1442      * Some of these children may have attached others as part of their attach
1443      * process (eg. the root PCI bus driver), so rescan.
1444      */
1445     ACPI_DEBUG_PRINT((ACPI_DB_OBJECTS, "second bus_generic_attach\n"));
1446     bus_generic_attach(bus);
1447 
1448     /* Attach wake sysctls. */
1449     acpi_wake_sysctl_walk(bus);
1450 
1451     ACPI_DEBUG_PRINT((ACPI_DB_OBJECTS, "done attaching children\n"));
1452     return_VOID;
1453 }
1454 
1455 /*
1456  * Determine the probe order for a given device and return non-zero if it
1457  * should be attached immediately.
1458  */
1459 static int
1460 acpi_probe_order(ACPI_HANDLE handle, int *order)
1461 {
1462     int ret;
1463 
1464     /*
1465      * 1. I/O port and memory system resource holders
1466      * 2. Embedded controllers (to handle early accesses)
1467      */
1468     ret = 0;
1469     if (acpi_MatchHid(handle, "PNP0C01") || acpi_MatchHid(handle, "PNP0C02")) {
1470 	*order = 1;
1471 	ret = 1;
1472     } else if (acpi_MatchHid(handle, "PNP0C09")) {
1473 	*order = 2;
1474 	ret = 1;
1475     }
1476 
1477     return (ret);
1478 }
1479 
1480 /*
1481  * Evaluate a child device and determine whether we might attach a device to
1482  * it.
1483  */
1484 static ACPI_STATUS
1485 acpi_probe_child(ACPI_HANDLE handle, UINT32 level, void *context, void **status)
1486 {
1487     ACPI_OBJECT_TYPE type;
1488     device_t bus, child;
1489     int order, probe_now;
1490     char *handle_str, **search;
1491     static char *scopes[] = {"\\_PR_", "\\_TZ_", "\\_SI_", "\\_SB_", NULL};
1492 
1493     ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__);
1494 
1495     /* Skip this device if we think we'll have trouble with it. */
1496     if (acpi_avoid(handle))
1497 	return_ACPI_STATUS (AE_OK);
1498 
1499     bus = (device_t)context;
1500     if (ACPI_SUCCESS(AcpiGetType(handle, &type))) {
1501 	switch (type) {
1502 	case ACPI_TYPE_DEVICE:
1503 	case ACPI_TYPE_PROCESSOR:
1504 	case ACPI_TYPE_THERMAL:
1505 	case ACPI_TYPE_POWER:
1506 	    if (acpi_disabled("children"))
1507 		break;
1508 
1509 	    /*
1510 	     * Since we scan from \, be sure to skip system scope objects.
1511 	     * At least \_SB and \_TZ are detected as devices (ACPI-CA bug?)
1512 	     */
1513 	    handle_str = acpi_name(handle);
1514 	    for (search = scopes; *search != NULL; search++) {
1515 		if (strcmp(handle_str, *search) == 0)
1516 		    break;
1517 	    }
1518 	    if (*search != NULL)
1519 		break;
1520 
1521 	    /*
1522 	     * Create a placeholder device for this node.  Sort the placeholder
1523 	     * so that the probe/attach passes will run breadth-first.  Orders
1524 	     * less than 10 are reserved for special objects (i.e., system
1525 	     * resources).  Larger values are used for all other devices.
1526 	     */
1527 	    ACPI_DEBUG_PRINT((ACPI_DB_OBJECTS, "scanning '%s'\n", handle_str));
1528 	    order = (level + 1) * 10;
1529 	    probe_now = acpi_probe_order(handle, &order);
1530 	    child = BUS_ADD_CHILD(bus, order, NULL, -1);
1531 	    if (child == NULL)
1532 		break;
1533 
1534 	    /* Associate the handle with the device_t and vice versa. */
1535 	    acpi_set_handle(child, handle);
1536 	    AcpiAttachData(handle, acpi_fake_objhandler, child);
1537 
1538 	    /*
1539 	     * Check that the device is present.  If it's not present,
1540 	     * leave it disabled (so that we have a device_t attached to
1541 	     * the handle, but we don't probe it).
1542 	     */
1543 	    if (type == ACPI_TYPE_DEVICE && !acpi_DeviceIsPresent(child)) {
1544 		device_disable(child);
1545 		break;
1546 	    }
1547 
1548 	    /*
1549 	     * Get the device's resource settings and attach them.
1550 	     * Note that if the device has _PRS but no _CRS, we need
1551 	     * to decide when it's appropriate to try to configure the
1552 	     * device.  Ignore the return value here; it's OK for the
1553 	     * device not to have any resources.
1554 	     */
1555 	    acpi_parse_resources(child, handle, &acpi_res_parse_set, NULL);
1556 
1557 	    /* If order was overridden, probe/attach now rather than later. */
1558 	    if (probe_now)
1559 		device_probe_and_attach(child);
1560 	    break;
1561 	}
1562     }
1563 
1564     return_ACPI_STATUS (AE_OK);
1565 }
1566 
1567 /*
1568  * AcpiAttachData() requires an object handler but never uses it.  This is a
1569  * placeholder object handler so we can store a device_t in an ACPI_HANDLE.
1570  */
1571 void
1572 acpi_fake_objhandler(ACPI_HANDLE h, UINT32 fn, void *data)
1573 {
1574 }
1575 
1576 static void
1577 acpi_shutdown_final(void *arg, int howto)
1578 {
1579     ACPI_STATUS	status;
1580 
1581     /*
1582      * XXX Shutdown code should only run on the BSP (cpuid 0).
1583      * Some chipsets do not power off the system correctly if called from
1584      * an AP.
1585      */
1586     if ((howto & RB_POWEROFF) != 0) {
1587 	status = AcpiEnterSleepStatePrep(ACPI_STATE_S5);
1588 	if (ACPI_FAILURE(status)) {
1589 	    printf("AcpiEnterSleepStatePrep failed - %s\n",
1590 		   AcpiFormatException(status));
1591 	    return;
1592 	}
1593 	printf("Powering system off using ACPI\n");
1594 	ACPI_DISABLE_IRQS();
1595 	status = AcpiEnterSleepState(ACPI_STATE_S5);
1596 	if (ACPI_FAILURE(status)) {
1597 	    printf("ACPI power-off failed - %s\n", AcpiFormatException(status));
1598 	} else {
1599 	    DELAY(1000000);
1600 	    printf("ACPI power-off failed - timeout\n");
1601 	}
1602     } else if (panicstr == NULL) {
1603 	printf("Shutting down ACPI\n");
1604 	AcpiTerminate();
1605     }
1606 }
1607 
1608 static void
1609 acpi_enable_fixed_events(struct acpi_softc *sc)
1610 {
1611     static int	first_time = 1;
1612 
1613     /* Enable and clear fixed events and install handlers. */
1614     if (AcpiGbl_FADT != NULL && AcpiGbl_FADT->PwrButton == 0) {
1615 	AcpiClearEvent(ACPI_EVENT_POWER_BUTTON);
1616 	AcpiInstallFixedEventHandler(ACPI_EVENT_POWER_BUTTON,
1617 				     acpi_event_power_button_sleep, sc);
1618 	if (first_time)
1619 	    device_printf(sc->acpi_dev, "Power Button (fixed)\n");
1620     }
1621     if (AcpiGbl_FADT != NULL && AcpiGbl_FADT->SleepButton == 0) {
1622 	AcpiClearEvent(ACPI_EVENT_SLEEP_BUTTON);
1623 	AcpiInstallFixedEventHandler(ACPI_EVENT_SLEEP_BUTTON,
1624 				     acpi_event_sleep_button_sleep, sc);
1625 	if (first_time)
1626 	    device_printf(sc->acpi_dev, "Sleep Button (fixed)\n");
1627     }
1628 
1629     first_time = 0;
1630 }
1631 
1632 /*
1633  * Returns true if the device is actually present and should
1634  * be attached to.  This requires the present, enabled, UI-visible
1635  * and diagnostics-passed bits to be set.
1636  */
1637 BOOLEAN
1638 acpi_DeviceIsPresent(device_t dev)
1639 {
1640     ACPI_DEVICE_INFO	*devinfo;
1641     ACPI_HANDLE		h;
1642     ACPI_BUFFER		buf;
1643     ACPI_STATUS		error;
1644     int			ret;
1645 
1646     ret = FALSE;
1647     if ((h = acpi_get_handle(dev)) == NULL)
1648 	return (FALSE);
1649     buf.Pointer = NULL;
1650     buf.Length = ACPI_ALLOCATE_BUFFER;
1651     error = AcpiGetObjectInfo(h, &buf);
1652     if (ACPI_FAILURE(error))
1653 	return (FALSE);
1654     devinfo = (ACPI_DEVICE_INFO *)buf.Pointer;
1655 
1656     /* If no _STA method, must be present */
1657     if ((devinfo->Valid & ACPI_VALID_STA) == 0)
1658 	ret = TRUE;
1659 
1660     /* Return true for 'present' and 'functioning' */
1661     if (ACPI_DEVICE_PRESENT(devinfo->CurrentStatus))
1662 	ret = TRUE;
1663 
1664     AcpiOsFree(buf.Pointer);
1665     return (ret);
1666 }
1667 
1668 /*
1669  * Returns true if the battery is actually present and inserted.
1670  */
1671 BOOLEAN
1672 acpi_BatteryIsPresent(device_t dev)
1673 {
1674     ACPI_DEVICE_INFO	*devinfo;
1675     ACPI_HANDLE		h;
1676     ACPI_BUFFER		buf;
1677     ACPI_STATUS		error;
1678     int			ret;
1679 
1680     ret = FALSE;
1681     if ((h = acpi_get_handle(dev)) == NULL)
1682 	return (FALSE);
1683     buf.Pointer = NULL;
1684     buf.Length = ACPI_ALLOCATE_BUFFER;
1685     error = AcpiGetObjectInfo(h, &buf);
1686     if (ACPI_FAILURE(error))
1687 	return (FALSE);
1688     devinfo = (ACPI_DEVICE_INFO *)buf.Pointer;
1689 
1690     /* If no _STA method, must be present */
1691     if ((devinfo->Valid & ACPI_VALID_STA) == 0)
1692 	ret = TRUE;
1693 
1694     /* Return true for 'present', 'battery present', and 'functioning' */
1695     if (ACPI_BATTERY_PRESENT(devinfo->CurrentStatus))
1696 	ret = TRUE;
1697 
1698     AcpiOsFree(buf.Pointer);
1699     return (ret);
1700 }
1701 
1702 /*
1703  * Match a HID string against a handle
1704  */
1705 static BOOLEAN
1706 acpi_MatchHid(ACPI_HANDLE h, const char *hid)
1707 {
1708     ACPI_DEVICE_INFO	*devinfo;
1709     ACPI_BUFFER		buf;
1710     ACPI_STATUS		error;
1711     int			ret, i;
1712 
1713     ret = FALSE;
1714     if (hid == NULL || h == NULL)
1715 	return (ret);
1716     buf.Pointer = NULL;
1717     buf.Length = ACPI_ALLOCATE_BUFFER;
1718     error = AcpiGetObjectInfo(h, &buf);
1719     if (ACPI_FAILURE(error))
1720 	return (ret);
1721     devinfo = (ACPI_DEVICE_INFO *)buf.Pointer;
1722 
1723     if ((devinfo->Valid & ACPI_VALID_HID) != 0 &&
1724 	strcmp(hid, devinfo->HardwareId.Value) == 0)
1725 	    ret = TRUE;
1726     else if ((devinfo->Valid & ACPI_VALID_CID) != 0) {
1727 	for (i = 0; i < devinfo->CompatibilityId.Count; i++) {
1728 	    if (strcmp(hid, devinfo->CompatibilityId.Id[i].Value) == 0) {
1729 		ret = TRUE;
1730 		break;
1731 	    }
1732 	}
1733     }
1734 
1735     AcpiOsFree(buf.Pointer);
1736     return (ret);
1737 }
1738 
1739 /*
1740  * Return the handle of a named object within our scope, ie. that of (parent)
1741  * or one if its parents.
1742  */
1743 ACPI_STATUS
1744 acpi_GetHandleInScope(ACPI_HANDLE parent, char *path, ACPI_HANDLE *result)
1745 {
1746     ACPI_HANDLE		r;
1747     ACPI_STATUS		status;
1748 
1749     /* Walk back up the tree to the root */
1750     for (;;) {
1751 	status = AcpiGetHandle(parent, path, &r);
1752 	if (ACPI_SUCCESS(status)) {
1753 	    *result = r;
1754 	    return (AE_OK);
1755 	}
1756 	/* XXX Return error here? */
1757 	if (status != AE_NOT_FOUND)
1758 	    return (AE_OK);
1759 	if (ACPI_FAILURE(AcpiGetParent(parent, &r)))
1760 	    return (AE_NOT_FOUND);
1761 	parent = r;
1762     }
1763 }
1764 
1765 /* Find the difference between two PM tick counts. */
1766 uint32_t
1767 acpi_TimerDelta(uint32_t end, uint32_t start)
1768 {
1769     uint32_t delta;
1770 
1771     if (end >= start)
1772 	delta = end - start;
1773     else if (AcpiGbl_FADT->TmrValExt == 0)
1774 	delta = ((0x00FFFFFF - start) + end + 1) & 0x00FFFFFF;
1775     else
1776 	delta = ((0xFFFFFFFF - start) + end + 1);
1777     return (delta);
1778 }
1779 
1780 /*
1781  * Allocate a buffer with a preset data size.
1782  */
1783 ACPI_BUFFER *
1784 acpi_AllocBuffer(int size)
1785 {
1786     ACPI_BUFFER	*buf;
1787 
1788     if ((buf = malloc(size + sizeof(*buf), M_ACPIDEV, M_NOWAIT)) == NULL)
1789 	return (NULL);
1790     buf->Length = size;
1791     buf->Pointer = (void *)(buf + 1);
1792     return (buf);
1793 }
1794 
1795 ACPI_STATUS
1796 acpi_SetInteger(ACPI_HANDLE handle, char *path, UINT32 number)
1797 {
1798     ACPI_OBJECT arg1;
1799     ACPI_OBJECT_LIST args;
1800 
1801     arg1.Type = ACPI_TYPE_INTEGER;
1802     arg1.Integer.Value = number;
1803     args.Count = 1;
1804     args.Pointer = &arg1;
1805 
1806     return (AcpiEvaluateObject(handle, path, &args, NULL));
1807 }
1808 
1809 /*
1810  * Evaluate a path that should return an integer.
1811  */
1812 ACPI_STATUS
1813 acpi_GetInteger(ACPI_HANDLE handle, char *path, UINT32 *number)
1814 {
1815     ACPI_STATUS	status;
1816     ACPI_BUFFER	buf;
1817     ACPI_OBJECT	param;
1818 
1819     if (handle == NULL)
1820 	handle = ACPI_ROOT_OBJECT;
1821 
1822     /*
1823      * Assume that what we've been pointed at is an Integer object, or
1824      * a method that will return an Integer.
1825      */
1826     buf.Pointer = &param;
1827     buf.Length = sizeof(param);
1828     status = AcpiEvaluateObject(handle, path, NULL, &buf);
1829     if (ACPI_SUCCESS(status)) {
1830 	if (param.Type == ACPI_TYPE_INTEGER)
1831 	    *number = param.Integer.Value;
1832 	else
1833 	    status = AE_TYPE;
1834     }
1835 
1836     /*
1837      * In some applications, a method that's expected to return an Integer
1838      * may instead return a Buffer (probably to simplify some internal
1839      * arithmetic).  We'll try to fetch whatever it is, and if it's a Buffer,
1840      * convert it into an Integer as best we can.
1841      *
1842      * This is a hack.
1843      */
1844     if (status == AE_BUFFER_OVERFLOW) {
1845 	if ((buf.Pointer = AcpiOsAllocate(buf.Length)) == NULL) {
1846 	    status = AE_NO_MEMORY;
1847 	} else {
1848 	    status = AcpiEvaluateObject(handle, path, NULL, &buf);
1849 	    if (ACPI_SUCCESS(status))
1850 		status = acpi_ConvertBufferToInteger(&buf, number);
1851 	    AcpiOsFree(buf.Pointer);
1852 	}
1853     }
1854     return (status);
1855 }
1856 
1857 ACPI_STATUS
1858 acpi_ConvertBufferToInteger(ACPI_BUFFER *bufp, UINT32 *number)
1859 {
1860     ACPI_OBJECT	*p;
1861     UINT8	*val;
1862     int		i;
1863 
1864     p = (ACPI_OBJECT *)bufp->Pointer;
1865     if (p->Type == ACPI_TYPE_INTEGER) {
1866 	*number = p->Integer.Value;
1867 	return (AE_OK);
1868     }
1869     if (p->Type != ACPI_TYPE_BUFFER)
1870 	return (AE_TYPE);
1871     if (p->Buffer.Length > sizeof(int))
1872 	return (AE_BAD_DATA);
1873 
1874     *number = 0;
1875     val = p->Buffer.Pointer;
1876     for (i = 0; i < p->Buffer.Length; i++)
1877 	*number += val[i] << (i * 8);
1878     return (AE_OK);
1879 }
1880 
1881 /*
1882  * Iterate over the elements of an a package object, calling the supplied
1883  * function for each element.
1884  *
1885  * XXX possible enhancement might be to abort traversal on error.
1886  */
1887 ACPI_STATUS
1888 acpi_ForeachPackageObject(ACPI_OBJECT *pkg,
1889 	void (*func)(ACPI_OBJECT *comp, void *arg), void *arg)
1890 {
1891     ACPI_OBJECT	*comp;
1892     int		i;
1893 
1894     if (pkg == NULL || pkg->Type != ACPI_TYPE_PACKAGE)
1895 	return (AE_BAD_PARAMETER);
1896 
1897     /* Iterate over components */
1898     i = 0;
1899     comp = pkg->Package.Elements;
1900     for (; i < pkg->Package.Count; i++, comp++)
1901 	func(comp, arg);
1902 
1903     return (AE_OK);
1904 }
1905 
1906 /*
1907  * Find the (index)th resource object in a set.
1908  */
1909 ACPI_STATUS
1910 acpi_FindIndexedResource(ACPI_BUFFER *buf, int index, ACPI_RESOURCE **resp)
1911 {
1912     ACPI_RESOURCE	*rp;
1913     int			i;
1914 
1915     rp = (ACPI_RESOURCE *)buf->Pointer;
1916     i = index;
1917     while (i-- > 0) {
1918 	/* Range check */
1919 	if (rp > (ACPI_RESOURCE *)((u_int8_t *)buf->Pointer + buf->Length))
1920 	    return (AE_BAD_PARAMETER);
1921 
1922 	/* Check for terminator */
1923 	if (rp->Id == ACPI_RSTYPE_END_TAG || rp->Length == 0)
1924 	    return (AE_NOT_FOUND);
1925 	rp = ACPI_NEXT_RESOURCE(rp);
1926     }
1927     if (resp != NULL)
1928 	*resp = rp;
1929 
1930     return (AE_OK);
1931 }
1932 
1933 /*
1934  * Append an ACPI_RESOURCE to an ACPI_BUFFER.
1935  *
1936  * Given a pointer to an ACPI_RESOURCE structure, expand the ACPI_BUFFER
1937  * provided to contain it.  If the ACPI_BUFFER is empty, allocate a sensible
1938  * backing block.  If the ACPI_RESOURCE is NULL, return an empty set of
1939  * resources.
1940  */
1941 #define ACPI_INITIAL_RESOURCE_BUFFER_SIZE	512
1942 
1943 ACPI_STATUS
1944 acpi_AppendBufferResource(ACPI_BUFFER *buf, ACPI_RESOURCE *res)
1945 {
1946     ACPI_RESOURCE	*rp;
1947     void		*newp;
1948 
1949     /* Initialise the buffer if necessary. */
1950     if (buf->Pointer == NULL) {
1951 	buf->Length = ACPI_INITIAL_RESOURCE_BUFFER_SIZE;
1952 	if ((buf->Pointer = AcpiOsAllocate(buf->Length)) == NULL)
1953 	    return (AE_NO_MEMORY);
1954 	rp = (ACPI_RESOURCE *)buf->Pointer;
1955 	rp->Id = ACPI_RSTYPE_END_TAG;
1956 	rp->Length = 0;
1957     }
1958     if (res == NULL)
1959 	return (AE_OK);
1960 
1961     /*
1962      * Scan the current buffer looking for the terminator.
1963      * This will either find the terminator or hit the end
1964      * of the buffer and return an error.
1965      */
1966     rp = (ACPI_RESOURCE *)buf->Pointer;
1967     for (;;) {
1968 	/* Range check, don't go outside the buffer */
1969 	if (rp >= (ACPI_RESOURCE *)((u_int8_t *)buf->Pointer + buf->Length))
1970 	    return (AE_BAD_PARAMETER);
1971 	if (rp->Id == ACPI_RSTYPE_END_TAG || rp->Length == 0)
1972 	    break;
1973 	rp = ACPI_NEXT_RESOURCE(rp);
1974     }
1975 
1976     /*
1977      * Check the size of the buffer and expand if required.
1978      *
1979      * Required size is:
1980      *	size of existing resources before terminator +
1981      *	size of new resource and header +
1982      * 	size of terminator.
1983      *
1984      * Note that this loop should really only run once, unless
1985      * for some reason we are stuffing a *really* huge resource.
1986      */
1987     while ((((u_int8_t *)rp - (u_int8_t *)buf->Pointer) +
1988 	    res->Length + ACPI_RESOURCE_LENGTH_NO_DATA +
1989 	    ACPI_RESOURCE_LENGTH) >= buf->Length) {
1990 	if ((newp = AcpiOsAllocate(buf->Length * 2)) == NULL)
1991 	    return (AE_NO_MEMORY);
1992 	bcopy(buf->Pointer, newp, buf->Length);
1993 	rp = (ACPI_RESOURCE *)((u_int8_t *)newp +
1994 			       ((u_int8_t *)rp - (u_int8_t *)buf->Pointer));
1995 	AcpiOsFree(buf->Pointer);
1996 	buf->Pointer = newp;
1997 	buf->Length += buf->Length;
1998     }
1999 
2000     /* Insert the new resource. */
2001     bcopy(res, rp, res->Length + ACPI_RESOURCE_LENGTH_NO_DATA);
2002 
2003     /* And add the terminator. */
2004     rp = ACPI_NEXT_RESOURCE(rp);
2005     rp->Id = ACPI_RSTYPE_END_TAG;
2006     rp->Length = 0;
2007 
2008     return (AE_OK);
2009 }
2010 
2011 /*
2012  * Set interrupt model.
2013  */
2014 ACPI_STATUS
2015 acpi_SetIntrModel(int model)
2016 {
2017 
2018     return (acpi_SetInteger(ACPI_ROOT_OBJECT, "_PIC", model));
2019 }
2020 
2021 static void
2022 acpi_sleep_enable(void *arg)
2023 {
2024 
2025     ((struct acpi_softc *)arg)->acpi_sleep_disabled = 0;
2026 }
2027 
2028 enum acpi_sleep_state {
2029     ACPI_SS_NONE,
2030     ACPI_SS_GPE_SET,
2031     ACPI_SS_DEV_SUSPEND,
2032     ACPI_SS_SLP_PREP,
2033     ACPI_SS_SLEPT,
2034 };
2035 
2036 /*
2037  * Set the system sleep state
2038  *
2039  * Currently we support S1-S5 but S4 is only S4BIOS
2040  */
2041 ACPI_STATUS
2042 acpi_SetSleepState(struct acpi_softc *sc, int state)
2043 {
2044     ACPI_STATUS	status;
2045     UINT8	TypeA;
2046     UINT8	TypeB;
2047     enum acpi_sleep_state slp_state;
2048 
2049     ACPI_FUNCTION_TRACE_U32((char *)(uintptr_t)__func__, state);
2050 
2051     status = AE_OK;
2052     ACPI_LOCK(acpi);
2053     if (sc->acpi_sleep_disabled) {
2054 	if (sc->acpi_sstate != ACPI_STATE_S0)
2055 	    status = AE_ERROR;
2056 	ACPI_UNLOCK(acpi);
2057 	printf("acpi: suspend request ignored (not ready yet)\n");
2058 	return (status);
2059     }
2060     sc->acpi_sleep_disabled = 1;
2061     ACPI_UNLOCK(acpi);
2062 
2063     /*
2064      * Be sure to hold Giant across DEVICE_SUSPEND/RESUME since non-MPSAFE
2065      * drivers need this.
2066      */
2067     mtx_lock(&Giant);
2068     slp_state = ACPI_SS_NONE;
2069     switch (state) {
2070     case ACPI_STATE_S1:
2071     case ACPI_STATE_S2:
2072     case ACPI_STATE_S3:
2073     case ACPI_STATE_S4:
2074 	status = AcpiGetSleepTypeData(state, &TypeA, &TypeB);
2075 	if (status == AE_NOT_FOUND) {
2076 	    device_printf(sc->acpi_dev,
2077 			  "Sleep state S%d not supported by BIOS\n", state);
2078 	    break;
2079 	} else if (ACPI_FAILURE(status)) {
2080 	    device_printf(sc->acpi_dev, "AcpiGetSleepTypeData failed - %s\n",
2081 			  AcpiFormatException(status));
2082 	    break;
2083 	}
2084 
2085 	sc->acpi_sstate = state;
2086 
2087 	/* Enable any GPEs as appropriate and requested by the user. */
2088 	acpi_wake_prep_walk(state);
2089 	slp_state = ACPI_SS_GPE_SET;
2090 
2091 	/*
2092 	 * Inform all devices that we are going to sleep.  If at least one
2093 	 * device fails, DEVICE_SUSPEND() automatically resumes the tree.
2094 	 *
2095 	 * XXX Note that a better two-pass approach with a 'veto' pass
2096 	 * followed by a "real thing" pass would be better, but the current
2097 	 * bus interface does not provide for this.
2098 	 */
2099 	if (DEVICE_SUSPEND(root_bus) != 0) {
2100 	    device_printf(sc->acpi_dev, "device_suspend failed\n");
2101 	    break;
2102 	}
2103 	slp_state = ACPI_SS_DEV_SUSPEND;
2104 
2105 	status = AcpiEnterSleepStatePrep(state);
2106 	if (ACPI_FAILURE(status)) {
2107 	    device_printf(sc->acpi_dev, "AcpiEnterSleepStatePrep failed - %s\n",
2108 			  AcpiFormatException(status));
2109 	    break;
2110 	}
2111 	slp_state = ACPI_SS_SLP_PREP;
2112 
2113 	if (sc->acpi_sleep_delay > 0)
2114 	    DELAY(sc->acpi_sleep_delay * 1000000);
2115 
2116 	if (state != ACPI_STATE_S1) {
2117 	    acpi_sleep_machdep(sc, state);
2118 
2119 	    /* Re-enable ACPI hardware on wakeup from sleep state 4. */
2120 	    if (state == ACPI_STATE_S4)
2121 		AcpiEnable();
2122 	} else {
2123 	    ACPI_DISABLE_IRQS();
2124 	    status = AcpiEnterSleepState(state);
2125 	    if (ACPI_FAILURE(status)) {
2126 		device_printf(sc->acpi_dev, "AcpiEnterSleepState failed - %s\n",
2127 			      AcpiFormatException(status));
2128 		break;
2129 	    }
2130 	}
2131 	slp_state = ACPI_SS_SLEPT;
2132 	break;
2133     case ACPI_STATE_S5:
2134 	/*
2135 	 * Shut down cleanly and power off.  This will call us back through the
2136 	 * shutdown handlers.
2137 	 */
2138 	shutdown_nice(RB_POWEROFF);
2139 	break;
2140     case ACPI_STATE_S0:
2141     default:
2142 	status = AE_BAD_PARAMETER;
2143 	break;
2144     }
2145 
2146     /*
2147      * Back out state according to how far along we got in the suspend
2148      * process.  This handles both the error and success cases.
2149      */
2150     if (slp_state >= ACPI_SS_GPE_SET) {
2151 	acpi_wake_prep_walk(state);
2152 	sc->acpi_sstate = ACPI_STATE_S0;
2153     }
2154     if (slp_state >= ACPI_SS_SLP_PREP)
2155 	AcpiLeaveSleepState(state);
2156     if (slp_state >= ACPI_SS_DEV_SUSPEND)
2157 	DEVICE_RESUME(root_bus);
2158     if (slp_state >= ACPI_SS_SLEPT)
2159 	acpi_enable_fixed_events(sc);
2160 
2161     /* Allow another sleep request after a while. */
2162     if (state != ACPI_STATE_S5)
2163 	timeout(acpi_sleep_enable, (caddr_t)sc, hz * ACPI_MINIMUM_AWAKETIME);
2164 
2165     mtx_unlock(&Giant);
2166     return_ACPI_STATUS (status);
2167 }
2168 
2169 /* Initialize a device's wake GPE. */
2170 int
2171 acpi_wake_init(device_t dev, int type)
2172 {
2173     struct acpi_prw_data prw;
2174 
2175     /* Evaluate _PRW to find the GPE. */
2176     if (acpi_parse_prw(acpi_get_handle(dev), &prw) != 0)
2177 	return (ENXIO);
2178 
2179     /* Set the requested type for the GPE (runtime, wake, or both). */
2180     if (ACPI_FAILURE(AcpiSetGpeType(prw.gpe_handle, prw.gpe_bit, type))) {
2181 	device_printf(dev, "set GPE type failed\n");
2182 	return (ENXIO);
2183     }
2184 
2185     return (0);
2186 }
2187 
2188 /* Enable or disable the device's wake GPE. */
2189 int
2190 acpi_wake_set_enable(device_t dev, int enable)
2191 {
2192     struct acpi_prw_data prw;
2193     ACPI_HANDLE handle;
2194     ACPI_STATUS status;
2195     int flags;
2196 
2197     /* Make sure the device supports waking the system and get the GPE. */
2198     handle = acpi_get_handle(dev);
2199     if (acpi_parse_prw(handle, &prw) != 0)
2200 	return (ENXIO);
2201 
2202     flags = acpi_get_flags(dev);
2203     if (enable) {
2204 	status = AcpiEnableGpe(prw.gpe_handle, prw.gpe_bit, ACPI_NOT_ISR);
2205 	if (ACPI_FAILURE(status)) {
2206 	    device_printf(dev, "enable wake failed\n");
2207 	    return (ENXIO);
2208 	}
2209 	acpi_set_flags(dev, flags | ACPI_FLAG_WAKE_ENABLED);
2210     } else {
2211 	status = AcpiDisableGpe(prw.gpe_handle, prw.gpe_bit, ACPI_NOT_ISR);
2212 	if (ACPI_FAILURE(status)) {
2213 	    device_printf(dev, "disable wake failed\n");
2214 	    return (ENXIO);
2215 	}
2216 	acpi_set_flags(dev, flags & ~ACPI_FLAG_WAKE_ENABLED);
2217     }
2218 
2219     return (0);
2220 }
2221 
2222 static int
2223 acpi_wake_sleep_prep(ACPI_HANDLE handle, int sstate)
2224 {
2225     struct acpi_prw_data prw;
2226     device_t dev;
2227 
2228     /* Check that this is a wake-capable device and get its GPE. */
2229     if (acpi_parse_prw(handle, &prw) != 0)
2230 	return (ENXIO);
2231     dev = acpi_get_device(handle);
2232 
2233     /*
2234      * The destination sleep state must be less than (i.e., higher power)
2235      * or equal to the value specified by _PRW.  If this GPE cannot be
2236      * enabled for the next sleep state, then disable it.  If it can and
2237      * the user requested it be enabled, turn on any required power resources
2238      * and set _PSW.
2239      */
2240     if (sstate > prw.lowest_wake) {
2241 	AcpiDisableGpe(prw.gpe_handle, prw.gpe_bit, ACPI_NOT_ISR);
2242 	if (bootverbose)
2243 	    device_printf(dev, "wake_prep disabled wake for %s (S%d)\n",
2244 		acpi_name(handle), sstate);
2245     } else if (dev && (acpi_get_flags(dev) & ACPI_FLAG_WAKE_ENABLED) != 0) {
2246 	acpi_pwr_wake_enable(handle, 1);
2247 	acpi_SetInteger(handle, "_PSW", 1);
2248 	if (bootverbose)
2249 	    device_printf(dev, "wake_prep enabled for %s (S%d)\n",
2250 		acpi_name(handle), sstate);
2251     }
2252 
2253     return (0);
2254 }
2255 
2256 static int
2257 acpi_wake_run_prep(ACPI_HANDLE handle, int sstate)
2258 {
2259     struct acpi_prw_data prw;
2260     device_t dev;
2261 
2262     /*
2263      * Check that this is a wake-capable device and get its GPE.  Return
2264      * now if the user didn't enable this device for wake.
2265      */
2266     if (acpi_parse_prw(handle, &prw) != 0)
2267 	return (ENXIO);
2268     dev = acpi_get_device(handle);
2269     if (dev == NULL || (acpi_get_flags(dev) & ACPI_FLAG_WAKE_ENABLED) == 0)
2270 	return (0);
2271 
2272     /*
2273      * If this GPE couldn't be enabled for the previous sleep state, it was
2274      * disabled before going to sleep so re-enable it.  If it was enabled,
2275      * clear _PSW and turn off any power resources it used.
2276      */
2277     if (sstate > prw.lowest_wake) {
2278 	AcpiEnableGpe(prw.gpe_handle, prw.gpe_bit, ACPI_NOT_ISR);
2279 	if (bootverbose)
2280 	    device_printf(dev, "run_prep re-enabled %s\n", acpi_name(handle));
2281     } else {
2282 	acpi_SetInteger(handle, "_PSW", 0);
2283 	acpi_pwr_wake_enable(handle, 0);
2284 	if (bootverbose)
2285 	    device_printf(dev, "run_prep cleaned up for %s\n",
2286 		acpi_name(handle));
2287     }
2288 
2289     return (0);
2290 }
2291 
2292 static ACPI_STATUS
2293 acpi_wake_prep(ACPI_HANDLE handle, UINT32 level, void *context, void **status)
2294 {
2295     int sstate;
2296 
2297     /* If suspending, run the sleep prep function, otherwise wake. */
2298     sstate = *(int *)context;
2299     if (AcpiGbl_SystemAwakeAndRunning)
2300 	acpi_wake_sleep_prep(handle, sstate);
2301     else
2302 	acpi_wake_run_prep(handle, sstate);
2303     return (AE_OK);
2304 }
2305 
2306 /* Walk the tree rooted at acpi0 to prep devices for suspend/resume. */
2307 static int
2308 acpi_wake_prep_walk(int sstate)
2309 {
2310     ACPI_HANDLE sb_handle;
2311 
2312     if (ACPI_SUCCESS(AcpiGetHandle(ACPI_ROOT_OBJECT, "\\_SB_", &sb_handle)))
2313 	AcpiWalkNamespace(ACPI_TYPE_DEVICE, sb_handle, 100,
2314 	    acpi_wake_prep, &sstate, NULL);
2315     return (0);
2316 }
2317 
2318 /* Walk the tree rooted at acpi0 to attach per-device wake sysctls. */
2319 static int
2320 acpi_wake_sysctl_walk(device_t dev)
2321 {
2322     int error, i, numdevs;
2323     device_t *devlist;
2324     device_t child;
2325     ACPI_STATUS status;
2326 
2327     error = device_get_children(dev, &devlist, &numdevs);
2328     if (error != 0 || numdevs == 0)
2329 	return (error);
2330     for (i = 0; i < numdevs; i++) {
2331 	child = devlist[i];
2332 	acpi_wake_sysctl_walk(child);
2333 	if (!device_is_attached(child))
2334 	    continue;
2335 	status = AcpiEvaluateObject(acpi_get_handle(child), "_PRW", NULL, NULL);
2336 	if (ACPI_SUCCESS(status)) {
2337 	    SYSCTL_ADD_PROC(device_get_sysctl_ctx(child),
2338 		SYSCTL_CHILDREN(device_get_sysctl_tree(child)), OID_AUTO,
2339 		"wake", CTLTYPE_INT | CTLFLAG_RW, child, 0,
2340 		acpi_wake_set_sysctl, "I", "Device set to wake the system");
2341 	}
2342     }
2343     free(devlist, M_TEMP);
2344 
2345     return (0);
2346 }
2347 
2348 /* Enable or disable wake from userland. */
2349 static int
2350 acpi_wake_set_sysctl(SYSCTL_HANDLER_ARGS)
2351 {
2352     int enable, error;
2353     device_t dev;
2354 
2355     dev = (device_t)arg1;
2356     enable = (acpi_get_flags(dev) & ACPI_FLAG_WAKE_ENABLED) ? 1 : 0;
2357 
2358     error = sysctl_handle_int(oidp, &enable, 0, req);
2359     if (error != 0 || req->newptr == NULL)
2360 	return (error);
2361     if (enable != 0 && enable != 1)
2362 	return (EINVAL);
2363 
2364     return (acpi_wake_set_enable(dev, enable));
2365 }
2366 
2367 /* Parse a device's _PRW into a structure. */
2368 int
2369 acpi_parse_prw(ACPI_HANDLE h, struct acpi_prw_data *prw)
2370 {
2371     ACPI_STATUS			status;
2372     ACPI_BUFFER			prw_buffer;
2373     ACPI_OBJECT			*res, *res2;
2374     int				error, i, power_count;
2375 
2376     if (h == NULL || prw == NULL)
2377 	return (EINVAL);
2378 
2379     /*
2380      * The _PRW object (7.2.9) is only required for devices that have the
2381      * ability to wake the system from a sleeping state.
2382      */
2383     error = EINVAL;
2384     prw_buffer.Pointer = NULL;
2385     prw_buffer.Length = ACPI_ALLOCATE_BUFFER;
2386     status = AcpiEvaluateObject(h, "_PRW", NULL, &prw_buffer);
2387     if (ACPI_FAILURE(status))
2388 	return (ENOENT);
2389     res = (ACPI_OBJECT *)prw_buffer.Pointer;
2390     if (res == NULL)
2391 	return (ENOENT);
2392     if (!ACPI_PKG_VALID(res, 2))
2393 	goto out;
2394 
2395     /*
2396      * Element 1 of the _PRW object:
2397      * The lowest power system sleeping state that can be entered while still
2398      * providing wake functionality.  The sleeping state being entered must
2399      * be less than (i.e., higher power) or equal to this value.
2400      */
2401     if (acpi_PkgInt32(res, 1, &prw->lowest_wake) != 0)
2402 	goto out;
2403 
2404     /*
2405      * Element 0 of the _PRW object:
2406      */
2407     switch (res->Package.Elements[0].Type) {
2408     case ACPI_TYPE_INTEGER:
2409 	/*
2410 	 * If the data type of this package element is numeric, then this
2411 	 * _PRW package element is the bit index in the GPEx_EN, in the
2412 	 * GPE blocks described in the FADT, of the enable bit that is
2413 	 * enabled for the wake event.
2414 	 */
2415 	prw->gpe_handle = NULL;
2416 	prw->gpe_bit = res->Package.Elements[0].Integer.Value;
2417 	error = 0;
2418 	break;
2419     case ACPI_TYPE_PACKAGE:
2420 	/*
2421 	 * If the data type of this package element is a package, then this
2422 	 * _PRW package element is itself a package containing two
2423 	 * elements.  The first is an object reference to the GPE Block
2424 	 * device that contains the GPE that will be triggered by the wake
2425 	 * event.  The second element is numeric and it contains the bit
2426 	 * index in the GPEx_EN, in the GPE Block referenced by the
2427 	 * first element in the package, of the enable bit that is enabled for
2428 	 * the wake event.
2429 	 *
2430 	 * For example, if this field is a package then it is of the form:
2431 	 * Package() {\_SB.PCI0.ISA.GPE, 2}
2432 	 */
2433 	res2 = &res->Package.Elements[0];
2434 	if (!ACPI_PKG_VALID(res2, 2))
2435 	    goto out;
2436 	prw->gpe_handle = acpi_GetReference(NULL, &res2->Package.Elements[0]);
2437 	if (prw->gpe_handle == NULL)
2438 	    goto out;
2439 	if (acpi_PkgInt32(res2, 1, &prw->gpe_bit) != 0)
2440 	    goto out;
2441 	error = 0;
2442 	break;
2443     default:
2444 	goto out;
2445     }
2446 
2447     /* Elements 2 to N of the _PRW object are power resources. */
2448     power_count = res->Package.Count - 2;
2449     if (power_count > ACPI_PRW_MAX_POWERRES) {
2450 	printf("ACPI device %s has too many power resources\n", acpi_name(h));
2451 	power_count = 0;
2452     }
2453     prw->power_res_count = power_count;
2454     for (i = 0; i < power_count; i++)
2455 	prw->power_res[i] = res->Package.Elements[i];
2456 
2457 out:
2458     if (prw_buffer.Pointer != NULL)
2459 	AcpiOsFree(prw_buffer.Pointer);
2460     return (error);
2461 }
2462 
2463 /*
2464  * ACPI Event Handlers
2465  */
2466 
2467 /* System Event Handlers (registered by EVENTHANDLER_REGISTER) */
2468 
2469 static void
2470 acpi_system_eventhandler_sleep(void *arg, int state)
2471 {
2472 
2473     ACPI_FUNCTION_TRACE_U32((char *)(uintptr_t)__func__, state);
2474 
2475     if (state >= ACPI_STATE_S0 && state <= ACPI_S_STATES_MAX)
2476 	acpi_SetSleepState((struct acpi_softc *)arg, state);
2477 
2478     return_VOID;
2479 }
2480 
2481 static void
2482 acpi_system_eventhandler_wakeup(void *arg, int state)
2483 {
2484 
2485     ACPI_FUNCTION_TRACE_U32((char *)(uintptr_t)__func__, state);
2486 
2487     /* Currently, nothing to do for wakeup. */
2488 
2489     return_VOID;
2490 }
2491 
2492 /*
2493  * ACPICA Event Handlers (FixedEvent, also called from button notify handler)
2494  */
2495 UINT32
2496 acpi_event_power_button_sleep(void *context)
2497 {
2498     struct acpi_softc	*sc = (struct acpi_softc *)context;
2499 
2500     ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__);
2501 
2502     EVENTHANDLER_INVOKE(acpi_sleep_event, sc->acpi_power_button_sx);
2503 
2504     return_VALUE (ACPI_INTERRUPT_HANDLED);
2505 }
2506 
2507 UINT32
2508 acpi_event_power_button_wake(void *context)
2509 {
2510     struct acpi_softc	*sc = (struct acpi_softc *)context;
2511 
2512     ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__);
2513 
2514     EVENTHANDLER_INVOKE(acpi_wakeup_event, sc->acpi_power_button_sx);
2515 
2516     return_VALUE (ACPI_INTERRUPT_HANDLED);
2517 }
2518 
2519 UINT32
2520 acpi_event_sleep_button_sleep(void *context)
2521 {
2522     struct acpi_softc	*sc = (struct acpi_softc *)context;
2523 
2524     ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__);
2525 
2526     EVENTHANDLER_INVOKE(acpi_sleep_event, sc->acpi_sleep_button_sx);
2527 
2528     return_VALUE (ACPI_INTERRUPT_HANDLED);
2529 }
2530 
2531 UINT32
2532 acpi_event_sleep_button_wake(void *context)
2533 {
2534     struct acpi_softc	*sc = (struct acpi_softc *)context;
2535 
2536     ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__);
2537 
2538     EVENTHANDLER_INVOKE(acpi_wakeup_event, sc->acpi_sleep_button_sx);
2539 
2540     return_VALUE (ACPI_INTERRUPT_HANDLED);
2541 }
2542 
2543 /*
2544  * XXX This static buffer is suboptimal.  There is no locking so only
2545  * use this for single-threaded callers.
2546  */
2547 char *
2548 acpi_name(ACPI_HANDLE handle)
2549 {
2550     ACPI_BUFFER buf;
2551     static char data[256];
2552 
2553     buf.Length = sizeof(data);
2554     buf.Pointer = data;
2555 
2556     if (handle && ACPI_SUCCESS(AcpiGetName(handle, ACPI_FULL_PATHNAME, &buf)))
2557 	return (data);
2558     return ("(unknown)");
2559 }
2560 
2561 /*
2562  * Debugging/bug-avoidance.  Avoid trying to fetch info on various
2563  * parts of the namespace.
2564  */
2565 int
2566 acpi_avoid(ACPI_HANDLE handle)
2567 {
2568     char	*cp, *env, *np;
2569     int		len;
2570 
2571     np = acpi_name(handle);
2572     if (*np == '\\')
2573 	np++;
2574     if ((env = getenv("debug.acpi.avoid")) == NULL)
2575 	return (0);
2576 
2577     /* Scan the avoid list checking for a match */
2578     cp = env;
2579     for (;;) {
2580 	while (*cp != 0 && isspace(*cp))
2581 	    cp++;
2582 	if (*cp == 0)
2583 	    break;
2584 	len = 0;
2585 	while (cp[len] != 0 && !isspace(cp[len]))
2586 	    len++;
2587 	if (!strncmp(cp, np, len)) {
2588 	    freeenv(env);
2589 	    return(1);
2590 	}
2591 	cp += len;
2592     }
2593     freeenv(env);
2594 
2595     return (0);
2596 }
2597 
2598 /*
2599  * Debugging/bug-avoidance.  Disable ACPI subsystem components.
2600  */
2601 int
2602 acpi_disabled(char *subsys)
2603 {
2604     char	*cp, *env;
2605     int		len;
2606 
2607     if ((env = getenv("debug.acpi.disabled")) == NULL)
2608 	return (0);
2609     if (strcmp(env, "all") == 0) {
2610 	freeenv(env);
2611 	return (1);
2612     }
2613 
2614     /* Scan the disable list, checking for a match. */
2615     cp = env;
2616     for (;;) {
2617 	while (*cp != '\0' && isspace(*cp))
2618 	    cp++;
2619 	if (*cp == '\0')
2620 	    break;
2621 	len = 0;
2622 	while (cp[len] != '\0' && !isspace(cp[len]))
2623 	    len++;
2624 	if (strncmp(cp, subsys, len) == 0) {
2625 	    freeenv(env);
2626 	    return (1);
2627 	}
2628 	cp += len;
2629     }
2630     freeenv(env);
2631 
2632     return (0);
2633 }
2634 
2635 /*
2636  * Control interface.
2637  *
2638  * We multiplex ioctls for all participating ACPI devices here.  Individual
2639  * drivers wanting to be accessible via /dev/acpi should use the
2640  * register/deregister interface to make their handlers visible.
2641  */
2642 struct acpi_ioctl_hook
2643 {
2644     TAILQ_ENTRY(acpi_ioctl_hook) link;
2645     u_long			 cmd;
2646     acpi_ioctl_fn		 fn;
2647     void			 *arg;
2648 };
2649 
2650 static TAILQ_HEAD(,acpi_ioctl_hook)	acpi_ioctl_hooks;
2651 static int				acpi_ioctl_hooks_initted;
2652 
2653 int
2654 acpi_register_ioctl(u_long cmd, acpi_ioctl_fn fn, void *arg)
2655 {
2656     struct acpi_ioctl_hook	*hp;
2657 
2658     if ((hp = malloc(sizeof(*hp), M_ACPIDEV, M_NOWAIT)) == NULL)
2659 	return (ENOMEM);
2660     hp->cmd = cmd;
2661     hp->fn = fn;
2662     hp->arg = arg;
2663 
2664     ACPI_LOCK(acpi);
2665     if (acpi_ioctl_hooks_initted == 0) {
2666 	TAILQ_INIT(&acpi_ioctl_hooks);
2667 	acpi_ioctl_hooks_initted = 1;
2668     }
2669     TAILQ_INSERT_TAIL(&acpi_ioctl_hooks, hp, link);
2670     ACPI_UNLOCK(acpi);
2671 
2672     return (0);
2673 }
2674 
2675 void
2676 acpi_deregister_ioctl(u_long cmd, acpi_ioctl_fn fn)
2677 {
2678     struct acpi_ioctl_hook	*hp;
2679 
2680     ACPI_LOCK(acpi);
2681     TAILQ_FOREACH(hp, &acpi_ioctl_hooks, link)
2682 	if (hp->cmd == cmd && hp->fn == fn)
2683 	    break;
2684 
2685     if (hp != NULL) {
2686 	TAILQ_REMOVE(&acpi_ioctl_hooks, hp, link);
2687 	free(hp, M_ACPIDEV);
2688     }
2689     ACPI_UNLOCK(acpi);
2690 }
2691 
2692 static int
2693 acpiopen(struct cdev *dev, int flag, int fmt, d_thread_t *td)
2694 {
2695     return (0);
2696 }
2697 
2698 static int
2699 acpiclose(struct cdev *dev, int flag, int fmt, d_thread_t *td)
2700 {
2701     return (0);
2702 }
2703 
2704 static int
2705 acpiioctl(struct cdev *dev, u_long cmd, caddr_t addr, int flag, d_thread_t *td)
2706 {
2707     struct acpi_softc		*sc;
2708     struct acpi_ioctl_hook	*hp;
2709     int				error, state;
2710 
2711     error = 0;
2712     hp = NULL;
2713     sc = dev->si_drv1;
2714 
2715     /*
2716      * Scan the list of registered ioctls, looking for handlers.
2717      */
2718     ACPI_LOCK(acpi);
2719     if (acpi_ioctl_hooks_initted)
2720 	TAILQ_FOREACH(hp, &acpi_ioctl_hooks, link) {
2721 	    if (hp->cmd == cmd)
2722 		break;
2723 	}
2724     ACPI_UNLOCK(acpi);
2725     if (hp)
2726 	return (hp->fn(cmd, addr, hp->arg));
2727 
2728     /*
2729      * Core ioctls are not permitted for non-writable user.
2730      * Currently, other ioctls just fetch information.
2731      * Not changing system behavior.
2732      */
2733     if ((flag & FWRITE) == 0)
2734 	return (EPERM);
2735 
2736     /* Core system ioctls. */
2737     switch (cmd) {
2738     case ACPIIO_SETSLPSTATE:
2739 	error = EINVAL;
2740 	state = *(int *)addr;
2741 	if (state >= ACPI_STATE_S0 && state <= ACPI_S_STATES_MAX)
2742 	    if (ACPI_SUCCESS(acpi_SetSleepState(sc, state)))
2743 		error = 0;
2744 	break;
2745     default:
2746 	error = ENXIO;
2747 	break;
2748     }
2749 
2750     return (error);
2751 }
2752 
2753 static int
2754 acpi_supported_sleep_state_sysctl(SYSCTL_HANDLER_ARGS)
2755 {
2756     int error;
2757     struct sbuf sb;
2758     UINT8 state, TypeA, TypeB;
2759 
2760     sbuf_new(&sb, NULL, 32, SBUF_AUTOEXTEND);
2761     for (state = ACPI_STATE_S1; state < ACPI_S_STATES_MAX + 1; state++)
2762 	if (ACPI_SUCCESS(AcpiGetSleepTypeData(state, &TypeA, &TypeB)))
2763 	    sbuf_printf(&sb, "S%d ", state);
2764     sbuf_trim(&sb);
2765     sbuf_finish(&sb);
2766     error = sysctl_handle_string(oidp, sbuf_data(&sb), sbuf_len(&sb), req);
2767     sbuf_delete(&sb);
2768     return (error);
2769 }
2770 
2771 static int
2772 acpi_sleep_state_sysctl(SYSCTL_HANDLER_ARGS)
2773 {
2774     char sleep_state[10];
2775     int error;
2776     u_int new_state, old_state;
2777 
2778     old_state = *(u_int *)oidp->oid_arg1;
2779     if (old_state > ACPI_S_STATES_MAX + 1)
2780 	strlcpy(sleep_state, "unknown", sizeof(sleep_state));
2781     else
2782 	strlcpy(sleep_state, sleep_state_names[old_state], sizeof(sleep_state));
2783     error = sysctl_handle_string(oidp, sleep_state, sizeof(sleep_state), req);
2784     if (error == 0 && req->newptr != NULL) {
2785 	new_state = ACPI_STATE_S0;
2786 	for (; new_state <= ACPI_S_STATES_MAX + 1; new_state++)
2787 	    if (strcmp(sleep_state, sleep_state_names[new_state]) == 0)
2788 		break;
2789 	if (new_state <= ACPI_S_STATES_MAX + 1) {
2790 	    if (new_state != old_state)
2791 		*(u_int *)oidp->oid_arg1 = new_state;
2792 	} else
2793 	    error = EINVAL;
2794     }
2795 
2796     return (error);
2797 }
2798 
2799 /* Inform devctl(4) when we receive a Notify. */
2800 void
2801 acpi_UserNotify(const char *subsystem, ACPI_HANDLE h, uint8_t notify)
2802 {
2803     char		notify_buf[16];
2804     ACPI_BUFFER		handle_buf;
2805     ACPI_STATUS		status;
2806 
2807     if (subsystem == NULL)
2808 	return;
2809 
2810     handle_buf.Pointer = NULL;
2811     handle_buf.Length = ACPI_ALLOCATE_BUFFER;
2812     status = AcpiNsHandleToPathname(h, &handle_buf);
2813     if (ACPI_FAILURE(status))
2814 	return;
2815     snprintf(notify_buf, sizeof(notify_buf), "notify=0x%02x", notify);
2816     devctl_notify("ACPI", subsystem, handle_buf.Pointer, notify_buf);
2817     AcpiOsFree(handle_buf.Pointer);
2818 }
2819 
2820 #ifdef ACPI_DEBUG
2821 /*
2822  * Support for parsing debug options from the kernel environment.
2823  *
2824  * Bits may be set in the AcpiDbgLayer and AcpiDbgLevel debug registers
2825  * by specifying the names of the bits in the debug.acpi.layer and
2826  * debug.acpi.level environment variables.  Bits may be unset by
2827  * prefixing the bit name with !.
2828  */
2829 struct debugtag
2830 {
2831     char	*name;
2832     UINT32	value;
2833 };
2834 
2835 static struct debugtag	dbg_layer[] = {
2836     {"ACPI_UTILITIES",		ACPI_UTILITIES},
2837     {"ACPI_HARDWARE",		ACPI_HARDWARE},
2838     {"ACPI_EVENTS",		ACPI_EVENTS},
2839     {"ACPI_TABLES",		ACPI_TABLES},
2840     {"ACPI_NAMESPACE",		ACPI_NAMESPACE},
2841     {"ACPI_PARSER",		ACPI_PARSER},
2842     {"ACPI_DISPATCHER",		ACPI_DISPATCHER},
2843     {"ACPI_EXECUTER",		ACPI_EXECUTER},
2844     {"ACPI_RESOURCES",		ACPI_RESOURCES},
2845     {"ACPI_CA_DEBUGGER",	ACPI_CA_DEBUGGER},
2846     {"ACPI_OS_SERVICES",	ACPI_OS_SERVICES},
2847     {"ACPI_CA_DISASSEMBLER",	ACPI_CA_DISASSEMBLER},
2848     {"ACPI_ALL_COMPONENTS",	ACPI_ALL_COMPONENTS},
2849 
2850     {"ACPI_AC_ADAPTER",		ACPI_AC_ADAPTER},
2851     {"ACPI_BATTERY",		ACPI_BATTERY},
2852     {"ACPI_BUS",		ACPI_BUS},
2853     {"ACPI_BUTTON",		ACPI_BUTTON},
2854     {"ACPI_EC", 		ACPI_EC},
2855     {"ACPI_FAN",		ACPI_FAN},
2856     {"ACPI_POWERRES",		ACPI_POWERRES},
2857     {"ACPI_PROCESSOR",		ACPI_PROCESSOR},
2858     {"ACPI_THERMAL",		ACPI_THERMAL},
2859     {"ACPI_TIMER",		ACPI_TIMER},
2860     {"ACPI_ALL_DRIVERS",	ACPI_ALL_DRIVERS},
2861     {NULL, 0}
2862 };
2863 
2864 static struct debugtag dbg_level[] = {
2865     {"ACPI_LV_ERROR",		ACPI_LV_ERROR},
2866     {"ACPI_LV_WARN",		ACPI_LV_WARN},
2867     {"ACPI_LV_INIT",		ACPI_LV_INIT},
2868     {"ACPI_LV_DEBUG_OBJECT",	ACPI_LV_DEBUG_OBJECT},
2869     {"ACPI_LV_INFO",		ACPI_LV_INFO},
2870     {"ACPI_LV_ALL_EXCEPTIONS",	ACPI_LV_ALL_EXCEPTIONS},
2871 
2872     /* Trace verbosity level 1 [Standard Trace Level] */
2873     {"ACPI_LV_INIT_NAMES",	ACPI_LV_INIT_NAMES},
2874     {"ACPI_LV_PARSE",		ACPI_LV_PARSE},
2875     {"ACPI_LV_LOAD",		ACPI_LV_LOAD},
2876     {"ACPI_LV_DISPATCH",	ACPI_LV_DISPATCH},
2877     {"ACPI_LV_EXEC",		ACPI_LV_EXEC},
2878     {"ACPI_LV_NAMES",		ACPI_LV_NAMES},
2879     {"ACPI_LV_OPREGION",	ACPI_LV_OPREGION},
2880     {"ACPI_LV_BFIELD",		ACPI_LV_BFIELD},
2881     {"ACPI_LV_TABLES",		ACPI_LV_TABLES},
2882     {"ACPI_LV_VALUES",		ACPI_LV_VALUES},
2883     {"ACPI_LV_OBJECTS",		ACPI_LV_OBJECTS},
2884     {"ACPI_LV_RESOURCES",	ACPI_LV_RESOURCES},
2885     {"ACPI_LV_USER_REQUESTS",	ACPI_LV_USER_REQUESTS},
2886     {"ACPI_LV_PACKAGE",		ACPI_LV_PACKAGE},
2887     {"ACPI_LV_VERBOSITY1",	ACPI_LV_VERBOSITY1},
2888 
2889     /* Trace verbosity level 2 [Function tracing and memory allocation] */
2890     {"ACPI_LV_ALLOCATIONS",	ACPI_LV_ALLOCATIONS},
2891     {"ACPI_LV_FUNCTIONS",	ACPI_LV_FUNCTIONS},
2892     {"ACPI_LV_OPTIMIZATIONS",	ACPI_LV_OPTIMIZATIONS},
2893     {"ACPI_LV_VERBOSITY2",	ACPI_LV_VERBOSITY2},
2894     {"ACPI_LV_ALL",		ACPI_LV_ALL},
2895 
2896     /* Trace verbosity level 3 [Threading, I/O, and Interrupts] */
2897     {"ACPI_LV_MUTEX",		ACPI_LV_MUTEX},
2898     {"ACPI_LV_THREADS",		ACPI_LV_THREADS},
2899     {"ACPI_LV_IO",		ACPI_LV_IO},
2900     {"ACPI_LV_INTERRUPTS",	ACPI_LV_INTERRUPTS},
2901     {"ACPI_LV_VERBOSITY3",	ACPI_LV_VERBOSITY3},
2902 
2903     /* Exceptionally verbose output -- also used in the global "DebugLevel"  */
2904     {"ACPI_LV_AML_DISASSEMBLE",	ACPI_LV_AML_DISASSEMBLE},
2905     {"ACPI_LV_VERBOSE_INFO",	ACPI_LV_VERBOSE_INFO},
2906     {"ACPI_LV_FULL_TABLES",	ACPI_LV_FULL_TABLES},
2907     {"ACPI_LV_EVENTS",		ACPI_LV_EVENTS},
2908     {"ACPI_LV_VERBOSE",		ACPI_LV_VERBOSE},
2909     {NULL, 0}
2910 };
2911 
2912 static void
2913 acpi_parse_debug(char *cp, struct debugtag *tag, UINT32 *flag)
2914 {
2915     char	*ep;
2916     int		i, l;
2917     int		set;
2918 
2919     while (*cp) {
2920 	if (isspace(*cp)) {
2921 	    cp++;
2922 	    continue;
2923 	}
2924 	ep = cp;
2925 	while (*ep && !isspace(*ep))
2926 	    ep++;
2927 	if (*cp == '!') {
2928 	    set = 0;
2929 	    cp++;
2930 	    if (cp == ep)
2931 		continue;
2932 	} else {
2933 	    set = 1;
2934 	}
2935 	l = ep - cp;
2936 	for (i = 0; tag[i].name != NULL; i++) {
2937 	    if (!strncmp(cp, tag[i].name, l)) {
2938 		if (set)
2939 		    *flag |= tag[i].value;
2940 		else
2941 		    *flag &= ~tag[i].value;
2942 	    }
2943 	}
2944 	cp = ep;
2945     }
2946 }
2947 
2948 static void
2949 acpi_set_debugging(void *junk)
2950 {
2951     char	*layer, *level;
2952 
2953     if (cold) {
2954 	AcpiDbgLayer = 0;
2955 	AcpiDbgLevel = 0;
2956     }
2957 
2958     layer = getenv("debug.acpi.layer");
2959     level = getenv("debug.acpi.level");
2960     if (layer == NULL && level == NULL)
2961 	return;
2962 
2963     printf("ACPI set debug");
2964     if (layer != NULL) {
2965 	if (strcmp("NONE", layer) != 0)
2966 	    printf(" layer '%s'", layer);
2967 	acpi_parse_debug(layer, &dbg_layer[0], &AcpiDbgLayer);
2968 	freeenv(layer);
2969     }
2970     if (level != NULL) {
2971 	if (strcmp("NONE", level) != 0)
2972 	    printf(" level '%s'", level);
2973 	acpi_parse_debug(level, &dbg_level[0], &AcpiDbgLevel);
2974 	freeenv(level);
2975     }
2976     printf("\n");
2977 }
2978 
2979 SYSINIT(acpi_debugging, SI_SUB_TUNABLES, SI_ORDER_ANY, acpi_set_debugging,
2980 	NULL);
2981 
2982 static int
2983 acpi_debug_sysctl(SYSCTL_HANDLER_ARGS)
2984 {
2985     int		 error, *dbg;
2986     struct	 debugtag *tag;
2987     struct	 sbuf sb;
2988 
2989     if (sbuf_new(&sb, NULL, 128, SBUF_AUTOEXTEND) == NULL)
2990 	return (ENOMEM);
2991     if (strcmp(oidp->oid_arg1, "debug.acpi.layer") == 0) {
2992 	tag = &dbg_layer[0];
2993 	dbg = &AcpiDbgLayer;
2994     } else {
2995 	tag = &dbg_level[0];
2996 	dbg = &AcpiDbgLevel;
2997     }
2998 
2999     /* Get old values if this is a get request. */
3000     ACPI_SERIAL_BEGIN(acpi);
3001     if (*dbg == 0) {
3002 	sbuf_cpy(&sb, "NONE");
3003     } else if (req->newptr == NULL) {
3004 	for (; tag->name != NULL; tag++) {
3005 	    if ((*dbg & tag->value) == tag->value)
3006 		sbuf_printf(&sb, "%s ", tag->name);
3007 	}
3008     }
3009     sbuf_trim(&sb);
3010     sbuf_finish(&sb);
3011 
3012     /* Copy out the old values to the user. */
3013     error = SYSCTL_OUT(req, sbuf_data(&sb), sbuf_len(&sb));
3014     sbuf_delete(&sb);
3015 
3016     /* If the user is setting a string, parse it. */
3017     if (error == 0 && req->newptr != NULL) {
3018 	*dbg = 0;
3019 	setenv((char *)oidp->oid_arg1, (char *)req->newptr);
3020 	acpi_set_debugging(NULL);
3021     }
3022     ACPI_SERIAL_END(acpi);
3023 
3024     return (error);
3025 }
3026 
3027 SYSCTL_PROC(_debug_acpi, OID_AUTO, layer, CTLFLAG_RW | CTLTYPE_STRING,
3028 	    "debug.acpi.layer", 0, acpi_debug_sysctl, "A", "");
3029 SYSCTL_PROC(_debug_acpi, OID_AUTO, level, CTLFLAG_RW | CTLTYPE_STRING,
3030 	    "debug.acpi.level", 0, acpi_debug_sysctl, "A", "");
3031 #endif /* ACPI_DEBUG */
3032 
3033 static int
3034 acpi_pm_func(u_long cmd, void *arg, ...)
3035 {
3036 	int	state, acpi_state;
3037 	int	error;
3038 	struct	acpi_softc *sc;
3039 	va_list	ap;
3040 
3041 	error = 0;
3042 	switch (cmd) {
3043 	case POWER_CMD_SUSPEND:
3044 		sc = (struct acpi_softc *)arg;
3045 		if (sc == NULL) {
3046 			error = EINVAL;
3047 			goto out;
3048 		}
3049 
3050 		va_start(ap, arg);
3051 		state = va_arg(ap, int);
3052 		va_end(ap);
3053 
3054 		switch (state) {
3055 		case POWER_SLEEP_STATE_STANDBY:
3056 			acpi_state = sc->acpi_standby_sx;
3057 			break;
3058 		case POWER_SLEEP_STATE_SUSPEND:
3059 			acpi_state = sc->acpi_suspend_sx;
3060 			break;
3061 		case POWER_SLEEP_STATE_HIBERNATE:
3062 			acpi_state = ACPI_STATE_S4;
3063 			break;
3064 		default:
3065 			error = EINVAL;
3066 			goto out;
3067 		}
3068 
3069 		acpi_SetSleepState(sc, acpi_state);
3070 		break;
3071 	default:
3072 		error = EINVAL;
3073 		goto out;
3074 	}
3075 
3076 out:
3077 	return (error);
3078 }
3079 
3080 static void
3081 acpi_pm_register(void *arg)
3082 {
3083     if (!cold || resource_disabled("acpi", 0))
3084 	return;
3085 
3086     power_pm_register(POWER_PM_TYPE_ACPI, acpi_pm_func, NULL);
3087 }
3088 
3089 SYSINIT(power, SI_SUB_KLD, SI_ORDER_ANY, acpi_pm_register, 0);
3090