xref: /freebsd/sys/dev/acpica/acpi_ec.c (revision 7815283df299be63807225a9fe9b6e54406eae28)
1 /*-
2  * Copyright (c) 2003-2007 Nate Lawson
3  * Copyright (c) 2000 Michael Smith
4  * Copyright (c) 2000 BSDi
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26  * SUCH DAMAGE.
27  */
28 
29 #include <sys/cdefs.h>
30 __FBSDID("$FreeBSD$");
31 
32 #include "opt_acpi.h"
33 #include <sys/param.h>
34 #include <sys/kernel.h>
35 #include <sys/bus.h>
36 #include <sys/lock.h>
37 #include <sys/malloc.h>
38 #include <sys/module.h>
39 #include <sys/sx.h>
40 
41 #include <machine/bus.h>
42 #include <machine/resource.h>
43 #include <sys/rman.h>
44 
45 #include <contrib/dev/acpica/include/acpi.h>
46 #include <contrib/dev/acpica/include/accommon.h>
47 
48 #include <dev/acpica/acpivar.h>
49 
50 /* Hooks for the ACPI CA debugging infrastructure */
51 #define _COMPONENT	ACPI_EC
52 ACPI_MODULE_NAME("EC")
53 
54 /*
55  * EC_COMMAND:
56  * -----------
57  */
58 typedef UINT8				EC_COMMAND;
59 
60 #define EC_COMMAND_UNKNOWN		((EC_COMMAND) 0x00)
61 #define EC_COMMAND_READ			((EC_COMMAND) 0x80)
62 #define EC_COMMAND_WRITE		((EC_COMMAND) 0x81)
63 #define EC_COMMAND_BURST_ENABLE		((EC_COMMAND) 0x82)
64 #define EC_COMMAND_BURST_DISABLE	((EC_COMMAND) 0x83)
65 #define EC_COMMAND_QUERY		((EC_COMMAND) 0x84)
66 
67 /*
68  * EC_STATUS:
69  * ----------
70  * The encoding of the EC status register is illustrated below.
71  * Note that a set bit (1) indicates the property is TRUE
72  * (e.g. if bit 0 is set then the output buffer is full).
73  * +-+-+-+-+-+-+-+-+
74  * |7|6|5|4|3|2|1|0|
75  * +-+-+-+-+-+-+-+-+
76  *  | | | | | | | |
77  *  | | | | | | | +- Output Buffer Full?
78  *  | | | | | | +--- Input Buffer Full?
79  *  | | | | | +----- <reserved>
80  *  | | | | +------- Data Register is Command Byte?
81  *  | | | +--------- Burst Mode Enabled?
82  *  | | +----------- SCI Event?
83  *  | +------------- SMI Event?
84  *  +--------------- <reserved>
85  *
86  */
87 typedef UINT8				EC_STATUS;
88 
89 #define EC_FLAG_OUTPUT_BUFFER		((EC_STATUS) 0x01)
90 #define EC_FLAG_INPUT_BUFFER		((EC_STATUS) 0x02)
91 #define EC_FLAG_DATA_IS_CMD		((EC_STATUS) 0x08)
92 #define EC_FLAG_BURST_MODE		((EC_STATUS) 0x10)
93 
94 /*
95  * EC_EVENT:
96  * ---------
97  */
98 typedef UINT8				EC_EVENT;
99 
100 #define EC_EVENT_UNKNOWN		((EC_EVENT) 0x00)
101 #define EC_EVENT_OUTPUT_BUFFER_FULL	((EC_EVENT) 0x01)
102 #define EC_EVENT_INPUT_BUFFER_EMPTY	((EC_EVENT) 0x02)
103 #define EC_EVENT_SCI			((EC_EVENT) 0x20)
104 #define EC_EVENT_SMI			((EC_EVENT) 0x40)
105 
106 /* Data byte returned after burst enable indicating it was successful. */
107 #define EC_BURST_ACK			0x90
108 
109 /*
110  * Register access primitives
111  */
112 #define EC_GET_DATA(sc)							\
113 	bus_space_read_1((sc)->ec_data_tag, (sc)->ec_data_handle, 0)
114 
115 #define EC_SET_DATA(sc, v)						\
116 	bus_space_write_1((sc)->ec_data_tag, (sc)->ec_data_handle, 0, (v))
117 
118 #define EC_GET_CSR(sc)							\
119 	bus_space_read_1((sc)->ec_csr_tag, (sc)->ec_csr_handle, 0)
120 
121 #define EC_SET_CSR(sc, v)						\
122 	bus_space_write_1((sc)->ec_csr_tag, (sc)->ec_csr_handle, 0, (v))
123 
124 /* Additional params to pass from the probe routine */
125 struct acpi_ec_params {
126     int		glk;
127     int		gpe_bit;
128     ACPI_HANDLE	gpe_handle;
129     int		uid;
130 };
131 
132 /*
133  * Driver softc.
134  */
135 struct acpi_ec_softc {
136     device_t		ec_dev;
137     ACPI_HANDLE		ec_handle;
138     int			ec_uid;
139     ACPI_HANDLE		ec_gpehandle;
140     UINT8		ec_gpebit;
141 
142     int			ec_data_rid;
143     struct resource	*ec_data_res;
144     bus_space_tag_t	ec_data_tag;
145     bus_space_handle_t	ec_data_handle;
146 
147     int			ec_csr_rid;
148     struct resource	*ec_csr_res;
149     bus_space_tag_t	ec_csr_tag;
150     bus_space_handle_t	ec_csr_handle;
151 
152     int			ec_glk;
153     int			ec_glkhandle;
154     int			ec_burstactive;
155     int			ec_sci_pend;
156     volatile u_int	ec_gencount;
157     int			ec_suspending;
158 };
159 
160 /*
161  * XXX njl
162  * I couldn't find it in the spec but other implementations also use a
163  * value of 1 ms for the time to acquire global lock.
164  */
165 #define EC_LOCK_TIMEOUT	1000
166 
167 /* Default delay in microseconds between each run of the status polling loop. */
168 #define EC_POLL_DELAY	50
169 
170 /* Total time in ms spent waiting for a response from EC. */
171 #define EC_TIMEOUT	750
172 
173 #define EVENT_READY(event, status)			\
174 	(((event) == EC_EVENT_OUTPUT_BUFFER_FULL &&	\
175 	 ((status) & EC_FLAG_OUTPUT_BUFFER) != 0) ||	\
176 	 ((event) == EC_EVENT_INPUT_BUFFER_EMPTY && 	\
177 	 ((status) & EC_FLAG_INPUT_BUFFER) == 0))
178 
179 ACPI_SERIAL_DECL(ec, "ACPI embedded controller");
180 
181 static SYSCTL_NODE(_debug_acpi, OID_AUTO, ec, CTLFLAG_RD, NULL, "EC debugging");
182 
183 static int	ec_burst_mode;
184 SYSCTL_INT(_debug_acpi_ec, OID_AUTO, burst, CTLFLAG_RWTUN, &ec_burst_mode, 0,
185     "Enable use of burst mode (faster for nearly all systems)");
186 static int	ec_polled_mode;
187 SYSCTL_INT(_debug_acpi_ec, OID_AUTO, polled, CTLFLAG_RWTUN, &ec_polled_mode, 0,
188     "Force use of polled mode (only if interrupt mode doesn't work)");
189 static int	ec_timeout = EC_TIMEOUT;
190 SYSCTL_INT(_debug_acpi_ec, OID_AUTO, timeout, CTLFLAG_RWTUN, &ec_timeout,
191     EC_TIMEOUT, "Total time spent waiting for a response (poll+sleep)");
192 
193 static ACPI_STATUS
194 EcLock(struct acpi_ec_softc *sc)
195 {
196     ACPI_STATUS	status;
197 
198     /* If _GLK is non-zero, acquire the global lock. */
199     status = AE_OK;
200     if (sc->ec_glk) {
201 	status = AcpiAcquireGlobalLock(EC_LOCK_TIMEOUT, &sc->ec_glkhandle);
202 	if (ACPI_FAILURE(status))
203 	    return (status);
204     }
205     ACPI_SERIAL_BEGIN(ec);
206     return (status);
207 }
208 
209 static void
210 EcUnlock(struct acpi_ec_softc *sc)
211 {
212     ACPI_SERIAL_END(ec);
213     if (sc->ec_glk)
214 	AcpiReleaseGlobalLock(sc->ec_glkhandle);
215 }
216 
217 static UINT32		EcGpeHandler(ACPI_HANDLE, UINT32, void *);
218 static ACPI_STATUS	EcSpaceSetup(ACPI_HANDLE Region, UINT32 Function,
219 				void *Context, void **return_Context);
220 static ACPI_STATUS	EcSpaceHandler(UINT32 Function,
221 				ACPI_PHYSICAL_ADDRESS Address,
222 				UINT32 Width, UINT64 *Value,
223 				void *Context, void *RegionContext);
224 static ACPI_STATUS	EcWaitEvent(struct acpi_ec_softc *sc, EC_EVENT Event,
225 				u_int gen_count);
226 static ACPI_STATUS	EcCommand(struct acpi_ec_softc *sc, EC_COMMAND cmd);
227 static ACPI_STATUS	EcRead(struct acpi_ec_softc *sc, UINT8 Address,
228 				UINT8 *Data);
229 static ACPI_STATUS	EcWrite(struct acpi_ec_softc *sc, UINT8 Address,
230 				UINT8 Data);
231 static int		acpi_ec_probe(device_t dev);
232 static int		acpi_ec_attach(device_t dev);
233 static int		acpi_ec_suspend(device_t dev);
234 static int		acpi_ec_resume(device_t dev);
235 static int		acpi_ec_shutdown(device_t dev);
236 static int		acpi_ec_read_method(device_t dev, u_int addr,
237 				UINT64 *val, int width);
238 static int		acpi_ec_write_method(device_t dev, u_int addr,
239 				UINT64 val, int width);
240 
241 static device_method_t acpi_ec_methods[] = {
242     /* Device interface */
243     DEVMETHOD(device_probe,	acpi_ec_probe),
244     DEVMETHOD(device_attach,	acpi_ec_attach),
245     DEVMETHOD(device_suspend,	acpi_ec_suspend),
246     DEVMETHOD(device_resume,	acpi_ec_resume),
247     DEVMETHOD(device_shutdown,	acpi_ec_shutdown),
248 
249     /* Embedded controller interface */
250     DEVMETHOD(acpi_ec_read,	acpi_ec_read_method),
251     DEVMETHOD(acpi_ec_write,	acpi_ec_write_method),
252 
253     DEVMETHOD_END
254 };
255 
256 static driver_t acpi_ec_driver = {
257     "acpi_ec",
258     acpi_ec_methods,
259     sizeof(struct acpi_ec_softc),
260 };
261 
262 static devclass_t acpi_ec_devclass;
263 DRIVER_MODULE(acpi_ec, acpi, acpi_ec_driver, acpi_ec_devclass, 0, 0);
264 MODULE_DEPEND(acpi_ec, acpi, 1, 1, 1);
265 
266 /*
267  * Look for an ECDT and if we find one, set up default GPE and
268  * space handlers to catch attempts to access EC space before
269  * we have a real driver instance in place.
270  *
271  * TODO: Some old Gateway laptops need us to fake up an ECDT or
272  * otherwise attach early so that _REG methods can run.
273  */
274 void
275 acpi_ec_ecdt_probe(device_t parent)
276 {
277     ACPI_TABLE_ECDT *ecdt;
278     ACPI_STATUS	     status;
279     device_t	     child;
280     ACPI_HANDLE	     h;
281     struct acpi_ec_params *params;
282 
283     ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__);
284 
285     /* Find and validate the ECDT. */
286     status = AcpiGetTable(ACPI_SIG_ECDT, 1, (ACPI_TABLE_HEADER **)&ecdt);
287     if (ACPI_FAILURE(status) ||
288 	ecdt->Control.BitWidth != 8 ||
289 	ecdt->Data.BitWidth != 8) {
290 	return;
291     }
292 
293     /* Create the child device with the given unit number. */
294     child = BUS_ADD_CHILD(parent, 3, "acpi_ec", ecdt->Uid);
295     if (child == NULL) {
296 	printf("%s: can't add child\n", __func__);
297 	return;
298     }
299 
300     /* Find and save the ACPI handle for this device. */
301     status = AcpiGetHandle(NULL, ecdt->Id, &h);
302     if (ACPI_FAILURE(status)) {
303 	device_delete_child(parent, child);
304 	printf("%s: can't get handle\n", __func__);
305 	return;
306     }
307     acpi_set_handle(child, h);
308 
309     /* Set the data and CSR register addresses. */
310     bus_set_resource(child, SYS_RES_IOPORT, 0, ecdt->Data.Address,
311 	/*count*/1);
312     bus_set_resource(child, SYS_RES_IOPORT, 1, ecdt->Control.Address,
313 	/*count*/1);
314 
315     /*
316      * Store values for the probe/attach routines to use.  Store the
317      * ECDT GPE bit and set the global lock flag according to _GLK.
318      * Note that it is not perfectly correct to be evaluating a method
319      * before initializing devices, but in practice this function
320      * should be safe to call at this point.
321      */
322     params = malloc(sizeof(struct acpi_ec_params), M_TEMP, M_WAITOK | M_ZERO);
323     params->gpe_handle = NULL;
324     params->gpe_bit = ecdt->Gpe;
325     params->uid = ecdt->Uid;
326     acpi_GetInteger(h, "_GLK", &params->glk);
327     acpi_set_private(child, params);
328 
329     /* Finish the attach process. */
330     if (device_probe_and_attach(child) != 0)
331 	device_delete_child(parent, child);
332 }
333 
334 static int
335 acpi_ec_probe(device_t dev)
336 {
337     ACPI_BUFFER buf;
338     ACPI_HANDLE h;
339     ACPI_OBJECT *obj;
340     ACPI_STATUS status;
341     device_t	peer;
342     char	desc[64];
343     int		ecdt;
344     int		ret;
345     struct acpi_ec_params *params;
346     static char *ec_ids[] = { "PNP0C09", NULL };
347 
348     /* Check that this is a device and that EC is not disabled. */
349     if (acpi_get_type(dev) != ACPI_TYPE_DEVICE || acpi_disabled("ec"))
350 	return (ENXIO);
351 
352     /*
353      * If probed via ECDT, set description and continue.  Otherwise,
354      * we can access the namespace and make sure this is not a
355      * duplicate probe.
356      */
357     ret = ENXIO;
358     ecdt = 0;
359     buf.Pointer = NULL;
360     buf.Length = ACPI_ALLOCATE_BUFFER;
361     params = acpi_get_private(dev);
362     if (params != NULL) {
363 	ecdt = 1;
364 	ret = 0;
365     } else {
366 	ret = ACPI_ID_PROBE(device_get_parent(dev), dev, ec_ids, NULL);
367 	if (ret > 0)
368 	    goto out;
369 	params = malloc(sizeof(struct acpi_ec_params), M_TEMP,
370 			M_WAITOK | M_ZERO);
371 	h = acpi_get_handle(dev);
372 
373 	/*
374 	 * Read the unit ID to check for duplicate attach and the
375 	 * global lock value to see if we should acquire it when
376 	 * accessing the EC.
377 	 */
378 	status = acpi_GetInteger(h, "_UID", &params->uid);
379 	if (ACPI_FAILURE(status))
380 	    params->uid = 0;
381 	status = acpi_GetInteger(h, "_GLK", &params->glk);
382 	if (ACPI_FAILURE(status))
383 	    params->glk = 0;
384 
385 	/*
386 	 * Evaluate the _GPE method to find the GPE bit used by the EC to
387 	 * signal status (SCI).  If it's a package, it contains a reference
388 	 * and GPE bit, similar to _PRW.
389 	 */
390 	status = AcpiEvaluateObject(h, "_GPE", NULL, &buf);
391 	if (ACPI_FAILURE(status)) {
392 	    device_printf(dev, "can't evaluate _GPE - %s\n",
393 			  AcpiFormatException(status));
394 	    goto out;
395 	}
396 	obj = (ACPI_OBJECT *)buf.Pointer;
397 	if (obj == NULL)
398 	    goto out;
399 
400 	switch (obj->Type) {
401 	case ACPI_TYPE_INTEGER:
402 	    params->gpe_handle = NULL;
403 	    params->gpe_bit = obj->Integer.Value;
404 	    break;
405 	case ACPI_TYPE_PACKAGE:
406 	    if (!ACPI_PKG_VALID(obj, 2))
407 		goto out;
408 	    params->gpe_handle =
409 		acpi_GetReference(NULL, &obj->Package.Elements[0]);
410 	    if (params->gpe_handle == NULL ||
411 		acpi_PkgInt32(obj, 1, &params->gpe_bit) != 0)
412 		goto out;
413 	    break;
414 	default:
415 	    device_printf(dev, "_GPE has invalid type %d\n", obj->Type);
416 	    goto out;
417 	}
418 
419 	/* Store the values we got from the namespace for attach. */
420 	acpi_set_private(dev, params);
421 
422 	/*
423 	 * Check for a duplicate probe.  This can happen when a probe
424 	 * via ECDT succeeded already.  If this is a duplicate, disable
425 	 * this device.
426 	 */
427 	peer = devclass_get_device(acpi_ec_devclass, params->uid);
428 	if (peer != NULL && device_is_alive(peer)){
429 	    ret = ENXIO;
430 	    device_disable(dev);
431 	}
432     }
433 
434 out:
435     if (ret <= 0) {
436 	snprintf(desc, sizeof(desc), "Embedded Controller: GPE %#x%s%s",
437 		 params->gpe_bit, (params->glk) ? ", GLK" : "",
438 		 ecdt ? ", ECDT" : "");
439 	device_set_desc_copy(dev, desc);
440     } else
441 	free(params, M_TEMP);
442     if (buf.Pointer)
443 	AcpiOsFree(buf.Pointer);
444     return (ret);
445 }
446 
447 static int
448 acpi_ec_attach(device_t dev)
449 {
450     struct acpi_ec_softc	*sc;
451     struct acpi_ec_params	*params;
452     ACPI_STATUS			Status;
453 
454     ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__);
455 
456     /* Fetch/initialize softc (assumes softc is pre-zeroed). */
457     sc = device_get_softc(dev);
458     params = acpi_get_private(dev);
459     sc->ec_dev = dev;
460     sc->ec_handle = acpi_get_handle(dev);
461 
462     /* Retrieve previously probed values via device ivars. */
463     sc->ec_glk = params->glk;
464     sc->ec_gpebit = params->gpe_bit;
465     sc->ec_gpehandle = params->gpe_handle;
466     sc->ec_uid = params->uid;
467     sc->ec_suspending = FALSE;
468     acpi_set_private(dev, NULL);
469     free(params, M_TEMP);
470 
471     /* Attach bus resources for data and command/status ports. */
472     sc->ec_data_rid = 0;
473     sc->ec_data_res = bus_alloc_resource_any(sc->ec_dev, SYS_RES_IOPORT,
474 			&sc->ec_data_rid, RF_ACTIVE);
475     if (sc->ec_data_res == NULL) {
476 	device_printf(dev, "can't allocate data port\n");
477 	goto error;
478     }
479     sc->ec_data_tag = rman_get_bustag(sc->ec_data_res);
480     sc->ec_data_handle = rman_get_bushandle(sc->ec_data_res);
481 
482     sc->ec_csr_rid = 1;
483     sc->ec_csr_res = bus_alloc_resource_any(sc->ec_dev, SYS_RES_IOPORT,
484 			&sc->ec_csr_rid, RF_ACTIVE);
485     if (sc->ec_csr_res == NULL) {
486 	device_printf(dev, "can't allocate command/status port\n");
487 	goto error;
488     }
489     sc->ec_csr_tag = rman_get_bustag(sc->ec_csr_res);
490     sc->ec_csr_handle = rman_get_bushandle(sc->ec_csr_res);
491 
492     /*
493      * Install a handler for this EC's GPE bit.  We want edge-triggered
494      * behavior.
495      */
496     ACPI_DEBUG_PRINT((ACPI_DB_RESOURCES, "attaching GPE handler\n"));
497     Status = AcpiInstallGpeHandler(sc->ec_gpehandle, sc->ec_gpebit,
498 		ACPI_GPE_EDGE_TRIGGERED, EcGpeHandler, sc);
499     if (ACPI_FAILURE(Status)) {
500 	device_printf(dev, "can't install GPE handler for %s - %s\n",
501 		      acpi_name(sc->ec_handle), AcpiFormatException(Status));
502 	goto error;
503     }
504 
505     /*
506      * Install address space handler
507      */
508     ACPI_DEBUG_PRINT((ACPI_DB_RESOURCES, "attaching address space handler\n"));
509     Status = AcpiInstallAddressSpaceHandler(sc->ec_handle, ACPI_ADR_SPACE_EC,
510 		&EcSpaceHandler, &EcSpaceSetup, sc);
511     if (ACPI_FAILURE(Status)) {
512 	device_printf(dev, "can't install address space handler for %s - %s\n",
513 		      acpi_name(sc->ec_handle), AcpiFormatException(Status));
514 	goto error;
515     }
516 
517     /* Enable runtime GPEs for the handler. */
518     Status = AcpiEnableGpe(sc->ec_gpehandle, sc->ec_gpebit);
519     if (ACPI_FAILURE(Status)) {
520 	device_printf(dev, "AcpiEnableGpe failed: %s\n",
521 		      AcpiFormatException(Status));
522 	goto error;
523     }
524 
525     ACPI_DEBUG_PRINT((ACPI_DB_RESOURCES, "acpi_ec_attach complete\n"));
526     return (0);
527 
528 error:
529     AcpiRemoveGpeHandler(sc->ec_gpehandle, sc->ec_gpebit, EcGpeHandler);
530     AcpiRemoveAddressSpaceHandler(sc->ec_handle, ACPI_ADR_SPACE_EC,
531 	EcSpaceHandler);
532     if (sc->ec_csr_res)
533 	bus_release_resource(sc->ec_dev, SYS_RES_IOPORT, sc->ec_csr_rid,
534 			     sc->ec_csr_res);
535     if (sc->ec_data_res)
536 	bus_release_resource(sc->ec_dev, SYS_RES_IOPORT, sc->ec_data_rid,
537 			     sc->ec_data_res);
538     return (ENXIO);
539 }
540 
541 static int
542 acpi_ec_suspend(device_t dev)
543 {
544     struct acpi_ec_softc	*sc;
545 
546     sc = device_get_softc(dev);
547     sc->ec_suspending = TRUE;
548     return (0);
549 }
550 
551 static int
552 acpi_ec_resume(device_t dev)
553 {
554     struct acpi_ec_softc	*sc;
555 
556     sc = device_get_softc(dev);
557     sc->ec_suspending = FALSE;
558     return (0);
559 }
560 
561 static int
562 acpi_ec_shutdown(device_t dev)
563 {
564     struct acpi_ec_softc	*sc;
565 
566     /* Disable the GPE so we don't get EC events during shutdown. */
567     sc = device_get_softc(dev);
568     AcpiDisableGpe(sc->ec_gpehandle, sc->ec_gpebit);
569     return (0);
570 }
571 
572 /* Methods to allow other devices (e.g., smbat) to read/write EC space. */
573 static int
574 acpi_ec_read_method(device_t dev, u_int addr, UINT64 *val, int width)
575 {
576     struct acpi_ec_softc *sc;
577     ACPI_STATUS status;
578 
579     sc = device_get_softc(dev);
580     status = EcSpaceHandler(ACPI_READ, addr, width * 8, val, sc, NULL);
581     if (ACPI_FAILURE(status))
582 	return (ENXIO);
583     return (0);
584 }
585 
586 static int
587 acpi_ec_write_method(device_t dev, u_int addr, UINT64 val, int width)
588 {
589     struct acpi_ec_softc *sc;
590     ACPI_STATUS status;
591 
592     sc = device_get_softc(dev);
593     status = EcSpaceHandler(ACPI_WRITE, addr, width * 8, &val, sc, NULL);
594     if (ACPI_FAILURE(status))
595 	return (ENXIO);
596     return (0);
597 }
598 
599 static ACPI_STATUS
600 EcCheckStatus(struct acpi_ec_softc *sc, const char *msg, EC_EVENT event)
601 {
602     ACPI_STATUS status;
603     EC_STATUS ec_status;
604 
605     status = AE_NO_HARDWARE_RESPONSE;
606     ec_status = EC_GET_CSR(sc);
607     if (sc->ec_burstactive && !(ec_status & EC_FLAG_BURST_MODE)) {
608 	CTR1(KTR_ACPI, "ec burst disabled in waitevent (%s)", msg);
609 	sc->ec_burstactive = FALSE;
610     }
611     if (EVENT_READY(event, ec_status)) {
612 	CTR2(KTR_ACPI, "ec %s wait ready, status %#x", msg, ec_status);
613 	status = AE_OK;
614     }
615     return (status);
616 }
617 
618 static void
619 EcGpeQueryHandlerSub(struct acpi_ec_softc *sc)
620 {
621     UINT8			Data;
622     ACPI_STATUS			Status;
623     int				retry;
624     char			qxx[5];
625 
626     ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__);
627 
628     /* Serialize user access with EcSpaceHandler(). */
629     Status = EcLock(sc);
630     if (ACPI_FAILURE(Status)) {
631 	device_printf(sc->ec_dev, "GpeQuery lock error: %s\n",
632 	    AcpiFormatException(Status));
633 	return;
634     }
635 
636     /*
637      * Send a query command to the EC to find out which _Qxx call it
638      * wants to make.  This command clears the SCI bit and also the
639      * interrupt source since we are edge-triggered.  To prevent the GPE
640      * that may arise from running the query from causing another query
641      * to be queued, we clear the pending flag only after running it.
642      */
643     for (retry = 0; retry < 2; retry++) {
644 	Status = EcCommand(sc, EC_COMMAND_QUERY);
645 	if (ACPI_SUCCESS(Status))
646 	    break;
647 	if (ACPI_FAILURE(EcCheckStatus(sc, "retr_check",
648 	    EC_EVENT_INPUT_BUFFER_EMPTY)))
649 	    break;
650     }
651     if (ACPI_FAILURE(Status)) {
652 	EcUnlock(sc);
653 	device_printf(sc->ec_dev, "GPE query failed: %s\n",
654 	    AcpiFormatException(Status));
655 	return;
656     }
657     Data = EC_GET_DATA(sc);
658 
659     /*
660      * We have to unlock before running the _Qxx method below since that
661      * method may attempt to read/write from EC address space, causing
662      * recursive acquisition of the lock.
663      */
664     EcUnlock(sc);
665 
666     /* Ignore the value for "no outstanding event". (13.3.5) */
667     CTR2(KTR_ACPI, "ec query ok,%s running _Q%02X", Data ? "" : " not", Data);
668     if (Data == 0)
669 	return;
670 
671     /* Evaluate _Qxx to respond to the controller. */
672     snprintf(qxx, sizeof(qxx), "_Q%02X", Data);
673     AcpiUtStrupr(qxx);
674     Status = AcpiEvaluateObject(sc->ec_handle, qxx, NULL, NULL);
675     if (ACPI_FAILURE(Status) && Status != AE_NOT_FOUND) {
676 	device_printf(sc->ec_dev, "evaluation of query method %s failed: %s\n",
677 	    qxx, AcpiFormatException(Status));
678     }
679 }
680 
681 static void
682 EcGpeQueryHandler(void *Context)
683 {
684     struct acpi_ec_softc *sc = (struct acpi_ec_softc *)Context;
685     int pending;
686 
687     KASSERT(Context != NULL, ("EcGpeQueryHandler called with NULL"));
688 
689     do {
690 	/* Read the current pending count */
691 	pending = atomic_load_acq_int(&sc->ec_sci_pend);
692 
693 	/* Call GPE handler function */
694 	EcGpeQueryHandlerSub(sc);
695 
696 	/*
697 	 * Try to reset the pending count to zero. If this fails we
698 	 * know another GPE event has occurred while handling the
699 	 * current GPE event and need to loop.
700 	 */
701     } while (!atomic_cmpset_int(&sc->ec_sci_pend, pending, 0));
702 }
703 
704 /*
705  * The GPE handler is called when IBE/OBF or SCI events occur.  We are
706  * called from an unknown lock context.
707  */
708 static UINT32
709 EcGpeHandler(ACPI_HANDLE GpeDevice, UINT32 GpeNumber, void *Context)
710 {
711     struct acpi_ec_softc *sc = Context;
712     ACPI_STATUS		       Status;
713     EC_STATUS		       EcStatus;
714 
715     KASSERT(Context != NULL, ("EcGpeHandler called with NULL"));
716     CTR0(KTR_ACPI, "ec gpe handler start");
717 
718     /*
719      * Notify EcWaitEvent() that the status register is now fresh.  If we
720      * didn't do this, it wouldn't be possible to distinguish an old IBE
721      * from a new one, for example when doing a write transaction (writing
722      * address and then data values.)
723      */
724     atomic_add_int(&sc->ec_gencount, 1);
725     wakeup(sc);
726 
727     /*
728      * If the EC_SCI bit of the status register is set, queue a query handler.
729      * It will run the query and _Qxx method later, under the lock.
730      */
731     EcStatus = EC_GET_CSR(sc);
732     if ((EcStatus & EC_EVENT_SCI) &&
733 	atomic_fetchadd_int(&sc->ec_sci_pend, 1) == 0) {
734 	CTR0(KTR_ACPI, "ec gpe queueing query handler");
735 	Status = AcpiOsExecute(OSL_GPE_HANDLER, EcGpeQueryHandler, Context);
736 	if (ACPI_FAILURE(Status)) {
737 	    printf("EcGpeHandler: queuing GPE query handler failed\n");
738 	    atomic_store_rel_int(&sc->ec_sci_pend, 0);
739 	}
740     }
741     return (ACPI_REENABLE_GPE);
742 }
743 
744 static ACPI_STATUS
745 EcSpaceSetup(ACPI_HANDLE Region, UINT32 Function, void *Context,
746 	     void **RegionContext)
747 {
748 
749     ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__);
750 
751     /*
752      * If deactivating a region, always set the output to NULL.  Otherwise,
753      * just pass the context through.
754      */
755     if (Function == ACPI_REGION_DEACTIVATE)
756 	*RegionContext = NULL;
757     else
758 	*RegionContext = Context;
759 
760     return_ACPI_STATUS (AE_OK);
761 }
762 
763 static ACPI_STATUS
764 EcSpaceHandler(UINT32 Function, ACPI_PHYSICAL_ADDRESS Address, UINT32 Width,
765 	       UINT64 *Value, void *Context, void *RegionContext)
766 {
767     struct acpi_ec_softc	*sc = (struct acpi_ec_softc *)Context;
768     ACPI_PHYSICAL_ADDRESS	EcAddr;
769     UINT8			*EcData;
770     ACPI_STATUS			Status;
771 
772     ACPI_FUNCTION_TRACE_U32((char *)(uintptr_t)__func__, (UINT32)Address);
773 
774     if (Function != ACPI_READ && Function != ACPI_WRITE)
775 	return_ACPI_STATUS (AE_BAD_PARAMETER);
776     if (Width % 8 != 0 || Value == NULL || Context == NULL)
777 	return_ACPI_STATUS (AE_BAD_PARAMETER);
778     if (Address + Width / 8 > 256)
779 	return_ACPI_STATUS (AE_BAD_ADDRESS);
780 
781     /*
782      * If booting, check if we need to run the query handler.  If so, we
783      * we call it directly here since our thread taskq is not active yet.
784      */
785     if (cold || rebooting || sc->ec_suspending) {
786 	if ((EC_GET_CSR(sc) & EC_EVENT_SCI) &&
787 	    atomic_fetchadd_int(&sc->ec_sci_pend, 1) == 0) {
788 	    CTR0(KTR_ACPI, "ec running gpe handler directly");
789 	    EcGpeQueryHandler(sc);
790 	}
791     }
792 
793     /* Serialize with EcGpeQueryHandler() at transaction granularity. */
794     Status = EcLock(sc);
795     if (ACPI_FAILURE(Status))
796 	return_ACPI_STATUS (Status);
797 
798     /* If we can't start burst mode, continue anyway. */
799     Status = EcCommand(sc, EC_COMMAND_BURST_ENABLE);
800     if (ACPI_SUCCESS(Status)) {
801 	if (EC_GET_DATA(sc) == EC_BURST_ACK) {
802 	    CTR0(KTR_ACPI, "ec burst enabled");
803 	    sc->ec_burstactive = TRUE;
804 	}
805     }
806 
807     /* Perform the transaction(s), based on Width. */
808     EcAddr = Address;
809     EcData = (UINT8 *)Value;
810     if (Function == ACPI_READ)
811 	*Value = 0;
812     do {
813 	switch (Function) {
814 	case ACPI_READ:
815 	    Status = EcRead(sc, EcAddr, EcData);
816 	    break;
817 	case ACPI_WRITE:
818 	    Status = EcWrite(sc, EcAddr, *EcData);
819 	    break;
820 	}
821 	if (ACPI_FAILURE(Status))
822 	    break;
823 	EcAddr++;
824 	EcData++;
825     } while (EcAddr < Address + Width / 8);
826 
827     if (sc->ec_burstactive) {
828 	sc->ec_burstactive = FALSE;
829 	if (ACPI_SUCCESS(EcCommand(sc, EC_COMMAND_BURST_DISABLE)))
830 	    CTR0(KTR_ACPI, "ec disabled burst ok");
831     }
832 
833     EcUnlock(sc);
834     return_ACPI_STATUS (Status);
835 }
836 
837 static ACPI_STATUS
838 EcWaitEvent(struct acpi_ec_softc *sc, EC_EVENT Event, u_int gen_count)
839 {
840     static int	no_intr = 0;
841     ACPI_STATUS	Status;
842     int		count, i, need_poll, slp_ival;
843 
844     ACPI_SERIAL_ASSERT(ec);
845     Status = AE_NO_HARDWARE_RESPONSE;
846     need_poll = cold || rebooting || ec_polled_mode || sc->ec_suspending;
847 
848     /* Wait for event by polling or GPE (interrupt). */
849     if (need_poll) {
850 	count = (ec_timeout * 1000) / EC_POLL_DELAY;
851 	if (count == 0)
852 	    count = 1;
853 	DELAY(10);
854 	for (i = 0; i < count; i++) {
855 	    Status = EcCheckStatus(sc, "poll", Event);
856 	    if (ACPI_SUCCESS(Status))
857 		break;
858 	    DELAY(EC_POLL_DELAY);
859 	}
860     } else {
861 	slp_ival = hz / 1000;
862 	if (slp_ival != 0) {
863 	    count = ec_timeout;
864 	} else {
865 	    /* hz has less than 1 ms resolution so scale timeout. */
866 	    slp_ival = 1;
867 	    count = ec_timeout / (1000 / hz);
868 	}
869 
870 	/*
871 	 * Wait for the GPE to signal the status changed, checking the
872 	 * status register each time we get one.  It's possible to get a
873 	 * GPE for an event we're not interested in here (i.e., SCI for
874 	 * EC query).
875 	 */
876 	for (i = 0; i < count; i++) {
877 	    if (gen_count == sc->ec_gencount)
878 		tsleep(sc, 0, "ecgpe", slp_ival);
879 	    /*
880 	     * Record new generation count.  It's possible the GPE was
881 	     * just to notify us that a query is needed and we need to
882 	     * wait for a second GPE to signal the completion of the
883 	     * event we are actually waiting for.
884 	     */
885 	    Status = EcCheckStatus(sc, "sleep", Event);
886 	    if (ACPI_SUCCESS(Status)) {
887 		if (gen_count == sc->ec_gencount)
888 		    no_intr++;
889 		else
890 		    no_intr = 0;
891 		break;
892 	    }
893 	    gen_count = sc->ec_gencount;
894 	}
895 
896 	/*
897 	 * We finished waiting for the GPE and it never arrived.  Try to
898 	 * read the register once and trust whatever value we got.  This is
899 	 * the best we can do at this point.
900 	 */
901 	if (ACPI_FAILURE(Status))
902 	    Status = EcCheckStatus(sc, "sleep_end", Event);
903     }
904     if (!need_poll && no_intr > 10) {
905 	device_printf(sc->ec_dev,
906 	    "not getting interrupts, switched to polled mode\n");
907 	ec_polled_mode = 1;
908     }
909     if (ACPI_FAILURE(Status))
910 	    CTR0(KTR_ACPI, "error: ec wait timed out");
911     return (Status);
912 }
913 
914 static ACPI_STATUS
915 EcCommand(struct acpi_ec_softc *sc, EC_COMMAND cmd)
916 {
917     ACPI_STATUS	status;
918     EC_EVENT	event;
919     EC_STATUS	ec_status;
920     u_int	gen_count;
921 
922     ACPI_SERIAL_ASSERT(ec);
923 
924     /* Don't use burst mode if user disabled it. */
925     if (!ec_burst_mode && cmd == EC_COMMAND_BURST_ENABLE)
926 	return (AE_ERROR);
927 
928     /* Decide what to wait for based on command type. */
929     switch (cmd) {
930     case EC_COMMAND_READ:
931     case EC_COMMAND_WRITE:
932     case EC_COMMAND_BURST_DISABLE:
933 	event = EC_EVENT_INPUT_BUFFER_EMPTY;
934 	break;
935     case EC_COMMAND_QUERY:
936     case EC_COMMAND_BURST_ENABLE:
937 	event = EC_EVENT_OUTPUT_BUFFER_FULL;
938 	break;
939     default:
940 	device_printf(sc->ec_dev, "EcCommand: invalid command %#x\n", cmd);
941 	return (AE_BAD_PARAMETER);
942     }
943 
944     /*
945      * Ensure empty input buffer before issuing command.
946      * Use generation count of zero to force a quick check.
947      */
948     status = EcWaitEvent(sc, EC_EVENT_INPUT_BUFFER_EMPTY, 0);
949     if (ACPI_FAILURE(status))
950 	return (status);
951 
952     /* Run the command and wait for the chosen event. */
953     CTR1(KTR_ACPI, "ec running command %#x", cmd);
954     gen_count = sc->ec_gencount;
955     EC_SET_CSR(sc, cmd);
956     status = EcWaitEvent(sc, event, gen_count);
957     if (ACPI_SUCCESS(status)) {
958 	/* If we succeeded, burst flag should now be present. */
959 	if (cmd == EC_COMMAND_BURST_ENABLE) {
960 	    ec_status = EC_GET_CSR(sc);
961 	    if ((ec_status & EC_FLAG_BURST_MODE) == 0)
962 		status = AE_ERROR;
963 	}
964     } else
965 	device_printf(sc->ec_dev, "EcCommand: no response to %#x\n", cmd);
966     return (status);
967 }
968 
969 static ACPI_STATUS
970 EcRead(struct acpi_ec_softc *sc, UINT8 Address, UINT8 *Data)
971 {
972     ACPI_STATUS	status;
973     u_int gen_count;
974     int retry;
975 
976     ACPI_SERIAL_ASSERT(ec);
977     CTR1(KTR_ACPI, "ec read from %#x", Address);
978 
979     for (retry = 0; retry < 2; retry++) {
980 	status = EcCommand(sc, EC_COMMAND_READ);
981 	if (ACPI_FAILURE(status))
982 	    return (status);
983 
984 	gen_count = sc->ec_gencount;
985 	EC_SET_DATA(sc, Address);
986 	status = EcWaitEvent(sc, EC_EVENT_OUTPUT_BUFFER_FULL, gen_count);
987 	if (ACPI_SUCCESS(status)) {
988 	    *Data = EC_GET_DATA(sc);
989 	    return (AE_OK);
990 	}
991 	if (ACPI_FAILURE(EcCheckStatus(sc, "retr_check",
992 	    EC_EVENT_INPUT_BUFFER_EMPTY)))
993 	    break;
994     }
995     device_printf(sc->ec_dev, "EcRead: failed waiting to get data\n");
996     return (status);
997 }
998 
999 static ACPI_STATUS
1000 EcWrite(struct acpi_ec_softc *sc, UINT8 Address, UINT8 Data)
1001 {
1002     ACPI_STATUS	status;
1003     u_int gen_count;
1004 
1005     ACPI_SERIAL_ASSERT(ec);
1006     CTR2(KTR_ACPI, "ec write to %#x, data %#x", Address, Data);
1007 
1008     status = EcCommand(sc, EC_COMMAND_WRITE);
1009     if (ACPI_FAILURE(status))
1010 	return (status);
1011 
1012     gen_count = sc->ec_gencount;
1013     EC_SET_DATA(sc, Address);
1014     status = EcWaitEvent(sc, EC_EVENT_INPUT_BUFFER_EMPTY, gen_count);
1015     if (ACPI_FAILURE(status)) {
1016 	device_printf(sc->ec_dev, "EcWrite: failed waiting for sent address\n");
1017 	return (status);
1018     }
1019 
1020     gen_count = sc->ec_gencount;
1021     EC_SET_DATA(sc, Data);
1022     status = EcWaitEvent(sc, EC_EVENT_INPUT_BUFFER_EMPTY, gen_count);
1023     if (ACPI_FAILURE(status)) {
1024 	device_printf(sc->ec_dev, "EcWrite: failed waiting for sent data\n");
1025 	return (status);
1026     }
1027 
1028     return (AE_OK);
1029 }
1030