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