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