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