ACPI / ACPICA: Fix low-level GPE manipulation code
[linux-2.6/libata-dev.git] / drivers / acpi / acpica / evgpe.c
blob66cd03835d6e79d07be4ff47d27c85ae9c3ecf30
1 /******************************************************************************
3 * Module Name: evgpe - General Purpose Event handling and dispatch
5 *****************************************************************************/
7 /*
8 * Copyright (C) 2000 - 2010, Intel Corp.
9 * All rights reserved.
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
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.
30 * NO WARRANTY
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>
45 #include "accommon.h"
46 #include "acevents.h"
47 #include "acnamesp.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
61 * RETURN: Status
63 * DESCRIPTION: Updates GPE register enable masks based upon whether there are
64 * references (either wake or run) to this GPE
66 ******************************************************************************/
68 acpi_status
69 acpi_ev_update_gpe_enable_masks(struct acpi_gpe_event_info *gpe_event_info)
71 struct acpi_gpe_register_info *gpe_register_info;
72 u32 register_bit;
74 ACPI_FUNCTION_TRACE(ev_update_gpe_enable_masks);
76 gpe_register_info = gpe_event_info->register_info;
77 if (!gpe_register_info) {
78 return_ACPI_STATUS(AE_NOT_EXIST);
81 register_bit = acpi_hw_gpe_register_bit(gpe_event_info,
82 gpe_register_info);
84 /* Clear the wake/run bits up front */
86 ACPI_CLEAR_BIT(gpe_register_info->enable_for_wake, register_bit);
87 ACPI_CLEAR_BIT(gpe_register_info->enable_for_run, register_bit);
89 /* Set the mask bits only if there are references to this GPE */
91 if (gpe_event_info->runtime_count) {
92 ACPI_SET_BIT(gpe_register_info->enable_for_run, register_bit);
95 if (gpe_event_info->wakeup_count) {
96 ACPI_SET_BIT(gpe_register_info->enable_for_wake, register_bit);
99 return_ACPI_STATUS(AE_OK);
103 /*******************************************************************************
105 * FUNCTION: acpi_ev_low_get_gpe_info
107 * PARAMETERS: gpe_number - Raw GPE number
108 * gpe_block - A GPE info block
110 * RETURN: A GPE event_info struct. NULL if not a valid GPE (The gpe_number
111 * is not within the specified GPE block)
113 * DESCRIPTION: Returns the event_info struct associated with this GPE. This is
114 * the low-level implementation of ev_get_gpe_event_info.
116 ******************************************************************************/
118 struct acpi_gpe_event_info *acpi_ev_low_get_gpe_info(u32 gpe_number,
119 struct acpi_gpe_block_info
120 *gpe_block)
122 u32 gpe_index;
125 * Validate that the gpe_number is within the specified gpe_block.
126 * (Two steps)
128 if (!gpe_block || (gpe_number < gpe_block->block_base_number)) {
129 return (NULL);
132 gpe_index = gpe_number - gpe_block->block_base_number;
133 if (gpe_index >= gpe_block->gpe_count) {
134 return (NULL);
137 return (&gpe_block->event_info[gpe_index]);
141 /*******************************************************************************
143 * FUNCTION: acpi_ev_get_gpe_event_info
145 * PARAMETERS: gpe_device - Device node. NULL for GPE0/GPE1
146 * gpe_number - Raw GPE number
148 * RETURN: A GPE event_info struct. NULL if not a valid GPE
150 * DESCRIPTION: Returns the event_info struct associated with this GPE.
151 * Validates the gpe_block and the gpe_number
153 * Should be called only when the GPE lists are semaphore locked
154 * and not subject to change.
156 ******************************************************************************/
158 struct acpi_gpe_event_info *acpi_ev_get_gpe_event_info(acpi_handle gpe_device,
159 u32 gpe_number)
161 union acpi_operand_object *obj_desc;
162 struct acpi_gpe_event_info *gpe_info;
163 u32 i;
165 ACPI_FUNCTION_ENTRY();
167 /* A NULL gpe_block means use the FADT-defined GPE block(s) */
169 if (!gpe_device) {
171 /* Examine GPE Block 0 and 1 (These blocks are permanent) */
173 for (i = 0; i < ACPI_MAX_GPE_BLOCKS; i++) {
174 gpe_info = acpi_ev_low_get_gpe_info(gpe_number,
175 acpi_gbl_gpe_fadt_blocks
176 [i]);
177 if (gpe_info) {
178 return (gpe_info);
182 /* The gpe_number was not in the range of either FADT GPE block */
184 return (NULL);
187 /* A Non-NULL gpe_device means this is a GPE Block Device */
189 obj_desc = acpi_ns_get_attached_object((struct acpi_namespace_node *)
190 gpe_device);
191 if (!obj_desc || !obj_desc->device.gpe_block) {
192 return (NULL);
195 return (acpi_ev_low_get_gpe_info
196 (gpe_number, obj_desc->device.gpe_block));
199 /*******************************************************************************
201 * FUNCTION: acpi_ev_gpe_detect
203 * PARAMETERS: gpe_xrupt_list - Interrupt block for this interrupt.
204 * Can have multiple GPE blocks attached.
206 * RETURN: INTERRUPT_HANDLED or INTERRUPT_NOT_HANDLED
208 * DESCRIPTION: Detect if any GP events have occurred. This function is
209 * executed at interrupt level.
211 ******************************************************************************/
213 u32 acpi_ev_gpe_detect(struct acpi_gpe_xrupt_info * gpe_xrupt_list)
215 acpi_status status;
216 struct acpi_gpe_block_info *gpe_block;
217 struct acpi_gpe_register_info *gpe_register_info;
218 u32 int_status = ACPI_INTERRUPT_NOT_HANDLED;
219 u8 enabled_status_byte;
220 u32 status_reg;
221 u32 enable_reg;
222 acpi_cpu_flags flags;
223 u32 i;
224 u32 j;
226 ACPI_FUNCTION_NAME(ev_gpe_detect);
228 /* Check for the case where there are no GPEs */
230 if (!gpe_xrupt_list) {
231 return (int_status);
235 * We need to obtain the GPE lock for both the data structs and registers
236 * Note: Not necessary to obtain the hardware lock, since the GPE
237 * registers are owned by the gpe_lock.
239 flags = acpi_os_acquire_lock(acpi_gbl_gpe_lock);
241 /* Examine all GPE blocks attached to this interrupt level */
243 gpe_block = gpe_xrupt_list->gpe_block_list_head;
244 while (gpe_block) {
246 * Read all of the 8-bit GPE status and enable registers in this GPE
247 * block, saving all of them. Find all currently active GP events.
249 for (i = 0; i < gpe_block->register_count; i++) {
251 /* Get the next status/enable pair */
253 gpe_register_info = &gpe_block->register_info[i];
255 /* Read the Status Register */
257 status =
258 acpi_hw_read(&status_reg,
259 &gpe_register_info->status_address);
260 if (ACPI_FAILURE(status)) {
261 goto unlock_and_exit;
264 /* Read the Enable Register */
266 status =
267 acpi_hw_read(&enable_reg,
268 &gpe_register_info->enable_address);
269 if (ACPI_FAILURE(status)) {
270 goto unlock_and_exit;
273 ACPI_DEBUG_PRINT((ACPI_DB_INTERRUPTS,
274 "Read GPE Register at GPE%X: Status=%02X, Enable=%02X\n",
275 gpe_register_info->base_gpe_number,
276 status_reg, enable_reg));
278 /* Check if there is anything active at all in this register */
280 enabled_status_byte = (u8) (status_reg & enable_reg);
281 if (!enabled_status_byte) {
283 /* No active GPEs in this register, move on */
285 continue;
288 /* Now look at the individual GPEs in this byte register */
290 for (j = 0; j < ACPI_GPE_REGISTER_WIDTH; j++) {
292 /* Examine one GPE bit */
294 if (enabled_status_byte & (1 << j)) {
296 * Found an active GPE. Dispatch the event to a handler
297 * or method.
299 int_status |=
300 acpi_ev_gpe_dispatch(&gpe_block->
301 event_info[((acpi_size) i * ACPI_GPE_REGISTER_WIDTH) + j], j + gpe_register_info->base_gpe_number);
306 gpe_block = gpe_block->next;
309 unlock_and_exit:
311 acpi_os_release_lock(acpi_gbl_gpe_lock, flags);
312 return (int_status);
315 /*******************************************************************************
317 * FUNCTION: acpi_ev_asynch_execute_gpe_method
319 * PARAMETERS: Context (gpe_event_info) - Info for this GPE
321 * RETURN: None
323 * DESCRIPTION: Perform the actual execution of a GPE control method. This
324 * function is called from an invocation of acpi_os_execute and
325 * therefore does NOT execute at interrupt level - so that
326 * the control method itself is not executed in the context of
327 * an interrupt handler.
329 ******************************************************************************/
330 static void acpi_ev_asynch_enable_gpe(void *context);
332 static void ACPI_SYSTEM_XFACE acpi_ev_asynch_execute_gpe_method(void *context)
334 struct acpi_gpe_event_info *gpe_event_info = (void *)context;
335 acpi_status status;
336 struct acpi_gpe_event_info local_gpe_event_info;
337 struct acpi_evaluate_info *info;
339 ACPI_FUNCTION_TRACE(ev_asynch_execute_gpe_method);
341 status = acpi_ut_acquire_mutex(ACPI_MTX_EVENTS);
342 if (ACPI_FAILURE(status)) {
343 return_VOID;
346 /* Must revalidate the gpe_number/gpe_block */
348 if (!acpi_ev_valid_gpe_event(gpe_event_info)) {
349 status = acpi_ut_release_mutex(ACPI_MTX_EVENTS);
350 return_VOID;
354 * Take a snapshot of the GPE info for this level - we copy the info to
355 * prevent a race condition with remove_handler/remove_block.
357 ACPI_MEMCPY(&local_gpe_event_info, gpe_event_info,
358 sizeof(struct acpi_gpe_event_info));
360 status = acpi_ut_release_mutex(ACPI_MTX_EVENTS);
361 if (ACPI_FAILURE(status)) {
362 return_VOID;
366 * Must check for control method type dispatch one more time to avoid a
367 * race with ev_gpe_install_handler
369 if ((local_gpe_event_info.flags & ACPI_GPE_DISPATCH_MASK) ==
370 ACPI_GPE_DISPATCH_METHOD) {
372 /* Allocate the evaluation information block */
374 info = ACPI_ALLOCATE_ZEROED(sizeof(struct acpi_evaluate_info));
375 if (!info) {
376 status = AE_NO_MEMORY;
377 } else {
379 * Invoke the GPE Method (_Lxx, _Exx) i.e., evaluate the _Lxx/_Exx
380 * control method that corresponds to this GPE
382 info->prefix_node =
383 local_gpe_event_info.dispatch.method_node;
384 info->flags = ACPI_IGNORE_RETURN_VALUE;
386 status = acpi_ns_evaluate(info);
387 ACPI_FREE(info);
390 if (ACPI_FAILURE(status)) {
391 ACPI_EXCEPTION((AE_INFO, status,
392 "while evaluating GPE method [%4.4s]",
393 acpi_ut_get_node_name
394 (local_gpe_event_info.dispatch.
395 method_node)));
398 /* Defer enabling of GPE until all notify handlers are done */
399 acpi_os_execute(OSL_NOTIFY_HANDLER, acpi_ev_asynch_enable_gpe,
400 gpe_event_info);
401 return_VOID;
404 static void acpi_ev_asynch_enable_gpe(void *context)
406 struct acpi_gpe_event_info *gpe_event_info = context;
407 acpi_status status;
408 if ((gpe_event_info->flags & ACPI_GPE_XRUPT_TYPE_MASK) ==
409 ACPI_GPE_LEVEL_TRIGGERED) {
411 * GPE is level-triggered, we clear the GPE status bit after handling
412 * the event.
414 status = acpi_hw_clear_gpe(gpe_event_info);
415 if (ACPI_FAILURE(status)) {
416 return_VOID;
420 /* Enable this GPE */
421 (void)acpi_hw_write_gpe_enable_reg(gpe_event_info);
422 return_VOID;
425 /*******************************************************************************
427 * FUNCTION: acpi_ev_gpe_dispatch
429 * PARAMETERS: gpe_event_info - Info for this GPE
430 * gpe_number - Number relative to the parent GPE block
432 * RETURN: INTERRUPT_HANDLED or INTERRUPT_NOT_HANDLED
434 * DESCRIPTION: Dispatch a General Purpose Event to either a function (e.g. EC)
435 * or method (e.g. _Lxx/_Exx) handler.
437 * This function executes at interrupt level.
439 ******************************************************************************/
442 acpi_ev_gpe_dispatch(struct acpi_gpe_event_info *gpe_event_info, u32 gpe_number)
444 acpi_status status;
446 ACPI_FUNCTION_TRACE(ev_gpe_dispatch);
448 acpi_os_gpe_count(gpe_number);
451 * If edge-triggered, clear the GPE status bit now. Note that
452 * level-triggered events are cleared after the GPE is serviced.
454 if ((gpe_event_info->flags & ACPI_GPE_XRUPT_TYPE_MASK) ==
455 ACPI_GPE_EDGE_TRIGGERED) {
456 status = acpi_hw_clear_gpe(gpe_event_info);
457 if (ACPI_FAILURE(status)) {
458 ACPI_EXCEPTION((AE_INFO, status,
459 "Unable to clear GPE[0x%2X]",
460 gpe_number));
461 return_UINT32(ACPI_INTERRUPT_NOT_HANDLED);
466 * Dispatch the GPE to either an installed handler, or the control method
467 * associated with this GPE (_Lxx or _Exx). If a handler exists, we invoke
468 * it and do not attempt to run the method. If there is neither a handler
469 * nor a method, we disable this GPE to prevent further such pointless
470 * events from firing.
472 switch (gpe_event_info->flags & ACPI_GPE_DISPATCH_MASK) {
473 case ACPI_GPE_DISPATCH_HANDLER:
476 * Invoke the installed handler (at interrupt level)
477 * Ignore return status for now.
478 * TBD: leave GPE disabled on error?
480 (void)gpe_event_info->dispatch.handler->address(gpe_event_info->
481 dispatch.
482 handler->
483 context);
485 /* It is now safe to clear level-triggered events. */
487 if ((gpe_event_info->flags & ACPI_GPE_XRUPT_TYPE_MASK) ==
488 ACPI_GPE_LEVEL_TRIGGERED) {
489 status = acpi_hw_clear_gpe(gpe_event_info);
490 if (ACPI_FAILURE(status)) {
491 ACPI_EXCEPTION((AE_INFO, status,
492 "Unable to clear GPE[0x%2X]",
493 gpe_number));
494 return_UINT32(ACPI_INTERRUPT_NOT_HANDLED);
497 break;
499 case ACPI_GPE_DISPATCH_METHOD:
502 * Disable the GPE, so it doesn't keep firing before the method has a
503 * chance to run (it runs asynchronously with interrupts enabled).
505 status = acpi_hw_low_set_gpe(gpe_event_info, ACPI_GPE_DISABLE);
506 if (ACPI_FAILURE(status)) {
507 ACPI_EXCEPTION((AE_INFO, status,
508 "Unable to disable GPE[0x%2X]",
509 gpe_number));
510 return_UINT32(ACPI_INTERRUPT_NOT_HANDLED);
514 * Execute the method associated with the GPE
515 * NOTE: Level-triggered GPEs are cleared after the method completes.
517 status = acpi_os_execute(OSL_GPE_HANDLER,
518 acpi_ev_asynch_execute_gpe_method,
519 gpe_event_info);
520 if (ACPI_FAILURE(status)) {
521 ACPI_EXCEPTION((AE_INFO, status,
522 "Unable to queue handler for GPE[0x%2X] - event disabled",
523 gpe_number));
525 break;
527 default:
530 * No handler or method to run!
531 * 03/2010: This case should no longer be possible. We will not allow
532 * a GPE to be enabled if it has no handler or method.
534 ACPI_ERROR((AE_INFO,
535 "No handler or method for GPE[0x%2X], disabling event",
536 gpe_number));
539 * Disable the GPE. The GPE will remain disabled a handler
540 * is installed or ACPICA is restarted.
542 status = acpi_hw_low_set_gpe(gpe_event_info, ACPI_GPE_DISABLE);
543 if (ACPI_FAILURE(status)) {
544 ACPI_EXCEPTION((AE_INFO, status,
545 "Unable to disable GPE[0x%2X]",
546 gpe_number));
547 return_UINT32(ACPI_INTERRUPT_NOT_HANDLED);
549 break;
552 return_UINT32(ACPI_INTERRUPT_HANDLED);