blob: a54885993ed3258b5bd8584dfda4158198fccbda [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/******************************************************************************
2 *
3 * Module Name: evgpe - General Purpose Event handling and dispatch
4 *
5 *****************************************************************************/
6
7/*
Len Brown75a44ce2008-04-23 23:00:13 -04008 * Copyright (C) 2000 - 2008, Intel Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * All rights reserved.
10 *
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.
25 *
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.
29 *
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.
42 */
43
44#include <acpi/acpi.h>
45#include <acpi/acevents.h>
46#include <acpi/acnamesp.h>
47
48#define _COMPONENT ACPI_EVENTS
Len Brown4be44fc2005-08-05 00:44:28 -040049ACPI_MODULE_NAME("evgpe")
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Robert Moore44f6c012005-04-18 22:49:35 -040051/* Local prototypes */
Len Brown4be44fc2005-08-05 00:44:28 -040052static void ACPI_SYSTEM_XFACE acpi_ev_asynch_execute_gpe_method(void *context);
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
54/*******************************************************************************
55 *
56 * FUNCTION: acpi_ev_set_gpe_type
57 *
58 * PARAMETERS: gpe_event_info - GPE to set
59 * Type - New type
60 *
61 * RETURN: Status
62 *
63 * DESCRIPTION: Sets the new type for the GPE (wake, run, or wake/run)
64 *
65 ******************************************************************************/
66
67acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -040068acpi_ev_set_gpe_type(struct acpi_gpe_event_info *gpe_event_info, u8 type)
Linus Torvalds1da177e2005-04-16 15:20:36 -070069{
Len Brown4be44fc2005-08-05 00:44:28 -040070 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Bob Mooreb229cf92006-04-21 17:15:00 -040072 ACPI_FUNCTION_TRACE(ev_set_gpe_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
74 /* Validate type and update register enable masks */
75
76 switch (type) {
77 case ACPI_GPE_TYPE_WAKE:
78 case ACPI_GPE_TYPE_RUNTIME:
79 case ACPI_GPE_TYPE_WAKE_RUN:
80 break;
81
82 default:
Len Brown4be44fc2005-08-05 00:44:28 -040083 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 }
85
86 /* Disable the GPE if currently enabled */
87
Len Brown4be44fc2005-08-05 00:44:28 -040088 status = acpi_ev_disable_gpe(gpe_event_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
90 /* Type was validated above */
91
Len Brown4be44fc2005-08-05 00:44:28 -040092 gpe_event_info->flags &= ~ACPI_GPE_TYPE_MASK; /* Clear type bits */
93 gpe_event_info->flags |= type; /* Insert type */
94 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095}
96
Linus Torvalds1da177e2005-04-16 15:20:36 -070097/*******************************************************************************
98 *
99 * FUNCTION: acpi_ev_update_gpe_enable_masks
100 *
101 * PARAMETERS: gpe_event_info - GPE to update
102 * Type - What to do: ACPI_GPE_DISABLE or
103 * ACPI_GPE_ENABLE
104 *
105 * RETURN: Status
106 *
107 * DESCRIPTION: Updates GPE register enable masks based on the GPE type
108 *
109 ******************************************************************************/
110
111acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400112acpi_ev_update_gpe_enable_masks(struct acpi_gpe_event_info *gpe_event_info,
113 u8 type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114{
Len Brown4be44fc2005-08-05 00:44:28 -0400115 struct acpi_gpe_register_info *gpe_register_info;
116 u8 register_bit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Bob Mooreb229cf92006-04-21 17:15:00 -0400118 ACPI_FUNCTION_TRACE(ev_update_gpe_enable_masks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
120 gpe_register_info = gpe_event_info->register_info;
121 if (!gpe_register_info) {
Len Brown4be44fc2005-08-05 00:44:28 -0400122 return_ACPI_STATUS(AE_NOT_EXIST);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 }
Alexey Starikovskiy69874162007-02-02 19:48:19 +0300124 register_bit = (u8)
125 (1 <<
126 (gpe_event_info->gpe_number - gpe_register_info->base_gpe_number));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
Bob Moore9f15fc62008-11-12 16:01:56 +0800128 /* 1) Disable case. Simply clear all enable bits */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
130 if (type == ACPI_GPE_DISABLE) {
Len Brown4be44fc2005-08-05 00:44:28 -0400131 ACPI_CLEAR_BIT(gpe_register_info->enable_for_wake,
132 register_bit);
133 ACPI_CLEAR_BIT(gpe_register_info->enable_for_run, register_bit);
134 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 }
136
Bob Moore9f15fc62008-11-12 16:01:56 +0800137 /* 2) Enable case. Set/Clear the appropriate enable bits */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
139 switch (gpe_event_info->flags & ACPI_GPE_TYPE_MASK) {
140 case ACPI_GPE_TYPE_WAKE:
Len Brown4be44fc2005-08-05 00:44:28 -0400141 ACPI_SET_BIT(gpe_register_info->enable_for_wake, register_bit);
142 ACPI_CLEAR_BIT(gpe_register_info->enable_for_run, register_bit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 break;
144
145 case ACPI_GPE_TYPE_RUNTIME:
Len Brown4be44fc2005-08-05 00:44:28 -0400146 ACPI_CLEAR_BIT(gpe_register_info->enable_for_wake,
147 register_bit);
148 ACPI_SET_BIT(gpe_register_info->enable_for_run, register_bit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 break;
150
151 case ACPI_GPE_TYPE_WAKE_RUN:
Len Brown4be44fc2005-08-05 00:44:28 -0400152 ACPI_SET_BIT(gpe_register_info->enable_for_wake, register_bit);
153 ACPI_SET_BIT(gpe_register_info->enable_for_run, register_bit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 break;
155
156 default:
Len Brown4be44fc2005-08-05 00:44:28 -0400157 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 }
159
Len Brown4be44fc2005-08-05 00:44:28 -0400160 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161}
162
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163/*******************************************************************************
164 *
165 * FUNCTION: acpi_ev_enable_gpe
166 *
167 * PARAMETERS: gpe_event_info - GPE to enable
168 * write_to_hardware - Enable now, or just mark data structs
169 * (WAKE GPEs should be deferred)
170 *
171 * RETURN: Status
172 *
173 * DESCRIPTION: Enable a GPE based on the GPE type
174 *
175 ******************************************************************************/
176
177acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400178acpi_ev_enable_gpe(struct acpi_gpe_event_info *gpe_event_info,
179 u8 write_to_hardware)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180{
Len Brown4be44fc2005-08-05 00:44:28 -0400181 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
Bob Mooreb229cf92006-04-21 17:15:00 -0400183 ACPI_FUNCTION_TRACE(ev_enable_gpe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
185 /* Make sure HW enable masks are updated */
186
Len Brown4be44fc2005-08-05 00:44:28 -0400187 status =
188 acpi_ev_update_gpe_enable_masks(gpe_event_info, ACPI_GPE_ENABLE);
189 if (ACPI_FAILURE(status)) {
190 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 }
192
193 /* Mark wake-enabled or HW enable, or both */
194
195 switch (gpe_event_info->flags & ACPI_GPE_TYPE_MASK) {
196 case ACPI_GPE_TYPE_WAKE:
197
Len Brown4be44fc2005-08-05 00:44:28 -0400198 ACPI_SET_BIT(gpe_event_info->flags, ACPI_GPE_WAKE_ENABLED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 break;
200
201 case ACPI_GPE_TYPE_WAKE_RUN:
202
Len Brown4be44fc2005-08-05 00:44:28 -0400203 ACPI_SET_BIT(gpe_event_info->flags, ACPI_GPE_WAKE_ENABLED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
205 /*lint -fallthrough */
206
207 case ACPI_GPE_TYPE_RUNTIME:
208
Len Brown4be44fc2005-08-05 00:44:28 -0400209 ACPI_SET_BIT(gpe_event_info->flags, ACPI_GPE_RUN_ENABLED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
211 if (write_to_hardware) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400212
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 /* Clear the GPE (of stale events), then enable it */
214
Len Brown4be44fc2005-08-05 00:44:28 -0400215 status = acpi_hw_clear_gpe(gpe_event_info);
216 if (ACPI_FAILURE(status)) {
217 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 }
219
220 /* Enable the requested runtime GPE */
221
Len Brown4be44fc2005-08-05 00:44:28 -0400222 status = acpi_hw_write_gpe_enable_reg(gpe_event_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 }
224 break;
225
226 default:
Len Brown4be44fc2005-08-05 00:44:28 -0400227 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 }
229
Len Brown4be44fc2005-08-05 00:44:28 -0400230 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231}
232
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233/*******************************************************************************
234 *
235 * FUNCTION: acpi_ev_disable_gpe
236 *
237 * PARAMETERS: gpe_event_info - GPE to disable
238 *
239 * RETURN: Status
240 *
241 * DESCRIPTION: Disable a GPE based on the GPE type
242 *
243 ******************************************************************************/
244
Len Brown4be44fc2005-08-05 00:44:28 -0400245acpi_status acpi_ev_disable_gpe(struct acpi_gpe_event_info *gpe_event_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246{
Len Brown4be44fc2005-08-05 00:44:28 -0400247 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
Bob Mooreb229cf92006-04-21 17:15:00 -0400249 ACPI_FUNCTION_TRACE(ev_disable_gpe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 /* Make sure HW enable masks are updated */
252
Len Brown4be44fc2005-08-05 00:44:28 -0400253 status =
254 acpi_ev_update_gpe_enable_masks(gpe_event_info, ACPI_GPE_DISABLE);
255 if (ACPI_FAILURE(status)) {
256 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 }
258
Bob Mooree38e8a02008-06-13 08:28:55 +0800259 /* Clear the appropriate enabled flags for this GPE */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
261 switch (gpe_event_info->flags & ACPI_GPE_TYPE_MASK) {
262 case ACPI_GPE_TYPE_WAKE:
Len Brown4be44fc2005-08-05 00:44:28 -0400263 ACPI_CLEAR_BIT(gpe_event_info->flags, ACPI_GPE_WAKE_ENABLED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 break;
265
266 case ACPI_GPE_TYPE_WAKE_RUN:
Len Brown4be44fc2005-08-05 00:44:28 -0400267 ACPI_CLEAR_BIT(gpe_event_info->flags, ACPI_GPE_WAKE_ENABLED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
Zhang Ruia7f9b1f2007-11-20 13:38:59 -0500269 /* fallthrough */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
271 case ACPI_GPE_TYPE_RUNTIME:
272
273 /* Disable the requested runtime GPE */
274
Len Brown4be44fc2005-08-05 00:44:28 -0400275 ACPI_CLEAR_BIT(gpe_event_info->flags, ACPI_GPE_RUN_ENABLED);
Bob Mooree38e8a02008-06-13 08:28:55 +0800276 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
278 default:
Bob Mooree38e8a02008-06-13 08:28:55 +0800279 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 }
281
Bob Mooree38e8a02008-06-13 08:28:55 +0800282 /*
283 * Even if we don't know the GPE type, make sure that we always
284 * disable it. low_disable_gpe will just clear the enable bit for this
285 * GPE and write it. It will not write out the current GPE enable mask,
286 * since this may inadvertently enable GPEs too early, if a rogue GPE has
287 * come in during ACPICA initialization - possibly as a result of AML or
288 * other code that has enabled the GPE.
289 */
290 status = acpi_hw_low_disable_gpe(gpe_event_info);
291 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292}
293
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294/*******************************************************************************
295 *
296 * FUNCTION: acpi_ev_get_gpe_event_info
297 *
Bob Moore9f15fc62008-11-12 16:01:56 +0800298 * PARAMETERS: gpe_device - Device node. NULL for GPE0/GPE1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 * gpe_number - Raw GPE number
300 *
301 * RETURN: A GPE event_info struct. NULL if not a valid GPE
302 *
303 * DESCRIPTION: Returns the event_info struct associated with this GPE.
304 * Validates the gpe_block and the gpe_number
305 *
306 * Should be called only when the GPE lists are semaphore locked
307 * and not subject to change.
308 *
309 ******************************************************************************/
310
Len Brown4be44fc2005-08-05 00:44:28 -0400311struct acpi_gpe_event_info *acpi_ev_get_gpe_event_info(acpi_handle gpe_device,
312 u32 gpe_number)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313{
Len Brown4be44fc2005-08-05 00:44:28 -0400314 union acpi_operand_object *obj_desc;
315 struct acpi_gpe_block_info *gpe_block;
Bob Moore67a119f2008-06-10 13:42:13 +0800316 u32 i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
Len Brown4be44fc2005-08-05 00:44:28 -0400318 ACPI_FUNCTION_ENTRY();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
320 /* A NULL gpe_block means use the FADT-defined GPE block(s) */
321
322 if (!gpe_device) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400323
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 /* Examine GPE Block 0 and 1 (These blocks are permanent) */
325
326 for (i = 0; i < ACPI_MAX_GPE_BLOCKS; i++) {
327 gpe_block = acpi_gbl_gpe_fadt_blocks[i];
328 if (gpe_block) {
Len Brown4be44fc2005-08-05 00:44:28 -0400329 if ((gpe_number >= gpe_block->block_base_number)
330 && (gpe_number <
331 gpe_block->block_base_number +
332 (gpe_block->register_count * 8))) {
333 return (&gpe_block->
334 event_info[gpe_number -
335 gpe_block->
336 block_base_number]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 }
338 }
339 }
340
341 /* The gpe_number was not in the range of either FADT GPE block */
342
343 return (NULL);
344 }
345
346 /* A Non-NULL gpe_device means this is a GPE Block Device */
347
Len Brownfd350942007-05-09 23:34:35 -0400348 obj_desc = acpi_ns_get_attached_object((struct acpi_namespace_node *)
349 gpe_device);
Len Brown4be44fc2005-08-05 00:44:28 -0400350 if (!obj_desc || !obj_desc->device.gpe_block) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 return (NULL);
352 }
353
354 gpe_block = obj_desc->device.gpe_block;
355
356 if ((gpe_number >= gpe_block->block_base_number) &&
Len Brown4be44fc2005-08-05 00:44:28 -0400357 (gpe_number <
358 gpe_block->block_base_number + (gpe_block->register_count * 8))) {
359 return (&gpe_block->
360 event_info[gpe_number - gpe_block->block_base_number]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 }
362
363 return (NULL);
364}
365
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366/*******************************************************************************
367 *
368 * FUNCTION: acpi_ev_gpe_detect
369 *
370 * PARAMETERS: gpe_xrupt_list - Interrupt block for this interrupt.
371 * Can have multiple GPE blocks attached.
372 *
373 * RETURN: INTERRUPT_HANDLED or INTERRUPT_NOT_HANDLED
374 *
Bob Moore9f15fc62008-11-12 16:01:56 +0800375 * DESCRIPTION: Detect if any GP events have occurred. This function is
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 * executed at interrupt level.
377 *
378 ******************************************************************************/
379
Len Brown4be44fc2005-08-05 00:44:28 -0400380u32 acpi_ev_gpe_detect(struct acpi_gpe_xrupt_info * gpe_xrupt_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381{
Len Brown4be44fc2005-08-05 00:44:28 -0400382 acpi_status status;
383 struct acpi_gpe_block_info *gpe_block;
Bob Moore08978312005-10-21 00:00:00 -0400384 struct acpi_gpe_register_info *gpe_register_info;
385 u32 int_status = ACPI_INTERRUPT_NOT_HANDLED;
386 u8 enabled_status_byte;
387 u32 status_reg;
388 u32 enable_reg;
Bob Mooreb8e4d892006-01-27 16:43:00 -0500389 acpi_cpu_flags flags;
Bob Moore67a119f2008-06-10 13:42:13 +0800390 u32 i;
391 u32 j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
Bob Mooreb229cf92006-04-21 17:15:00 -0400393 ACPI_FUNCTION_NAME(ev_gpe_detect);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
395 /* Check for the case where there are no GPEs */
396
397 if (!gpe_xrupt_list) {
398 return (int_status);
399 }
400
Bob Moore967440e32006-06-23 17:04:00 -0400401 /*
402 * We need to obtain the GPE lock for both the data structs and registers
Bob Moore9f15fc62008-11-12 16:01:56 +0800403 * Note: Not necessary to obtain the hardware lock, since the GPE
404 * registers are owned by the gpe_lock.
Bob Moore967440e32006-06-23 17:04:00 -0400405 */
Len Brown4be44fc2005-08-05 00:44:28 -0400406 flags = acpi_os_acquire_lock(acpi_gbl_gpe_lock);
Bob Moore4c90ece2006-06-08 16:29:00 -0400407
408 /* Examine all GPE blocks attached to this interrupt level */
409
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 gpe_block = gpe_xrupt_list->gpe_block_list_head;
411 while (gpe_block) {
412 /*
Bob Moore9f15fc62008-11-12 16:01:56 +0800413 * Read all of the 8-bit GPE status and enable registers in this GPE
414 * block, saving all of them. Find all currently active GP events.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 */
416 for (i = 0; i < gpe_block->register_count; i++) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400417
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 /* Get the next status/enable pair */
419
420 gpe_register_info = &gpe_block->register_info[i];
421
422 /* Read the Status Register */
423
Len Brown4be44fc2005-08-05 00:44:28 -0400424 status =
Bob Mooreecfbbc72008-12-31 02:55:32 +0800425 acpi_read(&status_reg,
426 &gpe_register_info->status_address);
Len Brown4be44fc2005-08-05 00:44:28 -0400427 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 goto unlock_and_exit;
429 }
430
431 /* Read the Enable Register */
432
Len Brown4be44fc2005-08-05 00:44:28 -0400433 status =
Bob Mooreecfbbc72008-12-31 02:55:32 +0800434 acpi_read(&enable_reg,
435 &gpe_register_info->enable_address);
Len Brown4be44fc2005-08-05 00:44:28 -0400436 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 goto unlock_and_exit;
438 }
439
Len Brown4be44fc2005-08-05 00:44:28 -0400440 ACPI_DEBUG_PRINT((ACPI_DB_INTERRUPTS,
441 "Read GPE Register at GPE%X: Status=%02X, Enable=%02X\n",
442 gpe_register_info->base_gpe_number,
443 status_reg, enable_reg));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
Robert Moore44f6c012005-04-18 22:49:35 -0400445 /* Check if there is anything active at all in this register */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
447 enabled_status_byte = (u8) (status_reg & enable_reg);
448 if (!enabled_status_byte) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400449
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 /* No active GPEs in this register, move on */
451
452 continue;
453 }
454
455 /* Now look at the individual GPEs in this byte register */
456
457 for (j = 0; j < ACPI_GPE_REGISTER_WIDTH; j++) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400458
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 /* Examine one GPE bit */
460
Alexey Starikovskiy69874162007-02-02 19:48:19 +0300461 if (enabled_status_byte & (1 << j)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 /*
463 * Found an active GPE. Dispatch the event to a handler
464 * or method.
465 */
Len Brown4be44fc2005-08-05 00:44:28 -0400466 int_status |=
467 acpi_ev_gpe_dispatch(&gpe_block->
Bob Moore67a119f2008-06-10 13:42:13 +0800468 event_info[((acpi_size) i * ACPI_GPE_REGISTER_WIDTH) + j], j + gpe_register_info->base_gpe_number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 }
470 }
471 }
472
473 gpe_block = gpe_block->next;
474 }
475
Len Brown4be44fc2005-08-05 00:44:28 -0400476 unlock_and_exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
Len Brown4be44fc2005-08-05 00:44:28 -0400478 acpi_os_release_lock(acpi_gbl_gpe_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 return (int_status);
480}
481
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482/*******************************************************************************
483 *
484 * FUNCTION: acpi_ev_asynch_execute_gpe_method
485 *
486 * PARAMETERS: Context (gpe_event_info) - Info for this GPE
487 *
488 * RETURN: None
489 *
Bob Moore41195322006-05-26 16:36:00 -0400490 * DESCRIPTION: Perform the actual execution of a GPE control method. This
491 * function is called from an invocation of acpi_os_execute and
492 * therefore does NOT execute at interrupt level - so that
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 * the control method itself is not executed in the context of
494 * an interrupt handler.
495 *
496 ******************************************************************************/
Alexey Starikovskiy17bc54e2007-11-13 13:05:45 +0300497static void acpi_ev_asynch_enable_gpe(void *context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498
Len Brown4be44fc2005-08-05 00:44:28 -0400499static void ACPI_SYSTEM_XFACE acpi_ev_asynch_execute_gpe_method(void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500{
Len Brown4be44fc2005-08-05 00:44:28 -0400501 struct acpi_gpe_event_info *gpe_event_info = (void *)context;
Len Brown4be44fc2005-08-05 00:44:28 -0400502 acpi_status status;
503 struct acpi_gpe_event_info local_gpe_event_info;
Bob Moore41195322006-05-26 16:36:00 -0400504 struct acpi_evaluate_info *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
Bob Mooreb229cf92006-04-21 17:15:00 -0400506 ACPI_FUNCTION_TRACE(ev_asynch_execute_gpe_method);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
Len Brown4be44fc2005-08-05 00:44:28 -0400508 status = acpi_ut_acquire_mutex(ACPI_MTX_EVENTS);
509 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 return_VOID;
511 }
512
513 /* Must revalidate the gpe_number/gpe_block */
514
Len Brown4be44fc2005-08-05 00:44:28 -0400515 if (!acpi_ev_valid_gpe_event(gpe_event_info)) {
516 status = acpi_ut_release_mutex(ACPI_MTX_EVENTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 return_VOID;
518 }
519
520 /* Set the GPE flags for return to enabled state */
521
Len Brown4be44fc2005-08-05 00:44:28 -0400522 (void)acpi_ev_enable_gpe(gpe_event_info, FALSE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
524 /*
Bob Moore9f15fc62008-11-12 16:01:56 +0800525 * Take a snapshot of the GPE info for this level - we copy the info to
526 * prevent a race condition with remove_handler/remove_block.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 */
Len Brown4be44fc2005-08-05 00:44:28 -0400528 ACPI_MEMCPY(&local_gpe_event_info, gpe_event_info,
529 sizeof(struct acpi_gpe_event_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530
Len Brown4be44fc2005-08-05 00:44:28 -0400531 status = acpi_ut_release_mutex(ACPI_MTX_EVENTS);
532 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 return_VOID;
534 }
535
536 /*
Bob Moore9f15fc62008-11-12 16:01:56 +0800537 * Must check for control method type dispatch one more time to avoid a
538 * race with ev_gpe_install_handler
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 */
Robert Moore44f6c012005-04-18 22:49:35 -0400540 if ((local_gpe_event_info.flags & ACPI_GPE_DISPATCH_MASK) ==
Len Brown4be44fc2005-08-05 00:44:28 -0400541 ACPI_GPE_DISPATCH_METHOD) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
Bob Moore41195322006-05-26 16:36:00 -0400543 /* Allocate the evaluation information block */
544
545 info = ACPI_ALLOCATE_ZEROED(sizeof(struct acpi_evaluate_info));
546 if (!info) {
547 status = AE_NO_MEMORY;
548 } else {
549 /*
550 * Invoke the GPE Method (_Lxx, _Exx) i.e., evaluate the _Lxx/_Exx
551 * control method that corresponds to this GPE
552 */
553 info->prefix_node =
554 local_gpe_event_info.dispatch.method_node;
Bob Moore41195322006-05-26 16:36:00 -0400555 info->flags = ACPI_IGNORE_RETURN_VALUE;
556
557 status = acpi_ns_evaluate(info);
558 ACPI_FREE(info);
559 }
560
Len Brown4be44fc2005-08-05 00:44:28 -0400561 if (ACPI_FAILURE(status)) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500562 ACPI_EXCEPTION((AE_INFO, status,
Bob Moore2e420052007-02-02 19:48:18 +0300563 "while evaluating GPE method [%4.4s]",
Bob Mooreb8e4d892006-01-27 16:43:00 -0500564 acpi_ut_get_node_name
565 (local_gpe_event_info.dispatch.
Bob Moore4c90ece2006-06-08 16:29:00 -0400566 method_node)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 }
568 }
Alexey Starikovskiy17bc54e2007-11-13 13:05:45 +0300569 /* Defer enabling of GPE until all notify handlers are done */
570 acpi_os_execute(OSL_NOTIFY_HANDLER, acpi_ev_asynch_enable_gpe,
571 gpe_event_info);
572 return_VOID;
573}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574
Alexey Starikovskiy17bc54e2007-11-13 13:05:45 +0300575static void acpi_ev_asynch_enable_gpe(void *context)
576{
577 struct acpi_gpe_event_info *gpe_event_info = context;
578 acpi_status status;
579 if ((gpe_event_info->flags & ACPI_GPE_XRUPT_TYPE_MASK) ==
Len Brown4be44fc2005-08-05 00:44:28 -0400580 ACPI_GPE_LEVEL_TRIGGERED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 /*
Bob Moore9f15fc62008-11-12 16:01:56 +0800582 * GPE is level-triggered, we clear the GPE status bit after handling
583 * the event.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 */
Alexey Starikovskiy17bc54e2007-11-13 13:05:45 +0300585 status = acpi_hw_clear_gpe(gpe_event_info);
Len Brown4be44fc2005-08-05 00:44:28 -0400586 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 return_VOID;
588 }
589 }
590
591 /* Enable this GPE */
Alexey Starikovskiy17bc54e2007-11-13 13:05:45 +0300592 (void)acpi_hw_write_gpe_enable_reg(gpe_event_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 return_VOID;
594}
595
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596/*******************************************************************************
597 *
598 * FUNCTION: acpi_ev_gpe_dispatch
599 *
Robert Moore44f6c012005-04-18 22:49:35 -0400600 * PARAMETERS: gpe_event_info - Info for this GPE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 * gpe_number - Number relative to the parent GPE block
602 *
603 * RETURN: INTERRUPT_HANDLED or INTERRUPT_NOT_HANDLED
604 *
605 * DESCRIPTION: Dispatch a General Purpose Event to either a function (e.g. EC)
606 * or method (e.g. _Lxx/_Exx) handler.
607 *
608 * This function executes at interrupt level.
609 *
610 ******************************************************************************/
611
612u32
Len Brown4be44fc2005-08-05 00:44:28 -0400613acpi_ev_gpe_dispatch(struct acpi_gpe_event_info *gpe_event_info, u32 gpe_number)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614{
Len Brown4be44fc2005-08-05 00:44:28 -0400615 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
Bob Mooreb229cf92006-04-21 17:15:00 -0400617 ACPI_FUNCTION_TRACE(ev_gpe_dispatch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
Len Brown5229e872008-02-06 01:26:55 -0500619 acpi_os_gpe_count(gpe_number);
Bob Moorefdffb722007-02-02 19:48:19 +0300620
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 /*
Bob Moore9f15fc62008-11-12 16:01:56 +0800622 * If edge-triggered, clear the GPE status bit now. Note that
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 * level-triggered events are cleared after the GPE is serviced.
624 */
Robert Moore44f6c012005-04-18 22:49:35 -0400625 if ((gpe_event_info->flags & ACPI_GPE_XRUPT_TYPE_MASK) ==
Len Brown4be44fc2005-08-05 00:44:28 -0400626 ACPI_GPE_EDGE_TRIGGERED) {
627 status = acpi_hw_clear_gpe(gpe_event_info);
628 if (ACPI_FAILURE(status)) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500629 ACPI_EXCEPTION((AE_INFO, status,
630 "Unable to clear GPE[%2X]",
631 gpe_number));
Bob Moore50eca3e2005-09-30 19:03:00 -0400632 return_UINT32(ACPI_INTERRUPT_NOT_HANDLED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 }
634 }
635
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 /*
Bob Moorec5a71562007-02-02 19:48:19 +0300637 * Dispatch the GPE to either an installed handler, or the control method
638 * associated with this GPE (_Lxx or _Exx). If a handler exists, we invoke
639 * it and do not attempt to run the method. If there is neither a handler
640 * nor a method, we disable this GPE to prevent further such pointless
641 * events from firing.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 */
643 switch (gpe_event_info->flags & ACPI_GPE_DISPATCH_MASK) {
644 case ACPI_GPE_DISPATCH_HANDLER:
645
646 /*
647 * Invoke the installed handler (at interrupt level)
Bob Moore9f15fc62008-11-12 16:01:56 +0800648 * Ignore return status for now.
649 * TBD: leave GPE disabled on error?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 */
Len Brown4be44fc2005-08-05 00:44:28 -0400651 (void)gpe_event_info->dispatch.handler->address(gpe_event_info->
652 dispatch.
653 handler->
654 context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
656 /* It is now safe to clear level-triggered events. */
657
Robert Moore44f6c012005-04-18 22:49:35 -0400658 if ((gpe_event_info->flags & ACPI_GPE_XRUPT_TYPE_MASK) ==
Len Brown4be44fc2005-08-05 00:44:28 -0400659 ACPI_GPE_LEVEL_TRIGGERED) {
660 status = acpi_hw_clear_gpe(gpe_event_info);
661 if (ACPI_FAILURE(status)) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500662 ACPI_EXCEPTION((AE_INFO, status,
663 "Unable to clear GPE[%2X]",
664 gpe_number));
Bob Moore50eca3e2005-09-30 19:03:00 -0400665 return_UINT32(ACPI_INTERRUPT_NOT_HANDLED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 }
667 }
668 break;
669
670 case ACPI_GPE_DISPATCH_METHOD:
671
672 /*
Bob Moorec5a71562007-02-02 19:48:19 +0300673 * Disable the GPE, so it doesn't keep firing before the method has a
674 * chance to run (it runs asynchronously with interrupts enabled).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 */
Len Brown4be44fc2005-08-05 00:44:28 -0400676 status = acpi_ev_disable_gpe(gpe_event_info);
677 if (ACPI_FAILURE(status)) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500678 ACPI_EXCEPTION((AE_INFO, status,
679 "Unable to disable GPE[%2X]",
680 gpe_number));
Bob Moore50eca3e2005-09-30 19:03:00 -0400681 return_UINT32(ACPI_INTERRUPT_NOT_HANDLED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 }
683
684 /*
685 * Execute the method associated with the GPE
686 * NOTE: Level-triggered GPEs are cleared after the method completes.
687 */
Bob Moore958dd242006-05-12 17:12:00 -0400688 status = acpi_os_execute(OSL_GPE_HANDLER,
689 acpi_ev_asynch_execute_gpe_method,
690 gpe_event_info);
Len Brown4be44fc2005-08-05 00:44:28 -0400691 if (ACPI_FAILURE(status)) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500692 ACPI_EXCEPTION((AE_INFO, status,
693 "Unable to queue handler for GPE[%2X] - event disabled",
694 gpe_number));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 }
696 break;
697
698 default:
699
700 /* No handler or method to run! */
701
Bob Mooreb8e4d892006-01-27 16:43:00 -0500702 ACPI_ERROR((AE_INFO,
703 "No handler or method for GPE[%2X], disabling event",
704 gpe_number));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
706 /*
Bob Moore9f15fc62008-11-12 16:01:56 +0800707 * Disable the GPE. The GPE will remain disabled until the ACPICA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 * Core Subsystem is restarted, or a handler is installed.
709 */
Len Brown4be44fc2005-08-05 00:44:28 -0400710 status = acpi_ev_disable_gpe(gpe_event_info);
711 if (ACPI_FAILURE(status)) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500712 ACPI_EXCEPTION((AE_INFO, status,
713 "Unable to disable GPE[%2X]",
714 gpe_number));
Bob Moore50eca3e2005-09-30 19:03:00 -0400715 return_UINT32(ACPI_INTERRUPT_NOT_HANDLED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 }
717 break;
718 }
719
Bob Moore50eca3e2005-09-30 19:03:00 -0400720 return_UINT32(ACPI_INTERRUPT_HANDLED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721}