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