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