Home | History | Annotate | Line # | Download | only in acpi
acpi_ec.c revision 1.47
      1  1.47     joerg /*	$NetBSD: acpi_ec.c,v 1.47 2007/12/19 20:48:56 joerg Exp $	*/
      2   1.1   thorpej 
      3  1.44  jmcneill /*-
      4  1.44  jmcneill  * Copyright (c) 2007 Joerg Sonnenberger <joerg (at) NetBSD.org>.
      5   1.1   thorpej  * All rights reserved.
      6   1.1   thorpej  *
      7   1.1   thorpej  * Redistribution and use in source and binary forms, with or without
      8   1.1   thorpej  * modification, are permitted provided that the following conditions
      9   1.1   thorpej  * are met:
     10   1.1   thorpej  *
     11   1.1   thorpej  * 1. Redistributions of source code must retain the above copyright
     12   1.1   thorpej  *    notice, this list of conditions and the following disclaimer.
     13   1.1   thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     14  1.44  jmcneill  *    notice, this list of conditions and the following disclaimer in
     15  1.44  jmcneill  *    the documentation and/or other materials provided with the
     16  1.44  jmcneill  *    distribution.
     17  1.44  jmcneill  *
     18  1.44  jmcneill  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
     19  1.44  jmcneill  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
     20  1.44  jmcneill  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
     21  1.44  jmcneill  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE
     22  1.44  jmcneill  * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
     23  1.44  jmcneill  * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
     24  1.44  jmcneill  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
     25  1.44  jmcneill  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
     26  1.44  jmcneill  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
     27  1.44  jmcneill  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
     28  1.44  jmcneill  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     29   1.1   thorpej  * SUCH DAMAGE.
     30   1.1   thorpej  */
     31   1.1   thorpej 
     32  1.46     joerg /*
     33  1.46     joerg  * The ACPI Embedded Controller (EC) driver serves two different purposes:
     34  1.46     joerg  * - read and write access from ASL, e.g. to read battery state
     35  1.46     joerg  * - notification of ASL of System Control Interrupts.
     36  1.46     joerg  *
     37  1.46     joerg  * Access to the EC is serialised by sc_access_mtx and optionally the
     38  1.46     joerg  * ACPI global mutex.  Both locks are held until the request is fulfilled.
     39  1.46     joerg  * All access to the softc has to hold sc_mtx to serialise against the GPE
     40  1.46     joerg  * handler and the callout.  sc_mtx is also used for wakeup conditions.
     41  1.46     joerg  *
     42  1.46     joerg  * SCIs are processed in a kernel thread. Handling gets a bit complicated
     43  1.46     joerg  * by the lock order (sc_mtx must be acquired after sc_access_mtx and the
     44  1.46     joerg  * ACPI global mutex).
     45  1.46     joerg  *
     46  1.46     joerg  * Read and write requests spin around for a short time as many requests
     47  1.46     joerg  * can be handled instantly by the EC.  During normal processing interrupt
     48  1.46     joerg  * mode is used exclusively.  At boot and resume time interrupts are not
     49  1.46     joerg  * working and the handlers just busy loop.
     50  1.46     joerg  *
     51  1.46     joerg  * A callout is scheduled to compensate for missing interrupts on some
     52  1.46     joerg  * hardware.  If the EC doesn't process a request for 5s, it is most likely
     53  1.46     joerg  * in a wedged state.  No method to reset the EC is currently known.
     54  1.46     joerg  *
     55  1.46     joerg  * Special care has to be taken to not poll the EC in a busy loop without
     56  1.46     joerg  * delay.  This can prevent processing of Power Button events. At least some
     57  1.46     joerg  * Lenovo Thinkpads seem to be implement the Power Button Override in the EC
     58  1.46     joerg  * and the only option to recover on those models is to cut off all power.
     59  1.46     joerg  */
     60  1.46     joerg 
     61   1.3     lukem #include <sys/cdefs.h>
     62  1.47     joerg __KERNEL_RCSID(0, "$NetBSD: acpi_ec.c,v 1.47 2007/12/19 20:48:56 joerg Exp $");
     63   1.1   thorpej 
     64   1.1   thorpej #include <sys/param.h>
     65   1.1   thorpej #include <sys/systm.h>
     66  1.44  jmcneill #include <sys/condvar.h>
     67   1.1   thorpej #include <sys/device.h>
     68   1.1   thorpej #include <sys/kernel.h>
     69  1.44  jmcneill #include <sys/kthread.h>
     70  1.44  jmcneill #include <sys/mutex.h>
     71   1.1   thorpej 
     72  1.42        ad #include <sys/bus.h>
     73   1.1   thorpej 
     74   1.1   thorpej #include <dev/acpi/acpivar.h>
     75   1.1   thorpej 
     76  1.44  jmcneill /* Maximum time to wait for global ACPI lock in ms */
     77  1.44  jmcneill #define	EC_LOCK_TIMEOUT		5
     78  1.23     kochi 
     79  1.44  jmcneill /* Maximum time to poll for completion of a command  in ms */
     80  1.44  jmcneill #define	EC_POLL_TIMEOUT		5
     81   1.1   thorpej 
     82  1.46     joerg /* Maximum time to give a single EC command in s */
     83  1.46     joerg #define EC_CMD_TIMEOUT		10
     84  1.46     joerg 
     85  1.44  jmcneill /* From ACPI 3.0b, chapter 12.3 */
     86  1.44  jmcneill #define EC_COMMAND_READ		0x80
     87  1.44  jmcneill #define	EC_COMMAND_WRITE	0x81
     88  1.44  jmcneill #define	EC_COMMAND_BURST_EN	0x82
     89  1.44  jmcneill #define	EC_COMMAND_BURST_DIS	0x83
     90  1.44  jmcneill #define	EC_COMMAND_QUERY	0x84
     91  1.44  jmcneill 
     92  1.44  jmcneill /* From ACPI 3.0b, chapter 12.2.1 */
     93  1.44  jmcneill #define	EC_STATUS_OBF		0x01
     94  1.44  jmcneill #define	EC_STATUS_IBF		0x02
     95  1.44  jmcneill #define	EC_STATUS_CMD		0x08
     96  1.44  jmcneill #define	EC_STATUS_BURST		0x10
     97  1.44  jmcneill #define	EC_STATUS_SCI		0x20
     98  1.44  jmcneill #define	EC_STATUS_SMI		0x40
     99   1.1   thorpej 
    100  1.44  jmcneill static const char *ec_hid[] = {
    101  1.44  jmcneill 	"PNP0C09",
    102  1.44  jmcneill 	NULL,
    103  1.44  jmcneill };
    104  1.44  jmcneill 
    105  1.44  jmcneill enum ec_state_t {
    106  1.44  jmcneill 	EC_STATE_QUERY,
    107  1.44  jmcneill 	EC_STATE_QUERY_VAL,
    108  1.44  jmcneill 	EC_STATE_READ,
    109  1.44  jmcneill 	EC_STATE_READ_ADDR,
    110  1.44  jmcneill 	EC_STATE_READ_VAL,
    111  1.44  jmcneill 	EC_STATE_WRITE,
    112  1.44  jmcneill 	EC_STATE_WRITE_ADDR,
    113  1.44  jmcneill 	EC_STATE_WRITE_VAL,
    114  1.44  jmcneill 	EC_STATE_FREE
    115  1.44  jmcneill };
    116  1.44  jmcneill 
    117  1.44  jmcneill struct acpiec_softc {
    118  1.44  jmcneill 	ACPI_HANDLE sc_ech;
    119   1.1   thorpej 
    120  1.44  jmcneill 	ACPI_HANDLE sc_gpeh;
    121  1.44  jmcneill 	UINT8 sc_gpebit;
    122   1.1   thorpej 
    123  1.44  jmcneill 	bus_space_tag_t sc_data_st;
    124  1.44  jmcneill 	bus_space_handle_t sc_data_sh;
    125   1.1   thorpej 
    126  1.44  jmcneill 	bus_space_tag_t sc_csr_st;
    127  1.44  jmcneill 	bus_space_handle_t sc_csr_sh;
    128   1.1   thorpej 
    129  1.44  jmcneill 	bool sc_need_global_lock;
    130  1.44  jmcneill 	UINT32 sc_global_lock;
    131  1.17   mycroft 
    132  1.44  jmcneill 	kmutex_t sc_mtx, sc_access_mtx;
    133  1.44  jmcneill 	kcondvar_t sc_cv, sc_cv_sci;
    134  1.44  jmcneill 	enum ec_state_t sc_state;
    135  1.44  jmcneill 	bool sc_got_sci;
    136  1.46     joerg 	callout_t sc_pseudo_intr;
    137  1.44  jmcneill 
    138  1.44  jmcneill 	uint8_t sc_cur_addr, sc_cur_val;
    139  1.23     kochi };
    140   1.1   thorpej 
    141  1.44  jmcneill static int acpiecdt_match(device_t, struct cfdata *, void *);
    142  1.44  jmcneill static void acpiecdt_attach(device_t, device_t, void *);
    143  1.44  jmcneill 
    144  1.44  jmcneill static int acpiec_match(device_t, struct cfdata *, void *);
    145  1.44  jmcneill static void acpiec_attach(device_t, device_t, void *);
    146  1.16     kochi 
    147  1.44  jmcneill static void acpiec_common_attach(device_t, device_t, ACPI_HANDLE,
    148  1.44  jmcneill     bus_addr_t, bus_addr_t, ACPI_HANDLE, uint8_t);
    149   1.1   thorpej 
    150  1.44  jmcneill static bool acpiec_resume(device_t);
    151  1.44  jmcneill static bool acpiec_suspend(device_t);
    152  1.17   mycroft 
    153  1.44  jmcneill static bool acpiec_parse_gpe_package(device_t, ACPI_HANDLE,
    154  1.44  jmcneill     ACPI_HANDLE *, uint8_t *);
    155  1.20      yamt 
    156  1.46     joerg static void acpiec_callout(void *);
    157  1.44  jmcneill static void acpiec_gpe_query(void *);
    158  1.44  jmcneill static UINT32 acpiec_gpe_handler(void *);
    159  1.44  jmcneill static ACPI_STATUS acpiec_space_setup(ACPI_HANDLE, UINT32, void *, void **);
    160  1.44  jmcneill static ACPI_STATUS acpiec_space_handler(UINT32, ACPI_PHYSICAL_ADDRESS,
    161  1.44  jmcneill     UINT32, ACPI_INTEGER *, void *, void *);
    162  1.20      yamt 
    163  1.45  jmcneill static void acpiec_gpe_state_machine(device_t);
    164  1.20      yamt 
    165  1.44  jmcneill CFATTACH_DECL_NEW(acpiec, sizeof(struct acpiec_softc),
    166  1.20      yamt     acpiec_match, acpiec_attach, NULL, NULL);
    167  1.20      yamt 
    168  1.44  jmcneill CFATTACH_DECL_NEW(acpiecdt, sizeof(struct acpiec_softc),
    169  1.44  jmcneill     acpiecdt_match, acpiecdt_attach, NULL, NULL);
    170  1.44  jmcneill 
    171  1.44  jmcneill static device_t ec_singleton = NULL;
    172  1.44  jmcneill static bool acpiec_cold = false;
    173  1.23     kochi 
    174  1.44  jmcneill static bool
    175  1.44  jmcneill acpiecdt_find(device_t parent, ACPI_HANDLE *ec_handle,
    176  1.44  jmcneill     bus_addr_t *cmd_reg, bus_addr_t *data_reg, uint8_t *gpebit)
    177   1.9  tshiozak {
    178  1.44  jmcneill 	ACPI_TABLE_ECDT *ecdt;
    179  1.44  jmcneill 	ACPI_STATUS rv;
    180  1.44  jmcneill 
    181  1.44  jmcneill 	rv = AcpiGetTable(ACPI_SIG_ECDT, 1, (ACPI_TABLE_HEADER **)&ecdt);
    182  1.44  jmcneill 	if (ACPI_FAILURE(rv))
    183  1.44  jmcneill 		return false;
    184  1.44  jmcneill 
    185  1.44  jmcneill 	if (ecdt->Control.BitWidth != 8 || ecdt->Data.BitWidth != 8) {
    186  1.44  jmcneill 		aprint_error_dev(parent,
    187  1.44  jmcneill 		    "ECDT register width invalid (%d/%d)\n",
    188  1.44  jmcneill 		    ecdt->Control.BitWidth, ecdt->Data.BitWidth);
    189  1.44  jmcneill 		return false;
    190  1.44  jmcneill 	}
    191  1.24     kochi 
    192  1.44  jmcneill 	rv = AcpiGetHandle(ACPI_ROOT_OBJECT, ecdt->Id, ec_handle);
    193  1.44  jmcneill 	if (ACPI_FAILURE(rv)) {
    194  1.44  jmcneill 		aprint_error_dev(parent,
    195  1.44  jmcneill 		    "failed to look up EC object %s: %s\n",
    196  1.44  jmcneill 		    ecdt->Id, AcpiFormatException(rv));
    197  1.44  jmcneill 		return false;
    198  1.44  jmcneill 	}
    199  1.44  jmcneill 
    200  1.44  jmcneill 	*cmd_reg = ecdt->Control.Address;
    201  1.44  jmcneill 	*data_reg = ecdt->Data.Address;
    202  1.44  jmcneill 	*gpebit = ecdt->Gpe;
    203  1.44  jmcneill 
    204  1.44  jmcneill 	return true;
    205   1.9  tshiozak }
    206   1.4   thorpej 
    207  1.44  jmcneill static int
    208  1.44  jmcneill acpiecdt_match(device_t parent, struct cfdata *match, void *aux)
    209   1.1   thorpej {
    210  1.44  jmcneill 	ACPI_HANDLE ec_handle;
    211  1.44  jmcneill 	bus_addr_t cmd_reg, data_reg;
    212  1.44  jmcneill 	uint8_t gpebit;
    213   1.1   thorpej 
    214  1.44  jmcneill 	if (acpiecdt_find(parent, &ec_handle, &cmd_reg, &data_reg, &gpebit))
    215  1.44  jmcneill 		return 1;
    216  1.44  jmcneill 	else
    217  1.44  jmcneill 		return 0;
    218   1.1   thorpej }
    219   1.1   thorpej 
    220  1.44  jmcneill static void
    221  1.44  jmcneill acpiecdt_attach(device_t parent, device_t self, void *aux)
    222   1.1   thorpej {
    223  1.44  jmcneill 	ACPI_HANDLE ec_handle;
    224  1.44  jmcneill 	bus_addr_t cmd_reg, data_reg;
    225  1.44  jmcneill 	uint8_t gpebit;
    226  1.44  jmcneill 
    227  1.44  jmcneill 	if (!acpiecdt_find(parent, &ec_handle, &cmd_reg, &data_reg, &gpebit))
    228  1.44  jmcneill 		panic("ECDT disappeared");
    229  1.44  jmcneill 
    230  1.44  jmcneill 	aprint_naive(": ACPI Embedded Controller via ECDT\n");
    231  1.44  jmcneill 	aprint_normal(": ACPI Embedded Controller via ECDT\n");
    232  1.20      yamt 
    233  1.44  jmcneill 	acpiec_common_attach(parent, self, ec_handle, cmd_reg, data_reg,
    234  1.44  jmcneill 	    NULL, gpebit);
    235   1.1   thorpej }
    236   1.1   thorpej 
    237  1.31     kochi static int
    238  1.44  jmcneill acpiec_match(device_t parent, struct cfdata *match, void *aux)
    239   1.1   thorpej {
    240   1.1   thorpej 	struct acpi_attach_args *aa = aux;
    241   1.1   thorpej 
    242   1.1   thorpej 	if (aa->aa_node->ad_type != ACPI_TYPE_DEVICE)
    243  1.25     kochi 		return 0;
    244   1.1   thorpej 
    245  1.25     kochi 	return acpi_match_hid(aa->aa_node->ad_devinfo, ec_hid);
    246   1.1   thorpej }
    247   1.1   thorpej 
    248  1.44  jmcneill static void
    249  1.44  jmcneill acpiec_attach(device_t parent, device_t self, void *aux)
    250  1.17   mycroft {
    251  1.44  jmcneill 	struct acpi_attach_args *aa = aux;
    252  1.44  jmcneill 	struct acpi_resources ec_res;
    253  1.44  jmcneill 	struct acpi_io *io0, *io1;
    254  1.44  jmcneill 	ACPI_HANDLE gpe_handle;
    255  1.44  jmcneill 	uint8_t gpebit;
    256  1.23     kochi 	ACPI_STATUS rv;
    257  1.17   mycroft 
    258  1.44  jmcneill 	if (ec_singleton != NULL) {
    259  1.44  jmcneill 		aprint_naive(": ACPI Embedded Controller (disabled)\n");
    260  1.44  jmcneill 		aprint_normal(": ACPI Embedded Controller (disabled)\n");
    261  1.44  jmcneill 		if (!pmf_device_register(self, NULL, NULL))
    262  1.44  jmcneill 			aprint_error_dev(self, "couldn't establish power handler\n");
    263  1.44  jmcneill 		return;
    264  1.44  jmcneill 	}
    265  1.44  jmcneill 
    266  1.44  jmcneill 	aprint_naive(": ACPI Embedded Controller\n");
    267  1.44  jmcneill 	aprint_normal(": ACPI Embedded Controller\n");
    268  1.44  jmcneill 
    269  1.44  jmcneill 	if (!acpiec_parse_gpe_package(self, aa->aa_node->ad_handle,
    270  1.44  jmcneill 				      &gpe_handle, &gpebit))
    271  1.17   mycroft 		return;
    272  1.17   mycroft 
    273  1.44  jmcneill 	rv = acpi_resource_parse(self, aa->aa_node->ad_handle, "_CRS",
    274  1.44  jmcneill 	    &ec_res, &acpi_resource_parse_ops_default);
    275  1.44  jmcneill 	if (rv != AE_OK) {
    276  1.44  jmcneill 		aprint_error_dev(self, "resource parsing failed: %s\n",
    277  1.44  jmcneill 		    AcpiFormatException(rv));
    278  1.17   mycroft 		return;
    279  1.17   mycroft 	}
    280  1.17   mycroft 
    281  1.44  jmcneill 	if ((io0 = acpi_res_io(&ec_res, 0)) == NULL) {
    282  1.44  jmcneill 		aprint_error_dev(self, "no data register resource\n");
    283  1.44  jmcneill 		goto free_res;
    284  1.44  jmcneill 	}
    285  1.44  jmcneill 	if ((io1 = acpi_res_io(&ec_res, 1)) == NULL) {
    286  1.44  jmcneill 		aprint_error_dev(self, "no CSR register resource\n");
    287  1.44  jmcneill 		goto free_res;
    288  1.23     kochi 	}
    289  1.23     kochi 
    290  1.44  jmcneill 	acpiec_common_attach(parent, self, aa->aa_node->ad_handle,
    291  1.44  jmcneill 	    io1->ar_base, io0->ar_base, gpe_handle, gpebit);
    292  1.23     kochi 
    293  1.44  jmcneill free_res:
    294  1.44  jmcneill 	acpi_resource_cleanup(&ec_res);
    295  1.44  jmcneill }
    296  1.23     kochi 
    297  1.44  jmcneill static void
    298  1.44  jmcneill acpiec_common_attach(device_t parent, device_t self,
    299  1.44  jmcneill     ACPI_HANDLE ec_handle, bus_addr_t cmd_reg, bus_addr_t data_reg,
    300  1.44  jmcneill     ACPI_HANDLE gpe_handle, uint8_t gpebit)
    301  1.44  jmcneill {
    302  1.44  jmcneill 	struct acpiec_softc *sc = device_private(self);
    303  1.44  jmcneill 	ACPI_STATUS rv;
    304  1.44  jmcneill 	ACPI_INTEGER val;
    305  1.23     kochi 
    306  1.44  jmcneill 	sc->sc_ech = ec_handle;
    307  1.44  jmcneill 	sc->sc_gpeh = gpe_handle;
    308  1.44  jmcneill 	sc->sc_gpebit = gpebit;
    309  1.44  jmcneill 
    310  1.44  jmcneill 	sc->sc_state = EC_STATE_FREE;
    311  1.44  jmcneill 	mutex_init(&sc->sc_mtx, MUTEX_DRIVER, IPL_TTY);
    312  1.44  jmcneill 	mutex_init(&sc->sc_access_mtx, MUTEX_DEFAULT, IPL_NONE);
    313  1.44  jmcneill 	cv_init(&sc->sc_cv, "eccv");
    314  1.44  jmcneill 	cv_init(&sc->sc_cv_sci, "ecsci");
    315  1.44  jmcneill 
    316  1.44  jmcneill 	if (bus_space_map(sc->sc_data_st, data_reg, 1, 0,
    317  1.44  jmcneill 	    &sc->sc_data_sh) != 0) {
    318  1.44  jmcneill 		aprint_error_dev(self, "unable to map data register\n");
    319  1.44  jmcneill 		return;
    320  1.44  jmcneill 	}
    321  1.23     kochi 
    322  1.44  jmcneill 	if (bus_space_map(sc->sc_csr_st, cmd_reg, 1, 0, &sc->sc_csr_sh) != 0) {
    323  1.44  jmcneill 		aprint_error_dev(self, "unable to map CSR register\n");
    324  1.44  jmcneill 		goto post_data_map;
    325  1.23     kochi 	}
    326  1.23     kochi 
    327  1.44  jmcneill 	rv = acpi_eval_integer(sc->sc_ech, "_GLK", &val);
    328  1.44  jmcneill 	if (rv == AE_OK) {
    329  1.44  jmcneill 		sc->sc_need_global_lock = val != 0;
    330  1.44  jmcneill 	} else if (rv != AE_NOT_FOUND) {
    331  1.44  jmcneill 		aprint_error_dev(self, "unable to evaluate _GLK: %s\n",
    332  1.44  jmcneill 		    AcpiFormatException(rv));
    333  1.44  jmcneill 		goto post_csr_map;
    334  1.44  jmcneill 	} else {
    335  1.44  jmcneill 		sc->sc_need_global_lock = false;
    336  1.33     kochi 	}
    337  1.44  jmcneill 	if (sc->sc_need_global_lock)
    338  1.44  jmcneill 		aprint_normal_dev(self, "using global ACPI lock\n");
    339  1.33     kochi 
    340  1.46     joerg 	callout_init(&sc->sc_pseudo_intr, CALLOUT_MPSAFE);
    341  1.46     joerg 	callout_setfunc(&sc->sc_pseudo_intr, acpiec_callout, self);
    342  1.46     joerg 
    343  1.44  jmcneill 	rv = AcpiInstallAddressSpaceHandler(sc->sc_ech, ACPI_ADR_SPACE_EC,
    344  1.44  jmcneill 	    acpiec_space_handler, acpiec_space_setup, self);
    345  1.44  jmcneill 	if (rv != AE_OK) {
    346  1.44  jmcneill 		aprint_error_dev(self,
    347  1.44  jmcneill 		    "unable to install address space handler: %s\n",
    348  1.44  jmcneill 		    AcpiFormatException(rv));
    349  1.44  jmcneill 		goto post_csr_map;
    350  1.33     kochi 	}
    351  1.33     kochi 
    352  1.44  jmcneill 	rv = AcpiInstallGpeHandler(sc->sc_gpeh, sc->sc_gpebit,
    353  1.44  jmcneill 	    ACPI_GPE_EDGE_TRIGGERED, acpiec_gpe_handler, self);
    354  1.44  jmcneill 	if (rv != AE_OK) {
    355  1.44  jmcneill 		aprint_error_dev(self, "unable to install GPE handler: %s\n",
    356  1.23     kochi 		    AcpiFormatException(rv));
    357  1.44  jmcneill 		goto post_csr_map;
    358  1.17   mycroft 	}
    359  1.23     kochi 
    360  1.44  jmcneill 	rv = AcpiSetGpeType(sc->sc_gpeh, sc->sc_gpebit, ACPI_GPE_TYPE_RUNTIME);
    361  1.44  jmcneill 	if (rv != AE_OK) {
    362  1.44  jmcneill 		aprint_error_dev(self, "unable to set GPE type: %s\n",
    363  1.44  jmcneill 		    AcpiFormatException(rv));
    364  1.44  jmcneill 		goto post_csr_map;
    365  1.44  jmcneill 	}
    366  1.23     kochi 
    367  1.44  jmcneill 	rv = AcpiEnableGpe(sc->sc_gpeh, sc->sc_gpebit, ACPI_ISR);
    368  1.44  jmcneill 	if (rv != AE_OK) {
    369  1.44  jmcneill 		aprint_error_dev(self, "unable to enable GPE: %s\n",
    370  1.44  jmcneill 		    AcpiFormatException(rv));
    371  1.44  jmcneill 		goto post_csr_map;
    372  1.44  jmcneill 	}
    373  1.23     kochi 
    374  1.44  jmcneill 	if (kthread_create(PRI_NONE, KTHREAD_MPSAFE, NULL, acpiec_gpe_query,
    375  1.44  jmcneill 		           self, NULL, "acpiec sci thread")) {
    376  1.44  jmcneill 		aprint_error_dev(self, "unable to create query kthread\n");
    377  1.44  jmcneill 		goto post_csr_map;
    378  1.44  jmcneill 	}
    379  1.23     kochi 
    380  1.44  jmcneill 	ec_singleton = self;
    381  1.23     kochi 
    382  1.44  jmcneill 	if (!pmf_device_register(self, acpiec_suspend, acpiec_resume))
    383  1.44  jmcneill 		aprint_error_dev(self, "couldn't establish power handler\n");
    384  1.23     kochi 
    385  1.23     kochi 	return;
    386  1.44  jmcneill 
    387  1.44  jmcneill post_csr_map:
    388  1.44  jmcneill 	(void)AcpiRemoveGpeHandler(sc->sc_gpeh, sc->sc_gpebit,
    389  1.44  jmcneill 	    acpiec_gpe_handler);
    390  1.44  jmcneill 	(void)AcpiRemoveAddressSpaceHandler(sc->sc_ech,
    391  1.44  jmcneill 	    ACPI_ADR_SPACE_EC, acpiec_space_handler);
    392  1.44  jmcneill 	bus_space_unmap(sc->sc_csr_st, sc->sc_csr_sh, 1);
    393  1.44  jmcneill post_data_map:
    394  1.44  jmcneill 	bus_space_unmap(sc->sc_data_st, sc->sc_data_sh, 1);
    395  1.17   mycroft }
    396  1.17   mycroft 
    397  1.44  jmcneill static bool
    398  1.44  jmcneill acpiec_suspend(device_t dv)
    399   1.1   thorpej {
    400  1.44  jmcneill 	acpiec_cold = true;
    401   1.1   thorpej 
    402  1.44  jmcneill 	return true;
    403  1.44  jmcneill }
    404   1.1   thorpej 
    405  1.44  jmcneill static bool
    406  1.44  jmcneill acpiec_resume(device_t dv)
    407  1.44  jmcneill {
    408  1.44  jmcneill 	acpiec_cold = false;
    409   1.1   thorpej 
    410  1.44  jmcneill 	return true;
    411  1.44  jmcneill }
    412  1.17   mycroft 
    413  1.44  jmcneill static bool
    414  1.44  jmcneill acpiec_parse_gpe_package(device_t self, ACPI_HANDLE ec_handle,
    415  1.44  jmcneill     ACPI_HANDLE *gpe_handle, uint8_t *gpebit)
    416  1.44  jmcneill {
    417  1.44  jmcneill 	ACPI_BUFFER buf;
    418  1.44  jmcneill 	ACPI_OBJECT *p, *c;
    419  1.44  jmcneill 	ACPI_STATUS rv;
    420   1.1   thorpej 
    421  1.44  jmcneill 	rv = acpi_eval_struct(ec_handle, "_GPE", &buf);
    422  1.44  jmcneill 	if (rv != AE_OK) {
    423  1.44  jmcneill 		aprint_error_dev(self, "unable to evaluate _GPE: %s\n",
    424  1.44  jmcneill 		    AcpiFormatException(rv));
    425  1.44  jmcneill 		return false;
    426  1.44  jmcneill 	}
    427   1.1   thorpej 
    428  1.44  jmcneill 	p = buf.Pointer;
    429  1.23     kochi 
    430  1.44  jmcneill 	if (p->Type == ACPI_TYPE_INTEGER) {
    431  1.44  jmcneill 		*gpe_handle = NULL;
    432  1.44  jmcneill 		*gpebit = p->Integer.Value;
    433  1.44  jmcneill 		AcpiOsFree(p);
    434  1.44  jmcneill 		return true;
    435  1.44  jmcneill 	}
    436  1.23     kochi 
    437  1.44  jmcneill 	if (p->Type != ACPI_TYPE_PACKAGE) {
    438  1.44  jmcneill 		aprint_error_dev(self, "_GPE is neither integer nor package\n");
    439  1.44  jmcneill 		AcpiOsFree(p);
    440  1.44  jmcneill 		return false;
    441  1.44  jmcneill 	}
    442  1.44  jmcneill 
    443  1.44  jmcneill 	if (p->Package.Count != 2) {
    444  1.44  jmcneill 		aprint_error_dev(self, "_GPE package does not contain 2 elements\n");
    445  1.44  jmcneill 		AcpiOsFree(p);
    446  1.44  jmcneill 		return false;
    447   1.1   thorpej 	}
    448   1.1   thorpej 
    449  1.44  jmcneill 	c = &p->Package.Elements[0];
    450  1.44  jmcneill 	switch (c->Type) {
    451  1.44  jmcneill 	case ACPI_TYPE_LOCAL_REFERENCE:
    452  1.44  jmcneill 	case ACPI_TYPE_ANY:
    453  1.44  jmcneill 		*gpe_handle = c->Reference.Handle;
    454  1.44  jmcneill 		break;
    455  1.44  jmcneill 	case ACPI_TYPE_STRING:
    456  1.44  jmcneill 		/* XXX should be using real scope here */
    457  1.44  jmcneill 		rv = AcpiGetHandle(NULL, p->String.Pointer, gpe_handle);
    458  1.44  jmcneill 		if (rv != AE_OK) {
    459  1.44  jmcneill 			aprint_error_dev(self,
    460  1.44  jmcneill 			    "_GPE device reference unresolvable\n");
    461  1.44  jmcneill 			AcpiOsFree(p);
    462  1.44  jmcneill 			return false;
    463  1.44  jmcneill 		}
    464  1.44  jmcneill 		break;
    465  1.44  jmcneill 	default:
    466  1.44  jmcneill 		aprint_error_dev(self, "_GPE device reference incorrect\n");
    467  1.44  jmcneill 		AcpiOsFree(p);
    468  1.44  jmcneill 		return false;
    469  1.44  jmcneill 	}
    470  1.44  jmcneill 	c = &p->Package.Elements[1];
    471  1.44  jmcneill 	if (c->Type != ACPI_TYPE_INTEGER) {
    472  1.44  jmcneill 		aprint_error_dev(self,
    473  1.44  jmcneill 		    "_GPE package needs integer as 2nd field\n");
    474  1.44  jmcneill 		AcpiOsFree(p);
    475  1.44  jmcneill 		return false;
    476  1.44  jmcneill 	}
    477  1.44  jmcneill 	*gpebit = c->Integer.Value;
    478  1.44  jmcneill 	AcpiOsFree(p);
    479  1.44  jmcneill 	return true;
    480  1.44  jmcneill }
    481  1.23     kochi 
    482  1.44  jmcneill static uint8_t
    483  1.44  jmcneill acpiec_read_data(struct acpiec_softc *sc)
    484  1.44  jmcneill {
    485  1.44  jmcneill 	return bus_space_read_1(sc->sc_data_st, sc->sc_data_sh, 0);
    486  1.44  jmcneill }
    487  1.17   mycroft 
    488  1.44  jmcneill static void
    489  1.44  jmcneill acpiec_write_data(struct acpiec_softc *sc, uint8_t val)
    490  1.44  jmcneill {
    491  1.44  jmcneill 	bus_space_write_1(sc->sc_data_st, sc->sc_data_sh, 0, val);
    492  1.44  jmcneill }
    493   1.1   thorpej 
    494  1.44  jmcneill static uint8_t
    495  1.44  jmcneill acpiec_read_status(struct acpiec_softc *sc)
    496  1.44  jmcneill {
    497  1.44  jmcneill 	return bus_space_read_1(sc->sc_csr_st, sc->sc_csr_sh, 0);
    498  1.44  jmcneill }
    499  1.33     kochi 
    500  1.44  jmcneill static void
    501  1.44  jmcneill acpiec_write_command(struct acpiec_softc *sc, uint8_t cmd)
    502  1.44  jmcneill {
    503  1.44  jmcneill 	bus_space_write_1(sc->sc_csr_st, sc->sc_csr_sh, 0, cmd);
    504  1.44  jmcneill }
    505  1.33     kochi 
    506  1.44  jmcneill static ACPI_STATUS
    507  1.44  jmcneill acpiec_space_setup(ACPI_HANDLE region, UINT32 func, void *arg,
    508  1.44  jmcneill     void **region_arg)
    509  1.44  jmcneill {
    510  1.44  jmcneill 	if (func == ACPI_REGION_DEACTIVATE)
    511  1.44  jmcneill 		*region_arg = NULL;
    512  1.44  jmcneill 	else
    513  1.44  jmcneill 		*region_arg = arg;
    514   1.1   thorpej 
    515  1.44  jmcneill 	return AE_OK;
    516   1.1   thorpej }
    517   1.1   thorpej 
    518   1.1   thorpej static void
    519  1.44  jmcneill acpiec_lock(device_t dv)
    520   1.1   thorpej {
    521  1.44  jmcneill 	struct acpiec_softc *sc = device_private(dv);
    522  1.25     kochi 	ACPI_STATUS rv;
    523   1.1   thorpej 
    524  1.44  jmcneill 	mutex_enter(&sc->sc_access_mtx);
    525   1.1   thorpej 
    526  1.44  jmcneill 	if (sc->sc_need_global_lock) {
    527  1.44  jmcneill 		rv = AcpiAcquireGlobalLock(EC_LOCK_TIMEOUT, &sc->sc_global_lock);
    528  1.44  jmcneill 		if (rv != AE_OK) {
    529  1.44  jmcneill 			aprint_error_dev(dv, "failed to acquire global lock: %s\n",
    530  1.44  jmcneill 			    AcpiFormatException(rv));
    531  1.44  jmcneill 			return;
    532   1.1   thorpej 		}
    533  1.44  jmcneill 	}
    534  1.44  jmcneill }
    535  1.44  jmcneill 
    536  1.44  jmcneill static void
    537  1.44  jmcneill acpiec_unlock(device_t dv)
    538  1.44  jmcneill {
    539  1.44  jmcneill 	struct acpiec_softc *sc = device_private(dv);
    540  1.44  jmcneill 	ACPI_STATUS rv;
    541   1.1   thorpej 
    542  1.44  jmcneill 	if (sc->sc_need_global_lock) {
    543  1.44  jmcneill 		rv = AcpiReleaseGlobalLock(sc->sc_global_lock);
    544  1.44  jmcneill 		if (rv != AE_OK) {
    545  1.44  jmcneill 			aprint_error_dev(dv, "failed to release global lock: %s\n",
    546  1.25     kochi 			    AcpiFormatException(rv));
    547   1.1   thorpej 		}
    548   1.1   thorpej 	}
    549  1.44  jmcneill 	mutex_exit(&sc->sc_access_mtx);
    550  1.44  jmcneill }
    551  1.44  jmcneill 
    552  1.44  jmcneill static ACPI_STATUS
    553  1.44  jmcneill acpiec_read(device_t dv, uint8_t addr, uint8_t *val)
    554  1.44  jmcneill {
    555  1.44  jmcneill 	struct acpiec_softc *sc = device_private(dv);
    556  1.46     joerg 	int i;
    557   1.1   thorpej 
    558  1.44  jmcneill 	acpiec_lock(dv);
    559  1.44  jmcneill 	mutex_enter(&sc->sc_mtx);
    560   1.1   thorpej 
    561  1.44  jmcneill 	sc->sc_cur_addr = addr;
    562  1.44  jmcneill 	sc->sc_state = EC_STATE_READ;
    563   1.1   thorpej 
    564  1.44  jmcneill 	for (i = 0; i < EC_POLL_TIMEOUT; ++i) {
    565  1.45  jmcneill 		acpiec_gpe_state_machine(dv);
    566  1.44  jmcneill 		if (sc->sc_state == EC_STATE_FREE)
    567  1.44  jmcneill 			goto done;
    568  1.44  jmcneill 		delay(1);
    569  1.44  jmcneill 	}
    570   1.1   thorpej 
    571  1.44  jmcneill 	if (cold || acpiec_cold) {
    572  1.44  jmcneill 		while (sc->sc_state != EC_STATE_FREE) {
    573  1.44  jmcneill 			delay(1);
    574  1.45  jmcneill 			acpiec_gpe_state_machine(dv);
    575   1.1   thorpej 		}
    576  1.46     joerg 	} else while (cv_timedwait(&sc->sc_cv, &sc->sc_mtx, EC_CMD_TIMEOUT * hz)) {
    577  1.44  jmcneill 		mutex_exit(&sc->sc_mtx);
    578  1.44  jmcneill 		AcpiClearGpe(sc->sc_gpeh, sc->sc_gpebit, ACPI_NOT_ISR);
    579  1.44  jmcneill 		acpiec_unlock(dv);
    580  1.46     joerg 		aprint_error_dev(dv, "command takes over %d sec...\n", EC_CMD_TIMEOUT);
    581  1.44  jmcneill 		return AE_ERROR;
    582   1.1   thorpej 	}
    583  1.33     kochi 
    584  1.44  jmcneill done:
    585  1.44  jmcneill 	*val = sc->sc_cur_val;
    586  1.44  jmcneill 
    587  1.44  jmcneill 	mutex_exit(&sc->sc_mtx);
    588  1.44  jmcneill 	acpiec_unlock(dv);
    589  1.44  jmcneill 	return AE_OK;
    590   1.1   thorpej }
    591   1.1   thorpej 
    592   1.1   thorpej static ACPI_STATUS
    593  1.44  jmcneill acpiec_write(device_t dv, uint8_t addr, uint8_t val)
    594   1.1   thorpej {
    595  1.44  jmcneill 	struct acpiec_softc *sc = device_private(dv);
    596  1.46     joerg 	int i;
    597   1.1   thorpej 
    598  1.44  jmcneill 	acpiec_lock(dv);
    599  1.44  jmcneill 	mutex_enter(&sc->sc_mtx);
    600   1.1   thorpej 
    601  1.44  jmcneill 	sc->sc_cur_addr = addr;
    602  1.44  jmcneill 	sc->sc_cur_val = val;
    603  1.44  jmcneill 	sc->sc_state = EC_STATE_WRITE;
    604  1.44  jmcneill 
    605  1.44  jmcneill 	for (i = 0; i < EC_POLL_TIMEOUT; ++i) {
    606  1.45  jmcneill 		acpiec_gpe_state_machine(dv);
    607  1.44  jmcneill 		if (sc->sc_state == EC_STATE_FREE)
    608  1.44  jmcneill 			goto done;
    609  1.44  jmcneill 		delay(1);
    610  1.44  jmcneill 	}
    611  1.44  jmcneill 
    612  1.44  jmcneill 	if (cold || acpiec_cold) {
    613  1.44  jmcneill 		while (sc->sc_state != EC_STATE_FREE) {
    614  1.44  jmcneill 			delay(1);
    615  1.45  jmcneill 			acpiec_gpe_state_machine(dv);
    616  1.44  jmcneill 		}
    617  1.46     joerg 	} else while (cv_timedwait(&sc->sc_cv, &sc->sc_mtx, EC_CMD_TIMEOUT * hz)) {
    618  1.44  jmcneill 		mutex_exit(&sc->sc_mtx);
    619  1.44  jmcneill 		AcpiClearGpe(sc->sc_gpeh, sc->sc_gpebit, ACPI_NOT_ISR);
    620  1.44  jmcneill 		acpiec_unlock(dv);
    621  1.46     joerg 		aprint_error_dev(dv, "command takes over %d sec...\n", EC_CMD_TIMEOUT);
    622  1.44  jmcneill 		return AE_ERROR;
    623  1.44  jmcneill 	}
    624   1.1   thorpej 
    625  1.44  jmcneill done:
    626  1.44  jmcneill 	mutex_exit(&sc->sc_mtx);
    627  1.44  jmcneill 	acpiec_unlock(dv);
    628  1.44  jmcneill 	return AE_OK;
    629   1.1   thorpej }
    630   1.1   thorpej 
    631   1.1   thorpej static ACPI_STATUS
    632  1.44  jmcneill acpiec_space_handler(UINT32 func, ACPI_PHYSICAL_ADDRESS paddr,
    633  1.44  jmcneill     UINT32 width, ACPI_INTEGER *value, void *arg, void *region_arg)
    634   1.1   thorpej {
    635  1.44  jmcneill 	device_t dv;
    636  1.44  jmcneill 	struct acpiec_softc *sc;
    637  1.44  jmcneill 	ACPI_STATUS rv;
    638  1.44  jmcneill 	uint8_t addr, reg;
    639  1.44  jmcneill 	unsigned int i;
    640  1.44  jmcneill 
    641  1.44  jmcneill 	if (paddr > 0xff || width % 8 != 0 || value == NULL || arg == NULL ||
    642  1.44  jmcneill 	    paddr + width / 8 > 0xff)
    643  1.44  jmcneill 		return AE_BAD_PARAMETER;
    644   1.1   thorpej 
    645  1.44  jmcneill 	addr = paddr;
    646  1.44  jmcneill 	dv = arg;
    647  1.44  jmcneill 	sc = device_private(dv);
    648   1.1   thorpej 
    649  1.44  jmcneill 	rv = AE_OK;
    650   1.1   thorpej 
    651  1.44  jmcneill 	switch (func) {
    652   1.4   thorpej 	case ACPI_READ:
    653  1.44  jmcneill 		*value = 0;
    654  1.44  jmcneill 		for (i = 0; i < width; i += 8, ++addr) {
    655  1.44  jmcneill 			rv = acpiec_read(dv, addr, &reg);
    656  1.44  jmcneill 			if (rv != AE_OK)
    657  1.44  jmcneill 				break;
    658  1.44  jmcneill 			*value |= (ACPI_INTEGER)reg << i;
    659  1.44  jmcneill 		}
    660   1.1   thorpej 		break;
    661   1.4   thorpej 	case ACPI_WRITE:
    662  1.44  jmcneill 		for (i = 0; i < width; i += 8, ++addr) {
    663  1.44  jmcneill 			reg = (*value >>i) & 0xff;
    664  1.44  jmcneill 			rv = acpiec_write(dv, addr, reg);
    665  1.44  jmcneill 			if (rv != AE_OK)
    666  1.44  jmcneill 				break;
    667  1.44  jmcneill 		}
    668   1.1   thorpej 		break;
    669   1.1   thorpej 	default:
    670  1.44  jmcneill 		aprint_error("%s: invalid Address Space function called: %x\n",
    671  1.44  jmcneill 		    device_xname(dv), (unsigned int)func);
    672  1.44  jmcneill 		return AE_BAD_PARAMETER;
    673   1.1   thorpej 	}
    674   1.1   thorpej 
    675  1.44  jmcneill 	return rv;
    676   1.1   thorpej }
    677   1.1   thorpej 
    678  1.44  jmcneill static void
    679  1.44  jmcneill acpiec_gpe_query(void *arg)
    680   1.1   thorpej {
    681  1.44  jmcneill 	device_t dv = arg;
    682  1.44  jmcneill 	struct acpiec_softc *sc = device_private(dv);
    683  1.44  jmcneill 	uint8_t reg;
    684  1.44  jmcneill 	char qxx[5];
    685  1.44  jmcneill 	ACPI_STATUS rv;
    686   1.1   thorpej 	int i;
    687   1.1   thorpej 
    688  1.44  jmcneill loop:
    689  1.44  jmcneill 	mutex_enter(&sc->sc_mtx);
    690  1.44  jmcneill 
    691  1.44  jmcneill 	if (sc->sc_got_sci == false)
    692  1.44  jmcneill 		cv_wait(&sc->sc_cv_sci, &sc->sc_mtx);
    693  1.44  jmcneill 	mutex_exit(&sc->sc_mtx);
    694  1.44  jmcneill 
    695  1.44  jmcneill 	acpiec_lock(dv);
    696  1.44  jmcneill 	mutex_enter(&sc->sc_mtx);
    697  1.44  jmcneill 
    698  1.44  jmcneill 	/* The Query command can always be issued, so be defensive here. */
    699  1.44  jmcneill 	sc->sc_got_sci = false;
    700  1.44  jmcneill 	sc->sc_state = EC_STATE_QUERY;
    701   1.1   thorpej 
    702  1.44  jmcneill 	for (i = 0; i < EC_POLL_TIMEOUT; ++i) {
    703  1.45  jmcneill 		acpiec_gpe_state_machine(dv);
    704  1.44  jmcneill 		if (sc->sc_state == EC_STATE_FREE)
    705  1.44  jmcneill 			goto done;
    706  1.44  jmcneill 		delay(1);
    707   1.1   thorpej 	}
    708   1.1   thorpej 
    709  1.44  jmcneill 	cv_wait(&sc->sc_cv, &sc->sc_mtx);
    710  1.44  jmcneill 
    711  1.44  jmcneill done:
    712  1.44  jmcneill 	reg = sc->sc_cur_val;
    713   1.1   thorpej 
    714  1.44  jmcneill 	mutex_exit(&sc->sc_mtx);
    715  1.44  jmcneill 	acpiec_unlock(dv);
    716   1.1   thorpej 
    717  1.44  jmcneill 	if (reg == 0)
    718  1.44  jmcneill 		goto loop; /* Spurious query result */
    719   1.1   thorpej 
    720   1.1   thorpej 	/*
    721  1.44  jmcneill 	 * Evaluate _Qxx to respond to the controller.
    722   1.1   thorpej 	 */
    723  1.44  jmcneill 	snprintf(qxx, sizeof(qxx), "_Q%02X", (unsigned int)reg);
    724  1.44  jmcneill 	rv = AcpiEvaluateObject(sc->sc_ech, qxx, NULL, NULL);
    725  1.44  jmcneill 	if (rv != AE_OK && rv != AE_NOT_FOUND) {
    726  1.44  jmcneill 		aprint_error("%s: GPE query method %s failed: %s",
    727  1.44  jmcneill 		    device_xname(dv), qxx, AcpiFormatException(rv));
    728   1.1   thorpej 	}
    729   1.1   thorpej 
    730  1.44  jmcneill 	goto loop;
    731  1.24     kochi }
    732   1.1   thorpej 
    733  1.44  jmcneill static void
    734  1.45  jmcneill acpiec_gpe_state_machine(device_t dv)
    735   1.1   thorpej {
    736  1.44  jmcneill 	struct acpiec_softc *sc = device_private(dv);
    737  1.44  jmcneill 	uint8_t reg;
    738   1.1   thorpej 
    739  1.44  jmcneill 	reg = acpiec_read_status(sc);
    740   1.1   thorpej 
    741  1.44  jmcneill 	if (reg & EC_STATUS_SCI)
    742  1.44  jmcneill 		sc->sc_got_sci = true;
    743  1.44  jmcneill 
    744  1.44  jmcneill 	switch (sc->sc_state) {
    745  1.44  jmcneill 	case EC_STATE_QUERY:
    746  1.44  jmcneill 		if ((reg & EC_STATUS_IBF) != 0)
    747  1.44  jmcneill 			break; /* Nothing of interest here. */
    748  1.44  jmcneill 		acpiec_write_command(sc, EC_COMMAND_QUERY);
    749  1.44  jmcneill 		sc->sc_state = EC_STATE_QUERY_VAL;
    750  1.44  jmcneill 		break;
    751   1.1   thorpej 
    752  1.44  jmcneill 	case EC_STATE_QUERY_VAL:
    753  1.44  jmcneill 		if ((reg & EC_STATUS_OBF) == 0)
    754  1.44  jmcneill 			break; /* Nothing of interest here. */
    755   1.1   thorpej 
    756  1.44  jmcneill 		sc->sc_cur_val = acpiec_read_data(sc);
    757  1.44  jmcneill 		sc->sc_state = EC_STATE_FREE;
    758   1.1   thorpej 
    759  1.44  jmcneill 		cv_signal(&sc->sc_cv);
    760   1.1   thorpej 		break;
    761   1.1   thorpej 
    762  1.44  jmcneill 	case EC_STATE_READ:
    763  1.44  jmcneill 		if ((reg & EC_STATUS_IBF) != 0)
    764  1.44  jmcneill 			break; /* Nothing of interest here. */
    765   1.1   thorpej 
    766  1.44  jmcneill 		acpiec_write_command(sc, EC_COMMAND_READ);
    767  1.44  jmcneill 		sc->sc_state = EC_STATE_READ_ADDR;
    768   1.1   thorpej 		break;
    769   1.1   thorpej 
    770  1.44  jmcneill 	case EC_STATE_READ_ADDR:
    771  1.44  jmcneill 		if ((reg & EC_STATUS_IBF) != 0)
    772  1.44  jmcneill 			break; /* Nothing of interest here. */
    773   1.1   thorpej 
    774  1.44  jmcneill 		acpiec_write_data(sc, sc->sc_cur_addr);
    775  1.44  jmcneill 		sc->sc_state = EC_STATE_READ_VAL;
    776  1.44  jmcneill 		break;
    777   1.1   thorpej 
    778  1.44  jmcneill 	case EC_STATE_READ_VAL:
    779  1.44  jmcneill 		if ((reg & EC_STATUS_OBF) == 0)
    780  1.44  jmcneill 			break; /* Nothing of interest here. */
    781  1.44  jmcneill 		sc->sc_cur_val = acpiec_read_data(sc);
    782  1.44  jmcneill 		sc->sc_state = EC_STATE_FREE;
    783   1.1   thorpej 
    784  1.44  jmcneill 		cv_signal(&sc->sc_cv);
    785  1.44  jmcneill 		break;
    786   1.1   thorpej 
    787  1.44  jmcneill 	case EC_STATE_WRITE:
    788  1.44  jmcneill 		if ((reg & EC_STATUS_IBF) != 0)
    789  1.44  jmcneill 			break; /* Nothing of interest here. */
    790   1.1   thorpej 
    791  1.44  jmcneill 		acpiec_write_command(sc, EC_COMMAND_WRITE);
    792  1.44  jmcneill 		sc->sc_state = EC_STATE_WRITE_ADDR;
    793  1.44  jmcneill 		break;
    794   1.1   thorpej 
    795  1.44  jmcneill 	case EC_STATE_WRITE_ADDR:
    796  1.44  jmcneill 		if ((reg & EC_STATUS_IBF) != 0)
    797  1.44  jmcneill 			break; /* Nothing of interest here. */
    798  1.44  jmcneill 		acpiec_write_data(sc, sc->sc_cur_addr);
    799  1.44  jmcneill 		sc->sc_state = EC_STATE_WRITE_VAL;
    800  1.44  jmcneill 		break;
    801   1.1   thorpej 
    802  1.44  jmcneill 	case EC_STATE_WRITE_VAL:
    803  1.44  jmcneill 		if ((reg & EC_STATUS_IBF) != 0)
    804  1.44  jmcneill 			break; /* Nothing of interest here. */
    805  1.44  jmcneill 		sc->sc_state = EC_STATE_FREE;
    806  1.44  jmcneill 		cv_signal(&sc->sc_cv);
    807   1.1   thorpej 
    808  1.44  jmcneill 		acpiec_write_data(sc, sc->sc_cur_val);
    809  1.44  jmcneill 		break;
    810   1.1   thorpej 
    811  1.44  jmcneill 	case EC_STATE_FREE:
    812  1.44  jmcneill 		if (sc->sc_got_sci)
    813  1.44  jmcneill 			cv_signal(&sc->sc_cv_sci);
    814  1.44  jmcneill 		break;
    815  1.44  jmcneill 	default:
    816  1.44  jmcneill 		panic("invalid state");
    817  1.44  jmcneill 	}
    818  1.46     joerg 
    819  1.46     joerg 	if (sc->sc_state != EC_STATE_FREE)
    820  1.46     joerg 		callout_schedule(&sc->sc_pseudo_intr, 1);
    821  1.46     joerg }
    822  1.46     joerg 
    823  1.46     joerg static void
    824  1.46     joerg acpiec_callout(void *arg)
    825  1.46     joerg {
    826  1.46     joerg 	device_t dv = arg;
    827  1.46     joerg 	struct acpiec_softc *sc = device_private(dv);
    828  1.46     joerg 
    829  1.47     joerg 	AcpiClearGpe(sc->sc_gpeh, sc->sc_gpebit, ACPI_NOT_ISR);
    830  1.47     joerg 
    831  1.46     joerg 	mutex_enter(&sc->sc_mtx);
    832  1.46     joerg 	acpiec_gpe_state_machine(dv);
    833  1.46     joerg 	mutex_exit(&sc->sc_mtx);
    834  1.24     kochi }
    835   1.1   thorpej 
    836  1.44  jmcneill static UINT32
    837  1.44  jmcneill acpiec_gpe_handler(void *arg)
    838   1.1   thorpej {
    839  1.44  jmcneill 	device_t dv = arg;
    840  1.44  jmcneill 	struct acpiec_softc *sc = device_private(dv);
    841   1.1   thorpej 
    842  1.44  jmcneill 	AcpiClearGpe(sc->sc_gpeh, sc->sc_gpebit, ACPI_ISR);
    843   1.1   thorpej 
    844  1.44  jmcneill 	mutex_enter(&sc->sc_mtx);
    845  1.45  jmcneill 	acpiec_gpe_state_machine(dv);
    846  1.44  jmcneill 	mutex_exit(&sc->sc_mtx);
    847   1.1   thorpej 
    848  1.44  jmcneill 	return 0;
    849   1.1   thorpej }
    850