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