blob: f51c3b16c6080a43bcb649ae2b8d2be71bf2746e [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/*
8 * Copyright (C) 2000 - 2005, R. Byron Moore
9 * 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
Len Brown4be44fc2005-08-05 00:44:28 -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
Len Brown4be44fc2005-08-05 00:44:28 -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 }
124 register_bit = gpe_event_info->register_bit;
125
126 /* 1) Disable case. Simply clear all enable bits */
127
128 if (type == ACPI_GPE_DISABLE) {
Len Brown4be44fc2005-08-05 00:44:28 -0400129 ACPI_CLEAR_BIT(gpe_register_info->enable_for_wake,
130 register_bit);
131 ACPI_CLEAR_BIT(gpe_register_info->enable_for_run, register_bit);
132 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 }
134
135 /* 2) Enable case. Set/Clear the appropriate enable bits */
136
137 switch (gpe_event_info->flags & ACPI_GPE_TYPE_MASK) {
138 case ACPI_GPE_TYPE_WAKE:
Len Brown4be44fc2005-08-05 00:44:28 -0400139 ACPI_SET_BIT(gpe_register_info->enable_for_wake, register_bit);
140 ACPI_CLEAR_BIT(gpe_register_info->enable_for_run, register_bit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 break;
142
143 case ACPI_GPE_TYPE_RUNTIME:
Len Brown4be44fc2005-08-05 00:44:28 -0400144 ACPI_CLEAR_BIT(gpe_register_info->enable_for_wake,
145 register_bit);
146 ACPI_SET_BIT(gpe_register_info->enable_for_run, register_bit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 break;
148
149 case ACPI_GPE_TYPE_WAKE_RUN:
Len Brown4be44fc2005-08-05 00:44:28 -0400150 ACPI_SET_BIT(gpe_register_info->enable_for_wake, register_bit);
151 ACPI_SET_BIT(gpe_register_info->enable_for_run, register_bit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 break;
153
154 default:
Len Brown4be44fc2005-08-05 00:44:28 -0400155 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 }
157
Len Brown4be44fc2005-08-05 00:44:28 -0400158 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159}
160
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161/*******************************************************************************
162 *
163 * FUNCTION: acpi_ev_enable_gpe
164 *
165 * PARAMETERS: gpe_event_info - GPE to enable
166 * write_to_hardware - Enable now, or just mark data structs
167 * (WAKE GPEs should be deferred)
168 *
169 * RETURN: Status
170 *
171 * DESCRIPTION: Enable a GPE based on the GPE type
172 *
173 ******************************************************************************/
174
175acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400176acpi_ev_enable_gpe(struct acpi_gpe_event_info *gpe_event_info,
177 u8 write_to_hardware)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178{
Len Brown4be44fc2005-08-05 00:44:28 -0400179 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
Len Brown4be44fc2005-08-05 00:44:28 -0400181 ACPI_FUNCTION_TRACE("ev_enable_gpe");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
183 /* Make sure HW enable masks are updated */
184
Len Brown4be44fc2005-08-05 00:44:28 -0400185 status =
186 acpi_ev_update_gpe_enable_masks(gpe_event_info, ACPI_GPE_ENABLE);
187 if (ACPI_FAILURE(status)) {
188 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 }
190
191 /* Mark wake-enabled or HW enable, or both */
192
193 switch (gpe_event_info->flags & ACPI_GPE_TYPE_MASK) {
194 case ACPI_GPE_TYPE_WAKE:
195
Len Brown4be44fc2005-08-05 00:44:28 -0400196 ACPI_SET_BIT(gpe_event_info->flags, ACPI_GPE_WAKE_ENABLED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 break;
198
199 case ACPI_GPE_TYPE_WAKE_RUN:
200
Len Brown4be44fc2005-08-05 00:44:28 -0400201 ACPI_SET_BIT(gpe_event_info->flags, ACPI_GPE_WAKE_ENABLED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
203 /*lint -fallthrough */
204
205 case ACPI_GPE_TYPE_RUNTIME:
206
Len Brown4be44fc2005-08-05 00:44:28 -0400207 ACPI_SET_BIT(gpe_event_info->flags, ACPI_GPE_RUN_ENABLED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
209 if (write_to_hardware) {
210 /* Clear the GPE (of stale events), then enable it */
211
Len Brown4be44fc2005-08-05 00:44:28 -0400212 status = acpi_hw_clear_gpe(gpe_event_info);
213 if (ACPI_FAILURE(status)) {
214 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 }
216
217 /* Enable the requested runtime GPE */
218
Len Brown4be44fc2005-08-05 00:44:28 -0400219 status = acpi_hw_write_gpe_enable_reg(gpe_event_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 }
221 break;
222
223 default:
Len Brown4be44fc2005-08-05 00:44:28 -0400224 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 }
226
Len Brown4be44fc2005-08-05 00:44:28 -0400227 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228}
229
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230/*******************************************************************************
231 *
232 * FUNCTION: acpi_ev_disable_gpe
233 *
234 * PARAMETERS: gpe_event_info - GPE to disable
235 *
236 * RETURN: Status
237 *
238 * DESCRIPTION: Disable a GPE based on the GPE type
239 *
240 ******************************************************************************/
241
Len Brown4be44fc2005-08-05 00:44:28 -0400242acpi_status acpi_ev_disable_gpe(struct acpi_gpe_event_info *gpe_event_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243{
Len Brown4be44fc2005-08-05 00:44:28 -0400244 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
Len Brown4be44fc2005-08-05 00:44:28 -0400246 ACPI_FUNCTION_TRACE("ev_disable_gpe");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
248 if (!(gpe_event_info->flags & ACPI_GPE_ENABLE_MASK)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400249 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 }
251
252 /* Make sure HW enable masks are updated */
253
Len Brown4be44fc2005-08-05 00:44:28 -0400254 status =
255 acpi_ev_update_gpe_enable_masks(gpe_event_info, ACPI_GPE_DISABLE);
256 if (ACPI_FAILURE(status)) {
257 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 }
259
260 /* Mark wake-disabled or HW disable, or both */
261
262 switch (gpe_event_info->flags & ACPI_GPE_TYPE_MASK) {
263 case ACPI_GPE_TYPE_WAKE:
Len Brown4be44fc2005-08-05 00:44:28 -0400264 ACPI_CLEAR_BIT(gpe_event_info->flags, ACPI_GPE_WAKE_ENABLED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 break;
266
267 case ACPI_GPE_TYPE_WAKE_RUN:
Len Brown4be44fc2005-08-05 00:44:28 -0400268 ACPI_CLEAR_BIT(gpe_event_info->flags, ACPI_GPE_WAKE_ENABLED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
270 /*lint -fallthrough */
271
272 case ACPI_GPE_TYPE_RUNTIME:
273
274 /* Disable the requested runtime GPE */
275
Len Brown4be44fc2005-08-05 00:44:28 -0400276 ACPI_CLEAR_BIT(gpe_event_info->flags, ACPI_GPE_RUN_ENABLED);
277 status = acpi_hw_write_gpe_enable_reg(gpe_event_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 break;
279
280 default:
Len Brown4be44fc2005-08-05 00:44:28 -0400281 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 }
283
Len Brown4be44fc2005-08-05 00:44:28 -0400284 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285}
286
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287/*******************************************************************************
288 *
289 * FUNCTION: acpi_ev_get_gpe_event_info
290 *
291 * PARAMETERS: gpe_device - Device node. NULL for GPE0/GPE1
292 * gpe_number - Raw GPE number
293 *
294 * RETURN: A GPE event_info struct. NULL if not a valid GPE
295 *
296 * DESCRIPTION: Returns the event_info struct associated with this GPE.
297 * Validates the gpe_block and the gpe_number
298 *
299 * Should be called only when the GPE lists are semaphore locked
300 * and not subject to change.
301 *
302 ******************************************************************************/
303
Len Brown4be44fc2005-08-05 00:44:28 -0400304struct acpi_gpe_event_info *acpi_ev_get_gpe_event_info(acpi_handle gpe_device,
305 u32 gpe_number)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306{
Len Brown4be44fc2005-08-05 00:44:28 -0400307 union acpi_operand_object *obj_desc;
308 struct acpi_gpe_block_info *gpe_block;
309 acpi_native_uint i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
Len Brown4be44fc2005-08-05 00:44:28 -0400311 ACPI_FUNCTION_ENTRY();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
313 /* A NULL gpe_block means use the FADT-defined GPE block(s) */
314
315 if (!gpe_device) {
316 /* Examine GPE Block 0 and 1 (These blocks are permanent) */
317
318 for (i = 0; i < ACPI_MAX_GPE_BLOCKS; i++) {
319 gpe_block = acpi_gbl_gpe_fadt_blocks[i];
320 if (gpe_block) {
Len Brown4be44fc2005-08-05 00:44:28 -0400321 if ((gpe_number >= gpe_block->block_base_number)
322 && (gpe_number <
323 gpe_block->block_base_number +
324 (gpe_block->register_count * 8))) {
325 return (&gpe_block->
326 event_info[gpe_number -
327 gpe_block->
328 block_base_number]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 }
330 }
331 }
332
333 /* The gpe_number was not in the range of either FADT GPE block */
334
335 return (NULL);
336 }
337
338 /* A Non-NULL gpe_device means this is a GPE Block Device */
339
Len Brown4be44fc2005-08-05 00:44:28 -0400340 obj_desc =
341 acpi_ns_get_attached_object((struct acpi_namespace_node *)
342 gpe_device);
343 if (!obj_desc || !obj_desc->device.gpe_block) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 return (NULL);
345 }
346
347 gpe_block = obj_desc->device.gpe_block;
348
349 if ((gpe_number >= gpe_block->block_base_number) &&
Len Brown4be44fc2005-08-05 00:44:28 -0400350 (gpe_number <
351 gpe_block->block_base_number + (gpe_block->register_count * 8))) {
352 return (&gpe_block->
353 event_info[gpe_number - gpe_block->block_base_number]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 }
355
356 return (NULL);
357}
358
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359/*******************************************************************************
360 *
361 * FUNCTION: acpi_ev_gpe_detect
362 *
363 * PARAMETERS: gpe_xrupt_list - Interrupt block for this interrupt.
364 * Can have multiple GPE blocks attached.
365 *
366 * RETURN: INTERRUPT_HANDLED or INTERRUPT_NOT_HANDLED
367 *
368 * DESCRIPTION: Detect if any GP events have occurred. This function is
369 * executed at interrupt level.
370 *
371 ******************************************************************************/
372
Len Brown4be44fc2005-08-05 00:44:28 -0400373u32 acpi_ev_gpe_detect(struct acpi_gpe_xrupt_info * gpe_xrupt_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374{
Len Brown4be44fc2005-08-05 00:44:28 -0400375 u32 int_status = ACPI_INTERRUPT_NOT_HANDLED;
376 u8 enabled_status_byte;
377 struct acpi_gpe_register_info *gpe_register_info;
378 u32 status_reg;
379 u32 enable_reg;
380 u32 flags;
381 acpi_status status;
382 struct acpi_gpe_block_info *gpe_block;
383 acpi_native_uint i;
384 acpi_native_uint j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
Len Brown4be44fc2005-08-05 00:44:28 -0400386 ACPI_FUNCTION_NAME("ev_gpe_detect");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
388 /* Check for the case where there are no GPEs */
389
390 if (!gpe_xrupt_list) {
391 return (int_status);
392 }
393
394 /* Examine all GPE blocks attached to this interrupt level */
395
Len Brown4be44fc2005-08-05 00:44:28 -0400396 flags = acpi_os_acquire_lock(acpi_gbl_gpe_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 gpe_block = gpe_xrupt_list->gpe_block_list_head;
398 while (gpe_block) {
399 /*
400 * Read all of the 8-bit GPE status and enable registers
401 * in this GPE block, saving all of them.
402 * Find all currently active GP events.
403 */
404 for (i = 0; i < gpe_block->register_count; i++) {
405 /* Get the next status/enable pair */
406
407 gpe_register_info = &gpe_block->register_info[i];
408
409 /* Read the Status Register */
410
Len Brown4be44fc2005-08-05 00:44:28 -0400411 status =
412 acpi_hw_low_level_read(ACPI_GPE_REGISTER_WIDTH,
413 &status_reg,
414 &gpe_register_info->
415 status_address);
416 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 goto unlock_and_exit;
418 }
419
420 /* Read the Enable Register */
421
Len Brown4be44fc2005-08-05 00:44:28 -0400422 status =
423 acpi_hw_low_level_read(ACPI_GPE_REGISTER_WIDTH,
424 &enable_reg,
425 &gpe_register_info->
426 enable_address);
427 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 goto unlock_and_exit;
429 }
430
Len Brown4be44fc2005-08-05 00:44:28 -0400431 ACPI_DEBUG_PRINT((ACPI_DB_INTERRUPTS,
432 "Read GPE Register at GPE%X: Status=%02X, Enable=%02X\n",
433 gpe_register_info->base_gpe_number,
434 status_reg, enable_reg));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
Robert Moore44f6c012005-04-18 22:49:35 -0400436 /* Check if there is anything active at all in this register */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
438 enabled_status_byte = (u8) (status_reg & enable_reg);
439 if (!enabled_status_byte) {
440 /* No active GPEs in this register, move on */
441
442 continue;
443 }
444
445 /* Now look at the individual GPEs in this byte register */
446
447 for (j = 0; j < ACPI_GPE_REGISTER_WIDTH; j++) {
448 /* Examine one GPE bit */
449
Len Brown4be44fc2005-08-05 00:44:28 -0400450 if (enabled_status_byte &
451 acpi_gbl_decode_to8bit[j]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 /*
453 * Found an active GPE. Dispatch the event to a handler
454 * or method.
455 */
Len Brown4be44fc2005-08-05 00:44:28 -0400456 int_status |=
457 acpi_ev_gpe_dispatch(&gpe_block->
458 event_info[(i *
459 ACPI_GPE_REGISTER_WIDTH)
460 +
461 j],
462 (u32) j +
463 gpe_register_info->
464 base_gpe_number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 }
466 }
467 }
468
469 gpe_block = gpe_block->next;
470 }
471
Len Brown4be44fc2005-08-05 00:44:28 -0400472 unlock_and_exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
Len Brown4be44fc2005-08-05 00:44:28 -0400474 acpi_os_release_lock(acpi_gbl_gpe_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 return (int_status);
476}
477
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478/*******************************************************************************
479 *
480 * FUNCTION: acpi_ev_asynch_execute_gpe_method
481 *
482 * PARAMETERS: Context (gpe_event_info) - Info for this GPE
483 *
484 * RETURN: None
485 *
486 * DESCRIPTION: Perform the actual execution of a GPE control method. This
487 * function is called from an invocation of acpi_os_queue_for_execution
488 * (and therefore does NOT execute at interrupt level) so that
489 * the control method itself is not executed in the context of
490 * an interrupt handler.
491 *
492 ******************************************************************************/
493
Len Brown4be44fc2005-08-05 00:44:28 -0400494static void ACPI_SYSTEM_XFACE acpi_ev_asynch_execute_gpe_method(void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495{
Len Brown4be44fc2005-08-05 00:44:28 -0400496 struct acpi_gpe_event_info *gpe_event_info = (void *)context;
497 u32 gpe_number = 0;
498 acpi_status status;
499 struct acpi_gpe_event_info local_gpe_event_info;
500 struct acpi_parameter_info info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
Len Brown4be44fc2005-08-05 00:44:28 -0400502 ACPI_FUNCTION_TRACE("ev_asynch_execute_gpe_method");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
Len Brown4be44fc2005-08-05 00:44:28 -0400504 status = acpi_ut_acquire_mutex(ACPI_MTX_EVENTS);
505 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 return_VOID;
507 }
508
509 /* Must revalidate the gpe_number/gpe_block */
510
Len Brown4be44fc2005-08-05 00:44:28 -0400511 if (!acpi_ev_valid_gpe_event(gpe_event_info)) {
512 status = acpi_ut_release_mutex(ACPI_MTX_EVENTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 return_VOID;
514 }
515
516 /* Set the GPE flags for return to enabled state */
517
Len Brown4be44fc2005-08-05 00:44:28 -0400518 (void)acpi_ev_enable_gpe(gpe_event_info, FALSE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
520 /*
521 * Take a snapshot of the GPE info for this level - we copy the
522 * info to prevent a race condition with remove_handler/remove_block.
523 */
Len Brown4be44fc2005-08-05 00:44:28 -0400524 ACPI_MEMCPY(&local_gpe_event_info, gpe_event_info,
525 sizeof(struct acpi_gpe_event_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
Len Brown4be44fc2005-08-05 00:44:28 -0400527 status = acpi_ut_release_mutex(ACPI_MTX_EVENTS);
528 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 return_VOID;
530 }
531
532 /*
533 * Must check for control method type dispatch one more
534 * time to avoid race with ev_gpe_install_handler
535 */
Robert Moore44f6c012005-04-18 22:49:35 -0400536 if ((local_gpe_event_info.flags & ACPI_GPE_DISPATCH_MASK) ==
Len Brown4be44fc2005-08-05 00:44:28 -0400537 ACPI_GPE_DISPATCH_METHOD) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 /*
539 * Invoke the GPE Method (_Lxx, _Exx) i.e., evaluate the _Lxx/_Exx
540 * control method that corresponds to this GPE
541 */
542 info.node = local_gpe_event_info.dispatch.method_node;
Len Brown4be44fc2005-08-05 00:44:28 -0400543 info.parameters =
544 ACPI_CAST_PTR(union acpi_operand_object *, gpe_event_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 info.parameter_type = ACPI_PARAM_GPE;
546
Len Brown4be44fc2005-08-05 00:44:28 -0400547 status = acpi_ns_evaluate_by_handle(&info);
548 if (ACPI_FAILURE(status)) {
549 ACPI_REPORT_ERROR(("%s while evaluating method [%4.4s] for GPE[%2X]\n", acpi_format_exception(status), acpi_ut_get_node_name(local_gpe_event_info.dispatch.method_node), gpe_number));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 }
551 }
552
Robert Moore44f6c012005-04-18 22:49:35 -0400553 if ((local_gpe_event_info.flags & ACPI_GPE_XRUPT_TYPE_MASK) ==
Len Brown4be44fc2005-08-05 00:44:28 -0400554 ACPI_GPE_LEVEL_TRIGGERED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 /*
556 * GPE is level-triggered, we clear the GPE status bit after
557 * handling the event.
558 */
Len Brown4be44fc2005-08-05 00:44:28 -0400559 status = acpi_hw_clear_gpe(&local_gpe_event_info);
560 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 return_VOID;
562 }
563 }
564
565 /* Enable this GPE */
566
Len Brown4be44fc2005-08-05 00:44:28 -0400567 (void)acpi_hw_write_gpe_enable_reg(&local_gpe_event_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 return_VOID;
569}
570
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571/*******************************************************************************
572 *
573 * FUNCTION: acpi_ev_gpe_dispatch
574 *
Robert Moore44f6c012005-04-18 22:49:35 -0400575 * PARAMETERS: gpe_event_info - Info for this GPE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 * gpe_number - Number relative to the parent GPE block
577 *
578 * RETURN: INTERRUPT_HANDLED or INTERRUPT_NOT_HANDLED
579 *
580 * DESCRIPTION: Dispatch a General Purpose Event to either a function (e.g. EC)
581 * or method (e.g. _Lxx/_Exx) handler.
582 *
583 * This function executes at interrupt level.
584 *
585 ******************************************************************************/
586
587u32
Len Brown4be44fc2005-08-05 00:44:28 -0400588acpi_ev_gpe_dispatch(struct acpi_gpe_event_info *gpe_event_info, u32 gpe_number)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589{
Len Brown4be44fc2005-08-05 00:44:28 -0400590 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
Len Brown4be44fc2005-08-05 00:44:28 -0400592 ACPI_FUNCTION_TRACE("ev_gpe_dispatch");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
594 /*
595 * If edge-triggered, clear the GPE status bit now. Note that
596 * level-triggered events are cleared after the GPE is serviced.
597 */
Robert Moore44f6c012005-04-18 22:49:35 -0400598 if ((gpe_event_info->flags & ACPI_GPE_XRUPT_TYPE_MASK) ==
Len Brown4be44fc2005-08-05 00:44:28 -0400599 ACPI_GPE_EDGE_TRIGGERED) {
600 status = acpi_hw_clear_gpe(gpe_event_info);
601 if (ACPI_FAILURE(status)) {
602 ACPI_REPORT_ERROR(("acpi_ev_gpe_dispatch: %s, Unable to clear GPE[%2X]\n", acpi_format_exception(status), gpe_number));
Bob Moore50eca3e2005-09-30 19:03:00 -0400603 return_UINT32(ACPI_INTERRUPT_NOT_HANDLED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 }
605 }
606
607 /* Save current system state */
608
609 if (acpi_gbl_system_awake_and_running) {
Len Brown4be44fc2005-08-05 00:44:28 -0400610 ACPI_SET_BIT(gpe_event_info->flags, ACPI_GPE_SYSTEM_RUNNING);
611 } else {
612 ACPI_CLEAR_BIT(gpe_event_info->flags, ACPI_GPE_SYSTEM_RUNNING);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 }
614
615 /*
616 * Dispatch the GPE to either an installed handler, or the control
617 * method associated with this GPE (_Lxx or _Exx).
618 * If a handler exists, we invoke it and do not attempt to run the method.
619 * If there is neither a handler nor a method, we disable the level to
620 * prevent further events from coming in here.
621 */
622 switch (gpe_event_info->flags & ACPI_GPE_DISPATCH_MASK) {
623 case ACPI_GPE_DISPATCH_HANDLER:
624
625 /*
626 * Invoke the installed handler (at interrupt level)
627 * Ignore return status for now. TBD: leave GPE disabled on error?
628 */
Len Brown4be44fc2005-08-05 00:44:28 -0400629 (void)gpe_event_info->dispatch.handler->address(gpe_event_info->
630 dispatch.
631 handler->
632 context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
634 /* It is now safe to clear level-triggered events. */
635
Robert Moore44f6c012005-04-18 22:49:35 -0400636 if ((gpe_event_info->flags & ACPI_GPE_XRUPT_TYPE_MASK) ==
Len Brown4be44fc2005-08-05 00:44:28 -0400637 ACPI_GPE_LEVEL_TRIGGERED) {
638 status = acpi_hw_clear_gpe(gpe_event_info);
639 if (ACPI_FAILURE(status)) {
640 ACPI_REPORT_ERROR(("acpi_ev_gpe_dispatch: %s, Unable to clear GPE[%2X]\n", acpi_format_exception(status), gpe_number));
Bob Moore50eca3e2005-09-30 19:03:00 -0400641 return_UINT32(ACPI_INTERRUPT_NOT_HANDLED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 }
643 }
644 break;
645
646 case ACPI_GPE_DISPATCH_METHOD:
647
648 /*
649 * Disable GPE, so it doesn't keep firing before the method has a
650 * chance to run.
651 */
Len Brown4be44fc2005-08-05 00:44:28 -0400652 status = acpi_ev_disable_gpe(gpe_event_info);
653 if (ACPI_FAILURE(status)) {
654 ACPI_REPORT_ERROR(("acpi_ev_gpe_dispatch: %s, Unable to disable GPE[%2X]\n", acpi_format_exception(status), gpe_number));
Bob Moore50eca3e2005-09-30 19:03:00 -0400655 return_UINT32(ACPI_INTERRUPT_NOT_HANDLED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 }
657
658 /*
659 * Execute the method associated with the GPE
660 * NOTE: Level-triggered GPEs are cleared after the method completes.
661 */
Len Brown4be44fc2005-08-05 00:44:28 -0400662 status = acpi_os_queue_for_execution(OSD_PRIORITY_GPE,
663 acpi_ev_asynch_execute_gpe_method,
664 gpe_event_info);
665 if (ACPI_FAILURE(status)) {
666 ACPI_REPORT_ERROR(("acpi_ev_gpe_dispatch: %s, Unable to queue handler for GPE[%2X] - event disabled\n", acpi_format_exception(status), gpe_number));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 }
668 break;
669
670 default:
671
672 /* No handler or method to run! */
673
Len Brown4be44fc2005-08-05 00:44:28 -0400674 ACPI_REPORT_ERROR(("acpi_ev_gpe_dispatch: No handler or method for GPE[%2X], disabling event\n", gpe_number));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
676 /*
677 * Disable the GPE. The GPE will remain disabled until the ACPI
678 * Core Subsystem is restarted, or a handler is installed.
679 */
Len Brown4be44fc2005-08-05 00:44:28 -0400680 status = acpi_ev_disable_gpe(gpe_event_info);
681 if (ACPI_FAILURE(status)) {
682 ACPI_REPORT_ERROR(("acpi_ev_gpe_dispatch: %s, Unable to disable GPE[%2X]\n", acpi_format_exception(status), gpe_number));
Bob Moore50eca3e2005-09-30 19:03:00 -0400683 return_UINT32(ACPI_INTERRUPT_NOT_HANDLED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 }
685 break;
686 }
687
Bob Moore50eca3e2005-09-30 19:03:00 -0400688 return_UINT32(ACPI_INTERRUPT_HANDLED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689}
690
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691#ifdef ACPI_GPE_NOTIFY_CHECK
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692/*******************************************************************************
693 * TBD: NOT USED, PROTOTYPE ONLY AND WILL PROBABLY BE REMOVED
694 *
695 * FUNCTION: acpi_ev_check_for_wake_only_gpe
696 *
697 * PARAMETERS: gpe_event_info - info for this GPE
698 *
699 * RETURN: Status
700 *
701 * DESCRIPTION: Determine if a a GPE is "wake-only".
702 *
703 * Called from Notify() code in interpreter when a "device_wake"
704 * Notify comes in.
705 *
706 ******************************************************************************/
707
708acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400709acpi_ev_check_for_wake_only_gpe(struct acpi_gpe_event_info *gpe_event_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710{
Len Brown4be44fc2005-08-05 00:44:28 -0400711 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
Len Brown4be44fc2005-08-05 00:44:28 -0400713 ACPI_FUNCTION_TRACE("ev_check_for_wake_only_gpe");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714
Len Brown4be44fc2005-08-05 00:44:28 -0400715 if ((gpe_event_info) && /* Only >0 for _Lxx/_Exx */
716 ((gpe_event_info->flags & ACPI_GPE_SYSTEM_MASK) == ACPI_GPE_SYSTEM_RUNNING)) { /* System state at GPE time */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 /* This must be a wake-only GPE, disable it */
718
Len Brown4be44fc2005-08-05 00:44:28 -0400719 status = acpi_ev_disable_gpe(gpe_event_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
721 /* Set GPE to wake-only. Do not change wake disabled/enabled status */
722
Len Brown4be44fc2005-08-05 00:44:28 -0400723 acpi_ev_set_gpe_type(gpe_event_info, ACPI_GPE_TYPE_WAKE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
Len Brown4be44fc2005-08-05 00:44:28 -0400725 ACPI_REPORT_INFO(("GPE %p was updated from wake/run to wake-only\n", gpe_event_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
727 /* This was a wake-only GPE */
728
Len Brown4be44fc2005-08-05 00:44:28 -0400729 return_ACPI_STATUS(AE_WAKE_ONLY_GPE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 }
731
Len Brown4be44fc2005-08-05 00:44:28 -0400732 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733}
734#endif