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