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