xref: /freebsd/sys/dev/acpica/acpi.c (revision 5521ff5a4d1929056e7ffc982fac3341ca54df7c)
1 /*-
2  * Copyright (c) 2000 Takanori Watanabe <takawata@jp.freebsd.org>
3  * Copyright (c) 2000 Mitsuru IWASAKI <iwasaki@jp.freebsd.org>
4  * Copyright (c) 2000, 2001 Michael Smith
5  * Copyright (c) 2000 BSDi
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  *
29  *	$FreeBSD$
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/lock.h>
37 #include <sys/malloc.h>
38 #include <sys/mutex.h>
39 #include <sys/bus.h>
40 #include <sys/conf.h>
41 #include <sys/ioccom.h>
42 #include <sys/reboot.h>
43 #include <sys/sysctl.h>
44 #include <sys/ctype.h>
45 
46 #include <machine/clock.h>
47 
48 #include <machine/resource.h>
49 
50 #include "acpi.h"
51 
52 #include <dev/acpica/acpivar.h>
53 #include <dev/acpica/acpiio.h>
54 
55 MALLOC_DEFINE(M_ACPIDEV, "acpidev", "ACPI devices");
56 
57 /*
58  * Hooks for the ACPI CA debugging infrastructure
59  */
60 #define _COMPONENT	ACPI_BUS
61 MODULE_NAME("ACPI")
62 
63 /*
64  * Character device
65  */
66 
67 static d_open_t		acpiopen;
68 static d_close_t	acpiclose;
69 static d_ioctl_t	acpiioctl;
70 
71 #define CDEV_MAJOR 152
72 static struct cdevsw acpi_cdevsw = {
73     acpiopen,
74     acpiclose,
75     noread,
76     nowrite,
77     acpiioctl,
78     nopoll,
79     nommap,
80     nostrategy,
81     "acpi",
82     CDEV_MAJOR,
83     nodump,
84     nopsize,
85     0
86 };
87 
88 static const char* sleep_state_names[] = {
89     "S0", "S1", "S2", "S3", "S4", "S5", "S4B" };
90 
91 /* this has to be static, as the softc is gone when we need it */
92 static int acpi_off_state = ACPI_STATE_S5;
93 
94 struct mtx	acpi_mutex;
95 
96 static void	acpi_identify(driver_t *driver, device_t parent);
97 static int	acpi_probe(device_t dev);
98 static int	acpi_attach(device_t dev);
99 static device_t	acpi_add_child(device_t bus, int order, const char *name, int unit);
100 static int	acpi_print_resources(struct resource_list *rl, const char *name, int type,
101 				     const char *format);
102 static int	acpi_print_child(device_t bus, device_t child);
103 static int	acpi_read_ivar(device_t dev, device_t child, int index, uintptr_t *result);
104 static int	acpi_write_ivar(device_t dev, device_t child, int index, uintptr_t value);
105 static int	acpi_set_resource(device_t dev, device_t child, int type, int rid, u_long start,
106 				  u_long count);
107 static int	acpi_get_resource(device_t dev, device_t child, int type, int rid, u_long *startp,
108 				  u_long *countp);
109 static struct resource *acpi_alloc_resource(device_t bus, device_t child, int type, int *rid,
110 					    u_long start, u_long end, u_long count, u_int flags);
111 static int	acpi_release_resource(device_t bus, device_t child, int type, int rid, struct resource *r);
112 
113 static void	acpi_probe_children(device_t bus);
114 static ACPI_STATUS acpi_probe_child(ACPI_HANDLE handle, UINT32 level, void *context, void **status);
115 
116 static void	acpi_shutdown_pre_sync(void *arg, int howto);
117 static void	acpi_shutdown_final(void *arg, int howto);
118 
119 static void	acpi_enable_fixed_events(struct acpi_softc *sc);
120 
121 static void	acpi_system_eventhandler_sleep(void *arg, int state);
122 static void	acpi_system_eventhandler_wakeup(void *arg, int state);
123 static int	acpi_sleep_state_sysctl(SYSCTL_HANDLER_ARGS);
124 
125 static device_method_t acpi_methods[] = {
126     /* Device interface */
127     DEVMETHOD(device_identify,		acpi_identify),
128     DEVMETHOD(device_probe,		acpi_probe),
129     DEVMETHOD(device_attach,		acpi_attach),
130     DEVMETHOD(device_shutdown,		bus_generic_shutdown),
131     DEVMETHOD(device_suspend,		bus_generic_suspend),
132     DEVMETHOD(device_resume,		bus_generic_resume),
133 
134     /* Bus interface */
135     DEVMETHOD(bus_add_child,		acpi_add_child),
136     DEVMETHOD(bus_print_child,		acpi_print_child),
137     DEVMETHOD(bus_read_ivar,		acpi_read_ivar),
138     DEVMETHOD(bus_write_ivar,		acpi_write_ivar),
139     DEVMETHOD(bus_set_resource,		acpi_set_resource),
140     DEVMETHOD(bus_get_resource,		acpi_get_resource),
141     DEVMETHOD(bus_alloc_resource,	acpi_alloc_resource),
142     DEVMETHOD(bus_release_resource,	acpi_release_resource),
143     DEVMETHOD(bus_driver_added,		bus_generic_driver_added),
144     DEVMETHOD(bus_activate_resource,	bus_generic_activate_resource),
145     DEVMETHOD(bus_deactivate_resource,	bus_generic_deactivate_resource),
146     DEVMETHOD(bus_setup_intr,		bus_generic_setup_intr),
147     DEVMETHOD(bus_teardown_intr,	bus_generic_teardown_intr),
148 
149     {0, 0}
150 };
151 
152 static driver_t acpi_driver = {
153     "acpi",
154     acpi_methods,
155     sizeof(struct acpi_softc),
156 };
157 
158 devclass_t acpi_devclass;
159 DRIVER_MODULE(acpi, nexus, acpi_driver, acpi_devclass, 0, 0);
160 
161 SYSCTL_INT(_debug, OID_AUTO, acpi_debug_layer, CTLFLAG_RW, &AcpiDbgLayer, 0, "");
162 SYSCTL_INT(_debug, OID_AUTO, acpi_debug_level, CTLFLAG_RW, &AcpiDbgLevel, 0, "");
163 
164 /*
165  * Detect ACPI, perform early initialisation
166  */
167 static void
168 acpi_identify(driver_t *driver, device_t parent)
169 {
170     device_t			child;
171     ACPI_PHYSICAL_ADDRESS	rsdp;
172     int				error;
173 #ifdef ENABLE_DEBUGGER
174     char			*debugpoint = getenv("debug.acpi.debugger");
175 #endif
176 
177     FUNCTION_TRACE(__func__);
178 
179     if(!cold){
180 	    printf("Don't load this driver from userland!!\n");
181 	    return ;
182     }
183 
184     /*
185      * Make sure we're not being doubly invoked.
186      */
187     if (device_find_child(parent, "acpi", 0) != NULL)
188 	return_VOID;
189 
190     /* initialise the ACPI mutex */
191     mtx_init(&acpi_mutex, "ACPI global lock", MTX_DEF);
192 
193     /*
194      * Start up the ACPI CA subsystem.
195      */
196 #ifdef ENABLE_DEBUGGER
197     if (debugpoint && !strcmp(debugpoint, "init"))
198 	acpi_EnterDebugger();
199 #endif
200     if ((error = AcpiInitializeSubsystem()) != AE_OK) {
201 	printf("ACPI: initialisation failed: %s\n", acpi_strerror(error));
202 	return_VOID;
203     }
204 #ifdef ENABLE_DEBUGGER
205     if (debugpoint && !strcmp(debugpoint, "tables"))
206 	acpi_EnterDebugger();
207 #endif
208     if (((error = AcpiFindRootPointer(&rsdp)) != AE_OK) ||
209 	((error = AcpiLoadTables(rsdp)) != AE_OK)) {
210 	printf("ACPI: table load failed: %s\n", acpi_strerror(error));
211 	return_VOID;
212     }
213 
214     /*
215      * Attach the actual ACPI device.
216      */
217     if ((child = BUS_ADD_CHILD(parent, 0, "acpi", 0)) == NULL) {
218 	    device_printf(parent, "ACPI: could not attach\n");
219 	    return_VOID;
220     }
221 }
222 
223 /*
224  * Fetch some descriptive data from ACPI to put in our attach message
225  */
226 static int
227 acpi_probe(device_t dev)
228 {
229     ACPI_TABLE_HEADER	th;
230     char		buf[20];
231     ACPI_STATUS		status;
232     int			error;
233 
234     FUNCTION_TRACE(__func__);
235     ACPI_LOCK;
236 
237     if ((status = AcpiGetTableHeader(ACPI_TABLE_XSDT, 1, &th)) != AE_OK) {
238 	device_printf(dev, "couldn't get XSDT header: %s\n", acpi_strerror(status));
239 	error = ENXIO;
240     } else {
241 	sprintf(buf, "%.6s %.8s", th.OemId, th.OemTableId);
242 	device_set_desc_copy(dev, buf);
243 	error = 0;
244     }
245     ACPI_UNLOCK;
246     return_VALUE(error);
247 }
248 
249 static int
250 acpi_attach(device_t dev)
251 {
252     struct acpi_softc	*sc;
253     ACPI_STATUS		status;
254     int			error;
255 #ifdef ENABLE_DEBUGGER
256     char		*debugpoint = getenv("debug.acpi.debugger");
257 #endif
258 
259     FUNCTION_TRACE(__func__);
260     ACPI_LOCK;
261     sc = device_get_softc(dev);
262     bzero(sc, sizeof(*sc));
263     sc->acpi_dev = dev;
264 
265 #ifdef ENABLE_DEBUGGER
266     if (debugpoint && !strcmp(debugpoint, "spaces"))
267 	acpi_EnterDebugger();
268 #endif
269 
270     /*
271      * Install the default address space handlers.
272      */
273     error = ENXIO;
274     if ((status = AcpiInstallAddressSpaceHandler(ACPI_ROOT_OBJECT,
275 						ACPI_ADR_SPACE_SYSTEM_MEMORY,
276 						ACPI_DEFAULT_HANDLER,
277 						NULL, NULL)) != AE_OK) {
278 	device_printf(dev, "could not initialise SystemMemory handler: %s\n", acpi_strerror(status));
279 	goto out;
280     }
281     if ((status = AcpiInstallAddressSpaceHandler(ACPI_ROOT_OBJECT,
282 						ACPI_ADR_SPACE_SYSTEM_IO,
283 						ACPI_DEFAULT_HANDLER,
284 						NULL, NULL)) != AE_OK) {
285 	device_printf(dev, "could not initialise SystemIO handler: %s\n", acpi_strerror(status));
286 	goto out;
287     }
288     if ((status = AcpiInstallAddressSpaceHandler(ACPI_ROOT_OBJECT,
289 						ACPI_ADR_SPACE_PCI_CONFIG,
290 						ACPI_DEFAULT_HANDLER,
291 						NULL, NULL)) != AE_OK) {
292 	device_printf(dev, "could not initialise PciConfig handler: %s\n", acpi_strerror(status));
293 	goto out;
294     }
295 
296     /*
297      * Bring ACPI fully online.
298      *
299      * Note that we request that device _STA and _INI methods not be run (ACPI_NO_DEVICE_INIT)
300      * and the final object initialisation pass be skipped (ACPI_NO_OBJECT_INIT).
301      *
302      * XXX We need to arrange for the object init pass after we have attached all our
303      *     child devices.
304      */
305 #ifdef ENABLE_DEBUGGER
306     if (debugpoint && !strcmp(debugpoint, "enable"))
307 	acpi_EnterDebugger();
308 #endif
309     if ((status = AcpiEnableSubsystem(ACPI_NO_DEVICE_INIT | ACPI_NO_OBJECT_INIT)) != AE_OK) {
310 	device_printf(dev, "could not enable ACPI: %s\n", acpi_strerror(status));
311 	goto out;
312     }
313 
314     /*
315      * Setup our sysctl tree.
316      *
317      * XXX: This doesn't check to make sure that none of these fail.
318      */
319     sysctl_ctx_init(&sc->acpi_sysctl_ctx);
320     sc->acpi_sysctl_tree = SYSCTL_ADD_NODE(&sc->acpi_sysctl_ctx,
321 			       SYSCTL_STATIC_CHILDREN(_hw), OID_AUTO,
322 			       device_get_name(dev), CTLFLAG_RD, 0, "");
323     SYSCTL_ADD_PROC(&sc->acpi_sysctl_ctx, SYSCTL_CHILDREN(sc->acpi_sysctl_tree),
324 	OID_AUTO, "power_button_state", CTLTYPE_STRING | CTLFLAG_RW,
325 	&sc->acpi_power_button_sx, 0, acpi_sleep_state_sysctl, "A", "");
326     SYSCTL_ADD_PROC(&sc->acpi_sysctl_ctx, SYSCTL_CHILDREN(sc->acpi_sysctl_tree),
327 	OID_AUTO, "sleep_button_state", CTLTYPE_STRING | CTLFLAG_RW,
328 	&sc->acpi_sleep_button_sx, 0, acpi_sleep_state_sysctl, "A", "");
329     SYSCTL_ADD_PROC(&sc->acpi_sysctl_ctx, SYSCTL_CHILDREN(sc->acpi_sysctl_tree),
330 	OID_AUTO, "lid_switch_state", CTLTYPE_STRING | CTLFLAG_RW,
331 	&sc->acpi_lid_switch_sx, 0, acpi_sleep_state_sysctl, "A", "");
332 
333     /*
334      * Dispatch the default sleep state to devices.
335      * TBD: should be configured from userland policy manager.
336      */
337     sc->acpi_power_button_sx = ACPI_POWER_BUTTON_DEFAULT_SX;
338     sc->acpi_sleep_button_sx = ACPI_SLEEP_BUTTON_DEFAULT_SX;
339     sc->acpi_lid_switch_sx = ACPI_LID_SWITCH_DEFAULT_SX;
340 
341     acpi_enable_fixed_events(sc);
342 
343     /*
344      * Scan the namespace and attach/initialise children.
345      */
346 #ifdef ENABLE_DEBUGGER
347     if (debugpoint && !strcmp(debugpoint, "probe"))
348 	acpi_EnterDebugger();
349 #endif
350     if (!acpi_disabled("bus"))
351 	acpi_probe_children(dev);
352 
353     /*
354      * Register our shutdown handlers
355      */
356     EVENTHANDLER_REGISTER(shutdown_pre_sync, acpi_shutdown_pre_sync, sc, SHUTDOWN_PRI_LAST);
357     EVENTHANDLER_REGISTER(shutdown_final, acpi_shutdown_final, sc, SHUTDOWN_PRI_LAST);
358 
359     /*
360      * Register our acpi event handlers.
361      * XXX should be configurable eg. via userland policy manager.
362      */
363     EVENTHANDLER_REGISTER(acpi_sleep_event, acpi_system_eventhandler_sleep, sc, ACPI_EVENT_PRI_LAST);
364     EVENTHANDLER_REGISTER(acpi_wakeup_event, acpi_system_eventhandler_wakeup, sc, ACPI_EVENT_PRI_LAST);
365 
366     /*
367      * Flag our initial states.
368      */
369     sc->acpi_enabled = 1;
370     sc->acpi_sstate = ACPI_STATE_S0;
371 
372     /*
373      * Create the control device
374      */
375     sc->acpi_dev_t = make_dev(&acpi_cdevsw, 0, 0, 5, 0660, "acpi");
376     sc->acpi_dev_t->si_drv1 = sc;
377 
378 #ifdef ENABLE_DEBUGGER
379     if (debugpoint && !strcmp(debugpoint, "running"))
380 	acpi_EnterDebugger();
381 #endif
382     error = 0;
383 
384  out:
385     ACPI_UNLOCK;
386     return_VALUE(error);
387 }
388 
389 /*
390  * Handle a new device being added
391  */
392 static device_t
393 acpi_add_child(device_t bus, int order, const char *name, int unit)
394 {
395     struct acpi_device	*ad;
396     device_t		child;
397 
398     if ((ad = malloc(sizeof(*ad), M_ACPIDEV, M_NOWAIT)) == NULL)
399 	return(NULL);
400     bzero(ad, sizeof(*ad));
401 
402     resource_list_init(&ad->ad_rl);
403 
404     child = device_add_child_ordered(bus, order, name, unit);
405     if (child != NULL)
406 	device_set_ivars(child, ad);
407     return(child);
408 }
409 
410 /*
411  * Print child device resource usage
412  */
413 static int
414 acpi_print_resources(struct resource_list *rl, const char *name, int type, const char *format)
415 {
416     struct resource_list_entry	*rle;
417     int				printed, retval;
418 
419     printed = 0;
420     retval = 0;
421 
422     if (!SLIST_FIRST(rl))
423 	return(0);
424 
425     /* Yes, this is kinda cheating */
426     SLIST_FOREACH(rle, rl, link) {
427 	if (rle->type == type) {
428 	    if (printed == 0)
429 		retval += printf(" %s ", name);
430 	    else if (printed > 0)
431 		retval += printf(",");
432 	    printed++;
433 	    retval += printf(format, rle->start);
434 	    if (rle->count > 1) {
435 		retval += printf("-");
436 		retval += printf(format, rle->start +
437 				 rle->count - 1);
438 	    }
439 	}
440     }
441     return(retval);
442 }
443 
444 static int
445 acpi_print_child(device_t bus, device_t child)
446 {
447     struct acpi_device		*adev = device_get_ivars(child);
448     struct resource_list	*rl = &adev->ad_rl;
449     int retval = 0;
450 
451     retval += bus_print_child_header(bus, child);
452     retval += acpi_print_resources(rl, "port",  SYS_RES_IOPORT, "%#lx");
453     retval += acpi_print_resources(rl, "iomem", SYS_RES_MEMORY, "%#lx");
454     retval += acpi_print_resources(rl, "irq",   SYS_RES_IRQ,    "%ld");
455     retval += bus_print_child_footer(bus, child);
456 
457     return(retval);
458 }
459 
460 
461 /*
462  * Handle per-device ivars
463  */
464 static int
465 acpi_read_ivar(device_t dev, device_t child, int index, uintptr_t *result)
466 {
467     struct acpi_device	*ad;
468 
469     if ((ad = device_get_ivars(child)) == NULL) {
470 	printf("device has no ivars\n");
471 	return(ENOENT);
472     }
473 
474     switch(index) {
475 	/* ACPI ivars */
476     case ACPI_IVAR_HANDLE:
477 	*(ACPI_HANDLE *)result = ad->ad_handle;
478 	break;
479     case ACPI_IVAR_MAGIC:
480 	*(int *)result = ad->ad_magic;
481 	break;
482     case ACPI_IVAR_PRIVATE:
483 	*(void **)result = ad->ad_private;
484 	break;
485 
486     default:
487 	panic("bad ivar read request (%d)\n", index);
488 	return(ENOENT);
489     }
490     return(0);
491 }
492 
493 static int
494 acpi_write_ivar(device_t dev, device_t child, int index, uintptr_t value)
495 {
496     struct acpi_device	*ad;
497 
498     if ((ad = device_get_ivars(child)) == NULL) {
499 	printf("device has no ivars\n");
500 	return(ENOENT);
501     }
502 
503     switch(index) {
504 	/* ACPI ivars */
505     case ACPI_IVAR_HANDLE:
506 	ad->ad_handle = (ACPI_HANDLE)value;
507 	break;
508     case ACPI_IVAR_MAGIC:
509 	ad->ad_magic = (int )value;
510 	break;
511     case ACPI_IVAR_PRIVATE:
512 	ad->ad_private = (void *)value;
513 	break;
514 
515     default:
516 	panic("bad ivar write request (%d)\n", index);
517 	return(ENOENT);
518     }
519     return(0);
520 }
521 
522 /*
523  * Handle child resource allocation/removal
524  */
525 static int
526 acpi_set_resource(device_t dev, device_t child, int type, int rid, u_long start, u_long count)
527 {
528     struct acpi_device		*ad = device_get_ivars(child);
529     struct resource_list	*rl = &ad->ad_rl;
530 
531     resource_list_add(rl, type, rid, start, start + count -1, count);
532 
533     return(0);
534 }
535 
536 static int
537 acpi_get_resource(device_t dev, device_t child, int type, int rid, u_long *startp, u_long *countp)
538 {
539     struct acpi_device		*ad = device_get_ivars(child);
540     struct resource_list	*rl = &ad->ad_rl;
541     struct resource_list_entry	*rle;
542 
543     rle = resource_list_find(rl, type, rid);
544     if (!rle)
545 	return(ENOENT);
546 
547     if (startp)
548 	*startp = rle->start;
549     if (countp)
550 	*countp = rle->count;
551 
552     return(0);
553 }
554 
555 static struct resource *
556 acpi_alloc_resource(device_t bus, device_t child, int type, int *rid,
557 		    u_long start, u_long end, u_long count, u_int flags)
558 {
559     struct acpi_device *ad = device_get_ivars(child);
560     struct resource_list *rl = &ad->ad_rl;
561 
562     return(resource_list_alloc(rl, bus, child, type, rid, start, end, count, flags));
563 }
564 
565 static int
566 acpi_release_resource(device_t bus, device_t child, int type, int rid, struct resource *r)
567 {
568     struct acpi_device *ad = device_get_ivars(child);
569     struct resource_list *rl = &ad->ad_rl;
570 
571     return(resource_list_release(rl, bus, child, type, rid, r));
572 }
573 
574 /*
575  * Scan relevant portions of the ACPI namespace and attach child devices.
576  *
577  * Note that we only expect to find devices in the \_TZ_, \_SI_ and \_SB_ scopes,
578  * and \_TZ_ becomes obsolete in the ACPI 2.0 spec.
579  */
580 static void
581 acpi_probe_children(device_t bus)
582 {
583     ACPI_HANDLE		parent;
584     static char		*scopes[] = {"\\_TZ_", "\\_SI", "\\_SB_", NULL};
585     int			i;
586 
587     FUNCTION_TRACE(__func__);
588     ACPI_ASSERTLOCK;
589 
590     /*
591      * Create any static children by calling device identify methods.
592      */
593     DEBUG_PRINT(TRACE_OBJECTS, ("device identify routines\n"));
594     bus_generic_probe(bus);
595 
596     /*
597      * Scan the namespace and insert placeholders for all the devices that
598      * we find.
599      *
600      * Note that we use AcpiWalkNamespace rather than AcpiGetDevices because
601      * we want to create nodes for all devices, not just those that are currently
602      * present. (This assumes that we don't want to create/remove devices as they
603      * appear, which might be smarter.)
604      */
605     DEBUG_PRINT(TRACE_OBJECTS, ("namespace scan\n"));
606     for (i = 0; scopes[i] != NULL; i++)
607 	if ((AcpiGetHandle(ACPI_ROOT_OBJECT, scopes[i], &parent)) == AE_OK)
608 	    AcpiWalkNamespace(ACPI_TYPE_ANY, parent, 100, acpi_probe_child, bus, NULL);
609 
610     /*
611      * Scan all of the child devices we have created and let them probe/attach.
612      */
613     DEBUG_PRINT(TRACE_OBJECTS, ("first bus_generic_attach\n"));
614     bus_generic_attach(bus);
615 
616     /*
617      * Some of these children may have attached others as part of their attach
618      * process (eg. the root PCI bus driver), so rescan.
619      */
620     DEBUG_PRINT(TRACE_OBJECTS, ("second bus_generic_attach\n"));
621     bus_generic_attach(bus);
622 
623     return_VOID;
624 }
625 
626 /*
627  * Evaluate a child device and determine whether we might attach a device to
628  * it.
629  */
630 static ACPI_STATUS
631 acpi_probe_child(ACPI_HANDLE handle, UINT32 level, void *context, void **status)
632 {
633     ACPI_OBJECT_TYPE	type;
634     device_t		child, bus = (device_t)context;
635 
636     FUNCTION_TRACE(__func__);
637 
638     /*
639      * Skip this device if we think we'll have trouble with it.
640      */
641     if (acpi_avoid(handle))
642 	return_ACPI_STATUS(AE_OK);
643 
644     if (AcpiGetType(handle, &type) == AE_OK) {
645 	switch(type) {
646 	case ACPI_TYPE_DEVICE:
647 	case ACPI_TYPE_PROCESSOR:
648 	case ACPI_TYPE_THERMAL:
649 	case ACPI_TYPE_POWER:
650 	    if (acpi_disabled("children"))
651 		break;
652 	    /*
653 	     * Create a placeholder device for this node.  Sort the placeholder
654 	     * so that the probe/attach passes will run breadth-first.
655 	     */
656 	    DEBUG_PRINT(TRACE_OBJECTS, ("scanning '%s'\n", acpi_name(handle)))
657 	    child = BUS_ADD_CHILD(bus, level * 10, NULL, -1);
658 	    acpi_set_handle(child, handle);
659 	    DEBUG_EXEC(device_probe_and_attach(child));
660 	    break;
661 	}
662     }
663     return_ACPI_STATUS(AE_OK);
664 }
665 
666 static void
667 acpi_shutdown_pre_sync(void *arg, int howto)
668 {
669 
670     ACPI_ASSERTLOCK;
671 
672     /*
673      * Disable all ACPI events before soft off, otherwise the system
674      * will be turned on again on some laptops.
675      *
676      * XXX this should probably be restricted to masking some events just
677      *     before powering down, since we may still need ACPI during the
678      *     shutdown process.
679      */
680     acpi_Disable((struct acpi_softc *)arg);
681 }
682 
683 static void
684 acpi_shutdown_final(void *arg, int howto)
685 {
686     ACPI_STATUS	status;
687 
688     ACPI_ASSERTLOCK;
689 
690     if (howto & RB_POWEROFF) {
691 	printf("Power system off using ACPI...\n");
692 	if ((status = AcpiEnterSleepState(acpi_off_state)) != AE_OK) {
693 	    printf("ACPI power-off failed - %s\n", acpi_strerror(status));
694 	} else {
695 	    DELAY(1000000);
696 	    printf("ACPI power-off failed - timeout\n");
697 	}
698     }
699 }
700 
701 static void
702 acpi_enable_fixed_events(struct acpi_softc *sc)
703 {
704     static int	first_time = 1;
705 #define MSGFORMAT "%s button is handled as a fixed feature programming model.\n"
706 
707     ACPI_ASSERTLOCK;
708 
709     /* Enable and clear fixed events and install handlers. */
710     if ((AcpiGbl_FADT != NULL) && (AcpiGbl_FADT->PwrButton == 0)) {
711 	AcpiEnableEvent(ACPI_EVENT_POWER_BUTTON, ACPI_EVENT_FIXED);
712 	AcpiClearEvent(ACPI_EVENT_POWER_BUTTON, ACPI_EVENT_FIXED);
713 	AcpiInstallFixedEventHandler(ACPI_EVENT_POWER_BUTTON,
714 				     acpi_eventhandler_power_button_for_sleep, sc);
715 	if (first_time) {
716 	    device_printf(sc->acpi_dev, MSGFORMAT, "power");
717 	}
718     }
719     if ((AcpiGbl_FADT != NULL) && (AcpiGbl_FADT->SleepButton == 0)) {
720 	AcpiEnableEvent(ACPI_EVENT_SLEEP_BUTTON, ACPI_EVENT_FIXED);
721 	AcpiClearEvent(ACPI_EVENT_SLEEP_BUTTON, ACPI_EVENT_FIXED);
722 	AcpiInstallFixedEventHandler(ACPI_EVENT_SLEEP_BUTTON,
723 				     acpi_eventhandler_sleep_button_for_sleep, sc);
724 	if (first_time) {
725 	    device_printf(sc->acpi_dev, MSGFORMAT, "sleep");
726 	}
727     }
728 
729     first_time = 0;
730 }
731 
732 /*
733  * Returns true if the device is actually present and should
734  * be attached to.  This requires the present, enabled, UI-visible
735  * and diagnostics-passed bits to be set.
736  */
737 BOOLEAN
738 acpi_DeviceIsPresent(device_t dev)
739 {
740     ACPI_HANDLE		h;
741     ACPI_DEVICE_INFO	devinfo;
742     ACPI_STATUS		error;
743 
744     ACPI_ASSERTLOCK;
745 
746     if ((h = acpi_get_handle(dev)) == NULL)
747 	return(FALSE);
748     if ((error = AcpiGetObjectInfo(h, &devinfo)) != AE_OK)
749 	return(FALSE);
750     /* XXX 0xf is probably not appropriate */
751     if ((devinfo.Valid & ACPI_VALID_HID) && (devinfo.CurrentStatus & 0xf))
752 	return(TRUE);
753     return(FALSE);
754 }
755 
756 /*
757  * Match a HID string against a device
758  */
759 BOOLEAN
760 acpi_MatchHid(device_t dev, char *hid)
761 {
762     ACPI_HANDLE		h;
763     ACPI_DEVICE_INFO	devinfo;
764     ACPI_STATUS		error;
765 
766     ACPI_ASSERTLOCK;
767 
768     if (hid == NULL)
769 	return(FALSE);
770     if ((h = acpi_get_handle(dev)) == NULL)
771 	return(FALSE);
772     if ((error = AcpiGetObjectInfo(h, &devinfo)) != AE_OK)
773 	return(FALSE);
774     if ((devinfo.Valid & ACPI_VALID_HID) && !strcmp(hid, devinfo.HardwareId))
775 	return(TRUE);
776     return(FALSE);
777 }
778 
779 /*
780  * Return the handle of a named object within our scope, ie. that of (parent)
781  * or one if its parents.
782  */
783 ACPI_STATUS
784 acpi_GetHandleInScope(ACPI_HANDLE parent, char *path, ACPI_HANDLE *result)
785 {
786     ACPI_HANDLE		r;
787     ACPI_STATUS		status;
788 
789     ACPI_ASSERTLOCK;
790 
791     /* walk back up the tree to the root */
792     for (;;) {
793 	status = AcpiGetHandle(parent, path, &r);
794 	if (status == AE_OK) {
795 	    *result = r;
796 	    return(AE_OK);
797 	}
798 	if (status != AE_NOT_FOUND)
799 	    return(AE_OK);
800 	if (AcpiGetParent(parent, &r) != AE_OK)
801 	    return(AE_NOT_FOUND);
802 	parent = r;
803     }
804 }
805 
806 /*
807  * Allocate a buffer with a preset data size.
808  */
809 ACPI_BUFFER *
810 acpi_AllocBuffer(int size)
811 {
812     ACPI_BUFFER	*buf;
813 
814     if ((buf = malloc(size + sizeof(*buf), M_ACPIDEV, M_NOWAIT)) == NULL)
815 	return(NULL);
816     buf->Length = size;
817     buf->Pointer = (void *)(buf + 1);
818     return(buf);
819 }
820 
821 /*
822  * Perform the tedious double-get procedure required for fetching something into
823  * an ACPI_BUFFER that has not been initialised.
824  */
825 ACPI_STATUS
826 acpi_GetIntoBuffer(ACPI_HANDLE handle, ACPI_STATUS (*func)(ACPI_HANDLE, ACPI_BUFFER *), ACPI_BUFFER *buf)
827 {
828     ACPI_STATUS	status;
829 
830     ACPI_ASSERTLOCK;
831 
832     buf->Length = 0;
833     buf->Pointer = NULL;
834 
835     if ((status = func(handle, buf)) != AE_BUFFER_OVERFLOW)
836 	return(status);
837     if ((buf->Pointer = AcpiOsCallocate(buf->Length)) == NULL)
838 	return(AE_NO_MEMORY);
839     return(func(handle, buf));
840 }
841 
842 /*
843  * Perform the tedious double-evaluate procedure for evaluating something into
844  * an ACPI_BUFFER that has not been initialised.  Note that this evaluates
845  * twice, so avoid applying this to things that may have side-effects.
846  *
847  * This is like AcpiEvaluateObject with automatic buffer allocation.
848  */
849 ACPI_STATUS
850 acpi_EvaluateIntoBuffer(ACPI_HANDLE object, ACPI_STRING pathname, ACPI_OBJECT_LIST *params,
851 			ACPI_BUFFER *buf)
852 {
853     ACPI_STATUS	status;
854 
855     ACPI_ASSERTLOCK;
856 
857     buf->Length = 0;
858     buf->Pointer = NULL;
859 
860     if ((status = AcpiEvaluateObject(object, pathname, params, buf)) != AE_BUFFER_OVERFLOW)
861 	return(status);
862     if ((buf->Pointer = AcpiOsCallocate(buf->Length)) == NULL)
863 	return(AE_NO_MEMORY);
864     return(AcpiEvaluateObject(object, pathname, params, buf));
865 }
866 
867 /*
868  * Evaluate a path that should return an integer.
869  */
870 ACPI_STATUS
871 acpi_EvaluateInteger(ACPI_HANDLE handle, char *path, int *number)
872 {
873     ACPI_STATUS	error;
874     ACPI_BUFFER	buf;
875     ACPI_OBJECT	param;
876 
877     ACPI_ASSERTLOCK;
878 
879     if (handle == NULL)
880 	handle = ACPI_ROOT_OBJECT;
881     buf.Pointer = &param;
882     buf.Length = sizeof(param);
883     if ((error = AcpiEvaluateObject(handle, path, NULL, &buf)) == AE_OK) {
884 	if (param.Type == ACPI_TYPE_INTEGER) {
885 	    *number = param.Integer.Value;
886 	} else {
887 	    error = AE_TYPE;
888 	}
889     }
890     return(error);
891 }
892 
893 /*
894  * Iterate over the elements of an a package object, calling the supplied
895  * function for each element.
896  *
897  * XXX possible enhancement might be to abort traversal on error.
898  */
899 ACPI_STATUS
900 acpi_ForeachPackageObject(ACPI_OBJECT *pkg, void (* func)(ACPI_OBJECT *comp, void *arg), void *arg)
901 {
902     ACPI_OBJECT	*comp;
903     int		i;
904 
905     if ((pkg == NULL) || (pkg->Type != ACPI_TYPE_PACKAGE))
906 	return(AE_BAD_PARAMETER);
907 
908     /* iterate over components */
909     for (i = 0, comp = pkg->Package.Elements; i < pkg->Package.Count; i++, comp++)
910 	func(comp, arg);
911 
912     return(AE_OK);
913 }
914 
915 /*
916  * Find the (index)th resource object in a set.
917  */
918 ACPI_STATUS
919 acpi_FindIndexedResource(ACPI_RESOURCE *resbuf, int index, ACPI_RESOURCE **resp)
920 {
921     u_int8_t		*p;
922     int			i;
923 
924     p = (u_int8_t *)resbuf;
925     i = index;
926     while (i > 0) {
927 	/* range check */
928 	if (p > ((u_int8_t *)resbuf + resbuf->Length))
929 	    return(AE_BAD_PARAMETER);
930 	p += ((ACPI_RESOURCE *)p)->Length;
931 	i--;
932     }
933     if (resp != NULL)
934 	*resp = (ACPI_RESOURCE *)p;
935     return(AE_OK);
936 }
937 
938 static ACPI_STATUS __inline
939 acpi_wakeup(UINT8 state)
940 {
941     UINT16			Count;
942     ACPI_STATUS		Status;
943     ACPI_OBJECT_LIST	Arg_list;
944     ACPI_OBJECT		Arg;
945     ACPI_OBJECT		Objects[3]; /* package plus 2 number objects */
946     ACPI_BUFFER		ReturnBuffer;
947 
948     FUNCTION_TRACE_U32(__func__, state);
949     ACPI_ASSERTLOCK;
950 
951     /* wait for the WAK_STS bit */
952     Count = 0;
953     while (!(AcpiHwRegisterBitAccess(ACPI_READ, ACPI_MTX_LOCK, WAK_STS))) {
954 	AcpiOsSleepUsec(1000);
955 	/*
956 	 * Some BIOSes don't set WAK_STS at all,
957 	 * give up waiting for wakeup if we time out.
958 	 */
959 	if (Count > 1000) {
960 	    printf("ACPI: timed out waiting for WAK_STS, continuing\n");
961 	    break;	/* giving up */
962 	}
963 	Count++;
964     }
965 
966     /*
967      * Evaluate the _WAK method
968      */
969     bzero(&Arg_list, sizeof(Arg_list));
970     Arg_list.Count = 1;
971     Arg_list.Pointer = &Arg;
972 
973     bzero(&Arg, sizeof(Arg));
974     Arg.Type = ACPI_TYPE_INTEGER;
975     Arg.Integer.Value = state;
976 
977     /*
978      * Set up _WAK result code buffer.
979      *
980      * XXX should use acpi_EvaluateIntoBuffer
981      */
982     bzero(Objects, sizeof(Objects));
983     ReturnBuffer.Length = sizeof(Objects);
984     ReturnBuffer.Pointer = Objects;
985     AcpiEvaluateObject (NULL, "\\_WAK", &Arg_list, &ReturnBuffer);
986 
987     Status = AE_OK;
988 
989     /* Check result code for _WAK */
990     if (Objects[0].Type != ACPI_TYPE_PACKAGE ||
991 	Objects[1].Type != ACPI_TYPE_INTEGER  ||
992 	Objects[2].Type != ACPI_TYPE_INTEGER) {
993 	/*
994 	 * In many BIOSes, _WAK doesn't return a result code.
995 	 * We don't need to worry about it too much :-).
996 	 */
997 	DEBUG_PRINT(ACPI_INFO,
998 		    ("acpi_wakeup: _WAK result code is corrupted, "
999 		     "but should be OK.\n"));
1000     } else {
1001 	/* evaluate status code */
1002 	switch (Objects[1].Integer.Value) {
1003 	case 0x00000001:
1004 	    DEBUG_PRINT(ACPI_ERROR,
1005 			("acpi_wakeup: Wake was signaled "
1006 			 "but failed due to lack of power.\n"));
1007 	    Status = AE_ERROR;
1008 	    break;
1009 
1010 	case 0x00000002:
1011 	    DEBUG_PRINT(ACPI_ERROR,
1012 			("acpi_wakeup: Wake was signaled "
1013 			 "but failed due to thermal condition.\n"));
1014 	    Status = AE_ERROR;
1015 	    break;
1016 	}
1017 	/* evaluate PSS code */
1018 	if (Objects[2].Integer.Value == 0) {
1019 	    DEBUG_PRINT(ACPI_ERROR,
1020 			("acpi_wakeup: The targeted S-state "
1021 			 "was not entered because of too much current "
1022 			 "being drawn from the power supply.\n"));
1023 	    Status = AE_ERROR;
1024 	}
1025     }
1026     return_ACPI_STATUS(Status);
1027 }
1028 
1029 /*
1030  * Set the system sleep state
1031  *
1032  * Currently we only support S1 and S5
1033  */
1034 ACPI_STATUS
1035 acpi_SetSleepState(struct acpi_softc *sc, int state)
1036 {
1037     ACPI_STATUS	status = AE_OK;
1038 
1039     FUNCTION_TRACE_U32(__func__, state);
1040     ACPI_ASSERTLOCK;
1041 
1042     switch (state) {
1043     case ACPI_STATE_S0:	/* XXX only for testing */
1044 	status = AcpiEnterSleepState((UINT8)state);
1045 	if (status != AE_OK) {
1046 	    device_printf(sc->acpi_dev, "AcpiEnterSleepState failed - %s\n", acpi_strerror(status));
1047 	}
1048 	break;
1049 
1050     case ACPI_STATE_S1:
1051 	/*
1052 	 * Inform all devices that we are going to sleep.
1053 	 */
1054 	if (DEVICE_SUSPEND(root_bus) != 0) {
1055 	    /*
1056 	     * Re-wake the system.
1057 	     *
1058 	     * XXX note that a better two-pass approach with a 'veto' pass
1059 	     *     followed by a "real thing" pass would be better, but the
1060 	     *     current bus interface does not provide for this.
1061 	     */
1062 	    DEVICE_RESUME(root_bus);
1063 	    return_ACPI_STATUS(AE_ERROR);
1064 	}
1065 	sc->acpi_sstate = state;
1066 	status = AcpiEnterSleepState((UINT8)state);
1067 	if (status != AE_OK) {
1068 	    device_printf(sc->acpi_dev, "AcpiEnterSleepState failed - %s\n", acpi_strerror(status));
1069 	    break;
1070 	}
1071 	acpi_wakeup((UINT8)state);
1072 	DEVICE_RESUME(root_bus);
1073 	sc->acpi_sstate = ACPI_STATE_S0;
1074 	acpi_enable_fixed_events(sc);
1075 	break;
1076 
1077     case ACPI_STATE_S3:
1078 	acpi_off_state = ACPI_STATE_S3;
1079 	/* FALLTHROUGH */
1080     case ACPI_STATE_S5:
1081 	/*
1082 	 * Shut down cleanly and power off.  This will call us back through the
1083 	 * shutdown handlers.
1084 	 */
1085 	shutdown_nice(RB_POWEROFF);
1086 	break;
1087 
1088     default:
1089 	status = AE_BAD_PARAMETER;
1090 	break;
1091     }
1092     return_ACPI_STATUS(status);
1093 }
1094 
1095 /*
1096  * Enable/Disable ACPI
1097  */
1098 ACPI_STATUS
1099 acpi_Enable(struct acpi_softc *sc)
1100 {
1101     ACPI_STATUS	status;
1102     u_int32_t	flags;
1103 
1104     FUNCTION_TRACE(__func__);
1105     ACPI_ASSERTLOCK;
1106 
1107     flags = ACPI_NO_ADDRESS_SPACE_INIT | ACPI_NO_HARDWARE_INIT |
1108             ACPI_NO_DEVICE_INIT | ACPI_NO_OBJECT_INIT;
1109     if (!sc->acpi_enabled) {
1110 	status = AcpiEnableSubsystem(flags);
1111     } else {
1112 	status = AE_OK;
1113     }
1114     if (status == AE_OK)
1115 	sc->acpi_enabled = 1;
1116     return_ACPI_STATUS(status);
1117 }
1118 
1119 ACPI_STATUS
1120 acpi_Disable(struct acpi_softc *sc)
1121 {
1122     ACPI_STATUS	status;
1123 
1124     FUNCTION_TRACE(__func__);
1125     ACPI_ASSERTLOCK;
1126 
1127     if (sc->acpi_enabled) {
1128 	status = AcpiDisable();
1129     } else {
1130 	status = AE_OK;
1131     }
1132     if (status == AE_OK)
1133 	sc->acpi_enabled = 0;
1134     return_ACPI_STATUS(status);
1135 }
1136 
1137 /*
1138  * ACPI Event Handlers
1139  */
1140 
1141 /* System Event Handlers (registered by EVENTHANDLER_REGISTER) */
1142 
1143 static void
1144 acpi_system_eventhandler_sleep(void *arg, int state)
1145 {
1146     FUNCTION_TRACE_U32(__func__, state);
1147 
1148     ACPI_LOCK;
1149     if (state >= ACPI_STATE_S0 && state <= ACPI_S_STATES_MAX)
1150 	acpi_SetSleepState((struct acpi_softc *)arg, state);
1151     ACPI_UNLOCK;
1152     return_VOID;
1153 }
1154 
1155 static void
1156 acpi_system_eventhandler_wakeup(void *arg, int state)
1157 {
1158     FUNCTION_TRACE_U32(__func__, state);
1159 
1160     /* Well, what to do? :-) */
1161 
1162     ACPI_LOCK;
1163     ACPI_UNLOCK;
1164 
1165     return_VOID;
1166 }
1167 
1168 /*
1169  * ACPICA Event Handlers (FixedEvent, also called from button notify handler)
1170  */
1171 UINT32
1172 acpi_eventhandler_power_button_for_sleep(void *context)
1173 {
1174     struct acpi_softc	*sc = (struct acpi_softc *)context;
1175 
1176     FUNCTION_TRACE(__func__);
1177 
1178     EVENTHANDLER_INVOKE(acpi_sleep_event, sc->acpi_power_button_sx);
1179 
1180     return_VALUE(INTERRUPT_HANDLED);
1181 }
1182 
1183 UINT32
1184 acpi_eventhandler_power_button_for_wakeup(void *context)
1185 {
1186     struct acpi_softc	*sc = (struct acpi_softc *)context;
1187 
1188     FUNCTION_TRACE(__func__);
1189 
1190     EVENTHANDLER_INVOKE(acpi_wakeup_event, sc->acpi_power_button_sx);
1191 
1192     return_VALUE(INTERRUPT_HANDLED);
1193 }
1194 
1195 UINT32
1196 acpi_eventhandler_sleep_button_for_sleep(void *context)
1197 {
1198     struct acpi_softc	*sc = (struct acpi_softc *)context;
1199 
1200     FUNCTION_TRACE(__func__);
1201 
1202     EVENTHANDLER_INVOKE(acpi_sleep_event, sc->acpi_sleep_button_sx);
1203 
1204     return_VALUE(INTERRUPT_HANDLED);
1205 }
1206 
1207 UINT32
1208 acpi_eventhandler_sleep_button_for_wakeup(void *context)
1209 {
1210     struct acpi_softc	*sc = (struct acpi_softc *)context;
1211 
1212     FUNCTION_TRACE(__func__);
1213 
1214     EVENTHANDLER_INVOKE(acpi_wakeup_event, sc->acpi_sleep_button_sx);
1215 
1216     return_VALUE(INTERRUPT_HANDLED);
1217 }
1218 
1219 /*
1220  * XXX This is kinda ugly, and should not be here.
1221  */
1222 struct acpi_staticbuf {
1223     ACPI_BUFFER	buffer;
1224     char	data[512];
1225 };
1226 
1227 char *
1228 acpi_strerror(ACPI_STATUS excep)
1229 {
1230     static struct acpi_staticbuf	buf;
1231 
1232     buf.buffer.Length = 512;
1233     buf.buffer.Pointer = &buf.data[0];
1234 
1235     if (AcpiFormatException(excep, &buf.buffer) == AE_OK)
1236 	return(buf.buffer.Pointer);
1237     return("(error formatting exception)");
1238 }
1239 
1240 char *
1241 acpi_name(ACPI_HANDLE handle)
1242 {
1243     static struct acpi_staticbuf	buf;
1244 
1245     ACPI_ASSERTLOCK;
1246 
1247     buf.buffer.Length = 512;
1248     buf.buffer.Pointer = &buf.data[0];
1249 
1250     if (AcpiGetName(handle, ACPI_FULL_PATHNAME, &buf.buffer) == AE_OK)
1251 	return(buf.buffer.Pointer);
1252     return("(unknown path)");
1253 }
1254 
1255 /*
1256  * Debugging/bug-avoidance.  Avoid trying to fetch info on various
1257  * parts of the namespace.
1258  */
1259 int
1260 acpi_avoid(ACPI_HANDLE handle)
1261 {
1262     char	*cp, *np;
1263     int		len;
1264 
1265     np = acpi_name(handle);
1266     if (*np == '\\')
1267 	np++;
1268     if ((cp = getenv("debug.acpi.avoid")) == NULL)
1269 	return(0);
1270 
1271     /* scan the avoid list checking for a match */
1272     for (;;) {
1273 	while ((*cp != 0) && isspace(*cp))
1274 	    cp++;
1275 	if (*cp == 0)
1276 	    break;
1277 	len = 0;
1278 	while ((cp[len] != 0) && !isspace(cp[len]))
1279 	    len++;
1280 	if (!strncmp(cp, np, len)) {
1281 	    DEBUG_PRINT(TRACE_OBJECTS, ("avoiding '%s'\n", np));
1282 	    return(1);
1283 	}
1284 	cp += len;
1285     }
1286     return(0);
1287 }
1288 
1289 /*
1290  * Debugging/bug-avoidance.  Disable ACPI subsystem components.
1291  */
1292 int
1293 acpi_disabled(char *subsys)
1294 {
1295     char	*cp;
1296     int		len;
1297 
1298     if ((cp = getenv("debug.acpi.disable")) == NULL)
1299 	return(0);
1300     if (!strcmp(cp, "all"))
1301 	return(1);
1302 
1303     /* scan the disable list checking for a match */
1304     for (;;) {
1305 	while ((*cp != 0) && isspace(*cp))
1306 	    cp++;
1307 	if (*cp == 0)
1308 	    break;
1309 	len = 0;
1310 	while ((cp[len] != 0) && !isspace(cp[len]))
1311 	    len++;
1312 	if (!strncmp(cp, subsys, len)) {
1313 	    DEBUG_PRINT(TRACE_OBJECTS, ("disabled '%s'\n", subsys));
1314 	    return(1);
1315 	}
1316 	cp += len;
1317     }
1318     return(0);
1319 }
1320 
1321 /*
1322  * Control interface.
1323  *
1324  * We multiplex ioctls for all participating ACPI devices here.  Individual
1325  * drivers wanting to be accessible via /dev/acpi should use the register/deregister
1326  * interface to make their handlers visible.
1327  */
1328 struct acpi_ioctl_hook
1329 {
1330     TAILQ_ENTRY(acpi_ioctl_hook)	link;
1331     u_long				cmd;
1332     int					(* fn)(u_long cmd, caddr_t addr, void *arg);
1333     void				*arg;
1334 };
1335 
1336 static TAILQ_HEAD(,acpi_ioctl_hook)	acpi_ioctl_hooks;
1337 static int				acpi_ioctl_hooks_initted;
1338 
1339 /*
1340  * Register an ioctl handler.
1341  */
1342 int
1343 acpi_register_ioctl(u_long cmd, int (* fn)(u_long cmd, caddr_t addr, void *arg), void *arg)
1344 {
1345     struct acpi_ioctl_hook	*hp;
1346 
1347     if ((hp = malloc(sizeof(*hp), M_ACPIDEV, M_NOWAIT)) == NULL)
1348 	return(ENOMEM);
1349     hp->cmd = cmd;
1350     hp->fn = fn;
1351     hp->arg = arg;
1352     if (acpi_ioctl_hooks_initted == 0) {
1353 	TAILQ_INIT(&acpi_ioctl_hooks);
1354 	acpi_ioctl_hooks_initted = 1;
1355     }
1356     TAILQ_INSERT_TAIL(&acpi_ioctl_hooks, hp, link);
1357     return(0);
1358 }
1359 
1360 /*
1361  * Deregister an ioctl handler.
1362  */
1363 void
1364 acpi_deregister_ioctl(u_long cmd, int (* fn)(u_long cmd, caddr_t addr, void *arg))
1365 {
1366     struct acpi_ioctl_hook	*hp;
1367 
1368     TAILQ_FOREACH(hp, &acpi_ioctl_hooks, link)
1369 	if ((hp->cmd == cmd) && (hp->fn == fn))
1370 	    break;
1371 
1372     if (hp != NULL) {
1373 	TAILQ_REMOVE(&acpi_ioctl_hooks, hp, link);
1374 	free(hp, M_ACPIDEV);
1375     }
1376 }
1377 
1378 static int
1379 acpiopen(dev_t dev, int flag, int fmt, struct proc *p)
1380 {
1381     return(0);
1382 }
1383 
1384 static int
1385 acpiclose(dev_t dev, int flag, int fmt, struct proc *p)
1386 {
1387     return(0);
1388 }
1389 
1390 static int
1391 acpiioctl(dev_t dev, u_long cmd, caddr_t addr, int flag, struct proc *p)
1392 {
1393     struct acpi_softc		*sc;
1394     struct acpi_ioctl_hook	*hp;
1395     int				error, xerror, state;
1396 
1397     ACPI_LOCK;
1398 
1399     error = state = 0;
1400     sc = dev->si_drv1;
1401 
1402     /*
1403      * Scan the list of registered ioctls, looking for handlers.
1404      */
1405     if (acpi_ioctl_hooks_initted) {
1406 	TAILQ_FOREACH(hp, &acpi_ioctl_hooks, link) {
1407 	    if (hp->cmd == cmd) {
1408 		xerror = hp->fn(cmd, addr, hp->arg);
1409 		if (xerror != 0)
1410 		    error = xerror;
1411 		goto out;
1412 	    }
1413 	}
1414     }
1415 
1416     /*
1417      * Core system ioctls.
1418      */
1419     switch (cmd) {
1420     case ACPIIO_ENABLE:
1421 	if (ACPI_FAILURE(acpi_Enable(sc)))
1422 	    error = ENXIO;
1423 	break;
1424 
1425     case ACPIIO_DISABLE:
1426 	if (ACPI_FAILURE(acpi_Disable(sc)))
1427 	    error = ENXIO;
1428 	break;
1429 
1430     case ACPIIO_SETSLPSTATE:
1431 	if (!sc->acpi_enabled) {
1432 	    error = ENXIO;
1433 	    break;
1434 	}
1435 	state = *(int *)addr;
1436 	if (state >= ACPI_STATE_S0  && state <= ACPI_S_STATES_MAX) {
1437 	    acpi_SetSleepState(sc, state);
1438 	} else {
1439 	    error = EINVAL;
1440 	}
1441 	break;
1442 
1443     default:
1444 	if (error == 0)
1445 	    error = EINVAL;
1446 	break;
1447     }
1448 
1449 out:
1450     ACPI_UNLOCK;
1451     return(error);
1452 }
1453 
1454 static int
1455 acpi_sleep_state_sysctl(SYSCTL_HANDLER_ARGS)
1456 {
1457     char sleep_state[10];
1458     int error;
1459     u_int new_state, old_state;
1460 
1461     old_state = *(u_int *)oidp->oid_arg1;
1462     if (old_state > ACPI_S_STATES_MAX) {
1463 	strcpy(sleep_state, "unknown");
1464     } else {
1465 	strncpy(sleep_state, sleep_state_names[old_state],
1466 		sizeof(sleep_state_names[old_state]));
1467     }
1468     error = sysctl_handle_string(oidp, sleep_state, sizeof(sleep_state), req);
1469     if (error == 0 && req->newptr != NULL) {
1470 	for (new_state = ACPI_STATE_S0; new_state <= ACPI_S_STATES_MAX; new_state++) {
1471 	    if (strncmp(sleep_state, sleep_state_names[new_state],
1472 			sizeof(sleep_state)) == 0)
1473 		break;
1474 	}
1475 	if ((new_state != old_state) && (new_state <= ACPI_S_STATES_MAX)) {
1476 	    *(u_int *)oidp->oid_arg1 = new_state;
1477 	} else {
1478 	    error = EINVAL;
1479 	}
1480     }
1481     return(error);
1482 }
1483 
1484 #ifdef ACPI_DEBUG
1485 /*
1486  * Support for parsing debug options from the kernel environment.
1487  *
1488  * Bits may be set in the AcpiDbgLayer and AcpiDbgLevel debug registers
1489  * by specifying the names of the bits in the debug.acpi.layer and
1490  * debug.acpi.level environment variables.  Bits may be unset by
1491  * prefixing the bit name with !.
1492  */
1493 struct debugtag
1494 {
1495     char	*name;
1496     UINT32	value;
1497 };
1498 
1499 static struct debugtag	dbg_layer[] = {
1500     {"ACPI_UTILITIES",		ACPI_UTILITIES},
1501     {"ACPI_HARDWARE",		ACPI_HARDWARE},
1502     {"ACPI_EVENTS",		ACPI_EVENTS},
1503     {"ACPI_TABLES",		ACPI_TABLES},
1504     {"ACPI_NAMESPACE",		ACPI_NAMESPACE},
1505     {"ACPI_PARSER",		ACPI_PARSER},
1506     {"ACPI_DISPATCHER",		ACPI_DISPATCHER},
1507     {"ACPI_EXECUTER",		ACPI_EXECUTER},
1508     {"ACPI_RESOURCES",		ACPI_RESOURCES},
1509     {"ACPI_POWER",		ACPI_POWER},
1510     {"ACPI_BUS",		ACPI_BUS},
1511     {"ACPI_POWER",		ACPI_POWER},
1512     {"ACPI_EC", 		ACPI_EC},
1513     {"ACPI_PROCESSOR",		ACPI_PROCESSOR},
1514     {"ACPI_AC_ADAPTER",		ACPI_AC_ADAPTER},
1515     {"ACPI_BATTERY",		ACPI_BATTERY},
1516     {"ACPI_BUTTON",		ACPI_BUTTON},
1517     {"ACPI_SYSTEM",		ACPI_SYSTEM},
1518     {"ACPI_THERMAL",		ACPI_THERMAL},
1519     {"ACPI_DEBUGGER",		ACPI_DEBUGGER},
1520     {"ACPI_OS_SERVICES",	ACPI_OS_SERVICES},
1521     {"ACPI_ALL_COMPONENTS",	ACPI_ALL_COMPONENTS},
1522     {NULL, 0}
1523 };
1524 
1525 static struct debugtag dbg_level[] = {
1526     {"ACPI_OK",			ACPI_OK},
1527     {"ACPI_INFO",		ACPI_INFO},
1528     {"ACPI_WARN",		ACPI_WARN},
1529     {"ACPI_ERROR",		ACPI_ERROR},
1530     {"ACPI_FATAL",		ACPI_FATAL},
1531     {"ACPI_DEBUG_OBJECT",	ACPI_DEBUG_OBJECT},
1532     {"ACPI_ALL",		ACPI_ALL},
1533     {"TRACE_THREADS",		TRACE_THREADS},
1534     {"TRACE_PARSE",		TRACE_PARSE},
1535     {"TRACE_DISPATCH",		TRACE_DISPATCH},
1536     {"TRACE_LOAD",		TRACE_LOAD},
1537     {"TRACE_EXEC",		TRACE_EXEC},
1538     {"TRACE_NAMES",		TRACE_NAMES},
1539     {"TRACE_OPREGION",		TRACE_OPREGION},
1540     {"TRACE_BFIELD",		TRACE_BFIELD},
1541     {"TRACE_TRASH",		TRACE_TRASH},
1542     {"TRACE_TABLES",		TRACE_TABLES},
1543     {"TRACE_FUNCTIONS",		TRACE_FUNCTIONS},
1544     {"TRACE_VALUES",		TRACE_VALUES},
1545     {"TRACE_OBJECTS",		TRACE_OBJECTS},
1546     {"TRACE_ALLOCATIONS",	TRACE_ALLOCATIONS},
1547     {"TRACE_RESOURCES",		TRACE_RESOURCES},
1548     {"TRACE_IO",		TRACE_IO},
1549     {"TRACE_INTERRUPTS",	TRACE_INTERRUPTS},
1550     {"TRACE_USER_REQUESTS",	TRACE_USER_REQUESTS},
1551     {"TRACE_PACKAGE",		TRACE_PACKAGE},
1552     {"TRACE_MUTEX",		TRACE_MUTEX},
1553     {"TRACE_INIT",		TRACE_INIT},
1554     {"TRACE_ALL",		TRACE_ALL},
1555     {"VERBOSE_AML_DISASSEMBLE",	VERBOSE_AML_DISASSEMBLE},
1556     {"VERBOSE_INFO",		VERBOSE_INFO},
1557     {"VERBOSE_TABLES",		VERBOSE_TABLES},
1558     {"VERBOSE_EVENTS",		VERBOSE_EVENTS},
1559     {"VERBOSE_ALL",		VERBOSE_ALL},
1560     {NULL, 0}
1561 };
1562 
1563 static void
1564 acpi_parse_debug(char *cp, struct debugtag *tag, UINT32 *flag)
1565 {
1566     char	*ep;
1567     int		i, l;
1568     int		set;
1569 
1570     while (*cp) {
1571 	if (isspace(*cp)) {
1572 	    cp++;
1573 	    continue;
1574 	}
1575 	ep = cp;
1576 	while (*ep && !isspace(*ep))
1577 	    ep++;
1578 	if (*cp == '!') {
1579 	    set = 0;
1580 	    cp++;
1581 	    if (cp == ep)
1582 		continue;
1583 	} else {
1584 	    set = 1;
1585 	}
1586 	l = ep - cp;
1587 	for (i = 0; tag[i].name != NULL; i++) {
1588 	    if (!strncmp(cp, tag[i].name, l)) {
1589 		if (set) {
1590 		    *flag |= tag[i].value;
1591 		} else {
1592 		    *flag &= ~tag[i].value;
1593 		}
1594 		printf("ACPI_DEBUG: set '%s'\n", tag[i].name);
1595 	    }
1596 	}
1597 	cp = ep;
1598     }
1599 }
1600 
1601 static void
1602 acpi_set_debugging(void *junk)
1603 {
1604     char	*cp;
1605 
1606     AcpiDbgLayer = 0;
1607     AcpiDbgLevel = 0;
1608     if ((cp = getenv("debug.acpi.layer")) != NULL)
1609 	acpi_parse_debug(cp, &dbg_layer[0], &AcpiDbgLayer);
1610     if ((cp = getenv("debug.acpi.level")) != NULL)
1611 	acpi_parse_debug(cp, &dbg_level[0], &AcpiDbgLevel);
1612 
1613     printf("ACPI debug layer 0x%x  debug level 0x%x\n", AcpiDbgLayer, AcpiDbgLevel);
1614 }
1615 SYSINIT(acpi_debugging, SI_SUB_TUNABLES, SI_ORDER_ANY, acpi_set_debugging, NULL);
1616 #endif
1617