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