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