Home | History | Annotate | Line # | Download | only in acpi
acpi.c revision 1.20
      1 /*	$NetBSD: acpi.c,v 1.20 2002/12/30 01:56:44 jmcneill Exp $	*/
      2 
      3 /*
      4  * Copyright 2001 Wasabi Systems, Inc.
      5  * All rights reserved.
      6  *
      7  * Written by Jason R. Thorpe for Wasabi Systems, Inc.
      8  *
      9  * Redistribution and use in source and binary forms, with or without
     10  * modification, are permitted provided that the following conditions
     11  * are met:
     12  * 1. Redistributions of source code must retain the above copyright
     13  *    notice, this list of conditions and the following disclaimer.
     14  * 2. Redistributions in binary form must reproduce the above copyright
     15  *    notice, this list of conditions and the following disclaimer in the
     16  *    documentation and/or other materials provided with the distribution.
     17  * 3. All advertising materials mentioning features or use of this software
     18  *    must display the following acknowledgement:
     19  *	This product includes software developed for the NetBSD Project by
     20  *	Wasabi Systems, Inc.
     21  * 4. The name of Wasabi Systems, Inc. may not be used to endorse
     22  *    or promote products derived from this software without specific prior
     23  *    written permission.
     24  *
     25  * THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``AS IS'' AND
     26  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     27  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     28  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL WASABI SYSTEMS, INC
     29  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     30  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     31  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     32  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     33  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     34  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     35  * POSSIBILITY OF SUCH DAMAGE.
     36  */
     37 
     38 /*
     39  * Autoconfiguration support for the Intel ACPI Component Architecture
     40  * ACPI reference implementation.
     41  */
     42 
     43 #include <sys/cdefs.h>
     44 __KERNEL_RCSID(0, "$NetBSD: acpi.c,v 1.20 2002/12/30 01:56:44 jmcneill Exp $");
     45 
     46 #include <sys/param.h>
     47 #include <sys/systm.h>
     48 #include <sys/device.h>
     49 #include <sys/malloc.h>
     50 
     51 #include <dev/acpi/acpica.h>
     52 #include <dev/acpi/acpireg.h>
     53 #include <dev/acpi/acpivar.h>
     54 #include <dev/acpi/acpi_osd.h>
     55 
     56 #ifndef ACPI_PCI_FIXUP
     57 #define ACPI_PCI_FIXUP 1
     58 #endif
     59 
     60 #ifndef ACPI_ACTIVATE_DEV
     61 #define ACPI_ACTIVATE_DEV 0
     62 #endif
     63 
     64 #if ACPI_PCI_FIXUP
     65 #include <dev/acpi/acpica/Subsystem/acnamesp.h> /* AcpiNsGetNodeByPath() */
     66 #include <dev/pci/pcidevs.h>
     67 #endif
     68 
     69 #include <machine/acpi_machdep.h>
     70 
     71 #ifdef ENABLE_DEBUGGER
     72 #define	ACPI_DBGR_INIT		0x01
     73 #define	ACPI_DBGR_TABLES	0x02
     74 #define	ACPI_DBGR_ENABLE	0x04
     75 #define	ACPI_DBGR_PROBE		0x08
     76 #define	ACPI_DBGR_RUNNING	0x10
     77 
     78 int	acpi_dbgr = 0x00;
     79 #endif
     80 
     81 int	acpi_match(struct device *, struct cfdata *, void *);
     82 void	acpi_attach(struct device *, struct device *, void *);
     83 
     84 int	acpi_print(void *aux, const char *);
     85 
     86 extern struct cfdriver acpi_cd;
     87 
     88 CFATTACH_DECL(acpi, sizeof(struct acpi_softc),
     89     acpi_match, acpi_attach, NULL, NULL);
     90 
     91 /*
     92  * This is a flag we set when the ACPI subsystem is active.  Machine
     93  * dependent code may wish to skip other steps (such as attaching
     94  * subsystems that ACPI supercedes) when ACPI is active.
     95  */
     96 int	acpi_active;
     97 
     98 /*
     99  * Pointer to the ACPI subsystem's state.  There can be only
    100  * one ACPI instance.
    101  */
    102 struct acpi_softc *acpi_softc;
    103 
    104 void		acpi_shutdown(void *);
    105 ACPI_STATUS	acpi_disable(struct acpi_softc *sc);
    106 void		acpi_build_tree(struct acpi_softc *);
    107 ACPI_STATUS	acpi_make_devnode(ACPI_HANDLE, UINT32, void *, void **);
    108 
    109 void		acpi_enable_fixed_events(struct acpi_softc *);
    110 #if ACPI_PCI_FIXUP
    111 void		acpi_pci_fixup(struct acpi_softc *);
    112 #endif
    113 #if ACPI_PCI_FIXUP || ACPI_ACTIVATE_DEV
    114 ACPI_STATUS	acpi_allocate_resources(ACPI_HANDLE handle);
    115 #endif
    116 
    117 /*
    118  * acpi_probe:
    119  *
    120  *	Probe for ACPI support.  This is called by the
    121  *	machine-dependent ACPI front-end.  All of the
    122  *	actual work is done by ACPICA.
    123  *
    124  *	NOTE: This is not an autoconfiguration interface function.
    125  */
    126 int
    127 acpi_probe(void)
    128 {
    129 	static int beenhere;
    130 	ACPI_STATUS rv;
    131 
    132 	if (beenhere != 0)
    133 		panic("acpi_probe: ACPI has already been probed");
    134 	beenhere = 1;
    135 
    136 	/*
    137 	 * Start up ACPICA.
    138 	 */
    139 #ifdef ENABLE_DEBUGGER
    140 	if (acpi_dbgr & ACPI_DBGR_INIT)
    141 		acpi_osd_debugger();
    142 #endif
    143 
    144 	rv = AcpiInitializeSubsystem();
    145 	if (rv != AE_OK) {
    146 		printf("ACPI: unable to initialize ACPICA: %d\n", rv);
    147 		return (0);
    148 	}
    149 
    150 #ifdef ENABLE_DEBUGGER
    151 	if (acpi_dbgr & ACPI_DBGR_TABLES)
    152 		acpi_osd_debugger();
    153 #endif
    154 
    155 	rv = AcpiLoadTables();
    156 	if (rv != AE_OK) {
    157 		printf("ACPI: unable to load tables: %d\n", rv);
    158 		return (0);
    159 	}
    160 
    161 	/*
    162 	 * Looks like we have ACPI!
    163 	 */
    164 
    165 	return (1);
    166 }
    167 
    168 /*
    169  * acpi_match:
    170  *
    171  *	Autoconfiguration `match' routine.
    172  */
    173 int
    174 acpi_match(struct device *parent, struct cfdata *match, void *aux)
    175 {
    176 	struct acpibus_attach_args *aa = aux;
    177 
    178 	if (strcmp(aa->aa_busname, acpi_cd.cd_name) != 0)
    179 		return (0);
    180 
    181 	/*
    182 	 * XXX Check other locators?  Hard to know -- machine
    183 	 * dependent code has already checked for the presence
    184 	 * of ACPI by calling acpi_probe(), so I suppose we
    185 	 * don't really have to do anything else.
    186 	 */
    187 	return (1);
    188 }
    189 
    190 /*
    191  * acpi_attach:
    192  *
    193  *	Autoconfiguration `attach' routine.  Finish initializing
    194  *	ACPICA (some initialization was done in acpi_probe(),
    195  *	which was required to check for the presence of ACPI),
    196  *	and enable the ACPI subsystem.
    197  */
    198 void
    199 acpi_attach(struct device *parent, struct device *self, void *aux)
    200 {
    201 	struct acpi_softc *sc = (void *) self;
    202 	struct acpibus_attach_args *aa = aux;
    203 	ACPI_STATUS rv;
    204 
    205 	printf("\n");
    206 
    207 	if (acpi_softc != NULL)
    208 		panic("acpi_attach: ACPI has already been attached");
    209 
    210 	sc->sc_iot = aa->aa_iot;
    211 	sc->sc_memt = aa->aa_memt;
    212 	sc->sc_pc = aa->aa_pc;
    213 	sc->sc_pciflags = aa->aa_pciflags;
    214 	sc->sc_ic = aa->aa_ic;
    215 
    216 	acpi_softc = sc;
    217 
    218 	/*
    219 	 * Install the default address space handlers.
    220 	 */
    221 
    222 	rv = AcpiInstallAddressSpaceHandler(ACPI_ROOT_OBJECT,
    223 	    ACPI_ADR_SPACE_SYSTEM_MEMORY, ACPI_DEFAULT_HANDLER, NULL, NULL);
    224 	if (rv != AE_OK) {
    225 		printf("%s: unable to install SYSTEM MEMORY handler: %d\n",
    226 		    sc->sc_dev.dv_xname, rv);
    227 		return;
    228 	}
    229 
    230 	rv = AcpiInstallAddressSpaceHandler(ACPI_ROOT_OBJECT,
    231 	    ACPI_ADR_SPACE_SYSTEM_IO, ACPI_DEFAULT_HANDLER, NULL, NULL);
    232 	if (rv != AE_OK) {
    233 		printf("%s: unable to install SYSTEM IO handler: %d\n",
    234 		    sc->sc_dev.dv_xname, rv);
    235 		return;
    236 	}
    237 
    238 	rv = AcpiInstallAddressSpaceHandler(ACPI_ROOT_OBJECT,
    239 	    ACPI_ADR_SPACE_PCI_CONFIG, ACPI_DEFAULT_HANDLER, NULL, NULL);
    240 	if (rv != AE_OK) {
    241 		printf("%s: unable to install PCI CONFIG handler: %d\n",
    242 		    sc->sc_dev.dv_xname, rv);
    243 		return;
    244 	}
    245 
    246 	/*
    247 	 * Bring ACPI on-line.
    248 	 *
    249 	 * Note that we request that _STA (device init) and _INI (object init)
    250 	 * methods not be run.
    251 	 *
    252 	 * XXX We need to arrange for the object init pass after we have
    253 	 * XXX attached all of our children.
    254 	 */
    255 #ifdef ENABLE_DEBUGGER
    256 	if (acpi_dbgr & ACPI_DBGR_ENABLE)
    257 		acpi_osd_debugger();
    258 #endif
    259 	rv = AcpiEnableSubsystem(ACPI_NO_DEVICE_INIT | ACPI_NO_OBJECT_INIT);
    260 	if (rv != AE_OK) {
    261 		printf("%s: unable to enable ACPI: %d\n",
    262 		    sc->sc_dev.dv_xname, rv);
    263 		return;
    264 	}
    265 	acpi_active = 1;
    266 
    267 	/*
    268 	 * Set up the default sleep state to enter when various
    269 	 * switches are activated.
    270 	 */
    271 	sc->sc_switch_sleep[ACPI_SWITCH_POWERBUTTON] = ACPI_STATE_S5;
    272 	sc->sc_switch_sleep[ACPI_SWITCH_SLEEPBUTTON] = ACPI_STATE_S1;
    273 	sc->sc_switch_sleep[ACPI_SWITCH_LID]	     = ACPI_STATE_S1;
    274 
    275 	/* Our current state is "awake". */
    276 	sc->sc_sleepstate = ACPI_STATE_S0;
    277 
    278 	/* Show SCI interrupt. */
    279 	if (AcpiGbl_FADT != NULL)
    280 		printf("%s: SCI interrupting at irq %d\n",
    281 			sc->sc_dev.dv_xname, AcpiGbl_FADT->SciInt);
    282 	/*
    283 	 * Check for fixed-hardware features.
    284 	 */
    285 	acpi_enable_fixed_events(sc);
    286 
    287 	/*
    288 	 * Fix up PCI devices.
    289 	 */
    290 #if ACPI_PCI_FIXUP
    291 	acpi_pci_fixup(sc);
    292 #endif
    293 
    294 	/*
    295 	 * Scan the namespace and build our device tree.
    296 	 */
    297 #ifdef ENABLE_DEBUGGER
    298 	if (acpi_dbgr & ACPI_DBGR_PROBE)
    299 		acpi_osd_debugger();
    300 #endif
    301 	acpi_build_tree(sc);
    302 
    303 	/*
    304 	 * Register a shutdown hook that disables certain ACPI
    305 	 * events that might happen and confuse us while we're
    306 	 * trying to shut down.
    307 	 */
    308 	sc->sc_sdhook = shutdownhook_establish(acpi_shutdown, sc);
    309 	if (sc->sc_sdhook == NULL)
    310 		printf("%s: WARNING: unable to register shutdown hook\n",
    311 		    sc->sc_dev.dv_xname);
    312 
    313 #ifdef ENABLE_DEBUGGER
    314 	if (acpi_dbgr & ACPI_DBGR_RUNNING)
    315 		acpi_osd_debugger();
    316 #endif
    317 }
    318 
    319 /*
    320  * acpi_shutdown:
    321  *
    322  *	Shutdown hook for ACPI -- disable some events that
    323  *	might confuse us.
    324  */
    325 void
    326 acpi_shutdown(void *arg)
    327 {
    328 	struct acpi_softc *sc = arg;
    329 
    330 	if (acpi_disable(sc) != AE_OK)
    331 		printf("%s: WARNING: unable to disable ACPI\n",
    332 		    sc->sc_dev.dv_xname);
    333 }
    334 
    335 /*
    336  * acpi_disable:
    337  *
    338  *	Disable ACPI.
    339  */
    340 ACPI_STATUS
    341 acpi_disable(struct acpi_softc *sc)
    342 {
    343 	ACPI_STATUS rv = AE_OK;
    344 
    345 	if (acpi_active) {
    346 		rv = AcpiDisable();
    347 		if (rv == AE_OK)
    348 			acpi_active = 0;
    349 	}
    350 	return (rv);
    351 }
    352 
    353 struct acpi_make_devnode_state {
    354 	struct acpi_softc *softc;
    355 	struct acpi_scope *scope;
    356 };
    357 
    358 /*
    359  * acpi_build_tree:
    360  *
    361  *	Scan relevant portions of the ACPI namespace and attach
    362  *	child devices.
    363  */
    364 void
    365 acpi_build_tree(struct acpi_softc *sc)
    366 {
    367 	static const char *scopes[] = {
    368 		"\\_PR_",	/* ACPI 1.0 processor namespace */
    369 		"\\_SB_",	/* system bus namespace */
    370 		"\\_SI_",	/* system idicator namespace */
    371 		"\\_TZ_",	/* ACPI 1.0 thermal zone namespace */
    372 		NULL,
    373 	};
    374 	struct acpi_attach_args aa;
    375 	struct acpi_make_devnode_state state;
    376 	struct acpi_scope *as;
    377 	struct acpi_devnode *ad;
    378 	ACPI_HANDLE parent;
    379 	int i;
    380 
    381 	TAILQ_INIT(&sc->sc_scopes);
    382 
    383 	state.softc = sc;
    384 
    385 	/*
    386 	 * Scan the namespace and build our tree.
    387 	 */
    388 	for (i = 0; scopes[i] != NULL; i++) {
    389 		as = malloc(sizeof(*as), M_DEVBUF, M_WAITOK);
    390 		as->as_name = scopes[i];
    391 		TAILQ_INIT(&as->as_devnodes);
    392 
    393 		TAILQ_INSERT_TAIL(&sc->sc_scopes, as, as_list);
    394 
    395 		state.scope = as;
    396 
    397 		if (AcpiGetHandle(ACPI_ROOT_OBJECT, (char *) scopes[i],
    398 		    &parent) == AE_OK) {
    399 			AcpiWalkNamespace(ACPI_TYPE_ANY, parent, 100,
    400 			    acpi_make_devnode, &state, NULL);
    401 		}
    402 
    403 		/* Now, for this namespace, try and attach the devices. */
    404 		TAILQ_FOREACH(ad, &as->as_devnodes, ad_list) {
    405 			aa.aa_node = ad;
    406 			aa.aa_iot = sc->sc_iot;
    407 			aa.aa_memt = sc->sc_memt;
    408 			aa.aa_pc = sc->sc_pc;
    409 			aa.aa_pciflags = sc->sc_pciflags;
    410 			aa.aa_ic = sc->sc_ic;
    411 
    412 			/*
    413 			 * XXX We only attach devices which are:
    414 			 *
    415 			 *	- present
    416 			 *	- enabled
    417 			 *	- functioning properly
    418 			 *
    419 			 * However, if enabled, it's decoding resources,
    420 			 * so we should claim them, if possible.  Requires
    421 			 * changes to bus_space(9).
    422 			 */
    423 			if ((ad->ad_devinfo.CurrentStatus &
    424 			     (ACPI_STA_DEV_PRESENT|ACPI_STA_DEV_ENABLED|
    425 			      ACPI_STA_DEV_OK)) !=
    426 			    (ACPI_STA_DEV_PRESENT|ACPI_STA_DEV_ENABLED|
    427 			     ACPI_STA_DEV_OK))
    428 				continue;
    429 
    430 			/*
    431 			 * XXX Same problem as above...
    432 			 */
    433 			if ((ad->ad_devinfo.Valid & ACPI_VALID_HID) == 0)
    434 				continue;
    435 
    436 			ad->ad_device = config_found(&sc->sc_dev,
    437 			    &aa, acpi_print);
    438 		}
    439 	}
    440 }
    441 
    442 #if ACPI_ACTIVATE_DEV
    443 static void
    444 acpi_activate_device(ACPI_HANDLE handle, ACPI_DEVICE_INFO *di)
    445 {
    446 	ACPI_STATUS rv;
    447 
    448 #ifdef ACPI_DEBUG
    449 	printf("acpi_activate_device: %s, old status=%x\n",
    450 	       di->HardwareId, di->CurrentStatus);
    451 #endif
    452 
    453 	rv = acpi_allocate_resources(handle);
    454 	if (ACPI_FAILURE(rv)) {
    455 		printf("acpi: activate failed for %s\n", di->HardwareId);
    456 	}
    457 
    458 	(void)AcpiGetObjectInfo(handle, di);
    459 #ifdef ACPI_DEBUG
    460 	printf("acpi_activate_device: %s, new status=%x\n",
    461 	       di->HardwareId, di->CurrentStatus);
    462 #endif
    463 }
    464 #endif /* ACPI_ACTIVATE_DEV */
    465 
    466 /*
    467  * acpi_make_devnode:
    468  *
    469  *	Make an ACPI devnode.
    470  */
    471 ACPI_STATUS
    472 acpi_make_devnode(ACPI_HANDLE handle, UINT32 level, void *context,
    473     void **status)
    474 {
    475 	struct acpi_make_devnode_state *state = context;
    476 #if defined(ACPI_DEBUG) || defined(ACPI_EXTRA_DEBUG)
    477 	struct acpi_softc *sc = state->softc;
    478 #endif
    479 	struct acpi_scope *as = state->scope;
    480 	struct acpi_devnode *ad;
    481 	ACPI_DEVICE_INFO devinfo;
    482 	ACPI_OBJECT_TYPE type;
    483 	ACPI_STATUS rv;
    484 
    485 	if (AcpiGetType(handle, &type) == AE_OK) {
    486 		rv = AcpiGetObjectInfo(handle, &devinfo);
    487 		if (rv != AE_OK) {
    488 #ifdef ACPI_DEBUG
    489 			printf("%s: AcpiGetObjectInfo failed\n",
    490 			    sc->sc_dev.dv_xname);
    491 #endif
    492 			goto out; /* XXX why return OK */
    493 		}
    494 
    495 		switch (type) {
    496 		case ACPI_TYPE_DEVICE:
    497 #if ACPI_ACTIVATE_DEV
    498 			if ((devinfo.Valid & ACPI_VALID_STA) &&
    499 			    (devinfo.CurrentStatus &
    500 			     (ACPI_STA_DEV_PRESENT|ACPI_STA_DEV_ENABLED)) ==
    501 			    ACPI_STA_DEV_PRESENT)
    502 				acpi_activate_device(handle, &devinfo);
    503 			/* FALLTHROUGH */
    504 #endif
    505 
    506 		case ACPI_TYPE_PROCESSOR:
    507 		case ACPI_TYPE_THERMAL:
    508 		case ACPI_TYPE_POWER:
    509 			ad = malloc(sizeof(*ad), M_DEVBUF, M_NOWAIT|M_ZERO);
    510 			if (ad == NULL)
    511 				return (AE_NO_MEMORY);
    512 
    513 			ad->ad_handle = handle;
    514 			ad->ad_level = level;
    515 			ad->ad_scope = as;
    516 			ad->ad_type = type;
    517 
    518 			TAILQ_INSERT_TAIL(&as->as_devnodes, ad, ad_list);
    519 
    520 			rv = AcpiGetObjectInfo(handle, &ad->ad_devinfo);
    521 			if (rv != AE_OK)
    522 				goto out;
    523 
    524 			if ((ad->ad_devinfo.Valid & ACPI_VALID_HID) == 0)
    525 				goto out;
    526 
    527 #ifdef ACPI_EXTRA_DEBUG
    528 			printf("%s: HID %s found in scope %s level %d\n",
    529 			    sc->sc_dev.dv_xname, ad->ad_devinfo.HardwareId,
    530 			    as->as_name, ad->ad_level);
    531 			if (ad->ad_devinfo.Valid & ACPI_VALID_UID)
    532 				printf("       UID %s\n",
    533 				    ad->ad_devinfo.UniqueId);
    534 			if (ad->ad_devinfo.Valid & ACPI_VALID_ADR)
    535 				printf("       ADR 0x%016qx\n",
    536 				    ad->ad_devinfo.Address);
    537 			if (ad->ad_devinfo.Valid & ACPI_VALID_STA)
    538 				printf("       STA 0x%08x\n",
    539 				    ad->ad_devinfo.CurrentStatus);
    540 #endif
    541 		}
    542 	}
    543  out:
    544 	return (AE_OK);
    545 }
    546 
    547 /*
    548  * acpi_print:
    549  *
    550  *	Autoconfiguration print routine.
    551  */
    552 int
    553 acpi_print(void *aux, const char *pnp)
    554 {
    555 	struct acpi_attach_args *aa = aux;
    556 #if 0
    557 	char *str;
    558 #endif
    559 
    560 	if (pnp) {
    561 		printf("%s ", aa->aa_node->ad_devinfo.HardwareId);
    562 #if 0 /* Not until we fix acpi_eval_string */
    563 		if (acpi_eval_string(aa->aa_node->ad_handle,
    564 		    "_STR", &str) == AE_OK) {
    565 			printf("[%s] ", str);
    566 			AcpiOsFree(str);
    567 		}
    568 #endif
    569 		printf("at %s", pnp);
    570 	}
    571 
    572 	return (UNCONF);
    573 }
    574 
    575 /*****************************************************************************
    576  * ACPI fixed-hardware feature handlers
    577  *****************************************************************************/
    578 
    579 UINT32		acpi_fixed_power_button_handler(void *);
    580 UINT32		acpi_fixed_sleep_button_handler(void *);
    581 
    582 /*
    583  * acpi_enable_fixed_events:
    584  *
    585  *	Enable any fixed-hardware feature handlers.
    586  */
    587 void
    588 acpi_enable_fixed_events(struct acpi_softc *sc)
    589 {
    590 	static int beenhere;
    591 	ACPI_STATUS rv;
    592 
    593 	/*
    594 	 * Check for fixed-hardware buttons.
    595 	 */
    596 
    597 	if (AcpiGbl_FADT != NULL && AcpiGbl_FADT->PwrButton == 0) {
    598 		if (beenhere == 0)
    599 			printf("%s: fixed-feature power button present\n",
    600 			    sc->sc_dev.dv_xname);
    601 		rv = AcpiInstallFixedEventHandler(ACPI_EVENT_POWER_BUTTON,
    602 		    acpi_fixed_power_button_handler, sc);
    603 		if (rv != AE_OK)
    604 			printf("%s: unable to install handler for fixed "
    605 			    "power button: %d\n", sc->sc_dev.dv_xname, rv);
    606 	}
    607 
    608 	if (AcpiGbl_FADT != NULL && AcpiGbl_FADT->SleepButton == 0) {
    609 		if (beenhere == 0)
    610 			printf("%s: fixed-feature sleep button present\n",
    611 			    sc->sc_dev.dv_xname);
    612 		rv = AcpiInstallFixedEventHandler(ACPI_EVENT_SLEEP_BUTTON,
    613 		    acpi_fixed_sleep_button_handler, sc);
    614 		if (rv != AE_OK)
    615 			printf("%s: unable to install handler for fixed "
    616 			    "power button: %d\n", sc->sc_dev.dv_xname, rv);
    617 	}
    618 
    619 	beenhere = 1;
    620 }
    621 
    622 /*
    623  * acpi_fixed_power_button_handler:
    624  *
    625  *	Fixed event handler for the power button.
    626  */
    627 UINT32
    628 acpi_fixed_power_button_handler(void *context)
    629 {
    630 	struct acpi_softc *sc = context;
    631 
    632 	/* XXX XXX XXX */
    633 
    634 	printf("%s: fixed power button pressed\n", sc->sc_dev.dv_xname);
    635 
    636 	return (ACPI_INTERRUPT_HANDLED);
    637 }
    638 
    639 /*
    640  * acpi_fixed_sleep_button_handler:
    641  *
    642  *	Fixed event handler for the sleep button.
    643  */
    644 UINT32
    645 acpi_fixed_sleep_button_handler(void *context)
    646 {
    647 	struct acpi_softc *sc = context;
    648 
    649 	/* XXX XXX XXX */
    650 
    651 	printf("%s: fixed sleep button pressed\n", sc->sc_dev.dv_xname);
    652 
    653 	return (ACPI_INTERRUPT_HANDLED);
    654 }
    655 
    656 /*****************************************************************************
    657  * ACPI utility routines.
    658  *****************************************************************************/
    659 
    660 /*
    661  * acpi_eval_integer:
    662  *
    663  *	Evaluate an integer object.
    664  */
    665 ACPI_STATUS
    666 acpi_eval_integer(ACPI_HANDLE handle, char *path, int *valp)
    667 {
    668 	ACPI_STATUS rv;
    669 	ACPI_BUFFER buf;
    670 	ACPI_OBJECT param;
    671 
    672 	if (handle == NULL)
    673 		handle = ACPI_ROOT_OBJECT;
    674 
    675 	buf.Pointer = &param;
    676 	buf.Length = sizeof(param);
    677 
    678 	rv = AcpiEvaluateObject(handle, path, NULL, &buf);
    679 	if (rv == AE_OK) {
    680 		if (param.Type == ACPI_TYPE_INTEGER)
    681 			*valp = param.Integer.Value;
    682 		else
    683 			rv = AE_TYPE;
    684 	}
    685 
    686 	return (rv);
    687 }
    688 
    689 #if 0
    690 /*
    691  * acpi_eval_string:
    692  *
    693  *	Evaluate a (Unicode) string object.
    694  * XXX current API may leak memory, so don't use this.
    695  */
    696 ACPI_STATUS
    697 acpi_eval_string(ACPI_HANDLE handle, char *path, char **stringp)
    698 {
    699 	ACPI_STATUS rv;
    700 	ACPI_BUFFER buf;
    701 	ACPI_OBJECT *param;
    702 
    703 	if (handle == NULL)
    704 		handle = ACPI_ROOT_OBJECT;
    705 
    706 	buf.Pointer = NULL;
    707 	buf.Length = 0;
    708 
    709 	rv = AcpiEvaluateObject(handle, path, NULL, &buf);
    710 	if (rv != AE_BUFFER_OVERFLOW)
    711 		return (rv);
    712 
    713 	buf.Pointer = AcpiOsAllocate(buf.Length);
    714 	if (buf.Pointer == NULL)
    715 		return (AE_NO_MEMORY);
    716 
    717 	rv = AcpiEvaluateObject(handle, path, NULL, &buf);
    718 	param = (ACPI_OBJECT *)buf.Pointer;
    719 	if (rv == AE_OK) {
    720 		if (param->Type == ACPI_TYPE_STRING) {
    721 			/* XXX may leak buf.Pointer!! */
    722 			*stringp = param->String.Pointer;
    723 			return (AE_OK);
    724 		}
    725 		rv = AE_TYPE;
    726 	}
    727 
    728 	AcpiOsFree(buf.Pointer);
    729 	return (rv);
    730 }
    731 #endif
    732 
    733 
    734 /*
    735  * acpi_eval_struct:
    736  *
    737  *	Evaluate a more complex structure.  Caller must free buf.Pointer.
    738  */
    739 ACPI_STATUS
    740 acpi_eval_struct(ACPI_HANDLE handle, char *path, ACPI_BUFFER *bufp)
    741 {
    742 	ACPI_STATUS rv;
    743 
    744 	if (handle == NULL)
    745 		handle = ACPI_ROOT_OBJECT;
    746 
    747 	bufp->Pointer = NULL;
    748 	bufp->Length = 0;
    749 
    750 	rv = AcpiEvaluateObject(handle, path, NULL, bufp);
    751 	if (rv != AE_BUFFER_OVERFLOW)
    752 		return (rv);
    753 
    754 	bufp->Pointer = AcpiOsAllocate(bufp->Length);
    755 	if (bufp->Pointer == NULL)
    756 		return (AE_NO_MEMORY);
    757 
    758 	rv = AcpiEvaluateObject(handle, path, NULL, bufp);
    759 
    760 	return (rv);
    761 }
    762 
    763 /*
    764  * acpi_get:
    765  *
    766  *	Fetch data info the specified (empty) ACPI buffer.
    767  */
    768 ACPI_STATUS
    769 acpi_get(ACPI_HANDLE handle, ACPI_BUFFER *buf,
    770     ACPI_STATUS (*getit)(ACPI_HANDLE, ACPI_BUFFER *))
    771 {
    772 	ACPI_STATUS rv;
    773 
    774 	buf->Pointer = NULL;
    775 	buf->Length = 0;
    776 
    777 	rv = (*getit)(handle, buf);
    778 	if (rv != AE_BUFFER_OVERFLOW)
    779 		return (rv);
    780 
    781 	buf->Pointer = AcpiOsAllocate(buf->Length);
    782 	if (buf->Pointer == NULL)
    783 		return (AE_NO_MEMORY);
    784 	memset(buf->Pointer, 0, buf->Length);
    785 
    786 	return ((*getit)(handle, buf));
    787 }
    788 
    789 
    790 /*****************************************************************************
    791  * ACPI sleep support.
    792  *****************************************************************************/
    793 
    794 static int
    795 is_available_state(struct acpi_softc *sc, int state)
    796 {
    797 	UINT8 type_a, type_b;
    798 
    799 	return (ACPI_SUCCESS(AcpiGetSleepTypeData((UINT8)state,
    800 						  &type_a, &type_b)));
    801 }
    802 
    803 /*
    804  * acpi_enter_sleep_state:
    805  *
    806  *	enter to the specified sleep state.
    807  */
    808 
    809 ACPI_STATUS
    810 acpi_enter_sleep_state(struct acpi_softc *sc, int state)
    811 {
    812 	int s;
    813 	ACPI_STATUS ret = AE_OK;
    814 
    815 	switch (state) {
    816 	case ACPI_STATE_S0:
    817 		break;
    818 	case ACPI_STATE_S1:
    819 	case ACPI_STATE_S2:
    820 	case ACPI_STATE_S3:
    821 	case ACPI_STATE_S4:
    822 		if (!is_available_state(sc, state)) {
    823 			printf("acpi: cannot enter the sleep state (%d).\n",
    824 			       state);
    825 			break;
    826 		}
    827 		ret = AcpiEnterSleepStatePrep(state);
    828 		if (ACPI_FAILURE(ret)) {
    829 			printf("acpi: failed preparing to sleep (%s)\n",
    830 			       AcpiFormatException(ret));
    831 			break;
    832 		}
    833 		if (state==ACPI_STATE_S1) {
    834 			/* just enter the state */
    835 			acpi_md_OsDisableInterrupt();
    836 			AcpiEnterSleepState((UINT8)state);
    837 			AcpiUtReleaseMutex(ACPI_MTX_HARDWARE);
    838 		} else {
    839 			/* XXX: powerhooks(9) framework is too poor to
    840 			 * support ACPI sleep state...
    841 			 */
    842 			dopowerhooks(PWR_SOFTSUSPEND);
    843 			s = splhigh();
    844 			dopowerhooks(PWR_SUSPEND);
    845 			acpi_md_sleep(state);
    846 			dopowerhooks(PWR_RESUME);
    847 			splx(s);
    848 			dopowerhooks(PWR_SOFTRESUME);
    849 			if (state==ACPI_STATE_S4)
    850 				AcpiEnable();
    851 		}
    852 		AcpiLeaveSleepState((UINT8)state);
    853 		break;
    854 	case ACPI_STATE_S5:
    855 		AcpiEnterSleepStatePrep(ACPI_STATE_S5);
    856 		acpi_md_OsDisableInterrupt();
    857 		AcpiEnterSleepState(ACPI_STATE_S5);
    858 		printf("WARNING: powerdown failed!\n");
    859 		break;
    860 	}
    861 
    862 	return (ret);
    863 }
    864 
    865 #if ACPI_PCI_FIXUP
    866 ACPI_STATUS acpi_pci_fixup_bus(ACPI_HANDLE, UINT32, void *, void **);
    867 /*
    868  * acpi_pci_fixup:
    869  *
    870  *	Set up PCI devices that BIOS didn't handle right.
    871  *	Iterate through all devices and try to get the _PTR
    872  *	(PCI Routing Table).  If it exists then make sure all
    873  *	interrupt links that it uses are working.
    874  */
    875 void
    876 acpi_pci_fixup(struct acpi_softc *sc)
    877 {
    878 	ACPI_HANDLE parent;
    879 
    880 #ifdef ACPI_DEBUG
    881 	printf("acpi_pci_fixup starts:\n");
    882 #endif
    883 	if (AcpiGetHandle(ACPI_ROOT_OBJECT, "\\_SB_", &parent) != AE_OK)
    884 		return;
    885 	sc->sc_pci_bus = 0;
    886 	AcpiWalkNamespace(ACPI_TYPE_DEVICE, parent, 100,
    887 	    acpi_pci_fixup_bus, sc, NULL);
    888 }
    889 
    890 static ACPI_HANDLE
    891 acpi_get_node(char *name)
    892 {
    893 	ACPI_NAMESPACE_NODE *ObjDesc;
    894 	ACPI_STATUS Status;
    895 
    896 	Status = AcpiNsGetNodeByPath(name, NULL, 0, &ObjDesc);
    897 	if (ACPI_FAILURE (Status)) {
    898 		printf("acpi_get_node: could not find: %s\n",
    899 		       AcpiFormatException (Status));
    900 		return NULL;
    901 	}
    902 	return ObjDesc;
    903 }
    904 
    905 static uint
    906 acpi_get_intr(ACPI_HANDLE handle)
    907 {
    908 	ACPI_BUFFER ret;
    909 	ACPI_STATUS rv;
    910 	ACPI_RESOURCE *res;
    911 	ACPI_RESOURCE_IRQ *irq;
    912 	uint intr;
    913 
    914 	intr = -1;
    915 	rv = acpi_get(handle, &ret, AcpiGetCurrentResources);
    916 	if (ACPI_FAILURE(rv))
    917 		return (intr);
    918 	for (res = ret.Pointer; res->Id != ACPI_RSTYPE_END_TAG;
    919 	     res = ACPI_NEXT_RESOURCE(res)) {
    920 		if (res->Id == ACPI_RSTYPE_IRQ) {
    921 			irq = (ACPI_RESOURCE_IRQ *)&res->Data;
    922 			if (irq->NumberOfInterrupts == 1)
    923 				intr = irq->Interrupts[0];
    924 			break;
    925 		}
    926 	}
    927 	free(ret.Pointer, M_DEVBUF);
    928 	return (intr);
    929 }
    930 
    931 static void
    932 acpi_pci_set_line(int bus, int dev, int pin, int line)
    933 {
    934 	ACPI_STATUS err;
    935 	ACPI_PCI_ID pid;
    936 	UINT32 intr, id, bhlc;
    937 	int func, nfunc;
    938 
    939 	pid.Bus = bus;
    940 	pid.Device = dev;
    941 	pid.Function = 0;
    942 
    943 	err = AcpiOsReadPciConfiguration(&pid, PCI_BHLC_REG, &bhlc, 32);
    944 	if (err)
    945 		return;
    946 	if (PCI_HDRTYPE_MULTIFN(bhlc))
    947 		nfunc = 8;
    948 	else
    949 		nfunc = 1;
    950 
    951 	for (func = 0; func < nfunc; func++) {
    952 		pid.Function = func;
    953 
    954 		err = AcpiOsReadPciConfiguration(&pid, PCI_ID_REG, &id, 32);
    955 		if (err || PCI_VENDOR(id) == PCI_VENDOR_INVALID ||
    956 		    PCI_VENDOR(id) == 0)
    957 			continue;
    958 
    959 		err = AcpiOsReadPciConfiguration(&pid, PCI_INTERRUPT_REG,
    960 			  &intr, 32);
    961 		if (err) {
    962 			printf("AcpiOsReadPciConfiguration failed %d\n", err);
    963 			return;
    964 		}
    965 		if (pin == PCI_INTERRUPT_PIN(intr) &&
    966 		    line != PCI_INTERRUPT_LINE(intr)) {
    967 #ifdef ACPI_DEBUG
    968 			printf("acpi fixup pci intr: %d:%d:%d %c: %d -> %d\n",
    969 			       bus, dev, func,
    970 			       pin + '@', PCI_INTERRUPT_LINE(intr),
    971 			       line);
    972 #endif
    973 			intr &= ~(PCI_INTERRUPT_LINE_MASK <<
    974 				  PCI_INTERRUPT_LINE_SHIFT);
    975 			intr |= line << PCI_INTERRUPT_LINE_SHIFT;
    976 			err = AcpiOsWritePciConfiguration(&pid,
    977 				  PCI_INTERRUPT_REG, intr, 32);
    978 			if (err) {
    979 				printf("AcpiOsWritePciConfiguration failed"
    980 				       " %d\n", err);
    981 				return;
    982 			}
    983 		}
    984 	}
    985 }
    986 
    987 ACPI_STATUS
    988 acpi_pci_fixup_bus(ACPI_HANDLE handle, UINT32 level, void *context,
    989 		   void **status)
    990 {
    991 	struct acpi_softc *sc = context;
    992 	ACPI_STATUS rv;
    993 	ACPI_BUFFER buf;
    994 	UINT8 *Buffer;
    995 	ACPI_PCI_ROUTING_TABLE *PrtElement;
    996 	ACPI_HANDLE link;
    997 	uint line;
    998 
    999 	rv = acpi_get(handle, &buf, AcpiGetIrqRoutingTable);
   1000 	if (ACPI_FAILURE(rv))
   1001 		return (AE_OK);
   1002 
   1003 #ifdef ACPI_DEBUG
   1004 	printf("%s: fixing up PCI\n", sc->sc_dev.dv_xname);
   1005 #endif
   1006 
   1007         for (Buffer = buf.Pointer; ; Buffer += PrtElement->Length) {
   1008 		PrtElement = (ACPI_PCI_ROUTING_TABLE *)Buffer;
   1009 		if (PrtElement->Length == 0)
   1010 			break;
   1011 		if (PrtElement->Source == NULL)
   1012 			continue;
   1013 
   1014 		link = acpi_get_node(PrtElement->Source);
   1015 		if (link == NULL)
   1016 			continue;
   1017 		line = acpi_get_intr(link);
   1018 		if (line == -1) {
   1019 #ifdef ACPI_DEBUG
   1020 			printf("%s: fixing up link %s\n", sc->sc_dev.dv_xname,
   1021 			    PrtElement->Source);
   1022 #endif
   1023 			rv = acpi_allocate_resources(link);
   1024 			if (ACPI_FAILURE(rv)) {
   1025 				printf("%s: interrupt allocation failed %s\n",
   1026 				    sc->sc_dev.dv_xname, PrtElement->Source);
   1027 				continue;
   1028 			}
   1029 			line = acpi_get_intr(link);
   1030 			if (line == -1) {
   1031 				printf("%s: get intr failed %s\n",
   1032 				    sc->sc_dev.dv_xname, PrtElement->Source);
   1033 				continue;
   1034 			}
   1035 		}
   1036 
   1037 		acpi_pci_set_line(sc->sc_pci_bus, PrtElement->Address >> 16,
   1038 		    PrtElement->Pin + 1, line);
   1039 	}
   1040 
   1041 	sc->sc_pci_bus++;
   1042 
   1043 	free(buf.Pointer, M_DEVBUF);
   1044 	return (AE_OK);
   1045 }
   1046 #endif /* ACPI_PCI_FIXUP */
   1047 
   1048 #if ACPI_PCI_FIXUP || ACPI_ACTIVATE_DEV
   1049 /* XXX This very incomplete */
   1050 ACPI_STATUS
   1051 acpi_allocate_resources(ACPI_HANDLE handle)
   1052 {
   1053 	ACPI_BUFFER bufp, bufc, bufn;
   1054 	ACPI_RESOURCE *resp, *resc, *resn;
   1055 	ACPI_RESOURCE_IRQ *irq;
   1056 	ACPI_STATUS rv;
   1057 	uint delta;
   1058 
   1059 	rv = acpi_get(handle, &bufp, AcpiGetPossibleResources);
   1060 	if (ACPI_FAILURE(rv))
   1061 		goto out;
   1062 	rv = acpi_get(handle, &bufc, AcpiGetCurrentResources);
   1063 	if (ACPI_FAILURE(rv)) {
   1064 		goto out1;
   1065 	}
   1066 
   1067 	bufn.Length = 1000;
   1068 	bufn.Pointer = resn = malloc(bufn.Length, M_DEVBUF, M_WAITOK);
   1069 	resp = bufp.Pointer;
   1070 	resc = bufc.Pointer;
   1071 	while (resc->Id != ACPI_RSTYPE_END_TAG &&
   1072 	       resp->Id != ACPI_RSTYPE_END_TAG) {
   1073 		while (resc->Id != resp->Id && resp->Id != ACPI_RSTYPE_END_TAG)
   1074 			resp = ACPI_NEXT_RESOURCE(resp);
   1075 		if (resp->Id == ACPI_RSTYPE_END_TAG)
   1076 			break;
   1077 		/* Found identical Id */
   1078 		resn->Id = resc->Id;
   1079 		switch (resc->Id) {
   1080 		case ACPI_RSTYPE_IRQ:
   1081 			memcpy(&resn->Data, &resp->Data,
   1082 			       sizeof(ACPI_RESOURCE_IRQ));
   1083 			irq = (ACPI_RESOURCE_IRQ *)&resn->Data;
   1084 			irq->Interrupts[0] =
   1085 			    ((ACPI_RESOURCE_IRQ *)&resp->Data)->
   1086 			        Interrupts[irq->NumberOfInterrupts-1];
   1087 			irq->NumberOfInterrupts = 1;
   1088 			resn->Length = ACPI_SIZEOF_RESOURCE(ACPI_RESOURCE_IRQ);
   1089 			break;
   1090 		case ACPI_RSTYPE_IO:
   1091 			memcpy(&resn->Data, &resp->Data,
   1092 			       sizeof(ACPI_RESOURCE_IO));
   1093 			resn->Length = resp->Length;
   1094 			break;
   1095 		default:
   1096 			printf("acpi_allocate_resources: res=%d\n", resc->Id);
   1097 			rv = AE_BAD_DATA;
   1098 			goto out2;
   1099 		}
   1100 		resc = ACPI_NEXT_RESOURCE(resc);
   1101 		resn = ACPI_NEXT_RESOURCE(resn);
   1102 		delta = (UINT8 *)resn - (UINT8 *)bufn.Pointer;
   1103 		if (delta >= bufn.Length-ACPI_SIZEOF_RESOURCE(ACPI_RESOURCE_DATA)) {
   1104 			bufn.Length *= 2;
   1105 			bufn.Pointer = realloc(bufn.Pointer, bufn.Length,
   1106 					       M_DEVBUF, M_WAITOK);
   1107 			resn = (ACPI_RESOURCE *)((UINT8 *)bufn.Pointer + delta);
   1108 		}
   1109 	}
   1110 	if (resc->Id != ACPI_RSTYPE_END_TAG) {
   1111 		printf("acpi_allocate_resources: resc not exhausted\n");
   1112 		rv = AE_BAD_DATA;
   1113 		goto out3;
   1114 	}
   1115 
   1116 	resn->Id = ACPI_RSTYPE_END_TAG;
   1117 	rv = AcpiSetCurrentResources(handle, &bufn);
   1118 	if (ACPI_FAILURE(rv)) {
   1119 		printf("acpi_allocate_resources: AcpiSetCurrentResources %s\n",
   1120 		       AcpiFormatException(rv));
   1121 	}
   1122 
   1123 out3:
   1124 	free(bufn.Pointer, M_DEVBUF);
   1125 out2:
   1126 	free(bufc.Pointer, M_DEVBUF);
   1127 out1:
   1128 	free(bufp.Pointer, M_DEVBUF);
   1129 out:
   1130 	return rv;
   1131 }
   1132 #endif /* ACPI_PCI_FIXUP || ACPI_ACTIVATE_DEV */
   1133