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