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 * $FreeBSD$ 30 */ 31 32 #include "opt_acpi.h" 33 #include <sys/param.h> 34 #include <sys/kernel.h> 35 #include <sys/proc.h> 36 #include <sys/fcntl.h> 37 #include <sys/malloc.h> 38 #include <sys/module.h> 39 #include <sys/bus.h> 40 #include <sys/conf.h> 41 #include <sys/ioccom.h> 42 #include <sys/reboot.h> 43 #include <sys/sysctl.h> 44 #include <sys/ctype.h> 45 #include <sys/linker.h> 46 #include <sys/power.h> 47 #include <sys/sbuf.h> 48 #include <sys/smp.h> 49 50 #include <machine/clock.h> 51 #include <machine/resource.h> 52 #include <machine/bus.h> 53 #include <sys/rman.h> 54 #include <isa/isavar.h> 55 #include <isa/pnpvar.h> 56 57 #include "acpi.h" 58 #include <dev/acpica/acpivar.h> 59 #include <dev/acpica/acpiio.h> 60 #include <contrib/dev/acpica/acnamesp.h> 61 62 MALLOC_DEFINE(M_ACPIDEV, "acpidev", "ACPI devices"); 63 64 /* Hooks for the ACPI CA debugging infrastructure */ 65 #define _COMPONENT ACPI_BUS 66 ACPI_MODULE_NAME("ACPI") 67 68 static d_open_t acpiopen; 69 static d_close_t acpiclose; 70 static d_ioctl_t acpiioctl; 71 72 static struct cdevsw acpi_cdevsw = { 73 .d_version = D_VERSION, 74 .d_flags = D_NEEDGIANT, 75 .d_open = acpiopen, 76 .d_close = acpiclose, 77 .d_ioctl = acpiioctl, 78 .d_name = "acpi", 79 }; 80 81 /* Global mutex for locking access to the ACPI subsystem. */ 82 struct mtx acpi_mutex; 83 84 /* Bitmap of device quirks. */ 85 int acpi_quirks; 86 87 /* Local pools for managing system resources for ACPI child devices. */ 88 struct rman acpi_rman_io, acpi_rman_mem; 89 90 static int acpi_modevent(struct module *mod, int event, void *junk); 91 static void acpi_identify(driver_t *driver, device_t parent); 92 static int acpi_probe(device_t dev); 93 static int acpi_attach(device_t dev); 94 static int acpi_shutdown(device_t dev); 95 static device_t acpi_add_child(device_t bus, int order, const char *name, 96 int unit); 97 static int acpi_print_child(device_t bus, device_t child); 98 static int acpi_read_ivar(device_t dev, device_t child, int index, 99 uintptr_t *result); 100 static int acpi_write_ivar(device_t dev, device_t child, int index, 101 uintptr_t value); 102 static struct resource_list *acpi_get_rlist(device_t dev, device_t child); 103 static struct resource *acpi_alloc_resource(device_t bus, device_t child, 104 int type, int *rid, u_long start, u_long end, 105 u_long count, u_int flags); 106 static int acpi_release_resource(device_t bus, device_t child, int type, 107 int rid, struct resource *r); 108 static uint32_t acpi_isa_get_logicalid(device_t dev); 109 static int acpi_isa_get_compatid(device_t dev, uint32_t *cids, int count); 110 static char *acpi_device_id_probe(device_t bus, device_t dev, char **ids); 111 static ACPI_STATUS acpi_device_eval_obj(device_t bus, device_t dev, 112 ACPI_STRING pathname, ACPI_OBJECT_LIST *parameters, 113 ACPI_BUFFER *ret); 114 static ACPI_STATUS acpi_device_walk_ns(device_t bus, device_t dev, 115 ACPI_OBJECT_TYPE type, UINT32 max_depth, 116 ACPI_WALK_CALLBACK user_fn, void *context, void **ret); 117 static int acpi_isa_pnp_probe(device_t bus, device_t child, 118 struct isa_pnp_id *ids); 119 static void acpi_probe_children(device_t bus); 120 static int acpi_probe_order(ACPI_HANDLE handle, int *order); 121 static ACPI_STATUS acpi_probe_child(ACPI_HANDLE handle, UINT32 level, 122 void *context, void **status); 123 static BOOLEAN acpi_MatchHid(ACPI_HANDLE h, const char *hid); 124 static void acpi_shutdown_final(void *arg, int howto); 125 static void acpi_enable_fixed_events(struct acpi_softc *sc); 126 static int acpi_wake_sleep_prep(ACPI_HANDLE handle, int sstate); 127 static int acpi_wake_run_prep(ACPI_HANDLE handle, int sstate); 128 static int acpi_wake_prep_walk(int sstate); 129 static int acpi_wake_sysctl_walk(device_t dev); 130 static int acpi_wake_set_sysctl(SYSCTL_HANDLER_ARGS); 131 static void acpi_system_eventhandler_sleep(void *arg, int state); 132 static void acpi_system_eventhandler_wakeup(void *arg, int state); 133 static int acpi_supported_sleep_state_sysctl(SYSCTL_HANDLER_ARGS); 134 static int acpi_sleep_state_sysctl(SYSCTL_HANDLER_ARGS); 135 static int acpi_pm_func(u_long cmd, void *arg, ...); 136 static int acpi_child_location_str_method(device_t acdev, device_t child, 137 char *buf, size_t buflen); 138 static int acpi_child_pnpinfo_str_method(device_t acdev, device_t child, 139 char *buf, size_t buflen); 140 141 static device_method_t acpi_methods[] = { 142 /* Device interface */ 143 DEVMETHOD(device_identify, acpi_identify), 144 DEVMETHOD(device_probe, acpi_probe), 145 DEVMETHOD(device_attach, acpi_attach), 146 DEVMETHOD(device_shutdown, acpi_shutdown), 147 DEVMETHOD(device_detach, bus_generic_detach), 148 DEVMETHOD(device_suspend, bus_generic_suspend), 149 DEVMETHOD(device_resume, bus_generic_resume), 150 151 /* Bus interface */ 152 DEVMETHOD(bus_add_child, acpi_add_child), 153 DEVMETHOD(bus_print_child, acpi_print_child), 154 DEVMETHOD(bus_read_ivar, acpi_read_ivar), 155 DEVMETHOD(bus_write_ivar, acpi_write_ivar), 156 DEVMETHOD(bus_get_resource_list, acpi_get_rlist), 157 DEVMETHOD(bus_set_resource, bus_generic_rl_set_resource), 158 DEVMETHOD(bus_get_resource, bus_generic_rl_get_resource), 159 DEVMETHOD(bus_alloc_resource, acpi_alloc_resource), 160 DEVMETHOD(bus_release_resource, acpi_release_resource), 161 DEVMETHOD(bus_child_pnpinfo_str, acpi_child_pnpinfo_str_method), 162 DEVMETHOD(bus_child_location_str, acpi_child_location_str_method), 163 DEVMETHOD(bus_driver_added, bus_generic_driver_added), 164 DEVMETHOD(bus_activate_resource, bus_generic_activate_resource), 165 DEVMETHOD(bus_deactivate_resource, bus_generic_deactivate_resource), 166 DEVMETHOD(bus_setup_intr, bus_generic_setup_intr), 167 DEVMETHOD(bus_teardown_intr, bus_generic_teardown_intr), 168 169 /* ACPI bus */ 170 DEVMETHOD(acpi_id_probe, acpi_device_id_probe), 171 DEVMETHOD(acpi_evaluate_object, acpi_device_eval_obj), 172 DEVMETHOD(acpi_walk_namespace, acpi_device_walk_ns), 173 174 /* ISA emulation */ 175 DEVMETHOD(isa_pnp_probe, acpi_isa_pnp_probe), 176 177 {0, 0} 178 }; 179 180 static driver_t acpi_driver = { 181 "acpi", 182 acpi_methods, 183 sizeof(struct acpi_softc), 184 }; 185 186 static devclass_t acpi_devclass; 187 DRIVER_MODULE(acpi, nexus, acpi_driver, acpi_devclass, acpi_modevent, 0); 188 MODULE_VERSION(acpi, 1); 189 190 static const char* sleep_state_names[] = { 191 "S0", "S1", "S2", "S3", "S4", "S5", "NONE"}; 192 193 SYSCTL_NODE(_debug, OID_AUTO, acpi, CTLFLAG_RW, NULL, "ACPI debugging"); 194 static char acpi_ca_version[12]; 195 SYSCTL_STRING(_debug_acpi, OID_AUTO, acpi_ca_version, CTLFLAG_RD, 196 acpi_ca_version, 0, "Version of Intel ACPI-CA"); 197 198 /* 199 * Allow override of whether methods execute in parallel or not. 200 * Enable this for serial behavior, which fixes "AE_ALREADY_EXISTS" 201 * errors for AML that really can't handle parallel method execution. 202 * It is off by default since this breaks recursive methods and 203 * some IBMs use such code. 204 */ 205 static int acpi_serialize_methods; 206 TUNABLE_INT("hw.acpi.serialize_methods", &acpi_serialize_methods); 207 208 /* 209 * ACPI can only be loaded as a module by the loader; activating it after 210 * system bootstrap time is not useful, and can be fatal to the system. 211 * It also cannot be unloaded, since the entire system bus heirarchy hangs 212 * off it. 213 */ 214 static int 215 acpi_modevent(struct module *mod, int event, void *junk) 216 { 217 switch (event) { 218 case MOD_LOAD: 219 if (!cold) { 220 printf("The ACPI driver cannot be loaded after boot.\n"); 221 return (EPERM); 222 } 223 break; 224 case MOD_UNLOAD: 225 if (!cold && power_pm_get_type() == POWER_PM_TYPE_ACPI) 226 return (EBUSY); 227 break; 228 default: 229 break; 230 } 231 return (0); 232 } 233 234 /* 235 * Perform early initialization. 236 */ 237 ACPI_STATUS 238 acpi_Startup(void) 239 { 240 #ifdef ACPI_DEBUGGER 241 char *debugpoint; 242 #endif 243 static int started = 0; 244 int error, val; 245 246 ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__); 247 248 if (started) 249 return_VALUE (0); 250 started = 1; 251 252 /* Initialise the ACPI mutex */ 253 mtx_init(&acpi_mutex, "ACPI global lock", NULL, MTX_DEF); 254 255 /* 256 * Set the globals from our tunables. This is needed because ACPI-CA 257 * uses UINT8 for some values and we have no tunable_byte. 258 */ 259 AcpiGbl_AllMethodsSerialized = (UINT8)acpi_serialize_methods; 260 261 /* Start up the ACPI CA subsystem. */ 262 #ifdef ACPI_DEBUGGER 263 debugpoint = getenv("debug.acpi.debugger"); 264 if (debugpoint) { 265 if (!strcmp(debugpoint, "init")) 266 acpi_EnterDebugger(); 267 freeenv(debugpoint); 268 } 269 #endif 270 if (ACPI_FAILURE(error = AcpiInitializeSubsystem())) { 271 printf("ACPI: initialisation failed: %s\n", AcpiFormatException(error)); 272 return_VALUE (error); 273 } 274 #ifdef ACPI_DEBUGGER 275 debugpoint = getenv("debug.acpi.debugger"); 276 if (debugpoint) { 277 if (!strcmp(debugpoint, "tables")) 278 acpi_EnterDebugger(); 279 freeenv(debugpoint); 280 } 281 #endif 282 283 if (ACPI_FAILURE(error = AcpiLoadTables())) { 284 printf("ACPI: table load failed: %s\n", AcpiFormatException(error)); 285 AcpiTerminate(); 286 return_VALUE (error); 287 } 288 289 /* Set up any quirks we have for this system. */ 290 acpi_table_quirks(&acpi_quirks); 291 292 /* If the user manually set the disabled hint to 0, override any quirk. */ 293 if (resource_int_value("acpi", 0, "disabled", &val) == 0 && val == 0) 294 acpi_quirks &= ~ACPI_Q_BROKEN; 295 if (acpi_quirks & ACPI_Q_BROKEN) { 296 printf("ACPI disabled by blacklist. Contact your BIOS vendor.\n"); 297 AcpiTerminate(); 298 return_VALUE (AE_ERROR); 299 } 300 301 return_VALUE (AE_OK); 302 } 303 304 /* 305 * Detect ACPI, perform early initialisation 306 */ 307 static void 308 acpi_identify(driver_t *driver, device_t parent) 309 { 310 device_t child; 311 312 ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__); 313 314 if (!cold) 315 return_VOID; 316 317 /* Check that we haven't been disabled with a hint. */ 318 if (resource_disabled("acpi", 0)) 319 return_VOID; 320 321 /* Make sure we're not being doubly invoked. */ 322 if (device_find_child(parent, "acpi", 0) != NULL) 323 return_VOID; 324 325 /* Initialize ACPI-CA. */ 326 if (ACPI_FAILURE(acpi_Startup())) 327 return_VOID; 328 329 snprintf(acpi_ca_version, sizeof(acpi_ca_version), "%#x", ACPI_CA_VERSION); 330 331 /* Attach the actual ACPI device. */ 332 if ((child = BUS_ADD_CHILD(parent, 0, "acpi", 0)) == NULL) { 333 device_printf(parent, "ACPI: could not attach\n"); 334 return_VOID; 335 } 336 } 337 338 /* 339 * Fetch some descriptive data from ACPI to put in our attach message 340 */ 341 static int 342 acpi_probe(device_t dev) 343 { 344 ACPI_TABLE_HEADER th; 345 char buf[20]; 346 int error; 347 struct sbuf sb; 348 ACPI_STATUS status; 349 ACPI_LOCK_DECL; 350 351 ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__); 352 353 if (power_pm_get_type() != POWER_PM_TYPE_NONE && 354 power_pm_get_type() != POWER_PM_TYPE_ACPI) { 355 356 device_printf(dev, "Other PM system enabled.\n"); 357 return_VALUE(ENXIO); 358 } 359 360 ACPI_LOCK; 361 362 if (ACPI_FAILURE(status = AcpiGetTableHeader(ACPI_TABLE_XSDT, 1, &th))) { 363 device_printf(dev, "couldn't get XSDT header: %s\n", 364 AcpiFormatException(status)); 365 error = ENXIO; 366 } else { 367 sbuf_new(&sb, buf, sizeof(buf), SBUF_FIXEDLEN); 368 sbuf_bcat(&sb, th.OemId, 6); 369 sbuf_trim(&sb); 370 sbuf_putc(&sb, ' '); 371 sbuf_bcat(&sb, th.OemTableId, 8); 372 sbuf_trim(&sb); 373 sbuf_finish(&sb); 374 device_set_desc_copy(dev, sbuf_data(&sb)); 375 sbuf_delete(&sb); 376 error = 0; 377 } 378 ACPI_UNLOCK; 379 return_VALUE(error); 380 } 381 382 static int 383 acpi_attach(device_t dev) 384 { 385 struct acpi_softc *sc; 386 ACPI_STATUS status; 387 int error, state; 388 UINT32 flags; 389 UINT8 TypeA, TypeB; 390 char *env; 391 #ifdef ACPI_DEBUGGER 392 char *debugpoint; 393 #endif 394 ACPI_LOCK_DECL; 395 396 ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__); 397 ACPI_LOCK; 398 sc = device_get_softc(dev); 399 bzero(sc, sizeof(*sc)); 400 sc->acpi_dev = dev; 401 402 /* Initialize resource manager. */ 403 acpi_rman_io.rm_type = RMAN_ARRAY; 404 acpi_rman_io.rm_start = 0; 405 acpi_rman_io.rm_end = 0xffff; 406 acpi_rman_io.rm_descr = "I/O ports"; 407 if (rman_init(&acpi_rman_io) != 0) 408 panic("acpi rman_init IO ports failed"); 409 acpi_rman_mem.rm_type = RMAN_ARRAY; 410 acpi_rman_mem.rm_start = 0; 411 acpi_rman_mem.rm_end = ~0ul; 412 acpi_rman_mem.rm_descr = "I/O memory addresses"; 413 if (rman_init(&acpi_rman_mem) != 0) 414 panic("acpi rman_init memory failed"); 415 416 #ifdef ACPI_DEBUGGER 417 debugpoint = getenv("debug.acpi.debugger"); 418 if (debugpoint) { 419 if (!strcmp(debugpoint, "spaces")) 420 acpi_EnterDebugger(); 421 freeenv(debugpoint); 422 } 423 #endif 424 425 /* Install the default address space handlers. */ 426 error = ENXIO; 427 status = AcpiInstallAddressSpaceHandler(ACPI_ROOT_OBJECT, 428 ACPI_ADR_SPACE_SYSTEM_MEMORY, ACPI_DEFAULT_HANDLER, NULL, NULL); 429 if (ACPI_FAILURE(status)) { 430 device_printf(dev, "Could not initialise SystemMemory handler: %s\n", 431 AcpiFormatException(status)); 432 goto out; 433 } 434 status = AcpiInstallAddressSpaceHandler(ACPI_ROOT_OBJECT, 435 ACPI_ADR_SPACE_SYSTEM_IO, ACPI_DEFAULT_HANDLER, NULL, NULL); 436 if (ACPI_FAILURE(status)) { 437 device_printf(dev, "Could not initialise SystemIO handler: %s\n", 438 AcpiFormatException(status)); 439 goto out; 440 } 441 status = AcpiInstallAddressSpaceHandler(ACPI_ROOT_OBJECT, 442 ACPI_ADR_SPACE_PCI_CONFIG, ACPI_DEFAULT_HANDLER, NULL, NULL); 443 if (ACPI_FAILURE(status)) { 444 device_printf(dev, "could not initialise PciConfig handler: %s\n", 445 AcpiFormatException(status)); 446 goto out; 447 } 448 449 /* 450 * Bring ACPI fully online. 451 * 452 * Note that some systems (specifically, those with namespace evaluation 453 * issues that require the avoidance of parts of the namespace) must 454 * avoid running _INI and _STA on everything, as well as dodging the final 455 * object init pass. 456 * 457 * For these devices, we set ACPI_NO_DEVICE_INIT and ACPI_NO_OBJECT_INIT). 458 * 459 * XXX We should arrange for the object init pass after we have attached 460 * all our child devices, but on many systems it works here. 461 */ 462 #ifdef ACPI_DEBUGGER 463 debugpoint = getenv("debug.acpi.debugger"); 464 if (debugpoint) { 465 if (!strcmp(debugpoint, "enable")) 466 acpi_EnterDebugger(); 467 freeenv(debugpoint); 468 } 469 #endif 470 flags = 0; 471 if (testenv("debug.acpi.avoid")) 472 flags = ACPI_NO_DEVICE_INIT | ACPI_NO_OBJECT_INIT; 473 if (ACPI_FAILURE(status = AcpiEnableSubsystem(flags))) { 474 device_printf(dev, "Could not enable ACPI: %s\n", 475 AcpiFormatException(status)); 476 goto out; 477 } 478 479 /* 480 * Call the ECDT probe function to provide EC functionality before 481 * the namespace has been evaluated. 482 */ 483 acpi_ec_ecdt_probe(dev); 484 485 if (ACPI_FAILURE(status = AcpiInitializeObjects(flags))) { 486 device_printf(dev, "Could not initialize ACPI objects: %s\n", 487 AcpiFormatException(status)); 488 goto out; 489 } 490 491 /* 492 * Setup our sysctl tree. 493 * 494 * XXX: This doesn't check to make sure that none of these fail. 495 */ 496 sysctl_ctx_init(&sc->acpi_sysctl_ctx); 497 sc->acpi_sysctl_tree = SYSCTL_ADD_NODE(&sc->acpi_sysctl_ctx, 498 SYSCTL_STATIC_CHILDREN(_hw), OID_AUTO, 499 device_get_name(dev), CTLFLAG_RD, 0, ""); 500 SYSCTL_ADD_PROC(&sc->acpi_sysctl_ctx, SYSCTL_CHILDREN(sc->acpi_sysctl_tree), 501 OID_AUTO, "supported_sleep_state", CTLTYPE_STRING | CTLFLAG_RD, 502 0, 0, acpi_supported_sleep_state_sysctl, "A", ""); 503 SYSCTL_ADD_PROC(&sc->acpi_sysctl_ctx, SYSCTL_CHILDREN(sc->acpi_sysctl_tree), 504 OID_AUTO, "power_button_state", CTLTYPE_STRING | CTLFLAG_RW, 505 &sc->acpi_power_button_sx, 0, acpi_sleep_state_sysctl, "A", ""); 506 SYSCTL_ADD_PROC(&sc->acpi_sysctl_ctx, SYSCTL_CHILDREN(sc->acpi_sysctl_tree), 507 OID_AUTO, "sleep_button_state", CTLTYPE_STRING | CTLFLAG_RW, 508 &sc->acpi_sleep_button_sx, 0, acpi_sleep_state_sysctl, "A", ""); 509 SYSCTL_ADD_PROC(&sc->acpi_sysctl_ctx, SYSCTL_CHILDREN(sc->acpi_sysctl_tree), 510 OID_AUTO, "lid_switch_state", CTLTYPE_STRING | CTLFLAG_RW, 511 &sc->acpi_lid_switch_sx, 0, acpi_sleep_state_sysctl, "A", ""); 512 SYSCTL_ADD_PROC(&sc->acpi_sysctl_ctx, SYSCTL_CHILDREN(sc->acpi_sysctl_tree), 513 OID_AUTO, "standby_state", CTLTYPE_STRING | CTLFLAG_RW, 514 &sc->acpi_standby_sx, 0, acpi_sleep_state_sysctl, "A", ""); 515 SYSCTL_ADD_PROC(&sc->acpi_sysctl_ctx, SYSCTL_CHILDREN(sc->acpi_sysctl_tree), 516 OID_AUTO, "suspend_state", CTLTYPE_STRING | CTLFLAG_RW, 517 &sc->acpi_suspend_sx, 0, acpi_sleep_state_sysctl, "A", ""); 518 SYSCTL_ADD_INT(&sc->acpi_sysctl_ctx, SYSCTL_CHILDREN(sc->acpi_sysctl_tree), 519 OID_AUTO, "sleep_delay", CTLFLAG_RD | CTLFLAG_RW, 520 &sc->acpi_sleep_delay, 0, "sleep delay"); 521 SYSCTL_ADD_INT(&sc->acpi_sysctl_ctx, SYSCTL_CHILDREN(sc->acpi_sysctl_tree), 522 OID_AUTO, "s4bios", CTLFLAG_RD | CTLFLAG_RW, 523 &sc->acpi_s4bios, 0, "S4BIOS mode"); 524 SYSCTL_ADD_INT(&sc->acpi_sysctl_ctx, SYSCTL_CHILDREN(sc->acpi_sysctl_tree), 525 OID_AUTO, "verbose", CTLFLAG_RD | CTLFLAG_RW, 526 &sc->acpi_verbose, 0, "verbose mode"); 527 528 /* 529 * Default to 1 second before sleeping to give some machines time to 530 * stabilize. 531 */ 532 sc->acpi_sleep_delay = 1; 533 if (bootverbose) 534 sc->acpi_verbose = 1; 535 if ((env = getenv("hw.acpi.verbose")) && strcmp(env, "0")) { 536 sc->acpi_verbose = 1; 537 freeenv(env); 538 } 539 540 /* Only enable S4BIOS by default if the FACS says it is available. */ 541 if (AcpiGbl_FACS->S4Bios_f != 0) 542 sc->acpi_s4bios = 1; 543 544 /* 545 * Dispatch the default sleep state to devices. The lid switch is set 546 * to NONE by default to avoid surprising users. 547 */ 548 sc->acpi_power_button_sx = ACPI_STATE_S5; 549 sc->acpi_lid_switch_sx = ACPI_S_STATES_MAX + 1; 550 sc->acpi_standby_sx = ACPI_STATE_S1; 551 sc->acpi_suspend_sx = ACPI_STATE_S3; 552 553 /* Pick the first valid sleep state for the sleep button default. */ 554 sc->acpi_sleep_button_sx = ACPI_S_STATES_MAX + 1; 555 for (state = ACPI_STATE_S1; state < ACPI_STATE_S5; state++) 556 if (ACPI_SUCCESS(AcpiGetSleepTypeData(state, &TypeA, &TypeB))) { 557 sc->acpi_sleep_button_sx = state; 558 break; 559 } 560 561 acpi_enable_fixed_events(sc); 562 563 /* 564 * Scan the namespace and attach/initialise children. 565 */ 566 #ifdef ACPI_DEBUGGER 567 debugpoint = getenv("debug.acpi.debugger"); 568 if (debugpoint) { 569 if (!strcmp(debugpoint, "probe")) 570 acpi_EnterDebugger(); 571 freeenv(debugpoint); 572 } 573 #endif 574 575 /* Register our shutdown handler. */ 576 EVENTHANDLER_REGISTER(shutdown_final, acpi_shutdown_final, sc, 577 SHUTDOWN_PRI_LAST); 578 579 /* 580 * Register our acpi event handlers. 581 * XXX should be configurable eg. via userland policy manager. 582 */ 583 EVENTHANDLER_REGISTER(acpi_sleep_event, acpi_system_eventhandler_sleep, 584 sc, ACPI_EVENT_PRI_LAST); 585 EVENTHANDLER_REGISTER(acpi_wakeup_event, acpi_system_eventhandler_wakeup, 586 sc, ACPI_EVENT_PRI_LAST); 587 588 /* Flag our initial states. */ 589 sc->acpi_enabled = 1; 590 sc->acpi_sstate = ACPI_STATE_S0; 591 sc->acpi_sleep_disabled = 0; 592 593 /* Create the control device */ 594 sc->acpi_dev_t = make_dev(&acpi_cdevsw, 0, UID_ROOT, GID_WHEEL, 0644, 595 "acpi"); 596 sc->acpi_dev_t->si_drv1 = sc; 597 598 #ifdef ACPI_DEBUGGER 599 debugpoint = getenv("debug.acpi.debugger"); 600 if (debugpoint) { 601 if (strcmp(debugpoint, "running") == 0) 602 acpi_EnterDebugger(); 603 freeenv(debugpoint); 604 } 605 #endif 606 607 #ifdef ACPI_USE_THREADS 608 if ((error = acpi_task_thread_init())) 609 goto out; 610 #endif 611 612 if ((error = acpi_machdep_init(dev))) 613 goto out; 614 615 /* Register ACPI again to pass the correct argument of pm_func. */ 616 power_pm_register(POWER_PM_TYPE_ACPI, acpi_pm_func, sc); 617 618 if (!acpi_disabled("bus")) 619 acpi_probe_children(dev); 620 621 error = 0; 622 623 out: 624 ACPI_UNLOCK; 625 return_VALUE (error); 626 } 627 628 static int 629 acpi_shutdown(device_t dev) 630 { 631 632 /* Allow children to shutdown first. */ 633 bus_generic_shutdown(dev); 634 635 /* Enable any GPEs that are able to power-on the system (i.e., RTC). */ 636 acpi_wake_prep_walk(ACPI_STATE_S5); 637 638 return (0); 639 } 640 641 /* 642 * Handle a new device being added 643 */ 644 static device_t 645 acpi_add_child(device_t bus, int order, const char *name, int unit) 646 { 647 struct acpi_device *ad; 648 device_t child; 649 650 if ((ad = malloc(sizeof(*ad), M_ACPIDEV, M_NOWAIT | M_ZERO)) == NULL) 651 return (NULL); 652 653 resource_list_init(&ad->ad_rl); 654 655 child = device_add_child_ordered(bus, order, name, unit); 656 if (child != NULL) 657 device_set_ivars(child, ad); 658 return (child); 659 } 660 661 static int 662 acpi_print_child(device_t bus, device_t child) 663 { 664 struct acpi_device *adev = device_get_ivars(child); 665 struct resource_list *rl = &adev->ad_rl; 666 int retval = 0; 667 668 retval += bus_print_child_header(bus, child); 669 retval += resource_list_print_type(rl, "port", SYS_RES_IOPORT, "%#lx"); 670 retval += resource_list_print_type(rl, "iomem", SYS_RES_MEMORY, "%#lx"); 671 retval += resource_list_print_type(rl, "irq", SYS_RES_IRQ, "%ld"); 672 retval += resource_list_print_type(rl, "drq", SYS_RES_DRQ, "%ld"); 673 retval += bus_print_child_footer(bus, child); 674 675 return (retval); 676 } 677 678 /* Location hint for devctl(8) */ 679 static int 680 acpi_child_location_str_method(device_t cbdev, device_t child, char *buf, 681 size_t buflen) 682 { 683 struct acpi_device *dinfo = device_get_ivars(child); 684 685 if (dinfo->ad_handle) 686 snprintf(buf, buflen, "path=%s", acpi_name(dinfo->ad_handle)); 687 else 688 snprintf(buf, buflen, "magic=unknown"); 689 return (0); 690 } 691 692 /* PnP information for devctl(8) */ 693 static int 694 acpi_child_pnpinfo_str_method(device_t cbdev, device_t child, char *buf, 695 size_t buflen) 696 { 697 ACPI_BUFFER adbuf = {ACPI_ALLOCATE_BUFFER, NULL}; 698 ACPI_DEVICE_INFO *adinfo; 699 struct acpi_device *dinfo = device_get_ivars(child); 700 char *end; 701 int error; 702 703 error = AcpiGetObjectInfo(dinfo->ad_handle, &adbuf); 704 adinfo = (ACPI_DEVICE_INFO *) adbuf.Pointer; 705 706 if (error) 707 snprintf(buf, buflen, "Unknown"); 708 else 709 snprintf(buf, buflen, "_HID=%s _UID=%lu", 710 (adinfo->Valid & ACPI_VALID_HID) ? 711 adinfo->HardwareId.Value : "UNKNOWN", 712 (adinfo->Valid & ACPI_VALID_UID) ? 713 strtoul(adinfo->UniqueId.Value, &end, 10) : 0); 714 715 if (adinfo) 716 AcpiOsFree(adinfo); 717 718 return (0); 719 } 720 721 /* 722 * Handle per-device ivars 723 */ 724 static int 725 acpi_read_ivar(device_t dev, device_t child, int index, uintptr_t *result) 726 { 727 struct acpi_device *ad; 728 729 if ((ad = device_get_ivars(child)) == NULL) { 730 printf("device has no ivars\n"); 731 return (ENOENT); 732 } 733 734 /* ACPI and ISA compatibility ivars */ 735 switch(index) { 736 case ACPI_IVAR_HANDLE: 737 *(ACPI_HANDLE *)result = ad->ad_handle; 738 break; 739 case ACPI_IVAR_MAGIC: 740 *(int *)result = ad->ad_magic; 741 break; 742 case ACPI_IVAR_PRIVATE: 743 *(void **)result = ad->ad_private; 744 break; 745 case ACPI_IVAR_FLAGS: 746 *(int *)result = ad->ad_flags; 747 break; 748 case ISA_IVAR_VENDORID: 749 case ISA_IVAR_SERIAL: 750 case ISA_IVAR_COMPATID: 751 *(int *)result = -1; 752 break; 753 case ISA_IVAR_LOGICALID: 754 *(int *)result = acpi_isa_get_logicalid(child); 755 break; 756 default: 757 return (ENOENT); 758 } 759 760 return (0); 761 } 762 763 static int 764 acpi_write_ivar(device_t dev, device_t child, int index, uintptr_t value) 765 { 766 struct acpi_device *ad; 767 768 if ((ad = device_get_ivars(child)) == NULL) { 769 printf("device has no ivars\n"); 770 return (ENOENT); 771 } 772 773 switch(index) { 774 case ACPI_IVAR_HANDLE: 775 ad->ad_handle = (ACPI_HANDLE)value; 776 break; 777 case ACPI_IVAR_MAGIC: 778 ad->ad_magic = (int)value; 779 break; 780 case ACPI_IVAR_PRIVATE: 781 ad->ad_private = (void *)value; 782 break; 783 case ACPI_IVAR_FLAGS: 784 ad->ad_flags = (int)value; 785 break; 786 default: 787 panic("bad ivar write request (%d)", index); 788 return (ENOENT); 789 } 790 791 return (0); 792 } 793 794 /* 795 * Handle child resource allocation/removal 796 */ 797 static struct resource_list * 798 acpi_get_rlist(device_t dev, device_t child) 799 { 800 struct acpi_device *ad; 801 802 ad = device_get_ivars(child); 803 return (&ad->ad_rl); 804 } 805 806 static struct resource * 807 acpi_alloc_resource(device_t bus, device_t child, int type, int *rid, 808 u_long start, u_long end, u_long count, u_int flags) 809 { 810 ACPI_RESOURCE ares; 811 struct acpi_device *ad = device_get_ivars(child); 812 struct resource_list *rl = &ad->ad_rl; 813 struct resource_list_entry *rle; 814 struct resource *res; 815 struct rman *rm; 816 817 /* 818 * If this is an allocation of the "default" range for a given RID, and 819 * we know what the resources for this device are (i.e., they're on the 820 * child's resource list), use those start/end values. 821 */ 822 if (start == 0UL && end == ~0UL) { 823 rle = resource_list_find(rl, type, *rid); 824 if (rle == NULL) 825 return (NULL); 826 start = rle->start; 827 end = rle->end; 828 count = rle->count; 829 } 830 831 /* If we don't manage this address, pass the request up to the parent. */ 832 rle = acpi_sysres_find(type, start); 833 if (rle == NULL) { 834 res = BUS_ALLOC_RESOURCE(device_get_parent(bus), child, type, rid, 835 start, end, count, flags); 836 } else { 837 838 /* We only handle memory and IO resources through rman. */ 839 switch (type) { 840 case SYS_RES_IOPORT: 841 rm = &acpi_rman_io; 842 break; 843 case SYS_RES_MEMORY: 844 rm = &acpi_rman_mem; 845 break; 846 default: 847 panic("acpi_alloc_resource: invalid res type %d", type); 848 } 849 850 /* If we do know it, allocate it from the local pool. */ 851 res = rman_reserve_resource(rm, start, end, count, flags & ~RF_ACTIVE, 852 child); 853 if (res == NULL) 854 return (NULL); 855 856 /* Copy the bus tag and handle from the pre-allocated resource. */ 857 rman_set_bustag(res, rman_get_bustag(rle->res)); 858 rman_set_bushandle(res, rman_get_start(res)); 859 860 /* If requested, activate the resource using the parent's method. */ 861 if (flags & RF_ACTIVE) 862 if (bus_activate_resource(child, type, *rid, res) != 0) { 863 rman_release_resource(res); 864 return (NULL); 865 } 866 } 867 868 if (res != NULL && device_get_parent(child) == bus) 869 switch (type) { 870 case SYS_RES_IRQ: 871 /* 872 * Since bus_config_intr() takes immediate effect, we cannot 873 * configure the interrupt associated with a device when we 874 * parse the resources but have to defer it until a driver 875 * actually allocates the interrupt via bus_alloc_resource(). 876 * 877 * XXX: Should we handle the lookup failing? 878 */ 879 if (ACPI_SUCCESS(acpi_lookup_irq_resource(child, *rid, res, &ares))) 880 acpi_config_intr(child, &ares); 881 break; 882 } 883 return (res); 884 } 885 886 static int 887 acpi_release_resource(device_t bus, device_t child, int type, int rid, 888 struct resource *r) 889 { 890 int ret; 891 892 /* 893 * If we know about this address, deactivate it and release it to the 894 * local pool. If we don't, pass this request up to the parent. 895 */ 896 if (acpi_sysres_find(type, rman_get_start(r)) == NULL) { 897 if (rman_get_flags(r) & RF_ACTIVE) { 898 ret = bus_deactivate_resource(child, type, rid, r); 899 if (ret != 0) 900 return (ret); 901 } 902 ret = rman_release_resource(r); 903 } else 904 ret = BUS_RELEASE_RESOURCE(device_get_parent(bus), child, type, rid, r); 905 906 return (ret); 907 } 908 909 /* Allocate an IO port or memory resource, given its GAS. */ 910 struct resource * 911 acpi_bus_alloc_gas(device_t dev, int *rid, ACPI_GENERIC_ADDRESS *gas) 912 { 913 int type; 914 915 if (gas == NULL || !ACPI_VALID_ADDRESS(gas->Address) || 916 gas->RegisterBitWidth < 8) 917 return (NULL); 918 919 switch (gas->AddressSpaceId) { 920 case ACPI_ADR_SPACE_SYSTEM_MEMORY: 921 type = SYS_RES_MEMORY; 922 break; 923 case ACPI_ADR_SPACE_SYSTEM_IO: 924 type = SYS_RES_IOPORT; 925 break; 926 default: 927 return (NULL); 928 } 929 930 bus_set_resource(dev, type, *rid, gas->Address, gas->RegisterBitWidth / 8); 931 return (bus_alloc_resource_any(dev, type, rid, RF_ACTIVE)); 932 } 933 934 /* Probe _HID and _CID for compatible ISA PNP ids. */ 935 static uint32_t 936 acpi_isa_get_logicalid(device_t dev) 937 { 938 ACPI_DEVICE_INFO *devinfo; 939 ACPI_BUFFER buf; 940 ACPI_HANDLE h; 941 ACPI_STATUS error; 942 u_int32_t pnpid; 943 ACPI_LOCK_DECL; 944 945 ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__); 946 947 pnpid = 0; 948 buf.Pointer = NULL; 949 buf.Length = ACPI_ALLOCATE_BUFFER; 950 951 ACPI_LOCK; 952 953 /* Fetch and validate the HID. */ 954 if ((h = acpi_get_handle(dev)) == NULL) 955 goto out; 956 error = AcpiGetObjectInfo(h, &buf); 957 if (ACPI_FAILURE(error)) 958 goto out; 959 devinfo = (ACPI_DEVICE_INFO *)buf.Pointer; 960 961 if ((devinfo->Valid & ACPI_VALID_HID) != 0) 962 pnpid = PNP_EISAID(devinfo->HardwareId.Value); 963 964 out: 965 if (buf.Pointer != NULL) 966 AcpiOsFree(buf.Pointer); 967 ACPI_UNLOCK; 968 return_VALUE (pnpid); 969 } 970 971 static int 972 acpi_isa_get_compatid(device_t dev, uint32_t *cids, int count) 973 { 974 ACPI_DEVICE_INFO *devinfo; 975 ACPI_BUFFER buf; 976 ACPI_HANDLE h; 977 ACPI_STATUS error; 978 uint32_t *pnpid; 979 int valid, i; 980 ACPI_LOCK_DECL; 981 982 ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__); 983 984 pnpid = cids; 985 valid = 0; 986 buf.Pointer = NULL; 987 buf.Length = ACPI_ALLOCATE_BUFFER; 988 989 ACPI_LOCK; 990 991 /* Fetch and validate the CID */ 992 if ((h = acpi_get_handle(dev)) == NULL) 993 goto out; 994 error = AcpiGetObjectInfo(h, &buf); 995 if (ACPI_FAILURE(error)) 996 goto out; 997 devinfo = (ACPI_DEVICE_INFO *)buf.Pointer; 998 if ((devinfo->Valid & ACPI_VALID_CID) == 0) 999 goto out; 1000 1001 if (devinfo->CompatibilityId.Count < count) 1002 count = devinfo->CompatibilityId.Count; 1003 for (i = 0; i < count; i++) { 1004 if (strncmp(devinfo->CompatibilityId.Id[i].Value, "PNP", 3) != 0) 1005 continue; 1006 *pnpid++ = PNP_EISAID(devinfo->CompatibilityId.Id[i].Value); 1007 valid++; 1008 } 1009 1010 out: 1011 if (buf.Pointer != NULL) 1012 AcpiOsFree(buf.Pointer); 1013 ACPI_UNLOCK; 1014 return_VALUE (valid); 1015 } 1016 1017 static char * 1018 acpi_device_id_probe(device_t bus, device_t dev, char **ids) 1019 { 1020 ACPI_HANDLE h; 1021 int i; 1022 1023 h = acpi_get_handle(dev); 1024 if (ids == NULL || h == NULL || acpi_get_type(dev) != ACPI_TYPE_DEVICE) 1025 return (NULL); 1026 1027 /* Try to match one of the array of IDs with a HID or CID. */ 1028 for (i = 0; ids[i] != NULL; i++) { 1029 if (acpi_MatchHid(h, ids[i])) 1030 return (ids[i]); 1031 } 1032 return (NULL); 1033 } 1034 1035 static ACPI_STATUS 1036 acpi_device_eval_obj(device_t bus, device_t dev, ACPI_STRING pathname, 1037 ACPI_OBJECT_LIST *parameters, ACPI_BUFFER *ret) 1038 { 1039 ACPI_HANDLE h; 1040 1041 if ((h = acpi_get_handle(dev)) == NULL) 1042 return (AE_BAD_PARAMETER); 1043 return (AcpiEvaluateObject(h, pathname, parameters, ret)); 1044 } 1045 1046 static ACPI_STATUS 1047 acpi_device_walk_ns(device_t bus, device_t dev, ACPI_OBJECT_TYPE type, 1048 UINT32 max_depth, ACPI_WALK_CALLBACK user_fn, void *context, void **ret) 1049 { 1050 ACPI_HANDLE h; 1051 1052 if ((h = acpi_get_handle(dev)) == NULL) 1053 return (AE_BAD_PARAMETER); 1054 return (AcpiWalkNamespace(type, h, max_depth, user_fn, context, ret)); 1055 } 1056 1057 static int 1058 acpi_isa_pnp_probe(device_t bus, device_t child, struct isa_pnp_id *ids) 1059 { 1060 int result, cid_count, i; 1061 uint32_t lid, cids[8]; 1062 1063 ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__); 1064 1065 /* 1066 * ISA-style drivers attached to ACPI may persist and 1067 * probe manually if we return ENOENT. We never want 1068 * that to happen, so don't ever return it. 1069 */ 1070 result = ENXIO; 1071 1072 /* Scan the supplied IDs for a match */ 1073 lid = acpi_isa_get_logicalid(child); 1074 cid_count = acpi_isa_get_compatid(child, cids, 8); 1075 while (ids && ids->ip_id) { 1076 if (lid == ids->ip_id) { 1077 result = 0; 1078 goto out; 1079 } 1080 for (i = 0; i < cid_count; i++) { 1081 if (cids[i] == ids->ip_id) { 1082 result = 0; 1083 goto out; 1084 } 1085 } 1086 ids++; 1087 } 1088 1089 out: 1090 return_VALUE (result); 1091 } 1092 1093 /* 1094 * Scan relevant portions of the ACPI namespace and attach child devices. 1095 * 1096 * Note that we only expect to find devices in the \_PR_, \_TZ_, \_SI_ and 1097 * \_SB_ scopes, and \_PR_ and \_TZ_ become obsolete in the ACPI 2.0 spec. 1098 */ 1099 static void 1100 acpi_probe_children(device_t bus) 1101 { 1102 ACPI_HANDLE parent; 1103 ACPI_STATUS status; 1104 int i; 1105 static char *scopes[] = {"\\_PR_", "\\_TZ_", "\\_SI", "\\_SB_", NULL}; 1106 1107 ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__); 1108 ACPI_ASSERTLOCK; 1109 1110 /* Create any static children by calling device identify methods. */ 1111 ACPI_DEBUG_PRINT((ACPI_DB_OBJECTS, "device identify routines\n")); 1112 bus_generic_probe(bus); 1113 1114 /* 1115 * Scan the namespace and insert placeholders for all the devices that 1116 * we find. 1117 * 1118 * Note that we use AcpiWalkNamespace rather than AcpiGetDevices because 1119 * we want to create nodes for all devices, not just those that are 1120 * currently present. (This assumes that we don't want to create/remove 1121 * devices as they appear, which might be smarter.) 1122 */ 1123 ACPI_DEBUG_PRINT((ACPI_DB_OBJECTS, "namespace scan\n")); 1124 for (i = 0; scopes[i] != NULL; i++) { 1125 status = AcpiGetHandle(ACPI_ROOT_OBJECT, scopes[i], &parent); 1126 if (ACPI_SUCCESS(status)) { 1127 AcpiWalkNamespace(ACPI_TYPE_ANY, parent, 100, acpi_probe_child, 1128 bus, NULL); 1129 } 1130 } 1131 1132 /* 1133 * Scan all of the child devices we have created and let them probe/attach. 1134 */ 1135 ACPI_DEBUG_PRINT((ACPI_DB_OBJECTS, "first bus_generic_attach\n")); 1136 bus_generic_attach(bus); 1137 1138 /* 1139 * Some of these children may have attached others as part of their attach 1140 * process (eg. the root PCI bus driver), so rescan. 1141 */ 1142 ACPI_DEBUG_PRINT((ACPI_DB_OBJECTS, "second bus_generic_attach\n")); 1143 bus_generic_attach(bus); 1144 1145 /* Attach wake sysctls. */ 1146 acpi_wake_sysctl_walk(bus); 1147 1148 ACPI_DEBUG_PRINT((ACPI_DB_OBJECTS, "done attaching children\n")); 1149 return_VOID; 1150 } 1151 1152 /* 1153 * Determine the probe order for a given device and return non-zero if it 1154 * should be attached immediately. 1155 */ 1156 static int 1157 acpi_probe_order(ACPI_HANDLE handle, int *order) 1158 { 1159 int ret; 1160 1161 /* 1162 * 1. I/O port and memory system resource holders 1163 * 2. Embedded controllers (to handle early accesses) 1164 */ 1165 ret = 0; 1166 if (acpi_MatchHid(handle, "PNP0C01") || acpi_MatchHid(handle, "PNP0C02")) { 1167 *order = 1; 1168 ret = 1; 1169 } else if (acpi_MatchHid(handle, "PNP0C09")) { 1170 *order = 2; 1171 ret = 1; 1172 } 1173 1174 /* Always probe/attach immediately if we're debugging. */ 1175 ACPI_DEBUG_EXEC(ret = 1); 1176 1177 return (ret); 1178 } 1179 1180 /* 1181 * Evaluate a child device and determine whether we might attach a device to 1182 * it. 1183 */ 1184 static ACPI_STATUS 1185 acpi_probe_child(ACPI_HANDLE handle, UINT32 level, void *context, void **status) 1186 { 1187 ACPI_OBJECT_TYPE type; 1188 device_t child, bus; 1189 int order, probe_now; 1190 1191 ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__); 1192 1193 /* Skip this device if we think we'll have trouble with it. */ 1194 if (acpi_avoid(handle)) 1195 return_ACPI_STATUS (AE_OK); 1196 1197 bus = (device_t)context; 1198 if (ACPI_SUCCESS(AcpiGetType(handle, &type))) { 1199 switch (type) { 1200 case ACPI_TYPE_DEVICE: 1201 case ACPI_TYPE_PROCESSOR: 1202 case ACPI_TYPE_THERMAL: 1203 case ACPI_TYPE_POWER: 1204 if (acpi_disabled("children")) 1205 break; 1206 1207 /* 1208 * Create a placeholder device for this node. Sort the placeholder 1209 * so that the probe/attach passes will run breadth-first. Orders 1210 * less than 10 are reserved for special objects (i.e., system 1211 * resources). Larger values are used for all other devices. 1212 */ 1213 ACPI_DEBUG_PRINT((ACPI_DB_OBJECTS, "scanning '%s'\n", 1214 acpi_name(handle))); 1215 order = (level + 1) * 10; 1216 probe_now = acpi_probe_order(handle, &order); 1217 child = BUS_ADD_CHILD(bus, order, NULL, -1); 1218 if (child == NULL) 1219 break; 1220 1221 /* Associate the handle with the device_t and vice versa. */ 1222 acpi_set_handle(child, handle); 1223 AcpiAttachData(handle, acpi_fake_objhandler, child); 1224 1225 /* 1226 * Check that the device is present. If it's not present, 1227 * leave it disabled (so that we have a device_t attached to 1228 * the handle, but we don't probe it). 1229 */ 1230 if (type == ACPI_TYPE_DEVICE && !acpi_DeviceIsPresent(child)) { 1231 device_disable(child); 1232 break; 1233 } 1234 1235 /* 1236 * Get the device's resource settings and attach them. 1237 * Note that if the device has _PRS but no _CRS, we need 1238 * to decide when it's appropriate to try to configure the 1239 * device. Ignore the return value here; it's OK for the 1240 * device not to have any resources. 1241 */ 1242 acpi_parse_resources(child, handle, &acpi_res_parse_set, NULL); 1243 1244 /* If order was overridden, probe/attach now rather than later. */ 1245 if (probe_now) 1246 device_probe_and_attach(child); 1247 break; 1248 } 1249 } 1250 1251 return_ACPI_STATUS (AE_OK); 1252 } 1253 1254 /* 1255 * AcpiAttachData() requires an object handler but never uses it. This is a 1256 * placeholder object handler so we can store a device_t in an ACPI_HANDLE. 1257 */ 1258 void 1259 acpi_fake_objhandler(ACPI_HANDLE h, UINT32 fn, void *data) 1260 { 1261 } 1262 1263 static void 1264 acpi_shutdown_final(void *arg, int howto) 1265 { 1266 ACPI_STATUS status; 1267 1268 /* 1269 * XXX Shutdown code should only run on the BSP (cpuid 0). 1270 * Some chipsets do not power off the system correctly if called from 1271 * an AP. 1272 */ 1273 if ((howto & RB_POWEROFF) != 0) { 1274 status = AcpiEnterSleepStatePrep(ACPI_STATE_S5); 1275 if (ACPI_FAILURE(status)) { 1276 printf("AcpiEnterSleepStatePrep failed - %s\n", 1277 AcpiFormatException(status)); 1278 return; 1279 } 1280 printf("Powering system off using ACPI\n"); 1281 ACPI_DISABLE_IRQS(); 1282 status = AcpiEnterSleepState(ACPI_STATE_S5); 1283 if (ACPI_FAILURE(status)) { 1284 printf("ACPI power-off failed - %s\n", AcpiFormatException(status)); 1285 } else { 1286 DELAY(1000000); 1287 printf("ACPI power-off failed - timeout\n"); 1288 } 1289 } else { 1290 printf("Shutting down ACPI\n"); 1291 AcpiTerminate(); 1292 } 1293 } 1294 1295 static void 1296 acpi_enable_fixed_events(struct acpi_softc *sc) 1297 { 1298 static int first_time = 1; 1299 1300 ACPI_ASSERTLOCK; 1301 1302 /* Enable and clear fixed events and install handlers. */ 1303 if (AcpiGbl_FADT != NULL && AcpiGbl_FADT->PwrButton == 0) { 1304 AcpiClearEvent(ACPI_EVENT_POWER_BUTTON); 1305 AcpiInstallFixedEventHandler(ACPI_EVENT_POWER_BUTTON, 1306 acpi_event_power_button_sleep, sc); 1307 if (first_time) 1308 device_printf(sc->acpi_dev, "Power Button (fixed)\n"); 1309 } 1310 if (AcpiGbl_FADT != NULL && AcpiGbl_FADT->SleepButton == 0) { 1311 AcpiClearEvent(ACPI_EVENT_SLEEP_BUTTON); 1312 AcpiInstallFixedEventHandler(ACPI_EVENT_SLEEP_BUTTON, 1313 acpi_event_sleep_button_sleep, sc); 1314 if (first_time) 1315 device_printf(sc->acpi_dev, "Sleep Button (fixed)\n"); 1316 } 1317 1318 first_time = 0; 1319 } 1320 1321 /* 1322 * Returns true if the device is actually present and should 1323 * be attached to. This requires the present, enabled, UI-visible 1324 * and diagnostics-passed bits to be set. 1325 */ 1326 BOOLEAN 1327 acpi_DeviceIsPresent(device_t dev) 1328 { 1329 ACPI_DEVICE_INFO *devinfo; 1330 ACPI_HANDLE h; 1331 ACPI_BUFFER buf; 1332 ACPI_STATUS error; 1333 int ret; 1334 1335 ACPI_ASSERTLOCK; 1336 1337 ret = FALSE; 1338 if ((h = acpi_get_handle(dev)) == NULL) 1339 return (FALSE); 1340 buf.Pointer = NULL; 1341 buf.Length = ACPI_ALLOCATE_BUFFER; 1342 error = AcpiGetObjectInfo(h, &buf); 1343 if (ACPI_FAILURE(error)) 1344 return (FALSE); 1345 devinfo = (ACPI_DEVICE_INFO *)buf.Pointer; 1346 1347 /* If no _STA method, must be present */ 1348 if ((devinfo->Valid & ACPI_VALID_STA) == 0) 1349 ret = TRUE; 1350 1351 /* Return true for 'present' and 'functioning' */ 1352 if ((devinfo->CurrentStatus & 0x9) == 0x9) 1353 ret = TRUE; 1354 1355 AcpiOsFree(buf.Pointer); 1356 return (ret); 1357 } 1358 1359 /* 1360 * Returns true if the battery is actually present and inserted. 1361 */ 1362 BOOLEAN 1363 acpi_BatteryIsPresent(device_t dev) 1364 { 1365 ACPI_DEVICE_INFO *devinfo; 1366 ACPI_HANDLE h; 1367 ACPI_BUFFER buf; 1368 ACPI_STATUS error; 1369 int ret; 1370 1371 ACPI_ASSERTLOCK; 1372 1373 ret = FALSE; 1374 if ((h = acpi_get_handle(dev)) == NULL) 1375 return (FALSE); 1376 buf.Pointer = NULL; 1377 buf.Length = ACPI_ALLOCATE_BUFFER; 1378 error = AcpiGetObjectInfo(h, &buf); 1379 if (ACPI_FAILURE(error)) 1380 return (FALSE); 1381 devinfo = (ACPI_DEVICE_INFO *)buf.Pointer; 1382 1383 /* If no _STA method, must be present */ 1384 if ((devinfo->Valid & ACPI_VALID_STA) == 0) 1385 ret = TRUE; 1386 1387 /* Return true for 'present' and 'functioning' */ 1388 if ((devinfo->CurrentStatus & 0x19) == 0x19) 1389 ret = TRUE; 1390 1391 AcpiOsFree(buf.Pointer); 1392 return (ret); 1393 } 1394 1395 /* 1396 * Match a HID string against a handle 1397 */ 1398 static BOOLEAN 1399 acpi_MatchHid(ACPI_HANDLE h, const char *hid) 1400 { 1401 ACPI_DEVICE_INFO *devinfo; 1402 ACPI_BUFFER buf; 1403 ACPI_STATUS error; 1404 int ret, i; 1405 1406 ACPI_ASSERTLOCK; 1407 1408 ret = FALSE; 1409 if (hid == NULL || h == NULL) 1410 return (ret); 1411 buf.Pointer = NULL; 1412 buf.Length = ACPI_ALLOCATE_BUFFER; 1413 error = AcpiGetObjectInfo(h, &buf); 1414 if (ACPI_FAILURE(error)) 1415 return (ret); 1416 devinfo = (ACPI_DEVICE_INFO *)buf.Pointer; 1417 1418 if ((devinfo->Valid & ACPI_VALID_HID) != 0 && 1419 strcmp(hid, devinfo->HardwareId.Value) == 0) 1420 ret = TRUE; 1421 else if ((devinfo->Valid & ACPI_VALID_CID) != 0) { 1422 for (i = 0; i < devinfo->CompatibilityId.Count; i++) { 1423 if (strcmp(hid, devinfo->CompatibilityId.Id[i].Value) == 0) { 1424 ret = TRUE; 1425 break; 1426 } 1427 } 1428 } 1429 1430 AcpiOsFree(buf.Pointer); 1431 return (ret); 1432 } 1433 1434 /* 1435 * Return the handle of a named object within our scope, ie. that of (parent) 1436 * or one if its parents. 1437 */ 1438 ACPI_STATUS 1439 acpi_GetHandleInScope(ACPI_HANDLE parent, char *path, ACPI_HANDLE *result) 1440 { 1441 ACPI_HANDLE r; 1442 ACPI_STATUS status; 1443 1444 ACPI_ASSERTLOCK; 1445 1446 /* Walk back up the tree to the root */ 1447 for (;;) { 1448 status = AcpiGetHandle(parent, path, &r); 1449 if (ACPI_SUCCESS(status)) { 1450 *result = r; 1451 return (AE_OK); 1452 } 1453 if (status != AE_NOT_FOUND) 1454 return (AE_OK); 1455 if (ACPI_FAILURE(AcpiGetParent(parent, &r))) 1456 return (AE_NOT_FOUND); 1457 parent = r; 1458 } 1459 } 1460 1461 /* Find the difference between two PM tick counts. */ 1462 uint32_t 1463 acpi_TimerDelta(uint32_t end, uint32_t start) 1464 { 1465 uint32_t delta; 1466 1467 if (end >= start) 1468 delta = end - start; 1469 else if (AcpiGbl_FADT->TmrValExt == 0) 1470 delta = ((0x00FFFFFF - start) + end + 1) & 0x00FFFFFF; 1471 else 1472 delta = ((0xFFFFFFFF - start) + end + 1); 1473 return (delta); 1474 } 1475 1476 /* 1477 * Allocate a buffer with a preset data size. 1478 */ 1479 ACPI_BUFFER * 1480 acpi_AllocBuffer(int size) 1481 { 1482 ACPI_BUFFER *buf; 1483 1484 if ((buf = malloc(size + sizeof(*buf), M_ACPIDEV, M_NOWAIT)) == NULL) 1485 return (NULL); 1486 buf->Length = size; 1487 buf->Pointer = (void *)(buf + 1); 1488 return (buf); 1489 } 1490 1491 ACPI_STATUS 1492 acpi_SetInteger(ACPI_HANDLE handle, char *path, UINT32 number) 1493 { 1494 ACPI_OBJECT arg1; 1495 ACPI_OBJECT_LIST args; 1496 1497 ACPI_ASSERTLOCK; 1498 1499 arg1.Type = ACPI_TYPE_INTEGER; 1500 arg1.Integer.Value = number; 1501 args.Count = 1; 1502 args.Pointer = &arg1; 1503 1504 return (AcpiEvaluateObject(handle, path, &args, NULL)); 1505 } 1506 1507 /* 1508 * Evaluate a path that should return an integer. 1509 */ 1510 ACPI_STATUS 1511 acpi_GetInteger(ACPI_HANDLE handle, char *path, UINT32 *number) 1512 { 1513 ACPI_STATUS status; 1514 ACPI_BUFFER buf; 1515 ACPI_OBJECT param; 1516 1517 ACPI_ASSERTLOCK; 1518 1519 if (handle == NULL) 1520 handle = ACPI_ROOT_OBJECT; 1521 1522 /* 1523 * Assume that what we've been pointed at is an Integer object, or 1524 * a method that will return an Integer. 1525 */ 1526 buf.Pointer = ¶m; 1527 buf.Length = sizeof(param); 1528 status = AcpiEvaluateObject(handle, path, NULL, &buf); 1529 if (ACPI_SUCCESS(status)) { 1530 if (param.Type == ACPI_TYPE_INTEGER) 1531 *number = param.Integer.Value; 1532 else 1533 status = AE_TYPE; 1534 } 1535 1536 /* 1537 * In some applications, a method that's expected to return an Integer 1538 * may instead return a Buffer (probably to simplify some internal 1539 * arithmetic). We'll try to fetch whatever it is, and if it's a Buffer, 1540 * convert it into an Integer as best we can. 1541 * 1542 * This is a hack. 1543 */ 1544 if (status == AE_BUFFER_OVERFLOW) { 1545 if ((buf.Pointer = AcpiOsAllocate(buf.Length)) == NULL) { 1546 status = AE_NO_MEMORY; 1547 } else { 1548 status = AcpiEvaluateObject(handle, path, NULL, &buf); 1549 if (ACPI_SUCCESS(status)) 1550 status = acpi_ConvertBufferToInteger(&buf, number); 1551 AcpiOsFree(buf.Pointer); 1552 } 1553 } 1554 return (status); 1555 } 1556 1557 ACPI_STATUS 1558 acpi_ConvertBufferToInteger(ACPI_BUFFER *bufp, UINT32 *number) 1559 { 1560 ACPI_OBJECT *p; 1561 UINT8 *val; 1562 int i; 1563 1564 p = (ACPI_OBJECT *)bufp->Pointer; 1565 if (p->Type == ACPI_TYPE_INTEGER) { 1566 *number = p->Integer.Value; 1567 return (AE_OK); 1568 } 1569 if (p->Type != ACPI_TYPE_BUFFER) 1570 return (AE_TYPE); 1571 if (p->Buffer.Length > sizeof(int)) 1572 return (AE_BAD_DATA); 1573 1574 *number = 0; 1575 val = p->Buffer.Pointer; 1576 for (i = 0; i < p->Buffer.Length; i++) 1577 *number += val[i] << (i * 8); 1578 return (AE_OK); 1579 } 1580 1581 /* 1582 * Iterate over the elements of an a package object, calling the supplied 1583 * function for each element. 1584 * 1585 * XXX possible enhancement might be to abort traversal on error. 1586 */ 1587 ACPI_STATUS 1588 acpi_ForeachPackageObject(ACPI_OBJECT *pkg, 1589 void (*func)(ACPI_OBJECT *comp, void *arg), void *arg) 1590 { 1591 ACPI_OBJECT *comp; 1592 int i; 1593 1594 if (pkg == NULL || pkg->Type != ACPI_TYPE_PACKAGE) 1595 return (AE_BAD_PARAMETER); 1596 1597 /* Iterate over components */ 1598 i = 0; 1599 comp = pkg->Package.Elements; 1600 for (; i < pkg->Package.Count; i++, comp++) 1601 func(comp, arg); 1602 1603 return (AE_OK); 1604 } 1605 1606 /* 1607 * Find the (index)th resource object in a set. 1608 */ 1609 ACPI_STATUS 1610 acpi_FindIndexedResource(ACPI_BUFFER *buf, int index, ACPI_RESOURCE **resp) 1611 { 1612 ACPI_RESOURCE *rp; 1613 int i; 1614 1615 rp = (ACPI_RESOURCE *)buf->Pointer; 1616 i = index; 1617 while (i-- > 0) { 1618 /* Range check */ 1619 if (rp > (ACPI_RESOURCE *)((u_int8_t *)buf->Pointer + buf->Length)) 1620 return (AE_BAD_PARAMETER); 1621 1622 /* Check for terminator */ 1623 if (rp->Id == ACPI_RSTYPE_END_TAG || rp->Length == 0) 1624 return (AE_NOT_FOUND); 1625 rp = ACPI_NEXT_RESOURCE(rp); 1626 } 1627 if (resp != NULL) 1628 *resp = rp; 1629 1630 return (AE_OK); 1631 } 1632 1633 /* 1634 * Append an ACPI_RESOURCE to an ACPI_BUFFER. 1635 * 1636 * Given a pointer to an ACPI_RESOURCE structure, expand the ACPI_BUFFER 1637 * provided to contain it. If the ACPI_BUFFER is empty, allocate a sensible 1638 * backing block. If the ACPI_RESOURCE is NULL, return an empty set of 1639 * resources. 1640 */ 1641 #define ACPI_INITIAL_RESOURCE_BUFFER_SIZE 512 1642 1643 ACPI_STATUS 1644 acpi_AppendBufferResource(ACPI_BUFFER *buf, ACPI_RESOURCE *res) 1645 { 1646 ACPI_RESOURCE *rp; 1647 void *newp; 1648 1649 /* Initialise the buffer if necessary. */ 1650 if (buf->Pointer == NULL) { 1651 buf->Length = ACPI_INITIAL_RESOURCE_BUFFER_SIZE; 1652 if ((buf->Pointer = AcpiOsAllocate(buf->Length)) == NULL) 1653 return (AE_NO_MEMORY); 1654 rp = (ACPI_RESOURCE *)buf->Pointer; 1655 rp->Id = ACPI_RSTYPE_END_TAG; 1656 rp->Length = 0; 1657 } 1658 if (res == NULL) 1659 return (AE_OK); 1660 1661 /* 1662 * Scan the current buffer looking for the terminator. 1663 * This will either find the terminator or hit the end 1664 * of the buffer and return an error. 1665 */ 1666 rp = (ACPI_RESOURCE *)buf->Pointer; 1667 for (;;) { 1668 /* Range check, don't go outside the buffer */ 1669 if (rp >= (ACPI_RESOURCE *)((u_int8_t *)buf->Pointer + buf->Length)) 1670 return (AE_BAD_PARAMETER); 1671 if (rp->Id == ACPI_RSTYPE_END_TAG || rp->Length == 0) 1672 break; 1673 rp = ACPI_NEXT_RESOURCE(rp); 1674 } 1675 1676 /* 1677 * Check the size of the buffer and expand if required. 1678 * 1679 * Required size is: 1680 * size of existing resources before terminator + 1681 * size of new resource and header + 1682 * size of terminator. 1683 * 1684 * Note that this loop should really only run once, unless 1685 * for some reason we are stuffing a *really* huge resource. 1686 */ 1687 while ((((u_int8_t *)rp - (u_int8_t *)buf->Pointer) + 1688 res->Length + ACPI_RESOURCE_LENGTH_NO_DATA + 1689 ACPI_RESOURCE_LENGTH) >= buf->Length) { 1690 if ((newp = AcpiOsAllocate(buf->Length * 2)) == NULL) 1691 return (AE_NO_MEMORY); 1692 bcopy(buf->Pointer, newp, buf->Length); 1693 rp = (ACPI_RESOURCE *)((u_int8_t *)newp + 1694 ((u_int8_t *)rp - (u_int8_t *)buf->Pointer)); 1695 AcpiOsFree(buf->Pointer); 1696 buf->Pointer = newp; 1697 buf->Length += buf->Length; 1698 } 1699 1700 /* Insert the new resource. */ 1701 bcopy(res, rp, res->Length + ACPI_RESOURCE_LENGTH_NO_DATA); 1702 1703 /* And add the terminator. */ 1704 rp = ACPI_NEXT_RESOURCE(rp); 1705 rp->Id = ACPI_RSTYPE_END_TAG; 1706 rp->Length = 0; 1707 1708 return (AE_OK); 1709 } 1710 1711 /* 1712 * Set interrupt model. 1713 */ 1714 ACPI_STATUS 1715 acpi_SetIntrModel(int model) 1716 { 1717 1718 return (acpi_SetInteger(ACPI_ROOT_OBJECT, "_PIC", model)); 1719 } 1720 1721 #define ACPI_MINIMUM_AWAKETIME 5 1722 1723 static void 1724 acpi_sleep_enable(void *arg) 1725 { 1726 ((struct acpi_softc *)arg)->acpi_sleep_disabled = 0; 1727 } 1728 1729 /* 1730 * Set the system sleep state 1731 * 1732 * Currently we support S1-S5 but S4 is only S4BIOS 1733 */ 1734 ACPI_STATUS 1735 acpi_SetSleepState(struct acpi_softc *sc, int state) 1736 { 1737 ACPI_STATUS status = AE_OK; 1738 UINT8 TypeA; 1739 UINT8 TypeB; 1740 1741 ACPI_FUNCTION_TRACE_U32((char *)(uintptr_t)__func__, state); 1742 ACPI_ASSERTLOCK; 1743 1744 /* Avoid reentry if already attempting to suspend. */ 1745 if (sc->acpi_sstate != ACPI_STATE_S0) 1746 return_ACPI_STATUS (AE_BAD_PARAMETER); 1747 1748 /* We recently woke up so don't suspend again for a while. */ 1749 if (sc->acpi_sleep_disabled) 1750 return_ACPI_STATUS (AE_OK); 1751 1752 switch (state) { 1753 case ACPI_STATE_S1: 1754 case ACPI_STATE_S2: 1755 case ACPI_STATE_S3: 1756 case ACPI_STATE_S4: 1757 status = AcpiGetSleepTypeData((UINT8)state, &TypeA, &TypeB); 1758 if (status == AE_NOT_FOUND) { 1759 device_printf(sc->acpi_dev, 1760 "Sleep state S%d not supported by BIOS\n", state); 1761 break; 1762 } else if (ACPI_FAILURE(status)) { 1763 device_printf(sc->acpi_dev, "AcpiGetSleepTypeData failed - %s\n", 1764 AcpiFormatException(status)); 1765 break; 1766 } 1767 1768 sc->acpi_sstate = state; 1769 sc->acpi_sleep_disabled = 1; 1770 1771 /* Enable any GPEs as appropriate and requested by the user. */ 1772 acpi_wake_prep_walk(state); 1773 1774 /* Inform all devices that we are going to sleep. */ 1775 if (DEVICE_SUSPEND(root_bus) != 0) { 1776 /* 1777 * Re-wake the system. 1778 * 1779 * XXX note that a better two-pass approach with a 'veto' pass 1780 * followed by a "real thing" pass would be better, but the 1781 * current bus interface does not provide for this. 1782 */ 1783 DEVICE_RESUME(root_bus); 1784 return_ACPI_STATUS (AE_ERROR); 1785 } 1786 1787 status = AcpiEnterSleepStatePrep(state); 1788 if (ACPI_FAILURE(status)) { 1789 device_printf(sc->acpi_dev, "AcpiEnterSleepStatePrep failed - %s\n", 1790 AcpiFormatException(status)); 1791 break; 1792 } 1793 1794 if (sc->acpi_sleep_delay > 0) 1795 DELAY(sc->acpi_sleep_delay * 1000000); 1796 1797 if (state != ACPI_STATE_S1) { 1798 acpi_sleep_machdep(sc, state); 1799 1800 /* AcpiEnterSleepState() may be incomplete, unlock if locked. */ 1801 if (AcpiGbl_MutexInfo[ACPI_MTX_HARDWARE].OwnerId != 1802 ACPI_MUTEX_NOT_ACQUIRED) { 1803 1804 AcpiUtReleaseMutex(ACPI_MTX_HARDWARE); 1805 } 1806 1807 /* Re-enable ACPI hardware on wakeup from sleep state 4. */ 1808 if (state == ACPI_STATE_S4) 1809 AcpiEnable(); 1810 } else { 1811 status = AcpiEnterSleepState((UINT8)state); 1812 if (ACPI_FAILURE(status)) { 1813 device_printf(sc->acpi_dev, "AcpiEnterSleepState failed - %s\n", 1814 AcpiFormatException(status)); 1815 break; 1816 } 1817 } 1818 1819 /* Resume devices, re-enable GPEs and fixed events. */ 1820 acpi_wake_prep_walk(state); 1821 AcpiLeaveSleepState((UINT8)state); 1822 DEVICE_RESUME(root_bus); 1823 sc->acpi_sstate = ACPI_STATE_S0; 1824 acpi_enable_fixed_events(sc); 1825 break; 1826 case ACPI_STATE_S5: 1827 /* 1828 * Shut down cleanly and power off. This will call us back through the 1829 * shutdown handlers. 1830 */ 1831 shutdown_nice(RB_POWEROFF); 1832 break; 1833 case ACPI_STATE_S0: 1834 default: 1835 status = AE_BAD_PARAMETER; 1836 break; 1837 } 1838 1839 /* Disable a second sleep request for a short period */ 1840 if (sc->acpi_sleep_disabled) 1841 timeout(acpi_sleep_enable, (caddr_t)sc, hz * ACPI_MINIMUM_AWAKETIME); 1842 1843 return_ACPI_STATUS (status); 1844 } 1845 1846 /* Initialize a device's wake GPE. */ 1847 int 1848 acpi_wake_init(device_t dev, int type) 1849 { 1850 struct acpi_prw_data prw; 1851 1852 /* Evaluate _PRW to find the GPE. */ 1853 if (acpi_parse_prw(acpi_get_handle(dev), &prw) != 0) 1854 return (ENXIO); 1855 1856 /* Set the requested type for the GPE (runtime, wake, or both). */ 1857 if (ACPI_FAILURE(AcpiSetGpeType(prw.gpe_handle, prw.gpe_bit, type))) { 1858 device_printf(dev, "set GPE type failed\n"); 1859 return (ENXIO); 1860 } 1861 1862 return (0); 1863 } 1864 1865 /* Enable or disable the device's wake GPE. */ 1866 int 1867 acpi_wake_set_enable(device_t dev, int enable) 1868 { 1869 struct acpi_prw_data prw; 1870 ACPI_HANDLE handle; 1871 ACPI_STATUS status; 1872 int flags; 1873 1874 /* Make sure the device supports waking the system and get the GPE. */ 1875 handle = acpi_get_handle(dev); 1876 if (acpi_parse_prw(handle, &prw) != 0) 1877 return (ENXIO); 1878 1879 flags = acpi_get_flags(dev); 1880 if (enable) { 1881 status = AcpiEnableGpe(prw.gpe_handle, prw.gpe_bit, ACPI_NOT_ISR); 1882 if (ACPI_FAILURE(status)) { 1883 device_printf(dev, "enable wake failed\n"); 1884 return (ENXIO); 1885 } 1886 acpi_set_flags(dev, flags | ACPI_FLAG_WAKE_ENABLED); 1887 } else { 1888 status = AcpiDisableGpe(prw.gpe_handle, prw.gpe_bit, ACPI_NOT_ISR); 1889 if (ACPI_FAILURE(status)) { 1890 device_printf(dev, "disable wake failed\n"); 1891 return (ENXIO); 1892 } 1893 acpi_set_flags(dev, flags & ~ACPI_FLAG_WAKE_ENABLED); 1894 } 1895 1896 return (0); 1897 } 1898 1899 static int 1900 acpi_wake_sleep_prep(ACPI_HANDLE handle, int sstate) 1901 { 1902 struct acpi_prw_data prw; 1903 device_t dev; 1904 1905 /* Check that this is a wake-capable device and get its GPE. */ 1906 if (acpi_parse_prw(handle, &prw) != 0) 1907 return (ENXIO); 1908 dev = acpi_get_device(handle); 1909 1910 /* 1911 * The destination sleep state must be less than (i.e., higher power) 1912 * or equal to the value specified by _PRW. If this GPE cannot be 1913 * enabled for the next sleep state, then disable it. If it can and 1914 * the user requested it be enabled, turn on any required power resources 1915 * and set _PSW. 1916 */ 1917 if (sstate > prw.lowest_wake) { 1918 AcpiDisableGpe(prw.gpe_handle, prw.gpe_bit, ACPI_NOT_ISR); 1919 if (bootverbose) 1920 device_printf(dev, "wake_prep disabled wake for %s (S%d)\n", 1921 acpi_name(handle), sstate); 1922 } else if (dev && (acpi_get_flags(dev) & ACPI_FLAG_WAKE_ENABLED) != 0) { 1923 acpi_pwr_wake_enable(handle, 1); 1924 acpi_SetInteger(handle, "_PSW", 1); 1925 if (bootverbose) 1926 device_printf(dev, "wake_prep enabled for %s (S%d)\n", 1927 acpi_name(handle), sstate); 1928 } 1929 1930 return (0); 1931 } 1932 1933 static int 1934 acpi_wake_run_prep(ACPI_HANDLE handle, int sstate) 1935 { 1936 struct acpi_prw_data prw; 1937 device_t dev; 1938 1939 /* 1940 * Check that this is a wake-capable device and get its GPE. Return 1941 * now if the user didn't enable this device for wake. 1942 */ 1943 if (acpi_parse_prw(handle, &prw) != 0) 1944 return (ENXIO); 1945 dev = acpi_get_device(handle); 1946 if (dev == NULL || (acpi_get_flags(dev) & ACPI_FLAG_WAKE_ENABLED) == 0) 1947 return (0); 1948 1949 /* 1950 * If this GPE couldn't be enabled for the previous sleep state, it was 1951 * disabled before going to sleep so re-enable it. If it was enabled, 1952 * clear _PSW and turn off any power resources it used. 1953 */ 1954 if (sstate > prw.lowest_wake) { 1955 AcpiEnableGpe(prw.gpe_handle, prw.gpe_bit, ACPI_NOT_ISR); 1956 if (bootverbose) 1957 device_printf(dev, "run_prep re-enabled %s\n", acpi_name(handle)); 1958 } else { 1959 acpi_SetInteger(handle, "_PSW", 0); 1960 acpi_pwr_wake_enable(handle, 0); 1961 if (bootverbose) 1962 device_printf(dev, "run_prep cleaned up for %s\n", 1963 acpi_name(handle)); 1964 } 1965 1966 return (0); 1967 } 1968 1969 static ACPI_STATUS 1970 acpi_wake_prep(ACPI_HANDLE handle, UINT32 level, void *context, void **status) 1971 { 1972 int sstate; 1973 1974 /* If suspending, run the sleep prep function, otherwise wake. */ 1975 sstate = *(int *)context; 1976 if (AcpiGbl_SystemAwakeAndRunning) 1977 acpi_wake_sleep_prep(handle, sstate); 1978 else 1979 acpi_wake_run_prep(handle, sstate); 1980 return (AE_OK); 1981 } 1982 1983 /* Walk the tree rooted at acpi0 to prep devices for suspend/resume. */ 1984 static int 1985 acpi_wake_prep_walk(int sstate) 1986 { 1987 ACPI_HANDLE sb_handle; 1988 1989 if (ACPI_SUCCESS(AcpiGetHandle(ACPI_ROOT_OBJECT, "\\_SB_", &sb_handle))) 1990 AcpiWalkNamespace(ACPI_TYPE_DEVICE, sb_handle, 100, 1991 acpi_wake_prep, &sstate, NULL); 1992 return (0); 1993 } 1994 1995 /* Walk the tree rooted at acpi0 to attach per-device wake sysctls. */ 1996 static int 1997 acpi_wake_sysctl_walk(device_t dev) 1998 { 1999 int error, i, numdevs; 2000 device_t *devlist; 2001 device_t child; 2002 ACPI_STATUS status; 2003 2004 error = device_get_children(dev, &devlist, &numdevs); 2005 if (error != 0 || numdevs == 0) 2006 return (error); 2007 for (i = 0; i < numdevs; i++) { 2008 child = devlist[i]; 2009 acpi_wake_sysctl_walk(child); 2010 if (!device_is_attached(child)) 2011 continue; 2012 status = AcpiEvaluateObject(acpi_get_handle(child), "_PRW", NULL, NULL); 2013 if (ACPI_SUCCESS(status)) { 2014 SYSCTL_ADD_PROC(device_get_sysctl_ctx(child), 2015 SYSCTL_CHILDREN(device_get_sysctl_tree(child)), OID_AUTO, 2016 "wake", CTLTYPE_INT | CTLFLAG_RW, child, 0, 2017 acpi_wake_set_sysctl, "I", "Device set to wake the system"); 2018 } 2019 } 2020 free(devlist, M_TEMP); 2021 2022 return (0); 2023 } 2024 2025 /* Enable or disable wake from userland. */ 2026 static int 2027 acpi_wake_set_sysctl(SYSCTL_HANDLER_ARGS) 2028 { 2029 int enable, error; 2030 device_t dev; 2031 2032 dev = (device_t)arg1; 2033 enable = (acpi_get_flags(dev) & ACPI_FLAG_WAKE_ENABLED) ? 1 : 0; 2034 2035 error = sysctl_handle_int(oidp, &enable, 0, req); 2036 if (error != 0 || req->newptr == NULL) 2037 return (error); 2038 if (enable != 0 && enable != 1) 2039 return (EINVAL); 2040 2041 return (acpi_wake_set_enable(dev, enable)); 2042 } 2043 2044 /* Parse a device's _PRW into a structure. */ 2045 int 2046 acpi_parse_prw(ACPI_HANDLE h, struct acpi_prw_data *prw) 2047 { 2048 ACPI_STATUS status; 2049 ACPI_BUFFER prw_buffer; 2050 ACPI_OBJECT *res, *res2; 2051 int error, i, power_count; 2052 2053 if (h == NULL || prw == NULL) 2054 return (EINVAL); 2055 2056 /* 2057 * The _PRW object (7.2.9) is only required for devices that have the 2058 * ability to wake the system from a sleeping state. 2059 */ 2060 error = EINVAL; 2061 prw_buffer.Pointer = NULL; 2062 prw_buffer.Length = ACPI_ALLOCATE_BUFFER; 2063 status = AcpiEvaluateObject(h, "_PRW", NULL, &prw_buffer); 2064 if (ACPI_FAILURE(status)) 2065 return (ENOENT); 2066 res = (ACPI_OBJECT *)prw_buffer.Pointer; 2067 if (res == NULL) 2068 return (ENOENT); 2069 if (!ACPI_PKG_VALID(res, 2)) 2070 goto out; 2071 2072 /* 2073 * Element 1 of the _PRW object: 2074 * The lowest power system sleeping state that can be entered while still 2075 * providing wake functionality. The sleeping state being entered must 2076 * be less than (i.e., higher power) or equal to this value. 2077 */ 2078 if (acpi_PkgInt32(res, 1, &prw->lowest_wake) != 0) 2079 goto out; 2080 2081 /* 2082 * Element 0 of the _PRW object: 2083 */ 2084 switch (res->Package.Elements[0].Type) { 2085 case ACPI_TYPE_INTEGER: 2086 /* 2087 * If the data type of this package element is numeric, then this 2088 * _PRW package element is the bit index in the GPEx_EN, in the 2089 * GPE blocks described in the FADT, of the enable bit that is 2090 * enabled for the wake event. 2091 */ 2092 prw->gpe_handle = NULL; 2093 prw->gpe_bit = res->Package.Elements[0].Integer.Value; 2094 error = 0; 2095 break; 2096 case ACPI_TYPE_PACKAGE: 2097 /* 2098 * If the data type of this package element is a package, then this 2099 * _PRW package element is itself a package containing two 2100 * elements. The first is an object reference to the GPE Block 2101 * device that contains the GPE that will be triggered by the wake 2102 * event. The second element is numeric and it contains the bit 2103 * index in the GPEx_EN, in the GPE Block referenced by the 2104 * first element in the package, of the enable bit that is enabled for 2105 * the wake event. 2106 * 2107 * For example, if this field is a package then it is of the form: 2108 * Package() {\_SB.PCI0.ISA.GPE, 2} 2109 */ 2110 res2 = &res->Package.Elements[0]; 2111 if (!ACPI_PKG_VALID(res2, 2)) 2112 goto out; 2113 prw->gpe_handle = acpi_GetReference(NULL, &res2->Package.Elements[0]); 2114 if (prw->gpe_handle == NULL) 2115 goto out; 2116 if (acpi_PkgInt32(res2, 1, &prw->gpe_bit) != 0) 2117 goto out; 2118 error = 0; 2119 break; 2120 default: 2121 goto out; 2122 } 2123 2124 /* Elements 2 to N of the _PRW object are power resources. */ 2125 power_count = res->Package.Count - 2; 2126 if (power_count > ACPI_PRW_MAX_POWERRES) { 2127 printf("ACPI device %s has too many power resources\n", acpi_name(h)); 2128 power_count = 0; 2129 } 2130 prw->power_res_count = power_count; 2131 for (i = 0; i < power_count; i++) 2132 prw->power_res[i] = res->Package.Elements[i]; 2133 2134 out: 2135 if (prw_buffer.Pointer != NULL) 2136 AcpiOsFree(prw_buffer.Pointer); 2137 return (error); 2138 } 2139 2140 /* 2141 * Enable/Disable ACPI 2142 */ 2143 ACPI_STATUS 2144 acpi_Enable(struct acpi_softc *sc) 2145 { 2146 ACPI_STATUS status; 2147 u_int32_t flags; 2148 2149 ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__); 2150 ACPI_ASSERTLOCK; 2151 2152 flags = ACPI_NO_ADDRESS_SPACE_INIT | ACPI_NO_HARDWARE_INIT | 2153 ACPI_NO_DEVICE_INIT | ACPI_NO_OBJECT_INIT; 2154 if (!sc->acpi_enabled) 2155 status = AcpiEnableSubsystem(flags); 2156 else 2157 status = AE_OK; 2158 2159 if (status == AE_OK) 2160 sc->acpi_enabled = 1; 2161 2162 return_ACPI_STATUS (status); 2163 } 2164 2165 ACPI_STATUS 2166 acpi_Disable(struct acpi_softc *sc) 2167 { 2168 ACPI_STATUS status; 2169 2170 ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__); 2171 ACPI_ASSERTLOCK; 2172 2173 if (sc->acpi_enabled) 2174 status = AcpiDisable(); 2175 else 2176 status = AE_OK; 2177 2178 if (status == AE_OK) 2179 sc->acpi_enabled = 0; 2180 2181 return_ACPI_STATUS (status); 2182 } 2183 2184 /* 2185 * ACPI Event Handlers 2186 */ 2187 2188 /* System Event Handlers (registered by EVENTHANDLER_REGISTER) */ 2189 2190 static void 2191 acpi_system_eventhandler_sleep(void *arg, int state) 2192 { 2193 ACPI_LOCK_DECL; 2194 ACPI_FUNCTION_TRACE_U32((char *)(uintptr_t)__func__, state); 2195 2196 ACPI_LOCK; 2197 if (state >= ACPI_STATE_S0 && state <= ACPI_S_STATES_MAX) 2198 acpi_SetSleepState((struct acpi_softc *)arg, state); 2199 ACPI_UNLOCK; 2200 return_VOID; 2201 } 2202 2203 static void 2204 acpi_system_eventhandler_wakeup(void *arg, int state) 2205 { 2206 ACPI_LOCK_DECL; 2207 ACPI_FUNCTION_TRACE_U32((char *)(uintptr_t)__func__, state); 2208 2209 /* Well, what to do? :-) */ 2210 2211 ACPI_LOCK; 2212 ACPI_UNLOCK; 2213 2214 return_VOID; 2215 } 2216 2217 /* 2218 * ACPICA Event Handlers (FixedEvent, also called from button notify handler) 2219 */ 2220 UINT32 2221 acpi_event_power_button_sleep(void *context) 2222 { 2223 struct acpi_softc *sc = (struct acpi_softc *)context; 2224 2225 ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__); 2226 2227 EVENTHANDLER_INVOKE(acpi_sleep_event, sc->acpi_power_button_sx); 2228 2229 return_VALUE (ACPI_INTERRUPT_HANDLED); 2230 } 2231 2232 UINT32 2233 acpi_event_power_button_wake(void *context) 2234 { 2235 struct acpi_softc *sc = (struct acpi_softc *)context; 2236 2237 ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__); 2238 2239 EVENTHANDLER_INVOKE(acpi_wakeup_event, sc->acpi_power_button_sx); 2240 2241 return_VALUE (ACPI_INTERRUPT_HANDLED); 2242 } 2243 2244 UINT32 2245 acpi_event_sleep_button_sleep(void *context) 2246 { 2247 struct acpi_softc *sc = (struct acpi_softc *)context; 2248 2249 ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__); 2250 2251 EVENTHANDLER_INVOKE(acpi_sleep_event, sc->acpi_sleep_button_sx); 2252 2253 return_VALUE (ACPI_INTERRUPT_HANDLED); 2254 } 2255 2256 UINT32 2257 acpi_event_sleep_button_wake(void *context) 2258 { 2259 struct acpi_softc *sc = (struct acpi_softc *)context; 2260 2261 ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__); 2262 2263 EVENTHANDLER_INVOKE(acpi_wakeup_event, sc->acpi_sleep_button_sx); 2264 2265 return_VALUE (ACPI_INTERRUPT_HANDLED); 2266 } 2267 2268 /* 2269 * XXX This is kinda ugly, and should not be here. 2270 */ 2271 struct acpi_staticbuf { 2272 ACPI_BUFFER buffer; 2273 char data[512]; 2274 }; 2275 2276 char * 2277 acpi_name(ACPI_HANDLE handle) 2278 { 2279 static struct acpi_staticbuf buf; 2280 2281 ACPI_ASSERTLOCK; 2282 2283 buf.buffer.Length = 512; 2284 buf.buffer.Pointer = &buf.data[0]; 2285 2286 if (ACPI_SUCCESS(AcpiGetName(handle, ACPI_FULL_PATHNAME, &buf.buffer))) 2287 return (buf.buffer.Pointer); 2288 2289 return ("(unknown path)"); 2290 } 2291 2292 /* 2293 * Debugging/bug-avoidance. Avoid trying to fetch info on various 2294 * parts of the namespace. 2295 */ 2296 int 2297 acpi_avoid(ACPI_HANDLE handle) 2298 { 2299 char *cp, *env, *np; 2300 int len; 2301 2302 np = acpi_name(handle); 2303 if (*np == '\\') 2304 np++; 2305 if ((env = getenv("debug.acpi.avoid")) == NULL) 2306 return (0); 2307 2308 /* Scan the avoid list checking for a match */ 2309 cp = env; 2310 for (;;) { 2311 while ((*cp != 0) && isspace(*cp)) 2312 cp++; 2313 if (*cp == 0) 2314 break; 2315 len = 0; 2316 while ((cp[len] != 0) && !isspace(cp[len])) 2317 len++; 2318 if (!strncmp(cp, np, len)) { 2319 freeenv(env); 2320 return(1); 2321 } 2322 cp += len; 2323 } 2324 freeenv(env); 2325 2326 return (0); 2327 } 2328 2329 /* 2330 * Debugging/bug-avoidance. Disable ACPI subsystem components. 2331 */ 2332 int 2333 acpi_disabled(char *subsys) 2334 { 2335 char *cp, *env; 2336 int len; 2337 2338 if ((env = getenv("debug.acpi.disabled")) == NULL) 2339 return (0); 2340 if (strcmp(env, "all") == 0) { 2341 freeenv(env); 2342 return (1); 2343 } 2344 2345 /* Scan the disable list, checking for a match. */ 2346 cp = env; 2347 for (;;) { 2348 while (*cp != '\0' && isspace(*cp)) 2349 cp++; 2350 if (*cp == '\0') 2351 break; 2352 len = 0; 2353 while (cp[len] != '\0' && !isspace(cp[len])) 2354 len++; 2355 if (strncmp(cp, subsys, len) == 0) { 2356 freeenv(env); 2357 return (1); 2358 } 2359 cp += len; 2360 } 2361 freeenv(env); 2362 2363 return (0); 2364 } 2365 2366 /* 2367 * Control interface. 2368 * 2369 * We multiplex ioctls for all participating ACPI devices here. Individual 2370 * drivers wanting to be accessible via /dev/acpi should use the 2371 * register/deregister interface to make their handlers visible. 2372 */ 2373 struct acpi_ioctl_hook 2374 { 2375 TAILQ_ENTRY(acpi_ioctl_hook) link; 2376 u_long cmd; 2377 acpi_ioctl_fn fn; 2378 void *arg; 2379 }; 2380 2381 static TAILQ_HEAD(,acpi_ioctl_hook) acpi_ioctl_hooks; 2382 static int acpi_ioctl_hooks_initted; 2383 2384 /* 2385 * Register an ioctl handler. 2386 */ 2387 int 2388 acpi_register_ioctl(u_long cmd, acpi_ioctl_fn fn, void *arg) 2389 { 2390 struct acpi_ioctl_hook *hp; 2391 2392 if ((hp = malloc(sizeof(*hp), M_ACPIDEV, M_NOWAIT)) == NULL) 2393 return (ENOMEM); 2394 hp->cmd = cmd; 2395 hp->fn = fn; 2396 hp->arg = arg; 2397 if (acpi_ioctl_hooks_initted == 0) { 2398 TAILQ_INIT(&acpi_ioctl_hooks); 2399 acpi_ioctl_hooks_initted = 1; 2400 } 2401 TAILQ_INSERT_TAIL(&acpi_ioctl_hooks, hp, link); 2402 return (0); 2403 } 2404 2405 /* 2406 * Deregister an ioctl handler. 2407 */ 2408 void 2409 acpi_deregister_ioctl(u_long cmd, acpi_ioctl_fn fn) 2410 { 2411 struct acpi_ioctl_hook *hp; 2412 2413 TAILQ_FOREACH(hp, &acpi_ioctl_hooks, link) 2414 if ((hp->cmd == cmd) && (hp->fn == fn)) 2415 break; 2416 2417 if (hp != NULL) { 2418 TAILQ_REMOVE(&acpi_ioctl_hooks, hp, link); 2419 free(hp, M_ACPIDEV); 2420 } 2421 } 2422 2423 static int 2424 acpiopen(struct cdev *dev, int flag, int fmt, d_thread_t *td) 2425 { 2426 return (0); 2427 } 2428 2429 static int 2430 acpiclose(struct cdev *dev, int flag, int fmt, d_thread_t *td) 2431 { 2432 return (0); 2433 } 2434 2435 static int 2436 acpiioctl(struct cdev *dev, u_long cmd, caddr_t addr, int flag, d_thread_t *td) 2437 { 2438 struct acpi_softc *sc; 2439 struct acpi_ioctl_hook *hp; 2440 int error, xerror, state; 2441 ACPI_LOCK_DECL; 2442 2443 ACPI_LOCK; 2444 2445 error = state = 0; 2446 sc = dev->si_drv1; 2447 2448 /* 2449 * Scan the list of registered ioctls, looking for handlers. 2450 */ 2451 if (acpi_ioctl_hooks_initted) { 2452 TAILQ_FOREACH(hp, &acpi_ioctl_hooks, link) { 2453 if (hp->cmd == cmd) { 2454 xerror = hp->fn(cmd, addr, hp->arg); 2455 if (xerror != 0) 2456 error = xerror; 2457 goto out; 2458 } 2459 } 2460 } 2461 2462 /* 2463 * Core ioctls are not permitted for non-writable user. 2464 * Currently, other ioctls just fetch information. 2465 * Not changing system behavior. 2466 */ 2467 if ((flag & FWRITE) == 0) 2468 return (EPERM); 2469 2470 /* Core system ioctls. */ 2471 switch (cmd) { 2472 case ACPIIO_ENABLE: 2473 if (ACPI_FAILURE(acpi_Enable(sc))) 2474 error = ENXIO; 2475 break; 2476 case ACPIIO_DISABLE: 2477 if (ACPI_FAILURE(acpi_Disable(sc))) 2478 error = ENXIO; 2479 break; 2480 case ACPIIO_SETSLPSTATE: 2481 if (!sc->acpi_enabled) { 2482 error = ENXIO; 2483 break; 2484 } 2485 state = *(int *)addr; 2486 if (state >= ACPI_STATE_S0 && state <= ACPI_S_STATES_MAX) { 2487 if (ACPI_FAILURE(acpi_SetSleepState(sc, state))) 2488 error = EINVAL; 2489 } else { 2490 error = EINVAL; 2491 } 2492 break; 2493 default: 2494 if (error == 0) 2495 error = EINVAL; 2496 break; 2497 } 2498 2499 out: 2500 ACPI_UNLOCK; 2501 return (error); 2502 } 2503 2504 static int 2505 acpi_supported_sleep_state_sysctl(SYSCTL_HANDLER_ARGS) 2506 { 2507 char sleep_state[4]; 2508 char buf[16]; 2509 int error; 2510 UINT8 state, TypeA, TypeB; 2511 2512 buf[0] = '\0'; 2513 for (state = ACPI_STATE_S1; state < ACPI_S_STATES_MAX + 1; state++) { 2514 if (ACPI_SUCCESS(AcpiGetSleepTypeData(state, &TypeA, &TypeB))) { 2515 sprintf(sleep_state, "S%d ", state); 2516 strcat(buf, sleep_state); 2517 } 2518 } 2519 error = sysctl_handle_string(oidp, buf, sizeof(buf), req); 2520 return (error); 2521 } 2522 2523 static int 2524 acpi_sleep_state_sysctl(SYSCTL_HANDLER_ARGS) 2525 { 2526 char sleep_state[10]; 2527 int error; 2528 u_int new_state, old_state; 2529 2530 old_state = *(u_int *)oidp->oid_arg1; 2531 if (old_state > ACPI_S_STATES_MAX + 1) { 2532 strcpy(sleep_state, "unknown"); 2533 } else { 2534 bzero(sleep_state, sizeof(sleep_state)); 2535 strncpy(sleep_state, sleep_state_names[old_state], 2536 sizeof(sleep_state_names[old_state])); 2537 } 2538 error = sysctl_handle_string(oidp, sleep_state, sizeof(sleep_state), req); 2539 if (error == 0 && req->newptr != NULL) { 2540 new_state = ACPI_STATE_S0; 2541 for (; new_state <= ACPI_S_STATES_MAX + 1; new_state++) { 2542 if (strncmp(sleep_state, sleep_state_names[new_state], 2543 sizeof(sleep_state)) == 0) 2544 break; 2545 } 2546 if (new_state <= ACPI_S_STATES_MAX + 1) { 2547 if (new_state != old_state) 2548 *(u_int *)oidp->oid_arg1 = new_state; 2549 } else { 2550 error = EINVAL; 2551 } 2552 } 2553 2554 return (error); 2555 } 2556 2557 /* Inform devctl(4) when we receive a Notify. */ 2558 void 2559 acpi_UserNotify(const char *subsystem, ACPI_HANDLE h, uint8_t notify) 2560 { 2561 char notify_buf[16]; 2562 ACPI_BUFFER handle_buf; 2563 ACPI_STATUS status; 2564 2565 if (subsystem == NULL) 2566 return; 2567 2568 handle_buf.Pointer = NULL; 2569 handle_buf.Length = ACPI_ALLOCATE_BUFFER; 2570 status = AcpiNsHandleToPathname(h, &handle_buf); 2571 if (ACPI_FAILURE(status)) 2572 return; 2573 snprintf(notify_buf, sizeof(notify_buf), "notify=0x%02x", notify); 2574 devctl_notify("ACPI", subsystem, handle_buf.Pointer, notify_buf); 2575 AcpiOsFree(handle_buf.Pointer); 2576 } 2577 2578 #ifdef ACPI_DEBUG 2579 /* 2580 * Support for parsing debug options from the kernel environment. 2581 * 2582 * Bits may be set in the AcpiDbgLayer and AcpiDbgLevel debug registers 2583 * by specifying the names of the bits in the debug.acpi.layer and 2584 * debug.acpi.level environment variables. Bits may be unset by 2585 * prefixing the bit name with !. 2586 */ 2587 struct debugtag 2588 { 2589 char *name; 2590 UINT32 value; 2591 }; 2592 2593 static struct debugtag dbg_layer[] = { 2594 {"ACPI_UTILITIES", ACPI_UTILITIES}, 2595 {"ACPI_HARDWARE", ACPI_HARDWARE}, 2596 {"ACPI_EVENTS", ACPI_EVENTS}, 2597 {"ACPI_TABLES", ACPI_TABLES}, 2598 {"ACPI_NAMESPACE", ACPI_NAMESPACE}, 2599 {"ACPI_PARSER", ACPI_PARSER}, 2600 {"ACPI_DISPATCHER", ACPI_DISPATCHER}, 2601 {"ACPI_EXECUTER", ACPI_EXECUTER}, 2602 {"ACPI_RESOURCES", ACPI_RESOURCES}, 2603 {"ACPI_CA_DEBUGGER", ACPI_CA_DEBUGGER}, 2604 {"ACPI_OS_SERVICES", ACPI_OS_SERVICES}, 2605 {"ACPI_CA_DISASSEMBLER", ACPI_CA_DISASSEMBLER}, 2606 {"ACPI_ALL_COMPONENTS", ACPI_ALL_COMPONENTS}, 2607 2608 {"ACPI_AC_ADAPTER", ACPI_AC_ADAPTER}, 2609 {"ACPI_BATTERY", ACPI_BATTERY}, 2610 {"ACPI_BUS", ACPI_BUS}, 2611 {"ACPI_BUTTON", ACPI_BUTTON}, 2612 {"ACPI_EC", ACPI_EC}, 2613 {"ACPI_FAN", ACPI_FAN}, 2614 {"ACPI_POWERRES", ACPI_POWERRES}, 2615 {"ACPI_PROCESSOR", ACPI_PROCESSOR}, 2616 {"ACPI_THERMAL", ACPI_THERMAL}, 2617 {"ACPI_TIMER", ACPI_TIMER}, 2618 {"ACPI_ALL_DRIVERS", ACPI_ALL_DRIVERS}, 2619 {NULL, 0} 2620 }; 2621 2622 static struct debugtag dbg_level[] = { 2623 {"ACPI_LV_ERROR", ACPI_LV_ERROR}, 2624 {"ACPI_LV_WARN", ACPI_LV_WARN}, 2625 {"ACPI_LV_INIT", ACPI_LV_INIT}, 2626 {"ACPI_LV_DEBUG_OBJECT", ACPI_LV_DEBUG_OBJECT}, 2627 {"ACPI_LV_INFO", ACPI_LV_INFO}, 2628 {"ACPI_LV_ALL_EXCEPTIONS", ACPI_LV_ALL_EXCEPTIONS}, 2629 2630 /* Trace verbosity level 1 [Standard Trace Level] */ 2631 {"ACPI_LV_INIT_NAMES", ACPI_LV_INIT_NAMES}, 2632 {"ACPI_LV_PARSE", ACPI_LV_PARSE}, 2633 {"ACPI_LV_LOAD", ACPI_LV_LOAD}, 2634 {"ACPI_LV_DISPATCH", ACPI_LV_DISPATCH}, 2635 {"ACPI_LV_EXEC", ACPI_LV_EXEC}, 2636 {"ACPI_LV_NAMES", ACPI_LV_NAMES}, 2637 {"ACPI_LV_OPREGION", ACPI_LV_OPREGION}, 2638 {"ACPI_LV_BFIELD", ACPI_LV_BFIELD}, 2639 {"ACPI_LV_TABLES", ACPI_LV_TABLES}, 2640 {"ACPI_LV_VALUES", ACPI_LV_VALUES}, 2641 {"ACPI_LV_OBJECTS", ACPI_LV_OBJECTS}, 2642 {"ACPI_LV_RESOURCES", ACPI_LV_RESOURCES}, 2643 {"ACPI_LV_USER_REQUESTS", ACPI_LV_USER_REQUESTS}, 2644 {"ACPI_LV_PACKAGE", ACPI_LV_PACKAGE}, 2645 {"ACPI_LV_VERBOSITY1", ACPI_LV_VERBOSITY1}, 2646 2647 /* Trace verbosity level 2 [Function tracing and memory allocation] */ 2648 {"ACPI_LV_ALLOCATIONS", ACPI_LV_ALLOCATIONS}, 2649 {"ACPI_LV_FUNCTIONS", ACPI_LV_FUNCTIONS}, 2650 {"ACPI_LV_OPTIMIZATIONS", ACPI_LV_OPTIMIZATIONS}, 2651 {"ACPI_LV_VERBOSITY2", ACPI_LV_VERBOSITY2}, 2652 {"ACPI_LV_ALL", ACPI_LV_ALL}, 2653 2654 /* Trace verbosity level 3 [Threading, I/O, and Interrupts] */ 2655 {"ACPI_LV_MUTEX", ACPI_LV_MUTEX}, 2656 {"ACPI_LV_THREADS", ACPI_LV_THREADS}, 2657 {"ACPI_LV_IO", ACPI_LV_IO}, 2658 {"ACPI_LV_INTERRUPTS", ACPI_LV_INTERRUPTS}, 2659 {"ACPI_LV_VERBOSITY3", ACPI_LV_VERBOSITY3}, 2660 2661 /* Exceptionally verbose output -- also used in the global "DebugLevel" */ 2662 {"ACPI_LV_AML_DISASSEMBLE", ACPI_LV_AML_DISASSEMBLE}, 2663 {"ACPI_LV_VERBOSE_INFO", ACPI_LV_VERBOSE_INFO}, 2664 {"ACPI_LV_FULL_TABLES", ACPI_LV_FULL_TABLES}, 2665 {"ACPI_LV_EVENTS", ACPI_LV_EVENTS}, 2666 {"ACPI_LV_VERBOSE", ACPI_LV_VERBOSE}, 2667 {NULL, 0} 2668 }; 2669 2670 static void 2671 acpi_parse_debug(char *cp, struct debugtag *tag, UINT32 *flag) 2672 { 2673 char *ep; 2674 int i, l; 2675 int set; 2676 2677 while (*cp) { 2678 if (isspace(*cp)) { 2679 cp++; 2680 continue; 2681 } 2682 ep = cp; 2683 while (*ep && !isspace(*ep)) 2684 ep++; 2685 if (*cp == '!') { 2686 set = 0; 2687 cp++; 2688 if (cp == ep) 2689 continue; 2690 } else { 2691 set = 1; 2692 } 2693 l = ep - cp; 2694 for (i = 0; tag[i].name != NULL; i++) { 2695 if (!strncmp(cp, tag[i].name, l)) { 2696 if (set) 2697 *flag |= tag[i].value; 2698 else 2699 *flag &= ~tag[i].value; 2700 } 2701 } 2702 cp = ep; 2703 } 2704 } 2705 2706 static void 2707 acpi_set_debugging(void *junk) 2708 { 2709 char *layer, *level; 2710 2711 if (cold) { 2712 AcpiDbgLayer = 0; 2713 AcpiDbgLevel = 0; 2714 } 2715 2716 layer = getenv("debug.acpi.layer"); 2717 level = getenv("debug.acpi.level"); 2718 if (layer == NULL && level == NULL) 2719 return; 2720 2721 printf("ACPI set debug"); 2722 if (layer != NULL) { 2723 if (strcmp("NONE", layer) != 0) 2724 printf(" layer '%s'", layer); 2725 acpi_parse_debug(layer, &dbg_layer[0], &AcpiDbgLayer); 2726 freeenv(layer); 2727 } 2728 if (level != NULL) { 2729 if (strcmp("NONE", level) != 0) 2730 printf(" level '%s'", level); 2731 acpi_parse_debug(level, &dbg_level[0], &AcpiDbgLevel); 2732 freeenv(level); 2733 } 2734 printf("\n"); 2735 } 2736 SYSINIT(acpi_debugging, SI_SUB_TUNABLES, SI_ORDER_ANY, acpi_set_debugging, 2737 NULL); 2738 2739 static int 2740 acpi_debug_sysctl(SYSCTL_HANDLER_ARGS) 2741 { 2742 int error, *dbg; 2743 struct debugtag *tag; 2744 struct sbuf sb; 2745 2746 if (sbuf_new(&sb, NULL, 128, SBUF_AUTOEXTEND) == NULL) 2747 return (ENOMEM); 2748 if (strcmp(oidp->oid_arg1, "debug.acpi.layer") == 0) { 2749 tag = &dbg_layer[0]; 2750 dbg = &AcpiDbgLayer; 2751 } else { 2752 tag = &dbg_level[0]; 2753 dbg = &AcpiDbgLevel; 2754 } 2755 2756 /* Get old values if this is a get request. */ 2757 if (*dbg == 0) { 2758 sbuf_cpy(&sb, "NONE"); 2759 } else if (req->newptr == NULL) { 2760 for (; tag->name != NULL; tag++) { 2761 if ((*dbg & tag->value) == tag->value) 2762 sbuf_printf(&sb, "%s ", tag->name); 2763 } 2764 } 2765 sbuf_trim(&sb); 2766 sbuf_finish(&sb); 2767 2768 /* Copy out the old values to the user. */ 2769 error = SYSCTL_OUT(req, sbuf_data(&sb), sbuf_len(&sb)); 2770 sbuf_delete(&sb); 2771 2772 /* If the user is setting a string, parse it. */ 2773 if (error == 0 && req->newptr != NULL) { 2774 *dbg = 0; 2775 setenv((char *)oidp->oid_arg1, (char *)req->newptr); 2776 acpi_set_debugging(NULL); 2777 } 2778 2779 return (error); 2780 } 2781 SYSCTL_PROC(_debug_acpi, OID_AUTO, layer, CTLFLAG_RW | CTLTYPE_STRING, 2782 "debug.acpi.layer", 0, acpi_debug_sysctl, "A", ""); 2783 SYSCTL_PROC(_debug_acpi, OID_AUTO, level, CTLFLAG_RW | CTLTYPE_STRING, 2784 "debug.acpi.level", 0, acpi_debug_sysctl, "A", ""); 2785 #endif 2786 2787 static int 2788 acpi_pm_func(u_long cmd, void *arg, ...) 2789 { 2790 int state, acpi_state; 2791 int error; 2792 struct acpi_softc *sc; 2793 va_list ap; 2794 2795 error = 0; 2796 switch (cmd) { 2797 case POWER_CMD_SUSPEND: 2798 sc = (struct acpi_softc *)arg; 2799 if (sc == NULL) { 2800 error = EINVAL; 2801 goto out; 2802 } 2803 2804 va_start(ap, arg); 2805 state = va_arg(ap, int); 2806 va_end(ap); 2807 2808 switch (state) { 2809 case POWER_SLEEP_STATE_STANDBY: 2810 acpi_state = sc->acpi_standby_sx; 2811 break; 2812 case POWER_SLEEP_STATE_SUSPEND: 2813 acpi_state = sc->acpi_suspend_sx; 2814 break; 2815 case POWER_SLEEP_STATE_HIBERNATE: 2816 acpi_state = ACPI_STATE_S4; 2817 break; 2818 default: 2819 error = EINVAL; 2820 goto out; 2821 } 2822 2823 acpi_SetSleepState(sc, acpi_state); 2824 break; 2825 default: 2826 error = EINVAL; 2827 goto out; 2828 } 2829 2830 out: 2831 return (error); 2832 } 2833 2834 static void 2835 acpi_pm_register(void *arg) 2836 { 2837 if (!cold || resource_disabled("acpi", 0)) 2838 return; 2839 2840 power_pm_register(POWER_PM_TYPE_ACPI, acpi_pm_func, NULL); 2841 } 2842 2843 SYSINIT(power, SI_SUB_KLD, SI_ORDER_ANY, acpi_pm_register, 0); 2844