Home | History | Annotate | Line # | Download | only in acpi
acpi.c revision 1.101.16.18
      1 /*	$NetBSD: acpi.c,v 1.101.16.18 2007/10/02 23:37:17 jmcneill Exp $	*/
      2 
      3 /*-
      4  * Copyright (c) 2003, 2007 The NetBSD Foundation, Inc.
      5  * All rights reserved.
      6  *
      7  * This code is derived from software contributed to The NetBSD Foundation
      8  * by Charles M. Hannum of By Noon Software, Inc.
      9  *
     10  * Redistribution and use in source and binary forms, with or without
     11  * modification, are permitted provided that the following conditions
     12  * are met:
     13  * 1. Redistributions of source code must retain the above copyright
     14  *    notice, this list of conditions and the following disclaimer.
     15  * 2. Redistributions in binary form must reproduce the above copyright
     16  *    notice, this list of conditions and the following disclaimer in the
     17  *    documentation and/or other materials provided with the distribution.
     18  * 3. All advertising materials mentioning features or use of this software
     19  *    must display the following acknowledgement:
     20  *	This product includes software developed by the NetBSD
     21  *	Foundation, Inc. and its contributors.
     22  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23  *    contributors may be used to endorse or promote products derived
     24  *    from this software without specific prior written permission.
     25  *
     26  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36  * POSSIBILITY OF SUCH DAMAGE.
     37  */
     38 
     39 /*
     40  * Copyright 2001, 2003 Wasabi Systems, Inc.
     41  * All rights reserved.
     42  *
     43  * Written by Jason R. Thorpe for Wasabi Systems, Inc.
     44  *
     45  * Redistribution and use in source and binary forms, with or without
     46  * modification, are permitted provided that the following conditions
     47  * are met:
     48  * 1. Redistributions of source code must retain the above copyright
     49  *    notice, this list of conditions and the following disclaimer.
     50  * 2. Redistributions in binary form must reproduce the above copyright
     51  *    notice, this list of conditions and the following disclaimer in the
     52  *    documentation and/or other materials provided with the distribution.
     53  * 3. All advertising materials mentioning features or use of this software
     54  *    must display the following acknowledgement:
     55  *	This product includes software developed for the NetBSD Project by
     56  *	Wasabi Systems, Inc.
     57  * 4. The name of Wasabi Systems, Inc. may not be used to endorse
     58  *    or promote products derived from this software without specific prior
     59  *    written permission.
     60  *
     61  * THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``AS IS'' AND
     62  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     63  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     64  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL WASABI SYSTEMS, INC
     65  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     66  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     67  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     68  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     69  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     70  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     71  * POSSIBILITY OF SUCH DAMAGE.
     72  */
     73 
     74 /*
     75  * Autoconfiguration support for the Intel ACPI Component Architecture
     76  * ACPI reference implementation.
     77  */
     78 
     79 #include <sys/cdefs.h>
     80 __KERNEL_RCSID(0, "$NetBSD: acpi.c,v 1.101.16.18 2007/10/02 23:37:17 jmcneill Exp $");
     81 
     82 #include "opt_acpi.h"
     83 #include "opt_pcifixup.h"
     84 
     85 #include <sys/param.h>
     86 #include <sys/systm.h>
     87 #include <sys/device.h>
     88 #include <sys/malloc.h>
     89 #include <sys/mutex.h>
     90 #include <sys/kernel.h>
     91 #include <sys/proc.h>
     92 #include <sys/sysctl.h>
     93 
     94 #include <dev/acpi/acpica.h>
     95 #include <dev/acpi/acpireg.h>
     96 #include <dev/acpi/acpivar.h>
     97 #include <dev/acpi/acpi_osd.h>
     98 #include <dev/acpi/acpi_timer.h>
     99 #ifdef ACPIVERBOSE
    100 #include <dev/acpi/acpidevs_data.h>
    101 #endif
    102 
    103 #if defined(ACPI_PCI_FIXUP)
    104 #error The option ACPI_PCI_FIXUP has been obsoleted by PCI_INTR_FIXUP_DISABLED.  Please adjust your kernel configuration file.
    105 #endif
    106 
    107 #ifdef PCI_INTR_FIXUP_DISABLED
    108 #include <dev/pci/pcidevs.h>
    109 #endif
    110 
    111 MALLOC_DECLARE(M_ACPI);
    112 
    113 #include <machine/acpi_machdep.h>
    114 
    115 #ifdef ACPI_DEBUGGER
    116 #define	ACPI_DBGR_INIT		0x01
    117 #define	ACPI_DBGR_TABLES	0x02
    118 #define	ACPI_DBGR_ENABLE	0x04
    119 #define	ACPI_DBGR_PROBE		0x08
    120 #define	ACPI_DBGR_RUNNING	0x10
    121 
    122 static int acpi_dbgr = 0x00;
    123 #endif
    124 
    125 static ACPI_TABLE_DESC	acpi_initial_tables[128];
    126 
    127 static int	acpi_match(struct device *, struct cfdata *, void *);
    128 static void	acpi_attach(struct device *, struct device *, void *);
    129 
    130 static int	acpi_print(void *aux, const char *);
    131 
    132 static int	sysctl_hw_acpi_sleepstate(SYSCTLFN_ARGS);
    133 
    134 extern struct cfdriver acpi_cd;
    135 
    136 CFATTACH_DECL(acpi, sizeof(struct acpi_softc),
    137     acpi_match, acpi_attach, NULL, NULL);
    138 
    139 /*
    140  * This is a flag we set when the ACPI subsystem is active.  Machine
    141  * dependent code may wish to skip other steps (such as attaching
    142  * subsystems that ACPI supercedes) when ACPI is active.
    143  */
    144 int	acpi_active;
    145 int	acpi_force_load;
    146 
    147 /*
    148  * Pointer to the ACPI subsystem's state.  There can be only
    149  * one ACPI instance.
    150  */
    151 struct acpi_softc *acpi_softc;
    152 
    153 /*
    154  * Locking stuff.
    155  */
    156 static kmutex_t acpi_slock;
    157 static int acpi_locked;
    158 extern kmutex_t acpi_interrupt_list_mtx;
    159 
    160 /*
    161  * sysctl-related information
    162  */
    163 
    164 static int acpi_node = CTL_EOL;
    165 static uint64_t acpi_root_pointer;	/* found as hw.acpi.root */
    166 static int acpi_sleepstate = ACPI_STATE_S0;
    167 
    168 /*
    169  * Prototypes.
    170  */
    171 static void		acpi_shutdown(void *);
    172 static void		acpi_build_tree(struct acpi_softc *);
    173 static ACPI_STATUS	acpi_make_devnode(ACPI_HANDLE, UINT32, void *, void **);
    174 
    175 static void		acpi_enable_fixed_events(struct acpi_softc *);
    176 
    177 /*
    178  * acpi_probe:
    179  *
    180  *	Probe for ACPI support.  This is called by the
    181  *	machine-dependent ACPI front-end.  All of the
    182  *	actual work is done by ACPICA.
    183  *
    184  *	NOTE: This is not an autoconfiguration interface function.
    185  */
    186 int
    187 acpi_probe(void)
    188 {
    189 	static int beenhere;
    190 	ACPI_STATUS rv;
    191 
    192 	if (beenhere != 0)
    193 		panic("acpi_probe: ACPI has already been probed");
    194 	beenhere = 1;
    195 
    196 	mutex_init(&acpi_slock, MUTEX_DRIVER, IPL_NONE);
    197 	mutex_init(&acpi_interrupt_list_mtx, MUTEX_DRIVER, IPL_NONE);
    198 	acpi_locked = 0;
    199 
    200 	/*
    201 	 * Start up ACPICA.
    202 	 */
    203 #ifdef ACPI_DEBUGGER
    204 	if (acpi_dbgr & ACPI_DBGR_INIT)
    205 		acpi_osd_debugger();
    206 #endif
    207 
    208 	AcpiGbl_AllMethodsSerialized = FALSE;
    209 	AcpiGbl_EnableInterpreterSlack = TRUE;
    210 
    211 	rv = AcpiInitializeSubsystem();
    212 	if (ACPI_FAILURE(rv)) {
    213 		printf("ACPI: unable to initialize ACPICA: %s\n",
    214 		    AcpiFormatException(rv));
    215 		return 0;
    216 	}
    217 
    218 	rv = AcpiInitializeTables(acpi_initial_tables, 128, 0);
    219 	if (ACPI_FAILURE(rv)) {
    220 		printf("ACPI: unable to initialize ACPI tables: %s\n",
    221 		    AcpiFormatException(rv));
    222 		return 0;
    223 	}
    224 
    225 	rv = AcpiReallocateRootTable();
    226 	if (ACPI_FAILURE(rv)) {
    227 		printf("ACPI: unable to reallocate root table: %s\n",
    228 		    AcpiFormatException(rv));
    229 		return 0;
    230 	}
    231 
    232 #ifdef ACPI_DEBUGGER
    233 	if (acpi_dbgr & ACPI_DBGR_TABLES)
    234 		acpi_osd_debugger();
    235 #endif
    236 
    237 	rv = AcpiLoadTables();
    238 	if (ACPI_FAILURE(rv)) {
    239 		printf("ACPI: unable to load tables: %s\n",
    240 		    AcpiFormatException(rv));
    241 		return 0;
    242 	}
    243 
    244 #if notyet
    245 	if (!acpi_force_load && (acpi_find_quirks() & ACPI_QUIRK_BROKEN)) {
    246 		printf("ACPI: BIOS implementation in listed as broken:\n");
    247 		printf("ACPI: X/RSDT: OemId <%6.6s,%8.8s,%08x>, "
    248 		       "AslId <%4.4s,%08x>\n",
    249 			AcpiGbl_XSDT->OemId, AcpiGbl_XSDT->OemTableId,
    250 		        AcpiGbl_XSDT->OemRevision,
    251 			AcpiGbl_XSDT->AslCompilerId,
    252 		        AcpiGbl_XSDT->AslCompilerRevision);
    253 		printf("ACPI: not used. set acpi_force_load to use anyway.\n");
    254 		return 0;
    255 	}
    256 
    257 	/* Install the default address space handlers. */
    258 	rv = AcpiInstallAddressSpaceHandler(ACPI_ROOT_OBJECT,
    259 	    ACPI_ADR_SPACE_SYSTEM_MEMORY, ACPI_DEFAULT_HANDLER, NULL, NULL);
    260 	if (ACPI_FAILURE(rv)) {
    261 		printf("ACPI: unable to initialise SystemMemory handler: %s\n",
    262 		    AcpiFormatException(rv));
    263 		return 0;
    264 	}
    265 	rv = AcpiInstallAddressSpaceHandler(ACPI_ROOT_OBJECT,
    266 	    ACPI_ADR_SPACE_SYSTEM_IO, ACPI_DEFAULT_HANDLER, NULL, NULL);
    267 	if (ACPI_FAILURE(rv)) {
    268 		printf("ACPI: unable to initialise SystemIO handler: %s\n",
    269 		     AcpiFormatException(rv));
    270 		return 0;
    271 	}
    272 	rv = AcpiInstallAddressSpaceHandler(ACPI_ROOT_OBJECT,
    273 	    ACPI_ADR_SPACE_PCI_CONFIG, ACPI_DEFAULT_HANDLER, NULL, NULL);
    274 	if (ACPI_FAILURE(rv)) {
    275 		printf("ACPI: unabled to initialise PciConfig handler: %s\n",
    276 		    AcpiFormatException(rv));
    277 		return 0;
    278 	}
    279 #endif
    280 
    281 	rv = AcpiEnableSubsystem(~(ACPI_NO_HARDWARE_INIT|ACPI_NO_ACPI_ENABLE));
    282 	if (ACPI_FAILURE(rv)) {
    283 		printf("ACPI: unable to enable: %s\n", AcpiFormatException(rv));
    284 		return 0;
    285 	}
    286 
    287 	/*
    288 	 * Looks like we have ACPI!
    289 	 */
    290 
    291 	return 1;
    292 }
    293 
    294 static int
    295 acpi_submatch(device_t parent, cfdata_t cf, const int *locs, void *aux)
    296 {
    297 	struct cfattach *ca;
    298 
    299 	ca = config_cfattach_lookup(cf->cf_name, cf->cf_atname);
    300 	return (ca == &acpi_ca);
    301 }
    302 
    303 int
    304 acpi_check(device_t parent, const char *ifattr)
    305 {
    306 	return (config_search_ia(acpi_submatch, parent, ifattr, NULL) != NULL);
    307 }
    308 
    309 ACPI_PHYSICAL_ADDRESS
    310 acpi_OsGetRootPointer(void)
    311 {
    312 	ACPI_PHYSICAL_ADDRESS PhysicalAddress;
    313 
    314 	/*
    315 	 * IA-32: Use AcpiFindRootPointer() to locate the RSDP.
    316 	 *
    317 	 * IA-64: Use the EFI.
    318 	 *
    319 	 * We let MD code handle this since there are multiple
    320 	 * ways to do it.
    321 	 */
    322 
    323 	PhysicalAddress = acpi_md_OsGetRootPointer();
    324 
    325 	if (acpi_root_pointer == 0)
    326 		acpi_root_pointer = PhysicalAddress;
    327 
    328 	return PhysicalAddress;
    329 }
    330 
    331 /*
    332  * acpi_match:
    333  *
    334  *	Autoconfiguration `match' routine.
    335  */
    336 static int
    337 acpi_match(struct device *parent, struct cfdata *match,
    338     void *aux)
    339 {
    340 	/*
    341 	 * XXX Check other locators?  Hard to know -- machine
    342 	 * dependent code has already checked for the presence
    343 	 * of ACPI by calling acpi_probe(), so I suppose we
    344 	 * don't really have to do anything else.
    345 	 */
    346 	return 1;
    347 }
    348 
    349 /*
    350  * acpi_attach:
    351  *
    352  *	Autoconfiguration `attach' routine.  Finish initializing
    353  *	ACPICA (some initialization was done in acpi_probe(),
    354  *	which was required to check for the presence of ACPI),
    355  *	and enable the ACPI subsystem.
    356  */
    357 static void
    358 acpi_attach(struct device *parent, struct device *self, void *aux)
    359 {
    360 	struct acpi_softc *sc = (void *) self;
    361 	struct acpibus_attach_args *aa = aux;
    362 	ACPI_STATUS rv;
    363 
    364 	aprint_naive(": Advanced Configuration and Power Interface\n");
    365 	aprint_normal(": Advanced Configuration and Power Interface\n");
    366 
    367 	if (acpi_softc != NULL)
    368 		panic("acpi_attach: ACPI has already been attached");
    369 
    370 	sysmon_power_settype("acpi");
    371 
    372 	aprint_verbose("%s: using Intel ACPI CA subsystem version %08x\n",
    373 	    sc->sc_dev.dv_xname, ACPI_CA_VERSION);
    374 
    375 #if 0
    376 	aprint_verbose("%s: X/RSDT: OemId <%6.6s,%8.8s,%08x>, AslId <%4.4s,%08x>\n",
    377 	    sc->sc_dev.dv_xname,
    378 	    AcpiGbl_XSDT->OemId, AcpiGbl_XSDT->OemTableId,
    379 	    AcpiGbl_XSDT->OemRevision,
    380 	    AcpiGbl_XSDT->AslCompilerId, AcpiGbl_XSDT->AslCompilerRevision);
    381 #endif
    382 
    383 	sc->sc_quirks = acpi_find_quirks();
    384 
    385 	sc->sc_iot = aa->aa_iot;
    386 	sc->sc_memt = aa->aa_memt;
    387 	sc->sc_pc = aa->aa_pc;
    388 	sc->sc_pciflags = aa->aa_pciflags;
    389 	sc->sc_ic = aa->aa_ic;
    390 
    391 	acpi_softc = sc;
    392 
    393 	/*
    394 	 * Register null power management handler
    395 	 */
    396 	(void)pnp_register(self, pnp_generic_power);
    397 
    398 	/*
    399 	 * Bring ACPI on-line.
    400 	 */
    401 #ifdef ACPI_DEBUGGER
    402 	if (acpi_dbgr & ACPI_DBGR_ENABLE)
    403 		acpi_osd_debugger();
    404 #endif
    405 
    406 #define ACPI_ENABLE_PHASE1 \
    407     (ACPI_NO_HANDLER_INIT | ACPI_NO_EVENT_INIT)
    408 #define ACPI_ENABLE_PHASE2 \
    409     (ACPI_NO_HARDWARE_INIT | ACPI_NO_ACPI_ENABLE | \
    410      ACPI_NO_ADDRESS_SPACE_INIT)
    411 
    412 	rv = AcpiEnableSubsystem(ACPI_ENABLE_PHASE1);
    413 	if (ACPI_FAILURE(rv)) {
    414 		aprint_error("%s: unable to enable ACPI: %s\n",
    415 		    sc->sc_dev.dv_xname, AcpiFormatException(rv));
    416 		return;
    417 	}
    418 
    419 	acpi_md_callback();
    420 
    421 	rv = AcpiEnableSubsystem(ACPI_ENABLE_PHASE2);
    422 	if (ACPI_FAILURE(rv)) {
    423 		aprint_error("%s: unable to enable ACPI: %s\n",
    424 		    sc->sc_dev.dv_xname, AcpiFormatException(rv));
    425 		return;
    426 	}
    427 
    428 	/* early EC handler initialization if ECDT table is available */
    429 	config_found_ia(&sc->sc_dev, "acpiecdtbus", NULL, NULL);
    430 
    431 	rv = AcpiInitializeObjects(ACPI_FULL_INITIALIZATION);
    432 	if (ACPI_FAILURE(rv)) {
    433 		aprint_error("%s: unable to initialize ACPI objects: %s\n",
    434 		    sc->sc_dev.dv_xname, AcpiFormatException(rv));
    435 		return;
    436 	}
    437 	acpi_active = 1;
    438 
    439 	/* Our current state is "awake". */
    440 	sc->sc_sleepstate = ACPI_STATE_S0;
    441 
    442 	/* Show SCI interrupt. */
    443 	aprint_verbose("%s: SCI interrupting at int %d\n",
    444 	    sc->sc_dev.dv_xname, AcpiGbl_FADT.SciInterrupt);
    445 
    446 	/*
    447 	 * Check for fixed-hardware features.
    448 	 */
    449 	acpi_enable_fixed_events(sc);
    450 	acpitimer_init();
    451 
    452 	/*
    453 	 * Scan the namespace and build our device tree.
    454 	 */
    455 #ifdef ACPI_DEBUGGER
    456 	if (acpi_dbgr & ACPI_DBGR_PROBE)
    457 		acpi_osd_debugger();
    458 #endif
    459 	acpi_build_tree(sc);
    460 
    461 	if (acpi_root_pointer != 0 && acpi_node != CTL_EOL) {
    462 		(void)sysctl_createv(NULL, 0, NULL, NULL,
    463 		    CTLFLAG_IMMEDIATE,
    464 		    CTLTYPE_QUAD, "root", NULL, NULL,
    465 		    acpi_root_pointer, NULL, 0,
    466 		    CTL_HW, acpi_node, CTL_CREATE, CTL_EOL);
    467 	}
    468 
    469 
    470 	/*
    471 	 * Register a shutdown hook that disables certain ACPI
    472 	 * events that might happen and confuse us while we're
    473 	 * trying to shut down.
    474 	 */
    475 	sc->sc_sdhook = shutdownhook_establish(acpi_shutdown, sc);
    476 	if (sc->sc_sdhook == NULL)
    477 		aprint_error("%s: WARNING: unable to register shutdown hook\n",
    478 		    sc->sc_dev.dv_xname);
    479 
    480 #ifdef ACPI_DEBUGGER
    481 	if (acpi_dbgr & ACPI_DBGR_RUNNING)
    482 		acpi_osd_debugger();
    483 #endif
    484 }
    485 
    486 /*
    487  * acpi_shutdown:
    488  *
    489  *	Shutdown hook for ACPI -- disable some events that
    490  *	might confuse us.
    491  */
    492 static void
    493 acpi_shutdown(void *arg)
    494 {
    495 	/* nothing */
    496 }
    497 
    498 #if 0
    499 /*
    500  * acpi_disable:
    501  *
    502  *	Disable ACPI.
    503  */
    504 static ACPI_STATUS
    505 acpi_disable(struct acpi_softc *sc)
    506 {
    507 	ACPI_STATUS rv = AE_OK;
    508 
    509 	if (acpi_active) {
    510 		rv = AcpiDisable();
    511 		if (ACPI_SUCCESS(rv))
    512 			acpi_active = 0;
    513 	}
    514 	return rv;
    515 }
    516 #endif
    517 
    518 struct acpi_make_devnode_state {
    519 	struct acpi_softc *softc;
    520 	struct acpi_scope *scope;
    521 };
    522 
    523 /*
    524  * acpi_build_tree:
    525  *
    526  *	Scan relevant portions of the ACPI namespace and attach
    527  *	child devices.
    528  */
    529 static void
    530 acpi_build_tree(struct acpi_softc *sc)
    531 {
    532 	static const char *scopes[] = {
    533 		"\\_PR_",	/* ACPI 1.0 processor namespace */
    534 		"\\_SB_",	/* system bus namespace */
    535 		"\\_SI_",	/* system indicator namespace */
    536 		"\\_TZ_",	/* ACPI 1.0 thermal zone namespace */
    537 		NULL,
    538 	};
    539 	struct acpi_attach_args aa;
    540 	struct acpi_make_devnode_state state;
    541 	struct acpi_scope *as;
    542 	struct acpi_devnode *ad;
    543 	ACPI_HANDLE parent;
    544 	ACPI_STATUS rv;
    545 	int i;
    546 
    547 	TAILQ_INIT(&sc->sc_scopes);
    548 
    549 	state.softc = sc;
    550 
    551 	/*
    552 	 * Scan the namespace and build our tree.
    553 	 */
    554 	for (i = 0; scopes[i] != NULL; i++) {
    555 		as = malloc(sizeof(*as), M_ACPI, M_WAITOK);
    556 		as->as_name = scopes[i];
    557 		TAILQ_INIT(&as->as_devnodes);
    558 
    559 		TAILQ_INSERT_TAIL(&sc->sc_scopes, as, as_list);
    560 
    561 		state.scope = as;
    562 
    563 		rv = AcpiGetHandle(ACPI_ROOT_OBJECT, scopes[i],
    564 		    &parent);
    565 		if (ACPI_SUCCESS(rv)) {
    566 			AcpiWalkNamespace(ACPI_TYPE_ANY, parent, 100,
    567 			    acpi_make_devnode, &state, NULL);
    568 		}
    569 
    570 		/* Now, for this namespace, try and attach the devices. */
    571 		TAILQ_FOREACH(ad, &as->as_devnodes, ad_list) {
    572 			aa.aa_node = ad;
    573 			aa.aa_iot = sc->sc_iot;
    574 			aa.aa_memt = sc->sc_memt;
    575 			aa.aa_pc = sc->sc_pc;
    576 			aa.aa_pciflags = sc->sc_pciflags;
    577 			aa.aa_ic = sc->sc_ic;
    578 
    579 			if (ad->ad_devinfo->Type == ACPI_TYPE_DEVICE) {
    580 				/*
    581 				 * XXX We only attach devices which are:
    582 				 *
    583 				 *	- present
    584 				 *	- enabled
    585 				 *	- functioning properly
    586 				 *
    587 				 * However, if enabled, it's decoding resources,
    588 				 * so we should claim them, if possible.
    589 				 * Requires changes to bus_space(9).
    590 				 */
    591 				if ((ad->ad_devinfo->Valid & ACPI_VALID_STA) ==
    592 				    ACPI_VALID_STA &&
    593 				    (ad->ad_devinfo->CurrentStatus &
    594 				     (ACPI_STA_DEV_PRESENT|ACPI_STA_DEV_ENABLED|
    595 				      ACPI_STA_DEV_OK)) !=
    596 				    (ACPI_STA_DEV_PRESENT|ACPI_STA_DEV_ENABLED|
    597 				     ACPI_STA_DEV_OK))
    598 					continue;
    599 			}
    600 
    601 			/*
    602 			 * XXX Same problem as above...
    603 			 */
    604 			if ((ad->ad_devinfo->Valid & ACPI_VALID_HID) == 0)
    605 				continue;
    606 
    607 			ad->ad_device = config_found_ia(&sc->sc_dev,
    608 			    "acpinodebus", &aa, acpi_print);
    609 		}
    610 	}
    611 	config_found_ia(&sc->sc_dev, "acpiapmbus", NULL, NULL);
    612 }
    613 
    614 #ifdef ACPI_ACTIVATE_DEV
    615 static void
    616 acpi_activate_device(ACPI_HANDLE handle, ACPI_DEVICE_INFO **di)
    617 {
    618 	ACPI_STATUS rv;
    619 	ACPI_BUFFER buf;
    620 
    621 	buf.Pointer = NULL;
    622 	buf.Length = ACPI_ALLOCATE_BUFFER;
    623 
    624 #ifdef ACPI_DEBUG
    625 	aprint_normal("acpi_activate_device: %s, old status=%x\n",
    626 	       (*di)->HardwareId.Value, (*di)->CurrentStatus);
    627 #endif
    628 
    629 	rv = acpi_allocate_resources(handle);
    630 	if (ACPI_FAILURE(rv)) {
    631 		aprint_error("acpi: activate failed for %s\n",
    632 		       (*di)->HardwareId.Value);
    633 	} else {
    634 		aprint_verbose("acpi: activated %s\n",
    635 		    (*di)->HardwareId.Value);
    636 	}
    637 
    638 	(void)AcpiGetObjectInfo(handle, &buf);
    639 	AcpiOsFree(*di);
    640 	*di = buf.Pointer;
    641 
    642 #ifdef ACPI_DEBUG
    643 	aprint_normal("acpi_activate_device: %s, new status=%x\n",
    644 	       (*di)->HardwareId.Value, (*di)->CurrentStatus);
    645 #endif
    646 }
    647 #endif /* ACPI_ACTIVATE_DEV */
    648 
    649 /*
    650  * acpi_make_devnode:
    651  *
    652  *	Make an ACPI devnode.
    653  */
    654 static ACPI_STATUS
    655 acpi_make_devnode(ACPI_HANDLE handle, UINT32 level, void *context,
    656     void **status)
    657 {
    658 	struct acpi_make_devnode_state *state = context;
    659 #if defined(ACPI_DEBUG) || defined(ACPI_EXTRA_DEBUG)
    660 	struct acpi_softc *sc = state->softc;
    661 #endif
    662 	struct acpi_scope *as = state->scope;
    663 	struct acpi_devnode *ad;
    664 	ACPI_OBJECT_TYPE type;
    665 	ACPI_BUFFER buf;
    666 	ACPI_DEVICE_INFO *devinfo;
    667 	ACPI_STATUS rv;
    668 	ACPI_NAME_UNION *anu;
    669 	int i, clear = 0;
    670 
    671 	rv = AcpiGetType(handle, &type);
    672 	if (ACPI_SUCCESS(rv)) {
    673 		buf.Pointer = NULL;
    674 		buf.Length = ACPI_ALLOCATE_BUFFER;
    675 		rv = AcpiGetObjectInfo(handle, &buf);
    676 		if (ACPI_FAILURE(rv)) {
    677 #ifdef ACPI_DEBUG
    678 			aprint_normal("%s: AcpiGetObjectInfo failed: %s\n",
    679 			    sc->sc_dev.dv_xname, AcpiFormatException(rv));
    680 #endif
    681 			goto out; /* XXX why return OK */
    682 		}
    683 
    684 		devinfo = buf.Pointer;
    685 
    686 		switch (type) {
    687 		case ACPI_TYPE_DEVICE:
    688 #ifdef ACPI_ACTIVATE_DEV
    689 			if ((devinfo->Valid & (ACPI_VALID_STA|ACPI_VALID_HID)) ==
    690 			    (ACPI_VALID_STA|ACPI_VALID_HID) &&
    691 			    (devinfo->CurrentStatus &
    692 			     (ACPI_STA_DEV_PRESENT|ACPI_STA_DEV_ENABLED)) ==
    693 			    ACPI_STA_DEV_PRESENT)
    694 				acpi_activate_device(handle, &devinfo);
    695 
    696 			/* FALLTHROUGH */
    697 #endif
    698 
    699 		case ACPI_TYPE_PROCESSOR:
    700 		case ACPI_TYPE_THERMAL:
    701 		case ACPI_TYPE_POWER:
    702 			ad = malloc(sizeof(*ad), M_ACPI, M_NOWAIT|M_ZERO);
    703 			if (ad == NULL)
    704 				return AE_NO_MEMORY;
    705 
    706 			ad->ad_devinfo = devinfo;
    707 			ad->ad_handle = handle;
    708 			ad->ad_level = level;
    709 			ad->ad_scope = as;
    710 			ad->ad_type = type;
    711 
    712 			anu = (ACPI_NAME_UNION *)&devinfo->Name;
    713 			ad->ad_name[4] = '\0';
    714 			for (i = 3, clear = 0; i >= 0; i--) {
    715 				if (!clear && anu->Ascii[i] == '_')
    716 					ad->ad_name[i] = '\0';
    717 				else {
    718 					ad->ad_name[i] = anu->Ascii[i];
    719 					clear = 1;
    720 				}
    721 			}
    722 			if (ad->ad_name[0] == '\0')
    723 				ad->ad_name[0] = '_';
    724 
    725 			TAILQ_INSERT_TAIL(&as->as_devnodes, ad, ad_list);
    726 
    727 			if ((ad->ad_devinfo->Valid & ACPI_VALID_HID) == 0)
    728 				goto out;
    729 
    730 #ifdef ACPI_EXTRA_DEBUG
    731 			aprint_normal("%s: HID %s found in scope %s level %d\n",
    732 			    sc->sc_dev.dv_xname,
    733 			    ad->ad_devinfo->HardwareId.Value,
    734 			    as->as_name, ad->ad_level);
    735 			if (ad->ad_devinfo->Valid & ACPI_VALID_UID)
    736 				aprint_normal("       UID %s\n",
    737 				    ad->ad_devinfo->UniqueId.Value);
    738 			if (ad->ad_devinfo->Valid & ACPI_VALID_ADR)
    739 				aprint_normal("       ADR 0x%016qx\n",
    740 				    ad->ad_devinfo->Address);
    741 			if (ad->ad_devinfo->Valid & ACPI_VALID_STA)
    742 				aprint_normal("       STA 0x%08x\n",
    743 				    ad->ad_devinfo->CurrentStatus);
    744 #endif
    745 		}
    746 	}
    747  out:
    748 	return AE_OK;
    749 }
    750 
    751 /*
    752  * acpi_print:
    753  *
    754  *	Autoconfiguration print routine for ACPI node bus.
    755  */
    756 static int
    757 acpi_print(void *aux, const char *pnp)
    758 {
    759 	struct acpi_attach_args *aa = aux;
    760 	ACPI_STATUS rv;
    761 
    762 	if (pnp) {
    763 		if (aa->aa_node->ad_devinfo->Valid & ACPI_VALID_HID) {
    764 			char *pnpstr =
    765 			    aa->aa_node->ad_devinfo->HardwareId.Value;
    766 			char *str;
    767 
    768 			aprint_normal("%s (%s) ", aa->aa_node->ad_name,
    769 			    pnpstr);
    770 			rv = acpi_eval_string(aa->aa_node->ad_handle,
    771 			    "_STR", &str);
    772 			if (ACPI_SUCCESS(rv)) {
    773 				aprint_normal("[%s] ", str);
    774 				AcpiOsFree(str);
    775 			}
    776 #ifdef ACPIVERBOSE
    777 			else {
    778 				int i;
    779 
    780 				for (i = 0; i < sizeof(acpi_knowndevs) /
    781 				    sizeof(acpi_knowndevs[0]); i++) {
    782 					if (strcmp(acpi_knowndevs[i].pnp,
    783 					    pnpstr) == 0) {
    784 						aprint_normal("[%s] ",
    785 						    acpi_knowndevs[i].str);
    786 					}
    787 				}
    788 			}
    789 
    790 #endif
    791 			aprint_normal("at %s", pnp);
    792 		} else if (aa->aa_node->ad_devinfo->Type != ACPI_TYPE_DEVICE) {
    793 			aprint_normal("%s (ACPI Object Type '%s' "
    794 			    "[0x%02x]) ", aa->aa_node->ad_name,
    795 			     AcpiUtGetTypeName(aa->aa_node->ad_devinfo->Type),
    796 			     aa->aa_node->ad_devinfo->Type);
    797 			aprint_normal("at %s", pnp);
    798 		} else
    799 			return 0;
    800 	} else {
    801 		aprint_normal(" (%s", aa->aa_node->ad_name);
    802 		if (aa->aa_node->ad_devinfo->Valid & ACPI_VALID_HID) {
    803 			aprint_normal(", %s", aa->aa_node->ad_devinfo->HardwareId.Value);
    804 			if (aa->aa_node->ad_devinfo->Valid & ACPI_VALID_UID) {
    805 				const char *uid;
    806 
    807 				uid = aa->aa_node->ad_devinfo->UniqueId.Value;
    808 				if (uid[0] == '\0')
    809 					uid = "<null>";
    810 				aprint_normal("-%s", uid);
    811 			}
    812 		}
    813 		aprint_normal(")");
    814 	}
    815 
    816 	return UNCONF;
    817 }
    818 
    819 /*****************************************************************************
    820  * ACPI fixed-hardware feature handlers
    821  *****************************************************************************/
    822 
    823 static UINT32	acpi_fixed_button_handler(void *);
    824 static void	acpi_fixed_button_pressed(void *);
    825 
    826 /*
    827  * acpi_enable_fixed_events:
    828  *
    829  *	Enable any fixed-hardware feature handlers.
    830  */
    831 static void
    832 acpi_enable_fixed_events(struct acpi_softc *sc)
    833 {
    834 	static int beenhere;
    835 	ACPI_STATUS rv;
    836 
    837 	KASSERT(beenhere == 0);
    838 	beenhere = 1;
    839 
    840 	/*
    841 	 * Check for fixed-hardware buttons.
    842 	 */
    843 
    844 	if ((AcpiGbl_FADT.Flags & ACPI_FADT_POWER_BUTTON) == 0) {
    845 		aprint_verbose("%s: fixed-feature power button present\n",
    846 		    sc->sc_dev.dv_xname);
    847 		sc->sc_smpsw_power.smpsw_name = sc->sc_dev.dv_xname;
    848 		sc->sc_smpsw_power.smpsw_type = PSWITCH_TYPE_POWER;
    849 		if (sysmon_pswitch_register(&sc->sc_smpsw_power) != 0) {
    850 			aprint_error("%s: unable to register fixed power "
    851 			    "button with sysmon\n", sc->sc_dev.dv_xname);
    852 		} else {
    853 			rv = AcpiInstallFixedEventHandler(
    854 			    ACPI_EVENT_POWER_BUTTON,
    855 			    acpi_fixed_button_handler, &sc->sc_smpsw_power);
    856 			if (ACPI_FAILURE(rv)) {
    857 				aprint_error("%s: unable to install handler "
    858 				    "for fixed power button: %s\n",
    859 				    sc->sc_dev.dv_xname,
    860 				    AcpiFormatException(rv));
    861 			}
    862 		}
    863 	}
    864 
    865 	if ((AcpiGbl_FADT.Flags & ACPI_FADT_SLEEP_BUTTON) == 0) {
    866 		aprint_verbose("%s: fixed-feature sleep button present\n",
    867 		    sc->sc_dev.dv_xname);
    868 		sc->sc_smpsw_sleep.smpsw_name = sc->sc_dev.dv_xname;
    869 		sc->sc_smpsw_sleep.smpsw_type = PSWITCH_TYPE_SLEEP;
    870 		if (sysmon_pswitch_register(&sc->sc_smpsw_power) != 0) {
    871 			aprint_error("%s: unable to register fixed sleep "
    872 			    "button with sysmon\n", sc->sc_dev.dv_xname);
    873 		} else {
    874 			rv = AcpiInstallFixedEventHandler(
    875 			    ACPI_EVENT_SLEEP_BUTTON,
    876 			    acpi_fixed_button_handler, &sc->sc_smpsw_sleep);
    877 			if (ACPI_FAILURE(rv)) {
    878 				aprint_error("%s: unable to install handler "
    879 				    "for fixed sleep button: %s\n",
    880 				    sc->sc_dev.dv_xname,
    881 				    AcpiFormatException(rv));
    882 			}
    883 		}
    884 	}
    885 }
    886 
    887 /*
    888  * acpi_fixed_button_handler:
    889  *
    890  *	Event handler for the fixed buttons.
    891  */
    892 static UINT32
    893 acpi_fixed_button_handler(void *context)
    894 {
    895 	struct sysmon_pswitch *smpsw = context;
    896 	int rv;
    897 
    898 #ifdef ACPI_BUT_DEBUG
    899 	printf("%s: fixed button handler\n", smpsw->smpsw_name);
    900 #endif
    901 
    902 	rv = AcpiOsExecute(OSL_NOTIFY_HANDLER,
    903 	    acpi_fixed_button_pressed, smpsw);
    904 	if (ACPI_FAILURE(rv))
    905 		printf("%s: WARNING: unable to queue fixed button pressed "
    906 		    "callback: %s\n", smpsw->smpsw_name,
    907 		    AcpiFormatException(rv));
    908 
    909 	return ACPI_INTERRUPT_HANDLED;
    910 }
    911 
    912 /*
    913  * acpi_fixed_button_pressed:
    914  *
    915  *	Deal with a fixed button being pressed.
    916  */
    917 static void
    918 acpi_fixed_button_pressed(void *context)
    919 {
    920 	struct sysmon_pswitch *smpsw = context;
    921 
    922 #ifdef ACPI_BUT_DEBUG
    923 	printf("%s: fixed button pressed, calling sysmon\n",
    924 	    smpsw->smpsw_name);
    925 #endif
    926 
    927 	sysmon_pswitch_event(smpsw, PSWITCH_EVENT_PRESSED);
    928 }
    929 
    930 /*****************************************************************************
    931  * ACPI utility routines.
    932  *****************************************************************************/
    933 
    934 /*
    935  * acpi_eval_integer:
    936  *
    937  *	Evaluate an integer object.
    938  */
    939 ACPI_STATUS
    940 acpi_eval_integer(ACPI_HANDLE handle, const char *path, ACPI_INTEGER *valp)
    941 {
    942 	ACPI_STATUS rv;
    943 	ACPI_BUFFER buf;
    944 	ACPI_OBJECT param;
    945 
    946 	if (handle == NULL)
    947 		handle = ACPI_ROOT_OBJECT;
    948 
    949 	buf.Pointer = &param;
    950 	buf.Length = sizeof(param);
    951 
    952 	rv = AcpiEvaluateObjectTyped(handle, path, NULL, &buf, ACPI_TYPE_INTEGER);
    953 	if (ACPI_SUCCESS(rv))
    954 		*valp = param.Integer.Value;
    955 
    956 	return rv;
    957 }
    958 
    959 /*
    960  * acpi_eval_string:
    961  *
    962  *	Evaluate a (Unicode) string object.
    963  */
    964 ACPI_STATUS
    965 acpi_eval_string(ACPI_HANDLE handle, const char *path, char **stringp)
    966 {
    967 	ACPI_STATUS rv;
    968 	ACPI_BUFFER buf;
    969 
    970 	if (handle == NULL)
    971 		handle = ACPI_ROOT_OBJECT;
    972 
    973 	buf.Pointer = NULL;
    974 	buf.Length = ACPI_ALLOCATE_BUFFER;
    975 
    976 	rv = AcpiEvaluateObjectTyped(handle, path, NULL, &buf, ACPI_TYPE_STRING);
    977 	if (ACPI_SUCCESS(rv)) {
    978 		ACPI_OBJECT *param = buf.Pointer;
    979 		const char *ptr = param->String.Pointer;
    980 		size_t len = param->String.Length;
    981 		if ((*stringp = AcpiOsAllocate(len)) == NULL)
    982 			rv = AE_NO_MEMORY;
    983 		else
    984 			(void)memcpy(*stringp, ptr, len);
    985 		AcpiOsFree(param);
    986 	}
    987 
    988 	return rv;
    989 }
    990 
    991 
    992 /*
    993  * acpi_eval_struct:
    994  *
    995  *	Evaluate a more complex structure.
    996  *	Caller must free buf.Pointer by AcpiOsFree().
    997  */
    998 ACPI_STATUS
    999 acpi_eval_struct(ACPI_HANDLE handle, const char *path, ACPI_BUFFER *bufp)
   1000 {
   1001 	ACPI_STATUS rv;
   1002 
   1003 	if (handle == NULL)
   1004 		handle = ACPI_ROOT_OBJECT;
   1005 
   1006 	bufp->Pointer = NULL;
   1007 	bufp->Length = ACPI_ALLOCATE_BUFFER;
   1008 
   1009 	rv = AcpiEvaluateObject(handle, path, NULL, bufp);
   1010 
   1011 	return rv;
   1012 }
   1013 
   1014 /*
   1015  * acpi_foreach_package_object:
   1016  *
   1017  *	Iterate over all objects in a in a packages and pass then all
   1018  *	to a function. If the called function returns non AE_OK, the
   1019  *	iteration is stopped and that value is returned.
   1020  */
   1021 
   1022 ACPI_STATUS
   1023 acpi_foreach_package_object(ACPI_OBJECT *pkg,
   1024     ACPI_STATUS (*func)(ACPI_OBJECT *, void *),
   1025     void *arg)
   1026 {
   1027 	ACPI_STATUS rv = AE_OK;
   1028 	int i;
   1029 
   1030 	if (pkg == NULL || pkg->Type != ACPI_TYPE_PACKAGE)
   1031 		return AE_BAD_PARAMETER;
   1032 
   1033 	for (i = 0; i < pkg->Package.Count; i++) {
   1034 		rv = (*func)(&pkg->Package.Elements[i], arg);
   1035 		if (ACPI_FAILURE(rv))
   1036 			break;
   1037 	}
   1038 
   1039 	return rv;
   1040 }
   1041 
   1042 const char *
   1043 acpi_name(ACPI_HANDLE handle)
   1044 {
   1045 	static char buffer[80];
   1046 	ACPI_BUFFER buf;
   1047 	ACPI_STATUS rv;
   1048 
   1049 	buf.Length = sizeof(buffer);
   1050 	buf.Pointer = buffer;
   1051 
   1052 	rv = AcpiGetName(handle, ACPI_FULL_PATHNAME, &buf);
   1053 	if (ACPI_FAILURE(rv))
   1054 		return "(unknown acpi path)";
   1055 	return buffer;
   1056 }
   1057 
   1058 /*
   1059  * acpi_get:
   1060  *
   1061  *	Fetch data info the specified (empty) ACPI buffer.
   1062  *	Caller must free buf.Pointer by AcpiOsFree().
   1063  */
   1064 ACPI_STATUS
   1065 acpi_get(ACPI_HANDLE handle, ACPI_BUFFER *buf,
   1066     ACPI_STATUS (*getit)(ACPI_HANDLE, ACPI_BUFFER *))
   1067 {
   1068 	buf->Pointer = NULL;
   1069 	buf->Length = ACPI_ALLOCATE_BUFFER;
   1070 
   1071 	return (*getit)(handle, buf);
   1072 }
   1073 
   1074 
   1075 /*
   1076  * acpi_match_hid
   1077  *
   1078  *	Match given ids against _HID and _CIDs
   1079  */
   1080 int
   1081 acpi_match_hid(ACPI_DEVICE_INFO *ad, const char * const *ids)
   1082 {
   1083 	int i;
   1084 
   1085 	while (*ids) {
   1086 		if (ad->Valid & ACPI_VALID_HID) {
   1087 			if (pmatch(ad->HardwareId.Value, *ids, NULL) == 2)
   1088 				return 1;
   1089 		}
   1090 
   1091 		if (ad->Valid & ACPI_VALID_CID) {
   1092 			for (i = 0; i < ad->CompatibilityId.Count; i++) {
   1093 				if (pmatch(ad->CompatibilityId.Id[i].Value, *ids, NULL) == 2)
   1094 					return 1;
   1095 			}
   1096 		}
   1097 		ids++;
   1098 	}
   1099 
   1100 	return 0;
   1101 }
   1102 
   1103 /*
   1104  * acpi_set_wake_gpe
   1105  *
   1106  *	Set GPE as both Runtime and Wake
   1107  */
   1108 void
   1109 acpi_set_wake_gpe(ACPI_HANDLE handle)
   1110 {
   1111 	ACPI_BUFFER buf;
   1112 	ACPI_STATUS rv;
   1113 	ACPI_OBJECT *p, *elt;
   1114 
   1115 	rv = acpi_eval_struct(handle, METHOD_NAME__PRW, &buf);
   1116 	if (ACPI_FAILURE(rv))
   1117 		return;			/* just ignore */
   1118 
   1119 	p = buf.Pointer;
   1120 	if (p->Type != ACPI_TYPE_PACKAGE || p->Package.Count < 2)
   1121 		goto out;		/* just ignore */
   1122 
   1123 	elt = p->Package.Elements;
   1124 
   1125 	/* TBD: package support */
   1126 	AcpiSetGpeType(NULL, elt[0].Integer.Value, ACPI_GPE_TYPE_WAKE_RUN);
   1127 	AcpiEnableGpe(NULL, elt[0].Integer.Value, ACPI_NOT_ISR);
   1128 
   1129  out:
   1130 	AcpiOsFree(buf.Pointer);
   1131 }
   1132 
   1133 
   1134 /*****************************************************************************
   1135  * ACPI sleep support.
   1136  *****************************************************************************/
   1137 
   1138 static int
   1139 is_available_state(struct acpi_softc *sc, int state)
   1140 {
   1141 	UINT8 type_a, type_b;
   1142 
   1143 	return ACPI_SUCCESS(AcpiGetSleepTypeData((UINT8)state,
   1144 				&type_a, &type_b));
   1145 }
   1146 
   1147 /*
   1148  * acpi_enter_sleep_state:
   1149  *
   1150  *	enter to the specified sleep state.
   1151  */
   1152 
   1153 ACPI_STATUS
   1154 acpi_enter_sleep_state(struct acpi_softc *sc, int state)
   1155 {
   1156 	int err, s;
   1157 	ACPI_STATUS ret = AE_OK;
   1158 
   1159 	if (state == acpi_sleepstate)
   1160 		return AE_OK;
   1161 
   1162 	aprint_normal("%s: entering state %d\n", sc->sc_dev.dv_xname, state);
   1163 
   1164 	switch (state) {
   1165 	case ACPI_STATE_S0:
   1166 		break;
   1167 	case ACPI_STATE_S1:
   1168 	case ACPI_STATE_S2:
   1169 	case ACPI_STATE_S3:
   1170 	case ACPI_STATE_S4:
   1171 		if (!is_available_state(sc, state)) {
   1172 			aprint_error("%s: cannot enter the sleep state (%d).\n",
   1173 			    sc->sc_dev.dv_xname, state);
   1174 			break;
   1175 		}
   1176 
   1177 		if (state == ACPI_STATE_S3)
   1178 			pnp_global_transition(PNP_STATE_D3);
   1179 
   1180 		ret = AcpiEnterSleepStatePrep(state);
   1181 		if (ACPI_FAILURE(ret)) {
   1182 			aprint_error("%s: failed preparing to sleep (%s)\n",
   1183 			    sc->sc_dev.dv_xname, AcpiFormatException(ret));
   1184 			break;
   1185 		}
   1186 
   1187 		acpi_sleepstate = state;
   1188 		if (state == ACPI_STATE_S1) {
   1189 			/* just enter the state */
   1190 			acpi_md_OsDisableInterrupt();
   1191 			AcpiEnterSleepState((UINT8)state);
   1192 			AcpiLeaveSleepState((UINT8)state);
   1193 		} else {
   1194 			s = splhigh();
   1195 			err = acpi_md_sleep(state);
   1196 			if (err == 0 && state == ACPI_STATE_S3)
   1197 				AcpiClearEvent(ACPI_EVENT_POWER_BUTTON);
   1198 			splx(s);
   1199 			if (state == ACPI_STATE_S4)
   1200 				AcpiEnable();
   1201 			AcpiLeaveSleepState((UINT8)state);
   1202 			pnp_global_transition(PNP_STATE_D0);
   1203 		}
   1204 
   1205 		break;
   1206 	case ACPI_STATE_S5:
   1207 		ret = AcpiEnterSleepStatePrep(ACPI_STATE_S5);
   1208 		if (ACPI_FAILURE(ret)) {
   1209 			aprint_error("%s: failed preparing to sleep (%s)\n",
   1210 			       sc->sc_dev.dv_xname, AcpiFormatException(ret));
   1211 			break;
   1212 		}
   1213 		DELAY(1000000);
   1214 		acpi_sleepstate = state;
   1215 		acpi_md_OsDisableInterrupt();
   1216 		AcpiEnterSleepState(ACPI_STATE_S5);
   1217 		aprint_error("%s: WARNING powerdown failed!\n",
   1218 		    sc->sc_dev.dv_xname);
   1219 		break;
   1220 	}
   1221 
   1222 	acpi_sleepstate = ACPI_STATE_S0;
   1223 	return ret;
   1224 }
   1225 
   1226 #if defined(ACPI_ACTIVATE_DEV)
   1227 /* XXX This very incomplete */
   1228 ACPI_STATUS
   1229 acpi_allocate_resources(ACPI_HANDLE handle)
   1230 {
   1231 	ACPI_BUFFER bufp, bufc, bufn;
   1232 	ACPI_RESOURCE *resp, *resc, *resn;
   1233 	ACPI_RESOURCE_IRQ *irq;
   1234 	ACPI_RESOURCE_EXTENDED_IRQ *xirq;
   1235 	ACPI_STATUS rv;
   1236 	uint delta;
   1237 
   1238 	rv = acpi_get(handle, &bufp, AcpiGetPossibleResources);
   1239 	if (ACPI_FAILURE(rv))
   1240 		goto out;
   1241 	rv = acpi_get(handle, &bufc, AcpiGetCurrentResources);
   1242 	if (ACPI_FAILURE(rv)) {
   1243 		goto out1;
   1244 	}
   1245 
   1246 	bufn.Length = 1000;
   1247 	bufn.Pointer = resn = malloc(bufn.Length, M_ACPI, M_WAITOK);
   1248 	resp = bufp.Pointer;
   1249 	resc = bufc.Pointer;
   1250 	while (resc->Type != ACPI_RESOURCE_TYPE_END_TAG &&
   1251 	       resp->Type != ACPI_RESOURCE_TYPE_END_TAG) {
   1252 		while (resc->Type != resp->Type && resp->Type != ACPI_RESOURCE_TYPE_END_TAG)
   1253 			resp = ACPI_NEXT_RESOURCE(resp);
   1254 		if (resp->Type == ACPI_RESOURCE_TYPE_END_TAG)
   1255 			break;
   1256 		/* Found identical Id */
   1257 		resn->Type = resc->Type;
   1258 		switch (resc->Type) {
   1259 		case ACPI_RESOURCE_TYPE_IRQ:
   1260 			memcpy(&resn->Data, &resp->Data,
   1261 			       sizeof(ACPI_RESOURCE_IRQ));
   1262 			irq = (ACPI_RESOURCE_IRQ *)&resn->Data;
   1263 			irq->Interrupts[0] =
   1264 			    ((ACPI_RESOURCE_IRQ *)&resp->Data)->
   1265 			        Interrupts[irq->InterruptCount-1];
   1266 			irq->InterruptCount = 1;
   1267 			resn->Length = ACPI_RS_SIZE(ACPI_RESOURCE_IRQ);
   1268 			break;
   1269 		case ACPI_RESOURCE_TYPE_EXTENDED_IRQ:
   1270 			memcpy(&resn->Data, &resp->Data,
   1271 			       sizeof(ACPI_RESOURCE_EXTENDED_IRQ));
   1272 			xirq = (ACPI_RESOURCE_EXTENDED_IRQ *)&resn->Data;
   1273 #if 0
   1274 			/*
   1275 			 * XXX not duplicating the interrupt logic above
   1276 			 * because its not clear what it accomplishes.
   1277 			 */
   1278 			xirq->Interrupts[0] =
   1279 			    ((ACPI_RESOURCE_EXT_IRQ *)&resp->Data)->
   1280 			    Interrupts[irq->NumberOfInterrupts-1];
   1281 			xirq->NumberOfInterrupts = 1;
   1282 #endif
   1283 			resn->Length = ACPI_RS_SIZE(ACPI_RESOURCE_EXTENDED_IRQ);
   1284 			break;
   1285 		case ACPI_RESOURCE_TYPE_IO:
   1286 			memcpy(&resn->Data, &resp->Data,
   1287 			       sizeof(ACPI_RESOURCE_IO));
   1288 			resn->Length = resp->Length;
   1289 			break;
   1290 		default:
   1291 			printf("acpi_allocate_resources: res=%d\n", resc->Type);
   1292 			rv = AE_BAD_DATA;
   1293 			goto out2;
   1294 		}
   1295 		resc = ACPI_NEXT_RESOURCE(resc);
   1296 		resn = ACPI_NEXT_RESOURCE(resn);
   1297 		resp = ACPI_NEXT_RESOURCE(resp);
   1298 		delta = (UINT8 *)resn - (UINT8 *)bufn.Pointer;
   1299 		if (delta >=
   1300 		    bufn.Length-ACPI_RS_SIZE(ACPI_RESOURCE_DATA)) {
   1301 			bufn.Length *= 2;
   1302 			bufn.Pointer = realloc(bufn.Pointer, bufn.Length,
   1303 					       M_ACPI, M_WAITOK);
   1304 			resn = (ACPI_RESOURCE *)((UINT8 *)bufn.Pointer + delta);
   1305 		}
   1306 	}
   1307 	if (resc->Type != ACPI_RESOURCE_TYPE_END_TAG) {
   1308 		printf("acpi_allocate_resources: resc not exhausted\n");
   1309 		rv = AE_BAD_DATA;
   1310 		goto out3;
   1311 	}
   1312 
   1313 	resn->Type = ACPI_RESOURCE_TYPE_END_TAG;
   1314 	rv = AcpiSetCurrentResources(handle, &bufn);
   1315 	if (ACPI_FAILURE(rv)) {
   1316 		printf("acpi_allocate_resources: AcpiSetCurrentResources %s\n",
   1317 		       AcpiFormatException(rv));
   1318 	}
   1319 
   1320 out3:
   1321 	free(bufn.Pointer, M_ACPI);
   1322 out2:
   1323 	AcpiOsFree(bufc.Pointer);
   1324 out1:
   1325 	AcpiOsFree(bufp.Pointer);
   1326 out:
   1327 	return rv;
   1328 }
   1329 #endif /* ACPI_ACTIVATE_DEV */
   1330 
   1331 SYSCTL_SETUP(sysctl_acpi_setup, "sysctl hw.acpi subtree setup")
   1332 {
   1333 	const struct sysctlnode *node;
   1334 	const struct sysctlnode *ssnode;
   1335 
   1336 	if (sysctl_createv(clog, 0, NULL, NULL,
   1337 	    CTLFLAG_PERMANENT,
   1338 	    CTLTYPE_NODE, "hw", NULL,
   1339 	    NULL, 0, NULL, 0,
   1340 	    CTL_HW, CTL_EOL) != 0)
   1341 		return;
   1342 
   1343 	if (sysctl_createv(clog, 0, NULL, &node,
   1344 	    CTLFLAG_PERMANENT,
   1345 	    CTLTYPE_NODE, "acpi", NULL,
   1346 	    NULL, 0, NULL, 0,
   1347 	    CTL_HW, CTL_CREATE, CTL_EOL) != 0)
   1348 		return;
   1349 
   1350 	acpi_node = node->sysctl_num;
   1351 
   1352 	/* ACPI sleepstate sysctl */
   1353 	if (sysctl_createv(NULL, 0, NULL, &node,
   1354 	    CTLFLAG_PERMANENT,
   1355 	    CTLTYPE_NODE, "machdep", NULL,
   1356 	    NULL, 0, NULL, 0, CTL_MACHDEP, CTL_EOL) != 0)
   1357 		return;
   1358 	if (sysctl_createv(NULL, 0, &node, &ssnode,
   1359 	    CTLFLAG_READWRITE, CTLTYPE_INT, "sleep_state",
   1360 	    NULL, sysctl_hw_acpi_sleepstate, 0, NULL, 0, CTL_CREATE,
   1361 	    CTL_EOL) != 0)
   1362 		return;
   1363 }
   1364 
   1365 static int
   1366 sysctl_hw_acpi_sleepstate(SYSCTLFN_ARGS)
   1367 {
   1368 	int error, t;
   1369 	struct sysctlnode node;
   1370 
   1371 	node = *rnode;
   1372 	t = acpi_sleepstate;
   1373 	node.sysctl_data = &t;
   1374 	error = sysctl_lookup(SYSCTLFN_CALL(&node));
   1375 	if (error || newp == NULL)
   1376 		return error;
   1377 
   1378 	if (acpi_softc == NULL)
   1379 		return ENOSYS;
   1380 
   1381 	acpi_enter_sleep_state(acpi_softc, t);
   1382 
   1383 	return 0;
   1384 }
   1385