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