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