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/lock.h> 37 #include <sys/malloc.h> 38 #include <sys/mutex.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 48 #include <machine/clock.h> 49 #include <machine/resource.h> 50 51 #include <isa/isavar.h> 52 53 #include "acpi.h" 54 55 #include <dev/acpica/acpica_support.h> 56 57 #include <dev/acpica/acpivar.h> 58 #include <dev/acpica/acpiio.h> 59 60 MALLOC_DEFINE(M_ACPIDEV, "acpidev", "ACPI devices"); 61 62 /* 63 * Hooks for the ACPI CA debugging infrastructure 64 */ 65 #define _COMPONENT ACPI_BUS 66 MODULE_NAME("ACPI") 67 68 /* 69 * Character device 70 */ 71 72 static d_open_t acpiopen; 73 static d_close_t acpiclose; 74 static d_ioctl_t acpiioctl; 75 76 #define CDEV_MAJOR 152 77 static struct cdevsw acpi_cdevsw = { 78 acpiopen, 79 acpiclose, 80 noread, 81 nowrite, 82 acpiioctl, 83 nopoll, 84 nommap, 85 nostrategy, 86 "acpi", 87 CDEV_MAJOR, 88 nodump, 89 nopsize, 90 0 91 }; 92 93 static const char* sleep_state_names[] = { 94 "S0", "S1", "S2", "S3", "S4", "S5", "NONE"}; 95 96 /* this has to be static, as the softc is gone when we need it */ 97 static int acpi_off_state = ACPI_STATE_S5; 98 99 struct mtx acpi_mutex; 100 101 static int acpi_modevent(struct module *mod, int event, void *junk); 102 static void acpi_identify(driver_t *driver, device_t parent); 103 static int acpi_probe(device_t dev); 104 static int acpi_attach(device_t dev); 105 static device_t acpi_add_child(device_t bus, int order, const char *name, int unit); 106 static int acpi_print_resources(struct resource_list *rl, const char *name, int type, 107 const char *format); 108 static int acpi_print_child(device_t bus, device_t child); 109 static int acpi_read_ivar(device_t dev, device_t child, int index, uintptr_t *result); 110 static int acpi_write_ivar(device_t dev, device_t child, int index, uintptr_t value); 111 static int acpi_set_resource(device_t dev, device_t child, int type, int rid, u_long start, 112 u_long count); 113 static int acpi_get_resource(device_t dev, device_t child, int type, int rid, u_long *startp, 114 u_long *countp); 115 static struct resource *acpi_alloc_resource(device_t bus, device_t child, int type, int *rid, 116 u_long start, u_long end, u_long count, u_int flags); 117 static int acpi_release_resource(device_t bus, device_t child, int type, int rid, struct resource *r); 118 static u_int32_t acpi_isa_get_logicalid(device_t dev); 119 static int acpi_isa_pnp_probe(device_t bus, device_t child, struct isa_pnp_id *ids); 120 121 static void acpi_probe_children(device_t bus); 122 static ACPI_STATUS acpi_probe_child(ACPI_HANDLE handle, UINT32 level, void *context, void **status); 123 124 static void acpi_shutdown_pre_sync(void *arg, int howto); 125 static void acpi_shutdown_final(void *arg, int howto); 126 127 static void acpi_enable_fixed_events(struct acpi_softc *sc); 128 129 static void acpi_system_eventhandler_sleep(void *arg, int state); 130 static void acpi_system_eventhandler_wakeup(void *arg, int state); 131 static int acpi_sleep_state_sysctl(SYSCTL_HANDLER_ARGS); 132 133 static int acpi_pm_func(u_long cmd, void *arg, ...); 134 135 static device_method_t acpi_methods[] = { 136 /* Device interface */ 137 DEVMETHOD(device_identify, acpi_identify), 138 DEVMETHOD(device_probe, acpi_probe), 139 DEVMETHOD(device_attach, acpi_attach), 140 DEVMETHOD(device_shutdown, bus_generic_shutdown), 141 DEVMETHOD(device_suspend, bus_generic_suspend), 142 DEVMETHOD(device_resume, bus_generic_resume), 143 144 /* Bus interface */ 145 DEVMETHOD(bus_add_child, acpi_add_child), 146 DEVMETHOD(bus_print_child, acpi_print_child), 147 DEVMETHOD(bus_read_ivar, acpi_read_ivar), 148 DEVMETHOD(bus_write_ivar, acpi_write_ivar), 149 DEVMETHOD(bus_set_resource, acpi_set_resource), 150 DEVMETHOD(bus_get_resource, acpi_get_resource), 151 DEVMETHOD(bus_alloc_resource, acpi_alloc_resource), 152 DEVMETHOD(bus_release_resource, acpi_release_resource), 153 DEVMETHOD(bus_driver_added, bus_generic_driver_added), 154 DEVMETHOD(bus_activate_resource, bus_generic_activate_resource), 155 DEVMETHOD(bus_deactivate_resource, bus_generic_deactivate_resource), 156 DEVMETHOD(bus_setup_intr, bus_generic_setup_intr), 157 DEVMETHOD(bus_teardown_intr, bus_generic_teardown_intr), 158 159 /* ISA emulation */ 160 DEVMETHOD(isa_pnp_probe, acpi_isa_pnp_probe), 161 162 {0, 0} 163 }; 164 165 static driver_t acpi_driver = { 166 "acpi", 167 acpi_methods, 168 sizeof(struct acpi_softc), 169 }; 170 171 devclass_t acpi_devclass; 172 DRIVER_MODULE(acpi, nexus, acpi_driver, acpi_devclass, acpi_modevent, 0); 173 MODULE_VERSION(acpi, 100); 174 175 SYSCTL_INT(_debug, OID_AUTO, acpi_debug_layer, CTLFLAG_RW, &AcpiDbgLayer, 0, ""); 176 SYSCTL_INT(_debug, OID_AUTO, acpi_debug_level, CTLFLAG_RW, &AcpiDbgLevel, 0, ""); 177 static int acpi_ca_version = ACPI_CA_VERSION; 178 SYSCTL_INT(_debug, OID_AUTO, acpi_ca_version, CTLFLAG_RD, &acpi_ca_version, 0, ""); 179 180 /* 181 * ACPI can only be loaded as a module by the loader; activating it after 182 * system bootstrap time is not useful, and can be fatal to the system. 183 * It also cannot be unloaded, since the entire system bus heirarchy hangs off it. 184 */ 185 static int 186 acpi_modevent(struct module *mod, int event, void *junk) 187 { 188 switch(event) { 189 case MOD_LOAD: 190 if (!cold) 191 return(EPERM); 192 break; 193 case MOD_UNLOAD: 194 if (!cold && power_pm_get_type() == POWER_PM_TYPE_ACPI) 195 return(EBUSY); 196 break; 197 default: 198 break; 199 } 200 return(0); 201 } 202 203 /* 204 * Detect ACPI, perform early initialisation 205 */ 206 static void 207 acpi_identify(driver_t *driver, device_t parent) 208 { 209 device_t child; 210 int error; 211 caddr_t acpi_dsdt, p; 212 #ifdef ENABLE_DEBUGGER 213 char *debugpoint = getenv("debug.acpi.debugger"); 214 #endif 215 216 FUNCTION_TRACE(__func__); 217 218 if(!cold){ 219 printf("Don't load this driver from userland!!\n"); 220 return ; 221 } 222 223 /* 224 * Check that we haven't been disabled with a hint. 225 */ 226 if (!resource_int_value("acpi", 0, "disabled", &error) && 227 (error != 0)) 228 return_VOID; 229 230 /* 231 * Make sure we're not being doubly invoked. 232 */ 233 if (device_find_child(parent, "acpi", 0) != NULL) 234 return_VOID; 235 236 /* initialise the ACPI mutex */ 237 mtx_init(&acpi_mutex, "ACPI global lock", MTX_DEF); 238 239 /* 240 * Start up the ACPI CA subsystem. 241 */ 242 #ifdef ENABLE_DEBUGGER 243 if (debugpoint && !strcmp(debugpoint, "init")) 244 acpi_EnterDebugger(); 245 #endif 246 if ((error = AcpiInitializeSubsystem()) != AE_OK) { 247 printf("ACPI: initialisation failed: %s\n", AcpiFormatException(error)); 248 return_VOID; 249 } 250 #ifdef ENABLE_DEBUGGER 251 if (debugpoint && !strcmp(debugpoint, "tables")) 252 acpi_EnterDebugger(); 253 #endif 254 255 if ((acpi_dsdt = preload_search_by_type("acpi_dsdt")) != NULL) { 256 if ((p = preload_search_info(acpi_dsdt, MODINFO_ADDR)) != NULL) { 257 error = AcpiSetDsdtTablePtr(*(void **)p); 258 if (error != AE_OK) { 259 printf("ACPI: DSDT overriding failed: %s\n", 260 AcpiFormatException(error)); 261 } else { 262 printf("ACPI: DSDT was overridden.\n"); 263 } 264 } 265 } 266 267 if ((error = AcpiLoadTables()) != AE_OK) { 268 printf("ACPI: table load failed: %s\n", AcpiFormatException(error)); 269 return_VOID; 270 } 271 272 /* 273 * Attach the actual ACPI device. 274 */ 275 if ((child = BUS_ADD_CHILD(parent, 0, "acpi", 0)) == NULL) { 276 device_printf(parent, "ACPI: could not attach\n"); 277 return_VOID; 278 } 279 } 280 281 /* 282 * Fetch some descriptive data from ACPI to put in our attach message 283 */ 284 static int 285 acpi_probe(device_t dev) 286 { 287 ACPI_TABLE_HEADER th; 288 char buf[20]; 289 ACPI_STATUS status; 290 int error; 291 292 FUNCTION_TRACE(__func__); 293 294 if (power_pm_get_type() != POWER_PM_TYPE_NONE && 295 power_pm_get_type() != POWER_PM_TYPE_ACPI) { 296 device_printf(dev, "Other PM system enabled.\n"); 297 return_VALUE(ENXIO); 298 } 299 300 ACPI_LOCK; 301 302 if ((status = AcpiGetTableHeader(ACPI_TABLE_XSDT, 1, &th)) != AE_OK) { 303 device_printf(dev, "couldn't get XSDT header: %s\n", AcpiFormatException(status)); 304 error = ENXIO; 305 } else { 306 sprintf(buf, "%.6s %.8s", th.OemId, th.OemTableId); 307 device_set_desc_copy(dev, buf); 308 error = 0; 309 } 310 ACPI_UNLOCK; 311 return_VALUE(error); 312 } 313 314 static int 315 acpi_attach(device_t dev) 316 { 317 struct acpi_softc *sc; 318 ACPI_STATUS status; 319 int error; 320 UINT32 flags; 321 322 #ifdef ENABLE_DEBUGGER 323 char *debugpoint = getenv("debug.acpi.debugger"); 324 #endif 325 326 FUNCTION_TRACE(__func__); 327 ACPI_LOCK; 328 sc = device_get_softc(dev); 329 bzero(sc, sizeof(*sc)); 330 sc->acpi_dev = dev; 331 332 #ifdef ENABLE_DEBUGGER 333 if (debugpoint && !strcmp(debugpoint, "spaces")) 334 acpi_EnterDebugger(); 335 #endif 336 337 /* 338 * Install the default address space handlers. 339 */ 340 error = ENXIO; 341 if ((status = AcpiInstallAddressSpaceHandler(ACPI_ROOT_OBJECT, 342 ACPI_ADR_SPACE_SYSTEM_MEMORY, 343 ACPI_DEFAULT_HANDLER, 344 NULL, NULL)) != AE_OK) { 345 device_printf(dev, "could not initialise SystemMemory handler: %s\n", AcpiFormatException(status)); 346 goto out; 347 } 348 if ((status = AcpiInstallAddressSpaceHandler(ACPI_ROOT_OBJECT, 349 ACPI_ADR_SPACE_SYSTEM_IO, 350 ACPI_DEFAULT_HANDLER, 351 NULL, NULL)) != AE_OK) { 352 device_printf(dev, "could not initialise SystemIO handler: %s\n", AcpiFormatException(status)); 353 goto out; 354 } 355 if ((status = AcpiInstallAddressSpaceHandler(ACPI_ROOT_OBJECT, 356 ACPI_ADR_SPACE_PCI_CONFIG, 357 ACPI_DEFAULT_HANDLER, 358 NULL, NULL)) != AE_OK) { 359 device_printf(dev, "could not initialise PciConfig handler: %s\n", AcpiFormatException(status)); 360 goto out; 361 } 362 363 /* 364 * Bring ACPI fully online. 365 * 366 * Note that some systems (specifically, those with namespace evaluation issues 367 * that require the avoidance of parts of the namespace) must avoid running _INI 368 * and _STA on everything, as well as dodging the final object init pass. 369 * 370 * For these devices, we set ACPI_NO_DEVICE_INIT and ACPI_NO_OBJECT_INIT). 371 * 372 * XXX We should arrange for the object init pass after we have attached all our 373 * child devices, but on many systems it works here. 374 */ 375 #ifdef ENABLE_DEBUGGER 376 if (debugpoint && !strcmp(debugpoint, "enable")) 377 acpi_EnterDebugger(); 378 #endif 379 flags = 0; 380 if (getenv("debug.acpi.avoid") != NULL) 381 flags = ACPI_NO_DEVICE_INIT | ACPI_NO_OBJECT_INIT; 382 if ((status = AcpiEnableSubsystem(flags)) != AE_OK) { 383 device_printf(dev, "could not enable ACPI: %s\n", AcpiFormatException(status)); 384 goto out; 385 } 386 387 /* 388 * Setup our sysctl tree. 389 * 390 * XXX: This doesn't check to make sure that none of these fail. 391 */ 392 sysctl_ctx_init(&sc->acpi_sysctl_ctx); 393 sc->acpi_sysctl_tree = SYSCTL_ADD_NODE(&sc->acpi_sysctl_ctx, 394 SYSCTL_STATIC_CHILDREN(_hw), OID_AUTO, 395 device_get_name(dev), CTLFLAG_RD, 0, ""); 396 SYSCTL_ADD_PROC(&sc->acpi_sysctl_ctx, SYSCTL_CHILDREN(sc->acpi_sysctl_tree), 397 OID_AUTO, "power_button_state", CTLTYPE_STRING | CTLFLAG_RW, 398 &sc->acpi_power_button_sx, 0, acpi_sleep_state_sysctl, "A", ""); 399 SYSCTL_ADD_PROC(&sc->acpi_sysctl_ctx, SYSCTL_CHILDREN(sc->acpi_sysctl_tree), 400 OID_AUTO, "sleep_button_state", CTLTYPE_STRING | CTLFLAG_RW, 401 &sc->acpi_sleep_button_sx, 0, acpi_sleep_state_sysctl, "A", ""); 402 SYSCTL_ADD_PROC(&sc->acpi_sysctl_ctx, SYSCTL_CHILDREN(sc->acpi_sysctl_tree), 403 OID_AUTO, "lid_switch_state", CTLTYPE_STRING | CTLFLAG_RW, 404 &sc->acpi_lid_switch_sx, 0, acpi_sleep_state_sysctl, "A", ""); 405 SYSCTL_ADD_PROC(&sc->acpi_sysctl_ctx, SYSCTL_CHILDREN(sc->acpi_sysctl_tree), 406 OID_AUTO, "standby_state", CTLTYPE_STRING | CTLFLAG_RW, 407 &sc->acpi_standby_sx, 0, acpi_sleep_state_sysctl, "A", ""); 408 SYSCTL_ADD_PROC(&sc->acpi_sysctl_ctx, SYSCTL_CHILDREN(sc->acpi_sysctl_tree), 409 OID_AUTO, "suspend_state", CTLTYPE_STRING | CTLFLAG_RW, 410 &sc->acpi_suspend_sx, 0, acpi_sleep_state_sysctl, "A", ""); 411 SYSCTL_ADD_INT(&sc->acpi_sysctl_ctx, SYSCTL_CHILDREN(sc->acpi_sysctl_tree), 412 OID_AUTO, "s4bios", CTLFLAG_RD | CTLFLAG_RW, 413 &sc->acpi_s4bios, 0, "S4BIOS mode"); 414 SYSCTL_ADD_INT(&sc->acpi_sysctl_ctx, SYSCTL_CHILDREN(sc->acpi_sysctl_tree), 415 OID_AUTO, "verbose", CTLFLAG_RD | CTLFLAG_RW, 416 &sc->acpi_verbose, 0, "verbose mode"); 417 sc->acpi_s4bios = 1; 418 if (bootverbose) 419 sc->acpi_verbose = 1; 420 421 /* 422 * Dispatch the default sleep state to devices. 423 * TBD: should be configured from userland policy manager. 424 */ 425 sc->acpi_power_button_sx = ACPI_POWER_BUTTON_DEFAULT_SX; 426 sc->acpi_sleep_button_sx = ACPI_SLEEP_BUTTON_DEFAULT_SX; 427 sc->acpi_lid_switch_sx = ACPI_LID_SWITCH_DEFAULT_SX; 428 sc->acpi_standby_sx = ACPI_STATE_S1; 429 sc->acpi_suspend_sx = ACPI_STATE_S3; 430 431 acpi_enable_fixed_events(sc); 432 433 /* 434 * Scan the namespace and attach/initialise children. 435 */ 436 #ifdef ENABLE_DEBUGGER 437 if (debugpoint && !strcmp(debugpoint, "probe")) 438 acpi_EnterDebugger(); 439 #endif 440 if (!acpi_disabled("bus")) 441 acpi_probe_children(dev); 442 443 /* 444 * Register our shutdown handlers 445 */ 446 EVENTHANDLER_REGISTER(shutdown_pre_sync, acpi_shutdown_pre_sync, sc, SHUTDOWN_PRI_LAST); 447 EVENTHANDLER_REGISTER(shutdown_final, acpi_shutdown_final, sc, SHUTDOWN_PRI_LAST); 448 449 /* 450 * Register our acpi event handlers. 451 * XXX should be configurable eg. via userland policy manager. 452 */ 453 EVENTHANDLER_REGISTER(acpi_sleep_event, acpi_system_eventhandler_sleep, sc, ACPI_EVENT_PRI_LAST); 454 EVENTHANDLER_REGISTER(acpi_wakeup_event, acpi_system_eventhandler_wakeup, sc, ACPI_EVENT_PRI_LAST); 455 456 /* 457 * Flag our initial states. 458 */ 459 sc->acpi_enabled = 1; 460 sc->acpi_sstate = ACPI_STATE_S0; 461 462 /* 463 * Create the control device 464 */ 465 sc->acpi_dev_t = make_dev(&acpi_cdevsw, 0, 0, 5, 0660, "acpi"); 466 sc->acpi_dev_t->si_drv1 = sc; 467 468 #ifdef ENABLE_DEBUGGER 469 if (debugpoint && !strcmp(debugpoint, "running")) 470 acpi_EnterDebugger(); 471 #endif 472 473 if ((error = acpi_machdep_init(dev))) { 474 goto out; 475 } 476 477 /* Register ACPI again to pass the correct argument of pm_func. */ 478 power_pm_register(POWER_PM_TYPE_ACPI, acpi_pm_func, sc); 479 480 error = 0; 481 482 out: 483 ACPI_UNLOCK; 484 return_VALUE(error); 485 } 486 487 /* 488 * Handle a new device being added 489 */ 490 static device_t 491 acpi_add_child(device_t bus, int order, const char *name, int unit) 492 { 493 struct acpi_device *ad; 494 device_t child; 495 496 if ((ad = malloc(sizeof(*ad), M_ACPIDEV, M_NOWAIT)) == NULL) 497 return(NULL); 498 bzero(ad, sizeof(*ad)); 499 500 resource_list_init(&ad->ad_rl); 501 502 child = device_add_child_ordered(bus, order, name, unit); 503 if (child != NULL) 504 device_set_ivars(child, ad); 505 return(child); 506 } 507 508 /* 509 * Print child device resource usage 510 */ 511 static int 512 acpi_print_resources(struct resource_list *rl, const char *name, int type, const char *format) 513 { 514 struct resource_list_entry *rle; 515 int printed, retval; 516 517 printed = 0; 518 retval = 0; 519 520 if (!SLIST_FIRST(rl)) 521 return(0); 522 523 /* Yes, this is kinda cheating */ 524 SLIST_FOREACH(rle, rl, link) { 525 if (rle->type == type) { 526 if (printed == 0) 527 retval += printf(" %s ", name); 528 else if (printed > 0) 529 retval += printf(","); 530 printed++; 531 retval += printf(format, rle->start); 532 if (rle->count > 1) { 533 retval += printf("-"); 534 retval += printf(format, rle->start + 535 rle->count - 1); 536 } 537 } 538 } 539 return(retval); 540 } 541 542 static int 543 acpi_print_child(device_t bus, device_t child) 544 { 545 struct acpi_device *adev = device_get_ivars(child); 546 struct resource_list *rl = &adev->ad_rl; 547 int retval = 0; 548 549 retval += bus_print_child_header(bus, child); 550 retval += acpi_print_resources(rl, "port", SYS_RES_IOPORT, "%#lx"); 551 retval += acpi_print_resources(rl, "iomem", SYS_RES_MEMORY, "%#lx"); 552 retval += acpi_print_resources(rl, "irq", SYS_RES_IRQ, "%ld"); 553 retval += bus_print_child_footer(bus, child); 554 555 return(retval); 556 } 557 558 559 /* 560 * Handle per-device ivars 561 */ 562 static int 563 acpi_read_ivar(device_t dev, device_t child, int index, uintptr_t *result) 564 { 565 struct acpi_device *ad; 566 567 if ((ad = device_get_ivars(child)) == NULL) { 568 printf("device has no ivars\n"); 569 return(ENOENT); 570 } 571 572 switch(index) { 573 /* ACPI ivars */ 574 case ACPI_IVAR_HANDLE: 575 *(ACPI_HANDLE *)result = ad->ad_handle; 576 break; 577 case ACPI_IVAR_MAGIC: 578 *(int *)result = ad->ad_magic; 579 break; 580 case ACPI_IVAR_PRIVATE: 581 *(void **)result = ad->ad_private; 582 break; 583 584 /* ISA compatibility */ 585 case ISA_IVAR_VENDORID: 586 case ISA_IVAR_SERIAL: 587 case ISA_IVAR_COMPATID: 588 *(int *)result = -1; 589 break; 590 591 case ISA_IVAR_LOGICALID: 592 *(int *)result = acpi_isa_get_logicalid(child); 593 break; 594 595 default: 596 panic("bad ivar read request (%d)\n", index); 597 return(ENOENT); 598 } 599 return(0); 600 } 601 602 static int 603 acpi_write_ivar(device_t dev, device_t child, int index, uintptr_t value) 604 { 605 struct acpi_device *ad; 606 607 if ((ad = device_get_ivars(child)) == NULL) { 608 printf("device has no ivars\n"); 609 return(ENOENT); 610 } 611 612 switch(index) { 613 /* ACPI ivars */ 614 case ACPI_IVAR_HANDLE: 615 ad->ad_handle = (ACPI_HANDLE)value; 616 break; 617 case ACPI_IVAR_MAGIC: 618 ad->ad_magic = (int )value; 619 break; 620 case ACPI_IVAR_PRIVATE: 621 ad->ad_private = (void *)value; 622 break; 623 624 default: 625 panic("bad ivar write request (%d)\n", index); 626 return(ENOENT); 627 } 628 return(0); 629 } 630 631 /* 632 * Handle child resource allocation/removal 633 */ 634 static int 635 acpi_set_resource(device_t dev, device_t child, int type, int rid, u_long start, u_long count) 636 { 637 struct acpi_device *ad = device_get_ivars(child); 638 struct resource_list *rl = &ad->ad_rl; 639 640 resource_list_add(rl, type, rid, start, start + count -1, count); 641 642 return(0); 643 } 644 645 static int 646 acpi_get_resource(device_t dev, device_t child, int type, int rid, u_long *startp, u_long *countp) 647 { 648 struct acpi_device *ad = device_get_ivars(child); 649 struct resource_list *rl = &ad->ad_rl; 650 struct resource_list_entry *rle; 651 652 rle = resource_list_find(rl, type, rid); 653 if (!rle) 654 return(ENOENT); 655 656 if (startp) 657 *startp = rle->start; 658 if (countp) 659 *countp = rle->count; 660 661 return(0); 662 } 663 664 static struct resource * 665 acpi_alloc_resource(device_t bus, device_t child, int type, int *rid, 666 u_long start, u_long end, u_long count, u_int flags) 667 { 668 struct acpi_device *ad = device_get_ivars(child); 669 struct resource_list *rl = &ad->ad_rl; 670 671 return(resource_list_alloc(rl, bus, child, type, rid, start, end, count, flags)); 672 } 673 674 static int 675 acpi_release_resource(device_t bus, device_t child, int type, int rid, struct resource *r) 676 { 677 struct acpi_device *ad = device_get_ivars(child); 678 struct resource_list *rl = &ad->ad_rl; 679 680 return(resource_list_release(rl, bus, child, type, rid, r)); 681 } 682 683 /* 684 * Handle ISA-like devices probing for a PnP ID to match. 685 */ 686 #define PNP_EISAID(s) \ 687 ((((s[0] - '@') & 0x1f) << 2) \ 688 | (((s[1] - '@') & 0x18) >> 3) \ 689 | (((s[1] - '@') & 0x07) << 13) \ 690 | (((s[2] - '@') & 0x1f) << 8) \ 691 | (PNP_HEXTONUM(s[4]) << 16) \ 692 | (PNP_HEXTONUM(s[3]) << 20) \ 693 | (PNP_HEXTONUM(s[6]) << 24) \ 694 | (PNP_HEXTONUM(s[5]) << 28)) 695 696 static u_int32_t 697 acpi_isa_get_logicalid(device_t dev) 698 { 699 ACPI_HANDLE h; 700 ACPI_DEVICE_INFO devinfo; 701 ACPI_STATUS error; 702 u_int32_t pnpid; 703 704 FUNCTION_TRACE(__func__); 705 706 pnpid = 0; 707 ACPI_LOCK; 708 709 /* fetch and validate the HID */ 710 if ((h = acpi_get_handle(dev)) == NULL) 711 goto out; 712 if ((error = AcpiGetObjectInfo(h, &devinfo)) != AE_OK) 713 goto out; 714 if (!(devinfo.Valid & ACPI_VALID_HID)) 715 goto out; 716 717 pnpid = PNP_EISAID(devinfo.HardwareId); 718 out: 719 ACPI_UNLOCK; 720 return_VALUE(pnpid); 721 } 722 723 static int 724 acpi_isa_pnp_probe(device_t bus, device_t child, struct isa_pnp_id *ids) 725 { 726 int result; 727 u_int32_t pnpid; 728 729 FUNCTION_TRACE(__func__); 730 731 /* 732 * ISA-style drivers attached to ACPI may persist and 733 * probe manually if we return ENOENT. We never want 734 * that to happen, so don't ever return it. 735 */ 736 result = ENXIO; 737 738 /* scan the supplied IDs for a match */ 739 pnpid = acpi_isa_get_logicalid(child); 740 while (ids && ids->ip_id) { 741 if (pnpid == ids->ip_id) { 742 result = 0; 743 goto out; 744 } 745 ids++; 746 } 747 out: 748 return_VALUE(result); 749 } 750 751 /* 752 * Scan relevant portions of the ACPI namespace and attach child devices. 753 * 754 * Note that we only expect to find devices in the \_PR_, \_TZ_, \_SI_ and \_SB_ scopes, 755 * and \_PR_ and \_TZ_ become obsolete in the ACPI 2.0 spec. 756 */ 757 static void 758 acpi_probe_children(device_t bus) 759 { 760 ACPI_HANDLE parent; 761 static char *scopes[] = {"\\_PR_", "\\_TZ_", "\\_SI", "\\_SB_", NULL}; 762 int i; 763 764 FUNCTION_TRACE(__func__); 765 ACPI_ASSERTLOCK; 766 767 /* 768 * Create any static children by calling device identify methods. 769 */ 770 ACPI_DEBUG_PRINT((ACPI_DB_OBJECTS, "device identify routines\n")); 771 bus_generic_probe(bus); 772 773 /* 774 * Scan the namespace and insert placeholders for all the devices that 775 * we find. 776 * 777 * Note that we use AcpiWalkNamespace rather than AcpiGetDevices because 778 * we want to create nodes for all devices, not just those that are currently 779 * present. (This assumes that we don't want to create/remove devices as they 780 * appear, which might be smarter.) 781 */ 782 ACPI_DEBUG_PRINT((ACPI_DB_OBJECTS, "namespace scan\n")); 783 for (i = 0; scopes[i] != NULL; i++) 784 if ((AcpiGetHandle(ACPI_ROOT_OBJECT, scopes[i], &parent)) == AE_OK) 785 AcpiWalkNamespace(ACPI_TYPE_ANY, parent, 100, acpi_probe_child, bus, NULL); 786 787 /* 788 * Scan all of the child devices we have created and let them probe/attach. 789 */ 790 ACPI_DEBUG_PRINT((ACPI_DB_OBJECTS, "first bus_generic_attach\n")); 791 bus_generic_attach(bus); 792 793 /* 794 * Some of these children may have attached others as part of their attach 795 * process (eg. the root PCI bus driver), so rescan. 796 */ 797 ACPI_DEBUG_PRINT((ACPI_DB_OBJECTS, "second bus_generic_attach\n")); 798 bus_generic_attach(bus); 799 800 ACPI_DEBUG_PRINT((ACPI_DB_OBJECTS, "done attaching children\n")); 801 return_VOID; 802 } 803 804 /* 805 * Evaluate a child device and determine whether we might attach a device to 806 * it. 807 */ 808 static ACPI_STATUS 809 acpi_probe_child(ACPI_HANDLE handle, UINT32 level, void *context, void **status) 810 { 811 ACPI_OBJECT_TYPE type; 812 device_t child, bus = (device_t)context; 813 814 FUNCTION_TRACE(__func__); 815 816 /* 817 * Skip this device if we think we'll have trouble with it. 818 */ 819 if (acpi_avoid(handle)) 820 return_ACPI_STATUS(AE_OK); 821 822 if (AcpiGetType(handle, &type) == AE_OK) { 823 switch(type) { 824 case ACPI_TYPE_DEVICE: 825 case ACPI_TYPE_PROCESSOR: 826 case ACPI_TYPE_THERMAL: 827 case ACPI_TYPE_POWER: 828 if (acpi_disabled("children")) 829 break; 830 /* 831 * Create a placeholder device for this node. Sort the placeholder 832 * so that the probe/attach passes will run breadth-first. 833 */ 834 ACPI_DEBUG_PRINT((ACPI_DB_OBJECTS, "scanning '%s'\n", acpi_name(handle))); 835 child = BUS_ADD_CHILD(bus, level * 10, NULL, -1); 836 if (child == NULL) 837 break; 838 acpi_set_handle(child, handle); 839 840 /* 841 * Check that the device is present. If it's not present, 842 * leave it disabled (so that we have a device_t attached to 843 * the handle, but we don't probe it). 844 */ 845 if ((type == ACPI_TYPE_DEVICE) && (!acpi_DeviceIsPresent(child))) { 846 device_disable(child); 847 break; 848 } 849 850 /* 851 * Get the device's resource settings and attach them. 852 * Note that if the device has _PRS but no _CRS, we need 853 * to decide when it's appropriate to try to configure the 854 * device. Ignore the return value here; it's OK for the 855 * device not to have any resources. 856 */ 857 acpi_parse_resources(child, handle, &acpi_res_parse_set); 858 859 /* if we're debugging, probe/attach now rather than later */ 860 DEBUG_EXEC(device_probe_and_attach(child)); 861 break; 862 } 863 } 864 return_ACPI_STATUS(AE_OK); 865 } 866 867 static void 868 acpi_shutdown_pre_sync(void *arg, int howto) 869 { 870 871 ACPI_ASSERTLOCK; 872 873 /* 874 * Disable all ACPI events before soft off, otherwise the system 875 * will be turned on again on some laptops. 876 * 877 * XXX this should probably be restricted to masking some events just 878 * before powering down, since we may still need ACPI during the 879 * shutdown process. 880 */ 881 acpi_Disable((struct acpi_softc *)arg); 882 } 883 884 static void 885 acpi_shutdown_final(void *arg, int howto) 886 { 887 ACPI_STATUS status; 888 889 ACPI_ASSERTLOCK; 890 891 if (howto & RB_POWEROFF) { 892 printf("Power system off using ACPI...\n"); 893 status = AcpiEnterSleepStatePrep(acpi_off_state); 894 if (status != AE_OK) { 895 printf("AcpiEnterSleepStatePrep failed - %s\n", 896 AcpiFormatException(status)); 897 return; 898 } 899 if ((status = AcpiEnterSleepState(acpi_off_state)) != AE_OK) { 900 printf("ACPI power-off failed - %s\n", AcpiFormatException(status)); 901 } else { 902 DELAY(1000000); 903 printf("ACPI power-off failed - timeout\n"); 904 } 905 } 906 } 907 908 static void 909 acpi_enable_fixed_events(struct acpi_softc *sc) 910 { 911 static int first_time = 1; 912 #define MSGFORMAT "%s button is handled as a fixed feature programming model.\n" 913 914 ACPI_ASSERTLOCK; 915 916 /* Enable and clear fixed events and install handlers. */ 917 if ((AcpiGbl_FADT != NULL) && (AcpiGbl_FADT->PwrButton == 0)) { 918 AcpiEnableEvent(ACPI_EVENT_POWER_BUTTON, ACPI_EVENT_FIXED, 0); 919 AcpiClearEvent(ACPI_EVENT_POWER_BUTTON, ACPI_EVENT_FIXED); 920 AcpiInstallFixedEventHandler(ACPI_EVENT_POWER_BUTTON, 921 acpi_eventhandler_power_button_for_sleep, sc); 922 if (first_time) { 923 device_printf(sc->acpi_dev, MSGFORMAT, "power"); 924 } 925 } 926 if ((AcpiGbl_FADT != NULL) && (AcpiGbl_FADT->SleepButton == 0)) { 927 AcpiEnableEvent(ACPI_EVENT_SLEEP_BUTTON, ACPI_EVENT_FIXED, 0); 928 AcpiClearEvent(ACPI_EVENT_SLEEP_BUTTON, ACPI_EVENT_FIXED); 929 AcpiInstallFixedEventHandler(ACPI_EVENT_SLEEP_BUTTON, 930 acpi_eventhandler_sleep_button_for_sleep, sc); 931 if (first_time) { 932 device_printf(sc->acpi_dev, MSGFORMAT, "sleep"); 933 } 934 } 935 936 first_time = 0; 937 } 938 939 /* 940 * Returns true if the device is actually present and should 941 * be attached to. This requires the present, enabled, UI-visible 942 * and diagnostics-passed bits to be set. 943 */ 944 BOOLEAN 945 acpi_DeviceIsPresent(device_t dev) 946 { 947 ACPI_HANDLE h; 948 ACPI_DEVICE_INFO devinfo; 949 ACPI_STATUS error; 950 951 ACPI_ASSERTLOCK; 952 953 if ((h = acpi_get_handle(dev)) == NULL) 954 return(FALSE); 955 if ((error = AcpiGetObjectInfo(h, &devinfo)) != AE_OK) 956 return(FALSE); 957 /* if no _STA method, must be present */ 958 if (!(devinfo.Valid & ACPI_VALID_STA)) 959 return(TRUE); 960 /* return true for 'present' and 'functioning' */ 961 if ((devinfo.CurrentStatus & 0x9) == 0x9) 962 return(TRUE); 963 return(FALSE); 964 } 965 966 /* 967 * Match a HID string against a device 968 */ 969 BOOLEAN 970 acpi_MatchHid(device_t dev, char *hid) 971 { 972 ACPI_HANDLE h; 973 ACPI_DEVICE_INFO devinfo; 974 ACPI_STATUS error; 975 int cid; 976 977 ACPI_ASSERTLOCK; 978 979 if (hid == NULL) 980 return(FALSE); 981 if ((h = acpi_get_handle(dev)) == NULL) 982 return(FALSE); 983 if ((error = AcpiGetObjectInfo(h, &devinfo)) != AE_OK) 984 return(FALSE); 985 if ((devinfo.Valid & ACPI_VALID_HID) && !strcmp(hid, devinfo.HardwareId)) 986 return(TRUE); 987 if ((error = acpi_EvaluateInteger(h, "_CID", &cid)) != AE_OK) 988 return(FALSE); 989 if (cid == PNP_EISAID(hid)) 990 return(TRUE); 991 return(FALSE); 992 } 993 994 /* 995 * Return the handle of a named object within our scope, ie. that of (parent) 996 * or one if its parents. 997 */ 998 ACPI_STATUS 999 acpi_GetHandleInScope(ACPI_HANDLE parent, char *path, ACPI_HANDLE *result) 1000 { 1001 ACPI_HANDLE r; 1002 ACPI_STATUS status; 1003 1004 ACPI_ASSERTLOCK; 1005 1006 /* walk back up the tree to the root */ 1007 for (;;) { 1008 status = AcpiGetHandle(parent, path, &r); 1009 if (status == AE_OK) { 1010 *result = r; 1011 return(AE_OK); 1012 } 1013 if (status != AE_NOT_FOUND) 1014 return(AE_OK); 1015 if (AcpiGetParent(parent, &r) != AE_OK) 1016 return(AE_NOT_FOUND); 1017 parent = r; 1018 } 1019 } 1020 1021 /* 1022 * Allocate a buffer with a preset data size. 1023 */ 1024 ACPI_BUFFER * 1025 acpi_AllocBuffer(int size) 1026 { 1027 ACPI_BUFFER *buf; 1028 1029 if ((buf = malloc(size + sizeof(*buf), M_ACPIDEV, M_NOWAIT)) == NULL) 1030 return(NULL); 1031 buf->Length = size; 1032 buf->Pointer = (void *)(buf + 1); 1033 return(buf); 1034 } 1035 1036 /* 1037 * Perform the tedious double-get procedure required for fetching something into 1038 * an ACPI_BUFFER that has not been initialised. 1039 */ 1040 ACPI_STATUS 1041 acpi_GetIntoBuffer(ACPI_HANDLE handle, ACPI_STATUS (*func)(ACPI_HANDLE, ACPI_BUFFER *), ACPI_BUFFER *buf) 1042 { 1043 ACPI_STATUS status; 1044 1045 ACPI_ASSERTLOCK; 1046 1047 buf->Length = 0; 1048 buf->Pointer = NULL; 1049 1050 if ((status = func(handle, buf)) != AE_BUFFER_OVERFLOW) 1051 return(status); 1052 if ((buf->Pointer = AcpiOsCallocate(buf->Length)) == NULL) 1053 return(AE_NO_MEMORY); 1054 return(func(handle, buf)); 1055 } 1056 1057 /* 1058 * Perform the tedious double-get procedure required for fetching a table into 1059 * an ACPI_BUFFER that has not been initialised. 1060 */ 1061 ACPI_STATUS 1062 acpi_GetTableIntoBuffer(ACPI_TABLE_TYPE table, UINT32 instance, ACPI_BUFFER *buf) 1063 { 1064 ACPI_STATUS status; 1065 1066 ACPI_ASSERTLOCK; 1067 1068 buf->Length = 0; 1069 buf->Pointer = NULL; 1070 1071 if ((status = AcpiGetTable(table, instance, buf)) != AE_BUFFER_OVERFLOW) 1072 return(status); 1073 if ((buf->Pointer = AcpiOsCallocate(buf->Length)) == NULL) 1074 return(AE_NO_MEMORY); 1075 return(AcpiGetTable(table, instance, buf)); 1076 } 1077 1078 /* 1079 * Perform the tedious double-evaluate procedure for evaluating something into 1080 * an ACPI_BUFFER that has not been initialised. Note that this evaluates 1081 * twice, so avoid applying this to things that may have side-effects. 1082 * 1083 * This is like AcpiEvaluateObject with automatic buffer allocation. 1084 */ 1085 ACPI_STATUS 1086 acpi_EvaluateIntoBuffer(ACPI_HANDLE object, ACPI_STRING pathname, ACPI_OBJECT_LIST *params, 1087 ACPI_BUFFER *buf) 1088 { 1089 ACPI_STATUS status; 1090 1091 ACPI_ASSERTLOCK; 1092 1093 buf->Length = 0; 1094 buf->Pointer = NULL; 1095 1096 if ((status = AcpiEvaluateObject(object, pathname, params, buf)) != AE_BUFFER_OVERFLOW) 1097 return(status); 1098 if ((buf->Pointer = AcpiOsCallocate(buf->Length)) == NULL) 1099 return(AE_NO_MEMORY); 1100 return(AcpiEvaluateObject(object, pathname, params, buf)); 1101 } 1102 1103 /* 1104 * Evaluate a path that should return an integer. 1105 */ 1106 ACPI_STATUS 1107 acpi_EvaluateInteger(ACPI_HANDLE handle, char *path, int *number) 1108 { 1109 ACPI_STATUS error; 1110 ACPI_BUFFER buf; 1111 ACPI_OBJECT param, *p; 1112 int i; 1113 1114 ACPI_ASSERTLOCK; 1115 1116 if (handle == NULL) 1117 handle = ACPI_ROOT_OBJECT; 1118 1119 /* 1120 * Assume that what we've been pointed at is an Integer object, or 1121 * a method that will return an Integer. 1122 */ 1123 buf.Pointer = ¶m; 1124 buf.Length = sizeof(param); 1125 if ((error = AcpiEvaluateObject(handle, path, NULL, &buf)) == AE_OK) { 1126 if (param.Type == ACPI_TYPE_INTEGER) { 1127 *number = param.Integer.Value; 1128 } else { 1129 error = AE_TYPE; 1130 } 1131 } 1132 1133 /* 1134 * In some applications, a method that's expected to return an Integer 1135 * may instead return a Buffer (probably to simplify some internal 1136 * arithmetic). We'll try to fetch whatever it is, and if it's a Buffer, 1137 * convert it into an Integer as best we can. 1138 * 1139 * This is a hack. 1140 */ 1141 if (error == AE_BUFFER_OVERFLOW) { 1142 if ((buf.Pointer = AcpiOsCallocate(buf.Length)) == NULL) { 1143 error = AE_NO_MEMORY; 1144 } else { 1145 if ((error = AcpiEvaluateObject(handle, path, NULL, &buf)) == AE_OK) { 1146 p = (ACPI_OBJECT *)buf.Pointer; 1147 if (p->Type != ACPI_TYPE_BUFFER) { 1148 error = AE_TYPE; 1149 } else { 1150 if (p->Buffer.Length > sizeof(int)) { 1151 error = AE_BAD_DATA; 1152 } else { 1153 *number = 0; 1154 for (i = 0; i < p->Buffer.Length; i++) 1155 *number += (*(p->Buffer.Pointer + i) << (i * 8)); 1156 } 1157 } 1158 } 1159 } 1160 AcpiOsFree(buf.Pointer); 1161 } 1162 return(error); 1163 } 1164 1165 /* 1166 * Iterate over the elements of an a package object, calling the supplied 1167 * function for each element. 1168 * 1169 * XXX possible enhancement might be to abort traversal on error. 1170 */ 1171 ACPI_STATUS 1172 acpi_ForeachPackageObject(ACPI_OBJECT *pkg, void (* func)(ACPI_OBJECT *comp, void *arg), void *arg) 1173 { 1174 ACPI_OBJECT *comp; 1175 int i; 1176 1177 if ((pkg == NULL) || (pkg->Type != ACPI_TYPE_PACKAGE)) 1178 return(AE_BAD_PARAMETER); 1179 1180 /* iterate over components */ 1181 for (i = 0, comp = pkg->Package.Elements; i < pkg->Package.Count; i++, comp++) 1182 func(comp, arg); 1183 1184 return(AE_OK); 1185 } 1186 1187 /* 1188 * Find the (index)th resource object in a set. 1189 */ 1190 ACPI_STATUS 1191 acpi_FindIndexedResource(ACPI_BUFFER *buf, int index, ACPI_RESOURCE **resp) 1192 { 1193 ACPI_RESOURCE *rp; 1194 int i; 1195 1196 rp = (ACPI_RESOURCE *)buf->Pointer; 1197 i = index; 1198 while (i-- > 0) { 1199 /* range check */ 1200 if (rp > (ACPI_RESOURCE *)((u_int8_t *)buf->Pointer + buf->Length)) 1201 return(AE_BAD_PARAMETER); 1202 /* check for terminator */ 1203 if ((rp->Id == ACPI_RSTYPE_END_TAG) || 1204 (rp->Length == 0)) 1205 return(AE_NOT_FOUND); 1206 rp = ACPI_RESOURCE_NEXT(rp); 1207 } 1208 if (resp != NULL) 1209 *resp = rp; 1210 return(AE_OK); 1211 } 1212 1213 /* 1214 * Append an ACPI_RESOURCE to an ACPI_BUFFER. 1215 * 1216 * Given a pointer to an ACPI_RESOURCE structure, expand the ACPI_BUFFER 1217 * provided to contain it. If the ACPI_BUFFER is empty, allocate a sensible 1218 * backing block. If the ACPI_RESOURCE is NULL, return an empty set of 1219 * resources. 1220 */ 1221 #define ACPI_INITIAL_RESOURCE_BUFFER_SIZE 512 1222 1223 ACPI_STATUS 1224 acpi_AppendBufferResource(ACPI_BUFFER *buf, ACPI_RESOURCE *res) 1225 { 1226 ACPI_RESOURCE *rp; 1227 void *newp; 1228 1229 /* 1230 * Initialise the buffer if necessary. 1231 */ 1232 if (buf->Pointer == NULL) { 1233 buf->Length = ACPI_INITIAL_RESOURCE_BUFFER_SIZE; 1234 if ((buf->Pointer = AcpiOsAllocate(buf->Length)) == NULL) 1235 return(AE_NO_MEMORY); 1236 rp = (ACPI_RESOURCE *)buf->Pointer; 1237 rp->Id = ACPI_RSTYPE_END_TAG; 1238 rp->Length = 0; 1239 } 1240 if (res == NULL) 1241 return(AE_OK); 1242 1243 /* 1244 * Scan the current buffer looking for the terminator. 1245 * This will either find the terminator or hit the end 1246 * of the buffer and return an error. 1247 */ 1248 rp = (ACPI_RESOURCE *)buf->Pointer; 1249 for (;;) { 1250 /* range check, don't go outside the buffer */ 1251 if (rp >= (ACPI_RESOURCE *)((u_int8_t *)buf->Pointer + buf->Length)) 1252 return(AE_BAD_PARAMETER); 1253 if ((rp->Id == ACPI_RSTYPE_END_TAG) || 1254 (rp->Length == 0)) { 1255 break; 1256 } 1257 rp = ACPI_RESOURCE_NEXT(rp); 1258 } 1259 1260 /* 1261 * Check the size of the buffer and expand if required. 1262 * 1263 * Required size is: 1264 * size of existing resources before terminator + 1265 * size of new resource and header + 1266 * size of terminator. 1267 * 1268 * Note that this loop should really only run once, unless 1269 * for some reason we are stuffing a *really* huge resource. 1270 */ 1271 while ((((u_int8_t *)rp - (u_int8_t *)buf->Pointer) + 1272 res->Length + ACPI_RESOURCE_LENGTH_NO_DATA + 1273 ACPI_RESOURCE_LENGTH) >= buf->Length) { 1274 if ((newp = AcpiOsAllocate(buf->Length * 2)) == NULL) 1275 return(AE_NO_MEMORY); 1276 bcopy(buf->Pointer, newp, buf->Length); 1277 rp = (ACPI_RESOURCE *)((u_int8_t *)newp + 1278 ((u_int8_t *)rp - (u_int8_t *)buf->Pointer)); 1279 AcpiOsFree(buf->Pointer); 1280 buf->Pointer = newp; 1281 buf->Length += buf->Length; 1282 } 1283 1284 /* 1285 * Insert the new resource. 1286 */ 1287 bcopy(res, rp, res->Length + ACPI_RESOURCE_LENGTH_NO_DATA); 1288 1289 /* 1290 * And add the terminator. 1291 */ 1292 rp = ACPI_RESOURCE_NEXT(rp); 1293 rp->Id = ACPI_RSTYPE_END_TAG; 1294 rp->Length = 0; 1295 1296 return(AE_OK); 1297 } 1298 1299 1300 /* 1301 * Set the system sleep state 1302 * 1303 * Currently we only support S1 and S5 1304 */ 1305 ACPI_STATUS 1306 acpi_SetSleepState(struct acpi_softc *sc, int state) 1307 { 1308 ACPI_STATUS status = AE_OK; 1309 UINT8 TypeA; 1310 UINT8 TypeB; 1311 1312 FUNCTION_TRACE_U32(__func__, state); 1313 ACPI_ASSERTLOCK; 1314 1315 if (sc->acpi_sstate != ACPI_STATE_S0) 1316 return_ACPI_STATUS(AE_BAD_PARAMETER); /* avoid reentry */ 1317 1318 switch (state) { 1319 case ACPI_STATE_S0: /* XXX only for testing */ 1320 status = AcpiEnterSleepState((UINT8)state); 1321 if (status != AE_OK) { 1322 device_printf(sc->acpi_dev, "AcpiEnterSleepState failed - %s\n", AcpiFormatException(status)); 1323 } 1324 break; 1325 1326 case ACPI_STATE_S1: 1327 case ACPI_STATE_S2: 1328 case ACPI_STATE_S3: 1329 case ACPI_STATE_S4: 1330 status = AcpiHwObtainSleepTypeRegisterData((UINT8)state, &TypeA, &TypeB); 1331 if (status != AE_OK) { 1332 device_printf(sc->acpi_dev, "AcpiHwObtainSleepTypeRegisterData failed - %s\n", AcpiFormatException(status)); 1333 break; 1334 } 1335 1336 /* 1337 * Inform all devices that we are going to sleep. 1338 */ 1339 if (DEVICE_SUSPEND(root_bus) != 0) { 1340 /* 1341 * Re-wake the system. 1342 * 1343 * XXX note that a better two-pass approach with a 'veto' pass 1344 * followed by a "real thing" pass would be better, but the 1345 * current bus interface does not provide for this. 1346 */ 1347 DEVICE_RESUME(root_bus); 1348 return_ACPI_STATUS(AE_ERROR); 1349 } 1350 1351 status = AcpiEnterSleepStatePrep(state); 1352 if (status != AE_OK) { 1353 device_printf(sc->acpi_dev, "AcpiEnterSleepStatePrep failed - %s\n", 1354 AcpiFormatException(status)); 1355 break; 1356 } 1357 1358 sc->acpi_sstate = state; 1359 1360 if (state != ACPI_STATE_S1) { 1361 acpi_sleep_machdep(sc, state); 1362 1363 /* AcpiEnterSleepState() maybe incompleted, unlock here. */ 1364 AcpiUtReleaseMutex(ACPI_MTX_HARDWARE); 1365 1366 /* Re-enable ACPI hardware on wakeup from sleep state 4. */ 1367 if (state == ACPI_STATE_S4) { 1368 AcpiEnable(); 1369 } 1370 } else { 1371 status = AcpiEnterSleepState((UINT8)state); 1372 if (status != AE_OK) { 1373 device_printf(sc->acpi_dev, "AcpiEnterSleepState failed - %s\n", AcpiFormatException(status)); 1374 break; 1375 } 1376 } 1377 AcpiLeaveSleepState((UINT8)state); 1378 DEVICE_RESUME(root_bus); 1379 sc->acpi_sstate = ACPI_STATE_S0; 1380 acpi_enable_fixed_events(sc); 1381 break; 1382 1383 case ACPI_STATE_S5: 1384 /* 1385 * Shut down cleanly and power off. This will call us back through the 1386 * shutdown handlers. 1387 */ 1388 shutdown_nice(RB_POWEROFF); 1389 break; 1390 1391 default: 1392 status = AE_BAD_PARAMETER; 1393 break; 1394 } 1395 return_ACPI_STATUS(status); 1396 } 1397 1398 /* 1399 * Enable/Disable ACPI 1400 */ 1401 ACPI_STATUS 1402 acpi_Enable(struct acpi_softc *sc) 1403 { 1404 ACPI_STATUS status; 1405 u_int32_t flags; 1406 1407 FUNCTION_TRACE(__func__); 1408 ACPI_ASSERTLOCK; 1409 1410 flags = ACPI_NO_ADDRESS_SPACE_INIT | ACPI_NO_HARDWARE_INIT | 1411 ACPI_NO_DEVICE_INIT | ACPI_NO_OBJECT_INIT; 1412 if (!sc->acpi_enabled) { 1413 status = AcpiEnableSubsystem(flags); 1414 } else { 1415 status = AE_OK; 1416 } 1417 if (status == AE_OK) 1418 sc->acpi_enabled = 1; 1419 return_ACPI_STATUS(status); 1420 } 1421 1422 ACPI_STATUS 1423 acpi_Disable(struct acpi_softc *sc) 1424 { 1425 ACPI_STATUS status; 1426 1427 FUNCTION_TRACE(__func__); 1428 ACPI_ASSERTLOCK; 1429 1430 if (sc->acpi_enabled) { 1431 status = AcpiDisable(); 1432 } else { 1433 status = AE_OK; 1434 } 1435 if (status == AE_OK) 1436 sc->acpi_enabled = 0; 1437 return_ACPI_STATUS(status); 1438 } 1439 1440 /* 1441 * ACPI Event Handlers 1442 */ 1443 1444 /* System Event Handlers (registered by EVENTHANDLER_REGISTER) */ 1445 1446 static void 1447 acpi_system_eventhandler_sleep(void *arg, int state) 1448 { 1449 FUNCTION_TRACE_U32(__func__, state); 1450 1451 ACPI_LOCK; 1452 if (state >= ACPI_STATE_S0 && state <= ACPI_S_STATES_MAX) 1453 acpi_SetSleepState((struct acpi_softc *)arg, state); 1454 ACPI_UNLOCK; 1455 return_VOID; 1456 } 1457 1458 static void 1459 acpi_system_eventhandler_wakeup(void *arg, int state) 1460 { 1461 FUNCTION_TRACE_U32(__func__, state); 1462 1463 /* Well, what to do? :-) */ 1464 1465 ACPI_LOCK; 1466 ACPI_UNLOCK; 1467 1468 return_VOID; 1469 } 1470 1471 /* 1472 * ACPICA Event Handlers (FixedEvent, also called from button notify handler) 1473 */ 1474 UINT32 1475 acpi_eventhandler_power_button_for_sleep(void *context) 1476 { 1477 struct acpi_softc *sc = (struct acpi_softc *)context; 1478 1479 FUNCTION_TRACE(__func__); 1480 1481 EVENTHANDLER_INVOKE(acpi_sleep_event, sc->acpi_power_button_sx); 1482 1483 return_VALUE(INTERRUPT_HANDLED); 1484 } 1485 1486 UINT32 1487 acpi_eventhandler_power_button_for_wakeup(void *context) 1488 { 1489 struct acpi_softc *sc = (struct acpi_softc *)context; 1490 1491 FUNCTION_TRACE(__func__); 1492 1493 EVENTHANDLER_INVOKE(acpi_wakeup_event, sc->acpi_power_button_sx); 1494 1495 return_VALUE(INTERRUPT_HANDLED); 1496 } 1497 1498 UINT32 1499 acpi_eventhandler_sleep_button_for_sleep(void *context) 1500 { 1501 struct acpi_softc *sc = (struct acpi_softc *)context; 1502 1503 FUNCTION_TRACE(__func__); 1504 1505 EVENTHANDLER_INVOKE(acpi_sleep_event, sc->acpi_sleep_button_sx); 1506 1507 return_VALUE(INTERRUPT_HANDLED); 1508 } 1509 1510 UINT32 1511 acpi_eventhandler_sleep_button_for_wakeup(void *context) 1512 { 1513 struct acpi_softc *sc = (struct acpi_softc *)context; 1514 1515 FUNCTION_TRACE(__func__); 1516 1517 EVENTHANDLER_INVOKE(acpi_wakeup_event, sc->acpi_sleep_button_sx); 1518 1519 return_VALUE(INTERRUPT_HANDLED); 1520 } 1521 1522 /* 1523 * XXX This is kinda ugly, and should not be here. 1524 */ 1525 struct acpi_staticbuf { 1526 ACPI_BUFFER buffer; 1527 char data[512]; 1528 }; 1529 1530 char * 1531 acpi_name(ACPI_HANDLE handle) 1532 { 1533 static struct acpi_staticbuf buf; 1534 1535 ACPI_ASSERTLOCK; 1536 1537 buf.buffer.Length = 512; 1538 buf.buffer.Pointer = &buf.data[0]; 1539 1540 if (AcpiGetName(handle, ACPI_FULL_PATHNAME, &buf.buffer) == AE_OK) 1541 return(buf.buffer.Pointer); 1542 return("(unknown path)"); 1543 } 1544 1545 /* 1546 * Debugging/bug-avoidance. Avoid trying to fetch info on various 1547 * parts of the namespace. 1548 */ 1549 int 1550 acpi_avoid(ACPI_HANDLE handle) 1551 { 1552 char *cp, *np; 1553 int len; 1554 1555 np = acpi_name(handle); 1556 if (*np == '\\') 1557 np++; 1558 if ((cp = getenv("debug.acpi.avoid")) == NULL) 1559 return(0); 1560 1561 /* scan the avoid list checking for a match */ 1562 for (;;) { 1563 while ((*cp != 0) && isspace(*cp)) 1564 cp++; 1565 if (*cp == 0) 1566 break; 1567 len = 0; 1568 while ((cp[len] != 0) && !isspace(cp[len])) 1569 len++; 1570 if (!strncmp(cp, np, len)) 1571 return(1); 1572 cp += len; 1573 } 1574 return(0); 1575 } 1576 1577 /* 1578 * Debugging/bug-avoidance. Disable ACPI subsystem components. 1579 */ 1580 int 1581 acpi_disabled(char *subsys) 1582 { 1583 char *cp; 1584 int len; 1585 1586 if ((cp = getenv("debug.acpi.disable")) == NULL) 1587 return(0); 1588 if (!strcmp(cp, "all")) 1589 return(1); 1590 1591 /* scan the disable list checking for a match */ 1592 for (;;) { 1593 while ((*cp != 0) && isspace(*cp)) 1594 cp++; 1595 if (*cp == 0) 1596 break; 1597 len = 0; 1598 while ((cp[len] != 0) && !isspace(cp[len])) 1599 len++; 1600 if (!strncmp(cp, subsys, len)) 1601 return(1); 1602 cp += len; 1603 } 1604 return(0); 1605 } 1606 1607 /* 1608 * Control interface. 1609 * 1610 * We multiplex ioctls for all participating ACPI devices here. Individual 1611 * drivers wanting to be accessible via /dev/acpi should use the register/deregister 1612 * interface to make their handlers visible. 1613 */ 1614 struct acpi_ioctl_hook 1615 { 1616 TAILQ_ENTRY(acpi_ioctl_hook) link; 1617 u_long cmd; 1618 int (* fn)(u_long cmd, caddr_t addr, void *arg); 1619 void *arg; 1620 }; 1621 1622 static TAILQ_HEAD(,acpi_ioctl_hook) acpi_ioctl_hooks; 1623 static int acpi_ioctl_hooks_initted; 1624 1625 /* 1626 * Register an ioctl handler. 1627 */ 1628 int 1629 acpi_register_ioctl(u_long cmd, int (* fn)(u_long cmd, caddr_t addr, void *arg), void *arg) 1630 { 1631 struct acpi_ioctl_hook *hp; 1632 1633 if ((hp = malloc(sizeof(*hp), M_ACPIDEV, M_NOWAIT)) == NULL) 1634 return(ENOMEM); 1635 hp->cmd = cmd; 1636 hp->fn = fn; 1637 hp->arg = arg; 1638 if (acpi_ioctl_hooks_initted == 0) { 1639 TAILQ_INIT(&acpi_ioctl_hooks); 1640 acpi_ioctl_hooks_initted = 1; 1641 } 1642 TAILQ_INSERT_TAIL(&acpi_ioctl_hooks, hp, link); 1643 return(0); 1644 } 1645 1646 /* 1647 * Deregister an ioctl handler. 1648 */ 1649 void 1650 acpi_deregister_ioctl(u_long cmd, int (* fn)(u_long cmd, caddr_t addr, void *arg)) 1651 { 1652 struct acpi_ioctl_hook *hp; 1653 1654 TAILQ_FOREACH(hp, &acpi_ioctl_hooks, link) 1655 if ((hp->cmd == cmd) && (hp->fn == fn)) 1656 break; 1657 1658 if (hp != NULL) { 1659 TAILQ_REMOVE(&acpi_ioctl_hooks, hp, link); 1660 free(hp, M_ACPIDEV); 1661 } 1662 } 1663 1664 static int 1665 acpiopen(dev_t dev, int flag, int fmt, struct thread *td) 1666 { 1667 return(0); 1668 } 1669 1670 static int 1671 acpiclose(dev_t dev, int flag, int fmt, struct thread *td) 1672 { 1673 return(0); 1674 } 1675 1676 static int 1677 acpiioctl(dev_t dev, u_long cmd, caddr_t addr, int flag, struct thread *td) 1678 { 1679 struct acpi_softc *sc; 1680 struct acpi_ioctl_hook *hp; 1681 int error, xerror, state; 1682 1683 ACPI_LOCK; 1684 1685 error = state = 0; 1686 sc = dev->si_drv1; 1687 1688 /* 1689 * Scan the list of registered ioctls, looking for handlers. 1690 */ 1691 if (acpi_ioctl_hooks_initted) { 1692 TAILQ_FOREACH(hp, &acpi_ioctl_hooks, link) { 1693 if (hp->cmd == cmd) { 1694 xerror = hp->fn(cmd, addr, hp->arg); 1695 if (xerror != 0) 1696 error = xerror; 1697 goto out; 1698 } 1699 } 1700 } 1701 1702 /* 1703 * Core system ioctls. 1704 */ 1705 switch (cmd) { 1706 case ACPIIO_ENABLE: 1707 if (ACPI_FAILURE(acpi_Enable(sc))) 1708 error = ENXIO; 1709 break; 1710 1711 case ACPIIO_DISABLE: 1712 if (ACPI_FAILURE(acpi_Disable(sc))) 1713 error = ENXIO; 1714 break; 1715 1716 case ACPIIO_SETSLPSTATE: 1717 if (!sc->acpi_enabled) { 1718 error = ENXIO; 1719 break; 1720 } 1721 state = *(int *)addr; 1722 if (state >= ACPI_STATE_S0 && state <= ACPI_S_STATES_MAX) { 1723 acpi_SetSleepState(sc, state); 1724 } else { 1725 error = EINVAL; 1726 } 1727 break; 1728 1729 default: 1730 if (error == 0) 1731 error = EINVAL; 1732 break; 1733 } 1734 1735 out: 1736 ACPI_UNLOCK; 1737 return(error); 1738 } 1739 1740 static int 1741 acpi_sleep_state_sysctl(SYSCTL_HANDLER_ARGS) 1742 { 1743 char sleep_state[10]; 1744 int error; 1745 u_int new_state, old_state; 1746 1747 old_state = *(u_int *)oidp->oid_arg1; 1748 if (old_state > ACPI_S_STATES_MAX+1) { 1749 strcpy(sleep_state, "unknown"); 1750 } else { 1751 bzero(sleep_state, sizeof(sleep_state)); 1752 strncpy(sleep_state, sleep_state_names[old_state], 1753 sizeof(sleep_state_names[old_state])); 1754 } 1755 error = sysctl_handle_string(oidp, sleep_state, sizeof(sleep_state), req); 1756 if (error == 0 && req->newptr != NULL) { 1757 for (new_state = ACPI_STATE_S0; new_state <= ACPI_S_STATES_MAX+1; new_state++) { 1758 if (strncmp(sleep_state, sleep_state_names[new_state], 1759 sizeof(sleep_state)) == 0) 1760 break; 1761 } 1762 if (new_state <= ACPI_S_STATES_MAX+1) { 1763 if (new_state != old_state) { 1764 *(u_int *)oidp->oid_arg1 = new_state; 1765 } 1766 } else { 1767 error = EINVAL; 1768 } 1769 } 1770 return(error); 1771 } 1772 1773 #ifdef ACPI_DEBUG 1774 /* 1775 * Support for parsing debug options from the kernel environment. 1776 * 1777 * Bits may be set in the AcpiDbgLayer and AcpiDbgLevel debug registers 1778 * by specifying the names of the bits in the debug.acpi.layer and 1779 * debug.acpi.level environment variables. Bits may be unset by 1780 * prefixing the bit name with !. 1781 */ 1782 struct debugtag 1783 { 1784 char *name; 1785 UINT32 value; 1786 }; 1787 1788 static struct debugtag dbg_layer[] = { 1789 {"ACPI_UTILITIES", ACPI_UTILITIES}, 1790 {"ACPI_HARDWARE", ACPI_HARDWARE}, 1791 {"ACPI_EVENTS", ACPI_EVENTS}, 1792 {"ACPI_TABLES", ACPI_TABLES}, 1793 {"ACPI_NAMESPACE", ACPI_NAMESPACE}, 1794 {"ACPI_PARSER", ACPI_PARSER}, 1795 {"ACPI_DISPATCHER", ACPI_DISPATCHER}, 1796 {"ACPI_EXECUTER", ACPI_EXECUTER}, 1797 {"ACPI_RESOURCES", ACPI_RESOURCES}, 1798 {"ACPI_DEBUGGER", ACPI_DEBUGGER}, 1799 {"ACPI_OS_SERVICES", ACPI_OS_SERVICES}, 1800 1801 {"ACPI_BUS", ACPI_BUS}, 1802 {"ACPI_SYSTEM", ACPI_SYSTEM}, 1803 {"ACPI_POWER", ACPI_POWER}, 1804 {"ACPI_EC", ACPI_EC}, 1805 {"ACPI_AC_ADAPTER", ACPI_AC_ADAPTER}, 1806 {"ACPI_BATTERY", ACPI_BATTERY}, 1807 {"ACPI_BUTTON", ACPI_BUTTON}, 1808 {"ACPI_PROCESSOR", ACPI_PROCESSOR}, 1809 {"ACPI_THERMAL", ACPI_THERMAL}, 1810 {"ACPI_FAN", ACPI_FAN}, 1811 1812 {"ACPI_ALL_COMPONENTS", ACPI_ALL_COMPONENTS}, 1813 {NULL, 0} 1814 }; 1815 1816 static struct debugtag dbg_level[] = { 1817 {"ACPI_LV_OK", ACPI_LV_OK}, 1818 {"ACPI_LV_INFO", ACPI_LV_INFO}, 1819 {"ACPI_LV_WARN", ACPI_LV_WARN}, 1820 {"ACPI_LV_ERROR", ACPI_LV_ERROR}, 1821 {"ACPI_LV_FATAL", ACPI_LV_FATAL}, 1822 {"ACPI_LV_DEBUG_OBJECT", ACPI_LV_DEBUG_OBJECT}, 1823 {"ACPI_LV_ALL_EXCEPTIONS", ACPI_LV_ALL_EXCEPTIONS}, 1824 {"ACPI_LV_THREADS", ACPI_LV_THREADS}, 1825 {"ACPI_LV_PARSE", ACPI_LV_PARSE}, 1826 {"ACPI_LV_DISPATCH", ACPI_LV_DISPATCH}, 1827 {"ACPI_LV_LOAD", ACPI_LV_LOAD}, 1828 {"ACPI_LV_EXEC", ACPI_LV_EXEC}, 1829 {"ACPI_LV_NAMES", ACPI_LV_NAMES}, 1830 {"ACPI_LV_OPREGION", ACPI_LV_OPREGION}, 1831 {"ACPI_LV_BFIELD", ACPI_LV_BFIELD}, 1832 {"ACPI_LV_TABLES", ACPI_LV_TABLES}, 1833 {"ACPI_LV_FUNCTIONS", ACPI_LV_FUNCTIONS}, 1834 {"ACPI_LV_VALUES", ACPI_LV_VALUES}, 1835 {"ACPI_LV_OBJECTS", ACPI_LV_OBJECTS}, 1836 {"ACPI_LV_ALLOCATIONS", ACPI_LV_ALLOCATIONS}, 1837 {"ACPI_LV_RESOURCES", ACPI_LV_RESOURCES}, 1838 {"ACPI_LV_IO", ACPI_LV_IO}, 1839 {"ACPI_LV_INTERRUPTS", ACPI_LV_INTERRUPTS}, 1840 {"ACPI_LV_USER_REQUESTS", ACPI_LV_USER_REQUESTS}, 1841 {"ACPI_LV_PACKAGE", ACPI_LV_PACKAGE}, 1842 {"ACPI_LV_MUTEX", ACPI_LV_MUTEX}, 1843 {"ACPI_LV_INIT", ACPI_LV_INIT}, 1844 {"ACPI_LV_ALL", ACPI_LV_ALL}, 1845 {"ACPI_DB_AML_DISASSEMBLE", ACPI_DB_AML_DISASSEMBLE}, 1846 {"ACPI_DB_VERBOSE_INFO", ACPI_DB_VERBOSE_INFO}, 1847 {"ACPI_DB_FULL_TABLES", ACPI_DB_FULL_TABLES}, 1848 {"ACPI_DB_EVENTS", ACPI_DB_EVENTS}, 1849 {"ACPI_DB_VERBOSE", ACPI_DB_VERBOSE}, 1850 {NULL, 0} 1851 }; 1852 1853 static void 1854 acpi_parse_debug(char *cp, struct debugtag *tag, UINT32 *flag) 1855 { 1856 char *ep; 1857 int i, l; 1858 int set; 1859 1860 while (*cp) { 1861 if (isspace(*cp)) { 1862 cp++; 1863 continue; 1864 } 1865 ep = cp; 1866 while (*ep && !isspace(*ep)) 1867 ep++; 1868 if (*cp == '!') { 1869 set = 0; 1870 cp++; 1871 if (cp == ep) 1872 continue; 1873 } else { 1874 set = 1; 1875 } 1876 l = ep - cp; 1877 for (i = 0; tag[i].name != NULL; i++) { 1878 if (!strncmp(cp, tag[i].name, l)) { 1879 if (set) { 1880 *flag |= tag[i].value; 1881 } else { 1882 *flag &= ~tag[i].value; 1883 } 1884 printf("ACPI_DEBUG: set '%s'\n", tag[i].name); 1885 } 1886 } 1887 cp = ep; 1888 } 1889 } 1890 1891 static void 1892 acpi_set_debugging(void *junk) 1893 { 1894 char *cp; 1895 1896 AcpiDbgLayer = 0; 1897 AcpiDbgLevel = 0; 1898 if ((cp = getenv("debug.acpi.layer")) != NULL) 1899 acpi_parse_debug(cp, &dbg_layer[0], &AcpiDbgLayer); 1900 if ((cp = getenv("debug.acpi.level")) != NULL) 1901 acpi_parse_debug(cp, &dbg_level[0], &AcpiDbgLevel); 1902 1903 printf("ACPI debug layer 0x%x debug level 0x%x\n", AcpiDbgLayer, AcpiDbgLevel); 1904 } 1905 SYSINIT(acpi_debugging, SI_SUB_TUNABLES, SI_ORDER_ANY, acpi_set_debugging, NULL); 1906 #endif 1907 1908 static int 1909 acpi_pm_func(u_long cmd, void *arg, ...) 1910 { 1911 int state, acpi_state; 1912 int error; 1913 struct acpi_softc *sc; 1914 va_list ap; 1915 1916 error = 0; 1917 switch (cmd) { 1918 case POWER_CMD_SUSPEND: 1919 sc = (struct acpi_softc *)arg; 1920 if (sc == NULL) { 1921 error = EINVAL; 1922 goto out; 1923 } 1924 1925 va_start(ap, arg); 1926 state = va_arg(ap, int); 1927 va_end(ap); 1928 1929 switch (state) { 1930 case POWER_SLEEP_STATE_STANDBY: 1931 acpi_state = sc->acpi_standby_sx; 1932 break; 1933 case POWER_SLEEP_STATE_SUSPEND: 1934 acpi_state = sc->acpi_suspend_sx; 1935 break; 1936 case POWER_SLEEP_STATE_HIBERNATE: 1937 acpi_state = ACPI_STATE_S4; 1938 break; 1939 default: 1940 error = EINVAL; 1941 goto out; 1942 } 1943 1944 acpi_SetSleepState(sc, acpi_state); 1945 break; 1946 1947 default: 1948 error = EINVAL; 1949 goto out; 1950 } 1951 1952 out: 1953 return (error); 1954 } 1955 1956 static void 1957 acpi_pm_register(void *arg) 1958 { 1959 1960 power_pm_register(POWER_PM_TYPE_ACPI, acpi_pm_func, NULL); 1961 } 1962 1963 SYSINIT(power, SI_SUB_KLD, SI_ORDER_ANY, acpi_pm_register, 0); 1964 1965