1 /******************************************************************************
3 * Module Name: evgpe - General Purpose Event handling and dispatch
5 *****************************************************************************/
8 * Copyright (C) 2000 - 2010, 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 /*******************************************************************************
57 * FUNCTION: acpi_ev_update_gpe_enable_masks
59 * PARAMETERS: gpe_event_info - GPE to update
63 * DESCRIPTION: Updates GPE register enable masks based on the GPE type
65 ******************************************************************************/
68 acpi_ev_update_gpe_enable_masks(struct acpi_gpe_event_info
*gpe_event_info
)
70 struct acpi_gpe_register_info
*gpe_register_info
;
73 ACPI_FUNCTION_TRACE(ev_update_gpe_enable_masks
);
75 gpe_register_info
= gpe_event_info
->register_info
;
76 if (!gpe_register_info
) {
77 return_ACPI_STATUS(AE_NOT_EXIST
);
82 (gpe_event_info
->gpe_number
- gpe_register_info
->base_gpe_number
));
84 ACPI_CLEAR_BIT(gpe_register_info
->enable_for_wake
, register_bit
);
85 ACPI_CLEAR_BIT(gpe_register_info
->enable_for_run
, register_bit
);
87 if (gpe_event_info
->runtime_count
)
88 ACPI_SET_BIT(gpe_register_info
->enable_for_run
, register_bit
);
90 if (gpe_event_info
->wakeup_count
)
91 ACPI_SET_BIT(gpe_register_info
->enable_for_wake
, register_bit
);
93 return_ACPI_STATUS(AE_OK
);
96 /*******************************************************************************
98 * FUNCTION: acpi_ev_enable_gpe
100 * PARAMETERS: gpe_event_info - GPE to enable
104 * DESCRIPTION: Enable a GPE based on the GPE type
106 ******************************************************************************/
108 acpi_status
acpi_ev_enable_gpe(struct acpi_gpe_event_info
*gpe_event_info
)
112 ACPI_FUNCTION_TRACE(ev_enable_gpe
);
114 /* Make sure HW enable masks are updated */
116 status
= acpi_ev_update_gpe_enable_masks(gpe_event_info
);
117 if (ACPI_FAILURE(status
))
118 return_ACPI_STATUS(status
);
120 /* Clear the GPE (of stale events), then enable it */
121 status
= acpi_hw_clear_gpe(gpe_event_info
);
122 if (ACPI_FAILURE(status
))
123 return_ACPI_STATUS(status
);
125 /* Enable the requested GPE */
126 status
= acpi_hw_write_gpe_enable_reg(gpe_event_info
);
127 return_ACPI_STATUS(status
);
130 /*******************************************************************************
132 * FUNCTION: acpi_ev_disable_gpe
134 * PARAMETERS: gpe_event_info - GPE to disable
138 * DESCRIPTION: Disable a GPE based on the GPE type
140 ******************************************************************************/
142 acpi_status
acpi_ev_disable_gpe(struct acpi_gpe_event_info
*gpe_event_info
)
146 ACPI_FUNCTION_TRACE(ev_disable_gpe
);
148 /* Make sure HW enable masks are updated */
150 status
= acpi_ev_update_gpe_enable_masks(gpe_event_info
);
151 if (ACPI_FAILURE(status
))
152 return_ACPI_STATUS(status
);
155 * Even if we don't know the GPE type, make sure that we always
156 * disable it. low_disable_gpe will just clear the enable bit for this
157 * GPE and write it. It will not write out the current GPE enable mask,
158 * since this may inadvertently enable GPEs too early, if a rogue GPE has
159 * come in during ACPICA initialization - possibly as a result of AML or
160 * other code that has enabled the GPE.
162 status
= acpi_hw_low_disable_gpe(gpe_event_info
);
163 return_ACPI_STATUS(status
);
166 /*******************************************************************************
168 * FUNCTION: acpi_ev_get_gpe_event_info
170 * PARAMETERS: gpe_device - Device node. NULL for GPE0/GPE1
171 * gpe_number - Raw GPE number
173 * RETURN: A GPE event_info struct. NULL if not a valid GPE
175 * DESCRIPTION: Returns the event_info struct associated with this GPE.
176 * Validates the gpe_block and the gpe_number
178 * Should be called only when the GPE lists are semaphore locked
179 * and not subject to change.
181 ******************************************************************************/
183 struct acpi_gpe_event_info
*acpi_ev_get_gpe_event_info(acpi_handle gpe_device
,
186 union acpi_operand_object
*obj_desc
;
187 struct acpi_gpe_block_info
*gpe_block
;
190 ACPI_FUNCTION_ENTRY();
192 /* A NULL gpe_block means use the FADT-defined GPE block(s) */
196 /* Examine GPE Block 0 and 1 (These blocks are permanent) */
198 for (i
= 0; i
< ACPI_MAX_GPE_BLOCKS
; i
++) {
199 gpe_block
= acpi_gbl_gpe_fadt_blocks
[i
];
201 if ((gpe_number
>= gpe_block
->block_base_number
)
203 gpe_block
->block_base_number
+
204 (gpe_block
->register_count
* 8))) {
206 event_info
[gpe_number
-
213 /* The gpe_number was not in the range of either FADT GPE block */
218 /* A Non-NULL gpe_device means this is a GPE Block Device */
220 obj_desc
= acpi_ns_get_attached_object((struct acpi_namespace_node
*)
222 if (!obj_desc
|| !obj_desc
->device
.gpe_block
) {
226 gpe_block
= obj_desc
->device
.gpe_block
;
228 if ((gpe_number
>= gpe_block
->block_base_number
) &&
230 gpe_block
->block_base_number
+ (gpe_block
->register_count
* 8))) {
232 event_info
[gpe_number
- gpe_block
->block_base_number
]);
238 /*******************************************************************************
240 * FUNCTION: acpi_ev_gpe_detect
242 * PARAMETERS: gpe_xrupt_list - Interrupt block for this interrupt.
243 * Can have multiple GPE blocks attached.
245 * RETURN: INTERRUPT_HANDLED or INTERRUPT_NOT_HANDLED
247 * DESCRIPTION: Detect if any GP events have occurred. This function is
248 * executed at interrupt level.
250 ******************************************************************************/
252 u32
acpi_ev_gpe_detect(struct acpi_gpe_xrupt_info
* gpe_xrupt_list
)
255 struct acpi_gpe_block_info
*gpe_block
;
256 struct acpi_gpe_register_info
*gpe_register_info
;
257 u32 int_status
= ACPI_INTERRUPT_NOT_HANDLED
;
258 u8 enabled_status_byte
;
261 acpi_cpu_flags flags
;
265 ACPI_FUNCTION_NAME(ev_gpe_detect
);
267 /* Check for the case where there are no GPEs */
269 if (!gpe_xrupt_list
) {
274 * We need to obtain the GPE lock for both the data structs and registers
275 * Note: Not necessary to obtain the hardware lock, since the GPE
276 * registers are owned by the gpe_lock.
278 flags
= acpi_os_acquire_lock(acpi_gbl_gpe_lock
);
280 /* Examine all GPE blocks attached to this interrupt level */
282 gpe_block
= gpe_xrupt_list
->gpe_block_list_head
;
285 * Read all of the 8-bit GPE status and enable registers in this GPE
286 * block, saving all of them. Find all currently active GP events.
288 for (i
= 0; i
< gpe_block
->register_count
; i
++) {
290 /* Get the next status/enable pair */
292 gpe_register_info
= &gpe_block
->register_info
[i
];
294 /* Read the Status Register */
297 acpi_hw_read(&status_reg
,
298 &gpe_register_info
->status_address
);
299 if (ACPI_FAILURE(status
)) {
300 goto unlock_and_exit
;
303 /* Read the Enable Register */
306 acpi_hw_read(&enable_reg
,
307 &gpe_register_info
->enable_address
);
308 if (ACPI_FAILURE(status
)) {
309 goto unlock_and_exit
;
312 ACPI_DEBUG_PRINT((ACPI_DB_INTERRUPTS
,
313 "Read GPE Register at GPE%X: Status=%02X, Enable=%02X\n",
314 gpe_register_info
->base_gpe_number
,
315 status_reg
, enable_reg
));
317 /* Check if there is anything active at all in this register */
319 enabled_status_byte
= (u8
) (status_reg
& enable_reg
);
320 if (!enabled_status_byte
) {
322 /* No active GPEs in this register, move on */
327 /* Now look at the individual GPEs in this byte register */
329 for (j
= 0; j
< ACPI_GPE_REGISTER_WIDTH
; j
++) {
331 /* Examine one GPE bit */
333 if (enabled_status_byte
& (1 << j
)) {
335 * Found an active GPE. Dispatch the event to a handler
339 acpi_ev_gpe_dispatch(&gpe_block
->
340 event_info
[((acpi_size
) i
* ACPI_GPE_REGISTER_WIDTH
) + j
], j
+ gpe_register_info
->base_gpe_number
);
345 gpe_block
= gpe_block
->next
;
350 acpi_os_release_lock(acpi_gbl_gpe_lock
, flags
);
354 /*******************************************************************************
356 * FUNCTION: acpi_ev_asynch_execute_gpe_method
358 * PARAMETERS: Context (gpe_event_info) - Info for this GPE
362 * DESCRIPTION: Perform the actual execution of a GPE control method. This
363 * function is called from an invocation of acpi_os_execute and
364 * therefore does NOT execute at interrupt level - so that
365 * the control method itself is not executed in the context of
366 * an interrupt handler.
368 ******************************************************************************/
369 static void acpi_ev_asynch_enable_gpe(void *context
);
371 static void ACPI_SYSTEM_XFACE
acpi_ev_asynch_execute_gpe_method(void *context
)
373 struct acpi_gpe_event_info
*gpe_event_info
= (void *)context
;
375 struct acpi_gpe_event_info local_gpe_event_info
;
376 struct acpi_evaluate_info
*info
;
378 ACPI_FUNCTION_TRACE(ev_asynch_execute_gpe_method
);
380 status
= acpi_ut_acquire_mutex(ACPI_MTX_EVENTS
);
381 if (ACPI_FAILURE(status
)) {
385 /* Must revalidate the gpe_number/gpe_block */
387 if (!acpi_ev_valid_gpe_event(gpe_event_info
)) {
388 status
= acpi_ut_release_mutex(ACPI_MTX_EVENTS
);
392 /* Set the GPE flags for return to enabled state */
394 (void)acpi_ev_update_gpe_enable_masks(gpe_event_info
);
397 * Take a snapshot of the GPE info for this level - we copy the info to
398 * prevent a race condition with remove_handler/remove_block.
400 ACPI_MEMCPY(&local_gpe_event_info
, gpe_event_info
,
401 sizeof(struct acpi_gpe_event_info
));
403 status
= acpi_ut_release_mutex(ACPI_MTX_EVENTS
);
404 if (ACPI_FAILURE(status
)) {
409 * Must check for control method type dispatch one more time to avoid a
410 * race with ev_gpe_install_handler
412 if ((local_gpe_event_info
.flags
& ACPI_GPE_DISPATCH_MASK
) ==
413 ACPI_GPE_DISPATCH_METHOD
) {
415 /* Allocate the evaluation information block */
417 info
= ACPI_ALLOCATE_ZEROED(sizeof(struct acpi_evaluate_info
));
419 status
= AE_NO_MEMORY
;
422 * Invoke the GPE Method (_Lxx, _Exx) i.e., evaluate the _Lxx/_Exx
423 * control method that corresponds to this GPE
426 local_gpe_event_info
.dispatch
.method_node
;
427 info
->flags
= ACPI_IGNORE_RETURN_VALUE
;
429 status
= acpi_ns_evaluate(info
);
433 if (ACPI_FAILURE(status
)) {
434 ACPI_EXCEPTION((AE_INFO
, status
,
435 "while evaluating GPE method [%4.4s]",
436 acpi_ut_get_node_name
437 (local_gpe_event_info
.dispatch
.
441 /* Defer enabling of GPE until all notify handlers are done */
442 acpi_os_execute(OSL_NOTIFY_HANDLER
, acpi_ev_asynch_enable_gpe
,
447 static void acpi_ev_asynch_enable_gpe(void *context
)
449 struct acpi_gpe_event_info
*gpe_event_info
= context
;
451 if ((gpe_event_info
->flags
& ACPI_GPE_XRUPT_TYPE_MASK
) ==
452 ACPI_GPE_LEVEL_TRIGGERED
) {
454 * GPE is level-triggered, we clear the GPE status bit after handling
457 status
= acpi_hw_clear_gpe(gpe_event_info
);
458 if (ACPI_FAILURE(status
)) {
463 /* Enable this GPE */
464 (void)acpi_hw_write_gpe_enable_reg(gpe_event_info
);
468 /*******************************************************************************
470 * FUNCTION: acpi_ev_gpe_dispatch
472 * PARAMETERS: gpe_event_info - Info for this GPE
473 * gpe_number - Number relative to the parent GPE block
475 * RETURN: INTERRUPT_HANDLED or INTERRUPT_NOT_HANDLED
477 * DESCRIPTION: Dispatch a General Purpose Event to either a function (e.g. EC)
478 * or method (e.g. _Lxx/_Exx) handler.
480 * This function executes at interrupt level.
482 ******************************************************************************/
485 acpi_ev_gpe_dispatch(struct acpi_gpe_event_info
*gpe_event_info
, u32 gpe_number
)
489 ACPI_FUNCTION_TRACE(ev_gpe_dispatch
);
491 acpi_os_gpe_count(gpe_number
);
494 * If edge-triggered, clear the GPE status bit now. Note that
495 * level-triggered events are cleared after the GPE is serviced.
497 if ((gpe_event_info
->flags
& ACPI_GPE_XRUPT_TYPE_MASK
) ==
498 ACPI_GPE_EDGE_TRIGGERED
) {
499 status
= acpi_hw_clear_gpe(gpe_event_info
);
500 if (ACPI_FAILURE(status
)) {
501 ACPI_EXCEPTION((AE_INFO
, status
,
502 "Unable to clear GPE[%2X]",
504 return_UINT32(ACPI_INTERRUPT_NOT_HANDLED
);
509 * Dispatch the GPE to either an installed handler, or the control method
510 * associated with this GPE (_Lxx or _Exx). If a handler exists, we invoke
511 * it and do not attempt to run the method. If there is neither a handler
512 * nor a method, we disable this GPE to prevent further such pointless
513 * events from firing.
515 switch (gpe_event_info
->flags
& ACPI_GPE_DISPATCH_MASK
) {
516 case ACPI_GPE_DISPATCH_HANDLER
:
519 * Invoke the installed handler (at interrupt level)
520 * Ignore return status for now.
521 * TBD: leave GPE disabled on error?
523 (void)gpe_event_info
->dispatch
.handler
->address(gpe_event_info
->
528 /* It is now safe to clear level-triggered events. */
530 if ((gpe_event_info
->flags
& ACPI_GPE_XRUPT_TYPE_MASK
) ==
531 ACPI_GPE_LEVEL_TRIGGERED
) {
532 status
= acpi_hw_clear_gpe(gpe_event_info
);
533 if (ACPI_FAILURE(status
)) {
534 ACPI_EXCEPTION((AE_INFO
, status
,
535 "Unable to clear GPE[%2X]",
537 return_UINT32(ACPI_INTERRUPT_NOT_HANDLED
);
542 case ACPI_GPE_DISPATCH_METHOD
:
545 * Disable the GPE, so it doesn't keep firing before the method has a
546 * chance to run (it runs asynchronously with interrupts enabled).
548 status
= acpi_ev_disable_gpe(gpe_event_info
);
549 if (ACPI_FAILURE(status
)) {
550 ACPI_EXCEPTION((AE_INFO
, status
,
551 "Unable to disable GPE[%2X]",
553 return_UINT32(ACPI_INTERRUPT_NOT_HANDLED
);
557 * Execute the method associated with the GPE
558 * NOTE: Level-triggered GPEs are cleared after the method completes.
560 status
= acpi_os_execute(OSL_GPE_HANDLER
,
561 acpi_ev_asynch_execute_gpe_method
,
563 if (ACPI_FAILURE(status
)) {
564 ACPI_EXCEPTION((AE_INFO
, status
,
565 "Unable to queue handler for GPE[%2X] - event disabled",
572 /* No handler or method to run! */
575 "No handler or method for GPE[%2X], disabling event",
579 * Disable the GPE. The GPE will remain disabled until the ACPICA
580 * Core Subsystem is restarted, or a handler is installed.
582 status
= acpi_ev_disable_gpe(gpe_event_info
);
583 if (ACPI_FAILURE(status
)) {
584 ACPI_EXCEPTION((AE_INFO
, status
,
585 "Unable to disable GPE[%2X]",
587 return_UINT32(ACPI_INTERRUPT_NOT_HANDLED
);
592 return_UINT32(ACPI_INTERRUPT_HANDLED
);