1 /******************************************************************************
3 * Module Name: evgpe - General Purpose Event handling and dispatch
5 *****************************************************************************/
8 * Copyright (C) 2000 - 2011, Intel Corp.
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions, and the following disclaimer,
16 * without modification.
17 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
18 * substantially similar to the "NO WARRANTY" disclaimer below
19 * ("Disclaimer") and any redistribution must be conditioned upon
20 * including a substantially similar Disclaimer requirement for further
21 * binary redistribution.
22 * 3. Neither the names of the above-listed copyright holders nor the names
23 * of any contributors may be used to endorse or promote products derived
24 * from this software without specific prior written permission.
26 * Alternatively, this software may be distributed under the terms of the
27 * GNU General Public License ("GPL") version 2 as published by the Free
28 * Software Foundation.
31 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
32 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
33 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
34 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
35 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
36 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
37 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
38 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
39 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
40 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
41 * POSSIBILITY OF SUCH DAMAGES.
44 #include <acpi/acpi.h>
49 #define _COMPONENT ACPI_EVENTS
50 ACPI_MODULE_NAME("evgpe")
52 /* Local prototypes */
53 static void ACPI_SYSTEM_XFACE
acpi_ev_asynch_execute_gpe_method(void *context
);
55 static void ACPI_SYSTEM_XFACE
acpi_ev_asynch_enable_gpe(void *context
);
57 /*******************************************************************************
59 * FUNCTION: acpi_ev_update_gpe_enable_mask
61 * PARAMETERS: gpe_event_info - GPE to update
65 * DESCRIPTION: Updates GPE register enable mask based upon whether there are
66 * runtime references to this GPE
68 ******************************************************************************/
71 acpi_ev_update_gpe_enable_mask(struct acpi_gpe_event_info
*gpe_event_info
)
73 struct acpi_gpe_register_info
*gpe_register_info
;
76 ACPI_FUNCTION_TRACE(ev_update_gpe_enable_mask
);
78 gpe_register_info
= gpe_event_info
->register_info
;
79 if (!gpe_register_info
) {
80 return_ACPI_STATUS(AE_NOT_EXIST
);
83 register_bit
= acpi_hw_get_gpe_register_bit(gpe_event_info
,
86 /* Clear the run bit up front */
88 ACPI_CLEAR_BIT(gpe_register_info
->enable_for_run
, register_bit
);
90 /* Set the mask bit only if there are references to this GPE */
92 if (gpe_event_info
->runtime_count
) {
93 ACPI_SET_BIT(gpe_register_info
->enable_for_run
, (u8
)register_bit
);
96 return_ACPI_STATUS(AE_OK
);
99 /*******************************************************************************
101 * FUNCTION: acpi_ev_enable_gpe
103 * PARAMETERS: gpe_event_info - GPE to enable
107 * DESCRIPTION: Clear a GPE of stale events and enable it.
109 ******************************************************************************/
111 acpi_ev_enable_gpe(struct acpi_gpe_event_info
*gpe_event_info
)
115 ACPI_FUNCTION_TRACE(ev_enable_gpe
);
118 * We will only allow a GPE to be enabled if it has either an associated
119 * method (_Lxx/_Exx) or a handler, or is using the implicit notify
120 * feature. Otherwise, the GPE will be immediately disabled by
121 * acpi_ev_gpe_dispatch the first time it fires.
123 if ((gpe_event_info
->flags
& ACPI_GPE_DISPATCH_MASK
) ==
124 ACPI_GPE_DISPATCH_NONE
) {
125 return_ACPI_STATUS(AE_NO_HANDLER
);
128 /* Clear the GPE (of stale events) */
129 status
= acpi_hw_clear_gpe(gpe_event_info
);
130 if (ACPI_FAILURE(status
)) {
131 return_ACPI_STATUS(status
);
134 /* Enable the requested GPE */
135 status
= acpi_hw_low_set_gpe(gpe_event_info
, ACPI_GPE_ENABLE
);
137 return_ACPI_STATUS(status
);
141 /*******************************************************************************
143 * FUNCTION: acpi_ev_add_gpe_reference
145 * PARAMETERS: gpe_event_info - Add a reference to this GPE
149 * DESCRIPTION: Add a reference to a GPE. On the first reference, the GPE is
152 ******************************************************************************/
154 acpi_status
acpi_ev_add_gpe_reference(struct acpi_gpe_event_info
*gpe_event_info
)
156 acpi_status status
= AE_OK
;
158 ACPI_FUNCTION_TRACE(ev_add_gpe_reference
);
160 if (gpe_event_info
->runtime_count
== ACPI_UINT8_MAX
) {
161 return_ACPI_STATUS(AE_LIMIT
);
164 gpe_event_info
->runtime_count
++;
165 if (gpe_event_info
->runtime_count
== 1) {
167 /* Enable on first reference */
169 status
= acpi_ev_update_gpe_enable_mask(gpe_event_info
);
170 if (ACPI_SUCCESS(status
)) {
171 status
= acpi_ev_enable_gpe(gpe_event_info
);
174 if (ACPI_FAILURE(status
)) {
175 gpe_event_info
->runtime_count
--;
179 return_ACPI_STATUS(status
);
182 /*******************************************************************************
184 * FUNCTION: acpi_ev_remove_gpe_reference
186 * PARAMETERS: gpe_event_info - Remove a reference to this GPE
190 * DESCRIPTION: Remove a reference to a GPE. When the last reference is
191 * removed, the GPE is hardware-disabled.
193 ******************************************************************************/
195 acpi_status
acpi_ev_remove_gpe_reference(struct acpi_gpe_event_info
*gpe_event_info
)
197 acpi_status status
= AE_OK
;
199 ACPI_FUNCTION_TRACE(ev_remove_gpe_reference
);
201 if (!gpe_event_info
->runtime_count
) {
202 return_ACPI_STATUS(AE_LIMIT
);
205 gpe_event_info
->runtime_count
--;
206 if (!gpe_event_info
->runtime_count
) {
208 /* Disable on last reference */
210 status
= acpi_ev_update_gpe_enable_mask(gpe_event_info
);
211 if (ACPI_SUCCESS(status
)) {
212 status
= acpi_hw_low_set_gpe(gpe_event_info
,
216 if (ACPI_FAILURE(status
)) {
217 gpe_event_info
->runtime_count
++;
221 return_ACPI_STATUS(status
);
224 /*******************************************************************************
226 * FUNCTION: acpi_ev_low_get_gpe_info
228 * PARAMETERS: gpe_number - Raw GPE number
229 * gpe_block - A GPE info block
231 * RETURN: A GPE event_info struct. NULL if not a valid GPE (The gpe_number
232 * is not within the specified GPE block)
234 * DESCRIPTION: Returns the event_info struct associated with this GPE. This is
235 * the low-level implementation of ev_get_gpe_event_info.
237 ******************************************************************************/
239 struct acpi_gpe_event_info
*acpi_ev_low_get_gpe_info(u32 gpe_number
,
240 struct acpi_gpe_block_info
246 * Validate that the gpe_number is within the specified gpe_block.
249 if (!gpe_block
|| (gpe_number
< gpe_block
->block_base_number
)) {
253 gpe_index
= gpe_number
- gpe_block
->block_base_number
;
254 if (gpe_index
>= gpe_block
->gpe_count
) {
258 return (&gpe_block
->event_info
[gpe_index
]);
262 /*******************************************************************************
264 * FUNCTION: acpi_ev_get_gpe_event_info
266 * PARAMETERS: gpe_device - Device node. NULL for GPE0/GPE1
267 * gpe_number - Raw GPE number
269 * RETURN: A GPE event_info struct. NULL if not a valid GPE
271 * DESCRIPTION: Returns the event_info struct associated with this GPE.
272 * Validates the gpe_block and the gpe_number
274 * Should be called only when the GPE lists are semaphore locked
275 * and not subject to change.
277 ******************************************************************************/
279 struct acpi_gpe_event_info
*acpi_ev_get_gpe_event_info(acpi_handle gpe_device
,
282 union acpi_operand_object
*obj_desc
;
283 struct acpi_gpe_event_info
*gpe_info
;
286 ACPI_FUNCTION_ENTRY();
288 /* A NULL gpe_device means use the FADT-defined GPE block(s) */
292 /* Examine GPE Block 0 and 1 (These blocks are permanent) */
294 for (i
= 0; i
< ACPI_MAX_GPE_BLOCKS
; i
++) {
295 gpe_info
= acpi_ev_low_get_gpe_info(gpe_number
,
296 acpi_gbl_gpe_fadt_blocks
303 /* The gpe_number was not in the range of either FADT GPE block */
308 /* A Non-NULL gpe_device means this is a GPE Block Device */
310 obj_desc
= acpi_ns_get_attached_object((struct acpi_namespace_node
*)
312 if (!obj_desc
|| !obj_desc
->device
.gpe_block
) {
316 return (acpi_ev_low_get_gpe_info
317 (gpe_number
, obj_desc
->device
.gpe_block
));
320 /*******************************************************************************
322 * FUNCTION: acpi_ev_gpe_detect
324 * PARAMETERS: gpe_xrupt_list - Interrupt block for this interrupt.
325 * Can have multiple GPE blocks attached.
327 * RETURN: INTERRUPT_HANDLED or INTERRUPT_NOT_HANDLED
329 * DESCRIPTION: Detect if any GP events have occurred. This function is
330 * executed at interrupt level.
332 ******************************************************************************/
334 u32
acpi_ev_gpe_detect(struct acpi_gpe_xrupt_info
* gpe_xrupt_list
)
337 struct acpi_gpe_block_info
*gpe_block
;
338 struct acpi_gpe_register_info
*gpe_register_info
;
339 u32 int_status
= ACPI_INTERRUPT_NOT_HANDLED
;
340 u8 enabled_status_byte
;
343 acpi_cpu_flags flags
;
347 ACPI_FUNCTION_NAME(ev_gpe_detect
);
349 /* Check for the case where there are no GPEs */
351 if (!gpe_xrupt_list
) {
356 * We need to obtain the GPE lock for both the data structs and registers
357 * Note: Not necessary to obtain the hardware lock, since the GPE
358 * registers are owned by the gpe_lock.
360 flags
= acpi_os_acquire_lock(acpi_gbl_gpe_lock
);
362 /* Examine all GPE blocks attached to this interrupt level */
364 gpe_block
= gpe_xrupt_list
->gpe_block_list_head
;
367 * Read all of the 8-bit GPE status and enable registers in this GPE
368 * block, saving all of them. Find all currently active GP events.
370 for (i
= 0; i
< gpe_block
->register_count
; i
++) {
372 /* Get the next status/enable pair */
374 gpe_register_info
= &gpe_block
->register_info
[i
];
376 /* Read the Status Register */
379 acpi_hw_read(&status_reg
,
380 &gpe_register_info
->status_address
);
381 if (ACPI_FAILURE(status
)) {
382 goto unlock_and_exit
;
385 /* Read the Enable Register */
388 acpi_hw_read(&enable_reg
,
389 &gpe_register_info
->enable_address
);
390 if (ACPI_FAILURE(status
)) {
391 goto unlock_and_exit
;
394 ACPI_DEBUG_PRINT((ACPI_DB_INTERRUPTS
,
395 "Read GPE Register at GPE%02X: Status=%02X, Enable=%02X\n",
396 gpe_register_info
->base_gpe_number
,
397 status_reg
, enable_reg
));
399 /* Check if there is anything active at all in this register */
401 enabled_status_byte
= (u8
) (status_reg
& enable_reg
);
402 if (!enabled_status_byte
) {
404 /* No active GPEs in this register, move on */
409 /* Now look at the individual GPEs in this byte register */
411 for (j
= 0; j
< ACPI_GPE_REGISTER_WIDTH
; j
++) {
413 /* Examine one GPE bit */
415 if (enabled_status_byte
& (1 << j
)) {
417 * Found an active GPE. Dispatch the event to a handler
421 acpi_ev_gpe_dispatch(gpe_block
->
424 event_info
[((acpi_size
) i
* ACPI_GPE_REGISTER_WIDTH
) + j
], j
+ gpe_register_info
->base_gpe_number
);
429 gpe_block
= gpe_block
->next
;
434 acpi_os_release_lock(acpi_gbl_gpe_lock
, flags
);
438 /*******************************************************************************
440 * FUNCTION: acpi_ev_asynch_execute_gpe_method
442 * PARAMETERS: Context (gpe_event_info) - Info for this GPE
446 * DESCRIPTION: Perform the actual execution of a GPE control method. This
447 * function is called from an invocation of acpi_os_execute and
448 * therefore does NOT execute at interrupt level - so that
449 * the control method itself is not executed in the context of
450 * an interrupt handler.
452 ******************************************************************************/
454 static void ACPI_SYSTEM_XFACE
acpi_ev_asynch_execute_gpe_method(void *context
)
456 struct acpi_gpe_event_info
*gpe_event_info
= context
;
458 struct acpi_gpe_event_info
*local_gpe_event_info
;
459 struct acpi_evaluate_info
*info
;
460 struct acpi_gpe_notify_object
*notify_object
;
462 ACPI_FUNCTION_TRACE(ev_asynch_execute_gpe_method
);
464 /* Allocate a local GPE block */
466 local_gpe_event_info
=
467 ACPI_ALLOCATE_ZEROED(sizeof(struct acpi_gpe_event_info
));
468 if (!local_gpe_event_info
) {
469 ACPI_EXCEPTION((AE_INFO
, AE_NO_MEMORY
, "while handling a GPE"));
473 status
= acpi_ut_acquire_mutex(ACPI_MTX_EVENTS
);
474 if (ACPI_FAILURE(status
)) {
475 ACPI_FREE(local_gpe_event_info
);
479 /* Must revalidate the gpe_number/gpe_block */
481 if (!acpi_ev_valid_gpe_event(gpe_event_info
)) {
482 status
= acpi_ut_release_mutex(ACPI_MTX_EVENTS
);
483 ACPI_FREE(local_gpe_event_info
);
488 * Take a snapshot of the GPE info for this level - we copy the info to
489 * prevent a race condition with remove_handler/remove_block.
491 ACPI_MEMCPY(local_gpe_event_info
, gpe_event_info
,
492 sizeof(struct acpi_gpe_event_info
));
494 status
= acpi_ut_release_mutex(ACPI_MTX_EVENTS
);
495 if (ACPI_FAILURE(status
)) {
499 /* Do the correct dispatch - normal method or implicit notify */
501 switch (local_gpe_event_info
->flags
& ACPI_GPE_DISPATCH_MASK
) {
502 case ACPI_GPE_DISPATCH_NOTIFY
:
506 * Dispatch a DEVICE_WAKE notify to the appropriate handler.
507 * NOTE: the request is queued for execution after this method
508 * completes. The notify handlers are NOT invoked synchronously
509 * from this thread -- because handlers may in turn run other
512 status
= acpi_ev_queue_notify_request(
513 local_gpe_event_info
->dispatch
.device
.node
,
514 ACPI_NOTIFY_DEVICE_WAKE
);
516 notify_object
= local_gpe_event_info
->dispatch
.device
.next
;
517 while (ACPI_SUCCESS(status
) && notify_object
) {
518 status
= acpi_ev_queue_notify_request(
520 ACPI_NOTIFY_DEVICE_WAKE
);
521 notify_object
= notify_object
->next
;
526 case ACPI_GPE_DISPATCH_METHOD
:
528 /* Allocate the evaluation information block */
530 info
= ACPI_ALLOCATE_ZEROED(sizeof(struct acpi_evaluate_info
));
532 status
= AE_NO_MEMORY
;
535 * Invoke the GPE Method (_Lxx, _Exx) i.e., evaluate the _Lxx/_Exx
536 * control method that corresponds to this GPE
539 local_gpe_event_info
->dispatch
.method_node
;
540 info
->flags
= ACPI_IGNORE_RETURN_VALUE
;
542 status
= acpi_ns_evaluate(info
);
546 if (ACPI_FAILURE(status
)) {
547 ACPI_EXCEPTION((AE_INFO
, status
,
548 "while evaluating GPE method [%4.4s]",
549 acpi_ut_get_node_name
550 (local_gpe_event_info
->dispatch
.
557 return_VOID
; /* Should never happen */
560 /* Defer enabling of GPE until all notify handlers are done */
562 status
= acpi_os_execute(OSL_NOTIFY_HANDLER
,
563 acpi_ev_asynch_enable_gpe
,
564 local_gpe_event_info
);
565 if (ACPI_FAILURE(status
)) {
566 ACPI_FREE(local_gpe_event_info
);
572 /*******************************************************************************
574 * FUNCTION: acpi_ev_asynch_enable_gpe
576 * PARAMETERS: Context (gpe_event_info) - Info for this GPE
577 * Callback from acpi_os_execute
581 * DESCRIPTION: Asynchronous clear/enable for GPE. This allows the GPE to
582 * complete (i.e., finish execution of Notify)
584 ******************************************************************************/
586 static void ACPI_SYSTEM_XFACE
acpi_ev_asynch_enable_gpe(void *context
)
588 struct acpi_gpe_event_info
*gpe_event_info
= context
;
590 (void)acpi_ev_finish_gpe(gpe_event_info
);
592 ACPI_FREE(gpe_event_info
);
597 /*******************************************************************************
599 * FUNCTION: acpi_ev_finish_gpe
601 * PARAMETERS: gpe_event_info - Info for this GPE
605 * DESCRIPTION: Clear/Enable a GPE. Common code that is used after execution
606 * of a GPE method or a synchronous or asynchronous GPE handler.
608 ******************************************************************************/
610 acpi_status
acpi_ev_finish_gpe(struct acpi_gpe_event_info
*gpe_event_info
)
614 if ((gpe_event_info
->flags
& ACPI_GPE_XRUPT_TYPE_MASK
) ==
615 ACPI_GPE_LEVEL_TRIGGERED
) {
617 * GPE is level-triggered, we clear the GPE status bit after
618 * handling the event.
620 status
= acpi_hw_clear_gpe(gpe_event_info
);
621 if (ACPI_FAILURE(status
)) {
627 * Enable this GPE, conditionally. This means that the GPE will
628 * only be physically enabled if the enable_for_run bit is set
631 (void)acpi_hw_low_set_gpe(gpe_event_info
, ACPI_GPE_CONDITIONAL_ENABLE
);
636 /*******************************************************************************
638 * FUNCTION: acpi_ev_gpe_dispatch
640 * PARAMETERS: gpe_device - Device node. NULL for GPE0/GPE1
641 * gpe_event_info - Info for this GPE
642 * gpe_number - Number relative to the parent GPE block
644 * RETURN: INTERRUPT_HANDLED or INTERRUPT_NOT_HANDLED
646 * DESCRIPTION: Dispatch a General Purpose Event to either a function (e.g. EC)
647 * or method (e.g. _Lxx/_Exx) handler.
649 * This function executes at interrupt level.
651 ******************************************************************************/
654 acpi_ev_gpe_dispatch(struct acpi_namespace_node
*gpe_device
,
655 struct acpi_gpe_event_info
*gpe_event_info
, u32 gpe_number
)
660 ACPI_FUNCTION_TRACE(ev_gpe_dispatch
);
662 /* Invoke global event handler if present */
665 if (acpi_gbl_global_event_handler
) {
666 acpi_gbl_global_event_handler(ACPI_EVENT_TYPE_GPE
, gpe_device
,
668 acpi_gbl_global_event_handler_context
);
672 * If edge-triggered, clear the GPE status bit now. Note that
673 * level-triggered events are cleared after the GPE is serviced.
675 if ((gpe_event_info
->flags
& ACPI_GPE_XRUPT_TYPE_MASK
) ==
676 ACPI_GPE_EDGE_TRIGGERED
) {
677 status
= acpi_hw_clear_gpe(gpe_event_info
);
678 if (ACPI_FAILURE(status
)) {
679 ACPI_EXCEPTION((AE_INFO
, status
,
680 "Unable to clear GPE%02X", gpe_number
));
681 return_UINT32(ACPI_INTERRUPT_NOT_HANDLED
);
686 * Always disable the GPE so that it does not keep firing before
687 * any asynchronous activity completes (either from the execution
688 * of a GPE method or an asynchronous GPE handler.)
690 * If there is no handler or method to run, just disable the
691 * GPE and leave it disabled permanently to prevent further such
692 * pointless events from firing.
694 status
= acpi_hw_low_set_gpe(gpe_event_info
, ACPI_GPE_DISABLE
);
695 if (ACPI_FAILURE(status
)) {
696 ACPI_EXCEPTION((AE_INFO
, status
,
697 "Unable to disable GPE%02X", gpe_number
));
698 return_UINT32(ACPI_INTERRUPT_NOT_HANDLED
);
702 * Dispatch the GPE to either an installed handler or the control
703 * method associated with this GPE (_Lxx or _Exx). If a handler
704 * exists, we invoke it and do not attempt to run the method.
705 * If there is neither a handler nor a method, leave the GPE
708 switch (gpe_event_info
->flags
& ACPI_GPE_DISPATCH_MASK
) {
709 case ACPI_GPE_DISPATCH_HANDLER
:
711 /* Invoke the installed handler (at interrupt level) */
714 gpe_event_info
->dispatch
.handler
->address(gpe_device
,
720 /* If requested, clear (if level-triggered) and reenable the GPE */
722 if (return_value
& ACPI_REENABLE_GPE
) {
723 (void)acpi_ev_finish_gpe(gpe_event_info
);
727 case ACPI_GPE_DISPATCH_METHOD
:
728 case ACPI_GPE_DISPATCH_NOTIFY
:
731 * Execute the method associated with the GPE
732 * NOTE: Level-triggered GPEs are cleared after the method completes.
734 status
= acpi_os_execute(OSL_GPE_HANDLER
,
735 acpi_ev_asynch_execute_gpe_method
,
737 if (ACPI_FAILURE(status
)) {
738 ACPI_EXCEPTION((AE_INFO
, status
,
739 "Unable to queue handler for GPE%2X - event disabled",
747 * No handler or method to run!
748 * 03/2010: This case should no longer be possible. We will not allow
749 * a GPE to be enabled if it has no handler or method.
752 "No handler or method for GPE%02X, disabling event",
758 return_UINT32(ACPI_INTERRUPT_HANDLED
);