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