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