diff options
| -rw-r--r-- | drivers/acpi/acpica/acglobal.h | 7 | ||||
| -rw-r--r-- | drivers/acpi/acpica/evevent.c | 5 | ||||
| -rw-r--r-- | drivers/acpi/acpica/evgpeblk.c | 47 | ||||
| -rw-r--r-- | drivers/acpi/acpica/evgpeinit.c | 235 | ||||
| -rw-r--r-- | drivers/acpi/acpica/evxfevnt.c | 55 | ||||
| -rw-r--r-- | drivers/acpi/acpica/exconfig.c | 2 | ||||
| -rw-r--r-- | drivers/acpi/acpica/utxface.c | 8 | ||||
| -rw-r--r-- | drivers/acpi/osl.c | 20 | ||||
| -rw-r--r-- | drivers/acpi/scan.c | 2 | ||||
| -rw-r--r-- | include/acpi/acpixf.h | 3 |
10 files changed, 85 insertions, 299 deletions
diff --git a/drivers/acpi/acpica/acglobal.h b/drivers/acpi/acpica/acglobal.h index 899d68afc3c5..18e796fe4295 100644 --- a/drivers/acpi/acpica/acglobal.h +++ b/drivers/acpi/acpica/acglobal.h | |||
| @@ -100,13 +100,6 @@ u8 ACPI_INIT_GLOBAL(acpi_gbl_all_methods_serialized, FALSE); | |||
| 100 | u8 ACPI_INIT_GLOBAL(acpi_gbl_create_osi_method, TRUE); | 100 | u8 ACPI_INIT_GLOBAL(acpi_gbl_create_osi_method, TRUE); |
| 101 | 101 | ||
| 102 | /* | 102 | /* |
| 103 | * Disable wakeup GPEs during runtime? Default is TRUE because WAKE and | ||
| 104 | * RUNTIME GPEs should never be shared, and WAKE GPEs should typically only | ||
| 105 | * be enabled just before going to sleep. | ||
| 106 | */ | ||
| 107 | u8 ACPI_INIT_GLOBAL(acpi_gbl_leave_wake_gpes_disabled, TRUE); | ||
| 108 | |||
| 109 | /* | ||
| 110 | * Optionally use default values for the ACPI register widths. Set this to | 103 | * Optionally use default values for the ACPI register widths. Set this to |
| 111 | * TRUE to use the defaults, if an FADT contains incorrect widths/lengths. | 104 | * TRUE to use the defaults, if an FADT contains incorrect widths/lengths. |
| 112 | */ | 105 | */ |
diff --git a/drivers/acpi/acpica/evevent.c b/drivers/acpi/acpica/evevent.c index f5795915a2e9..303618889da0 100644 --- a/drivers/acpi/acpica/evevent.c +++ b/drivers/acpi/acpica/evevent.c | |||
| @@ -102,9 +102,8 @@ acpi_status acpi_ev_initialize_events(void) | |||
| 102 | * RETURN: Status | 102 | * RETURN: Status |
| 103 | * | 103 | * |
| 104 | * DESCRIPTION: Completes initialization of the FADT-defined GPE blocks | 104 | * DESCRIPTION: Completes initialization of the FADT-defined GPE blocks |
| 105 | * (0 and 1). This causes the _PRW methods to be run, so the HW | 105 | * (0 and 1). The HW must be fully initialized at this point, |
| 106 | * must be fully initialized at this point, including global lock | 106 | * including global lock support. |
| 107 | * support. | ||
| 108 | * | 107 | * |
| 109 | ******************************************************************************/ | 108 | ******************************************************************************/ |
| 110 | 109 | ||
diff --git a/drivers/acpi/acpica/evgpeblk.c b/drivers/acpi/acpica/evgpeblk.c index 0c6f3f878eb5..12ca1bc5f1fd 100644 --- a/drivers/acpi/acpica/evgpeblk.c +++ b/drivers/acpi/acpica/evgpeblk.c | |||
| @@ -439,8 +439,6 @@ acpi_ev_initialize_gpe_block(struct acpi_namespace_node *gpe_device, | |||
| 439 | { | 439 | { |
| 440 | acpi_status status; | 440 | acpi_status status; |
| 441 | struct acpi_gpe_event_info *gpe_event_info; | 441 | struct acpi_gpe_event_info *gpe_event_info; |
| 442 | struct acpi_gpe_walk_info walk_info; | ||
| 443 | u32 wake_gpe_count; | ||
| 444 | u32 gpe_enabled_count; | 442 | u32 gpe_enabled_count; |
| 445 | u32 gpe_index; | 443 | u32 gpe_index; |
| 446 | u32 gpe_number; | 444 | u32 gpe_number; |
| @@ -456,37 +454,9 @@ acpi_ev_initialize_gpe_block(struct acpi_namespace_node *gpe_device, | |||
| 456 | } | 454 | } |
| 457 | 455 | ||
| 458 | /* | 456 | /* |
| 459 | * Runtime option: Should wake GPEs be enabled at runtime? The default | 457 | * Enable all GPEs that have a corresponding method. Any other GPEs |
| 460 | * is no, they should only be enabled just as the machine goes to sleep. | 458 | * within this block must be enabled via the acpi_enable_gpe interface. |
| 461 | */ | 459 | */ |
| 462 | if (acpi_gbl_leave_wake_gpes_disabled) { | ||
| 463 | /* | ||
| 464 | * Differentiate runtime vs wake GPEs, via the _PRW control methods. | ||
| 465 | * Each GPE that has one or more _PRWs that reference it is by | ||
| 466 | * definition a wake GPE and will not be enabled while the machine | ||
| 467 | * is running. | ||
| 468 | */ | ||
| 469 | walk_info.gpe_block = gpe_block; | ||
| 470 | walk_info.gpe_device = gpe_device; | ||
| 471 | walk_info.execute_by_owner_id = FALSE; | ||
| 472 | |||
| 473 | status = | ||
| 474 | acpi_ns_walk_namespace(ACPI_TYPE_DEVICE, ACPI_ROOT_OBJECT, | ||
| 475 | ACPI_UINT32_MAX, ACPI_NS_WALK_UNLOCK, | ||
| 476 | acpi_ev_match_prw_and_gpe, NULL, | ||
| 477 | &walk_info, NULL); | ||
| 478 | if (ACPI_FAILURE(status)) { | ||
| 479 | ACPI_EXCEPTION((AE_INFO, status, | ||
| 480 | "While executing _PRW methods")); | ||
| 481 | } | ||
| 482 | } | ||
| 483 | |||
| 484 | /* | ||
| 485 | * Enable all GPEs that have a corresponding method and are not | ||
| 486 | * capable of generating wakeups. Any other GPEs within this block | ||
| 487 | * must be enabled via the acpi_enable_gpe interface. | ||
| 488 | */ | ||
| 489 | wake_gpe_count = 0; | ||
| 490 | gpe_enabled_count = 0; | 460 | gpe_enabled_count = 0; |
| 491 | 461 | ||
| 492 | if (gpe_device == acpi_gbl_fadt_gpe_device) { | 462 | if (gpe_device == acpi_gbl_fadt_gpe_device) { |
| @@ -512,13 +482,6 @@ acpi_ev_initialize_gpe_block(struct acpi_namespace_node *gpe_device, | |||
| 512 | goto enabled; | 482 | goto enabled; |
| 513 | } | 483 | } |
| 514 | 484 | ||
| 515 | if (gpe_event_info->flags & ACPI_GPE_CAN_WAKE) { | ||
| 516 | wake_gpe_count++; | ||
| 517 | if (acpi_gbl_leave_wake_gpes_disabled) { | ||
| 518 | continue; | ||
| 519 | } | ||
| 520 | } | ||
| 521 | |||
| 522 | /* Ignore GPEs that have no corresponding _Lxx/_Exx method */ | 485 | /* Ignore GPEs that have no corresponding _Lxx/_Exx method */ |
| 523 | 486 | ||
| 524 | if (!(gpe_event_info->flags & ACPI_GPE_DISPATCH_METHOD)) { | 487 | if (!(gpe_event_info->flags & ACPI_GPE_DISPATCH_METHOD)) { |
| @@ -540,10 +503,10 @@ acpi_ev_initialize_gpe_block(struct acpi_namespace_node *gpe_device, | |||
| 540 | } | 503 | } |
| 541 | } | 504 | } |
| 542 | 505 | ||
| 543 | if (gpe_enabled_count || wake_gpe_count) { | 506 | if (gpe_enabled_count) { |
| 544 | ACPI_DEBUG_PRINT((ACPI_DB_INIT, | 507 | ACPI_DEBUG_PRINT((ACPI_DB_INIT, |
| 545 | "Enabled %u Runtime GPEs, added %u Wake GPEs in this block\n", | 508 | "Enabled %u GPEs in this block\n", |
| 546 | gpe_enabled_count, wake_gpe_count)); | 509 | gpe_enabled_count)); |
| 547 | } | 510 | } |
| 548 | 511 | ||
| 549 | return_ACPI_STATUS(AE_OK); | 512 | return_ACPI_STATUS(AE_OK); |
diff --git a/drivers/acpi/acpica/evgpeinit.c b/drivers/acpi/acpica/evgpeinit.c index 8db9e076a53b..3084c5de1bba 100644 --- a/drivers/acpi/acpica/evgpeinit.c +++ b/drivers/acpi/acpica/evgpeinit.c | |||
| @@ -211,9 +211,7 @@ acpi_status acpi_ev_gpe_initialize(void) | |||
| 211 | * DESCRIPTION: Check for new GPE methods (_Lxx/_Exx) made available as a | 211 | * DESCRIPTION: Check for new GPE methods (_Lxx/_Exx) made available as a |
| 212 | * result of a Load() or load_table() operation. If new GPE | 212 | * result of a Load() or load_table() operation. If new GPE |
| 213 | * methods have been installed, register the new methods and | 213 | * methods have been installed, register the new methods and |
| 214 | * enable and runtime GPEs that are associated with them. Also, | 214 | * enable and runtime GPEs that are associated with them. |
| 215 | * run any newly loaded _PRW methods in order to discover any | ||
| 216 | * new CAN_WAKE GPEs. | ||
| 217 | * | 215 | * |
| 218 | ******************************************************************************/ | 216 | ******************************************************************************/ |
| 219 | 217 | ||
| @@ -223,49 +221,12 @@ void acpi_ev_update_gpes(acpi_owner_id table_owner_id) | |||
| 223 | struct acpi_gpe_block_info *gpe_block; | 221 | struct acpi_gpe_block_info *gpe_block; |
| 224 | struct acpi_gpe_walk_info walk_info; | 222 | struct acpi_gpe_walk_info walk_info; |
| 225 | acpi_status status = AE_OK; | 223 | acpi_status status = AE_OK; |
| 226 | u32 new_wake_gpe_count = 0; | ||
| 227 | |||
| 228 | /* We will examine only _PRW/_Lxx/_Exx methods owned by this table */ | ||
| 229 | |||
| 230 | walk_info.owner_id = table_owner_id; | ||
| 231 | walk_info.execute_by_owner_id = TRUE; | ||
| 232 | walk_info.count = 0; | ||
| 233 | |||
| 234 | if (acpi_gbl_leave_wake_gpes_disabled) { | ||
| 235 | /* | ||
| 236 | * 1) Run any newly-loaded _PRW methods to find any GPEs that | ||
| 237 | * can now be marked as CAN_WAKE GPEs. Note: We must run the | ||
| 238 | * _PRW methods before we process the _Lxx/_Exx methods because | ||
| 239 | * we will enable all runtime GPEs associated with the new | ||
| 240 | * _Lxx/_Exx methods at the time we process those methods. | ||
| 241 | * | ||
| 242 | * Unlock interpreter so that we can run the _PRW methods. | ||
| 243 | */ | ||
| 244 | walk_info.gpe_block = NULL; | ||
| 245 | walk_info.gpe_device = NULL; | ||
| 246 | |||
| 247 | acpi_ex_exit_interpreter(); | ||
| 248 | |||
| 249 | status = | ||
| 250 | acpi_ns_walk_namespace(ACPI_TYPE_DEVICE, ACPI_ROOT_OBJECT, | ||
| 251 | ACPI_UINT32_MAX, | ||
| 252 | ACPI_NS_WALK_NO_UNLOCK, | ||
| 253 | acpi_ev_match_prw_and_gpe, NULL, | ||
| 254 | &walk_info, NULL); | ||
| 255 | if (ACPI_FAILURE(status)) { | ||
| 256 | ACPI_EXCEPTION((AE_INFO, status, | ||
| 257 | "While executing _PRW methods")); | ||
| 258 | } | ||
| 259 | |||
| 260 | acpi_ex_enter_interpreter(); | ||
| 261 | new_wake_gpe_count = walk_info.count; | ||
| 262 | } | ||
| 263 | 224 | ||
| 264 | /* | 225 | /* |
| 265 | * 2) Find any _Lxx/_Exx GPE methods that have just been loaded. | 226 | * 2) Find any _Lxx/_Exx GPE methods that have just been loaded. |
| 266 | * | 227 | * |
| 267 | * Any GPEs that correspond to new _Lxx/_Exx methods and are not | 228 | * Any GPEs that correspond to new _Lxx/_Exx methods are immediately |
| 268 | * marked as CAN_WAKE are immediately enabled. | 229 | * enabled. |
| 269 | * | 230 | * |
| 270 | * Examine the namespace underneath each gpe_device within the | 231 | * Examine the namespace underneath each gpe_device within the |
| 271 | * gpe_block lists. | 232 | * gpe_block lists. |
| @@ -275,6 +236,8 @@ void acpi_ev_update_gpes(acpi_owner_id table_owner_id) | |||
| 275 | return; | 236 | return; |
| 276 | } | 237 | } |
| 277 | 238 | ||
| 239 | walk_info.owner_id = table_owner_id; | ||
| 240 | walk_info.execute_by_owner_id = TRUE; | ||
| 278 | walk_info.count = 0; | 241 | walk_info.count = 0; |
| 279 | walk_info.enable_this_gpe = TRUE; | 242 | walk_info.enable_this_gpe = TRUE; |
| 280 | 243 | ||
| @@ -307,10 +270,8 @@ void acpi_ev_update_gpes(acpi_owner_id table_owner_id) | |||
| 307 | gpe_xrupt_info = gpe_xrupt_info->next; | 270 | gpe_xrupt_info = gpe_xrupt_info->next; |
| 308 | } | 271 | } |
| 309 | 272 | ||
| 310 | if (walk_info.count || new_wake_gpe_count) { | 273 | if (walk_info.count) { |
| 311 | ACPI_INFO((AE_INFO, | 274 | ACPI_INFO((AE_INFO, "Enabled %u new GPEs", walk_info.count)); |
| 312 | "Enabled %u new runtime GPEs, added %u new wakeup GPEs", | ||
| 313 | walk_info.count, new_wake_gpe_count)); | ||
| 314 | } | 275 | } |
| 315 | 276 | ||
| 316 | (void)acpi_ut_release_mutex(ACPI_MTX_EVENTS); | 277 | (void)acpi_ut_release_mutex(ACPI_MTX_EVENTS); |
| @@ -386,9 +347,6 @@ acpi_ev_match_gpe_method(acpi_handle obj_handle, | |||
| 386 | /* | 347 | /* |
| 387 | * 3) Edge/Level determination is based on the 2nd character | 348 | * 3) Edge/Level determination is based on the 2nd character |
| 388 | * of the method name | 349 | * of the method name |
| 389 | * | ||
| 390 | * NOTE: Default GPE type is RUNTIME only. Later, if a _PRW object is | ||
| 391 | * found that points to this GPE, the ACPI_GPE_CAN_WAKE flag is set. | ||
| 392 | */ | 350 | */ |
| 393 | switch (name[1]) { | 351 | switch (name[1]) { |
| 394 | case 'L': | 352 | case 'L': |
| @@ -471,23 +429,18 @@ acpi_ev_match_gpe_method(acpi_handle obj_handle, | |||
| 471 | */ | 429 | */ |
| 472 | if (walk_info->enable_this_gpe) { | 430 | if (walk_info->enable_this_gpe) { |
| 473 | 431 | ||
| 474 | /* Ignore GPEs that can wake the system */ | 432 | walk_info->count++; |
| 433 | gpe_device = walk_info->gpe_device; | ||
| 475 | 434 | ||
| 476 | if (!(gpe_event_info->flags & ACPI_GPE_CAN_WAKE) || | 435 | if (gpe_device == acpi_gbl_fadt_gpe_device) { |
| 477 | !acpi_gbl_leave_wake_gpes_disabled) { | 436 | gpe_device = NULL; |
| 478 | walk_info->count++; | 437 | } |
| 479 | gpe_device = walk_info->gpe_device; | ||
| 480 | |||
| 481 | if (gpe_device == acpi_gbl_fadt_gpe_device) { | ||
| 482 | gpe_device = NULL; | ||
| 483 | } | ||
| 484 | 438 | ||
| 485 | status = acpi_enable_gpe(gpe_device, gpe_number); | 439 | status = acpi_enable_gpe(gpe_device, gpe_number); |
| 486 | if (ACPI_FAILURE(status)) { | 440 | if (ACPI_FAILURE(status)) { |
| 487 | ACPI_EXCEPTION((AE_INFO, status, | 441 | ACPI_EXCEPTION((AE_INFO, status, |
| 488 | "Could not enable GPE 0x%02X", | 442 | "Could not enable GPE 0x%02X", |
| 489 | gpe_number)); | 443 | gpe_number)); |
| 490 | } | ||
| 491 | } | 444 | } |
| 492 | } | 445 | } |
| 493 | 446 | ||
| @@ -496,157 +449,3 @@ acpi_ev_match_gpe_method(acpi_handle obj_handle, | |||
| 496 | name, gpe_number)); | 449 | name, gpe_number)); |
| 497 | return_ACPI_STATUS(AE_OK); | 450 | return_ACPI_STATUS(AE_OK); |
| 498 | } | 451 | } |
| 499 | |||
| 500 | /******************************************************************************* | ||
| 501 | * | ||
| 502 | * FUNCTION: acpi_ev_match_prw_and_gpe | ||
| 503 | * | ||
| 504 | * PARAMETERS: Callback from walk_namespace | ||
| 505 | * | ||
| 506 | * RETURN: Status. NOTE: We ignore errors so that the _PRW walk is | ||
| 507 | * not aborted on a single _PRW failure. | ||
| 508 | * | ||
| 509 | * DESCRIPTION: Called from acpi_walk_namespace. Expects each object to be a | ||
| 510 | * Device. Run the _PRW method. If present, extract the GPE | ||
| 511 | * number and mark the GPE as a CAN_WAKE GPE. Allows a | ||
| 512 | * per-owner_id execution if execute_by_owner_id is TRUE in the | ||
| 513 | * walk_info parameter block. | ||
| 514 | * | ||
| 515 | * If walk_info->execute_by_owner_id is TRUE, we only execute _PRWs with that | ||
| 516 | * owner. | ||
| 517 | * If walk_info->gpe_device is NULL, we execute every _PRW found. Otherwise, | ||
| 518 | * we only execute _PRWs that refer to the input gpe_device. | ||
| 519 | * | ||
| 520 | ******************************************************************************/ | ||
| 521 | |||
| 522 | acpi_status | ||
| 523 | acpi_ev_match_prw_and_gpe(acpi_handle obj_handle, | ||
| 524 | u32 level, void *context, void **return_value) | ||
| 525 | { | ||
| 526 | struct acpi_gpe_walk_info *walk_info = | ||
| 527 | ACPI_CAST_PTR(struct acpi_gpe_walk_info, context); | ||
| 528 | struct acpi_namespace_node *gpe_device; | ||
| 529 | struct acpi_gpe_block_info *gpe_block; | ||
| 530 | struct acpi_namespace_node *target_gpe_device; | ||
| 531 | struct acpi_namespace_node *prw_node; | ||
| 532 | struct acpi_gpe_event_info *gpe_event_info; | ||
| 533 | union acpi_operand_object *pkg_desc; | ||
| 534 | union acpi_operand_object *obj_desc; | ||
| 535 | u32 gpe_number; | ||
| 536 | acpi_status status; | ||
| 537 | |||
| 538 | ACPI_FUNCTION_TRACE(ev_match_prw_and_gpe); | ||
| 539 | |||
| 540 | /* Check for a _PRW method under this device */ | ||
| 541 | |||
| 542 | status = acpi_ns_get_node(obj_handle, METHOD_NAME__PRW, | ||
| 543 | ACPI_NS_NO_UPSEARCH, &prw_node); | ||
| 544 | if (ACPI_FAILURE(status)) { | ||
| 545 | return_ACPI_STATUS(AE_OK); | ||
| 546 | } | ||
| 547 | |||
| 548 | /* Check if requested owner_id matches this owner_id */ | ||
| 549 | |||
| 550 | if ((walk_info->execute_by_owner_id) && | ||
| 551 | (prw_node->owner_id != walk_info->owner_id)) { | ||
| 552 | return_ACPI_STATUS(AE_OK); | ||
| 553 | } | ||
| 554 | |||
| 555 | /* Execute the _PRW */ | ||
| 556 | |||
| 557 | status = acpi_ut_evaluate_object(prw_node, NULL, | ||
| 558 | ACPI_BTYPE_PACKAGE, &pkg_desc); | ||
| 559 | if (ACPI_FAILURE(status)) { | ||
| 560 | return_ACPI_STATUS(AE_OK); | ||
| 561 | } | ||
| 562 | |||
| 563 | /* The returned _PRW package must have at least two elements */ | ||
| 564 | |||
| 565 | if (pkg_desc->package.count < 2) { | ||
| 566 | goto cleanup; | ||
| 567 | } | ||
| 568 | |||
| 569 | /* Extract pointers from the input context */ | ||
| 570 | |||
| 571 | gpe_device = walk_info->gpe_device; | ||
| 572 | gpe_block = walk_info->gpe_block; | ||
| 573 | |||
| 574 | /* | ||
| 575 | * The _PRW object must return a package, we are only interested | ||
| 576 | * in the first element | ||
| 577 | */ | ||
| 578 | obj_desc = pkg_desc->package.elements[0]; | ||
| 579 | |||
| 580 | if (obj_desc->common.type == ACPI_TYPE_INTEGER) { | ||
| 581 | |||
| 582 | /* Use FADT-defined GPE device (from definition of _PRW) */ | ||
| 583 | |||
| 584 | target_gpe_device = NULL; | ||
| 585 | if (gpe_device) { | ||
| 586 | target_gpe_device = acpi_gbl_fadt_gpe_device; | ||
| 587 | } | ||
| 588 | |||
| 589 | /* Integer is the GPE number in the FADT described GPE blocks */ | ||
| 590 | |||
| 591 | gpe_number = (u32)obj_desc->integer.value; | ||
| 592 | } else if (obj_desc->common.type == ACPI_TYPE_PACKAGE) { | ||
| 593 | |||
| 594 | /* Package contains a GPE reference and GPE number within a GPE block */ | ||
| 595 | |||
| 596 | if ((obj_desc->package.count < 2) || | ||
| 597 | ((obj_desc->package.elements[0])->common.type != | ||
| 598 | ACPI_TYPE_LOCAL_REFERENCE) || | ||
| 599 | ((obj_desc->package.elements[1])->common.type != | ||
| 600 | ACPI_TYPE_INTEGER)) { | ||
| 601 | goto cleanup; | ||
| 602 | } | ||
| 603 | |||
| 604 | /* Get GPE block reference and decode */ | ||
| 605 | |||
| 606 | target_gpe_device = | ||
| 607 | obj_desc->package.elements[0]->reference.node; | ||
| 608 | gpe_number = (u32)obj_desc->package.elements[1]->integer.value; | ||
| 609 | } else { | ||
| 610 | /* Unknown type, just ignore it */ | ||
| 611 | |||
| 612 | goto cleanup; | ||
| 613 | } | ||
| 614 | |||
| 615 | /* Get the gpe_event_info for this GPE */ | ||
| 616 | |||
| 617 | if (gpe_device) { | ||
| 618 | /* | ||
| 619 | * Is this GPE within this block? | ||
| 620 | * | ||
| 621 | * TRUE if and only if these conditions are true: | ||
| 622 | * 1) The GPE devices match. | ||
| 623 | * 2) The GPE index(number) is within the range of the Gpe Block | ||
| 624 | * associated with the GPE device. | ||
| 625 | */ | ||
| 626 | if (gpe_device != target_gpe_device) { | ||
| 627 | goto cleanup; | ||
| 628 | } | ||
| 629 | |||
| 630 | gpe_event_info = | ||
| 631 | acpi_ev_low_get_gpe_info(gpe_number, gpe_block); | ||
| 632 | } else { | ||
| 633 | /* gpe_device is NULL, just match the target_device and gpe_number */ | ||
| 634 | |||
| 635 | gpe_event_info = | ||
| 636 | acpi_ev_get_gpe_event_info(target_gpe_device, gpe_number); | ||
| 637 | } | ||
| 638 | |||
| 639 | if (gpe_event_info) { | ||
| 640 | if (!(gpe_event_info->flags & ACPI_GPE_CAN_WAKE)) { | ||
| 641 | |||
| 642 | /* This GPE can wake the system */ | ||
| 643 | |||
| 644 | gpe_event_info->flags |= ACPI_GPE_CAN_WAKE; | ||
| 645 | walk_info->count++; | ||
| 646 | } | ||
| 647 | } | ||
| 648 | |||
| 649 | cleanup: | ||
| 650 | acpi_ut_remove_reference(pkg_desc); | ||
| 651 | return_ACPI_STATUS(AE_OK); | ||
| 652 | } | ||
diff --git a/drivers/acpi/acpica/evxfevnt.c b/drivers/acpi/acpica/evxfevnt.c index fda5b44a5567..bd06fad83e7a 100644 --- a/drivers/acpi/acpica/evxfevnt.c +++ b/drivers/acpi/acpica/evxfevnt.c | |||
| @@ -389,6 +389,59 @@ ACPI_EXPORT_SYMBOL(acpi_disable_gpe) | |||
| 389 | 389 | ||
| 390 | /******************************************************************************* | 390 | /******************************************************************************* |
| 391 | * | 391 | * |
| 392 | * FUNCTION: acpi_gpe_can_wake | ||
| 393 | * | ||
| 394 | * PARAMETERS: gpe_device - Parent GPE Device. NULL for GPE0/GPE1 | ||
| 395 | * gpe_number - GPE level within the GPE block | ||
| 396 | * | ||
| 397 | * RETURN: Status | ||
| 398 | * | ||
| 399 | * DESCRIPTION: Set the ACPI_GPE_CAN_WAKE flag for the given GPE. If the GPE | ||
| 400 | * has a corresponding method and is currently enabled, disable it | ||
| 401 | * (GPEs with corresponding methods are enabled unconditionally | ||
| 402 | * during initialization, but GPEs that can wake up are expected | ||
| 403 | * to be initially disabled). | ||
| 404 | * | ||
| 405 | ******************************************************************************/ | ||
| 406 | acpi_status acpi_gpe_can_wake(acpi_handle gpe_device, u32 gpe_number) | ||
| 407 | { | ||
| 408 | acpi_status status = AE_OK; | ||
| 409 | struct acpi_gpe_event_info *gpe_event_info; | ||
| 410 | acpi_cpu_flags flags; | ||
| 411 | u8 disable = 0; | ||
| 412 | |||
| 413 | ACPI_FUNCTION_TRACE(acpi_gpe_can_wake); | ||
| 414 | |||
| 415 | flags = acpi_os_acquire_lock(acpi_gbl_gpe_lock); | ||
| 416 | |||
| 417 | /* Ensure that we have a valid GPE number */ | ||
| 418 | |||
| 419 | gpe_event_info = acpi_ev_get_gpe_event_info(gpe_device, gpe_number); | ||
| 420 | if (!gpe_event_info) { | ||
| 421 | status = AE_BAD_PARAMETER; | ||
| 422 | goto unlock_and_exit; | ||
| 423 | } | ||
| 424 | |||
| 425 | if (gpe_event_info->flags & ACPI_GPE_CAN_WAKE) { | ||
| 426 | goto unlock_and_exit; | ||
| 427 | } | ||
| 428 | |||
| 429 | gpe_event_info->flags |= ACPI_GPE_CAN_WAKE; | ||
| 430 | disable = (gpe_event_info->flags & ACPI_GPE_DISPATCH_METHOD) | ||
| 431 | && gpe_event_info->runtime_count; | ||
| 432 | |||
| 433 | unlock_and_exit: | ||
| 434 | acpi_os_release_lock(acpi_gbl_gpe_lock, flags); | ||
| 435 | |||
| 436 | if (disable) | ||
| 437 | status = acpi_disable_gpe(gpe_device, gpe_number); | ||
| 438 | |||
| 439 | return_ACPI_STATUS(status); | ||
| 440 | } | ||
| 441 | ACPI_EXPORT_SYMBOL(acpi_gpe_can_wake) | ||
| 442 | |||
| 443 | /******************************************************************************* | ||
| 444 | * | ||
| 392 | * FUNCTION: acpi_disable_event | 445 | * FUNCTION: acpi_disable_event |
| 393 | * | 446 | * |
| 394 | * PARAMETERS: Event - The fixed eventto be enabled | 447 | * PARAMETERS: Event - The fixed eventto be enabled |
| @@ -703,7 +756,7 @@ acpi_install_gpe_block(acpi_handle gpe_device, | |||
| 703 | 756 | ||
| 704 | obj_desc->device.gpe_block = gpe_block; | 757 | obj_desc->device.gpe_block = gpe_block; |
| 705 | 758 | ||
| 706 | /* Run the _PRW methods and enable the runtime GPEs in the new block */ | 759 | /* Enable the runtime GPEs in the new block */ |
| 707 | 760 | ||
| 708 | status = acpi_ev_initialize_gpe_block(node, gpe_block); | 761 | status = acpi_ev_initialize_gpe_block(node, gpe_block); |
| 709 | 762 | ||
diff --git a/drivers/acpi/acpica/exconfig.c b/drivers/acpi/acpica/exconfig.c index 008621c5ad85..18832205b631 100644 --- a/drivers/acpi/acpica/exconfig.c +++ b/drivers/acpi/acpica/exconfig.c | |||
| @@ -120,7 +120,7 @@ acpi_ex_add_table(u32 table_index, | |||
| 120 | acpi_ns_exec_module_code_list(); | 120 | acpi_ns_exec_module_code_list(); |
| 121 | acpi_ex_enter_interpreter(); | 121 | acpi_ex_enter_interpreter(); |
| 122 | 122 | ||
| 123 | /* Update GPEs for any new _PRW or _Lxx/_Exx methods. Ignore errors */ | 123 | /* Update GPEs for any new _Lxx/_Exx methods. Ignore errors */ |
| 124 | 124 | ||
| 125 | status = acpi_tb_get_owner_id(table_index, &owner_id); | 125 | status = acpi_tb_get_owner_id(table_index, &owner_id); |
| 126 | if (ACPI_SUCCESS(status)) { | 126 | if (ACPI_SUCCESS(status)) { |
diff --git a/drivers/acpi/acpica/utxface.c b/drivers/acpi/acpica/utxface.c index db9d8ca57987..7f8cefcb2b32 100644 --- a/drivers/acpi/acpica/utxface.c +++ b/drivers/acpi/acpica/utxface.c | |||
| @@ -293,12 +293,8 @@ acpi_status acpi_initialize_objects(u32 flags) | |||
| 293 | * Complete the GPE initialization for the GPE blocks defined in the FADT | 293 | * Complete the GPE initialization for the GPE blocks defined in the FADT |
| 294 | * (GPE block 0 and 1). | 294 | * (GPE block 0 and 1). |
| 295 | * | 295 | * |
| 296 | * Note1: This is where the _PRW methods are executed for the GPEs. These | 296 | * NOTE: Currently, there seems to be no need to run the _REG methods |
| 297 | * methods can only be executed after the SCI and Global Lock handlers are | 297 | * before enabling the GPEs. |
| 298 | * installed and initialized. | ||
| 299 | * | ||
| 300 | * Note2: Currently, there seems to be no need to run the _REG methods | ||
| 301 | * before execution of the _PRW methods and enabling of the GPEs. | ||
| 302 | */ | 298 | */ |
| 303 | if (!(flags & ACPI_NO_EVENT_INIT)) { | 299 | if (!(flags & ACPI_NO_EVENT_INIT)) { |
| 304 | status = acpi_ev_install_fadt_gpes(); | 300 | status = acpi_ev_install_fadt_gpes(); |
diff --git a/drivers/acpi/osl.c b/drivers/acpi/osl.c index 78418ce4fc78..44bddc5bc6ad 100644 --- a/drivers/acpi/osl.c +++ b/drivers/acpi/osl.c | |||
| @@ -1064,26 +1064,6 @@ static int __init acpi_serialize_setup(char *str) | |||
| 1064 | 1064 | ||
| 1065 | __setup("acpi_serialize", acpi_serialize_setup); | 1065 | __setup("acpi_serialize", acpi_serialize_setup); |
| 1066 | 1066 | ||
| 1067 | /* | ||
| 1068 | * Wake and Run-Time GPES are expected to be separate. | ||
| 1069 | * We disable wake-GPEs at run-time to prevent spurious | ||
| 1070 | * interrupts. | ||
| 1071 | * | ||
| 1072 | * However, if a system exists that shares Wake and | ||
| 1073 | * Run-time events on the same GPE this flag is available | ||
| 1074 | * to tell Linux to keep the wake-time GPEs enabled at run-time. | ||
| 1075 | */ | ||
| 1076 | static int __init acpi_wake_gpes_always_on_setup(char *str) | ||
| 1077 | { | ||
| 1078 | printk(KERN_INFO PREFIX "wake GPEs not disabled\n"); | ||
| 1079 | |||
| 1080 | acpi_gbl_leave_wake_gpes_disabled = FALSE; | ||
| 1081 | |||
| 1082 | return 1; | ||
| 1083 | } | ||
| 1084 | |||
| 1085 | __setup("acpi_wake_gpes_always_on", acpi_wake_gpes_always_on_setup); | ||
| 1086 | |||
| 1087 | /* Check of resource interference between native drivers and ACPI | 1067 | /* Check of resource interference between native drivers and ACPI |
| 1088 | * OperationRegions (SystemIO and System Memory only). | 1068 | * OperationRegions (SystemIO and System Memory only). |
| 1089 | * IO ports and memory declared in ACPI might be used by the ACPI subsystem | 1069 | * IO ports and memory declared in ACPI might be used by the ACPI subsystem |
diff --git a/drivers/acpi/scan.c b/drivers/acpi/scan.c index 449ada016d81..b23825ecfa37 100644 --- a/drivers/acpi/scan.c +++ b/drivers/acpi/scan.c | |||
| @@ -740,6 +740,8 @@ acpi_bus_extract_wakeup_device_power_package(struct acpi_device *device, | |||
| 740 | device->wakeup.resources.handles[i] = element->reference.handle; | 740 | device->wakeup.resources.handles[i] = element->reference.handle; |
| 741 | } | 741 | } |
| 742 | 742 | ||
| 743 | acpi_gpe_can_wake(device->wakeup.gpe_device, device->wakeup.gpe_number); | ||
| 744 | |||
| 743 | return AE_OK; | 745 | return AE_OK; |
| 744 | } | 746 | } |
| 745 | 747 | ||
diff --git a/include/acpi/acpixf.h b/include/acpi/acpixf.h index ba94a889afd1..81d4f3d4b9fd 100644 --- a/include/acpi/acpixf.h +++ b/include/acpi/acpixf.h | |||
| @@ -63,7 +63,6 @@ extern u32 acpi_dbg_layer; | |||
| 63 | extern u8 acpi_gbl_enable_interpreter_slack; | 63 | extern u8 acpi_gbl_enable_interpreter_slack; |
| 64 | extern u8 acpi_gbl_all_methods_serialized; | 64 | extern u8 acpi_gbl_all_methods_serialized; |
| 65 | extern u8 acpi_gbl_create_osi_method; | 65 | extern u8 acpi_gbl_create_osi_method; |
| 66 | extern u8 acpi_gbl_leave_wake_gpes_disabled; | ||
| 67 | extern u8 acpi_gbl_use_default_register_widths; | 66 | extern u8 acpi_gbl_use_default_register_widths; |
| 68 | extern acpi_name acpi_gbl_trace_method_name; | 67 | extern acpi_name acpi_gbl_trace_method_name; |
| 69 | extern u32 acpi_gbl_trace_flags; | 68 | extern u32 acpi_gbl_trace_flags; |
| @@ -286,6 +285,8 @@ acpi_status acpi_enable_gpe(acpi_handle gpe_device, u32 gpe_number); | |||
| 286 | 285 | ||
| 287 | acpi_status acpi_disable_gpe(acpi_handle gpe_device, u32 gpe_number); | 286 | acpi_status acpi_disable_gpe(acpi_handle gpe_device, u32 gpe_number); |
| 288 | 287 | ||
| 288 | acpi_status acpi_gpe_can_wake(acpi_handle gpe_device, u32 gpe_number); | ||
| 289 | |||
| 289 | acpi_status acpi_clear_gpe(acpi_handle gpe_device, u32 gpe_number); | 290 | acpi_status acpi_clear_gpe(acpi_handle gpe_device, u32 gpe_number); |
| 290 | 291 | ||
| 291 | acpi_status acpi_gpe_wakeup(acpi_handle gpe_device, u32 gpe_number, u8 action); | 292 | acpi_status acpi_gpe_wakeup(acpi_handle gpe_device, u32 gpe_number, u8 action); |
