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