Merge from vendor branch GROFF:
[dragonfly.git] / sys / dev / acpica5 / acpi.c
1 /*-
2  * Copyright (c) 2000 Takanori Watanabe <takawata@jp.freebsd.org>
3  * Copyright (c) 2000 Mitsuru IWASAKI <iwasaki@jp.freebsd.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.156 2004/06/05 07:25:58 njl Exp $
30  *      $DragonFly: src/sys/dev/acpica5/acpi.c,v 1.12 2005/08/29 21:07:59 dillon Exp $
31  */
32
33 #include "opt_acpi.h"
34 #include <sys/param.h>
35 #include <sys/kernel.h>
36 #include <sys/proc.h>
37 #include <sys/fcntl.h>
38 #include <sys/malloc.h>
39 #include <sys/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/thread2.h>
49
50 #include <machine/clock.h>
51 #include <machine/globaldata.h>
52 #include <machine/resource.h>
53 #include <machine/bus.h>
54 #include <sys/rman.h>
55 #include <bus/isa/isavar.h>
56
57 #include "acpi.h"
58 #include <dev/acpica5/acpivar.h>
59 #include <dev/acpica5/acpiio.h>
60 #include <acnamesp.h>
61
62 MALLOC_DEFINE(M_ACPIDEV, "acpidev", "ACPI devices");
63
64 /* Hooks for the ACPI CA debugging infrastructure */
65 #define _COMPONENT      ACPI_BUS
66 ACPI_MODULE_NAME("ACPI")
67
68 static d_open_t         acpiopen;
69 static d_close_t        acpiclose;
70 static d_ioctl_t        acpiioctl;
71
72 #define CDEV_MAJOR 152
73 static struct cdevsw acpi_cdevsw = {
74         .d_name = "acpi",
75         .d_maj  = CDEV_MAJOR,
76         .d_flags = 0,
77         .d_port = NULL,
78         .d_clone = NULL,
79         .old_open = acpiopen,
80         .old_close = acpiclose,
81         .old_ioctl = acpiioctl
82 };
83
84 #if __FreeBSD_version >= 500000
85 struct mtx      acpi_mutex;
86 #endif
87
88 struct acpi_quirks {
89     char        *OemId;
90     uint32_t    OemRevision;
91     char        *value;
92 };
93
94 #define ACPI_OEM_REV_ANY        0
95
96 static struct acpi_quirks acpi_quirks_table[] = {
97 #ifdef notyet
98     /* Bad PCI routing table.  Used on some SuperMicro boards. */
99     { "PTLTD ", 0x06040000, "pci_link" },
100 #endif
101
102     { NULL, 0, NULL }
103 };
104
105 static int      acpi_modevent(struct module *mod, int event, void *junk);
106 static void     acpi_identify(driver_t *driver, device_t parent);
107 static int      acpi_probe(device_t dev);
108 static int      acpi_attach(device_t dev);
109 static int      acpi_shutdown(device_t dev);
110 static void     acpi_quirks_set(void);
111 static device_t acpi_add_child(device_t bus, int order, const char *name,
112                         int unit);
113 static int      acpi_print_child(device_t bus, device_t child);
114 static int      acpi_read_ivar(device_t dev, device_t child, int index,
115                         uintptr_t *result);
116 static int      acpi_write_ivar(device_t dev, device_t child, int index,
117                         uintptr_t value);
118 static int      acpi_set_resource(device_t dev, device_t child, int type,
119                         int rid, u_long start, u_long count);
120 static int      acpi_get_resource(device_t dev, device_t child, int type,
121                         int rid, u_long *startp, u_long *countp);
122 static struct resource *acpi_alloc_resource(device_t bus, device_t child,
123                         int type, int *rid, u_long start, u_long end,
124                         u_long count, u_int flags);
125 static int      acpi_release_resource(device_t bus, device_t child, int type,
126                         int rid, struct resource *r);
127 static uint32_t acpi_isa_get_logicalid(device_t dev);
128 static int      acpi_isa_get_compatid(device_t dev, uint32_t *cids, int count);
129 static int      acpi_isa_pnp_probe(device_t bus, device_t child,
130                         struct isa_pnp_id *ids);
131 static void     acpi_probe_children(device_t bus);
132 static ACPI_STATUS acpi_probe_child(ACPI_HANDLE handle, UINT32 level,
133                         void *context, void **status);
134 static void     acpi_shutdown_pre_sync(void *arg, int howto);
135 static void     acpi_shutdown_final(void *arg, int howto);
136 static void     acpi_shutdown_poweroff(void *arg);
137 static void     acpi_enable_fixed_events(struct acpi_softc *sc);
138 static int      acpi_parse_prw(ACPI_HANDLE h, struct acpi_prw_data *prw);
139 static ACPI_STATUS acpi_wake_limit(ACPI_HANDLE h, UINT32 level, void *context,
140                     void **status);
141 static int      acpi_wake_limit_walk(int sstate);
142 static int      acpi_wake_sysctl_walk(device_t dev);
143 static int      acpi_wake_set_sysctl(SYSCTL_HANDLER_ARGS);
144 static void     acpi_system_eventhandler_sleep(void *arg, int state);
145 static void     acpi_system_eventhandler_wakeup(void *arg, int state);
146 static int      acpi_supported_sleep_state_sysctl(SYSCTL_HANDLER_ARGS);
147 static int      acpi_sleep_state_sysctl(SYSCTL_HANDLER_ARGS);
148 static int      acpi_pm_func(u_long cmd, void *arg, ...);
149 static int      acpi_child_location_str_method(device_t acdev, device_t child,
150                                                char *buf, size_t buflen);
151 static int      acpi_child_pnpinfo_str_method(device_t acdev, device_t child,
152                                               char *buf, size_t buflen);
153
154 static device_method_t acpi_methods[] = {
155     /* Device interface */
156     DEVMETHOD(device_identify,          acpi_identify),
157     DEVMETHOD(device_probe,             acpi_probe),
158     DEVMETHOD(device_attach,            acpi_attach),
159     DEVMETHOD(device_shutdown,          acpi_shutdown),
160     DEVMETHOD(device_detach,            bus_generic_detach),
161     DEVMETHOD(device_suspend,           bus_generic_suspend),
162     DEVMETHOD(device_resume,            bus_generic_resume),
163
164     /* Bus interface */
165     DEVMETHOD(bus_add_child,            acpi_add_child),
166     DEVMETHOD(bus_print_child,          acpi_print_child),
167     DEVMETHOD(bus_read_ivar,            acpi_read_ivar),
168     DEVMETHOD(bus_write_ivar,           acpi_write_ivar),
169     DEVMETHOD(bus_set_resource,         acpi_set_resource),
170     DEVMETHOD(bus_get_resource,         acpi_get_resource),
171     DEVMETHOD(bus_alloc_resource,       acpi_alloc_resource),
172     DEVMETHOD(bus_release_resource,     acpi_release_resource),
173     DEVMETHOD(bus_child_pnpinfo_str,    acpi_child_pnpinfo_str_method),
174     DEVMETHOD(bus_child_location_str,   acpi_child_location_str_method),
175     DEVMETHOD(bus_driver_added,         bus_generic_driver_added),
176     DEVMETHOD(bus_activate_resource,    bus_generic_activate_resource),
177     DEVMETHOD(bus_deactivate_resource,  bus_generic_deactivate_resource),
178     DEVMETHOD(bus_setup_intr,           bus_generic_setup_intr),
179     DEVMETHOD(bus_teardown_intr,        bus_generic_teardown_intr),
180
181     /* ISA emulation */
182     DEVMETHOD(isa_pnp_probe,            acpi_isa_pnp_probe),
183
184     {0, 0}
185 };
186
187 static driver_t acpi_driver = {
188     "acpi",
189     acpi_methods,
190     sizeof(struct acpi_softc),
191 };
192
193 static devclass_t acpi_devclass;
194 DRIVER_MODULE(acpi, nexus, acpi_driver, acpi_devclass, acpi_modevent, 0);
195 MODULE_VERSION(acpi, 1);
196
197 static const char* sleep_state_names[] = {
198     "S0", "S1", "S2", "S3", "S4", "S5", "NONE"};
199
200 SYSCTL_NODE(_debug, OID_AUTO, acpi, CTLFLAG_RW, NULL, "ACPI debugging");
201 static char acpi_ca_version[12];
202 SYSCTL_STRING(_debug_acpi, OID_AUTO, acpi_ca_version, CTLFLAG_RD,
203               acpi_ca_version, 0, "Version of Intel ACPI-CA");
204
205 /*
206  * Allow override of whether methods execute in parallel or not.
207  * Enable this for serial behavior, which fixes "AE_ALREADY_EXISTS"
208  * errors for AML that really can't handle parallel method execution.
209  * It is off by default since this breaks recursive methods and
210  * some IBMs use such code.
211  */
212 static int acpi_serialize_methods;
213 TUNABLE_INT("hw.acpi.serialize_methods", &acpi_serialize_methods);
214
215 /*
216  * ACPI can only be loaded as a module by the loader; activating it after
217  * system bootstrap time is not useful, and can be fatal to the system.
218  * It also cannot be unloaded, since the entire system bus heirarchy hangs
219  * off it.
220  */
221 static int
222 acpi_modevent(struct module *mod, int event, void *junk)
223 {
224     switch(event) {
225     case MOD_LOAD:
226         if (!cold) {
227             printf("The ACPI driver cannot be loaded after boot.\n");
228             return (EPERM);
229         }
230         break;
231     case MOD_UNLOAD:
232         if (!cold && power_pm_get_type() == POWER_PM_TYPE_ACPI)
233             return (EBUSY);
234         break;
235     default:
236         break;
237     }
238     return (0);
239 }
240
241 /*
242  * Perform early initialization.
243  */
244 ACPI_STATUS
245 acpi_Startup(void)
246 {
247 #ifdef ACPI_DEBUGGER
248     char *debugpoint;
249 #endif
250     static int error, started = 0;
251
252     ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__);
253
254     if (started)
255         return_VALUE (error);
256     started = 1;
257
258 #if __FreeBSD_version >= 500000
259     /* Initialise the ACPI mutex */
260     mtx_init(&acpi_mutex, "ACPI global lock", NULL, MTX_DEF);
261 #endif
262
263     /*
264      * Set the globals from our tunables.  This is needed because ACPI-CA
265      * uses UINT8 for some values and we have no tunable_byte.
266      */
267     AcpiGbl_AllMethodsSerialized = (UINT8)acpi_serialize_methods;
268
269     /* Start up the ACPI CA subsystem. */
270 #ifdef ACPI_DEBUGGER
271     debugpoint = getenv("debug.acpi.debugger");
272     if (debugpoint) {
273         if (!strcmp(debugpoint, "init"))
274             acpi_EnterDebugger();
275         freeenv(debugpoint);
276     }
277 #endif
278     if (ACPI_FAILURE(error = AcpiInitializeSubsystem())) {
279         printf("ACPI: initialisation failed: %s\n", AcpiFormatException(error));
280         return_VALUE (error);
281     }
282 #ifdef ACPI_DEBUGGER
283     debugpoint = getenv("debug.acpi.debugger");
284     if (debugpoint) {
285         if (!strcmp(debugpoint, "tables"))
286             acpi_EnterDebugger();
287         freeenv(debugpoint);
288     }
289 #endif
290
291     if (ACPI_FAILURE(error = AcpiLoadTables())) {
292         printf("ACPI: table load failed: %s\n", AcpiFormatException(error));
293         return_VALUE(error);
294     }
295
296     /* Set up any quirks we have for this XSDT. */
297     acpi_quirks_set();
298     if (acpi_disabled("acpi"))
299         return_VALUE (AE_ERROR);
300
301     return_VALUE (AE_OK);
302 }
303
304 /*
305  * Detect ACPI, perform early initialisation
306  */
307 static void
308 acpi_identify(driver_t *driver, device_t parent)
309 {
310     device_t    child;
311
312     ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__);
313
314     if (!cold)
315         return_VOID;
316
317     /* Check that we haven't been disabled with a hint. */
318     if (resource_disabled("acpi", 0))
319         return_VOID;
320
321     /* Make sure we're not being doubly invoked. */
322     if (device_find_child(parent, "acpi", 0) != NULL)
323         return_VOID;
324
325     /* Initialize ACPI-CA. */
326     if (ACPI_FAILURE(acpi_Startup()))
327         return_VOID;
328
329     snprintf(acpi_ca_version, sizeof(acpi_ca_version), "%#x", ACPI_CA_VERSION);
330
331     /* Attach the actual ACPI device. */
332     if ((child = BUS_ADD_CHILD(parent, 0, "acpi", 0)) == NULL) {
333         device_printf(parent, "ACPI: could not attach\n");
334         return_VOID;
335     }
336 }
337
338 /*
339  * Fetch some descriptive data from ACPI to put in our attach message
340  */
341 static int
342 acpi_probe(device_t dev)
343 {
344     ACPI_TABLE_HEADER   th;
345     char                buf[20];
346     int                 error;
347     struct sbuf         sb;
348     ACPI_STATUS         status;
349     ACPI_LOCK_DECL;
350
351     ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__);
352
353     if (power_pm_get_type() != POWER_PM_TYPE_NONE &&
354         power_pm_get_type() != POWER_PM_TYPE_ACPI) {
355
356         device_printf(dev, "Other PM system enabled.\n");
357         return_VALUE(ENXIO);
358     }
359
360     ACPI_LOCK;
361
362     if (ACPI_FAILURE(status = AcpiGetTableHeader(ACPI_TABLE_XSDT, 1, &th))) {
363         device_printf(dev, "couldn't get XSDT header: %s\n",
364                       AcpiFormatException(status));
365         error = ENXIO;
366     } else {
367         sbuf_new(&sb, buf, sizeof(buf), SBUF_FIXEDLEN);
368         sbuf_bcat(&sb, th.OemId, 6);
369         sbuf_trim(&sb);
370         sbuf_putc(&sb, ' ');
371         sbuf_bcat(&sb, th.OemTableId, 8);
372         sbuf_trim(&sb);
373         sbuf_finish(&sb);
374         device_set_desc_copy(dev, sbuf_data(&sb));
375         sbuf_delete(&sb);
376         error = 0;
377     }
378     ACPI_UNLOCK;
379     return_VALUE(error);
380 }
381
382 static int
383 acpi_attach(device_t dev)
384 {
385     struct acpi_softc   *sc;
386     ACPI_STATUS         status;
387     int                 error, state;
388     UINT32              flags;
389     UINT8               TypeA, TypeB;
390     char                *env;
391 #ifdef ACPI_DEBUGGER
392     char                *debugpoint;
393 #endif
394     ACPI_LOCK_DECL;
395
396     ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__);
397     ACPI_LOCK;
398     sc = device_get_softc(dev);
399     bzero(sc, sizeof(*sc));
400     sc->acpi_dev = dev;
401     callout_init(&sc->acpi_sleep_timer);
402
403 #ifdef ACPI_DEBUGGER
404     debugpoint = getenv("debug.acpi.debugger");
405     if (debugpoint) {
406         if (!strcmp(debugpoint, "spaces"))
407             acpi_EnterDebugger();
408         freeenv(debugpoint);
409     }
410 #endif
411
412     /* Install the default address space handlers. */
413     error = ENXIO;
414     status = AcpiInstallAddressSpaceHandler(ACPI_ROOT_OBJECT,
415                 ACPI_ADR_SPACE_SYSTEM_MEMORY, ACPI_DEFAULT_HANDLER, NULL, NULL);
416     if (ACPI_FAILURE(status)) {
417         device_printf(dev, "Could not initialise SystemMemory handler: %s\n",
418                       AcpiFormatException(status));
419         goto out;
420     }
421     status = AcpiInstallAddressSpaceHandler(ACPI_ROOT_OBJECT,
422                 ACPI_ADR_SPACE_SYSTEM_IO, ACPI_DEFAULT_HANDLER, NULL, NULL);
423     if (ACPI_FAILURE(status)) {
424         device_printf(dev, "Could not initialise SystemIO handler: %s\n",
425                       AcpiFormatException(status));
426         goto out;
427     }
428     status = AcpiInstallAddressSpaceHandler(ACPI_ROOT_OBJECT,
429                 ACPI_ADR_SPACE_PCI_CONFIG, ACPI_DEFAULT_HANDLER, NULL, NULL);
430     if (ACPI_FAILURE(status)) {
431         device_printf(dev, "could not initialise PciConfig handler: %s\n",
432                       AcpiFormatException(status));
433         goto out;
434     }
435
436     /*
437      * Bring ACPI fully online.
438      *
439      * Note that some systems (specifically, those with namespace evaluation
440      * issues that require the avoidance of parts of the namespace) must
441      * avoid running _INI and _STA on everything, as well as dodging the final
442      * object init pass.
443      *
444      * For these devices, we set ACPI_NO_DEVICE_INIT and ACPI_NO_OBJECT_INIT).
445      * For avoiding portions of the namespace without totally disabling _INI
446      * and _STA, use "debug.acpi.avoid.paths".
447      *
448      * XXX We should arrange for the object init pass after we have attached
449      *     all our child devices, but on many systems it works here.
450      */
451 #ifdef ACPI_DEBUGGER
452     debugpoint = getenv("debug.acpi.debugger");
453     if (debugpoint) {
454         if (!strcmp(debugpoint, "enable"))
455             acpi_EnterDebugger();
456         freeenv(debugpoint);
457     }
458 #endif
459     flags = 0;
460     if (testenv("debug.acpi.avoid"))
461         flags = ACPI_NO_DEVICE_INIT | ACPI_NO_OBJECT_INIT;
462     if (ACPI_FAILURE(status = AcpiEnableSubsystem(flags))) {
463         device_printf(dev, "Could not enable ACPI: %s\n",
464                       AcpiFormatException(status));
465         goto out;
466     }
467
468     /*
469      * Call the ECDT probe function to provide EC functionality before
470      * the namespace has been evaluated.
471      */
472     acpi_ec_ecdt_probe(dev);
473
474     if (ACPI_FAILURE(status = AcpiInitializeObjects(flags))) {
475         device_printf(dev, "Could not initialize ACPI objects: %s\n",
476                       AcpiFormatException(status));
477         goto out;
478     }
479
480     /*
481      * Setup our sysctl tree.
482      *
483      * XXX: This doesn't check to make sure that none of these fail.
484      */
485     sysctl_ctx_init(&sc->acpi_sysctl_ctx);
486     sc->acpi_sysctl_tree = SYSCTL_ADD_NODE(&sc->acpi_sysctl_ctx,
487                                SYSCTL_STATIC_CHILDREN(_hw), OID_AUTO,
488                                device_get_name(dev), CTLFLAG_RD, 0, "");
489     SYSCTL_ADD_PROC(&sc->acpi_sysctl_ctx, SYSCTL_CHILDREN(sc->acpi_sysctl_tree),
490         OID_AUTO, "supported_sleep_state", CTLTYPE_STRING | CTLFLAG_RD,
491         0, 0, acpi_supported_sleep_state_sysctl, "A", "");
492     SYSCTL_ADD_PROC(&sc->acpi_sysctl_ctx, SYSCTL_CHILDREN(sc->acpi_sysctl_tree),
493         OID_AUTO, "power_button_state", CTLTYPE_STRING | CTLFLAG_RW,
494         &sc->acpi_power_button_sx, 0, acpi_sleep_state_sysctl, "A", "");
495     SYSCTL_ADD_PROC(&sc->acpi_sysctl_ctx, SYSCTL_CHILDREN(sc->acpi_sysctl_tree),
496         OID_AUTO, "sleep_button_state", CTLTYPE_STRING | CTLFLAG_RW,
497         &sc->acpi_sleep_button_sx, 0, acpi_sleep_state_sysctl, "A", "");
498     SYSCTL_ADD_PROC(&sc->acpi_sysctl_ctx, SYSCTL_CHILDREN(sc->acpi_sysctl_tree),
499         OID_AUTO, "lid_switch_state", CTLTYPE_STRING | CTLFLAG_RW,
500         &sc->acpi_lid_switch_sx, 0, acpi_sleep_state_sysctl, "A", "");
501     SYSCTL_ADD_PROC(&sc->acpi_sysctl_ctx, SYSCTL_CHILDREN(sc->acpi_sysctl_tree),
502         OID_AUTO, "standby_state", CTLTYPE_STRING | CTLFLAG_RW,
503         &sc->acpi_standby_sx, 0, acpi_sleep_state_sysctl, "A", "");
504     SYSCTL_ADD_PROC(&sc->acpi_sysctl_ctx, SYSCTL_CHILDREN(sc->acpi_sysctl_tree),
505         OID_AUTO, "suspend_state", CTLTYPE_STRING | CTLFLAG_RW,
506         &sc->acpi_suspend_sx, 0, acpi_sleep_state_sysctl, "A", "");
507     SYSCTL_ADD_INT(&sc->acpi_sysctl_ctx, SYSCTL_CHILDREN(sc->acpi_sysctl_tree),
508         OID_AUTO, "sleep_delay", CTLFLAG_RD | CTLFLAG_RW,
509         &sc->acpi_sleep_delay, 0, "sleep delay");
510     SYSCTL_ADD_INT(&sc->acpi_sysctl_ctx, SYSCTL_CHILDREN(sc->acpi_sysctl_tree),
511         OID_AUTO, "s4bios", CTLFLAG_RD | CTLFLAG_RW,
512         &sc->acpi_s4bios, 0, "S4BIOS mode");
513     SYSCTL_ADD_INT(&sc->acpi_sysctl_ctx, SYSCTL_CHILDREN(sc->acpi_sysctl_tree),
514         OID_AUTO, "verbose", CTLFLAG_RD | CTLFLAG_RW,
515         &sc->acpi_verbose, 0, "verbose mode");
516     SYSCTL_ADD_INT(&sc->acpi_sysctl_ctx, SYSCTL_CHILDREN(sc->acpi_sysctl_tree),
517         OID_AUTO, "disable_on_poweroff", CTLFLAG_RD | CTLFLAG_RW,
518         &sc->acpi_disable_on_poweroff, 0, "ACPI subsystem disable on poweroff");
519
520     /*
521      * Default to 1 second before sleeping to give some machines time to
522      * stabilize.
523      */
524     sc->acpi_sleep_delay = 1;
525     sc->acpi_disable_on_poweroff = 0;
526     if (bootverbose)
527         sc->acpi_verbose = 1;
528     if ((env = getenv("hw.acpi.verbose")) && strcmp(env, "0")) {
529         sc->acpi_verbose = 1;
530         freeenv(env);
531     }
532
533     /* Only enable S4BIOS by default if the FACS says it is available. */
534     if (AcpiGbl_FACS->S4Bios_f != 0)
535             sc->acpi_s4bios = 1;
536
537     /*
538      * Dispatch the default sleep state to devices.  The lid switch is set
539      * to NONE by default to avoid surprising users.
540      */
541     sc->acpi_power_button_sx = ACPI_STATE_S5;
542     sc->acpi_lid_switch_sx = ACPI_S_STATES_MAX + 1;
543     sc->acpi_standby_sx = ACPI_STATE_S1;
544     sc->acpi_suspend_sx = ACPI_STATE_S3;
545
546     /* Pick the first valid sleep state for the sleep button default. */
547     sc->acpi_sleep_button_sx = ACPI_S_STATES_MAX + 1;
548     for (state = ACPI_STATE_S1; state < ACPI_STATE_S5; state++)
549         if (ACPI_SUCCESS(AcpiGetSleepTypeData(state, &TypeA, &TypeB))) {
550             sc->acpi_sleep_button_sx = state;
551             break;
552         }
553
554     acpi_enable_fixed_events(sc);
555
556     /*
557      * Scan the namespace and attach/initialise children.
558      */
559 #ifdef ACPI_DEBUGGER
560     debugpoint = getenv("debug.acpi.debugger");
561     if (debugpoint) {
562         if (!strcmp(debugpoint, "probe"))
563             acpi_EnterDebugger();
564         freeenv(debugpoint);
565     }
566 #endif
567
568     /* Register our shutdown handlers */
569     EVENTHANDLER_REGISTER(shutdown_pre_sync, acpi_shutdown_pre_sync, sc,
570         SHUTDOWN_PRI_LAST);
571     EVENTHANDLER_REGISTER(shutdown_final, acpi_shutdown_final, sc,
572         SHUTDOWN_PRI_LAST);
573
574     /*
575      * Register our acpi event handlers.
576      * XXX should be configurable eg. via userland policy manager.
577      */
578     EVENTHANDLER_REGISTER(acpi_sleep_event, acpi_system_eventhandler_sleep,
579         sc, ACPI_EVENT_PRI_LAST);
580     EVENTHANDLER_REGISTER(acpi_wakeup_event, acpi_system_eventhandler_wakeup,
581         sc, ACPI_EVENT_PRI_LAST);
582
583     /* Flag our initial states. */
584     sc->acpi_enabled = 1;
585     sc->acpi_sstate = ACPI_STATE_S0;
586     sc->acpi_sleep_disabled = 0;
587
588     /* Create the control device */
589     cdevsw_add(&acpi_cdevsw, 0, 0);
590     sc->acpi_dev_t = make_dev(&acpi_cdevsw, 0, UID_ROOT, GID_WHEEL, 0644,
591                               "acpi");
592     sc->acpi_dev_t->si_drv1 = sc;
593
594 #ifdef ACPI_DEBUGGER
595     debugpoint = getenv("debug.acpi.debugger");
596     if (debugpoint) {
597         if (strcmp(debugpoint, "running") == 0)
598             acpi_EnterDebugger();
599         freeenv(debugpoint);
600     }
601 #endif
602
603     if ((error = acpi_task_thread_init()))
604         goto out;
605
606     if ((error = acpi_machdep_init(dev)))
607         goto out;
608
609     /* Register ACPI again to pass the correct argument of pm_func. */
610     power_pm_register(POWER_PM_TYPE_ACPI, acpi_pm_func, sc);
611
612     if (!acpi_disabled("bus"))
613         acpi_probe_children(dev);
614
615     error = 0;
616
617  out:
618     ACPI_UNLOCK;
619     return_VALUE (error);
620 }
621
622 static int
623 acpi_shutdown(device_t dev)
624 {
625
626     /* Disable all wake GPEs not appropriate for reboot/poweroff. */
627     acpi_wake_limit_walk(ACPI_STATE_S5);
628     return (0);
629 }
630
631 static void
632 acpi_quirks_set()
633 {
634     XSDT_DESCRIPTOR *xsdt;
635     struct acpi_quirks *quirk;
636     char *env, *tmp;
637     int len;
638
639     /*
640      * If the user loaded a custom table or disabled "quirks", leave
641      * the settings alone.
642      */
643     len = 0;
644     if ((env = getenv("acpi_dsdt_load")) != NULL) {
645         /* XXX No strcasecmp but this is good enough. */
646         if (*env == 'Y' || *env == 'y')
647             goto out;
648         freeenv(env);
649     }
650     if ((env = getenv("debug.acpi.disabled")) != NULL) {
651         if (strstr("quirks", env) != NULL)
652             goto out;
653         len = strlen(env);
654     }
655
656     /*
657      * Search through our quirk table and concatenate the disabled
658      * values with whatever we find.
659      */
660     xsdt = AcpiGbl_XSDT;
661     for (quirk = acpi_quirks_table; quirk->OemId; quirk++) {
662         if (!strncmp(xsdt->OemId, quirk->OemId, strlen(quirk->OemId)) &&
663             (xsdt->OemRevision == quirk->OemRevision ||
664             quirk->OemRevision == ACPI_OEM_REV_ANY)) {
665                 len += strlen(quirk->value) + 2;
666                 if ((tmp = malloc(len, M_TEMP, M_NOWAIT)) == NULL)
667                     goto out;
668                 sprintf(tmp, "%s %s", env ? env : "", quirk->value);
669 #ifdef notyet
670                 setenv("debug.acpi.disabled", tmp);
671 #endif /* notyet */
672                 free(tmp, M_TEMP);
673                 break;
674         }
675     }
676
677 out:
678     if (env)
679         freeenv(env);
680 }
681
682 /*
683  * Handle a new device being added
684  */
685 static device_t
686 acpi_add_child(device_t bus, int order, const char *name, int unit)
687 {
688     struct acpi_device  *ad;
689     device_t            child;
690
691     ad = malloc(sizeof(*ad), M_ACPIDEV, M_INTWAIT | M_ZERO);
692
693     resource_list_init(&ad->ad_rl);
694
695     child = device_add_child_ordered(bus, order, name, unit);
696     if (child != NULL)
697         device_set_ivars(child, ad);
698     return (child);
699 }
700
701 static int
702 acpi_print_child(device_t bus, device_t child)
703 {
704     struct acpi_device   *adev = device_get_ivars(child);
705     struct resource_list *rl = &adev->ad_rl;
706     int retval = 0;
707
708     retval += bus_print_child_header(bus, child);
709     retval += resource_list_print_type(rl, "port",  SYS_RES_IOPORT, "%#lx");
710     retval += resource_list_print_type(rl, "iomem", SYS_RES_MEMORY, "%#lx");
711     retval += resource_list_print_type(rl, "irq",   SYS_RES_IRQ,    "%ld");
712     retval += resource_list_print_type(rl, "drq",   SYS_RES_DRQ,    "%ld");
713     retval += bus_print_child_footer(bus, child);
714
715     return (retval);
716 }
717
718 /* Location hint for devctl(8) */
719 static int
720 acpi_child_location_str_method(device_t cbdev, device_t child, char *buf,
721     size_t buflen)
722 {
723     struct acpi_device *dinfo = device_get_ivars(child);
724
725     if (dinfo->ad_handle)
726         snprintf(buf, buflen, "path=%s", acpi_name(dinfo->ad_handle));
727     else
728         snprintf(buf, buflen, "magic=unknown");
729     return (0);
730 }
731
732 /* PnP information for devctl(8) */
733 static int
734 acpi_child_pnpinfo_str_method(device_t cbdev, device_t child, char *buf,
735     size_t buflen)
736 {
737     ACPI_BUFFER adbuf = {ACPI_ALLOCATE_BUFFER, NULL};
738     ACPI_DEVICE_INFO *adinfo;
739     struct acpi_device *dinfo = device_get_ivars(child);
740     char *end;
741     int error;
742
743     error = AcpiGetObjectInfo(dinfo->ad_handle, &adbuf);
744     adinfo = (ACPI_DEVICE_INFO *) adbuf.Pointer;
745
746     if (error)
747         snprintf(buf, buflen, "Unknown");
748     else
749         snprintf(buf, buflen, "_HID=%s _UID=%lu",
750                 (adinfo->Valid & ACPI_VALID_HID) ?
751                 adinfo->HardwareId.Value : "UNKNOWN",
752                 (adinfo->Valid & ACPI_VALID_UID) ?
753                 strtoul(adinfo->UniqueId.Value, &end, 10) : 0);
754
755     if (adinfo)
756         AcpiOsFree(adinfo);
757
758     return (0);
759 }
760
761 /*
762  * Handle per-device ivars
763  */
764 static int
765 acpi_read_ivar(device_t dev, device_t child, int index, uintptr_t *result)
766 {
767     struct acpi_device  *ad;
768
769     if ((ad = device_get_ivars(child)) == NULL) {
770         printf("device has no ivars\n");
771         return (ENOENT);
772     }
773
774     /* ACPI and ISA compatibility ivars */
775     switch(index) {
776     case ACPI_IVAR_HANDLE:
777         *(ACPI_HANDLE *)result = ad->ad_handle;
778         break;
779     case ACPI_IVAR_MAGIC:
780         *(int *)result = ad->ad_magic;
781         break;
782     case ACPI_IVAR_PRIVATE:
783         *(void **)result = ad->ad_private;
784         break;
785     case ISA_IVAR_VENDORID:
786     case ISA_IVAR_SERIAL:
787     case ISA_IVAR_COMPATID:
788         *(int *)result = -1;
789         break;
790     case ISA_IVAR_LOGICALID:
791         *(int *)result = acpi_isa_get_logicalid(child);
792         break;
793     default:
794         return (ENOENT);
795     }
796
797     return (0);
798 }
799
800 static int
801 acpi_write_ivar(device_t dev, device_t child, int index, uintptr_t value)
802 {
803     struct acpi_device  *ad;
804
805     if ((ad = device_get_ivars(child)) == NULL) {
806         printf("device has no ivars\n");
807         return (ENOENT);
808     }
809
810     switch(index) {
811     case ACPI_IVAR_HANDLE:
812         ad->ad_handle = (ACPI_HANDLE)value;
813         break;
814     case ACPI_IVAR_MAGIC:
815         ad->ad_magic = (int)value;
816         break;
817     case ACPI_IVAR_PRIVATE:
818         ad->ad_private = (void *)value;
819         break;
820     default:
821         panic("bad ivar write request (%d)", index);
822         return (ENOENT);
823     }
824
825     return (0);
826 }
827
828 /*
829  * Handle child resource allocation/removal
830  */
831 static int
832 acpi_set_resource(device_t dev, device_t child, int type, int rid,
833                   u_long start, u_long count)
834 {
835     struct acpi_device          *ad = device_get_ivars(child);
836     struct resource_list        *rl = &ad->ad_rl;
837
838     resource_list_add(rl, type, rid, start, start + count -1, count);
839
840     return(0);
841 }
842
843 static int
844 acpi_get_resource(device_t dev, device_t child, int type, int rid,
845                   u_long *startp, u_long *countp)
846 {
847     struct acpi_device          *ad = device_get_ivars(child);
848     struct resource_list        *rl = &ad->ad_rl;
849     struct resource_list_entry  *rle;
850
851     rle = resource_list_find(rl, type, rid);
852     if (!rle)
853         return(ENOENT);
854         
855     if (startp)
856         *startp = rle->start;
857     if (countp)
858         *countp = rle->count;
859
860     return (0);
861 }
862
863 static struct resource *
864 acpi_alloc_resource(device_t bus, device_t child, int type, int *rid,
865                     u_long start, u_long end, u_long count, u_int flags)
866 {
867     struct acpi_device *ad = device_get_ivars(child);
868     struct resource_list *rl = &ad->ad_rl;
869
870     return (resource_list_alloc(rl, bus, child, type, rid, start, end, count,
871             flags));
872 }
873
874 static int
875 acpi_release_resource(device_t bus, device_t child, int type, int rid, struct resource *r)
876 {
877     struct acpi_device *ad = device_get_ivars(child);
878     struct resource_list *rl = &ad->ad_rl;
879
880     return (resource_list_release(rl, bus, child, type, rid, r));
881 }
882
883 /* Allocate an IO port or memory resource, given its GAS. */
884 struct resource *
885 acpi_bus_alloc_gas(device_t dev, int *rid, ACPI_GENERIC_ADDRESS *gas)
886 {
887     int type;
888
889     if (gas == NULL || !ACPI_VALID_ADDRESS(gas->Address) ||
890         gas->RegisterBitWidth < 8)
891         return (NULL);
892
893     switch (gas->AddressSpaceId) {
894     case ACPI_ADR_SPACE_SYSTEM_MEMORY:
895         type = SYS_RES_MEMORY;
896         break;
897     case ACPI_ADR_SPACE_SYSTEM_IO:
898         type = SYS_RES_IOPORT;
899         break;
900     default:
901         return (NULL);
902     }
903
904     bus_set_resource(dev, type, *rid, gas->Address, gas->RegisterBitWidth / 8);
905     return (bus_alloc_resource_any(dev, type, rid, RF_ACTIVE));
906 }
907
908 /*
909  * Handle ISA-like devices probing for a PnP ID to match.
910  */
911 #define PNP_EISAID(s)                           \
912         ((((s[0] - '@') & 0x1f) << 2)           \
913          | (((s[1] - '@') & 0x18) >> 3)         \
914          | (((s[1] - '@') & 0x07) << 13)        \
915          | (((s[2] - '@') & 0x1f) << 8)         \
916          | (PNP_HEXTONUM(s[4]) << 16)           \
917          | (PNP_HEXTONUM(s[3]) << 20)           \
918          | (PNP_HEXTONUM(s[6]) << 24)           \
919          | (PNP_HEXTONUM(s[5]) << 28))
920
921 static uint32_t
922 acpi_isa_get_logicalid(device_t dev)
923 {
924     ACPI_DEVICE_INFO    *devinfo;
925     ACPI_BUFFER         buf;
926     ACPI_HANDLE         h;
927     ACPI_STATUS         error;
928     u_int32_t           pnpid;
929     ACPI_LOCK_DECL;
930
931     ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__);
932
933     pnpid = 0;
934     buf.Pointer = NULL;
935     buf.Length = ACPI_ALLOCATE_BUFFER;
936
937     ACPI_LOCK;
938     
939     /* Fetch and validate the HID. */
940     if ((h = acpi_get_handle(dev)) == NULL)
941         goto out;
942     error = AcpiGetObjectInfo(h, &buf);
943     if (ACPI_FAILURE(error))
944         goto out;
945     devinfo = (ACPI_DEVICE_INFO *)buf.Pointer;
946
947     if ((devinfo->Valid & ACPI_VALID_HID) != 0)
948         pnpid = PNP_EISAID(devinfo->HardwareId.Value);
949
950 out:
951     if (buf.Pointer != NULL)
952         AcpiOsFree(buf.Pointer);
953     ACPI_UNLOCK;
954     return_VALUE (pnpid);
955 }
956
957 static int
958 acpi_isa_get_compatid(device_t dev, uint32_t *cids, int count)
959 {
960     ACPI_DEVICE_INFO    *devinfo;
961     ACPI_BUFFER         buf;
962     ACPI_HANDLE         h;
963     ACPI_STATUS         error;
964     uint32_t            *pnpid;
965     int                 valid, i;
966     ACPI_LOCK_DECL;
967
968     ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__);
969
970     pnpid = cids;
971     valid = 0;
972     buf.Pointer = NULL;
973     buf.Length = ACPI_ALLOCATE_BUFFER;
974
975     ACPI_LOCK;
976     
977     /* Fetch and validate the CID */
978     if ((h = acpi_get_handle(dev)) == NULL)
979         goto out;
980     error = AcpiGetObjectInfo(h, &buf);
981     if (ACPI_FAILURE(error))
982         goto out;
983     devinfo = (ACPI_DEVICE_INFO *)buf.Pointer;
984     if ((devinfo->Valid & ACPI_VALID_CID) == 0)
985         goto out;
986
987     if (devinfo->CompatibilityId.Count < count)
988         count = devinfo->CompatibilityId.Count;
989     for (i = 0; i < count; i++) {
990         if (strncmp(devinfo->CompatibilityId.Id[i].Value, "PNP", 3) != 0)
991             continue;
992         *pnpid++ = PNP_EISAID(devinfo->CompatibilityId.Id[i].Value);
993         valid++;
994     }
995
996 out:
997     if (buf.Pointer != NULL)
998         AcpiOsFree(buf.Pointer);
999     ACPI_UNLOCK;
1000     return_VALUE (valid);
1001 }
1002
1003 static int
1004 acpi_isa_pnp_probe(device_t bus, device_t child, struct isa_pnp_id *ids)
1005 {
1006     int                 result, cid_count, i;
1007     uint32_t            lid, cids[8];
1008
1009     ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__);
1010
1011     /*
1012      * ISA-style drivers attached to ACPI may persist and
1013      * probe manually if we return ENOENT.  We never want
1014      * that to happen, so don't ever return it.
1015      */
1016     result = ENXIO;
1017
1018     /* Scan the supplied IDs for a match */
1019     lid = acpi_isa_get_logicalid(child);
1020     cid_count = acpi_isa_get_compatid(child, cids, 8);
1021     while (ids && ids->ip_id) {
1022         if (lid == ids->ip_id) {
1023             result = 0;
1024             goto out;
1025         }
1026         for (i = 0; i < cid_count; i++) {
1027             if (cids[i] == ids->ip_id) {
1028                 result = 0;
1029                 goto out;
1030             }
1031         }
1032         ids++;
1033     }
1034
1035  out:
1036     return_VALUE (result);
1037 }
1038
1039 /*
1040  * Scan relevant portions of the ACPI namespace and attach child devices.
1041  *
1042  * Note that we only expect to find devices in the \_PR_, \_TZ_, \_SI_ and
1043  * \_SB_ scopes, and \_PR_ and \_TZ_ become obsolete in the ACPI 2.0 spec.
1044  */
1045 static void
1046 acpi_probe_children(device_t bus)
1047 {
1048     ACPI_HANDLE parent;
1049     ACPI_STATUS status;
1050     static char *scopes[] = {"\\_PR_", "\\_TZ_", "\\_SI", "\\_SB_", NULL};
1051     int         i;
1052
1053     ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__);
1054     ACPI_ASSERTLOCK;
1055
1056     /* Create any static children by calling device identify methods. */
1057     ACPI_DEBUG_PRINT((ACPI_DB_OBJECTS, "device identify routines\n"));
1058     bus_generic_probe(bus);
1059
1060     /*
1061      * Scan the namespace and insert placeholders for all the devices that
1062      * we find.
1063      *
1064      * Note that we use AcpiWalkNamespace rather than AcpiGetDevices because
1065      * we want to create nodes for all devices, not just those that are
1066      * currently present. (This assumes that we don't want to create/remove
1067      * devices as they appear, which might be smarter.)
1068      */
1069     ACPI_DEBUG_PRINT((ACPI_DB_OBJECTS, "namespace scan\n"));
1070     for (i = 0; scopes[i] != NULL; i++) {
1071         status = AcpiGetHandle(ACPI_ROOT_OBJECT, scopes[i], &parent);
1072         if (ACPI_SUCCESS(status)) {
1073             AcpiWalkNamespace(ACPI_TYPE_ANY, parent, 100, acpi_probe_child,
1074                               bus, NULL);
1075         }
1076     }
1077
1078     /*
1079      * Scan all of the child devices we have created and let them probe/attach.
1080      */
1081     ACPI_DEBUG_PRINT((ACPI_DB_OBJECTS, "first bus_generic_attach\n"));
1082     bus_generic_attach(bus);
1083
1084     /*
1085      * Some of these children may have attached others as part of their attach
1086      * process (eg. the root PCI bus driver), so rescan.
1087      */
1088     ACPI_DEBUG_PRINT((ACPI_DB_OBJECTS, "second bus_generic_attach\n"));
1089     bus_generic_attach(bus);
1090
1091     /* Attach wake sysctls. */
1092     acpi_wake_sysctl_walk(bus);
1093
1094     ACPI_DEBUG_PRINT((ACPI_DB_OBJECTS, "done attaching children\n"));
1095     return_VOID;
1096 }
1097
1098 /*
1099  * Evaluate a child device and determine whether we might attach a device to
1100  * it.
1101  */
1102 static ACPI_STATUS
1103 acpi_probe_child(ACPI_HANDLE handle, UINT32 level, void *context, void **status)
1104 {
1105     ACPI_OBJECT_TYPE    type;
1106     device_t            child, bus = (device_t)context;
1107
1108     ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__);
1109
1110     /* Skip this device if we think we'll have trouble with it. */
1111     if (acpi_avoid(handle)) {
1112         ACPI_DEBUG_PRINT((ACPI_DB_OBJECTS, "not scanning '%s'\n",
1113                          acpi_name(handle)));
1114         return_ACPI_STATUS (AE_OK);
1115     }
1116
1117     if (ACPI_SUCCESS(AcpiGetType(handle, &type))) {
1118         switch(type) {
1119         case ACPI_TYPE_DEVICE:
1120         case ACPI_TYPE_PROCESSOR:
1121         case ACPI_TYPE_THERMAL:
1122         case ACPI_TYPE_POWER:
1123             if (acpi_disabled("children"))
1124                 break;
1125
1126             /* 
1127              * Create a placeholder device for this node.  Sort the placeholder
1128              * so that the probe/attach passes will run breadth-first.
1129              */
1130             ACPI_DEBUG_PRINT((ACPI_DB_OBJECTS, "scanning '%s'\n",
1131                              acpi_name(handle)));
1132             child = BUS_ADD_CHILD(bus, level * 10, NULL, -1);
1133             if (child == NULL)
1134                 break;
1135             acpi_set_handle(child, handle);
1136
1137             /* Check if the device can generate wake events. */
1138             if (ACPI_SUCCESS(AcpiEvaluateObject(handle, "_PRW", NULL, NULL)))
1139                 device_set_flags(child, ACPI_FLAG_WAKE_CAPABLE);
1140
1141             /*
1142              * Check that the device is present.  If it's not present,
1143              * leave it disabled (so that we have a device_t attached to
1144              * the handle, but we don't probe it).
1145              */
1146             if (type == ACPI_TYPE_DEVICE && !acpi_DeviceIsPresent(child)) {
1147                 device_disable(child);
1148                 break;
1149             }
1150
1151             /*
1152              * Get the device's resource settings and attach them.
1153              * Note that if the device has _PRS but no _CRS, we need
1154              * to decide when it's appropriate to try to configure the
1155              * device.  Ignore the return value here; it's OK for the
1156              * device not to have any resources.
1157              */
1158             acpi_parse_resources(child, handle, &acpi_res_parse_set, NULL);
1159
1160             /* If we're debugging, probe/attach now rather than later */
1161             ACPI_DEBUG_EXEC(device_probe_and_attach(child));
1162             break;
1163         }
1164     }
1165
1166     return_ACPI_STATUS (AE_OK);
1167 }
1168
1169 static void
1170 acpi_shutdown_pre_sync(void *arg, int howto)
1171 {
1172     struct acpi_softc *sc = arg;
1173
1174     ACPI_ASSERTLOCK;
1175
1176     /*
1177      * Disable all ACPI events before soft off, otherwise the system
1178      * will be turned on again on some laptops.
1179      *
1180      * XXX this should probably be restricted to masking some events just
1181      *     before powering down, since we may still need ACPI during the
1182      *     shutdown process.
1183      */
1184     if (sc->acpi_disable_on_poweroff)
1185         acpi_Disable(sc);
1186 }
1187
1188 static void
1189 acpi_shutdown_final(void *arg, int howto)
1190 {
1191     ACPI_STATUS status;
1192     ACPI_ASSERTLOCK;
1193
1194     /*
1195      * If powering off, run the actual shutdown code on each processor.
1196      * It will only perform the shutdown on the BSP.  Some chipsets do
1197      * not power off the system correctly if called from an AP.
1198      */
1199     if ((howto & RB_POWEROFF) != 0) {
1200         status = AcpiEnterSleepStatePrep(ACPI_STATE_S5);
1201         if (ACPI_FAILURE(status)) {
1202             printf("AcpiEnterSleepStatePrep failed - %s\n",
1203                    AcpiFormatException(status));
1204             return;
1205         }
1206         printf("Powering system off using ACPI\n");
1207         acpi_shutdown_poweroff(NULL);
1208     } else {
1209         printf("Shutting down ACPI\n");
1210         AcpiTerminate();
1211     }
1212 }
1213
1214 /*
1215  * Since this function may be called with locks held or in an unknown
1216  * context, it cannot allocate memory, acquire locks, sleep, etc.
1217  */
1218 static void
1219 acpi_shutdown_poweroff(void *arg)
1220 {
1221     ACPI_STATUS status;
1222
1223     ACPI_ASSERTLOCK;
1224
1225     /* Only attempt to power off if this is the BSP (cpuid 0). */
1226     if (mdcpu->mi.gd_cpuid != 0)
1227         return;
1228
1229     ACPI_DISABLE_IRQS();
1230     status = AcpiEnterSleepState(ACPI_STATE_S5);
1231     if (ACPI_FAILURE(status)) {
1232         printf("ACPI power-off failed - %s\n", AcpiFormatException(status));
1233     } else {
1234         DELAY(1000000);
1235         printf("ACPI power-off failed - timeout\n");
1236     }
1237 }
1238
1239 static void
1240 acpi_enable_fixed_events(struct acpi_softc *sc)
1241 {
1242     static int  first_time = 1;
1243
1244     ACPI_ASSERTLOCK;
1245
1246     /* Enable and clear fixed events and install handlers. */
1247     if (AcpiGbl_FADT != NULL && AcpiGbl_FADT->PwrButton == 0) {
1248         AcpiClearEvent(ACPI_EVENT_POWER_BUTTON);
1249         AcpiInstallFixedEventHandler(ACPI_EVENT_POWER_BUTTON,
1250                                      acpi_event_power_button_sleep, sc);
1251         if (first_time)
1252             device_printf(sc->acpi_dev, "Power Button (fixed)\n");
1253     }
1254     if (AcpiGbl_FADT != NULL && AcpiGbl_FADT->SleepButton == 0) {
1255         AcpiClearEvent(ACPI_EVENT_SLEEP_BUTTON);
1256         AcpiInstallFixedEventHandler(ACPI_EVENT_SLEEP_BUTTON,
1257                                      acpi_event_sleep_button_sleep, sc);
1258         if (first_time)
1259             device_printf(sc->acpi_dev, "Sleep Button (fixed)\n");
1260     }
1261
1262     first_time = 0;
1263 }
1264
1265 /*
1266  * Returns true if the device is actually present and should
1267  * be attached to.  This requires the present, enabled, UI-visible 
1268  * and diagnostics-passed bits to be set.
1269  */
1270 BOOLEAN
1271 acpi_DeviceIsPresent(device_t dev)
1272 {
1273     ACPI_DEVICE_INFO    *devinfo;
1274     ACPI_HANDLE         h;
1275     ACPI_BUFFER         buf;
1276     ACPI_STATUS         error;
1277     int                 ret;
1278
1279     ACPI_ASSERTLOCK;
1280     
1281     ret = FALSE;
1282     if ((h = acpi_get_handle(dev)) == NULL)
1283         return (FALSE);
1284     buf.Pointer = NULL;
1285     buf.Length = ACPI_ALLOCATE_BUFFER;
1286     error = AcpiGetObjectInfo(h, &buf);
1287     if (ACPI_FAILURE(error))
1288         return (FALSE);
1289     devinfo = (ACPI_DEVICE_INFO *)buf.Pointer;
1290
1291     /* If no _STA method, must be present */
1292     if ((devinfo->Valid & ACPI_VALID_STA) == 0)
1293         ret = TRUE;
1294
1295     /* Return true for 'present' and 'functioning' */
1296     if ((devinfo->CurrentStatus & 0x9) == 0x9)
1297         ret = TRUE;
1298
1299     AcpiOsFree(buf.Pointer);
1300     return (ret);
1301 }
1302
1303 /*
1304  * Returns true if the battery is actually present and inserted.
1305  */
1306 BOOLEAN
1307 acpi_BatteryIsPresent(device_t dev)
1308 {
1309     ACPI_DEVICE_INFO    *devinfo;
1310     ACPI_HANDLE         h;
1311     ACPI_BUFFER         buf;
1312     ACPI_STATUS         error;
1313     int                 ret;
1314
1315     ACPI_ASSERTLOCK;
1316     
1317     ret = FALSE;
1318     if ((h = acpi_get_handle(dev)) == NULL)
1319         return (FALSE);
1320     buf.Pointer = NULL;
1321     buf.Length = ACPI_ALLOCATE_BUFFER;
1322     error = AcpiGetObjectInfo(h, &buf);
1323     if (ACPI_FAILURE(error))
1324         return (FALSE);
1325     devinfo = (ACPI_DEVICE_INFO *)buf.Pointer;
1326
1327     /* If no _STA method, must be present */
1328     if ((devinfo->Valid & ACPI_VALID_STA) == 0)
1329         ret = TRUE;
1330
1331     /* Return true for 'present' and 'functioning' */
1332     if ((devinfo->CurrentStatus & 0x19) == 0x19)
1333         ret = TRUE;
1334
1335     AcpiOsFree(buf.Pointer);
1336     return (ret);
1337 }
1338
1339 /*
1340  * Match a HID string against a device
1341  */
1342 BOOLEAN
1343 acpi_MatchHid(device_t dev, char *hid) 
1344 {
1345     ACPI_DEVICE_INFO    *devinfo;
1346     ACPI_HANDLE         h;
1347     ACPI_BUFFER         buf;
1348     ACPI_STATUS         error;
1349     int                 ret, i;
1350
1351     ACPI_ASSERTLOCK;
1352
1353     ret = FALSE;
1354     if (hid == NULL)
1355         return (FALSE);
1356     if ((h = acpi_get_handle(dev)) == NULL)
1357         return (FALSE);
1358     buf.Pointer = NULL;
1359     buf.Length = ACPI_ALLOCATE_BUFFER;
1360     error = AcpiGetObjectInfo(h, &buf);
1361     if (ACPI_FAILURE(error))
1362         return (FALSE);
1363     devinfo = (ACPI_DEVICE_INFO *)buf.Pointer;
1364
1365     if ((devinfo->Valid & ACPI_VALID_HID) != 0 &&
1366         strcmp(hid, devinfo->HardwareId.Value) == 0)
1367             ret = TRUE;
1368     else if ((devinfo->Valid & ACPI_VALID_CID) != 0) {
1369         for (i = 0; i < devinfo->CompatibilityId.Count; i++) {
1370             if (strcmp(hid, devinfo->CompatibilityId.Id[i].Value) == 0) {
1371                 ret = TRUE;
1372                 break;
1373             }
1374         }
1375     }
1376
1377     AcpiOsFree(buf.Pointer);
1378     return (ret);
1379 }
1380
1381 /*
1382  * Return the handle of a named object within our scope, ie. that of (parent)
1383  * or one if its parents.
1384  */
1385 ACPI_STATUS
1386 acpi_GetHandleInScope(ACPI_HANDLE parent, char *path, ACPI_HANDLE *result)
1387 {
1388     ACPI_HANDLE         r;
1389     ACPI_STATUS         status;
1390
1391     ACPI_ASSERTLOCK;
1392
1393     /* Walk back up the tree to the root */
1394     for (;;) {
1395         status = AcpiGetHandle(parent, path, &r);
1396         if (ACPI_SUCCESS(status)) {
1397             *result = r;
1398             return (AE_OK);
1399         }
1400         if (status != AE_NOT_FOUND)
1401             return (AE_OK);
1402         if (ACPI_FAILURE(AcpiGetParent(parent, &r)))
1403             return (AE_NOT_FOUND);
1404         parent = r;
1405     }
1406 }
1407
1408 /* Find the difference between two PM tick counts. */
1409 uint32_t
1410 acpi_TimerDelta(uint32_t end, uint32_t start)
1411 {
1412     uint32_t delta;
1413
1414     if (end >= start)
1415         delta = end - start;
1416     else if (AcpiGbl_FADT->TmrValExt == 0)
1417         delta = ((0x00FFFFFF - start) + end + 1) & 0x00FFFFFF;
1418     else
1419         delta = ((0xFFFFFFFF - start) + end + 1);
1420     return (delta);
1421 }
1422
1423 /*
1424  * Allocate a buffer with a preset data size.
1425  */
1426 ACPI_BUFFER *
1427 acpi_AllocBuffer(int size)
1428 {
1429     ACPI_BUFFER *buf;
1430
1431     buf = malloc(size + sizeof(*buf), M_ACPIDEV, M_INTWAIT);
1432     buf->Length = size;
1433     buf->Pointer = (void *)(buf + 1);
1434     return (buf);
1435 }
1436
1437 ACPI_STATUS
1438 acpi_SetInteger(ACPI_HANDLE handle, char *path, UINT32 number)
1439 {
1440     ACPI_OBJECT arg1;
1441     ACPI_OBJECT_LIST args;
1442
1443     ACPI_ASSERTLOCK;
1444
1445     arg1.Type = ACPI_TYPE_INTEGER;
1446     arg1.Integer.Value = number;
1447     args.Count = 1;
1448     args.Pointer = &arg1;
1449
1450     return (AcpiEvaluateObject(handle, path, &args, NULL));
1451 }
1452
1453 /*
1454  * Evaluate a path that should return an integer.
1455  */
1456 ACPI_STATUS
1457 acpi_GetInteger(ACPI_HANDLE handle, char *path, UINT32 *number)
1458 {
1459     ACPI_STATUS status;
1460     ACPI_BUFFER buf;
1461     ACPI_OBJECT param;
1462
1463     ACPI_ASSERTLOCK;
1464
1465     if (handle == NULL)
1466         handle = ACPI_ROOT_OBJECT;
1467
1468     /*
1469      * Assume that what we've been pointed at is an Integer object, or
1470      * a method that will return an Integer.
1471      */
1472     buf.Pointer = &param;
1473     buf.Length = sizeof(param);
1474     status = AcpiEvaluateObject(handle, path, NULL, &buf);
1475     if (ACPI_SUCCESS(status)) {
1476         if (param.Type == ACPI_TYPE_INTEGER)
1477             *number = param.Integer.Value;
1478         else
1479             status = AE_TYPE;
1480     }
1481
1482     /* 
1483      * In some applications, a method that's expected to return an Integer
1484      * may instead return a Buffer (probably to simplify some internal
1485      * arithmetic).  We'll try to fetch whatever it is, and if it's a Buffer,
1486      * convert it into an Integer as best we can.
1487      *
1488      * This is a hack.
1489      */
1490     if (status == AE_BUFFER_OVERFLOW) {
1491         if ((buf.Pointer = AcpiOsAllocate(buf.Length)) == NULL) {
1492             status = AE_NO_MEMORY;
1493         } else {
1494             status = AcpiEvaluateObject(handle, path, NULL, &buf);
1495             if (ACPI_SUCCESS(status))
1496                 status = acpi_ConvertBufferToInteger(&buf, number);
1497             AcpiOsFree(buf.Pointer);
1498         }
1499     }
1500     return (status);
1501 }
1502
1503 ACPI_STATUS
1504 acpi_ConvertBufferToInteger(ACPI_BUFFER *bufp, UINT32 *number)
1505 {
1506     ACPI_OBJECT *p;
1507     UINT8       *val;
1508     int         i;
1509
1510     p = (ACPI_OBJECT *)bufp->Pointer;
1511     if (p->Type == ACPI_TYPE_INTEGER) {
1512         *number = p->Integer.Value;
1513         return (AE_OK);
1514     }
1515     if (p->Type != ACPI_TYPE_BUFFER)
1516         return (AE_TYPE);
1517     if (p->Buffer.Length > sizeof(int))
1518         return (AE_BAD_DATA);
1519
1520     *number = 0;
1521     val = p->Buffer.Pointer;
1522     for (i = 0; i < p->Buffer.Length; i++)
1523         *number += val[i] << (i * 8);
1524     return (AE_OK);
1525 }
1526
1527 /*
1528  * Iterate over the elements of an a package object, calling the supplied
1529  * function for each element.
1530  *
1531  * XXX possible enhancement might be to abort traversal on error.
1532  */
1533 ACPI_STATUS
1534 acpi_ForeachPackageObject(ACPI_OBJECT *pkg,
1535         void (*func)(ACPI_OBJECT *comp, void *arg), void *arg)
1536 {
1537     ACPI_OBJECT *comp;
1538     int         i;
1539     
1540     if (pkg == NULL || pkg->Type != ACPI_TYPE_PACKAGE)
1541         return (AE_BAD_PARAMETER);
1542
1543     /* Iterate over components */
1544     i = 0;
1545     comp = pkg->Package.Elements;
1546     for (; i < pkg->Package.Count; i++, comp++)
1547         func(comp, arg);
1548
1549     return (AE_OK);
1550 }
1551
1552 /*
1553  * Find the (index)th resource object in a set.
1554  */
1555 ACPI_STATUS
1556 acpi_FindIndexedResource(ACPI_BUFFER *buf, int index, ACPI_RESOURCE **resp)
1557 {
1558     ACPI_RESOURCE       *rp;
1559     int                 i;
1560
1561     rp = (ACPI_RESOURCE *)buf->Pointer;
1562     i = index;
1563     while (i-- > 0) {
1564         /* Range check */       
1565         if (rp > (ACPI_RESOURCE *)((u_int8_t *)buf->Pointer + buf->Length))
1566             return (AE_BAD_PARAMETER);
1567
1568         /* Check for terminator */
1569         if (rp->Id == ACPI_RSTYPE_END_TAG || rp->Length == 0)
1570             return (AE_NOT_FOUND);
1571         rp = ACPI_NEXT_RESOURCE(rp);
1572     }
1573     if (resp != NULL)
1574         *resp = rp;
1575
1576     return (AE_OK);
1577 }
1578
1579 /*
1580  * Append an ACPI_RESOURCE to an ACPI_BUFFER.
1581  *
1582  * Given a pointer to an ACPI_RESOURCE structure, expand the ACPI_BUFFER
1583  * provided to contain it.  If the ACPI_BUFFER is empty, allocate a sensible
1584  * backing block.  If the ACPI_RESOURCE is NULL, return an empty set of
1585  * resources.
1586  */
1587 #define ACPI_INITIAL_RESOURCE_BUFFER_SIZE       512
1588
1589 ACPI_STATUS
1590 acpi_AppendBufferResource(ACPI_BUFFER *buf, ACPI_RESOURCE *res)
1591 {
1592     ACPI_RESOURCE       *rp;
1593     void                *newp;
1594     
1595     /* Initialise the buffer if necessary. */
1596     if (buf->Pointer == NULL) {
1597         buf->Length = ACPI_INITIAL_RESOURCE_BUFFER_SIZE;
1598         if ((buf->Pointer = AcpiOsAllocate(buf->Length)) == NULL)
1599             return (AE_NO_MEMORY);
1600         rp = (ACPI_RESOURCE *)buf->Pointer;
1601         rp->Id = ACPI_RSTYPE_END_TAG;
1602         rp->Length = 0;
1603     }
1604     if (res == NULL)
1605         return (AE_OK);
1606     
1607     /*
1608      * Scan the current buffer looking for the terminator.
1609      * This will either find the terminator or hit the end
1610      * of the buffer and return an error.
1611      */
1612     rp = (ACPI_RESOURCE *)buf->Pointer;
1613     for (;;) {
1614         /* Range check, don't go outside the buffer */
1615         if (rp >= (ACPI_RESOURCE *)((u_int8_t *)buf->Pointer + buf->Length))
1616             return (AE_BAD_PARAMETER);
1617         if (rp->Id == ACPI_RSTYPE_END_TAG || rp->Length == 0)
1618             break;
1619         rp = ACPI_NEXT_RESOURCE(rp);
1620     }
1621
1622     /*
1623      * Check the size of the buffer and expand if required.
1624      *
1625      * Required size is:
1626      *  size of existing resources before terminator + 
1627      *  size of new resource and header +
1628      *  size of terminator.
1629      *
1630      * Note that this loop should really only run once, unless
1631      * for some reason we are stuffing a *really* huge resource.
1632      */
1633     while ((((u_int8_t *)rp - (u_int8_t *)buf->Pointer) + 
1634             res->Length + ACPI_RESOURCE_LENGTH_NO_DATA +
1635             ACPI_RESOURCE_LENGTH) >= buf->Length) {
1636         if ((newp = AcpiOsAllocate(buf->Length * 2)) == NULL)
1637             return (AE_NO_MEMORY);
1638         bcopy(buf->Pointer, newp, buf->Length);
1639         rp = (ACPI_RESOURCE *)((u_int8_t *)newp +
1640                                ((u_int8_t *)rp - (u_int8_t *)buf->Pointer));
1641         AcpiOsFree(buf->Pointer);
1642         buf->Pointer = newp;
1643         buf->Length += buf->Length;
1644     }
1645     
1646     /* Insert the new resource. */
1647     bcopy(res, rp, res->Length + ACPI_RESOURCE_LENGTH_NO_DATA);
1648     
1649     /* And add the terminator. */
1650     rp = ACPI_NEXT_RESOURCE(rp);
1651     rp->Id = ACPI_RSTYPE_END_TAG;
1652     rp->Length = 0;
1653
1654     return (AE_OK);
1655 }
1656
1657 /*
1658  * Set interrupt model.
1659  */
1660 ACPI_STATUS
1661 acpi_SetIntrModel(int model)
1662 {
1663     return (acpi_SetInteger(ACPI_ROOT_OBJECT, "_PIC", model));
1664 }
1665
1666 #define ACPI_MINIMUM_AWAKETIME  5
1667
1668 static void
1669 acpi_sleep_enable(void *arg)
1670 {
1671     ((struct acpi_softc *)arg)->acpi_sleep_disabled = 0;
1672 }
1673
1674 /*
1675  * Set the system sleep state
1676  *
1677  * Currently we support S1-S5 but S4 is only S4BIOS
1678  */
1679 ACPI_STATUS
1680 acpi_SetSleepState(struct acpi_softc *sc, int state)
1681 {
1682     ACPI_STATUS status = AE_OK;
1683     UINT8       TypeA;
1684     UINT8       TypeB;
1685
1686     ACPI_FUNCTION_TRACE_U32((char *)(uintptr_t)__func__, state);
1687     ACPI_ASSERTLOCK;
1688
1689     /* Avoid reentry if already attempting to suspend. */
1690     if (sc->acpi_sstate != ACPI_STATE_S0)
1691         return_ACPI_STATUS (AE_BAD_PARAMETER);
1692
1693     /* We recently woke up so don't suspend again for a while. */
1694     if (sc->acpi_sleep_disabled)
1695         return_ACPI_STATUS (AE_OK);
1696
1697     switch (state) {
1698     case ACPI_STATE_S1:
1699     case ACPI_STATE_S2:
1700     case ACPI_STATE_S3:
1701     case ACPI_STATE_S4:
1702         status = AcpiGetSleepTypeData((UINT8)state, &TypeA, &TypeB);
1703         if (status == AE_NOT_FOUND) {
1704             device_printf(sc->acpi_dev,
1705                           "Sleep state S%d not supported by BIOS\n", state);
1706             break;
1707         } else if (ACPI_FAILURE(status)) {
1708             device_printf(sc->acpi_dev, "AcpiGetSleepTypeData failed - %s\n",
1709                           AcpiFormatException(status));
1710             break;
1711         }
1712
1713         sc->acpi_sstate = state;
1714         sc->acpi_sleep_disabled = 1;
1715
1716         /* Disable all wake GPEs not appropriate for this state. */
1717         acpi_wake_limit_walk(state);
1718
1719         /* Inform all devices that we are going to sleep. */
1720         if (DEVICE_SUSPEND(root_bus) != 0) {
1721             /*
1722              * Re-wake the system.
1723              *
1724              * XXX note that a better two-pass approach with a 'veto' pass
1725              *     followed by a "real thing" pass would be better, but the
1726              *     current bus interface does not provide for this.
1727              */
1728             DEVICE_RESUME(root_bus);
1729             return_ACPI_STATUS (AE_ERROR);
1730         }
1731
1732         status = AcpiEnterSleepStatePrep(state);
1733         if (ACPI_FAILURE(status)) {
1734             device_printf(sc->acpi_dev, "AcpiEnterSleepStatePrep failed - %s\n",
1735                           AcpiFormatException(status));
1736             break;
1737         }
1738
1739         if (sc->acpi_sleep_delay > 0)
1740             DELAY(sc->acpi_sleep_delay * 1000000);
1741
1742         if (state != ACPI_STATE_S1) {
1743             acpi_sleep_machdep(sc, state);
1744
1745             /* AcpiEnterSleepState() may be incomplete, unlock if locked. */
1746             if (AcpiGbl_MutexInfo[ACPI_MTX_HARDWARE].OwnerId !=
1747                 ACPI_MUTEX_NOT_ACQUIRED) {
1748
1749                 AcpiUtReleaseMutex(ACPI_MTX_HARDWARE);
1750             }
1751
1752             /* Re-enable ACPI hardware on wakeup from sleep state 4. */
1753             if (state == ACPI_STATE_S4)
1754                 AcpiEnable();
1755         } else {
1756             status = AcpiEnterSleepState((UINT8)state);
1757             if (ACPI_FAILURE(status)) {
1758                 device_printf(sc->acpi_dev, "AcpiEnterSleepState failed - %s\n",
1759                               AcpiFormatException(status));
1760                 break;
1761             }
1762         }
1763         AcpiLeaveSleepState((UINT8)state);
1764         DEVICE_RESUME(root_bus);
1765         sc->acpi_sstate = ACPI_STATE_S0;
1766         acpi_enable_fixed_events(sc);
1767         break;
1768     case ACPI_STATE_S5:
1769         /*
1770          * Shut down cleanly and power off.  This will call us back through the
1771          * shutdown handlers.
1772          */
1773         shutdown_nice(RB_POWEROFF);
1774         break;
1775     case ACPI_STATE_S0:
1776     default:
1777         status = AE_BAD_PARAMETER;
1778         break;
1779     }
1780
1781     /* Disable a second sleep request for a short period */
1782     if (sc->acpi_sleep_disabled)
1783         callout_reset(&sc->acpi_sleep_timer, hz * ACPI_MINIMUM_AWAKETIME,
1784                       acpi_sleep_enable, sc);
1785
1786     return_ACPI_STATUS (status);
1787 }
1788
1789 /* Initialize a device's wake GPE. */
1790 int
1791 acpi_wake_init(device_t dev, int type)
1792 {
1793     struct acpi_prw_data prw;
1794
1795     /* Check that the device can wake the system. */
1796     if ((device_get_flags(dev) & ACPI_FLAG_WAKE_CAPABLE) == 0)
1797         return (ENXIO);
1798
1799     /* Evaluate _PRW to find the GPE. */
1800     if (acpi_parse_prw(acpi_get_handle(dev), &prw) != 0)
1801         return (ENXIO);
1802
1803     /* Set the requested type for the GPE (runtime, wake, or both). */
1804     if (ACPI_FAILURE(AcpiSetGpeType(prw.gpe_handle, prw.gpe_bit, type))) {
1805         device_printf(dev, "set GPE type failed\n");
1806         return (ENXIO);
1807     }
1808
1809     return (0);
1810 }
1811
1812 /* Enable or disable the device's wake GPE. */
1813 int
1814 acpi_wake_set_enable(device_t dev, int enable)
1815 {
1816     struct acpi_prw_data prw;
1817     ACPI_HANDLE handle;
1818     ACPI_STATUS status;
1819     int flags;
1820
1821     /* Make sure the device supports waking the system. */
1822     flags = device_get_flags(dev);
1823     handle = acpi_get_handle(dev);
1824     if ((flags & ACPI_FLAG_WAKE_CAPABLE) == 0 || handle == NULL)
1825         return (ENXIO);
1826
1827     /* Evaluate _PRW to find the GPE. */
1828     if (acpi_parse_prw(handle, &prw) != 0)
1829         return (ENXIO);
1830
1831     if (enable) {
1832         status = AcpiEnableGpe(prw.gpe_handle, prw.gpe_bit, ACPI_NOT_ISR);
1833         if (ACPI_FAILURE(status)) {
1834             device_printf(dev, "enable wake failed\n");
1835             return (ENXIO);
1836         }
1837         device_set_flags(dev, flags | ACPI_FLAG_WAKE_ENABLED);
1838     } else {
1839         status = AcpiDisableGpe(prw.gpe_handle, prw.gpe_bit, ACPI_NOT_ISR);
1840         if (ACPI_FAILURE(status)) {
1841             device_printf(dev, "disable wake failed\n");
1842             return (ENXIO);
1843         }
1844         device_set_flags(dev, flags & ~ACPI_FLAG_WAKE_ENABLED);
1845     }
1846
1847     return (0);
1848 }
1849
1850 /* Configure a device's GPE appropriately for the new sleep state. */
1851 int
1852 acpi_wake_sleep_prep(device_t dev, int sstate)
1853 {
1854     struct acpi_prw_data prw;
1855     ACPI_HANDLE handle;
1856     int flags;
1857
1858     /* Check that this is an ACPI device and get its GPE. */
1859     flags = device_get_flags(dev);
1860     handle = acpi_get_handle(dev);
1861     if ((flags & ACPI_FLAG_WAKE_CAPABLE) == 0 || handle == NULL)
1862         return (ENXIO);
1863
1864     /* Evaluate _PRW to find the GPE. */
1865     if (acpi_parse_prw(handle, &prw) != 0)
1866         return (ENXIO);
1867
1868     /*
1869      * TBD: All Power Resources referenced by elements 2 through N
1870      *      of the _PRW object are put into the ON state.
1871      */
1872
1873     /*
1874      * If the user requested that this device wake the system and the next
1875      * sleep state is valid for this GPE, enable it and the device's wake
1876      * capability.  The sleep state must be less than (i.e., higher power)
1877      * or equal to the value specified by _PRW.  Return early, leaving
1878      * the appropriate power resources enabled.
1879      */
1880     if ((flags & ACPI_FLAG_WAKE_ENABLED) != 0 &&
1881         sstate <= prw.lowest_wake) {
1882         if (bootverbose)
1883             device_printf(dev, "wake_prep enabled gpe %#x for state %d\n",
1884                 prw.gpe_bit, sstate);
1885         AcpiEnableGpe(prw.gpe_handle, prw.gpe_bit, ACPI_NOT_ISR);
1886         acpi_SetInteger(handle, "_PSW", 1);
1887         return (0);
1888     }
1889
1890     /*
1891      * If the device wake was disabled or this sleep state is too low for
1892      * this device, disable its wake capability and GPE.
1893      */
1894     AcpiDisableGpe(prw.gpe_handle, prw.gpe_bit, ACPI_NOT_ISR);
1895     acpi_SetInteger(handle, "_PSW", 0);
1896     if (bootverbose)
1897         device_printf(dev, "wake_prep disabled gpe %#x for state %d\n",
1898             prw.gpe_bit, sstate);
1899
1900     /*
1901      * TBD: All Power Resources referenced by elements 2 through N
1902      *      of the _PRW object are put into the OFF state.
1903      */
1904
1905     return (0);
1906 }
1907
1908 /* Re-enable GPEs after wake. */
1909 int
1910 acpi_wake_run_prep(device_t dev)
1911 {
1912     struct acpi_prw_data prw;
1913     ACPI_HANDLE handle;
1914     int flags;
1915
1916     /* Check that this is an ACPI device and get its GPE. */
1917     flags = device_get_flags(dev);
1918     handle = acpi_get_handle(dev);
1919     if ((flags & ACPI_FLAG_WAKE_CAPABLE) == 0 || handle == NULL)
1920         return (ENXIO);
1921
1922     /* Evaluate _PRW to find the GPE. */
1923     if (acpi_parse_prw(handle, &prw) != 0)
1924         return (ENXIO);
1925
1926     /*
1927      * TBD: Be sure all Power Resources referenced by elements 2 through N
1928      *      of the _PRW object are in the ON state.
1929      */
1930
1931     /* Disable wake capability and if the user requested, enable the GPE. */
1932     acpi_SetInteger(handle, "_PSW", 0);
1933     if ((flags & ACPI_FLAG_WAKE_ENABLED) != 0)
1934         AcpiEnableGpe(prw.gpe_handle, prw.gpe_bit, ACPI_NOT_ISR);
1935     return (0);
1936 }
1937
1938 static ACPI_STATUS
1939 acpi_wake_limit(ACPI_HANDLE h, UINT32 level, void *context, void **status)
1940 {
1941     struct acpi_prw_data prw;
1942     int *sstate;
1943
1944     /* It's ok not to have _PRW if the device can't wake the system. */
1945     if (acpi_parse_prw(h, &prw) != 0)
1946         return (AE_OK);
1947
1948     sstate = (int *)context;
1949     if (*sstate > prw.lowest_wake)
1950         AcpiDisableGpe(prw.gpe_handle, prw.gpe_bit, ACPI_NOT_ISR);
1951
1952     return (AE_OK);
1953 }
1954
1955 /* Walk all system devices, disabling them if necessary for sstate. */
1956 static int
1957 acpi_wake_limit_walk(int sstate)
1958 {
1959     ACPI_HANDLE sb_handle;
1960
1961     if (ACPI_SUCCESS(AcpiGetHandle(ACPI_ROOT_OBJECT, "\\_SB_", &sb_handle)))
1962         AcpiWalkNamespace(ACPI_TYPE_ANY, sb_handle, 100,
1963             acpi_wake_limit, &sstate, NULL);
1964     return (0);
1965 }
1966
1967 /* Walk the tree rooted at acpi0 to attach per-device wake sysctls. */
1968 static int
1969 acpi_wake_sysctl_walk(device_t dev)
1970 {
1971     int error, i, numdevs;
1972     device_t *devlist;
1973     device_t child;
1974
1975     error = device_get_children(dev, &devlist, &numdevs);
1976     if (error != 0 || numdevs == 0)
1977         return (error);
1978     for (i = 0; i < numdevs; i++) {
1979         child = devlist[i];
1980         if (!device_is_attached(child))
1981             continue;
1982         if (device_get_flags(child) & ACPI_FLAG_WAKE_CAPABLE) {
1983 #ifdef dfly_notyet
1984             SYSCTL_ADD_PROC(device_get_sysctl_ctx(child),
1985                 SYSCTL_CHILDREN(device_get_sysctl_tree(child)), OID_AUTO,
1986                 "wake", CTLTYPE_INT | CTLFLAG_RW, child, 0,
1987                 acpi_wake_set_sysctl, "I", "Device set to wake the system");
1988 #endif /* dfly_notyet */
1989         }
1990         acpi_wake_sysctl_walk(child);
1991     }
1992     free(devlist, M_TEMP);
1993
1994     return (0);
1995 }
1996
1997 /* Enable or disable wake from userland. */
1998 static int
1999 acpi_wake_set_sysctl(SYSCTL_HANDLER_ARGS)
2000 {
2001     int enable, error;
2002     device_t dev;
2003
2004     dev = (device_t)arg1;
2005     enable = (device_get_flags(dev) & ACPI_FLAG_WAKE_ENABLED) ? 1 : 0;
2006
2007     error = sysctl_handle_int(oidp, &enable, 0, req);
2008     if (error != 0 || req->newptr == NULL)
2009         return (error);
2010     if (enable != 0 && enable != 1)
2011         return (EINVAL);
2012
2013     return (acpi_wake_set_enable(dev, enable));
2014 }
2015
2016 /* Parse a device's _PRW into a structure. */
2017 static int
2018 acpi_parse_prw(ACPI_HANDLE h, struct acpi_prw_data *prw)
2019 {
2020     ACPI_STATUS                 status;
2021     ACPI_BUFFER                 prw_buffer;
2022     ACPI_OBJECT                 *res, *res2;
2023     int error;
2024
2025     if (h == NULL || prw == NULL)
2026         return (EINVAL);
2027
2028     /*
2029      * The _PRW object (7.2.9) is only required for devices that have the
2030      * ability to wake the system from a sleeping state.
2031      */
2032     error = EINVAL;
2033     prw_buffer.Pointer = NULL;
2034     prw_buffer.Length = ACPI_ALLOCATE_BUFFER;
2035     status = AcpiEvaluateObject(h, "_PRW", NULL, &prw_buffer);
2036     if (ACPI_FAILURE(status))
2037         return (ENOENT);
2038     res = (ACPI_OBJECT *)prw_buffer.Pointer;
2039     if (res == NULL)
2040         return (ENOENT);
2041     if (!ACPI_PKG_VALID(res, 2))
2042         goto out;
2043
2044     /*
2045      * Element 1 of the _PRW object:
2046      * The lowest power system sleeping state that can be entered while still
2047      * providing wake functionality.  The sleeping state being entered must
2048      * be less than (i.e., higher power) or equal to this value.
2049      */
2050     if (acpi_PkgInt32(res, 1, &prw->lowest_wake) != 0)
2051         goto out;
2052
2053     /*
2054      * Element 0 of the _PRW object:
2055      */
2056     switch (res->Package.Elements[0].Type) {
2057     case ACPI_TYPE_INTEGER:
2058         /*
2059          * If the data type of this package element is numeric, then this
2060          * _PRW package element is the bit index in the GPEx_EN, in the
2061          * GPE blocks described in the FADT, of the enable bit that is
2062          * enabled for the wake event.
2063          */
2064         prw->gpe_handle = NULL;
2065         prw->gpe_bit = res->Package.Elements[0].Integer.Value;
2066         error = 0;
2067         break;
2068     case ACPI_TYPE_PACKAGE:
2069         /*
2070          * If the data type of this package element is a package, then this
2071          * _PRW package element is itself a package containing two
2072          * elements.  The first is an object reference to the GPE Block
2073          * device that contains the GPE that will be triggered by the wake
2074          * event.  The second element is numeric and it contains the bit
2075          * index in the GPEx_EN, in the GPE Block referenced by the
2076          * first element in the package, of the enable bit that is enabled for
2077          * the wake event.
2078          *
2079          * For example, if this field is a package then it is of the form:
2080          * Package() {\_SB.PCI0.ISA.GPE, 2}
2081          */
2082         res2 = &res->Package.Elements[0];
2083         if (!ACPI_PKG_VALID(res2, 2))
2084             goto out;
2085         prw->gpe_handle = acpi_GetReference(NULL, &res2->Package.Elements[0]);
2086         if (prw->gpe_handle == NULL)
2087             goto out;
2088         if (acpi_PkgInt32(res2, 1, &prw->gpe_bit) != 0)
2089             goto out;
2090         error = 0;
2091         break;
2092     default:
2093         goto out;
2094     }
2095
2096     /* XXX No power resource handling yet. */
2097     prw->power_res = NULL;
2098
2099 out:
2100     if (prw_buffer.Pointer != NULL)
2101         AcpiOsFree(prw_buffer.Pointer);
2102     return (error);
2103 }
2104
2105 /*
2106  * Enable/Disable ACPI
2107  */
2108 ACPI_STATUS
2109 acpi_Enable(struct acpi_softc *sc)
2110 {
2111     ACPI_STATUS status;
2112     u_int32_t   flags;
2113
2114     ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__);
2115     ACPI_ASSERTLOCK;
2116
2117     flags = ACPI_NO_ADDRESS_SPACE_INIT | ACPI_NO_HARDWARE_INIT |
2118             ACPI_NO_DEVICE_INIT | ACPI_NO_OBJECT_INIT;
2119     if (!sc->acpi_enabled)
2120         status = AcpiEnableSubsystem(flags);
2121     else
2122         status = AE_OK;
2123
2124     if (status == AE_OK)
2125         sc->acpi_enabled = 1;
2126
2127     return_ACPI_STATUS (status);
2128 }
2129
2130 ACPI_STATUS
2131 acpi_Disable(struct acpi_softc *sc)
2132 {
2133     ACPI_STATUS status;
2134
2135     ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__);
2136     ACPI_ASSERTLOCK;
2137
2138     if (sc->acpi_enabled)
2139         status = AcpiDisable();
2140     else
2141         status = AE_OK;
2142
2143     if (status == AE_OK)
2144         sc->acpi_enabled = 0;
2145
2146     return_ACPI_STATUS (status);
2147 }
2148
2149 /*
2150  * ACPI Event Handlers
2151  */
2152
2153 /* System Event Handlers (registered by EVENTHANDLER_REGISTER) */
2154
2155 static void
2156 acpi_system_eventhandler_sleep(void *arg, int state)
2157 {
2158     ACPI_LOCK_DECL;
2159     ACPI_FUNCTION_TRACE_U32((char *)(uintptr_t)__func__, state);
2160
2161     ACPI_LOCK;
2162     if (state >= ACPI_STATE_S0 && state <= ACPI_S_STATES_MAX)
2163         acpi_SetSleepState((struct acpi_softc *)arg, state);
2164     ACPI_UNLOCK;
2165     return_VOID;
2166 }
2167
2168 static void
2169 acpi_system_eventhandler_wakeup(void *arg, int state)
2170 {
2171     ACPI_LOCK_DECL;
2172     ACPI_FUNCTION_TRACE_U32((char *)(uintptr_t)__func__, state);
2173
2174     /* Well, what to do? :-) */
2175
2176     ACPI_LOCK;
2177     ACPI_UNLOCK;
2178
2179     return_VOID;
2180 }
2181
2182 /* 
2183  * ACPICA Event Handlers (FixedEvent, also called from button notify handler)
2184  */
2185 UINT32
2186 acpi_event_power_button_sleep(void *context)
2187 {
2188     struct acpi_softc   *sc = (struct acpi_softc *)context;
2189
2190     ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__);
2191
2192     EVENTHANDLER_INVOKE(acpi_sleep_event, sc->acpi_power_button_sx);
2193
2194     return_VALUE (ACPI_INTERRUPT_HANDLED);
2195 }
2196
2197 UINT32
2198 acpi_event_power_button_wake(void *context)
2199 {
2200     struct acpi_softc   *sc = (struct acpi_softc *)context;
2201
2202     ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__);
2203
2204     EVENTHANDLER_INVOKE(acpi_wakeup_event, sc->acpi_power_button_sx);
2205
2206     return_VALUE (ACPI_INTERRUPT_HANDLED);
2207 }
2208
2209 UINT32
2210 acpi_event_sleep_button_sleep(void *context)
2211 {
2212     struct acpi_softc   *sc = (struct acpi_softc *)context;
2213
2214     ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__);
2215
2216     EVENTHANDLER_INVOKE(acpi_sleep_event, sc->acpi_sleep_button_sx);
2217
2218     return_VALUE (ACPI_INTERRUPT_HANDLED);
2219 }
2220
2221 UINT32
2222 acpi_event_sleep_button_wake(void *context)
2223 {
2224     struct acpi_softc   *sc = (struct acpi_softc *)context;
2225
2226     ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__);
2227
2228     EVENTHANDLER_INVOKE(acpi_wakeup_event, sc->acpi_sleep_button_sx);
2229
2230     return_VALUE (ACPI_INTERRUPT_HANDLED);
2231 }
2232
2233 /*
2234  * XXX This is kinda ugly, and should not be here.
2235  */
2236 struct acpi_staticbuf {
2237     ACPI_BUFFER buffer;
2238     char        data[512];
2239 };
2240
2241 char *
2242 acpi_name(ACPI_HANDLE handle)
2243 {
2244     static struct acpi_staticbuf        buf;
2245
2246     ACPI_ASSERTLOCK;
2247
2248     buf.buffer.Length = 512;
2249     buf.buffer.Pointer = &buf.data[0];
2250
2251     if (ACPI_SUCCESS(AcpiGetName(handle, ACPI_FULL_PATHNAME, &buf.buffer)))
2252         return (buf.buffer.Pointer);
2253
2254     return ("(unknown path)");
2255 }
2256
2257 /*
2258  * Debugging/bug-avoidance.  Avoid trying to fetch info on various
2259  * parts of the namespace.
2260  */
2261 int
2262 acpi_avoid(ACPI_HANDLE handle)
2263 {
2264     char        *cp, *env, *np;
2265     int         len;
2266
2267     np = acpi_name(handle);
2268     if (*np == '\\')
2269         np++;
2270     if ((env = getenv("debug.acpi.avoid.paths")) == NULL &&
2271         (env = getenv("debug.acpi.avoid")) == NULL)
2272         return (0);
2273
2274     /* Scan the avoid list checking for a match */
2275     cp = env;
2276     for (;;) {
2277         while ((*cp != 0) && isspace(*cp))
2278             cp++;
2279         if (*cp == 0)
2280             break;
2281         len = 0;
2282         while ((cp[len] != 0) && !isspace(cp[len]))
2283             len++;
2284         if (!strncmp(cp, np, len)) {
2285             freeenv(env);
2286             return(1);
2287         }
2288         cp += len;
2289     }
2290     freeenv(env);
2291
2292     return (0);
2293 }
2294
2295 /*
2296  * Debugging/bug-avoidance.  Disable ACPI subsystem components.
2297  */
2298 int
2299 acpi_disabled(char *subsys)
2300 {
2301     char        *cp, *env;
2302     int         len;
2303
2304     if ((env = getenv("debug.acpi.disabled")) == NULL)
2305         return (0);
2306     if (strcmp(env, "all") == 0) {
2307         freeenv(env);
2308         return (1);
2309     }
2310
2311     /* Scan the disable list, checking for a match. */
2312     cp = env;
2313     for (;;) {
2314         while (*cp != '\0' && isspace(*cp))
2315             cp++;
2316         if (*cp == '\0')
2317             break;
2318         len = 0;
2319         while (cp[len] != '\0' && !isspace(cp[len]))
2320             len++;
2321         if (strncmp(cp, subsys, len) == 0) {
2322             freeenv(env);
2323             return (1);
2324         }
2325         cp += len;
2326     }
2327     freeenv(env);
2328
2329     return (0);
2330 }
2331
2332 /*
2333  * Control interface.
2334  *
2335  * We multiplex ioctls for all participating ACPI devices here.  Individual 
2336  * drivers wanting to be accessible via /dev/acpi should use the
2337  * register/deregister interface to make their handlers visible.
2338  */
2339 struct acpi_ioctl_hook
2340 {
2341     TAILQ_ENTRY(acpi_ioctl_hook) link;
2342     u_long                       cmd;
2343     acpi_ioctl_fn                fn;
2344     void                         *arg;
2345 };
2346
2347 static TAILQ_HEAD(,acpi_ioctl_hook)     acpi_ioctl_hooks;
2348 static int                              acpi_ioctl_hooks_initted;
2349
2350 /*
2351  * Register an ioctl handler.
2352  */
2353 int
2354 acpi_register_ioctl(u_long cmd, acpi_ioctl_fn fn, void *arg)
2355 {
2356     struct acpi_ioctl_hook      *hp;
2357
2358     hp = malloc(sizeof(*hp), M_ACPIDEV, M_INTWAIT);
2359     hp->cmd = cmd;
2360     hp->fn = fn;
2361     hp->arg = arg;
2362     if (acpi_ioctl_hooks_initted == 0) {
2363         TAILQ_INIT(&acpi_ioctl_hooks);
2364         acpi_ioctl_hooks_initted = 1;
2365     }
2366     TAILQ_INSERT_TAIL(&acpi_ioctl_hooks, hp, link);
2367     return (0);
2368 }
2369
2370 /*
2371  * Deregister an ioctl handler.
2372  */
2373 void    
2374 acpi_deregister_ioctl(u_long cmd, acpi_ioctl_fn fn)
2375 {
2376     struct acpi_ioctl_hook      *hp;
2377
2378     TAILQ_FOREACH(hp, &acpi_ioctl_hooks, link)
2379         if ((hp->cmd == cmd) && (hp->fn == fn))
2380             break;
2381
2382     if (hp != NULL) {
2383         TAILQ_REMOVE(&acpi_ioctl_hooks, hp, link);
2384         free(hp, M_ACPIDEV);
2385     }
2386 }
2387
2388 static int
2389 acpiopen(dev_t dev, int flag, int fmt, d_thread_t *td)
2390 {
2391     return (0);
2392 }
2393
2394 static int
2395 acpiclose(dev_t dev, int flag, int fmt, d_thread_t *td)
2396 {
2397     return (0);
2398 }
2399
2400 static int
2401 acpiioctl(dev_t dev, u_long cmd, caddr_t addr, int flag, d_thread_t *td)
2402 {
2403     struct acpi_softc           *sc;
2404     struct acpi_ioctl_hook      *hp;
2405     int                         error, xerror, state;
2406     ACPI_LOCK_DECL;
2407
2408     ACPI_LOCK;
2409
2410     error = state = 0;
2411     sc = dev->si_drv1;
2412
2413     /*
2414      * Scan the list of registered ioctls, looking for handlers.
2415      */
2416     if (acpi_ioctl_hooks_initted) {
2417         TAILQ_FOREACH(hp, &acpi_ioctl_hooks, link) {
2418             if (hp->cmd == cmd) {
2419                 xerror = hp->fn(cmd, addr, hp->arg);
2420                 if (xerror != 0)
2421                     error = xerror;
2422                 goto out;
2423             }
2424         }
2425     }
2426
2427     /*
2428      * Core ioctls are not permitted for non-writable user.
2429      * Currently, other ioctls just fetch information.
2430      * Not changing system behavior.
2431      */
2432     if((flag & FWRITE) == 0)
2433         return (EPERM);
2434
2435     /* Core system ioctls. */
2436     switch (cmd) {
2437     case ACPIIO_ENABLE:
2438         if (ACPI_FAILURE(acpi_Enable(sc)))
2439             error = ENXIO;
2440         break;
2441     case ACPIIO_DISABLE:
2442         if (ACPI_FAILURE(acpi_Disable(sc)))
2443             error = ENXIO;
2444         break;
2445     case ACPIIO_SETSLPSTATE:
2446         if (!sc->acpi_enabled) {
2447             error = ENXIO;
2448             break;
2449         }
2450         state = *(int *)addr;
2451         if (state >= ACPI_STATE_S0  && state <= ACPI_S_STATES_MAX) {
2452             if (ACPI_FAILURE(acpi_SetSleepState(sc, state)))
2453                 error = EINVAL;
2454         } else {
2455             error = EINVAL;
2456         }
2457         break;
2458     default:
2459         if (error == 0)
2460             error = EINVAL;
2461         break;
2462     }
2463
2464 out:
2465     ACPI_UNLOCK;
2466     return (error);
2467 }
2468
2469 static int
2470 acpi_supported_sleep_state_sysctl(SYSCTL_HANDLER_ARGS)
2471 {
2472     char sleep_state[4];
2473     char buf[16];
2474     int error;
2475     UINT8 state, TypeA, TypeB;
2476
2477     buf[0] = '\0';
2478     for (state = ACPI_STATE_S1; state < ACPI_S_STATES_MAX + 1; state++) {
2479         if (ACPI_SUCCESS(AcpiGetSleepTypeData(state, &TypeA, &TypeB))) {
2480             sprintf(sleep_state, "S%d ", state);
2481             strcat(buf, sleep_state);
2482         }
2483     }
2484     error = sysctl_handle_string(oidp, buf, sizeof(buf), req);
2485     return (error);
2486 }
2487
2488 static int
2489 acpi_sleep_state_sysctl(SYSCTL_HANDLER_ARGS)
2490 {
2491     char sleep_state[10];
2492     int error;
2493     u_int new_state, old_state;
2494
2495     old_state = *(u_int *)oidp->oid_arg1;
2496     if (old_state > ACPI_S_STATES_MAX + 1) {
2497         strcpy(sleep_state, "unknown");
2498     } else {
2499         bzero(sleep_state, sizeof(sleep_state));
2500         strncpy(sleep_state, sleep_state_names[old_state],
2501                 sizeof(sleep_state_names[old_state]));
2502     }
2503     error = sysctl_handle_string(oidp, sleep_state, sizeof(sleep_state), req);
2504     if (error == 0 && req->newptr != NULL) {
2505         new_state = ACPI_STATE_S0;
2506         for (; new_state <= ACPI_S_STATES_MAX + 1; new_state++) {
2507             if (strncmp(sleep_state, sleep_state_names[new_state],
2508                         sizeof(sleep_state)) == 0)
2509                 break;
2510         }
2511         if (new_state <= ACPI_S_STATES_MAX + 1) {
2512             if (new_state != old_state)
2513                 *(u_int *)oidp->oid_arg1 = new_state;
2514         } else {
2515             error = EINVAL;
2516         }
2517     }
2518
2519     return (error);
2520 }
2521
2522 /* Inform devctl(4) when we receive a Notify. */
2523 void
2524 acpi_UserNotify(const char *subsystem, ACPI_HANDLE h, uint8_t notify)
2525 {
2526     char                notify_buf[16];
2527     ACPI_BUFFER         handle_buf;
2528     ACPI_STATUS         status;
2529
2530     if (subsystem == NULL)
2531         return;
2532
2533     handle_buf.Pointer = NULL;
2534     handle_buf.Length = ACPI_ALLOCATE_BUFFER;
2535     status = AcpiNsHandleToPathname(h, &handle_buf);
2536     if (ACPI_FAILURE(status))
2537         return;
2538     snprintf(notify_buf, sizeof(notify_buf), "notify=0x%02x", notify);
2539 #if 0
2540     devctl_notify("ACPI", subsystem, handle_buf.Pointer, notify_buf);
2541 #endif
2542     AcpiOsFree(handle_buf.Pointer);
2543 }
2544
2545 #ifdef ACPI_DEBUG
2546 /*
2547  * Support for parsing debug options from the kernel environment.
2548  *
2549  * Bits may be set in the AcpiDbgLayer and AcpiDbgLevel debug registers
2550  * by specifying the names of the bits in the debug.acpi.layer and
2551  * debug.acpi.level environment variables.  Bits may be unset by 
2552  * prefixing the bit name with !.
2553  */
2554 struct debugtag
2555 {
2556     char        *name;
2557     UINT32      value;
2558 };
2559
2560 static struct debugtag  dbg_layer[] = {
2561     {"ACPI_UTILITIES",          ACPI_UTILITIES},
2562     {"ACPI_HARDWARE",           ACPI_HARDWARE},
2563     {"ACPI_EVENTS",             ACPI_EVENTS},
2564     {"ACPI_TABLES",             ACPI_TABLES},
2565     {"ACPI_NAMESPACE",          ACPI_NAMESPACE},
2566     {"ACPI_PARSER",             ACPI_PARSER},
2567     {"ACPI_DISPATCHER",         ACPI_DISPATCHER},
2568     {"ACPI_EXECUTER",           ACPI_EXECUTER},
2569     {"ACPI_RESOURCES",          ACPI_RESOURCES},
2570     {"ACPI_CA_DEBUGGER",        ACPI_CA_DEBUGGER},
2571     {"ACPI_OS_SERVICES",        ACPI_OS_SERVICES},
2572     {"ACPI_CA_DISASSEMBLER",    ACPI_CA_DISASSEMBLER},
2573     {"ACPI_ALL_COMPONENTS",     ACPI_ALL_COMPONENTS},
2574
2575     {"ACPI_AC_ADAPTER",         ACPI_AC_ADAPTER},
2576     {"ACPI_BATTERY",            ACPI_BATTERY},
2577     {"ACPI_BUS",                ACPI_BUS},
2578     {"ACPI_BUTTON",             ACPI_BUTTON},
2579     {"ACPI_EC",                 ACPI_EC},
2580     {"ACPI_FAN",                ACPI_FAN},
2581     {"ACPI_POWERRES",           ACPI_POWERRES},
2582     {"ACPI_PROCESSOR",          ACPI_PROCESSOR},
2583     {"ACPI_THERMAL",            ACPI_THERMAL},
2584     {"ACPI_TIMER",              ACPI_TIMER},
2585     {"ACPI_ALL_DRIVERS",        ACPI_ALL_DRIVERS},
2586     {NULL, 0}
2587 };
2588
2589 static struct debugtag dbg_level[] = {
2590     {"ACPI_LV_ERROR",           ACPI_LV_ERROR},
2591     {"ACPI_LV_WARN",            ACPI_LV_WARN},
2592     {"ACPI_LV_INIT",            ACPI_LV_INIT},
2593     {"ACPI_LV_DEBUG_OBJECT",    ACPI_LV_DEBUG_OBJECT},
2594     {"ACPI_LV_INFO",            ACPI_LV_INFO},
2595     {"ACPI_LV_ALL_EXCEPTIONS",  ACPI_LV_ALL_EXCEPTIONS},
2596
2597     /* Trace verbosity level 1 [Standard Trace Level] */
2598     {"ACPI_LV_INIT_NAMES",      ACPI_LV_INIT_NAMES},
2599     {"ACPI_LV_PARSE",           ACPI_LV_PARSE},
2600     {"ACPI_LV_LOAD",            ACPI_LV_LOAD},
2601     {"ACPI_LV_DISPATCH",        ACPI_LV_DISPATCH},
2602     {"ACPI_LV_EXEC",            ACPI_LV_EXEC},
2603     {"ACPI_LV_NAMES",           ACPI_LV_NAMES},
2604     {"ACPI_LV_OPREGION",        ACPI_LV_OPREGION},
2605     {"ACPI_LV_BFIELD",          ACPI_LV_BFIELD},
2606     {"ACPI_LV_TABLES",          ACPI_LV_TABLES},
2607     {"ACPI_LV_VALUES",          ACPI_LV_VALUES},
2608     {"ACPI_LV_OBJECTS",         ACPI_LV_OBJECTS},
2609     {"ACPI_LV_RESOURCES",       ACPI_LV_RESOURCES},
2610     {"ACPI_LV_USER_REQUESTS",   ACPI_LV_USER_REQUESTS},
2611     {"ACPI_LV_PACKAGE",         ACPI_LV_PACKAGE},
2612     {"ACPI_LV_VERBOSITY1",      ACPI_LV_VERBOSITY1},
2613
2614     /* Trace verbosity level 2 [Function tracing and memory allocation] */
2615     {"ACPI_LV_ALLOCATIONS",     ACPI_LV_ALLOCATIONS},
2616     {"ACPI_LV_FUNCTIONS",       ACPI_LV_FUNCTIONS},
2617     {"ACPI_LV_OPTIMIZATIONS",   ACPI_LV_OPTIMIZATIONS},
2618     {"ACPI_LV_VERBOSITY2",      ACPI_LV_VERBOSITY2},
2619     {"ACPI_LV_ALL",             ACPI_LV_ALL},
2620
2621     /* Trace verbosity level 3 [Threading, I/O, and Interrupts] */
2622     {"ACPI_LV_MUTEX",           ACPI_LV_MUTEX},
2623     {"ACPI_LV_THREADS",         ACPI_LV_THREADS},
2624     {"ACPI_LV_IO",              ACPI_LV_IO},
2625     {"ACPI_LV_INTERRUPTS",      ACPI_LV_INTERRUPTS},
2626     {"ACPI_LV_VERBOSITY3",      ACPI_LV_VERBOSITY3},
2627
2628     /* Exceptionally verbose output -- also used in the global "DebugLevel"  */
2629     {"ACPI_LV_AML_DISASSEMBLE", ACPI_LV_AML_DISASSEMBLE},
2630     {"ACPI_LV_VERBOSE_INFO",    ACPI_LV_VERBOSE_INFO},
2631     {"ACPI_LV_FULL_TABLES",     ACPI_LV_FULL_TABLES},
2632     {"ACPI_LV_EVENTS",          ACPI_LV_EVENTS},
2633     {"ACPI_LV_VERBOSE",         ACPI_LV_VERBOSE},
2634     {NULL, 0}
2635 };    
2636
2637 static void
2638 acpi_parse_debug(char *cp, struct debugtag *tag, UINT32 *flag)
2639 {
2640     char        *ep;
2641     int         i, l;
2642     int         set;
2643
2644     while (*cp) {
2645         if (isspace(*cp)) {
2646             cp++;
2647             continue;
2648         }
2649         ep = cp;
2650         while (*ep && !isspace(*ep))
2651             ep++;
2652         if (*cp == '!') {
2653             set = 0;
2654             cp++;
2655             if (cp == ep)
2656                 continue;
2657         } else {
2658             set = 1;
2659         }
2660         l = ep - cp;
2661         for (i = 0; tag[i].name != NULL; i++) {
2662             if (!strncmp(cp, tag[i].name, l)) {
2663                 if (set)
2664                     *flag |= tag[i].value;
2665                 else
2666                     *flag &= ~tag[i].value;
2667             }
2668         }
2669         cp = ep;
2670     }
2671 }
2672
2673 static void
2674 acpi_set_debugging(void *junk)
2675 {
2676     char        *layer, *level;
2677
2678     if (cold) {
2679         AcpiDbgLayer = 0;
2680         AcpiDbgLevel = 0;
2681     }
2682
2683     layer = getenv("debug.acpi.layer");
2684     level = getenv("debug.acpi.level");
2685     if (layer == NULL && level == NULL)
2686         return;
2687
2688     printf("ACPI set debug");
2689     if (layer != NULL) {
2690         if (strcmp("NONE", layer) != 0)
2691             printf(" layer '%s'", layer);
2692         acpi_parse_debug(layer, &dbg_layer[0], &AcpiDbgLayer);
2693         freeenv(layer);
2694     }
2695     if (level != NULL) {
2696         if (strcmp("NONE", level) != 0)
2697             printf(" level '%s'", level);
2698         acpi_parse_debug(level, &dbg_level[0], &AcpiDbgLevel);
2699         freeenv(level);
2700     }
2701     printf("\n");
2702 }
2703 SYSINIT(acpi_debugging, SI_SUB_TUNABLES, SI_ORDER_ANY, acpi_set_debugging,
2704         NULL);
2705
2706 static int
2707 acpi_debug_sysctl(SYSCTL_HANDLER_ARGS)
2708 {
2709     int          error, *dbg;
2710     struct       debugtag *tag;
2711     struct       sbuf sb;
2712
2713     if (sbuf_new(&sb, NULL, 128, SBUF_AUTOEXTEND) == NULL)
2714         return (ENOMEM);
2715     if (strcmp(oidp->oid_arg1, "debug.acpi.layer") == 0) {
2716         tag = &dbg_layer[0];
2717         dbg = &AcpiDbgLayer;
2718     } else {
2719         tag = &dbg_level[0];
2720         dbg = &AcpiDbgLevel;
2721     }
2722
2723     /* Get old values if this is a get request. */
2724     if (*dbg == 0) {
2725         sbuf_cpy(&sb, "NONE");
2726     } else if (req->newptr == NULL) {
2727         for (; tag->name != NULL; tag++) {
2728             if ((*dbg & tag->value) == tag->value)
2729                 sbuf_printf(&sb, "%s ", tag->name);
2730         }
2731     }
2732     sbuf_trim(&sb);
2733     sbuf_finish(&sb);
2734
2735     /* Copy out the old values to the user. */
2736     error = SYSCTL_OUT(req, sbuf_data(&sb), sbuf_len(&sb));
2737     sbuf_delete(&sb);
2738
2739     /* If the user is setting a string, parse it. */
2740     if (error == 0 && req->newptr != NULL) {
2741         *dbg = 0;
2742         /* XXX setenv((char *)oidp->oid_arg1, (char *)req->newptr); */
2743         acpi_set_debugging(NULL);
2744     }
2745
2746     return (error);
2747 }
2748 SYSCTL_PROC(_debug_acpi, OID_AUTO, layer, CTLFLAG_RW | CTLTYPE_STRING,
2749             "debug.acpi.layer", 0, acpi_debug_sysctl, "A", "");
2750 SYSCTL_PROC(_debug_acpi, OID_AUTO, level, CTLFLAG_RW | CTLTYPE_STRING,
2751             "debug.acpi.level", 0, acpi_debug_sysctl, "A", "");
2752 #endif
2753
2754 static int
2755 acpi_pm_func(u_long cmd, void *arg, ...)
2756 {
2757         int     state, acpi_state;
2758         int     error;
2759         struct  acpi_softc *sc;
2760         va_list ap;
2761
2762         error = 0;
2763         switch (cmd) {
2764         case POWER_CMD_SUSPEND:
2765                 sc = (struct acpi_softc *)arg;
2766                 if (sc == NULL) {
2767                         error = EINVAL;
2768                         goto out;
2769                 }
2770
2771                 va_start(ap, arg);
2772                 state = va_arg(ap, int);
2773                 va_end(ap);     
2774
2775                 switch (state) {
2776                 case POWER_SLEEP_STATE_STANDBY:
2777                         acpi_state = sc->acpi_standby_sx;
2778                         break;
2779                 case POWER_SLEEP_STATE_SUSPEND:
2780                         acpi_state = sc->acpi_suspend_sx;
2781                         break;
2782                 case POWER_SLEEP_STATE_HIBERNATE:
2783                         acpi_state = ACPI_STATE_S4;
2784                         break;
2785                 default:
2786                         error = EINVAL;
2787                         goto out;
2788                 }
2789
2790                 acpi_SetSleepState(sc, acpi_state);
2791                 break;
2792         default:
2793                 error = EINVAL;
2794                 goto out;
2795         }
2796
2797 out:
2798         return (error);
2799 }
2800
2801 static void
2802 acpi_pm_register(void *arg)
2803 {
2804     if (!cold || resource_disabled("acpi", 0))
2805         return;
2806
2807     power_pm_register(POWER_PM_TYPE_ACPI, acpi_pm_func, NULL);
2808 }
2809
2810 SYSINIT(power, SI_SUB_KLD, SI_ORDER_ANY, acpi_pm_register, 0);