1 /*- 2 * Copyright (c) 2000 Takanori Watanabe <takawata@jp.freebsd.org> 3 * Copyright (c) 2000 Mitsuru IWASAKI <iwasaki@jp.freebsd.org> 4 * Copyright (c) 2000, 2001 Michael Smith 5 * Copyright (c) 2000 BSDi 6 * All rights reserved. 7 * 8 * Redistribution and use in source and binary forms, with or without 9 * modification, are permitted provided that the following conditions 10 * are met: 11 * 1. Redistributions of source code must retain the above copyright 12 * notice, this list of conditions and the following disclaimer. 13 * 2. Redistributions in binary form must reproduce the above copyright 14 * notice, this list of conditions and the following disclaimer in the 15 * documentation and/or other materials provided with the distribution. 16 * 17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 20 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 27 * SUCH DAMAGE. 28 */ 29 30 #include <sys/cdefs.h> 31 __FBSDID("$FreeBSD$"); 32 33 #include "opt_acpi.h" 34 #include <sys/param.h> 35 #include <sys/kernel.h> 36 #include <sys/proc.h> 37 #include <sys/fcntl.h> 38 #include <sys/malloc.h> 39 #include <sys/module.h> 40 #include <sys/bus.h> 41 #include <sys/conf.h> 42 #include <sys/ioccom.h> 43 #include <sys/reboot.h> 44 #include <sys/sysctl.h> 45 #include <sys/ctype.h> 46 #include <sys/linker.h> 47 #include <sys/power.h> 48 #include <sys/sbuf.h> 49 #include <sys/sched.h> 50 #include <sys/smp.h> 51 #include <sys/timetc.h> 52 53 #if defined(__i386__) || defined(__amd64__) 54 #include <machine/pci_cfgreg.h> 55 #endif 56 #include <machine/resource.h> 57 #include <machine/bus.h> 58 #include <sys/rman.h> 59 #include <isa/isavar.h> 60 #include <isa/pnpvar.h> 61 62 #include <contrib/dev/acpica/include/acpi.h> 63 #include <contrib/dev/acpica/include/accommon.h> 64 #include <contrib/dev/acpica/include/acnamesp.h> 65 66 #include <dev/acpica/acpivar.h> 67 #include <dev/acpica/acpiio.h> 68 69 #include <vm/vm_param.h> 70 71 static MALLOC_DEFINE(M_ACPIDEV, "acpidev", "ACPI devices"); 72 73 /* Hooks for the ACPI CA debugging infrastructure */ 74 #define _COMPONENT ACPI_BUS 75 ACPI_MODULE_NAME("ACPI") 76 77 static d_open_t acpiopen; 78 static d_close_t acpiclose; 79 static d_ioctl_t acpiioctl; 80 81 static struct cdevsw acpi_cdevsw = { 82 .d_version = D_VERSION, 83 .d_open = acpiopen, 84 .d_close = acpiclose, 85 .d_ioctl = acpiioctl, 86 .d_name = "acpi", 87 }; 88 89 struct acpi_interface { 90 ACPI_STRING *data; 91 int num; 92 }; 93 94 /* Global mutex for locking access to the ACPI subsystem. */ 95 struct mtx acpi_mutex; 96 struct callout acpi_sleep_timer; 97 98 /* Bitmap of device quirks. */ 99 int acpi_quirks; 100 101 /* Supported sleep states. */ 102 static BOOLEAN acpi_sleep_states[ACPI_S_STATE_COUNT]; 103 104 static int acpi_modevent(struct module *mod, int event, void *junk); 105 static int acpi_probe(device_t dev); 106 static int acpi_attach(device_t dev); 107 static int acpi_suspend(device_t dev); 108 static int acpi_resume(device_t dev); 109 static int acpi_shutdown(device_t dev); 110 static device_t acpi_add_child(device_t bus, u_int order, const char *name, 111 int unit); 112 static int acpi_print_child(device_t bus, device_t child); 113 static void acpi_probe_nomatch(device_t bus, device_t child); 114 static void acpi_driver_added(device_t dev, driver_t *driver); 115 static int acpi_read_ivar(device_t dev, device_t child, int index, 116 uintptr_t *result); 117 static int acpi_write_ivar(device_t dev, device_t child, int index, 118 uintptr_t value); 119 static struct resource_list *acpi_get_rlist(device_t dev, device_t child); 120 static void acpi_reserve_resources(device_t dev); 121 static int acpi_sysres_alloc(device_t dev); 122 static int acpi_set_resource(device_t dev, device_t child, int type, 123 int rid, u_long start, u_long count); 124 static struct resource *acpi_alloc_resource(device_t bus, device_t child, 125 int type, int *rid, u_long start, u_long end, 126 u_long count, u_int flags); 127 static int acpi_adjust_resource(device_t bus, device_t child, int type, 128 struct resource *r, u_long start, u_long end); 129 static int acpi_release_resource(device_t bus, device_t child, int type, 130 int rid, struct resource *r); 131 static void acpi_delete_resource(device_t bus, device_t child, int type, 132 int rid); 133 static uint32_t acpi_isa_get_logicalid(device_t dev); 134 static int acpi_isa_get_compatid(device_t dev, uint32_t *cids, int count); 135 static char *acpi_device_id_probe(device_t bus, device_t dev, char **ids); 136 static ACPI_STATUS acpi_device_eval_obj(device_t bus, device_t dev, 137 ACPI_STRING pathname, ACPI_OBJECT_LIST *parameters, 138 ACPI_BUFFER *ret); 139 static ACPI_STATUS acpi_device_scan_cb(ACPI_HANDLE h, UINT32 level, 140 void *context, void **retval); 141 static ACPI_STATUS acpi_device_scan_children(device_t bus, device_t dev, 142 int max_depth, acpi_scan_cb_t user_fn, void *arg); 143 static int acpi_set_powerstate(device_t child, int state); 144 static int acpi_isa_pnp_probe(device_t bus, device_t child, 145 struct isa_pnp_id *ids); 146 static void acpi_probe_children(device_t bus); 147 static void acpi_probe_order(ACPI_HANDLE handle, int *order); 148 static ACPI_STATUS acpi_probe_child(ACPI_HANDLE handle, UINT32 level, 149 void *context, void **status); 150 static void acpi_sleep_enable(void *arg); 151 static ACPI_STATUS acpi_sleep_disable(struct acpi_softc *sc); 152 static ACPI_STATUS acpi_EnterSleepState(struct acpi_softc *sc, int state); 153 static void acpi_shutdown_final(void *arg, int howto); 154 static void acpi_enable_fixed_events(struct acpi_softc *sc); 155 static BOOLEAN acpi_has_hid(ACPI_HANDLE handle); 156 static void acpi_resync_clock(struct acpi_softc *sc); 157 static int acpi_wake_sleep_prep(ACPI_HANDLE handle, int sstate); 158 static int acpi_wake_run_prep(ACPI_HANDLE handle, int sstate); 159 static int acpi_wake_prep_walk(int sstate); 160 static int acpi_wake_sysctl_walk(device_t dev); 161 static int acpi_wake_set_sysctl(SYSCTL_HANDLER_ARGS); 162 static void acpi_system_eventhandler_sleep(void *arg, int state); 163 static void acpi_system_eventhandler_wakeup(void *arg, int state); 164 static int acpi_sname2sstate(const char *sname); 165 static const char *acpi_sstate2sname(int sstate); 166 static int acpi_supported_sleep_state_sysctl(SYSCTL_HANDLER_ARGS); 167 static int acpi_sleep_state_sysctl(SYSCTL_HANDLER_ARGS); 168 static int acpi_debug_objects_sysctl(SYSCTL_HANDLER_ARGS); 169 static int acpi_pm_func(u_long cmd, void *arg, ...); 170 static int acpi_child_location_str_method(device_t acdev, device_t child, 171 char *buf, size_t buflen); 172 static int acpi_child_pnpinfo_str_method(device_t acdev, device_t child, 173 char *buf, size_t buflen); 174 #if defined(__i386__) || defined(__amd64__) 175 static void acpi_enable_pcie(void); 176 #endif 177 static void acpi_hint_device_unit(device_t acdev, device_t child, 178 const char *name, int *unitp); 179 static void acpi_reset_interfaces(device_t dev); 180 181 static device_method_t acpi_methods[] = { 182 /* Device interface */ 183 DEVMETHOD(device_probe, acpi_probe), 184 DEVMETHOD(device_attach, acpi_attach), 185 DEVMETHOD(device_shutdown, acpi_shutdown), 186 DEVMETHOD(device_detach, bus_generic_detach), 187 DEVMETHOD(device_suspend, acpi_suspend), 188 DEVMETHOD(device_resume, acpi_resume), 189 190 /* Bus interface */ 191 DEVMETHOD(bus_add_child, acpi_add_child), 192 DEVMETHOD(bus_print_child, acpi_print_child), 193 DEVMETHOD(bus_probe_nomatch, acpi_probe_nomatch), 194 DEVMETHOD(bus_driver_added, acpi_driver_added), 195 DEVMETHOD(bus_read_ivar, acpi_read_ivar), 196 DEVMETHOD(bus_write_ivar, acpi_write_ivar), 197 DEVMETHOD(bus_get_resource_list, acpi_get_rlist), 198 DEVMETHOD(bus_set_resource, acpi_set_resource), 199 DEVMETHOD(bus_get_resource, bus_generic_rl_get_resource), 200 DEVMETHOD(bus_alloc_resource, acpi_alloc_resource), 201 DEVMETHOD(bus_adjust_resource, acpi_adjust_resource), 202 DEVMETHOD(bus_release_resource, acpi_release_resource), 203 DEVMETHOD(bus_delete_resource, acpi_delete_resource), 204 DEVMETHOD(bus_child_pnpinfo_str, acpi_child_pnpinfo_str_method), 205 DEVMETHOD(bus_child_location_str, acpi_child_location_str_method), 206 DEVMETHOD(bus_activate_resource, bus_generic_activate_resource), 207 DEVMETHOD(bus_deactivate_resource, bus_generic_deactivate_resource), 208 DEVMETHOD(bus_setup_intr, bus_generic_setup_intr), 209 DEVMETHOD(bus_teardown_intr, bus_generic_teardown_intr), 210 DEVMETHOD(bus_hint_device_unit, acpi_hint_device_unit), 211 212 /* ACPI bus */ 213 DEVMETHOD(acpi_id_probe, acpi_device_id_probe), 214 DEVMETHOD(acpi_evaluate_object, acpi_device_eval_obj), 215 DEVMETHOD(acpi_pwr_for_sleep, acpi_device_pwr_for_sleep), 216 DEVMETHOD(acpi_scan_children, acpi_device_scan_children), 217 218 /* ISA emulation */ 219 DEVMETHOD(isa_pnp_probe, acpi_isa_pnp_probe), 220 221 DEVMETHOD_END 222 }; 223 224 static driver_t acpi_driver = { 225 "acpi", 226 acpi_methods, 227 sizeof(struct acpi_softc), 228 }; 229 230 static devclass_t acpi_devclass; 231 DRIVER_MODULE(acpi, nexus, acpi_driver, acpi_devclass, acpi_modevent, 0); 232 MODULE_VERSION(acpi, 1); 233 234 ACPI_SERIAL_DECL(acpi, "ACPI root bus"); 235 236 /* Local pools for managing system resources for ACPI child devices. */ 237 static struct rman acpi_rman_io, acpi_rman_mem; 238 239 #define ACPI_MINIMUM_AWAKETIME 5 240 241 /* Holds the description of the acpi0 device. */ 242 static char acpi_desc[ACPI_OEM_ID_SIZE + ACPI_OEM_TABLE_ID_SIZE + 2]; 243 244 SYSCTL_NODE(_debug, OID_AUTO, acpi, CTLFLAG_RD, NULL, "ACPI debugging"); 245 static char acpi_ca_version[12]; 246 SYSCTL_STRING(_debug_acpi, OID_AUTO, acpi_ca_version, CTLFLAG_RD, 247 acpi_ca_version, 0, "Version of Intel ACPI-CA"); 248 249 /* 250 * Allow overriding _OSI methods. 251 */ 252 static char acpi_install_interface[256]; 253 TUNABLE_STR("hw.acpi.install_interface", acpi_install_interface, 254 sizeof(acpi_install_interface)); 255 static char acpi_remove_interface[256]; 256 TUNABLE_STR("hw.acpi.remove_interface", acpi_remove_interface, 257 sizeof(acpi_remove_interface)); 258 259 /* 260 * Allow override of whether methods execute in parallel or not. 261 * Enable this for serial behavior, which fixes "AE_ALREADY_EXISTS" 262 * errors for AML that really can't handle parallel method execution. 263 * It is off by default since this breaks recursive methods and 264 * some IBMs use such code. 265 */ 266 static int acpi_serialize_methods; 267 TUNABLE_INT("hw.acpi.serialize_methods", &acpi_serialize_methods); 268 269 /* Allow users to dump Debug objects without ACPI debugger. */ 270 static int acpi_debug_objects; 271 TUNABLE_INT("debug.acpi.enable_debug_objects", &acpi_debug_objects); 272 SYSCTL_PROC(_debug_acpi, OID_AUTO, enable_debug_objects, 273 CTLFLAG_RW | CTLTYPE_INT, NULL, 0, acpi_debug_objects_sysctl, "I", 274 "Enable Debug objects"); 275 276 /* Allow the interpreter to ignore common mistakes in BIOS. */ 277 static int acpi_interpreter_slack = 1; 278 TUNABLE_INT("debug.acpi.interpreter_slack", &acpi_interpreter_slack); 279 SYSCTL_INT(_debug_acpi, OID_AUTO, interpreter_slack, CTLFLAG_RDTUN, 280 &acpi_interpreter_slack, 1, "Turn on interpreter slack mode."); 281 282 #ifdef __amd64__ 283 /* Reset system clock while resuming. XXX Remove once tested. */ 284 static int acpi_reset_clock = 1; 285 TUNABLE_INT("debug.acpi.reset_clock", &acpi_reset_clock); 286 SYSCTL_INT(_debug_acpi, OID_AUTO, reset_clock, CTLFLAG_RW, 287 &acpi_reset_clock, 1, "Reset system clock while resuming."); 288 #endif 289 290 /* Allow users to override quirks. */ 291 TUNABLE_INT("debug.acpi.quirks", &acpi_quirks); 292 293 static int acpi_susp_bounce; 294 SYSCTL_INT(_debug_acpi, OID_AUTO, suspend_bounce, CTLFLAG_RW, 295 &acpi_susp_bounce, 0, "Don't actually suspend, just test devices."); 296 297 /* 298 * ACPI can only be loaded as a module by the loader; activating it after 299 * system bootstrap time is not useful, and can be fatal to the system. 300 * It also cannot be unloaded, since the entire system bus hierarchy hangs 301 * off it. 302 */ 303 static int 304 acpi_modevent(struct module *mod, int event, void *junk) 305 { 306 switch (event) { 307 case MOD_LOAD: 308 if (!cold) { 309 printf("The ACPI driver cannot be loaded after boot.\n"); 310 return (EPERM); 311 } 312 break; 313 case MOD_UNLOAD: 314 if (!cold && power_pm_get_type() == POWER_PM_TYPE_ACPI) 315 return (EBUSY); 316 break; 317 default: 318 break; 319 } 320 return (0); 321 } 322 323 /* 324 * Perform early initialization. 325 */ 326 ACPI_STATUS 327 acpi_Startup(void) 328 { 329 static int started = 0; 330 ACPI_STATUS status; 331 int val; 332 333 ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__); 334 335 /* Only run the startup code once. The MADT driver also calls this. */ 336 if (started) 337 return_VALUE (AE_OK); 338 started = 1; 339 340 /* 341 * Pre-allocate space for RSDT/XSDT and DSDT tables and allow resizing 342 * if more tables exist. 343 */ 344 if (ACPI_FAILURE(status = AcpiInitializeTables(NULL, 2, TRUE))) { 345 printf("ACPI: Table initialisation failed: %s\n", 346 AcpiFormatException(status)); 347 return_VALUE (status); 348 } 349 350 /* Set up any quirks we have for this system. */ 351 if (acpi_quirks == ACPI_Q_OK) 352 acpi_table_quirks(&acpi_quirks); 353 354 /* If the user manually set the disabled hint to 0, force-enable ACPI. */ 355 if (resource_int_value("acpi", 0, "disabled", &val) == 0 && val == 0) 356 acpi_quirks &= ~ACPI_Q_BROKEN; 357 if (acpi_quirks & ACPI_Q_BROKEN) { 358 printf("ACPI disabled by blacklist. Contact your BIOS vendor.\n"); 359 status = AE_SUPPORT; 360 } 361 362 return_VALUE (status); 363 } 364 365 /* 366 * Detect ACPI and perform early initialisation. 367 */ 368 int 369 acpi_identify(void) 370 { 371 ACPI_TABLE_RSDP *rsdp; 372 ACPI_TABLE_HEADER *rsdt; 373 ACPI_PHYSICAL_ADDRESS paddr; 374 struct sbuf sb; 375 376 ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__); 377 378 if (!cold) 379 return (ENXIO); 380 381 /* Check that we haven't been disabled with a hint. */ 382 if (resource_disabled("acpi", 0)) 383 return (ENXIO); 384 385 /* Check for other PM systems. */ 386 if (power_pm_get_type() != POWER_PM_TYPE_NONE && 387 power_pm_get_type() != POWER_PM_TYPE_ACPI) { 388 printf("ACPI identify failed, other PM system enabled.\n"); 389 return (ENXIO); 390 } 391 392 /* Initialize root tables. */ 393 if (ACPI_FAILURE(acpi_Startup())) { 394 printf("ACPI: Try disabling either ACPI or apic support.\n"); 395 return (ENXIO); 396 } 397 398 if ((paddr = AcpiOsGetRootPointer()) == 0 || 399 (rsdp = AcpiOsMapMemory(paddr, sizeof(ACPI_TABLE_RSDP))) == NULL) 400 return (ENXIO); 401 if (rsdp->Revision > 1 && rsdp->XsdtPhysicalAddress != 0) 402 paddr = (ACPI_PHYSICAL_ADDRESS)rsdp->XsdtPhysicalAddress; 403 else 404 paddr = (ACPI_PHYSICAL_ADDRESS)rsdp->RsdtPhysicalAddress; 405 AcpiOsUnmapMemory(rsdp, sizeof(ACPI_TABLE_RSDP)); 406 407 if ((rsdt = AcpiOsMapMemory(paddr, sizeof(ACPI_TABLE_HEADER))) == NULL) 408 return (ENXIO); 409 sbuf_new(&sb, acpi_desc, sizeof(acpi_desc), SBUF_FIXEDLEN); 410 sbuf_bcat(&sb, rsdt->OemId, ACPI_OEM_ID_SIZE); 411 sbuf_trim(&sb); 412 sbuf_putc(&sb, ' '); 413 sbuf_bcat(&sb, rsdt->OemTableId, ACPI_OEM_TABLE_ID_SIZE); 414 sbuf_trim(&sb); 415 sbuf_finish(&sb); 416 sbuf_delete(&sb); 417 AcpiOsUnmapMemory(rsdt, sizeof(ACPI_TABLE_HEADER)); 418 419 snprintf(acpi_ca_version, sizeof(acpi_ca_version), "%x", ACPI_CA_VERSION); 420 421 return (0); 422 } 423 424 /* 425 * Fetch some descriptive data from ACPI to put in our attach message. 426 */ 427 static int 428 acpi_probe(device_t dev) 429 { 430 431 ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__); 432 433 device_set_desc(dev, acpi_desc); 434 435 return_VALUE (BUS_PROBE_NOWILDCARD); 436 } 437 438 static int 439 acpi_attach(device_t dev) 440 { 441 struct acpi_softc *sc; 442 ACPI_STATUS status; 443 int error, state; 444 UINT32 flags; 445 UINT8 TypeA, TypeB; 446 char *env; 447 448 ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__); 449 450 sc = device_get_softc(dev); 451 sc->acpi_dev = dev; 452 callout_init(&sc->susp_force_to, TRUE); 453 454 error = ENXIO; 455 456 /* Initialize resource manager. */ 457 acpi_rman_io.rm_type = RMAN_ARRAY; 458 acpi_rman_io.rm_start = 0; 459 acpi_rman_io.rm_end = 0xffff; 460 acpi_rman_io.rm_descr = "ACPI I/O ports"; 461 if (rman_init(&acpi_rman_io) != 0) 462 panic("acpi rman_init IO ports failed"); 463 acpi_rman_mem.rm_type = RMAN_ARRAY; 464 acpi_rman_mem.rm_start = 0; 465 acpi_rman_mem.rm_end = ~0ul; 466 acpi_rman_mem.rm_descr = "ACPI I/O memory addresses"; 467 if (rman_init(&acpi_rman_mem) != 0) 468 panic("acpi rman_init memory failed"); 469 470 /* Initialise the ACPI mutex */ 471 mtx_init(&acpi_mutex, "ACPI global lock", NULL, MTX_DEF); 472 473 /* 474 * Set the globals from our tunables. This is needed because ACPI-CA 475 * uses UINT8 for some values and we have no tunable_byte. 476 */ 477 AcpiGbl_AllMethodsSerialized = acpi_serialize_methods ? TRUE : FALSE; 478 AcpiGbl_EnableInterpreterSlack = acpi_interpreter_slack ? TRUE : FALSE; 479 AcpiGbl_EnableAmlDebugObject = acpi_debug_objects ? TRUE : FALSE; 480 481 #ifndef ACPI_DEBUG 482 /* 483 * Disable all debugging layers and levels. 484 */ 485 AcpiDbgLayer = 0; 486 AcpiDbgLevel = 0; 487 #endif 488 489 /* Start up the ACPI CA subsystem. */ 490 status = AcpiInitializeSubsystem(); 491 if (ACPI_FAILURE(status)) { 492 device_printf(dev, "Could not initialize Subsystem: %s\n", 493 AcpiFormatException(status)); 494 goto out; 495 } 496 497 /* Override OS interfaces if the user requested. */ 498 acpi_reset_interfaces(dev); 499 500 /* Load ACPI name space. */ 501 status = AcpiLoadTables(); 502 if (ACPI_FAILURE(status)) { 503 device_printf(dev, "Could not load Namespace: %s\n", 504 AcpiFormatException(status)); 505 goto out; 506 } 507 508 #if defined(__i386__) || defined(__amd64__) 509 /* Handle MCFG table if present. */ 510 acpi_enable_pcie(); 511 #endif 512 513 /* 514 * Note that some systems (specifically, those with namespace evaluation 515 * issues that require the avoidance of parts of the namespace) must 516 * avoid running _INI and _STA on everything, as well as dodging the final 517 * object init pass. 518 * 519 * For these devices, we set ACPI_NO_DEVICE_INIT and ACPI_NO_OBJECT_INIT). 520 * 521 * XXX We should arrange for the object init pass after we have attached 522 * all our child devices, but on many systems it works here. 523 */ 524 flags = 0; 525 if (testenv("debug.acpi.avoid")) 526 flags = ACPI_NO_DEVICE_INIT | ACPI_NO_OBJECT_INIT; 527 528 /* Bring the hardware and basic handlers online. */ 529 if (ACPI_FAILURE(status = AcpiEnableSubsystem(flags))) { 530 device_printf(dev, "Could not enable ACPI: %s\n", 531 AcpiFormatException(status)); 532 goto out; 533 } 534 535 /* 536 * Call the ECDT probe function to provide EC functionality before 537 * the namespace has been evaluated. 538 * 539 * XXX This happens before the sysresource devices have been probed and 540 * attached so its resources come from nexus0. In practice, this isn't 541 * a problem but should be addressed eventually. 542 */ 543 acpi_ec_ecdt_probe(dev); 544 545 /* Bring device objects and regions online. */ 546 if (ACPI_FAILURE(status = AcpiInitializeObjects(flags))) { 547 device_printf(dev, "Could not initialize ACPI objects: %s\n", 548 AcpiFormatException(status)); 549 goto out; 550 } 551 552 /* 553 * Setup our sysctl tree. 554 * 555 * XXX: This doesn't check to make sure that none of these fail. 556 */ 557 sysctl_ctx_init(&sc->acpi_sysctl_ctx); 558 sc->acpi_sysctl_tree = SYSCTL_ADD_NODE(&sc->acpi_sysctl_ctx, 559 SYSCTL_STATIC_CHILDREN(_hw), OID_AUTO, 560 device_get_name(dev), CTLFLAG_RD, 0, ""); 561 SYSCTL_ADD_PROC(&sc->acpi_sysctl_ctx, SYSCTL_CHILDREN(sc->acpi_sysctl_tree), 562 OID_AUTO, "supported_sleep_state", CTLTYPE_STRING | CTLFLAG_RD, 563 0, 0, acpi_supported_sleep_state_sysctl, "A", ""); 564 SYSCTL_ADD_PROC(&sc->acpi_sysctl_ctx, SYSCTL_CHILDREN(sc->acpi_sysctl_tree), 565 OID_AUTO, "power_button_state", CTLTYPE_STRING | CTLFLAG_RW, 566 &sc->acpi_power_button_sx, 0, acpi_sleep_state_sysctl, "A", ""); 567 SYSCTL_ADD_PROC(&sc->acpi_sysctl_ctx, SYSCTL_CHILDREN(sc->acpi_sysctl_tree), 568 OID_AUTO, "sleep_button_state", CTLTYPE_STRING | CTLFLAG_RW, 569 &sc->acpi_sleep_button_sx, 0, acpi_sleep_state_sysctl, "A", ""); 570 SYSCTL_ADD_PROC(&sc->acpi_sysctl_ctx, SYSCTL_CHILDREN(sc->acpi_sysctl_tree), 571 OID_AUTO, "lid_switch_state", CTLTYPE_STRING | CTLFLAG_RW, 572 &sc->acpi_lid_switch_sx, 0, acpi_sleep_state_sysctl, "A", ""); 573 SYSCTL_ADD_PROC(&sc->acpi_sysctl_ctx, SYSCTL_CHILDREN(sc->acpi_sysctl_tree), 574 OID_AUTO, "standby_state", CTLTYPE_STRING | CTLFLAG_RW, 575 &sc->acpi_standby_sx, 0, acpi_sleep_state_sysctl, "A", ""); 576 SYSCTL_ADD_PROC(&sc->acpi_sysctl_ctx, SYSCTL_CHILDREN(sc->acpi_sysctl_tree), 577 OID_AUTO, "suspend_state", CTLTYPE_STRING | CTLFLAG_RW, 578 &sc->acpi_suspend_sx, 0, acpi_sleep_state_sysctl, "A", ""); 579 SYSCTL_ADD_INT(&sc->acpi_sysctl_ctx, SYSCTL_CHILDREN(sc->acpi_sysctl_tree), 580 OID_AUTO, "sleep_delay", CTLFLAG_RW, &sc->acpi_sleep_delay, 0, 581 "sleep delay in seconds"); 582 SYSCTL_ADD_INT(&sc->acpi_sysctl_ctx, SYSCTL_CHILDREN(sc->acpi_sysctl_tree), 583 OID_AUTO, "s4bios", CTLFLAG_RW, &sc->acpi_s4bios, 0, "S4BIOS mode"); 584 SYSCTL_ADD_INT(&sc->acpi_sysctl_ctx, SYSCTL_CHILDREN(sc->acpi_sysctl_tree), 585 OID_AUTO, "verbose", CTLFLAG_RW, &sc->acpi_verbose, 0, "verbose mode"); 586 SYSCTL_ADD_INT(&sc->acpi_sysctl_ctx, SYSCTL_CHILDREN(sc->acpi_sysctl_tree), 587 OID_AUTO, "disable_on_reboot", CTLFLAG_RW, 588 &sc->acpi_do_disable, 0, "Disable ACPI when rebooting/halting system"); 589 SYSCTL_ADD_INT(&sc->acpi_sysctl_ctx, SYSCTL_CHILDREN(sc->acpi_sysctl_tree), 590 OID_AUTO, "handle_reboot", CTLFLAG_RW, 591 &sc->acpi_handle_reboot, 0, "Use ACPI Reset Register to reboot"); 592 593 /* 594 * Default to 1 second before sleeping to give some machines time to 595 * stabilize. 596 */ 597 sc->acpi_sleep_delay = 1; 598 if (bootverbose) 599 sc->acpi_verbose = 1; 600 if ((env = getenv("hw.acpi.verbose")) != NULL) { 601 if (strcmp(env, "0") != 0) 602 sc->acpi_verbose = 1; 603 freeenv(env); 604 } 605 606 /* Only enable reboot by default if the FADT says it is available. */ 607 if (AcpiGbl_FADT.Flags & ACPI_FADT_RESET_REGISTER) 608 sc->acpi_handle_reboot = 1; 609 610 /* Only enable S4BIOS by default if the FACS says it is available. */ 611 if (AcpiGbl_FACS->Flags & ACPI_FACS_S4_BIOS_PRESENT) 612 sc->acpi_s4bios = 1; 613 614 /* Probe all supported sleep states. */ 615 acpi_sleep_states[ACPI_STATE_S0] = TRUE; 616 for (state = ACPI_STATE_S1; state < ACPI_S_STATE_COUNT; state++) 617 if (ACPI_SUCCESS(AcpiEvaluateObject(ACPI_ROOT_OBJECT, 618 __DECONST(char *, AcpiGbl_SleepStateNames[state]), NULL, NULL)) && 619 ACPI_SUCCESS(AcpiGetSleepTypeData(state, &TypeA, &TypeB))) 620 acpi_sleep_states[state] = TRUE; 621 622 /* 623 * Dispatch the default sleep state to devices. The lid switch is set 624 * to UNKNOWN by default to avoid surprising users. 625 */ 626 sc->acpi_power_button_sx = acpi_sleep_states[ACPI_STATE_S5] ? 627 ACPI_STATE_S5 : ACPI_STATE_UNKNOWN; 628 sc->acpi_lid_switch_sx = ACPI_STATE_UNKNOWN; 629 sc->acpi_standby_sx = acpi_sleep_states[ACPI_STATE_S1] ? 630 ACPI_STATE_S1 : ACPI_STATE_UNKNOWN; 631 sc->acpi_suspend_sx = acpi_sleep_states[ACPI_STATE_S3] ? 632 ACPI_STATE_S3 : ACPI_STATE_UNKNOWN; 633 634 /* Pick the first valid sleep state for the sleep button default. */ 635 sc->acpi_sleep_button_sx = ACPI_STATE_UNKNOWN; 636 for (state = ACPI_STATE_S1; state <= ACPI_STATE_S4; state++) 637 if (acpi_sleep_states[state]) { 638 sc->acpi_sleep_button_sx = state; 639 break; 640 } 641 642 acpi_enable_fixed_events(sc); 643 644 /* 645 * Scan the namespace and attach/initialise children. 646 */ 647 648 /* Register our shutdown handler. */ 649 EVENTHANDLER_REGISTER(shutdown_final, acpi_shutdown_final, sc, 650 SHUTDOWN_PRI_LAST); 651 652 /* 653 * Register our acpi event handlers. 654 * XXX should be configurable eg. via userland policy manager. 655 */ 656 EVENTHANDLER_REGISTER(acpi_sleep_event, acpi_system_eventhandler_sleep, 657 sc, ACPI_EVENT_PRI_LAST); 658 EVENTHANDLER_REGISTER(acpi_wakeup_event, acpi_system_eventhandler_wakeup, 659 sc, ACPI_EVENT_PRI_LAST); 660 661 /* Flag our initial states. */ 662 sc->acpi_enabled = TRUE; 663 sc->acpi_sstate = ACPI_STATE_S0; 664 sc->acpi_sleep_disabled = TRUE; 665 666 /* Create the control device */ 667 sc->acpi_dev_t = make_dev(&acpi_cdevsw, 0, UID_ROOT, GID_WHEEL, 0644, 668 "acpi"); 669 sc->acpi_dev_t->si_drv1 = sc; 670 671 if ((error = acpi_machdep_init(dev))) 672 goto out; 673 674 /* Register ACPI again to pass the correct argument of pm_func. */ 675 power_pm_register(POWER_PM_TYPE_ACPI, acpi_pm_func, sc); 676 677 if (!acpi_disabled("bus")) 678 acpi_probe_children(dev); 679 680 /* Update all GPEs and enable runtime GPEs. */ 681 status = AcpiUpdateAllGpes(); 682 if (ACPI_FAILURE(status)) 683 device_printf(dev, "Could not update all GPEs: %s\n", 684 AcpiFormatException(status)); 685 686 /* Allow sleep request after a while. */ 687 callout_init_mtx(&acpi_sleep_timer, &acpi_mutex, 0); 688 callout_reset(&acpi_sleep_timer, hz * ACPI_MINIMUM_AWAKETIME, 689 acpi_sleep_enable, sc); 690 691 error = 0; 692 693 out: 694 return_VALUE (error); 695 } 696 697 static void 698 acpi_set_power_children(device_t dev, int state) 699 { 700 device_t child, parent; 701 device_t *devlist; 702 int dstate, i, numdevs; 703 704 if (device_get_children(dev, &devlist, &numdevs) != 0) 705 return; 706 707 /* 708 * Retrieve and set D-state for the sleep state if _SxD is present. 709 * Skip children who aren't attached since they are handled separately. 710 */ 711 parent = device_get_parent(dev); 712 for (i = 0; i < numdevs; i++) { 713 child = devlist[i]; 714 dstate = state; 715 if (device_is_attached(child) && 716 acpi_device_pwr_for_sleep(parent, dev, &dstate) == 0) 717 acpi_set_powerstate(child, dstate); 718 } 719 free(devlist, M_TEMP); 720 } 721 722 static int 723 acpi_suspend(device_t dev) 724 { 725 int error; 726 727 GIANT_REQUIRED; 728 729 error = bus_generic_suspend(dev); 730 if (error == 0) 731 acpi_set_power_children(dev, ACPI_STATE_D3); 732 733 return (error); 734 } 735 736 static int 737 acpi_resume(device_t dev) 738 { 739 740 GIANT_REQUIRED; 741 742 acpi_set_power_children(dev, ACPI_STATE_D0); 743 744 return (bus_generic_resume(dev)); 745 } 746 747 static int 748 acpi_shutdown(device_t dev) 749 { 750 751 GIANT_REQUIRED; 752 753 /* Allow children to shutdown first. */ 754 bus_generic_shutdown(dev); 755 756 /* 757 * Enable any GPEs that are able to power-on the system (i.e., RTC). 758 * Also, disable any that are not valid for this state (most). 759 */ 760 acpi_wake_prep_walk(ACPI_STATE_S5); 761 762 return (0); 763 } 764 765 /* 766 * Handle a new device being added 767 */ 768 static device_t 769 acpi_add_child(device_t bus, u_int order, const char *name, int unit) 770 { 771 struct acpi_device *ad; 772 device_t child; 773 774 if ((ad = malloc(sizeof(*ad), M_ACPIDEV, M_NOWAIT | M_ZERO)) == NULL) 775 return (NULL); 776 777 resource_list_init(&ad->ad_rl); 778 779 child = device_add_child_ordered(bus, order, name, unit); 780 if (child != NULL) 781 device_set_ivars(child, ad); 782 else 783 free(ad, M_ACPIDEV); 784 return (child); 785 } 786 787 static int 788 acpi_print_child(device_t bus, device_t child) 789 { 790 struct acpi_device *adev = device_get_ivars(child); 791 struct resource_list *rl = &adev->ad_rl; 792 int retval = 0; 793 794 retval += bus_print_child_header(bus, child); 795 retval += resource_list_print_type(rl, "port", SYS_RES_IOPORT, "%#lx"); 796 retval += resource_list_print_type(rl, "iomem", SYS_RES_MEMORY, "%#lx"); 797 retval += resource_list_print_type(rl, "irq", SYS_RES_IRQ, "%ld"); 798 retval += resource_list_print_type(rl, "drq", SYS_RES_DRQ, "%ld"); 799 if (device_get_flags(child)) 800 retval += printf(" flags %#x", device_get_flags(child)); 801 retval += bus_print_child_footer(bus, child); 802 803 return (retval); 804 } 805 806 /* 807 * If this device is an ACPI child but no one claimed it, attempt 808 * to power it off. We'll power it back up when a driver is added. 809 * 810 * XXX Disabled for now since many necessary devices (like fdc and 811 * ATA) don't claim the devices we created for them but still expect 812 * them to be powered up. 813 */ 814 static void 815 acpi_probe_nomatch(device_t bus, device_t child) 816 { 817 #ifdef ACPI_ENABLE_POWERDOWN_NODRIVER 818 acpi_set_powerstate(child, ACPI_STATE_D3); 819 #endif 820 } 821 822 /* 823 * If a new driver has a chance to probe a child, first power it up. 824 * 825 * XXX Disabled for now (see acpi_probe_nomatch for details). 826 */ 827 static void 828 acpi_driver_added(device_t dev, driver_t *driver) 829 { 830 device_t child, *devlist; 831 int i, numdevs; 832 833 DEVICE_IDENTIFY(driver, dev); 834 if (device_get_children(dev, &devlist, &numdevs)) 835 return; 836 for (i = 0; i < numdevs; i++) { 837 child = devlist[i]; 838 if (device_get_state(child) == DS_NOTPRESENT) { 839 #ifdef ACPI_ENABLE_POWERDOWN_NODRIVER 840 acpi_set_powerstate(child, ACPI_STATE_D0); 841 if (device_probe_and_attach(child) != 0) 842 acpi_set_powerstate(child, ACPI_STATE_D3); 843 #else 844 device_probe_and_attach(child); 845 #endif 846 } 847 } 848 free(devlist, M_TEMP); 849 } 850 851 /* Location hint for devctl(8) */ 852 static int 853 acpi_child_location_str_method(device_t cbdev, device_t child, char *buf, 854 size_t buflen) 855 { 856 struct acpi_device *dinfo = device_get_ivars(child); 857 char buf2[32]; 858 int pxm; 859 860 if (dinfo->ad_handle) { 861 snprintf(buf, buflen, "handle=%s", acpi_name(dinfo->ad_handle)); 862 if (ACPI_SUCCESS(acpi_GetInteger(dinfo->ad_handle, "_PXM", &pxm))) { 863 snprintf(buf2, 32, " _PXM=%d", pxm); 864 strlcat(buf, buf2, buflen); 865 } 866 } else { 867 snprintf(buf, buflen, "unknown"); 868 } 869 return (0); 870 } 871 872 /* PnP information for devctl(8) */ 873 static int 874 acpi_child_pnpinfo_str_method(device_t cbdev, device_t child, char *buf, 875 size_t buflen) 876 { 877 struct acpi_device *dinfo = device_get_ivars(child); 878 ACPI_DEVICE_INFO *adinfo; 879 880 if (ACPI_FAILURE(AcpiGetObjectInfo(dinfo->ad_handle, &adinfo))) { 881 snprintf(buf, buflen, "unknown"); 882 return (0); 883 } 884 885 snprintf(buf, buflen, "_HID=%s _UID=%lu", 886 (adinfo->Valid & ACPI_VALID_HID) ? 887 adinfo->HardwareId.String : "none", 888 (adinfo->Valid & ACPI_VALID_UID) ? 889 strtoul(adinfo->UniqueId.String, NULL, 10) : 0UL); 890 AcpiOsFree(adinfo); 891 892 return (0); 893 } 894 895 /* 896 * Handle per-device ivars 897 */ 898 static int 899 acpi_read_ivar(device_t dev, device_t child, int index, uintptr_t *result) 900 { 901 struct acpi_device *ad; 902 903 if ((ad = device_get_ivars(child)) == NULL) { 904 device_printf(child, "device has no ivars\n"); 905 return (ENOENT); 906 } 907 908 /* ACPI and ISA compatibility ivars */ 909 switch(index) { 910 case ACPI_IVAR_HANDLE: 911 *(ACPI_HANDLE *)result = ad->ad_handle; 912 break; 913 case ACPI_IVAR_PRIVATE: 914 *(void **)result = ad->ad_private; 915 break; 916 case ACPI_IVAR_FLAGS: 917 *(int *)result = ad->ad_flags; 918 break; 919 case ISA_IVAR_VENDORID: 920 case ISA_IVAR_SERIAL: 921 case ISA_IVAR_COMPATID: 922 *(int *)result = -1; 923 break; 924 case ISA_IVAR_LOGICALID: 925 *(int *)result = acpi_isa_get_logicalid(child); 926 break; 927 default: 928 return (ENOENT); 929 } 930 931 return (0); 932 } 933 934 static int 935 acpi_write_ivar(device_t dev, device_t child, int index, uintptr_t value) 936 { 937 struct acpi_device *ad; 938 939 if ((ad = device_get_ivars(child)) == NULL) { 940 device_printf(child, "device has no ivars\n"); 941 return (ENOENT); 942 } 943 944 switch(index) { 945 case ACPI_IVAR_HANDLE: 946 ad->ad_handle = (ACPI_HANDLE)value; 947 break; 948 case ACPI_IVAR_PRIVATE: 949 ad->ad_private = (void *)value; 950 break; 951 case ACPI_IVAR_FLAGS: 952 ad->ad_flags = (int)value; 953 break; 954 default: 955 panic("bad ivar write request (%d)", index); 956 return (ENOENT); 957 } 958 959 return (0); 960 } 961 962 /* 963 * Handle child resource allocation/removal 964 */ 965 static struct resource_list * 966 acpi_get_rlist(device_t dev, device_t child) 967 { 968 struct acpi_device *ad; 969 970 ad = device_get_ivars(child); 971 return (&ad->ad_rl); 972 } 973 974 static int 975 acpi_match_resource_hint(device_t dev, int type, long value) 976 { 977 struct acpi_device *ad = device_get_ivars(dev); 978 struct resource_list *rl = &ad->ad_rl; 979 struct resource_list_entry *rle; 980 981 STAILQ_FOREACH(rle, rl, link) { 982 if (rle->type != type) 983 continue; 984 if (rle->start <= value && rle->end >= value) 985 return (1); 986 } 987 return (0); 988 } 989 990 /* 991 * Wire device unit numbers based on resource matches in hints. 992 */ 993 static void 994 acpi_hint_device_unit(device_t acdev, device_t child, const char *name, 995 int *unitp) 996 { 997 const char *s; 998 long value; 999 int line, matches, unit; 1000 1001 /* 1002 * Iterate over all the hints for the devices with the specified 1003 * name to see if one's resources are a subset of this device. 1004 */ 1005 line = 0; 1006 for (;;) { 1007 if (resource_find_dev(&line, name, &unit, "at", NULL) != 0) 1008 break; 1009 1010 /* Must have an "at" for acpi or isa. */ 1011 resource_string_value(name, unit, "at", &s); 1012 if (!(strcmp(s, "acpi0") == 0 || strcmp(s, "acpi") == 0 || 1013 strcmp(s, "isa0") == 0 || strcmp(s, "isa") == 0)) 1014 continue; 1015 1016 /* 1017 * Check for matching resources. We must have at least one match. 1018 * Since I/O and memory resources cannot be shared, if we get a 1019 * match on either of those, ignore any mismatches in IRQs or DRQs. 1020 * 1021 * XXX: We may want to revisit this to be more lenient and wire 1022 * as long as it gets one match. 1023 */ 1024 matches = 0; 1025 if (resource_long_value(name, unit, "port", &value) == 0) { 1026 /* 1027 * Floppy drive controllers are notorious for having a 1028 * wide variety of resources not all of which include the 1029 * first port that is specified by the hint (typically 1030 * 0x3f0) (see the comment above fdc_isa_alloc_resources() 1031 * in fdc_isa.c). However, they do all seem to include 1032 * port + 2 (e.g. 0x3f2) so for a floppy device, look for 1033 * 'value + 2' in the port resources instead of the hint 1034 * value. 1035 */ 1036 if (strcmp(name, "fdc") == 0) 1037 value += 2; 1038 if (acpi_match_resource_hint(child, SYS_RES_IOPORT, value)) 1039 matches++; 1040 else 1041 continue; 1042 } 1043 if (resource_long_value(name, unit, "maddr", &value) == 0) { 1044 if (acpi_match_resource_hint(child, SYS_RES_MEMORY, value)) 1045 matches++; 1046 else 1047 continue; 1048 } 1049 if (matches > 0) 1050 goto matched; 1051 if (resource_long_value(name, unit, "irq", &value) == 0) { 1052 if (acpi_match_resource_hint(child, SYS_RES_IRQ, value)) 1053 matches++; 1054 else 1055 continue; 1056 } 1057 if (resource_long_value(name, unit, "drq", &value) == 0) { 1058 if (acpi_match_resource_hint(child, SYS_RES_DRQ, value)) 1059 matches++; 1060 else 1061 continue; 1062 } 1063 1064 matched: 1065 if (matches > 0) { 1066 /* We have a winner! */ 1067 *unitp = unit; 1068 break; 1069 } 1070 } 1071 } 1072 1073 /* 1074 * Pre-allocate/manage all memory and IO resources. Since rman can't handle 1075 * duplicates, we merge any in the sysresource attach routine. 1076 */ 1077 static int 1078 acpi_sysres_alloc(device_t dev) 1079 { 1080 struct resource *res; 1081 struct resource_list *rl; 1082 struct resource_list_entry *rle; 1083 struct rman *rm; 1084 char *sysres_ids[] = { "PNP0C01", "PNP0C02", NULL }; 1085 device_t *children; 1086 int child_count, i; 1087 1088 /* 1089 * Probe/attach any sysresource devices. This would be unnecessary if we 1090 * had multi-pass probe/attach. 1091 */ 1092 if (device_get_children(dev, &children, &child_count) != 0) 1093 return (ENXIO); 1094 for (i = 0; i < child_count; i++) { 1095 if (ACPI_ID_PROBE(dev, children[i], sysres_ids) != NULL) 1096 device_probe_and_attach(children[i]); 1097 } 1098 free(children, M_TEMP); 1099 1100 rl = BUS_GET_RESOURCE_LIST(device_get_parent(dev), dev); 1101 STAILQ_FOREACH(rle, rl, link) { 1102 if (rle->res != NULL) { 1103 device_printf(dev, "duplicate resource for %lx\n", rle->start); 1104 continue; 1105 } 1106 1107 /* Only memory and IO resources are valid here. */ 1108 switch (rle->type) { 1109 case SYS_RES_IOPORT: 1110 rm = &acpi_rman_io; 1111 break; 1112 case SYS_RES_MEMORY: 1113 rm = &acpi_rman_mem; 1114 break; 1115 default: 1116 continue; 1117 } 1118 1119 /* Pre-allocate resource and add to our rman pool. */ 1120 res = BUS_ALLOC_RESOURCE(device_get_parent(dev), dev, rle->type, 1121 &rle->rid, rle->start, rle->start + rle->count - 1, rle->count, 0); 1122 if (res != NULL) { 1123 rman_manage_region(rm, rman_get_start(res), rman_get_end(res)); 1124 rle->res = res; 1125 } else 1126 device_printf(dev, "reservation of %lx, %lx (%d) failed\n", 1127 rle->start, rle->count, rle->type); 1128 } 1129 return (0); 1130 } 1131 1132 static char *pcilink_ids[] = { "PNP0C0F", NULL }; 1133 static char *sysres_ids[] = { "PNP0C01", "PNP0C02", NULL }; 1134 1135 /* 1136 * Reserve declared resources for devices found during attach once system 1137 * resources have been allocated. 1138 */ 1139 static void 1140 acpi_reserve_resources(device_t dev) 1141 { 1142 struct resource_list_entry *rle; 1143 struct resource_list *rl; 1144 struct acpi_device *ad; 1145 struct acpi_softc *sc; 1146 device_t *children; 1147 int child_count, i; 1148 1149 sc = device_get_softc(dev); 1150 if (device_get_children(dev, &children, &child_count) != 0) 1151 return; 1152 for (i = 0; i < child_count; i++) { 1153 ad = device_get_ivars(children[i]); 1154 rl = &ad->ad_rl; 1155 1156 /* Don't reserve system resources. */ 1157 if (ACPI_ID_PROBE(dev, children[i], sysres_ids) != NULL) 1158 continue; 1159 1160 STAILQ_FOREACH(rle, rl, link) { 1161 /* 1162 * Don't reserve IRQ resources. There are many sticky things 1163 * to get right otherwise (e.g. IRQs for psm, atkbd, and HPET 1164 * when using legacy routing). 1165 */ 1166 if (rle->type == SYS_RES_IRQ) 1167 continue; 1168 1169 /* 1170 * Don't reserve the resource if it is already allocated. 1171 * The acpi_ec(4) driver can allocate its resources early 1172 * if ECDT is present. 1173 */ 1174 if (rle->res != NULL) 1175 continue; 1176 1177 /* 1178 * Try to reserve the resource from our parent. If this 1179 * fails because the resource is a system resource, just 1180 * let it be. The resource range is already reserved so 1181 * that other devices will not use it. If the driver 1182 * needs to allocate the resource, then 1183 * acpi_alloc_resource() will sub-alloc from the system 1184 * resource. 1185 */ 1186 resource_list_reserve(rl, dev, children[i], rle->type, &rle->rid, 1187 rle->start, rle->end, rle->count, 0); 1188 } 1189 } 1190 free(children, M_TEMP); 1191 sc->acpi_resources_reserved = 1; 1192 } 1193 1194 static int 1195 acpi_set_resource(device_t dev, device_t child, int type, int rid, 1196 u_long start, u_long count) 1197 { 1198 struct acpi_softc *sc = device_get_softc(dev); 1199 struct acpi_device *ad = device_get_ivars(child); 1200 struct resource_list *rl = &ad->ad_rl; 1201 ACPI_DEVICE_INFO *devinfo; 1202 u_long end; 1203 1204 /* Ignore IRQ resources for PCI link devices. */ 1205 if (type == SYS_RES_IRQ && ACPI_ID_PROBE(dev, child, pcilink_ids) != NULL) 1206 return (0); 1207 1208 /* 1209 * Ignore most resources for PCI root bridges. Some BIOSes 1210 * incorrectly enumerate the memory ranges they decode as plain 1211 * memory resources instead of as ResourceProducer ranges. Other 1212 * BIOSes incorrectly list system resource entries for I/O ranges 1213 * under the PCI bridge. Do allow the one known-correct case on 1214 * x86 of a PCI bridge claiming the I/O ports used for PCI config 1215 * access. 1216 */ 1217 if (type == SYS_RES_MEMORY || type == SYS_RES_IOPORT) { 1218 if (ACPI_SUCCESS(AcpiGetObjectInfo(ad->ad_handle, &devinfo))) { 1219 if ((devinfo->Flags & ACPI_PCI_ROOT_BRIDGE) != 0) { 1220 #if defined(__i386__) || defined(__amd64__) 1221 if (!(type == SYS_RES_IOPORT && start == CONF1_ADDR_PORT)) 1222 #endif 1223 { 1224 AcpiOsFree(devinfo); 1225 return (0); 1226 } 1227 } 1228 AcpiOsFree(devinfo); 1229 } 1230 } 1231 1232 /* If the resource is already allocated, fail. */ 1233 if (resource_list_busy(rl, type, rid)) 1234 return (EBUSY); 1235 1236 /* If the resource is already reserved, release it. */ 1237 if (resource_list_reserved(rl, type, rid)) 1238 resource_list_unreserve(rl, dev, child, type, rid); 1239 1240 /* Add the resource. */ 1241 end = (start + count - 1); 1242 resource_list_add(rl, type, rid, start, end, count); 1243 1244 /* Don't reserve resources until the system resources are allocated. */ 1245 if (!sc->acpi_resources_reserved) 1246 return (0); 1247 1248 /* Don't reserve system resources. */ 1249 if (ACPI_ID_PROBE(dev, child, sysres_ids) != NULL) 1250 return (0); 1251 1252 /* 1253 * Don't reserve IRQ resources. There are many sticky things to 1254 * get right otherwise (e.g. IRQs for psm, atkbd, and HPET when 1255 * using legacy routing). 1256 */ 1257 if (type == SYS_RES_IRQ) 1258 return (0); 1259 1260 /* 1261 * Reserve the resource. 1262 * 1263 * XXX: Ignores failure for now. Failure here is probably a 1264 * BIOS/firmware bug? 1265 */ 1266 resource_list_reserve(rl, dev, child, type, &rid, start, end, count, 0); 1267 return (0); 1268 } 1269 1270 static struct resource * 1271 acpi_alloc_resource(device_t bus, device_t child, int type, int *rid, 1272 u_long start, u_long end, u_long count, u_int flags) 1273 { 1274 ACPI_RESOURCE ares; 1275 struct acpi_device *ad; 1276 struct resource_list_entry *rle; 1277 struct resource_list *rl; 1278 struct resource *res; 1279 int isdefault = (start == 0UL && end == ~0UL); 1280 1281 /* 1282 * First attempt at allocating the resource. For direct children, 1283 * use resource_list_alloc() to handle reserved resources. For 1284 * other devices, pass the request up to our parent. 1285 */ 1286 if (bus == device_get_parent(child)) { 1287 ad = device_get_ivars(child); 1288 rl = &ad->ad_rl; 1289 1290 /* 1291 * Simulate the behavior of the ISA bus for direct children 1292 * devices. That is, if a non-default range is specified for 1293 * a resource that doesn't exist, use bus_set_resource() to 1294 * add the resource before allocating it. Note that these 1295 * resources will not be reserved. 1296 */ 1297 if (!isdefault && resource_list_find(rl, type, *rid) == NULL) 1298 resource_list_add(rl, type, *rid, start, end, count); 1299 res = resource_list_alloc(rl, bus, child, type, rid, start, end, count, 1300 flags); 1301 if (res != NULL && type == SYS_RES_IRQ) { 1302 /* 1303 * Since bus_config_intr() takes immediate effect, we cannot 1304 * configure the interrupt associated with a device when we 1305 * parse the resources but have to defer it until a driver 1306 * actually allocates the interrupt via bus_alloc_resource(). 1307 * 1308 * XXX: Should we handle the lookup failing? 1309 */ 1310 if (ACPI_SUCCESS(acpi_lookup_irq_resource(child, *rid, res, &ares))) 1311 acpi_config_intr(child, &ares); 1312 } 1313 1314 /* 1315 * If this is an allocation of the "default" range for a given 1316 * RID, fetch the exact bounds for this resource from the 1317 * resource list entry to try to allocate the range from the 1318 * system resource regions. 1319 */ 1320 if (res == NULL && isdefault) { 1321 rle = resource_list_find(rl, type, *rid); 1322 if (rle != NULL) { 1323 start = rle->start; 1324 end = rle->end; 1325 count = rle->count; 1326 } 1327 } 1328 } else 1329 res = BUS_ALLOC_RESOURCE(device_get_parent(bus), child, type, rid, 1330 start, end, count, flags); 1331 1332 /* 1333 * If the first attempt failed and this is an allocation of a 1334 * specific range, try to satisfy the request via a suballocation 1335 * from our system resource regions. 1336 */ 1337 if (res == NULL && start + count - 1 == end) 1338 res = acpi_alloc_sysres(child, type, rid, start, end, count, flags); 1339 return (res); 1340 } 1341 1342 /* 1343 * Attempt to allocate a specific resource range from the system 1344 * resource ranges. Note that we only handle memory and I/O port 1345 * system resources. 1346 */ 1347 struct resource * 1348 acpi_alloc_sysres(device_t child, int type, int *rid, u_long start, u_long end, 1349 u_long count, u_int flags) 1350 { 1351 struct rman *rm; 1352 struct resource *res; 1353 1354 switch (type) { 1355 case SYS_RES_IOPORT: 1356 rm = &acpi_rman_io; 1357 break; 1358 case SYS_RES_MEMORY: 1359 rm = &acpi_rman_mem; 1360 break; 1361 default: 1362 return (NULL); 1363 } 1364 1365 KASSERT(start + count - 1 == end, ("wildcard resource range")); 1366 res = rman_reserve_resource(rm, start, end, count, flags & ~RF_ACTIVE, 1367 child); 1368 if (res == NULL) 1369 return (NULL); 1370 1371 rman_set_rid(res, *rid); 1372 1373 /* If requested, activate the resource using the parent's method. */ 1374 if (flags & RF_ACTIVE) 1375 if (bus_activate_resource(child, type, *rid, res) != 0) { 1376 rman_release_resource(res); 1377 return (NULL); 1378 } 1379 1380 return (res); 1381 } 1382 1383 static int 1384 acpi_is_resource_managed(int type, struct resource *r) 1385 { 1386 1387 /* We only handle memory and IO resources through rman. */ 1388 switch (type) { 1389 case SYS_RES_IOPORT: 1390 return (rman_is_region_manager(r, &acpi_rman_io)); 1391 case SYS_RES_MEMORY: 1392 return (rman_is_region_manager(r, &acpi_rman_mem)); 1393 } 1394 return (0); 1395 } 1396 1397 static int 1398 acpi_adjust_resource(device_t bus, device_t child, int type, struct resource *r, 1399 u_long start, u_long end) 1400 { 1401 1402 if (acpi_is_resource_managed(type, r)) 1403 return (rman_adjust_resource(r, start, end)); 1404 return (bus_generic_adjust_resource(bus, child, type, r, start, end)); 1405 } 1406 1407 static int 1408 acpi_release_resource(device_t bus, device_t child, int type, int rid, 1409 struct resource *r) 1410 { 1411 int ret; 1412 1413 /* 1414 * If this resource belongs to one of our internal managers, 1415 * deactivate it and release it to the local pool. 1416 */ 1417 if (acpi_is_resource_managed(type, r)) { 1418 if (rman_get_flags(r) & RF_ACTIVE) { 1419 ret = bus_deactivate_resource(child, type, rid, r); 1420 if (ret != 0) 1421 return (ret); 1422 } 1423 return (rman_release_resource(r)); 1424 } 1425 1426 return (bus_generic_rl_release_resource(bus, child, type, rid, r)); 1427 } 1428 1429 static void 1430 acpi_delete_resource(device_t bus, device_t child, int type, int rid) 1431 { 1432 struct resource_list *rl; 1433 1434 rl = acpi_get_rlist(bus, child); 1435 if (resource_list_busy(rl, type, rid)) { 1436 device_printf(bus, "delete_resource: Resource still owned by child" 1437 " (type=%d, rid=%d)\n", type, rid); 1438 return; 1439 } 1440 resource_list_unreserve(rl, bus, child, type, rid); 1441 resource_list_delete(rl, type, rid); 1442 } 1443 1444 /* Allocate an IO port or memory resource, given its GAS. */ 1445 int 1446 acpi_bus_alloc_gas(device_t dev, int *type, int *rid, ACPI_GENERIC_ADDRESS *gas, 1447 struct resource **res, u_int flags) 1448 { 1449 int error, res_type; 1450 1451 error = ENOMEM; 1452 if (type == NULL || rid == NULL || gas == NULL || res == NULL) 1453 return (EINVAL); 1454 1455 /* We only support memory and IO spaces. */ 1456 switch (gas->SpaceId) { 1457 case ACPI_ADR_SPACE_SYSTEM_MEMORY: 1458 res_type = SYS_RES_MEMORY; 1459 break; 1460 case ACPI_ADR_SPACE_SYSTEM_IO: 1461 res_type = SYS_RES_IOPORT; 1462 break; 1463 default: 1464 return (EOPNOTSUPP); 1465 } 1466 1467 /* 1468 * If the register width is less than 8, assume the BIOS author means 1469 * it is a bit field and just allocate a byte. 1470 */ 1471 if (gas->BitWidth && gas->BitWidth < 8) 1472 gas->BitWidth = 8; 1473 1474 /* Validate the address after we're sure we support the space. */ 1475 if (gas->Address == 0 || gas->BitWidth == 0) 1476 return (EINVAL); 1477 1478 bus_set_resource(dev, res_type, *rid, gas->Address, 1479 gas->BitWidth / 8); 1480 *res = bus_alloc_resource_any(dev, res_type, rid, RF_ACTIVE | flags); 1481 if (*res != NULL) { 1482 *type = res_type; 1483 error = 0; 1484 } else 1485 bus_delete_resource(dev, res_type, *rid); 1486 1487 return (error); 1488 } 1489 1490 /* Probe _HID and _CID for compatible ISA PNP ids. */ 1491 static uint32_t 1492 acpi_isa_get_logicalid(device_t dev) 1493 { 1494 ACPI_DEVICE_INFO *devinfo; 1495 ACPI_HANDLE h; 1496 uint32_t pnpid; 1497 1498 ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__); 1499 1500 /* Fetch and validate the HID. */ 1501 if ((h = acpi_get_handle(dev)) == NULL || 1502 ACPI_FAILURE(AcpiGetObjectInfo(h, &devinfo))) 1503 return_VALUE (0); 1504 1505 pnpid = (devinfo->Valid & ACPI_VALID_HID) != 0 && 1506 devinfo->HardwareId.Length >= ACPI_EISAID_STRING_SIZE ? 1507 PNP_EISAID(devinfo->HardwareId.String) : 0; 1508 AcpiOsFree(devinfo); 1509 1510 return_VALUE (pnpid); 1511 } 1512 1513 static int 1514 acpi_isa_get_compatid(device_t dev, uint32_t *cids, int count) 1515 { 1516 ACPI_DEVICE_INFO *devinfo; 1517 ACPI_PNP_DEVICE_ID *ids; 1518 ACPI_HANDLE h; 1519 uint32_t *pnpid; 1520 int i, valid; 1521 1522 ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__); 1523 1524 pnpid = cids; 1525 1526 /* Fetch and validate the CID */ 1527 if ((h = acpi_get_handle(dev)) == NULL || 1528 ACPI_FAILURE(AcpiGetObjectInfo(h, &devinfo))) 1529 return_VALUE (0); 1530 1531 if ((devinfo->Valid & ACPI_VALID_CID) == 0) { 1532 AcpiOsFree(devinfo); 1533 return_VALUE (0); 1534 } 1535 1536 if (devinfo->CompatibleIdList.Count < count) 1537 count = devinfo->CompatibleIdList.Count; 1538 ids = devinfo->CompatibleIdList.Ids; 1539 for (i = 0, valid = 0; i < count; i++) 1540 if (ids[i].Length >= ACPI_EISAID_STRING_SIZE && 1541 strncmp(ids[i].String, "PNP", 3) == 0) { 1542 *pnpid++ = PNP_EISAID(ids[i].String); 1543 valid++; 1544 } 1545 AcpiOsFree(devinfo); 1546 1547 return_VALUE (valid); 1548 } 1549 1550 static char * 1551 acpi_device_id_probe(device_t bus, device_t dev, char **ids) 1552 { 1553 ACPI_HANDLE h; 1554 ACPI_OBJECT_TYPE t; 1555 int i; 1556 1557 h = acpi_get_handle(dev); 1558 if (ids == NULL || h == NULL) 1559 return (NULL); 1560 t = acpi_get_type(dev); 1561 if (t != ACPI_TYPE_DEVICE && t != ACPI_TYPE_PROCESSOR) 1562 return (NULL); 1563 1564 /* Try to match one of the array of IDs with a HID or CID. */ 1565 for (i = 0; ids[i] != NULL; i++) { 1566 if (acpi_MatchHid(h, ids[i])) 1567 return (ids[i]); 1568 } 1569 return (NULL); 1570 } 1571 1572 static ACPI_STATUS 1573 acpi_device_eval_obj(device_t bus, device_t dev, ACPI_STRING pathname, 1574 ACPI_OBJECT_LIST *parameters, ACPI_BUFFER *ret) 1575 { 1576 ACPI_HANDLE h; 1577 1578 if (dev == NULL) 1579 h = ACPI_ROOT_OBJECT; 1580 else if ((h = acpi_get_handle(dev)) == NULL) 1581 return (AE_BAD_PARAMETER); 1582 return (AcpiEvaluateObject(h, pathname, parameters, ret)); 1583 } 1584 1585 int 1586 acpi_device_pwr_for_sleep(device_t bus, device_t dev, int *dstate) 1587 { 1588 struct acpi_softc *sc; 1589 ACPI_HANDLE handle; 1590 ACPI_STATUS status; 1591 char sxd[8]; 1592 1593 handle = acpi_get_handle(dev); 1594 1595 /* 1596 * XXX If we find these devices, don't try to power them down. 1597 * The serial and IRDA ports on my T23 hang the system when 1598 * set to D3 and it appears that such legacy devices may 1599 * need special handling in their drivers. 1600 */ 1601 if (dstate == NULL || handle == NULL || 1602 acpi_MatchHid(handle, "PNP0500") || 1603 acpi_MatchHid(handle, "PNP0501") || 1604 acpi_MatchHid(handle, "PNP0502") || 1605 acpi_MatchHid(handle, "PNP0510") || 1606 acpi_MatchHid(handle, "PNP0511")) 1607 return (ENXIO); 1608 1609 /* 1610 * Override next state with the value from _SxD, if present. 1611 * Note illegal _S0D is evaluated because some systems expect this. 1612 */ 1613 sc = device_get_softc(bus); 1614 snprintf(sxd, sizeof(sxd), "_S%dD", sc->acpi_sstate); 1615 status = acpi_GetInteger(handle, sxd, dstate); 1616 if (ACPI_FAILURE(status) && status != AE_NOT_FOUND) { 1617 device_printf(dev, "failed to get %s on %s: %s\n", sxd, 1618 acpi_name(handle), AcpiFormatException(status)); 1619 return (ENXIO); 1620 } 1621 1622 return (0); 1623 } 1624 1625 /* Callback arg for our implementation of walking the namespace. */ 1626 struct acpi_device_scan_ctx { 1627 acpi_scan_cb_t user_fn; 1628 void *arg; 1629 ACPI_HANDLE parent; 1630 }; 1631 1632 static ACPI_STATUS 1633 acpi_device_scan_cb(ACPI_HANDLE h, UINT32 level, void *arg, void **retval) 1634 { 1635 struct acpi_device_scan_ctx *ctx; 1636 device_t dev, old_dev; 1637 ACPI_STATUS status; 1638 ACPI_OBJECT_TYPE type; 1639 1640 /* 1641 * Skip this device if we think we'll have trouble with it or it is 1642 * the parent where the scan began. 1643 */ 1644 ctx = (struct acpi_device_scan_ctx *)arg; 1645 if (acpi_avoid(h) || h == ctx->parent) 1646 return (AE_OK); 1647 1648 /* If this is not a valid device type (e.g., a method), skip it. */ 1649 if (ACPI_FAILURE(AcpiGetType(h, &type))) 1650 return (AE_OK); 1651 if (type != ACPI_TYPE_DEVICE && type != ACPI_TYPE_PROCESSOR && 1652 type != ACPI_TYPE_THERMAL && type != ACPI_TYPE_POWER) 1653 return (AE_OK); 1654 1655 /* 1656 * Call the user function with the current device. If it is unchanged 1657 * afterwards, return. Otherwise, we update the handle to the new dev. 1658 */ 1659 old_dev = acpi_get_device(h); 1660 dev = old_dev; 1661 status = ctx->user_fn(h, &dev, level, ctx->arg); 1662 if (ACPI_FAILURE(status) || old_dev == dev) 1663 return (status); 1664 1665 /* Remove the old child and its connection to the handle. */ 1666 if (old_dev != NULL) { 1667 device_delete_child(device_get_parent(old_dev), old_dev); 1668 AcpiDetachData(h, acpi_fake_objhandler); 1669 } 1670 1671 /* Recreate the handle association if the user created a device. */ 1672 if (dev != NULL) 1673 AcpiAttachData(h, acpi_fake_objhandler, dev); 1674 1675 return (AE_OK); 1676 } 1677 1678 static ACPI_STATUS 1679 acpi_device_scan_children(device_t bus, device_t dev, int max_depth, 1680 acpi_scan_cb_t user_fn, void *arg) 1681 { 1682 ACPI_HANDLE h; 1683 struct acpi_device_scan_ctx ctx; 1684 1685 if (acpi_disabled("children")) 1686 return (AE_OK); 1687 1688 if (dev == NULL) 1689 h = ACPI_ROOT_OBJECT; 1690 else if ((h = acpi_get_handle(dev)) == NULL) 1691 return (AE_BAD_PARAMETER); 1692 ctx.user_fn = user_fn; 1693 ctx.arg = arg; 1694 ctx.parent = h; 1695 return (AcpiWalkNamespace(ACPI_TYPE_ANY, h, max_depth, 1696 acpi_device_scan_cb, NULL, &ctx, NULL)); 1697 } 1698 1699 /* 1700 * Even though ACPI devices are not PCI, we use the PCI approach for setting 1701 * device power states since it's close enough to ACPI. 1702 */ 1703 static int 1704 acpi_set_powerstate(device_t child, int state) 1705 { 1706 ACPI_HANDLE h; 1707 ACPI_STATUS status; 1708 1709 h = acpi_get_handle(child); 1710 if (state < ACPI_STATE_D0 || state > ACPI_D_STATES_MAX) 1711 return (EINVAL); 1712 if (h == NULL) 1713 return (0); 1714 1715 /* Ignore errors if the power methods aren't present. */ 1716 status = acpi_pwr_switch_consumer(h, state); 1717 if (ACPI_SUCCESS(status)) { 1718 if (bootverbose) 1719 device_printf(child, "set ACPI power state D%d on %s\n", 1720 state, acpi_name(h)); 1721 } else if (status != AE_NOT_FOUND) 1722 device_printf(child, 1723 "failed to set ACPI power state D%d on %s: %s\n", state, 1724 acpi_name(h), AcpiFormatException(status)); 1725 1726 return (0); 1727 } 1728 1729 static int 1730 acpi_isa_pnp_probe(device_t bus, device_t child, struct isa_pnp_id *ids) 1731 { 1732 int result, cid_count, i; 1733 uint32_t lid, cids[8]; 1734 1735 ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__); 1736 1737 /* 1738 * ISA-style drivers attached to ACPI may persist and 1739 * probe manually if we return ENOENT. We never want 1740 * that to happen, so don't ever return it. 1741 */ 1742 result = ENXIO; 1743 1744 /* Scan the supplied IDs for a match */ 1745 lid = acpi_isa_get_logicalid(child); 1746 cid_count = acpi_isa_get_compatid(child, cids, 8); 1747 while (ids && ids->ip_id) { 1748 if (lid == ids->ip_id) { 1749 result = 0; 1750 goto out; 1751 } 1752 for (i = 0; i < cid_count; i++) { 1753 if (cids[i] == ids->ip_id) { 1754 result = 0; 1755 goto out; 1756 } 1757 } 1758 ids++; 1759 } 1760 1761 out: 1762 if (result == 0 && ids->ip_desc) 1763 device_set_desc(child, ids->ip_desc); 1764 1765 return_VALUE (result); 1766 } 1767 1768 #if defined(__i386__) || defined(__amd64__) 1769 /* 1770 * Look for a MCFG table. If it is present, use the settings for 1771 * domain (segment) 0 to setup PCI config space access via the memory 1772 * map. 1773 */ 1774 static void 1775 acpi_enable_pcie(void) 1776 { 1777 ACPI_TABLE_HEADER *hdr; 1778 ACPI_MCFG_ALLOCATION *alloc, *end; 1779 ACPI_STATUS status; 1780 1781 status = AcpiGetTable(ACPI_SIG_MCFG, 1, &hdr); 1782 if (ACPI_FAILURE(status)) 1783 return; 1784 1785 end = (ACPI_MCFG_ALLOCATION *)((char *)hdr + hdr->Length); 1786 alloc = (ACPI_MCFG_ALLOCATION *)((ACPI_TABLE_MCFG *)hdr + 1); 1787 while (alloc < end) { 1788 if (alloc->PciSegment == 0) { 1789 pcie_cfgregopen(alloc->Address, alloc->StartBusNumber, 1790 alloc->EndBusNumber); 1791 return; 1792 } 1793 alloc++; 1794 } 1795 } 1796 #endif 1797 1798 /* 1799 * Scan all of the ACPI namespace and attach child devices. 1800 * 1801 * We should only expect to find devices in the \_PR, \_TZ, \_SI, and 1802 * \_SB scopes, and \_PR and \_TZ became obsolete in the ACPI 2.0 spec. 1803 * However, in violation of the spec, some systems place their PCI link 1804 * devices in \, so we have to walk the whole namespace. We check the 1805 * type of namespace nodes, so this should be ok. 1806 */ 1807 static void 1808 acpi_probe_children(device_t bus) 1809 { 1810 1811 ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__); 1812 1813 /* 1814 * Scan the namespace and insert placeholders for all the devices that 1815 * we find. We also probe/attach any early devices. 1816 * 1817 * Note that we use AcpiWalkNamespace rather than AcpiGetDevices because 1818 * we want to create nodes for all devices, not just those that are 1819 * currently present. (This assumes that we don't want to create/remove 1820 * devices as they appear, which might be smarter.) 1821 */ 1822 ACPI_DEBUG_PRINT((ACPI_DB_OBJECTS, "namespace scan\n")); 1823 AcpiWalkNamespace(ACPI_TYPE_ANY, ACPI_ROOT_OBJECT, 100, acpi_probe_child, 1824 NULL, bus, NULL); 1825 1826 /* Pre-allocate resources for our rman from any sysresource devices. */ 1827 acpi_sysres_alloc(bus); 1828 1829 /* Reserve resources already allocated to children. */ 1830 acpi_reserve_resources(bus); 1831 1832 /* Create any static children by calling device identify methods. */ 1833 ACPI_DEBUG_PRINT((ACPI_DB_OBJECTS, "device identify routines\n")); 1834 bus_generic_probe(bus); 1835 1836 /* Probe/attach all children, created statically and from the namespace. */ 1837 ACPI_DEBUG_PRINT((ACPI_DB_OBJECTS, "acpi bus_generic_attach\n")); 1838 bus_generic_attach(bus); 1839 1840 /* Attach wake sysctls. */ 1841 acpi_wake_sysctl_walk(bus); 1842 1843 ACPI_DEBUG_PRINT((ACPI_DB_OBJECTS, "done attaching children\n")); 1844 return_VOID; 1845 } 1846 1847 /* 1848 * Determine the probe order for a given device. 1849 */ 1850 static void 1851 acpi_probe_order(ACPI_HANDLE handle, int *order) 1852 { 1853 ACPI_OBJECT_TYPE type; 1854 1855 /* 1856 * 0. CPUs 1857 * 1. I/O port and memory system resource holders 1858 * 2. Clocks and timers (to handle early accesses) 1859 * 3. Embedded controllers (to handle early accesses) 1860 * 4. PCI Link Devices 1861 */ 1862 AcpiGetType(handle, &type); 1863 if (type == ACPI_TYPE_PROCESSOR) 1864 *order = 0; 1865 else if (acpi_MatchHid(handle, "PNP0C01") || 1866 acpi_MatchHid(handle, "PNP0C02")) 1867 *order = 1; 1868 else if (acpi_MatchHid(handle, "PNP0100") || 1869 acpi_MatchHid(handle, "PNP0103") || 1870 acpi_MatchHid(handle, "PNP0B00")) 1871 *order = 2; 1872 else if (acpi_MatchHid(handle, "PNP0C09")) 1873 *order = 3; 1874 else if (acpi_MatchHid(handle, "PNP0C0F")) 1875 *order = 4; 1876 } 1877 1878 /* 1879 * Evaluate a child device and determine whether we might attach a device to 1880 * it. 1881 */ 1882 static ACPI_STATUS 1883 acpi_probe_child(ACPI_HANDLE handle, UINT32 level, void *context, void **status) 1884 { 1885 struct acpi_prw_data prw; 1886 ACPI_OBJECT_TYPE type; 1887 ACPI_HANDLE h; 1888 device_t bus, child; 1889 char *handle_str; 1890 int order; 1891 1892 ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__); 1893 1894 if (acpi_disabled("children")) 1895 return_ACPI_STATUS (AE_OK); 1896 1897 /* Skip this device if we think we'll have trouble with it. */ 1898 if (acpi_avoid(handle)) 1899 return_ACPI_STATUS (AE_OK); 1900 1901 bus = (device_t)context; 1902 if (ACPI_SUCCESS(AcpiGetType(handle, &type))) { 1903 handle_str = acpi_name(handle); 1904 switch (type) { 1905 case ACPI_TYPE_DEVICE: 1906 /* 1907 * Since we scan from \, be sure to skip system scope objects. 1908 * \_SB_ and \_TZ_ are defined in ACPICA as devices to work around 1909 * BIOS bugs. For example, \_SB_ is to allow \_SB_._INI to be run 1910 * during the intialization and \_TZ_ is to support Notify() on it. 1911 */ 1912 if (strcmp(handle_str, "\\_SB_") == 0 || 1913 strcmp(handle_str, "\\_TZ_") == 0) 1914 break; 1915 if (acpi_parse_prw(handle, &prw) == 0) 1916 AcpiSetupGpeForWake(handle, prw.gpe_handle, prw.gpe_bit); 1917 1918 /* 1919 * Ignore devices that do not have a _HID or _CID. They should 1920 * be discovered by other buses (e.g. the PCI bus driver). 1921 */ 1922 if (!acpi_has_hid(handle)) 1923 break; 1924 /* FALLTHROUGH */ 1925 case ACPI_TYPE_PROCESSOR: 1926 case ACPI_TYPE_THERMAL: 1927 case ACPI_TYPE_POWER: 1928 /* 1929 * Create a placeholder device for this node. Sort the 1930 * placeholder so that the probe/attach passes will run 1931 * breadth-first. Orders less than ACPI_DEV_BASE_ORDER 1932 * are reserved for special objects (i.e., system 1933 * resources). 1934 */ 1935 ACPI_DEBUG_PRINT((ACPI_DB_OBJECTS, "scanning '%s'\n", handle_str)); 1936 order = level * 10 + ACPI_DEV_BASE_ORDER; 1937 acpi_probe_order(handle, &order); 1938 child = BUS_ADD_CHILD(bus, order, NULL, -1); 1939 if (child == NULL) 1940 break; 1941 1942 /* Associate the handle with the device_t and vice versa. */ 1943 acpi_set_handle(child, handle); 1944 AcpiAttachData(handle, acpi_fake_objhandler, child); 1945 1946 /* 1947 * Check that the device is present. If it's not present, 1948 * leave it disabled (so that we have a device_t attached to 1949 * the handle, but we don't probe it). 1950 * 1951 * XXX PCI link devices sometimes report "present" but not 1952 * "functional" (i.e. if disabled). Go ahead and probe them 1953 * anyway since we may enable them later. 1954 */ 1955 if (type == ACPI_TYPE_DEVICE && !acpi_DeviceIsPresent(child)) { 1956 /* Never disable PCI link devices. */ 1957 if (acpi_MatchHid(handle, "PNP0C0F")) 1958 break; 1959 /* 1960 * Docking stations should remain enabled since the system 1961 * may be undocked at boot. 1962 */ 1963 if (ACPI_SUCCESS(AcpiGetHandle(handle, "_DCK", &h))) 1964 break; 1965 1966 device_disable(child); 1967 break; 1968 } 1969 1970 /* 1971 * Get the device's resource settings and attach them. 1972 * Note that if the device has _PRS but no _CRS, we need 1973 * to decide when it's appropriate to try to configure the 1974 * device. Ignore the return value here; it's OK for the 1975 * device not to have any resources. 1976 */ 1977 acpi_parse_resources(child, handle, &acpi_res_parse_set, NULL); 1978 break; 1979 } 1980 } 1981 1982 return_ACPI_STATUS (AE_OK); 1983 } 1984 1985 /* 1986 * AcpiAttachData() requires an object handler but never uses it. This is a 1987 * placeholder object handler so we can store a device_t in an ACPI_HANDLE. 1988 */ 1989 void 1990 acpi_fake_objhandler(ACPI_HANDLE h, void *data) 1991 { 1992 } 1993 1994 static void 1995 acpi_shutdown_final(void *arg, int howto) 1996 { 1997 struct acpi_softc *sc = (struct acpi_softc *)arg; 1998 register_t intr; 1999 ACPI_STATUS status; 2000 2001 /* 2002 * XXX Shutdown code should only run on the BSP (cpuid 0). 2003 * Some chipsets do not power off the system correctly if called from 2004 * an AP. 2005 */ 2006 if ((howto & RB_POWEROFF) != 0) { 2007 status = AcpiEnterSleepStatePrep(ACPI_STATE_S5); 2008 if (ACPI_FAILURE(status)) { 2009 device_printf(sc->acpi_dev, "AcpiEnterSleepStatePrep failed - %s\n", 2010 AcpiFormatException(status)); 2011 return; 2012 } 2013 device_printf(sc->acpi_dev, "Powering system off\n"); 2014 intr = intr_disable(); 2015 status = AcpiEnterSleepState(ACPI_STATE_S5); 2016 if (ACPI_FAILURE(status)) { 2017 intr_restore(intr); 2018 device_printf(sc->acpi_dev, "power-off failed - %s\n", 2019 AcpiFormatException(status)); 2020 } else { 2021 DELAY(1000000); 2022 intr_restore(intr); 2023 device_printf(sc->acpi_dev, "power-off failed - timeout\n"); 2024 } 2025 } else if ((howto & RB_HALT) == 0 && sc->acpi_handle_reboot) { 2026 /* Reboot using the reset register. */ 2027 status = AcpiReset(); 2028 if (ACPI_SUCCESS(status)) { 2029 DELAY(1000000); 2030 device_printf(sc->acpi_dev, "reset failed - timeout\n"); 2031 } else if (status != AE_NOT_EXIST) 2032 device_printf(sc->acpi_dev, "reset failed - %s\n", 2033 AcpiFormatException(status)); 2034 } else if (sc->acpi_do_disable && panicstr == NULL) { 2035 /* 2036 * Only disable ACPI if the user requested. On some systems, writing 2037 * the disable value to SMI_CMD hangs the system. 2038 */ 2039 device_printf(sc->acpi_dev, "Shutting down\n"); 2040 AcpiTerminate(); 2041 } 2042 } 2043 2044 static void 2045 acpi_enable_fixed_events(struct acpi_softc *sc) 2046 { 2047 static int first_time = 1; 2048 2049 /* Enable and clear fixed events and install handlers. */ 2050 if ((AcpiGbl_FADT.Flags & ACPI_FADT_POWER_BUTTON) == 0) { 2051 AcpiClearEvent(ACPI_EVENT_POWER_BUTTON); 2052 AcpiInstallFixedEventHandler(ACPI_EVENT_POWER_BUTTON, 2053 acpi_event_power_button_sleep, sc); 2054 if (first_time) 2055 device_printf(sc->acpi_dev, "Power Button (fixed)\n"); 2056 } 2057 if ((AcpiGbl_FADT.Flags & ACPI_FADT_SLEEP_BUTTON) == 0) { 2058 AcpiClearEvent(ACPI_EVENT_SLEEP_BUTTON); 2059 AcpiInstallFixedEventHandler(ACPI_EVENT_SLEEP_BUTTON, 2060 acpi_event_sleep_button_sleep, sc); 2061 if (first_time) 2062 device_printf(sc->acpi_dev, "Sleep Button (fixed)\n"); 2063 } 2064 2065 first_time = 0; 2066 } 2067 2068 /* 2069 * Returns true if the device is actually present and should 2070 * be attached to. This requires the present, enabled, UI-visible 2071 * and diagnostics-passed bits to be set. 2072 */ 2073 BOOLEAN 2074 acpi_DeviceIsPresent(device_t dev) 2075 { 2076 ACPI_DEVICE_INFO *devinfo; 2077 ACPI_HANDLE h; 2078 BOOLEAN present; 2079 2080 if ((h = acpi_get_handle(dev)) == NULL || 2081 ACPI_FAILURE(AcpiGetObjectInfo(h, &devinfo))) 2082 return (FALSE); 2083 2084 /* If no _STA method, must be present */ 2085 present = (devinfo->Valid & ACPI_VALID_STA) == 0 || 2086 ACPI_DEVICE_PRESENT(devinfo->CurrentStatus) ? TRUE : FALSE; 2087 2088 AcpiOsFree(devinfo); 2089 return (present); 2090 } 2091 2092 /* 2093 * Returns true if the battery is actually present and inserted. 2094 */ 2095 BOOLEAN 2096 acpi_BatteryIsPresent(device_t dev) 2097 { 2098 ACPI_DEVICE_INFO *devinfo; 2099 ACPI_HANDLE h; 2100 BOOLEAN present; 2101 2102 if ((h = acpi_get_handle(dev)) == NULL || 2103 ACPI_FAILURE(AcpiGetObjectInfo(h, &devinfo))) 2104 return (FALSE); 2105 2106 /* If no _STA method, must be present */ 2107 present = (devinfo->Valid & ACPI_VALID_STA) == 0 || 2108 ACPI_BATTERY_PRESENT(devinfo->CurrentStatus) ? TRUE : FALSE; 2109 2110 AcpiOsFree(devinfo); 2111 return (present); 2112 } 2113 2114 /* 2115 * Returns true if a device has at least one valid device ID. 2116 */ 2117 static BOOLEAN 2118 acpi_has_hid(ACPI_HANDLE h) 2119 { 2120 ACPI_DEVICE_INFO *devinfo; 2121 BOOLEAN ret; 2122 2123 if (h == NULL || 2124 ACPI_FAILURE(AcpiGetObjectInfo(h, &devinfo))) 2125 return (FALSE); 2126 2127 ret = FALSE; 2128 if ((devinfo->Valid & ACPI_VALID_HID) != 0) 2129 ret = TRUE; 2130 else if ((devinfo->Valid & ACPI_VALID_CID) != 0) 2131 if (devinfo->CompatibleIdList.Count > 0) 2132 ret = TRUE; 2133 2134 AcpiOsFree(devinfo); 2135 return (ret); 2136 } 2137 2138 /* 2139 * Match a HID string against a handle 2140 */ 2141 BOOLEAN 2142 acpi_MatchHid(ACPI_HANDLE h, const char *hid) 2143 { 2144 ACPI_DEVICE_INFO *devinfo; 2145 BOOLEAN ret; 2146 int i; 2147 2148 if (hid == NULL || h == NULL || 2149 ACPI_FAILURE(AcpiGetObjectInfo(h, &devinfo))) 2150 return (FALSE); 2151 2152 ret = FALSE; 2153 if ((devinfo->Valid & ACPI_VALID_HID) != 0 && 2154 strcmp(hid, devinfo->HardwareId.String) == 0) 2155 ret = TRUE; 2156 else if ((devinfo->Valid & ACPI_VALID_CID) != 0) 2157 for (i = 0; i < devinfo->CompatibleIdList.Count; i++) { 2158 if (strcmp(hid, devinfo->CompatibleIdList.Ids[i].String) == 0) { 2159 ret = TRUE; 2160 break; 2161 } 2162 } 2163 2164 AcpiOsFree(devinfo); 2165 return (ret); 2166 } 2167 2168 /* 2169 * Return the handle of a named object within our scope, ie. that of (parent) 2170 * or one if its parents. 2171 */ 2172 ACPI_STATUS 2173 acpi_GetHandleInScope(ACPI_HANDLE parent, char *path, ACPI_HANDLE *result) 2174 { 2175 ACPI_HANDLE r; 2176 ACPI_STATUS status; 2177 2178 /* Walk back up the tree to the root */ 2179 for (;;) { 2180 status = AcpiGetHandle(parent, path, &r); 2181 if (ACPI_SUCCESS(status)) { 2182 *result = r; 2183 return (AE_OK); 2184 } 2185 /* XXX Return error here? */ 2186 if (status != AE_NOT_FOUND) 2187 return (AE_OK); 2188 if (ACPI_FAILURE(AcpiGetParent(parent, &r))) 2189 return (AE_NOT_FOUND); 2190 parent = r; 2191 } 2192 } 2193 2194 /* 2195 * Allocate a buffer with a preset data size. 2196 */ 2197 ACPI_BUFFER * 2198 acpi_AllocBuffer(int size) 2199 { 2200 ACPI_BUFFER *buf; 2201 2202 if ((buf = malloc(size + sizeof(*buf), M_ACPIDEV, M_NOWAIT)) == NULL) 2203 return (NULL); 2204 buf->Length = size; 2205 buf->Pointer = (void *)(buf + 1); 2206 return (buf); 2207 } 2208 2209 ACPI_STATUS 2210 acpi_SetInteger(ACPI_HANDLE handle, char *path, UINT32 number) 2211 { 2212 ACPI_OBJECT arg1; 2213 ACPI_OBJECT_LIST args; 2214 2215 arg1.Type = ACPI_TYPE_INTEGER; 2216 arg1.Integer.Value = number; 2217 args.Count = 1; 2218 args.Pointer = &arg1; 2219 2220 return (AcpiEvaluateObject(handle, path, &args, NULL)); 2221 } 2222 2223 /* 2224 * Evaluate a path that should return an integer. 2225 */ 2226 ACPI_STATUS 2227 acpi_GetInteger(ACPI_HANDLE handle, char *path, UINT32 *number) 2228 { 2229 ACPI_STATUS status; 2230 ACPI_BUFFER buf; 2231 ACPI_OBJECT param; 2232 2233 if (handle == NULL) 2234 handle = ACPI_ROOT_OBJECT; 2235 2236 /* 2237 * Assume that what we've been pointed at is an Integer object, or 2238 * a method that will return an Integer. 2239 */ 2240 buf.Pointer = ¶m; 2241 buf.Length = sizeof(param); 2242 status = AcpiEvaluateObject(handle, path, NULL, &buf); 2243 if (ACPI_SUCCESS(status)) { 2244 if (param.Type == ACPI_TYPE_INTEGER) 2245 *number = param.Integer.Value; 2246 else 2247 status = AE_TYPE; 2248 } 2249 2250 /* 2251 * In some applications, a method that's expected to return an Integer 2252 * may instead return a Buffer (probably to simplify some internal 2253 * arithmetic). We'll try to fetch whatever it is, and if it's a Buffer, 2254 * convert it into an Integer as best we can. 2255 * 2256 * This is a hack. 2257 */ 2258 if (status == AE_BUFFER_OVERFLOW) { 2259 if ((buf.Pointer = AcpiOsAllocate(buf.Length)) == NULL) { 2260 status = AE_NO_MEMORY; 2261 } else { 2262 status = AcpiEvaluateObject(handle, path, NULL, &buf); 2263 if (ACPI_SUCCESS(status)) 2264 status = acpi_ConvertBufferToInteger(&buf, number); 2265 AcpiOsFree(buf.Pointer); 2266 } 2267 } 2268 return (status); 2269 } 2270 2271 ACPI_STATUS 2272 acpi_ConvertBufferToInteger(ACPI_BUFFER *bufp, UINT32 *number) 2273 { 2274 ACPI_OBJECT *p; 2275 UINT8 *val; 2276 int i; 2277 2278 p = (ACPI_OBJECT *)bufp->Pointer; 2279 if (p->Type == ACPI_TYPE_INTEGER) { 2280 *number = p->Integer.Value; 2281 return (AE_OK); 2282 } 2283 if (p->Type != ACPI_TYPE_BUFFER) 2284 return (AE_TYPE); 2285 if (p->Buffer.Length > sizeof(int)) 2286 return (AE_BAD_DATA); 2287 2288 *number = 0; 2289 val = p->Buffer.Pointer; 2290 for (i = 0; i < p->Buffer.Length; i++) 2291 *number += val[i] << (i * 8); 2292 return (AE_OK); 2293 } 2294 2295 /* 2296 * Iterate over the elements of an a package object, calling the supplied 2297 * function for each element. 2298 * 2299 * XXX possible enhancement might be to abort traversal on error. 2300 */ 2301 ACPI_STATUS 2302 acpi_ForeachPackageObject(ACPI_OBJECT *pkg, 2303 void (*func)(ACPI_OBJECT *comp, void *arg), void *arg) 2304 { 2305 ACPI_OBJECT *comp; 2306 int i; 2307 2308 if (pkg == NULL || pkg->Type != ACPI_TYPE_PACKAGE) 2309 return (AE_BAD_PARAMETER); 2310 2311 /* Iterate over components */ 2312 i = 0; 2313 comp = pkg->Package.Elements; 2314 for (; i < pkg->Package.Count; i++, comp++) 2315 func(comp, arg); 2316 2317 return (AE_OK); 2318 } 2319 2320 /* 2321 * Find the (index)th resource object in a set. 2322 */ 2323 ACPI_STATUS 2324 acpi_FindIndexedResource(ACPI_BUFFER *buf, int index, ACPI_RESOURCE **resp) 2325 { 2326 ACPI_RESOURCE *rp; 2327 int i; 2328 2329 rp = (ACPI_RESOURCE *)buf->Pointer; 2330 i = index; 2331 while (i-- > 0) { 2332 /* Range check */ 2333 if (rp > (ACPI_RESOURCE *)((u_int8_t *)buf->Pointer + buf->Length)) 2334 return (AE_BAD_PARAMETER); 2335 2336 /* Check for terminator */ 2337 if (rp->Type == ACPI_RESOURCE_TYPE_END_TAG || rp->Length == 0) 2338 return (AE_NOT_FOUND); 2339 rp = ACPI_NEXT_RESOURCE(rp); 2340 } 2341 if (resp != NULL) 2342 *resp = rp; 2343 2344 return (AE_OK); 2345 } 2346 2347 /* 2348 * Append an ACPI_RESOURCE to an ACPI_BUFFER. 2349 * 2350 * Given a pointer to an ACPI_RESOURCE structure, expand the ACPI_BUFFER 2351 * provided to contain it. If the ACPI_BUFFER is empty, allocate a sensible 2352 * backing block. If the ACPI_RESOURCE is NULL, return an empty set of 2353 * resources. 2354 */ 2355 #define ACPI_INITIAL_RESOURCE_BUFFER_SIZE 512 2356 2357 ACPI_STATUS 2358 acpi_AppendBufferResource(ACPI_BUFFER *buf, ACPI_RESOURCE *res) 2359 { 2360 ACPI_RESOURCE *rp; 2361 void *newp; 2362 2363 /* Initialise the buffer if necessary. */ 2364 if (buf->Pointer == NULL) { 2365 buf->Length = ACPI_INITIAL_RESOURCE_BUFFER_SIZE; 2366 if ((buf->Pointer = AcpiOsAllocate(buf->Length)) == NULL) 2367 return (AE_NO_MEMORY); 2368 rp = (ACPI_RESOURCE *)buf->Pointer; 2369 rp->Type = ACPI_RESOURCE_TYPE_END_TAG; 2370 rp->Length = ACPI_RS_SIZE_MIN; 2371 } 2372 if (res == NULL) 2373 return (AE_OK); 2374 2375 /* 2376 * Scan the current buffer looking for the terminator. 2377 * This will either find the terminator or hit the end 2378 * of the buffer and return an error. 2379 */ 2380 rp = (ACPI_RESOURCE *)buf->Pointer; 2381 for (;;) { 2382 /* Range check, don't go outside the buffer */ 2383 if (rp >= (ACPI_RESOURCE *)((u_int8_t *)buf->Pointer + buf->Length)) 2384 return (AE_BAD_PARAMETER); 2385 if (rp->Type == ACPI_RESOURCE_TYPE_END_TAG || rp->Length == 0) 2386 break; 2387 rp = ACPI_NEXT_RESOURCE(rp); 2388 } 2389 2390 /* 2391 * Check the size of the buffer and expand if required. 2392 * 2393 * Required size is: 2394 * size of existing resources before terminator + 2395 * size of new resource and header + 2396 * size of terminator. 2397 * 2398 * Note that this loop should really only run once, unless 2399 * for some reason we are stuffing a *really* huge resource. 2400 */ 2401 while ((((u_int8_t *)rp - (u_int8_t *)buf->Pointer) + 2402 res->Length + ACPI_RS_SIZE_NO_DATA + 2403 ACPI_RS_SIZE_MIN) >= buf->Length) { 2404 if ((newp = AcpiOsAllocate(buf->Length * 2)) == NULL) 2405 return (AE_NO_MEMORY); 2406 bcopy(buf->Pointer, newp, buf->Length); 2407 rp = (ACPI_RESOURCE *)((u_int8_t *)newp + 2408 ((u_int8_t *)rp - (u_int8_t *)buf->Pointer)); 2409 AcpiOsFree(buf->Pointer); 2410 buf->Pointer = newp; 2411 buf->Length += buf->Length; 2412 } 2413 2414 /* Insert the new resource. */ 2415 bcopy(res, rp, res->Length + ACPI_RS_SIZE_NO_DATA); 2416 2417 /* And add the terminator. */ 2418 rp = ACPI_NEXT_RESOURCE(rp); 2419 rp->Type = ACPI_RESOURCE_TYPE_END_TAG; 2420 rp->Length = ACPI_RS_SIZE_MIN; 2421 2422 return (AE_OK); 2423 } 2424 2425 /* 2426 * Set interrupt model. 2427 */ 2428 ACPI_STATUS 2429 acpi_SetIntrModel(int model) 2430 { 2431 2432 return (acpi_SetInteger(ACPI_ROOT_OBJECT, "_PIC", model)); 2433 } 2434 2435 /* 2436 * Walk subtables of a table and call a callback routine for each 2437 * subtable. The caller should provide the first subtable and a 2438 * pointer to the end of the table. This can be used to walk tables 2439 * such as MADT and SRAT that use subtable entries. 2440 */ 2441 void 2442 acpi_walk_subtables(void *first, void *end, acpi_subtable_handler *handler, 2443 void *arg) 2444 { 2445 ACPI_SUBTABLE_HEADER *entry; 2446 2447 for (entry = first; (void *)entry < end; ) { 2448 /* Avoid an infinite loop if we hit a bogus entry. */ 2449 if (entry->Length < sizeof(ACPI_SUBTABLE_HEADER)) 2450 return; 2451 2452 handler(entry, arg); 2453 entry = ACPI_ADD_PTR(ACPI_SUBTABLE_HEADER, entry, entry->Length); 2454 } 2455 } 2456 2457 /* 2458 * DEPRECATED. This interface has serious deficiencies and will be 2459 * removed. 2460 * 2461 * Immediately enter the sleep state. In the old model, acpiconf(8) ran 2462 * rc.suspend and rc.resume so we don't have to notify devd(8) to do this. 2463 */ 2464 ACPI_STATUS 2465 acpi_SetSleepState(struct acpi_softc *sc, int state) 2466 { 2467 static int once; 2468 2469 if (!once) { 2470 device_printf(sc->acpi_dev, 2471 "warning: acpi_SetSleepState() deprecated, need to update your software\n"); 2472 once = 1; 2473 } 2474 return (acpi_EnterSleepState(sc, state)); 2475 } 2476 2477 #if defined(__amd64__) || defined(__i386__) 2478 static void 2479 acpi_sleep_force_task(void *context) 2480 { 2481 struct acpi_softc *sc = (struct acpi_softc *)context; 2482 2483 if (ACPI_FAILURE(acpi_EnterSleepState(sc, sc->acpi_next_sstate))) 2484 device_printf(sc->acpi_dev, "force sleep state S%d failed\n", 2485 sc->acpi_next_sstate); 2486 } 2487 2488 static void 2489 acpi_sleep_force(void *arg) 2490 { 2491 struct acpi_softc *sc = (struct acpi_softc *)arg; 2492 2493 device_printf(sc->acpi_dev, 2494 "suspend request timed out, forcing sleep now\n"); 2495 /* 2496 * XXX Suspending from callout causes freezes in DEVICE_SUSPEND(). 2497 * Suspend from acpi_task thread instead. 2498 */ 2499 if (ACPI_FAILURE(AcpiOsExecute(OSL_NOTIFY_HANDLER, 2500 acpi_sleep_force_task, sc))) 2501 device_printf(sc->acpi_dev, "AcpiOsExecute() for sleeping failed\n"); 2502 } 2503 #endif 2504 2505 /* 2506 * Request that the system enter the given suspend state. All /dev/apm 2507 * devices and devd(8) will be notified. Userland then has a chance to 2508 * save state and acknowledge the request. The system sleeps once all 2509 * acks are in. 2510 */ 2511 int 2512 acpi_ReqSleepState(struct acpi_softc *sc, int state) 2513 { 2514 #if defined(__amd64__) || defined(__i386__) 2515 struct apm_clone_data *clone; 2516 ACPI_STATUS status; 2517 2518 if (state < ACPI_STATE_S1 || state > ACPI_S_STATES_MAX) 2519 return (EINVAL); 2520 if (!acpi_sleep_states[state]) 2521 return (EOPNOTSUPP); 2522 2523 /* If a suspend request is already in progress, just return. */ 2524 if (sc->acpi_next_sstate != 0) { 2525 return (0); 2526 } 2527 2528 /* Wait until sleep is enabled. */ 2529 while (sc->acpi_sleep_disabled) { 2530 AcpiOsSleep(1000); 2531 } 2532 2533 ACPI_LOCK(acpi); 2534 2535 sc->acpi_next_sstate = state; 2536 2537 /* S5 (soft-off) should be entered directly with no waiting. */ 2538 if (state == ACPI_STATE_S5) { 2539 ACPI_UNLOCK(acpi); 2540 status = acpi_EnterSleepState(sc, state); 2541 return (ACPI_SUCCESS(status) ? 0 : ENXIO); 2542 } 2543 2544 /* Record the pending state and notify all apm devices. */ 2545 STAILQ_FOREACH(clone, &sc->apm_cdevs, entries) { 2546 clone->notify_status = APM_EV_NONE; 2547 if ((clone->flags & ACPI_EVF_DEVD) == 0) { 2548 selwakeuppri(&clone->sel_read, PZERO); 2549 KNOTE_LOCKED(&clone->sel_read.si_note, 0); 2550 } 2551 } 2552 2553 /* If devd(8) is not running, immediately enter the sleep state. */ 2554 if (!devctl_process_running()) { 2555 ACPI_UNLOCK(acpi); 2556 status = acpi_EnterSleepState(sc, state); 2557 return (ACPI_SUCCESS(status) ? 0 : ENXIO); 2558 } 2559 2560 /* 2561 * Set a timeout to fire if userland doesn't ack the suspend request 2562 * in time. This way we still eventually go to sleep if we were 2563 * overheating or running low on battery, even if userland is hung. 2564 * We cancel this timeout once all userland acks are in or the 2565 * suspend request is aborted. 2566 */ 2567 callout_reset(&sc->susp_force_to, 10 * hz, acpi_sleep_force, sc); 2568 ACPI_UNLOCK(acpi); 2569 2570 /* Now notify devd(8) also. */ 2571 acpi_UserNotify("Suspend", ACPI_ROOT_OBJECT, state); 2572 2573 return (0); 2574 #else 2575 /* This platform does not support acpi suspend/resume. */ 2576 return (EOPNOTSUPP); 2577 #endif 2578 } 2579 2580 /* 2581 * Acknowledge (or reject) a pending sleep state. The caller has 2582 * prepared for suspend and is now ready for it to proceed. If the 2583 * error argument is non-zero, it indicates suspend should be cancelled 2584 * and gives an errno value describing why. Once all votes are in, 2585 * we suspend the system. 2586 */ 2587 int 2588 acpi_AckSleepState(struct apm_clone_data *clone, int error) 2589 { 2590 #if defined(__amd64__) || defined(__i386__) 2591 struct acpi_softc *sc; 2592 int ret, sleeping; 2593 2594 /* If no pending sleep state, return an error. */ 2595 ACPI_LOCK(acpi); 2596 sc = clone->acpi_sc; 2597 if (sc->acpi_next_sstate == 0) { 2598 ACPI_UNLOCK(acpi); 2599 return (ENXIO); 2600 } 2601 2602 /* Caller wants to abort suspend process. */ 2603 if (error) { 2604 sc->acpi_next_sstate = 0; 2605 callout_stop(&sc->susp_force_to); 2606 device_printf(sc->acpi_dev, 2607 "listener on %s cancelled the pending suspend\n", 2608 devtoname(clone->cdev)); 2609 ACPI_UNLOCK(acpi); 2610 return (0); 2611 } 2612 2613 /* 2614 * Mark this device as acking the suspend request. Then, walk through 2615 * all devices, seeing if they agree yet. We only count devices that 2616 * are writable since read-only devices couldn't ack the request. 2617 */ 2618 sleeping = TRUE; 2619 clone->notify_status = APM_EV_ACKED; 2620 STAILQ_FOREACH(clone, &sc->apm_cdevs, entries) { 2621 if ((clone->flags & ACPI_EVF_WRITE) != 0 && 2622 clone->notify_status != APM_EV_ACKED) { 2623 sleeping = FALSE; 2624 break; 2625 } 2626 } 2627 2628 /* If all devices have voted "yes", we will suspend now. */ 2629 if (sleeping) 2630 callout_stop(&sc->susp_force_to); 2631 ACPI_UNLOCK(acpi); 2632 ret = 0; 2633 if (sleeping) { 2634 if (ACPI_FAILURE(acpi_EnterSleepState(sc, sc->acpi_next_sstate))) 2635 ret = ENODEV; 2636 } 2637 return (ret); 2638 #else 2639 /* This platform does not support acpi suspend/resume. */ 2640 return (EOPNOTSUPP); 2641 #endif 2642 } 2643 2644 static void 2645 acpi_sleep_enable(void *arg) 2646 { 2647 struct acpi_softc *sc = (struct acpi_softc *)arg; 2648 2649 ACPI_LOCK_ASSERT(acpi); 2650 2651 /* Reschedule if the system is not fully up and running. */ 2652 if (!AcpiGbl_SystemAwakeAndRunning) { 2653 callout_schedule(&acpi_sleep_timer, hz * ACPI_MINIMUM_AWAKETIME); 2654 return; 2655 } 2656 2657 sc->acpi_sleep_disabled = FALSE; 2658 } 2659 2660 static ACPI_STATUS 2661 acpi_sleep_disable(struct acpi_softc *sc) 2662 { 2663 ACPI_STATUS status; 2664 2665 /* Fail if the system is not fully up and running. */ 2666 if (!AcpiGbl_SystemAwakeAndRunning) 2667 return (AE_ERROR); 2668 2669 ACPI_LOCK(acpi); 2670 status = sc->acpi_sleep_disabled ? AE_ERROR : AE_OK; 2671 sc->acpi_sleep_disabled = TRUE; 2672 ACPI_UNLOCK(acpi); 2673 2674 return (status); 2675 } 2676 2677 enum acpi_sleep_state { 2678 ACPI_SS_NONE, 2679 ACPI_SS_GPE_SET, 2680 ACPI_SS_DEV_SUSPEND, 2681 ACPI_SS_SLP_PREP, 2682 ACPI_SS_SLEPT, 2683 }; 2684 2685 /* 2686 * Enter the desired system sleep state. 2687 * 2688 * Currently we support S1-S5 but S4 is only S4BIOS 2689 */ 2690 static ACPI_STATUS 2691 acpi_EnterSleepState(struct acpi_softc *sc, int state) 2692 { 2693 register_t intr; 2694 ACPI_STATUS status; 2695 ACPI_EVENT_STATUS power_button_status; 2696 enum acpi_sleep_state slp_state; 2697 int sleep_result; 2698 2699 ACPI_FUNCTION_TRACE_U32((char *)(uintptr_t)__func__, state); 2700 2701 if (state < ACPI_STATE_S1 || state > ACPI_S_STATES_MAX) 2702 return_ACPI_STATUS (AE_BAD_PARAMETER); 2703 if (!acpi_sleep_states[state]) { 2704 device_printf(sc->acpi_dev, "Sleep state S%d not supported by BIOS\n", 2705 state); 2706 return (AE_SUPPORT); 2707 } 2708 2709 /* Re-entry once we're suspending is not allowed. */ 2710 status = acpi_sleep_disable(sc); 2711 if (ACPI_FAILURE(status)) { 2712 device_printf(sc->acpi_dev, 2713 "suspend request ignored (not ready yet)\n"); 2714 return (status); 2715 } 2716 2717 if (state == ACPI_STATE_S5) { 2718 /* 2719 * Shut down cleanly and power off. This will call us back through the 2720 * shutdown handlers. 2721 */ 2722 shutdown_nice(RB_POWEROFF); 2723 return_ACPI_STATUS (AE_OK); 2724 } 2725 2726 EVENTHANDLER_INVOKE(power_suspend); 2727 2728 if (smp_started) { 2729 thread_lock(curthread); 2730 sched_bind(curthread, 0); 2731 thread_unlock(curthread); 2732 } 2733 2734 /* 2735 * Be sure to hold Giant across DEVICE_SUSPEND/RESUME since non-MPSAFE 2736 * drivers need this. 2737 */ 2738 mtx_lock(&Giant); 2739 2740 slp_state = ACPI_SS_NONE; 2741 2742 sc->acpi_sstate = state; 2743 2744 /* Enable any GPEs as appropriate and requested by the user. */ 2745 acpi_wake_prep_walk(state); 2746 slp_state = ACPI_SS_GPE_SET; 2747 2748 /* 2749 * Inform all devices that we are going to sleep. If at least one 2750 * device fails, DEVICE_SUSPEND() automatically resumes the tree. 2751 * 2752 * XXX Note that a better two-pass approach with a 'veto' pass 2753 * followed by a "real thing" pass would be better, but the current 2754 * bus interface does not provide for this. 2755 */ 2756 if (DEVICE_SUSPEND(root_bus) != 0) { 2757 device_printf(sc->acpi_dev, "device_suspend failed\n"); 2758 goto backout; 2759 } 2760 slp_state = ACPI_SS_DEV_SUSPEND; 2761 2762 /* If testing device suspend only, back out of everything here. */ 2763 if (acpi_susp_bounce) 2764 goto backout; 2765 2766 status = AcpiEnterSleepStatePrep(state); 2767 if (ACPI_FAILURE(status)) { 2768 device_printf(sc->acpi_dev, "AcpiEnterSleepStatePrep failed - %s\n", 2769 AcpiFormatException(status)); 2770 goto backout; 2771 } 2772 slp_state = ACPI_SS_SLP_PREP; 2773 2774 if (sc->acpi_sleep_delay > 0) 2775 DELAY(sc->acpi_sleep_delay * 1000000); 2776 2777 intr = intr_disable(); 2778 if (state != ACPI_STATE_S1) { 2779 sleep_result = acpi_sleep_machdep(sc, state); 2780 acpi_wakeup_machdep(sc, state, sleep_result, 0); 2781 2782 /* 2783 * XXX According to ACPI specification SCI_EN bit should be restored 2784 * by ACPI platform (BIOS, firmware) to its pre-sleep state. 2785 * Unfortunately some BIOSes fail to do that and that leads to 2786 * unexpected and serious consequences during wake up like a system 2787 * getting stuck in SMI handlers. 2788 * This hack is picked up from Linux, which claims that it follows 2789 * Windows behavior. 2790 */ 2791 if (sleep_result == 1 && state != ACPI_STATE_S4) 2792 AcpiWriteBitRegister(ACPI_BITREG_SCI_ENABLE, ACPI_ENABLE_EVENT); 2793 2794 AcpiLeaveSleepStatePrep(state); 2795 2796 if (sleep_result == 1 && state == ACPI_STATE_S3) { 2797 /* 2798 * Prevent mis-interpretation of the wakeup by power button 2799 * as a request for power off. 2800 * Ideally we should post an appropriate wakeup event, 2801 * perhaps using acpi_event_power_button_wake or alike. 2802 * 2803 * Clearing of power button status after wakeup is mandated 2804 * by ACPI specification in section "Fixed Power Button". 2805 * 2806 * XXX As of ACPICA 20121114 AcpiGetEventStatus provides 2807 * status as 0/1 corressponding to inactive/active despite 2808 * its type being ACPI_EVENT_STATUS. In other words, 2809 * we should not test for ACPI_EVENT_FLAG_SET for time being. 2810 */ 2811 if (ACPI_SUCCESS(AcpiGetEventStatus(ACPI_EVENT_POWER_BUTTON, 2812 &power_button_status)) && power_button_status != 0) { 2813 AcpiClearEvent(ACPI_EVENT_POWER_BUTTON); 2814 device_printf(sc->acpi_dev, 2815 "cleared fixed power button status\n"); 2816 } 2817 } 2818 2819 intr_restore(intr); 2820 2821 /* call acpi_wakeup_machdep() again with interrupt enabled */ 2822 acpi_wakeup_machdep(sc, state, sleep_result, 1); 2823 2824 if (sleep_result == -1) 2825 goto backout; 2826 2827 /* Re-enable ACPI hardware on wakeup from sleep state 4. */ 2828 if (state == ACPI_STATE_S4) 2829 AcpiEnable(); 2830 } else { 2831 status = AcpiEnterSleepState(state); 2832 AcpiLeaveSleepStatePrep(state); 2833 intr_restore(intr); 2834 if (ACPI_FAILURE(status)) { 2835 device_printf(sc->acpi_dev, "AcpiEnterSleepState failed - %s\n", 2836 AcpiFormatException(status)); 2837 goto backout; 2838 } 2839 } 2840 slp_state = ACPI_SS_SLEPT; 2841 2842 /* 2843 * Back out state according to how far along we got in the suspend 2844 * process. This handles both the error and success cases. 2845 */ 2846 backout: 2847 if (slp_state >= ACPI_SS_GPE_SET) { 2848 acpi_wake_prep_walk(state); 2849 sc->acpi_sstate = ACPI_STATE_S0; 2850 } 2851 if (slp_state >= ACPI_SS_DEV_SUSPEND) 2852 DEVICE_RESUME(root_bus); 2853 if (slp_state >= ACPI_SS_SLP_PREP) 2854 AcpiLeaveSleepState(state); 2855 if (slp_state >= ACPI_SS_SLEPT) { 2856 acpi_resync_clock(sc); 2857 acpi_enable_fixed_events(sc); 2858 } 2859 sc->acpi_next_sstate = 0; 2860 2861 mtx_unlock(&Giant); 2862 2863 if (smp_started) { 2864 thread_lock(curthread); 2865 sched_unbind(curthread); 2866 thread_unlock(curthread); 2867 } 2868 2869 EVENTHANDLER_INVOKE(power_resume); 2870 2871 /* Allow another sleep request after a while. */ 2872 callout_schedule(&acpi_sleep_timer, hz * ACPI_MINIMUM_AWAKETIME); 2873 2874 /* Run /etc/rc.resume after we are back. */ 2875 if (devctl_process_running()) 2876 acpi_UserNotify("Resume", ACPI_ROOT_OBJECT, state); 2877 2878 return_ACPI_STATUS (status); 2879 } 2880 2881 static void 2882 acpi_resync_clock(struct acpi_softc *sc) 2883 { 2884 #ifdef __amd64__ 2885 if (!acpi_reset_clock) 2886 return; 2887 2888 /* 2889 * Warm up timecounter again and reset system clock. 2890 */ 2891 (void)timecounter->tc_get_timecount(timecounter); 2892 (void)timecounter->tc_get_timecount(timecounter); 2893 inittodr(time_second + sc->acpi_sleep_delay); 2894 #endif 2895 } 2896 2897 /* Enable or disable the device's wake GPE. */ 2898 int 2899 acpi_wake_set_enable(device_t dev, int enable) 2900 { 2901 struct acpi_prw_data prw; 2902 ACPI_STATUS status; 2903 int flags; 2904 2905 /* Make sure the device supports waking the system and get the GPE. */ 2906 if (acpi_parse_prw(acpi_get_handle(dev), &prw) != 0) 2907 return (ENXIO); 2908 2909 flags = acpi_get_flags(dev); 2910 if (enable) { 2911 status = AcpiSetGpeWakeMask(prw.gpe_handle, prw.gpe_bit, 2912 ACPI_GPE_ENABLE); 2913 if (ACPI_FAILURE(status)) { 2914 device_printf(dev, "enable wake failed\n"); 2915 return (ENXIO); 2916 } 2917 acpi_set_flags(dev, flags | ACPI_FLAG_WAKE_ENABLED); 2918 } else { 2919 status = AcpiSetGpeWakeMask(prw.gpe_handle, prw.gpe_bit, 2920 ACPI_GPE_DISABLE); 2921 if (ACPI_FAILURE(status)) { 2922 device_printf(dev, "disable wake failed\n"); 2923 return (ENXIO); 2924 } 2925 acpi_set_flags(dev, flags & ~ACPI_FLAG_WAKE_ENABLED); 2926 } 2927 2928 return (0); 2929 } 2930 2931 static int 2932 acpi_wake_sleep_prep(ACPI_HANDLE handle, int sstate) 2933 { 2934 struct acpi_prw_data prw; 2935 device_t dev; 2936 2937 /* Check that this is a wake-capable device and get its GPE. */ 2938 if (acpi_parse_prw(handle, &prw) != 0) 2939 return (ENXIO); 2940 dev = acpi_get_device(handle); 2941 2942 /* 2943 * The destination sleep state must be less than (i.e., higher power) 2944 * or equal to the value specified by _PRW. If this GPE cannot be 2945 * enabled for the next sleep state, then disable it. If it can and 2946 * the user requested it be enabled, turn on any required power resources 2947 * and set _PSW. 2948 */ 2949 if (sstate > prw.lowest_wake) { 2950 AcpiSetGpeWakeMask(prw.gpe_handle, prw.gpe_bit, ACPI_GPE_DISABLE); 2951 if (bootverbose) 2952 device_printf(dev, "wake_prep disabled wake for %s (S%d)\n", 2953 acpi_name(handle), sstate); 2954 } else if (dev && (acpi_get_flags(dev) & ACPI_FLAG_WAKE_ENABLED) != 0) { 2955 acpi_pwr_wake_enable(handle, 1); 2956 acpi_SetInteger(handle, "_PSW", 1); 2957 if (bootverbose) 2958 device_printf(dev, "wake_prep enabled for %s (S%d)\n", 2959 acpi_name(handle), sstate); 2960 } 2961 2962 return (0); 2963 } 2964 2965 static int 2966 acpi_wake_run_prep(ACPI_HANDLE handle, int sstate) 2967 { 2968 struct acpi_prw_data prw; 2969 device_t dev; 2970 2971 /* 2972 * Check that this is a wake-capable device and get its GPE. Return 2973 * now if the user didn't enable this device for wake. 2974 */ 2975 if (acpi_parse_prw(handle, &prw) != 0) 2976 return (ENXIO); 2977 dev = acpi_get_device(handle); 2978 if (dev == NULL || (acpi_get_flags(dev) & ACPI_FLAG_WAKE_ENABLED) == 0) 2979 return (0); 2980 2981 /* 2982 * If this GPE couldn't be enabled for the previous sleep state, it was 2983 * disabled before going to sleep so re-enable it. If it was enabled, 2984 * clear _PSW and turn off any power resources it used. 2985 */ 2986 if (sstate > prw.lowest_wake) { 2987 AcpiSetGpeWakeMask(prw.gpe_handle, prw.gpe_bit, ACPI_GPE_ENABLE); 2988 if (bootverbose) 2989 device_printf(dev, "run_prep re-enabled %s\n", acpi_name(handle)); 2990 } else { 2991 acpi_SetInteger(handle, "_PSW", 0); 2992 acpi_pwr_wake_enable(handle, 0); 2993 if (bootverbose) 2994 device_printf(dev, "run_prep cleaned up for %s\n", 2995 acpi_name(handle)); 2996 } 2997 2998 return (0); 2999 } 3000 3001 static ACPI_STATUS 3002 acpi_wake_prep(ACPI_HANDLE handle, UINT32 level, void *context, void **status) 3003 { 3004 int sstate; 3005 3006 /* If suspending, run the sleep prep function, otherwise wake. */ 3007 sstate = *(int *)context; 3008 if (AcpiGbl_SystemAwakeAndRunning) 3009 acpi_wake_sleep_prep(handle, sstate); 3010 else 3011 acpi_wake_run_prep(handle, sstate); 3012 return (AE_OK); 3013 } 3014 3015 /* Walk the tree rooted at acpi0 to prep devices for suspend/resume. */ 3016 static int 3017 acpi_wake_prep_walk(int sstate) 3018 { 3019 ACPI_HANDLE sb_handle; 3020 3021 if (ACPI_SUCCESS(AcpiGetHandle(ACPI_ROOT_OBJECT, "\\_SB_", &sb_handle))) 3022 AcpiWalkNamespace(ACPI_TYPE_DEVICE, sb_handle, 100, 3023 acpi_wake_prep, NULL, &sstate, NULL); 3024 return (0); 3025 } 3026 3027 /* Walk the tree rooted at acpi0 to attach per-device wake sysctls. */ 3028 static int 3029 acpi_wake_sysctl_walk(device_t dev) 3030 { 3031 int error, i, numdevs; 3032 device_t *devlist; 3033 device_t child; 3034 ACPI_STATUS status; 3035 3036 error = device_get_children(dev, &devlist, &numdevs); 3037 if (error != 0 || numdevs == 0) { 3038 if (numdevs == 0) 3039 free(devlist, M_TEMP); 3040 return (error); 3041 } 3042 for (i = 0; i < numdevs; i++) { 3043 child = devlist[i]; 3044 acpi_wake_sysctl_walk(child); 3045 if (!device_is_attached(child)) 3046 continue; 3047 status = AcpiEvaluateObject(acpi_get_handle(child), "_PRW", NULL, NULL); 3048 if (ACPI_SUCCESS(status)) { 3049 SYSCTL_ADD_PROC(device_get_sysctl_ctx(child), 3050 SYSCTL_CHILDREN(device_get_sysctl_tree(child)), OID_AUTO, 3051 "wake", CTLTYPE_INT | CTLFLAG_RW, child, 0, 3052 acpi_wake_set_sysctl, "I", "Device set to wake the system"); 3053 } 3054 } 3055 free(devlist, M_TEMP); 3056 3057 return (0); 3058 } 3059 3060 /* Enable or disable wake from userland. */ 3061 static int 3062 acpi_wake_set_sysctl(SYSCTL_HANDLER_ARGS) 3063 { 3064 int enable, error; 3065 device_t dev; 3066 3067 dev = (device_t)arg1; 3068 enable = (acpi_get_flags(dev) & ACPI_FLAG_WAKE_ENABLED) ? 1 : 0; 3069 3070 error = sysctl_handle_int(oidp, &enable, 0, req); 3071 if (error != 0 || req->newptr == NULL) 3072 return (error); 3073 if (enable != 0 && enable != 1) 3074 return (EINVAL); 3075 3076 return (acpi_wake_set_enable(dev, enable)); 3077 } 3078 3079 /* Parse a device's _PRW into a structure. */ 3080 int 3081 acpi_parse_prw(ACPI_HANDLE h, struct acpi_prw_data *prw) 3082 { 3083 ACPI_STATUS status; 3084 ACPI_BUFFER prw_buffer; 3085 ACPI_OBJECT *res, *res2; 3086 int error, i, power_count; 3087 3088 if (h == NULL || prw == NULL) 3089 return (EINVAL); 3090 3091 /* 3092 * The _PRW object (7.2.9) is only required for devices that have the 3093 * ability to wake the system from a sleeping state. 3094 */ 3095 error = EINVAL; 3096 prw_buffer.Pointer = NULL; 3097 prw_buffer.Length = ACPI_ALLOCATE_BUFFER; 3098 status = AcpiEvaluateObject(h, "_PRW", NULL, &prw_buffer); 3099 if (ACPI_FAILURE(status)) 3100 return (ENOENT); 3101 res = (ACPI_OBJECT *)prw_buffer.Pointer; 3102 if (res == NULL) 3103 return (ENOENT); 3104 if (!ACPI_PKG_VALID(res, 2)) 3105 goto out; 3106 3107 /* 3108 * Element 1 of the _PRW object: 3109 * The lowest power system sleeping state that can be entered while still 3110 * providing wake functionality. The sleeping state being entered must 3111 * be less than (i.e., higher power) or equal to this value. 3112 */ 3113 if (acpi_PkgInt32(res, 1, &prw->lowest_wake) != 0) 3114 goto out; 3115 3116 /* 3117 * Element 0 of the _PRW object: 3118 */ 3119 switch (res->Package.Elements[0].Type) { 3120 case ACPI_TYPE_INTEGER: 3121 /* 3122 * If the data type of this package element is numeric, then this 3123 * _PRW package element is the bit index in the GPEx_EN, in the 3124 * GPE blocks described in the FADT, of the enable bit that is 3125 * enabled for the wake event. 3126 */ 3127 prw->gpe_handle = NULL; 3128 prw->gpe_bit = res->Package.Elements[0].Integer.Value; 3129 error = 0; 3130 break; 3131 case ACPI_TYPE_PACKAGE: 3132 /* 3133 * If the data type of this package element is a package, then this 3134 * _PRW package element is itself a package containing two 3135 * elements. The first is an object reference to the GPE Block 3136 * device that contains the GPE that will be triggered by the wake 3137 * event. The second element is numeric and it contains the bit 3138 * index in the GPEx_EN, in the GPE Block referenced by the 3139 * first element in the package, of the enable bit that is enabled for 3140 * the wake event. 3141 * 3142 * For example, if this field is a package then it is of the form: 3143 * Package() {\_SB.PCI0.ISA.GPE, 2} 3144 */ 3145 res2 = &res->Package.Elements[0]; 3146 if (!ACPI_PKG_VALID(res2, 2)) 3147 goto out; 3148 prw->gpe_handle = acpi_GetReference(NULL, &res2->Package.Elements[0]); 3149 if (prw->gpe_handle == NULL) 3150 goto out; 3151 if (acpi_PkgInt32(res2, 1, &prw->gpe_bit) != 0) 3152 goto out; 3153 error = 0; 3154 break; 3155 default: 3156 goto out; 3157 } 3158 3159 /* Elements 2 to N of the _PRW object are power resources. */ 3160 power_count = res->Package.Count - 2; 3161 if (power_count > ACPI_PRW_MAX_POWERRES) { 3162 printf("ACPI device %s has too many power resources\n", acpi_name(h)); 3163 power_count = 0; 3164 } 3165 prw->power_res_count = power_count; 3166 for (i = 0; i < power_count; i++) 3167 prw->power_res[i] = res->Package.Elements[i]; 3168 3169 out: 3170 if (prw_buffer.Pointer != NULL) 3171 AcpiOsFree(prw_buffer.Pointer); 3172 return (error); 3173 } 3174 3175 /* 3176 * ACPI Event Handlers 3177 */ 3178 3179 /* System Event Handlers (registered by EVENTHANDLER_REGISTER) */ 3180 3181 static void 3182 acpi_system_eventhandler_sleep(void *arg, int state) 3183 { 3184 struct acpi_softc *sc = (struct acpi_softc *)arg; 3185 int ret; 3186 3187 ACPI_FUNCTION_TRACE_U32((char *)(uintptr_t)__func__, state); 3188 3189 /* Check if button action is disabled or unknown. */ 3190 if (state == ACPI_STATE_UNKNOWN) 3191 return; 3192 3193 /* Request that the system prepare to enter the given suspend state. */ 3194 ret = acpi_ReqSleepState(sc, state); 3195 if (ret != 0) 3196 device_printf(sc->acpi_dev, 3197 "request to enter state S%d failed (err %d)\n", state, ret); 3198 3199 return_VOID; 3200 } 3201 3202 static void 3203 acpi_system_eventhandler_wakeup(void *arg, int state) 3204 { 3205 3206 ACPI_FUNCTION_TRACE_U32((char *)(uintptr_t)__func__, state); 3207 3208 /* Currently, nothing to do for wakeup. */ 3209 3210 return_VOID; 3211 } 3212 3213 /* 3214 * ACPICA Event Handlers (FixedEvent, also called from button notify handler) 3215 */ 3216 static void 3217 acpi_invoke_sleep_eventhandler(void *context) 3218 { 3219 3220 EVENTHANDLER_INVOKE(acpi_sleep_event, *(int *)context); 3221 } 3222 3223 static void 3224 acpi_invoke_wake_eventhandler(void *context) 3225 { 3226 3227 EVENTHANDLER_INVOKE(acpi_wakeup_event, *(int *)context); 3228 } 3229 3230 UINT32 3231 acpi_event_power_button_sleep(void *context) 3232 { 3233 struct acpi_softc *sc = (struct acpi_softc *)context; 3234 3235 ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__); 3236 3237 if (ACPI_FAILURE(AcpiOsExecute(OSL_NOTIFY_HANDLER, 3238 acpi_invoke_sleep_eventhandler, &sc->acpi_power_button_sx))) 3239 return_VALUE (ACPI_INTERRUPT_NOT_HANDLED); 3240 return_VALUE (ACPI_INTERRUPT_HANDLED); 3241 } 3242 3243 UINT32 3244 acpi_event_power_button_wake(void *context) 3245 { 3246 struct acpi_softc *sc = (struct acpi_softc *)context; 3247 3248 ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__); 3249 3250 if (ACPI_FAILURE(AcpiOsExecute(OSL_NOTIFY_HANDLER, 3251 acpi_invoke_wake_eventhandler, &sc->acpi_power_button_sx))) 3252 return_VALUE (ACPI_INTERRUPT_NOT_HANDLED); 3253 return_VALUE (ACPI_INTERRUPT_HANDLED); 3254 } 3255 3256 UINT32 3257 acpi_event_sleep_button_sleep(void *context) 3258 { 3259 struct acpi_softc *sc = (struct acpi_softc *)context; 3260 3261 ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__); 3262 3263 if (ACPI_FAILURE(AcpiOsExecute(OSL_NOTIFY_HANDLER, 3264 acpi_invoke_sleep_eventhandler, &sc->acpi_sleep_button_sx))) 3265 return_VALUE (ACPI_INTERRUPT_NOT_HANDLED); 3266 return_VALUE (ACPI_INTERRUPT_HANDLED); 3267 } 3268 3269 UINT32 3270 acpi_event_sleep_button_wake(void *context) 3271 { 3272 struct acpi_softc *sc = (struct acpi_softc *)context; 3273 3274 ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__); 3275 3276 if (ACPI_FAILURE(AcpiOsExecute(OSL_NOTIFY_HANDLER, 3277 acpi_invoke_wake_eventhandler, &sc->acpi_sleep_button_sx))) 3278 return_VALUE (ACPI_INTERRUPT_NOT_HANDLED); 3279 return_VALUE (ACPI_INTERRUPT_HANDLED); 3280 } 3281 3282 /* 3283 * XXX This static buffer is suboptimal. There is no locking so only 3284 * use this for single-threaded callers. 3285 */ 3286 char * 3287 acpi_name(ACPI_HANDLE handle) 3288 { 3289 ACPI_BUFFER buf; 3290 static char data[256]; 3291 3292 buf.Length = sizeof(data); 3293 buf.Pointer = data; 3294 3295 if (handle && ACPI_SUCCESS(AcpiGetName(handle, ACPI_FULL_PATHNAME, &buf))) 3296 return (data); 3297 return ("(unknown)"); 3298 } 3299 3300 /* 3301 * Debugging/bug-avoidance. Avoid trying to fetch info on various 3302 * parts of the namespace. 3303 */ 3304 int 3305 acpi_avoid(ACPI_HANDLE handle) 3306 { 3307 char *cp, *env, *np; 3308 int len; 3309 3310 np = acpi_name(handle); 3311 if (*np == '\\') 3312 np++; 3313 if ((env = getenv("debug.acpi.avoid")) == NULL) 3314 return (0); 3315 3316 /* Scan the avoid list checking for a match */ 3317 cp = env; 3318 for (;;) { 3319 while (*cp != 0 && isspace(*cp)) 3320 cp++; 3321 if (*cp == 0) 3322 break; 3323 len = 0; 3324 while (cp[len] != 0 && !isspace(cp[len])) 3325 len++; 3326 if (!strncmp(cp, np, len)) { 3327 freeenv(env); 3328 return(1); 3329 } 3330 cp += len; 3331 } 3332 freeenv(env); 3333 3334 return (0); 3335 } 3336 3337 /* 3338 * Debugging/bug-avoidance. Disable ACPI subsystem components. 3339 */ 3340 int 3341 acpi_disabled(char *subsys) 3342 { 3343 char *cp, *env; 3344 int len; 3345 3346 if ((env = getenv("debug.acpi.disabled")) == NULL) 3347 return (0); 3348 if (strcmp(env, "all") == 0) { 3349 freeenv(env); 3350 return (1); 3351 } 3352 3353 /* Scan the disable list, checking for a match. */ 3354 cp = env; 3355 for (;;) { 3356 while (*cp != '\0' && isspace(*cp)) 3357 cp++; 3358 if (*cp == '\0') 3359 break; 3360 len = 0; 3361 while (cp[len] != '\0' && !isspace(cp[len])) 3362 len++; 3363 if (strncmp(cp, subsys, len) == 0) { 3364 freeenv(env); 3365 return (1); 3366 } 3367 cp += len; 3368 } 3369 freeenv(env); 3370 3371 return (0); 3372 } 3373 3374 /* 3375 * Control interface. 3376 * 3377 * We multiplex ioctls for all participating ACPI devices here. Individual 3378 * drivers wanting to be accessible via /dev/acpi should use the 3379 * register/deregister interface to make their handlers visible. 3380 */ 3381 struct acpi_ioctl_hook 3382 { 3383 TAILQ_ENTRY(acpi_ioctl_hook) link; 3384 u_long cmd; 3385 acpi_ioctl_fn fn; 3386 void *arg; 3387 }; 3388 3389 static TAILQ_HEAD(,acpi_ioctl_hook) acpi_ioctl_hooks; 3390 static int acpi_ioctl_hooks_initted; 3391 3392 int 3393 acpi_register_ioctl(u_long cmd, acpi_ioctl_fn fn, void *arg) 3394 { 3395 struct acpi_ioctl_hook *hp; 3396 3397 if ((hp = malloc(sizeof(*hp), M_ACPIDEV, M_NOWAIT)) == NULL) 3398 return (ENOMEM); 3399 hp->cmd = cmd; 3400 hp->fn = fn; 3401 hp->arg = arg; 3402 3403 ACPI_LOCK(acpi); 3404 if (acpi_ioctl_hooks_initted == 0) { 3405 TAILQ_INIT(&acpi_ioctl_hooks); 3406 acpi_ioctl_hooks_initted = 1; 3407 } 3408 TAILQ_INSERT_TAIL(&acpi_ioctl_hooks, hp, link); 3409 ACPI_UNLOCK(acpi); 3410 3411 return (0); 3412 } 3413 3414 void 3415 acpi_deregister_ioctl(u_long cmd, acpi_ioctl_fn fn) 3416 { 3417 struct acpi_ioctl_hook *hp; 3418 3419 ACPI_LOCK(acpi); 3420 TAILQ_FOREACH(hp, &acpi_ioctl_hooks, link) 3421 if (hp->cmd == cmd && hp->fn == fn) 3422 break; 3423 3424 if (hp != NULL) { 3425 TAILQ_REMOVE(&acpi_ioctl_hooks, hp, link); 3426 free(hp, M_ACPIDEV); 3427 } 3428 ACPI_UNLOCK(acpi); 3429 } 3430 3431 static int 3432 acpiopen(struct cdev *dev, int flag, int fmt, struct thread *td) 3433 { 3434 return (0); 3435 } 3436 3437 static int 3438 acpiclose(struct cdev *dev, int flag, int fmt, struct thread *td) 3439 { 3440 return (0); 3441 } 3442 3443 static int 3444 acpiioctl(struct cdev *dev, u_long cmd, caddr_t addr, int flag, struct thread *td) 3445 { 3446 struct acpi_softc *sc; 3447 struct acpi_ioctl_hook *hp; 3448 int error, state; 3449 3450 error = 0; 3451 hp = NULL; 3452 sc = dev->si_drv1; 3453 3454 /* 3455 * Scan the list of registered ioctls, looking for handlers. 3456 */ 3457 ACPI_LOCK(acpi); 3458 if (acpi_ioctl_hooks_initted) 3459 TAILQ_FOREACH(hp, &acpi_ioctl_hooks, link) { 3460 if (hp->cmd == cmd) 3461 break; 3462 } 3463 ACPI_UNLOCK(acpi); 3464 if (hp) 3465 return (hp->fn(cmd, addr, hp->arg)); 3466 3467 /* 3468 * Core ioctls are not permitted for non-writable user. 3469 * Currently, other ioctls just fetch information. 3470 * Not changing system behavior. 3471 */ 3472 if ((flag & FWRITE) == 0) 3473 return (EPERM); 3474 3475 /* Core system ioctls. */ 3476 switch (cmd) { 3477 case ACPIIO_REQSLPSTATE: 3478 state = *(int *)addr; 3479 if (state != ACPI_STATE_S5) 3480 return (acpi_ReqSleepState(sc, state)); 3481 device_printf(sc->acpi_dev, "power off via acpi ioctl not supported\n"); 3482 error = EOPNOTSUPP; 3483 break; 3484 case ACPIIO_ACKSLPSTATE: 3485 error = *(int *)addr; 3486 error = acpi_AckSleepState(sc->acpi_clone, error); 3487 break; 3488 case ACPIIO_SETSLPSTATE: /* DEPRECATED */ 3489 state = *(int *)addr; 3490 if (state < ACPI_STATE_S0 || state > ACPI_S_STATES_MAX) 3491 return (EINVAL); 3492 if (!acpi_sleep_states[state]) 3493 return (EOPNOTSUPP); 3494 if (ACPI_FAILURE(acpi_SetSleepState(sc, state))) 3495 error = ENXIO; 3496 break; 3497 default: 3498 error = ENXIO; 3499 break; 3500 } 3501 3502 return (error); 3503 } 3504 3505 static int 3506 acpi_sname2sstate(const char *sname) 3507 { 3508 int sstate; 3509 3510 if (toupper(sname[0]) == 'S') { 3511 sstate = sname[1] - '0'; 3512 if (sstate >= ACPI_STATE_S0 && sstate <= ACPI_STATE_S5 && 3513 sname[2] == '\0') 3514 return (sstate); 3515 } else if (strcasecmp(sname, "NONE") == 0) 3516 return (ACPI_STATE_UNKNOWN); 3517 return (-1); 3518 } 3519 3520 static const char * 3521 acpi_sstate2sname(int sstate) 3522 { 3523 static const char *snames[] = { "S0", "S1", "S2", "S3", "S4", "S5" }; 3524 3525 if (sstate >= ACPI_STATE_S0 && sstate <= ACPI_STATE_S5) 3526 return (snames[sstate]); 3527 else if (sstate == ACPI_STATE_UNKNOWN) 3528 return ("NONE"); 3529 return (NULL); 3530 } 3531 3532 static int 3533 acpi_supported_sleep_state_sysctl(SYSCTL_HANDLER_ARGS) 3534 { 3535 int error; 3536 struct sbuf sb; 3537 UINT8 state; 3538 3539 sbuf_new(&sb, NULL, 32, SBUF_AUTOEXTEND); 3540 for (state = ACPI_STATE_S1; state < ACPI_S_STATE_COUNT; state++) 3541 if (acpi_sleep_states[state]) 3542 sbuf_printf(&sb, "%s ", acpi_sstate2sname(state)); 3543 sbuf_trim(&sb); 3544 sbuf_finish(&sb); 3545 error = sysctl_handle_string(oidp, sbuf_data(&sb), sbuf_len(&sb), req); 3546 sbuf_delete(&sb); 3547 return (error); 3548 } 3549 3550 static int 3551 acpi_sleep_state_sysctl(SYSCTL_HANDLER_ARGS) 3552 { 3553 char sleep_state[10]; 3554 int error, new_state, old_state; 3555 3556 old_state = *(int *)oidp->oid_arg1; 3557 strlcpy(sleep_state, acpi_sstate2sname(old_state), sizeof(sleep_state)); 3558 error = sysctl_handle_string(oidp, sleep_state, sizeof(sleep_state), req); 3559 if (error == 0 && req->newptr != NULL) { 3560 new_state = acpi_sname2sstate(sleep_state); 3561 if (new_state < ACPI_STATE_S1) 3562 return (EINVAL); 3563 if (new_state < ACPI_S_STATE_COUNT && !acpi_sleep_states[new_state]) 3564 return (EOPNOTSUPP); 3565 if (new_state != old_state) 3566 *(int *)oidp->oid_arg1 = new_state; 3567 } 3568 return (error); 3569 } 3570 3571 /* Inform devctl(4) when we receive a Notify. */ 3572 void 3573 acpi_UserNotify(const char *subsystem, ACPI_HANDLE h, uint8_t notify) 3574 { 3575 char notify_buf[16]; 3576 ACPI_BUFFER handle_buf; 3577 ACPI_STATUS status; 3578 3579 if (subsystem == NULL) 3580 return; 3581 3582 handle_buf.Pointer = NULL; 3583 handle_buf.Length = ACPI_ALLOCATE_BUFFER; 3584 status = AcpiNsHandleToPathname(h, &handle_buf); 3585 if (ACPI_FAILURE(status)) 3586 return; 3587 snprintf(notify_buf, sizeof(notify_buf), "notify=0x%02x", notify); 3588 devctl_notify("ACPI", subsystem, handle_buf.Pointer, notify_buf); 3589 AcpiOsFree(handle_buf.Pointer); 3590 } 3591 3592 #ifdef ACPI_DEBUG 3593 /* 3594 * Support for parsing debug options from the kernel environment. 3595 * 3596 * Bits may be set in the AcpiDbgLayer and AcpiDbgLevel debug registers 3597 * by specifying the names of the bits in the debug.acpi.layer and 3598 * debug.acpi.level environment variables. Bits may be unset by 3599 * prefixing the bit name with !. 3600 */ 3601 struct debugtag 3602 { 3603 char *name; 3604 UINT32 value; 3605 }; 3606 3607 static struct debugtag dbg_layer[] = { 3608 {"ACPI_UTILITIES", ACPI_UTILITIES}, 3609 {"ACPI_HARDWARE", ACPI_HARDWARE}, 3610 {"ACPI_EVENTS", ACPI_EVENTS}, 3611 {"ACPI_TABLES", ACPI_TABLES}, 3612 {"ACPI_NAMESPACE", ACPI_NAMESPACE}, 3613 {"ACPI_PARSER", ACPI_PARSER}, 3614 {"ACPI_DISPATCHER", ACPI_DISPATCHER}, 3615 {"ACPI_EXECUTER", ACPI_EXECUTER}, 3616 {"ACPI_RESOURCES", ACPI_RESOURCES}, 3617 {"ACPI_CA_DEBUGGER", ACPI_CA_DEBUGGER}, 3618 {"ACPI_OS_SERVICES", ACPI_OS_SERVICES}, 3619 {"ACPI_CA_DISASSEMBLER", ACPI_CA_DISASSEMBLER}, 3620 {"ACPI_ALL_COMPONENTS", ACPI_ALL_COMPONENTS}, 3621 3622 {"ACPI_AC_ADAPTER", ACPI_AC_ADAPTER}, 3623 {"ACPI_BATTERY", ACPI_BATTERY}, 3624 {"ACPI_BUS", ACPI_BUS}, 3625 {"ACPI_BUTTON", ACPI_BUTTON}, 3626 {"ACPI_EC", ACPI_EC}, 3627 {"ACPI_FAN", ACPI_FAN}, 3628 {"ACPI_POWERRES", ACPI_POWERRES}, 3629 {"ACPI_PROCESSOR", ACPI_PROCESSOR}, 3630 {"ACPI_THERMAL", ACPI_THERMAL}, 3631 {"ACPI_TIMER", ACPI_TIMER}, 3632 {"ACPI_ALL_DRIVERS", ACPI_ALL_DRIVERS}, 3633 {NULL, 0} 3634 }; 3635 3636 static struct debugtag dbg_level[] = { 3637 {"ACPI_LV_INIT", ACPI_LV_INIT}, 3638 {"ACPI_LV_DEBUG_OBJECT", ACPI_LV_DEBUG_OBJECT}, 3639 {"ACPI_LV_INFO", ACPI_LV_INFO}, 3640 {"ACPI_LV_REPAIR", ACPI_LV_REPAIR}, 3641 {"ACPI_LV_ALL_EXCEPTIONS", ACPI_LV_ALL_EXCEPTIONS}, 3642 3643 /* Trace verbosity level 1 [Standard Trace Level] */ 3644 {"ACPI_LV_INIT_NAMES", ACPI_LV_INIT_NAMES}, 3645 {"ACPI_LV_PARSE", ACPI_LV_PARSE}, 3646 {"ACPI_LV_LOAD", ACPI_LV_LOAD}, 3647 {"ACPI_LV_DISPATCH", ACPI_LV_DISPATCH}, 3648 {"ACPI_LV_EXEC", ACPI_LV_EXEC}, 3649 {"ACPI_LV_NAMES", ACPI_LV_NAMES}, 3650 {"ACPI_LV_OPREGION", ACPI_LV_OPREGION}, 3651 {"ACPI_LV_BFIELD", ACPI_LV_BFIELD}, 3652 {"ACPI_LV_TABLES", ACPI_LV_TABLES}, 3653 {"ACPI_LV_VALUES", ACPI_LV_VALUES}, 3654 {"ACPI_LV_OBJECTS", ACPI_LV_OBJECTS}, 3655 {"ACPI_LV_RESOURCES", ACPI_LV_RESOURCES}, 3656 {"ACPI_LV_USER_REQUESTS", ACPI_LV_USER_REQUESTS}, 3657 {"ACPI_LV_PACKAGE", ACPI_LV_PACKAGE}, 3658 {"ACPI_LV_VERBOSITY1", ACPI_LV_VERBOSITY1}, 3659 3660 /* Trace verbosity level 2 [Function tracing and memory allocation] */ 3661 {"ACPI_LV_ALLOCATIONS", ACPI_LV_ALLOCATIONS}, 3662 {"ACPI_LV_FUNCTIONS", ACPI_LV_FUNCTIONS}, 3663 {"ACPI_LV_OPTIMIZATIONS", ACPI_LV_OPTIMIZATIONS}, 3664 {"ACPI_LV_VERBOSITY2", ACPI_LV_VERBOSITY2}, 3665 {"ACPI_LV_ALL", ACPI_LV_ALL}, 3666 3667 /* Trace verbosity level 3 [Threading, I/O, and Interrupts] */ 3668 {"ACPI_LV_MUTEX", ACPI_LV_MUTEX}, 3669 {"ACPI_LV_THREADS", ACPI_LV_THREADS}, 3670 {"ACPI_LV_IO", ACPI_LV_IO}, 3671 {"ACPI_LV_INTERRUPTS", ACPI_LV_INTERRUPTS}, 3672 {"ACPI_LV_VERBOSITY3", ACPI_LV_VERBOSITY3}, 3673 3674 /* Exceptionally verbose output -- also used in the global "DebugLevel" */ 3675 {"ACPI_LV_AML_DISASSEMBLE", ACPI_LV_AML_DISASSEMBLE}, 3676 {"ACPI_LV_VERBOSE_INFO", ACPI_LV_VERBOSE_INFO}, 3677 {"ACPI_LV_FULL_TABLES", ACPI_LV_FULL_TABLES}, 3678 {"ACPI_LV_EVENTS", ACPI_LV_EVENTS}, 3679 {"ACPI_LV_VERBOSE", ACPI_LV_VERBOSE}, 3680 {NULL, 0} 3681 }; 3682 3683 static void 3684 acpi_parse_debug(char *cp, struct debugtag *tag, UINT32 *flag) 3685 { 3686 char *ep; 3687 int i, l; 3688 int set; 3689 3690 while (*cp) { 3691 if (isspace(*cp)) { 3692 cp++; 3693 continue; 3694 } 3695 ep = cp; 3696 while (*ep && !isspace(*ep)) 3697 ep++; 3698 if (*cp == '!') { 3699 set = 0; 3700 cp++; 3701 if (cp == ep) 3702 continue; 3703 } else { 3704 set = 1; 3705 } 3706 l = ep - cp; 3707 for (i = 0; tag[i].name != NULL; i++) { 3708 if (!strncmp(cp, tag[i].name, l)) { 3709 if (set) 3710 *flag |= tag[i].value; 3711 else 3712 *flag &= ~tag[i].value; 3713 } 3714 } 3715 cp = ep; 3716 } 3717 } 3718 3719 static void 3720 acpi_set_debugging(void *junk) 3721 { 3722 char *layer, *level; 3723 3724 if (cold) { 3725 AcpiDbgLayer = 0; 3726 AcpiDbgLevel = 0; 3727 } 3728 3729 layer = getenv("debug.acpi.layer"); 3730 level = getenv("debug.acpi.level"); 3731 if (layer == NULL && level == NULL) 3732 return; 3733 3734 printf("ACPI set debug"); 3735 if (layer != NULL) { 3736 if (strcmp("NONE", layer) != 0) 3737 printf(" layer '%s'", layer); 3738 acpi_parse_debug(layer, &dbg_layer[0], &AcpiDbgLayer); 3739 freeenv(layer); 3740 } 3741 if (level != NULL) { 3742 if (strcmp("NONE", level) != 0) 3743 printf(" level '%s'", level); 3744 acpi_parse_debug(level, &dbg_level[0], &AcpiDbgLevel); 3745 freeenv(level); 3746 } 3747 printf("\n"); 3748 } 3749 3750 SYSINIT(acpi_debugging, SI_SUB_TUNABLES, SI_ORDER_ANY, acpi_set_debugging, 3751 NULL); 3752 3753 static int 3754 acpi_debug_sysctl(SYSCTL_HANDLER_ARGS) 3755 { 3756 int error, *dbg; 3757 struct debugtag *tag; 3758 struct sbuf sb; 3759 3760 if (sbuf_new(&sb, NULL, 128, SBUF_AUTOEXTEND) == NULL) 3761 return (ENOMEM); 3762 if (strcmp(oidp->oid_arg1, "debug.acpi.layer") == 0) { 3763 tag = &dbg_layer[0]; 3764 dbg = &AcpiDbgLayer; 3765 } else { 3766 tag = &dbg_level[0]; 3767 dbg = &AcpiDbgLevel; 3768 } 3769 3770 /* Get old values if this is a get request. */ 3771 ACPI_SERIAL_BEGIN(acpi); 3772 if (*dbg == 0) { 3773 sbuf_cpy(&sb, "NONE"); 3774 } else if (req->newptr == NULL) { 3775 for (; tag->name != NULL; tag++) { 3776 if ((*dbg & tag->value) == tag->value) 3777 sbuf_printf(&sb, "%s ", tag->name); 3778 } 3779 } 3780 sbuf_trim(&sb); 3781 sbuf_finish(&sb); 3782 3783 /* Copy out the old values to the user. */ 3784 error = SYSCTL_OUT(req, sbuf_data(&sb), sbuf_len(&sb)); 3785 sbuf_delete(&sb); 3786 3787 /* If the user is setting a string, parse it. */ 3788 if (error == 0 && req->newptr != NULL) { 3789 *dbg = 0; 3790 setenv((char *)oidp->oid_arg1, (char *)req->newptr); 3791 acpi_set_debugging(NULL); 3792 } 3793 ACPI_SERIAL_END(acpi); 3794 3795 return (error); 3796 } 3797 3798 SYSCTL_PROC(_debug_acpi, OID_AUTO, layer, CTLFLAG_RW | CTLTYPE_STRING, 3799 "debug.acpi.layer", 0, acpi_debug_sysctl, "A", ""); 3800 SYSCTL_PROC(_debug_acpi, OID_AUTO, level, CTLFLAG_RW | CTLTYPE_STRING, 3801 "debug.acpi.level", 0, acpi_debug_sysctl, "A", ""); 3802 #endif /* ACPI_DEBUG */ 3803 3804 static int 3805 acpi_debug_objects_sysctl(SYSCTL_HANDLER_ARGS) 3806 { 3807 int error; 3808 int old; 3809 3810 old = acpi_debug_objects; 3811 error = sysctl_handle_int(oidp, &acpi_debug_objects, 0, req); 3812 if (error != 0 || req->newptr == NULL) 3813 return (error); 3814 if (old == acpi_debug_objects || (old && acpi_debug_objects)) 3815 return (0); 3816 3817 ACPI_SERIAL_BEGIN(acpi); 3818 AcpiGbl_EnableAmlDebugObject = acpi_debug_objects ? TRUE : FALSE; 3819 ACPI_SERIAL_END(acpi); 3820 3821 return (0); 3822 } 3823 3824 static int 3825 acpi_parse_interfaces(char *str, struct acpi_interface *iface) 3826 { 3827 char *p; 3828 size_t len; 3829 int i, j; 3830 3831 p = str; 3832 while (isspace(*p) || *p == ',') 3833 p++; 3834 len = strlen(p); 3835 if (len == 0) 3836 return (0); 3837 p = strdup(p, M_TEMP); 3838 for (i = 0; i < len; i++) 3839 if (p[i] == ',') 3840 p[i] = '\0'; 3841 i = j = 0; 3842 while (i < len) 3843 if (isspace(p[i]) || p[i] == '\0') 3844 i++; 3845 else { 3846 i += strlen(p + i) + 1; 3847 j++; 3848 } 3849 if (j == 0) { 3850 free(p, M_TEMP); 3851 return (0); 3852 } 3853 iface->data = malloc(sizeof(*iface->data) * j, M_TEMP, M_WAITOK); 3854 iface->num = j; 3855 i = j = 0; 3856 while (i < len) 3857 if (isspace(p[i]) || p[i] == '\0') 3858 i++; 3859 else { 3860 iface->data[j] = p + i; 3861 i += strlen(p + i) + 1; 3862 j++; 3863 } 3864 3865 return (j); 3866 } 3867 3868 static void 3869 acpi_free_interfaces(struct acpi_interface *iface) 3870 { 3871 3872 free(iface->data[0], M_TEMP); 3873 free(iface->data, M_TEMP); 3874 } 3875 3876 static void 3877 acpi_reset_interfaces(device_t dev) 3878 { 3879 struct acpi_interface list; 3880 ACPI_STATUS status; 3881 int i; 3882 3883 if (acpi_parse_interfaces(acpi_install_interface, &list) > 0) { 3884 for (i = 0; i < list.num; i++) { 3885 status = AcpiInstallInterface(list.data[i]); 3886 if (ACPI_FAILURE(status)) 3887 device_printf(dev, 3888 "failed to install _OSI(\"%s\"): %s\n", 3889 list.data[i], AcpiFormatException(status)); 3890 else if (bootverbose) 3891 device_printf(dev, "installed _OSI(\"%s\")\n", 3892 list.data[i]); 3893 } 3894 acpi_free_interfaces(&list); 3895 } 3896 if (acpi_parse_interfaces(acpi_remove_interface, &list) > 0) { 3897 for (i = 0; i < list.num; i++) { 3898 status = AcpiRemoveInterface(list.data[i]); 3899 if (ACPI_FAILURE(status)) 3900 device_printf(dev, 3901 "failed to remove _OSI(\"%s\"): %s\n", 3902 list.data[i], AcpiFormatException(status)); 3903 else if (bootverbose) 3904 device_printf(dev, "removed _OSI(\"%s\")\n", 3905 list.data[i]); 3906 } 3907 acpi_free_interfaces(&list); 3908 } 3909 } 3910 3911 static int 3912 acpi_pm_func(u_long cmd, void *arg, ...) 3913 { 3914 int state, acpi_state; 3915 int error; 3916 struct acpi_softc *sc; 3917 va_list ap; 3918 3919 error = 0; 3920 switch (cmd) { 3921 case POWER_CMD_SUSPEND: 3922 sc = (struct acpi_softc *)arg; 3923 if (sc == NULL) { 3924 error = EINVAL; 3925 goto out; 3926 } 3927 3928 va_start(ap, arg); 3929 state = va_arg(ap, int); 3930 va_end(ap); 3931 3932 switch (state) { 3933 case POWER_SLEEP_STATE_STANDBY: 3934 acpi_state = sc->acpi_standby_sx; 3935 break; 3936 case POWER_SLEEP_STATE_SUSPEND: 3937 acpi_state = sc->acpi_suspend_sx; 3938 break; 3939 case POWER_SLEEP_STATE_HIBERNATE: 3940 acpi_state = ACPI_STATE_S4; 3941 break; 3942 default: 3943 error = EINVAL; 3944 goto out; 3945 } 3946 3947 if (ACPI_FAILURE(acpi_EnterSleepState(sc, acpi_state))) 3948 error = ENXIO; 3949 break; 3950 default: 3951 error = EINVAL; 3952 goto out; 3953 } 3954 3955 out: 3956 return (error); 3957 } 3958 3959 static void 3960 acpi_pm_register(void *arg) 3961 { 3962 if (!cold || resource_disabled("acpi", 0)) 3963 return; 3964 3965 power_pm_register(POWER_PM_TYPE_ACPI, acpi_pm_func, NULL); 3966 } 3967 3968 SYSINIT(power, SI_SUB_KLD, SI_ORDER_ANY, acpi_pm_register, 0); 3969