blob: f01d339407f8cc3c42e35b81f0a083ae32e5daf0 [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/*
Bob Moore4a90c7e2006-01-13 16:22:00 -05008 * Copyright (C) 2000 - 2006, R. Byron Moore
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 }
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
Bob Mooreb229cf92006-04-21 17:15:00 -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) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400210
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 /* Clear the GPE (of stale events), then enable it */
212
Len Brown4be44fc2005-08-05 00:44:28 -0400213 status = acpi_hw_clear_gpe(gpe_event_info);
214 if (ACPI_FAILURE(status)) {
215 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 }
217
218 /* Enable the requested runtime GPE */
219
Len Brown4be44fc2005-08-05 00:44:28 -0400220 status = acpi_hw_write_gpe_enable_reg(gpe_event_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 }
222 break;
223
224 default:
Len Brown4be44fc2005-08-05 00:44:28 -0400225 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 }
227
Len Brown4be44fc2005-08-05 00:44:28 -0400228 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229}
230
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231/*******************************************************************************
232 *
233 * FUNCTION: acpi_ev_disable_gpe
234 *
235 * PARAMETERS: gpe_event_info - GPE to disable
236 *
237 * RETURN: Status
238 *
239 * DESCRIPTION: Disable a GPE based on the GPE type
240 *
241 ******************************************************************************/
242
Len Brown4be44fc2005-08-05 00:44:28 -0400243acpi_status acpi_ev_disable_gpe(struct acpi_gpe_event_info *gpe_event_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244{
Len Brown4be44fc2005-08-05 00:44:28 -0400245 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
Bob Mooreb229cf92006-04-21 17:15:00 -0400247 ACPI_FUNCTION_TRACE(ev_disable_gpe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
249 if (!(gpe_event_info->flags & ACPI_GPE_ENABLE_MASK)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400250 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 }
252
253 /* Make sure HW enable masks are updated */
254
Len Brown4be44fc2005-08-05 00:44:28 -0400255 status =
256 acpi_ev_update_gpe_enable_masks(gpe_event_info, ACPI_GPE_DISABLE);
257 if (ACPI_FAILURE(status)) {
258 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 }
260
261 /* Mark wake-disabled or HW disable, or both */
262
263 switch (gpe_event_info->flags & ACPI_GPE_TYPE_MASK) {
264 case ACPI_GPE_TYPE_WAKE:
Len Brown4be44fc2005-08-05 00:44:28 -0400265 ACPI_CLEAR_BIT(gpe_event_info->flags, ACPI_GPE_WAKE_ENABLED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 break;
267
268 case ACPI_GPE_TYPE_WAKE_RUN:
Len Brown4be44fc2005-08-05 00:44:28 -0400269 ACPI_CLEAR_BIT(gpe_event_info->flags, ACPI_GPE_WAKE_ENABLED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
271 /*lint -fallthrough */
272
273 case ACPI_GPE_TYPE_RUNTIME:
274
275 /* Disable the requested runtime GPE */
276
Len Brown4be44fc2005-08-05 00:44:28 -0400277 ACPI_CLEAR_BIT(gpe_event_info->flags, ACPI_GPE_RUN_ENABLED);
278 status = acpi_hw_write_gpe_enable_reg(gpe_event_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 break;
280
281 default:
Len Brown4be44fc2005-08-05 00:44:28 -0400282 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 }
284
Len Brown4be44fc2005-08-05 00:44:28 -0400285 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286}
287
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288/*******************************************************************************
289 *
290 * FUNCTION: acpi_ev_get_gpe_event_info
291 *
292 * PARAMETERS: gpe_device - Device node. NULL for GPE0/GPE1
293 * gpe_number - Raw GPE number
294 *
295 * RETURN: A GPE event_info struct. NULL if not a valid GPE
296 *
297 * DESCRIPTION: Returns the event_info struct associated with this GPE.
298 * Validates the gpe_block and the gpe_number
299 *
300 * Should be called only when the GPE lists are semaphore locked
301 * and not subject to change.
302 *
303 ******************************************************************************/
304
Len Brown4be44fc2005-08-05 00:44:28 -0400305struct acpi_gpe_event_info *acpi_ev_get_gpe_event_info(acpi_handle gpe_device,
306 u32 gpe_number)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307{
Len Brown4be44fc2005-08-05 00:44:28 -0400308 union acpi_operand_object *obj_desc;
309 struct acpi_gpe_block_info *gpe_block;
310 acpi_native_uint i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
Len Brown4be44fc2005-08-05 00:44:28 -0400312 ACPI_FUNCTION_ENTRY();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
314 /* A NULL gpe_block means use the FADT-defined GPE block(s) */
315
316 if (!gpe_device) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400317
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 /* Examine GPE Block 0 and 1 (These blocks are permanent) */
319
320 for (i = 0; i < ACPI_MAX_GPE_BLOCKS; i++) {
321 gpe_block = acpi_gbl_gpe_fadt_blocks[i];
322 if (gpe_block) {
Len Brown4be44fc2005-08-05 00:44:28 -0400323 if ((gpe_number >= gpe_block->block_base_number)
324 && (gpe_number <
325 gpe_block->block_base_number +
326 (gpe_block->register_count * 8))) {
327 return (&gpe_block->
328 event_info[gpe_number -
329 gpe_block->
330 block_base_number]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 }
332 }
333 }
334
335 /* The gpe_number was not in the range of either FADT GPE block */
336
337 return (NULL);
338 }
339
340 /* A Non-NULL gpe_device means this is a GPE Block Device */
341
Len Brown4be44fc2005-08-05 00:44:28 -0400342 obj_desc =
343 acpi_ns_get_attached_object((struct acpi_namespace_node *)
344 gpe_device);
345 if (!obj_desc || !obj_desc->device.gpe_block) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 return (NULL);
347 }
348
349 gpe_block = obj_desc->device.gpe_block;
350
351 if ((gpe_number >= gpe_block->block_base_number) &&
Len Brown4be44fc2005-08-05 00:44:28 -0400352 (gpe_number <
353 gpe_block->block_base_number + (gpe_block->register_count * 8))) {
354 return (&gpe_block->
355 event_info[gpe_number - gpe_block->block_base_number]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 }
357
358 return (NULL);
359}
360
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361/*******************************************************************************
362 *
363 * FUNCTION: acpi_ev_gpe_detect
364 *
365 * PARAMETERS: gpe_xrupt_list - Interrupt block for this interrupt.
366 * Can have multiple GPE blocks attached.
367 *
368 * RETURN: INTERRUPT_HANDLED or INTERRUPT_NOT_HANDLED
369 *
370 * DESCRIPTION: Detect if any GP events have occurred. This function is
371 * executed at interrupt level.
372 *
373 ******************************************************************************/
374
Len Brown4be44fc2005-08-05 00:44:28 -0400375u32 acpi_ev_gpe_detect(struct acpi_gpe_xrupt_info * gpe_xrupt_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376{
Len Brown4be44fc2005-08-05 00:44:28 -0400377 acpi_status status;
378 struct acpi_gpe_block_info *gpe_block;
Bob Moore08978312005-10-21 00:00:00 -0400379 struct acpi_gpe_register_info *gpe_register_info;
380 u32 int_status = ACPI_INTERRUPT_NOT_HANDLED;
381 u8 enabled_status_byte;
382 u32 status_reg;
383 u32 enable_reg;
Bob Mooreb8e4d892006-01-27 16:43:00 -0500384 acpi_cpu_flags flags;
Bob Moore4c90ece2006-06-08 16:29:00 -0400385 acpi_cpu_flags hw_flags;
Len Brown4be44fc2005-08-05 00:44:28 -0400386 acpi_native_uint i;
387 acpi_native_uint j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
Bob Mooreb229cf92006-04-21 17:15:00 -0400389 ACPI_FUNCTION_NAME(ev_gpe_detect);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
391 /* Check for the case where there are no GPEs */
392
393 if (!gpe_xrupt_list) {
394 return (int_status);
395 }
396
Bob Moore4c90ece2006-06-08 16:29:00 -0400397 /* We need to hold the GPE lock now, hardware lock in the loop */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
Len Brown4be44fc2005-08-05 00:44:28 -0400399 flags = acpi_os_acquire_lock(acpi_gbl_gpe_lock);
Bob Moore4c90ece2006-06-08 16:29:00 -0400400
401 /* Examine all GPE blocks attached to this interrupt level */
402
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 gpe_block = gpe_xrupt_list->gpe_block_list_head;
404 while (gpe_block) {
405 /*
406 * Read all of the 8-bit GPE status and enable registers
407 * in this GPE block, saving all of them.
408 * Find all currently active GP events.
409 */
410 for (i = 0; i < gpe_block->register_count; i++) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400411
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 /* Get the next status/enable pair */
413
414 gpe_register_info = &gpe_block->register_info[i];
415
Bob Moore4c90ece2006-06-08 16:29:00 -0400416 hw_flags = acpi_os_acquire_lock(acpi_gbl_hardware_lock);
417
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 /* Read the Status Register */
419
Len Brown4be44fc2005-08-05 00:44:28 -0400420 status =
421 acpi_hw_low_level_read(ACPI_GPE_REGISTER_WIDTH,
422 &status_reg,
423 &gpe_register_info->
424 status_address);
425 if (ACPI_FAILURE(status)) {
Bob Moore4c90ece2006-06-08 16:29:00 -0400426 acpi_os_release_lock(acpi_gbl_hardware_lock,
427 hw_flags);
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 =
434 acpi_hw_low_level_read(ACPI_GPE_REGISTER_WIDTH,
435 &enable_reg,
436 &gpe_register_info->
437 enable_address);
Bob Moore4c90ece2006-06-08 16:29:00 -0400438 acpi_os_release_lock(acpi_gbl_hardware_lock, hw_flags);
439
Len Brown4be44fc2005-08-05 00:44:28 -0400440 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 goto unlock_and_exit;
442 }
443
Len Brown4be44fc2005-08-05 00:44:28 -0400444 ACPI_DEBUG_PRINT((ACPI_DB_INTERRUPTS,
445 "Read GPE Register at GPE%X: Status=%02X, Enable=%02X\n",
446 gpe_register_info->base_gpe_number,
447 status_reg, enable_reg));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
Robert Moore44f6c012005-04-18 22:49:35 -0400449 /* Check if there is anything active at all in this register */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
451 enabled_status_byte = (u8) (status_reg & enable_reg);
452 if (!enabled_status_byte) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400453
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 /* No active GPEs in this register, move on */
455
456 continue;
457 }
458
459 /* Now look at the individual GPEs in this byte register */
460
461 for (j = 0; j < ACPI_GPE_REGISTER_WIDTH; j++) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400462
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 /* Examine one GPE bit */
464
Len Brown4be44fc2005-08-05 00:44:28 -0400465 if (enabled_status_byte &
466 acpi_gbl_decode_to8bit[j]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 /*
468 * Found an active GPE. Dispatch the event to a handler
469 * or method.
470 */
Len Brown4be44fc2005-08-05 00:44:28 -0400471 int_status |=
472 acpi_ev_gpe_dispatch(&gpe_block->
473 event_info[(i *
474 ACPI_GPE_REGISTER_WIDTH)
475 +
476 j],
477 (u32) j +
478 gpe_register_info->
479 base_gpe_number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 }
481 }
482 }
483
484 gpe_block = gpe_block->next;
485 }
486
Len Brown4be44fc2005-08-05 00:44:28 -0400487 unlock_and_exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
Len Brown4be44fc2005-08-05 00:44:28 -0400489 acpi_os_release_lock(acpi_gbl_gpe_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 return (int_status);
491}
492
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493/*******************************************************************************
494 *
495 * FUNCTION: acpi_ev_asynch_execute_gpe_method
496 *
497 * PARAMETERS: Context (gpe_event_info) - Info for this GPE
498 *
499 * RETURN: None
500 *
Bob Moore41195322006-05-26 16:36:00 -0400501 * DESCRIPTION: Perform the actual execution of a GPE control method. This
502 * function is called from an invocation of acpi_os_execute and
503 * therefore does NOT execute at interrupt level - so that
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 * the control method itself is not executed in the context of
505 * an interrupt handler.
506 *
507 ******************************************************************************/
508
Len Brown4be44fc2005-08-05 00:44:28 -0400509static void ACPI_SYSTEM_XFACE acpi_ev_asynch_execute_gpe_method(void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510{
Len Brown4be44fc2005-08-05 00:44:28 -0400511 struct acpi_gpe_event_info *gpe_event_info = (void *)context;
Len Brown4be44fc2005-08-05 00:44:28 -0400512 acpi_status status;
513 struct acpi_gpe_event_info local_gpe_event_info;
Bob Moore41195322006-05-26 16:36:00 -0400514 struct acpi_evaluate_info *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
Bob Mooreb229cf92006-04-21 17:15:00 -0400516 ACPI_FUNCTION_TRACE(ev_asynch_execute_gpe_method);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
Len Brown4be44fc2005-08-05 00:44:28 -0400518 status = acpi_ut_acquire_mutex(ACPI_MTX_EVENTS);
519 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 return_VOID;
521 }
522
523 /* Must revalidate the gpe_number/gpe_block */
524
Len Brown4be44fc2005-08-05 00:44:28 -0400525 if (!acpi_ev_valid_gpe_event(gpe_event_info)) {
526 status = acpi_ut_release_mutex(ACPI_MTX_EVENTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 return_VOID;
528 }
529
530 /* Set the GPE flags for return to enabled state */
531
Len Brown4be44fc2005-08-05 00:44:28 -0400532 (void)acpi_ev_enable_gpe(gpe_event_info, FALSE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
534 /*
535 * Take a snapshot of the GPE info for this level - we copy the
536 * info to prevent a race condition with remove_handler/remove_block.
537 */
Len Brown4be44fc2005-08-05 00:44:28 -0400538 ACPI_MEMCPY(&local_gpe_event_info, gpe_event_info,
539 sizeof(struct acpi_gpe_event_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
Len Brown4be44fc2005-08-05 00:44:28 -0400541 status = acpi_ut_release_mutex(ACPI_MTX_EVENTS);
542 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 return_VOID;
544 }
545
546 /*
547 * Must check for control method type dispatch one more
548 * time to avoid race with ev_gpe_install_handler
549 */
Robert Moore44f6c012005-04-18 22:49:35 -0400550 if ((local_gpe_event_info.flags & ACPI_GPE_DISPATCH_MASK) ==
Len Brown4be44fc2005-08-05 00:44:28 -0400551 ACPI_GPE_DISPATCH_METHOD) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
Bob Moore41195322006-05-26 16:36:00 -0400553 /* Allocate the evaluation information block */
554
555 info = ACPI_ALLOCATE_ZEROED(sizeof(struct acpi_evaluate_info));
556 if (!info) {
557 status = AE_NO_MEMORY;
558 } else {
559 /*
560 * Invoke the GPE Method (_Lxx, _Exx) i.e., evaluate the _Lxx/_Exx
561 * control method that corresponds to this GPE
562 */
563 info->prefix_node =
564 local_gpe_event_info.dispatch.method_node;
565 info->parameters =
566 ACPI_CAST_PTR(union acpi_operand_object *,
567 gpe_event_info);
568 info->parameter_type = ACPI_PARAM_GPE;
569 info->flags = ACPI_IGNORE_RETURN_VALUE;
570
571 status = acpi_ns_evaluate(info);
572 ACPI_FREE(info);
573 }
574
Len Brown4be44fc2005-08-05 00:44:28 -0400575 if (ACPI_FAILURE(status)) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500576 ACPI_EXCEPTION((AE_INFO, status,
Bob Moore4c90ece2006-06-08 16:29:00 -0400577 "While evaluating GPE method [%4.4s]",
Bob Mooreb8e4d892006-01-27 16:43:00 -0500578 acpi_ut_get_node_name
579 (local_gpe_event_info.dispatch.
Bob Moore4c90ece2006-06-08 16:29:00 -0400580 method_node)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 }
582 }
583
Robert Moore44f6c012005-04-18 22:49:35 -0400584 if ((local_gpe_event_info.flags & ACPI_GPE_XRUPT_TYPE_MASK) ==
Len Brown4be44fc2005-08-05 00:44:28 -0400585 ACPI_GPE_LEVEL_TRIGGERED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 /*
587 * GPE is level-triggered, we clear the GPE status bit after
588 * handling the event.
589 */
Len Brown4be44fc2005-08-05 00:44:28 -0400590 status = acpi_hw_clear_gpe(&local_gpe_event_info);
591 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 return_VOID;
593 }
594 }
595
596 /* Enable this GPE */
597
Len Brown4be44fc2005-08-05 00:44:28 -0400598 (void)acpi_hw_write_gpe_enable_reg(&local_gpe_event_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 return_VOID;
600}
601
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602/*******************************************************************************
603 *
604 * FUNCTION: acpi_ev_gpe_dispatch
605 *
Robert Moore44f6c012005-04-18 22:49:35 -0400606 * PARAMETERS: gpe_event_info - Info for this GPE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 * gpe_number - Number relative to the parent GPE block
608 *
609 * RETURN: INTERRUPT_HANDLED or INTERRUPT_NOT_HANDLED
610 *
611 * DESCRIPTION: Dispatch a General Purpose Event to either a function (e.g. EC)
612 * or method (e.g. _Lxx/_Exx) handler.
613 *
614 * This function executes at interrupt level.
615 *
616 ******************************************************************************/
617
618u32
Len Brown4be44fc2005-08-05 00:44:28 -0400619acpi_ev_gpe_dispatch(struct acpi_gpe_event_info *gpe_event_info, u32 gpe_number)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620{
Len Brown4be44fc2005-08-05 00:44:28 -0400621 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
Bob Mooreb229cf92006-04-21 17:15:00 -0400623 ACPI_FUNCTION_TRACE(ev_gpe_dispatch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
625 /*
626 * If edge-triggered, clear the GPE status bit now. Note that
627 * level-triggered events are cleared after the GPE is serviced.
628 */
Robert Moore44f6c012005-04-18 22:49:35 -0400629 if ((gpe_event_info->flags & ACPI_GPE_XRUPT_TYPE_MASK) ==
Len Brown4be44fc2005-08-05 00:44:28 -0400630 ACPI_GPE_EDGE_TRIGGERED) {
631 status = acpi_hw_clear_gpe(gpe_event_info);
632 if (ACPI_FAILURE(status)) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500633 ACPI_EXCEPTION((AE_INFO, status,
634 "Unable to clear GPE[%2X]",
635 gpe_number));
Bob Moore50eca3e2005-09-30 19:03:00 -0400636 return_UINT32(ACPI_INTERRUPT_NOT_HANDLED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 }
638 }
639
640 /* Save current system state */
641
642 if (acpi_gbl_system_awake_and_running) {
Len Brown4be44fc2005-08-05 00:44:28 -0400643 ACPI_SET_BIT(gpe_event_info->flags, ACPI_GPE_SYSTEM_RUNNING);
644 } else {
645 ACPI_CLEAR_BIT(gpe_event_info->flags, ACPI_GPE_SYSTEM_RUNNING);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 }
647
648 /*
649 * Dispatch the GPE to either an installed handler, or the control
650 * method associated with this GPE (_Lxx or _Exx).
651 * If a handler exists, we invoke it and do not attempt to run the method.
652 * If there is neither a handler nor a method, we disable the level to
653 * prevent further events from coming in here.
654 */
655 switch (gpe_event_info->flags & ACPI_GPE_DISPATCH_MASK) {
656 case ACPI_GPE_DISPATCH_HANDLER:
657
658 /*
659 * Invoke the installed handler (at interrupt level)
660 * Ignore return status for now. TBD: leave GPE disabled on error?
661 */
Len Brown4be44fc2005-08-05 00:44:28 -0400662 (void)gpe_event_info->dispatch.handler->address(gpe_event_info->
663 dispatch.
664 handler->
665 context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666
667 /* It is now safe to clear level-triggered events. */
668
Robert Moore44f6c012005-04-18 22:49:35 -0400669 if ((gpe_event_info->flags & ACPI_GPE_XRUPT_TYPE_MASK) ==
Len Brown4be44fc2005-08-05 00:44:28 -0400670 ACPI_GPE_LEVEL_TRIGGERED) {
671 status = acpi_hw_clear_gpe(gpe_event_info);
672 if (ACPI_FAILURE(status)) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500673 ACPI_EXCEPTION((AE_INFO, status,
674 "Unable to clear GPE[%2X]",
675 gpe_number));
Bob Moore50eca3e2005-09-30 19:03:00 -0400676 return_UINT32(ACPI_INTERRUPT_NOT_HANDLED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 }
678 }
679 break;
680
681 case ACPI_GPE_DISPATCH_METHOD:
682
683 /*
684 * Disable GPE, so it doesn't keep firing before the method has a
685 * chance to run.
686 */
Len Brown4be44fc2005-08-05 00:44:28 -0400687 status = acpi_ev_disable_gpe(gpe_event_info);
688 if (ACPI_FAILURE(status)) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500689 ACPI_EXCEPTION((AE_INFO, status,
690 "Unable to disable GPE[%2X]",
691 gpe_number));
Bob Moore50eca3e2005-09-30 19:03:00 -0400692 return_UINT32(ACPI_INTERRUPT_NOT_HANDLED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 }
694
695 /*
696 * Execute the method associated with the GPE
697 * NOTE: Level-triggered GPEs are cleared after the method completes.
698 */
Bob Moore958dd242006-05-12 17:12:00 -0400699 status = acpi_os_execute(OSL_GPE_HANDLER,
700 acpi_ev_asynch_execute_gpe_method,
701 gpe_event_info);
Len Brown4be44fc2005-08-05 00:44:28 -0400702 if (ACPI_FAILURE(status)) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500703 ACPI_EXCEPTION((AE_INFO, status,
704 "Unable to queue handler for GPE[%2X] - event disabled",
705 gpe_number));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 }
707 break;
708
709 default:
710
711 /* No handler or method to run! */
712
Bob Mooreb8e4d892006-01-27 16:43:00 -0500713 ACPI_ERROR((AE_INFO,
714 "No handler or method for GPE[%2X], disabling event",
715 gpe_number));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716
717 /*
718 * Disable the GPE. The GPE will remain disabled until the ACPI
719 * Core Subsystem is restarted, or a handler is installed.
720 */
Len Brown4be44fc2005-08-05 00:44:28 -0400721 status = acpi_ev_disable_gpe(gpe_event_info);
722 if (ACPI_FAILURE(status)) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500723 ACPI_EXCEPTION((AE_INFO, status,
724 "Unable to disable GPE[%2X]",
725 gpe_number));
Bob Moore50eca3e2005-09-30 19:03:00 -0400726 return_UINT32(ACPI_INTERRUPT_NOT_HANDLED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 }
728 break;
729 }
730
Bob Moore50eca3e2005-09-30 19:03:00 -0400731 return_UINT32(ACPI_INTERRUPT_HANDLED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732}
733
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734#ifdef ACPI_GPE_NOTIFY_CHECK
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735/*******************************************************************************
736 * TBD: NOT USED, PROTOTYPE ONLY AND WILL PROBABLY BE REMOVED
737 *
738 * FUNCTION: acpi_ev_check_for_wake_only_gpe
739 *
740 * PARAMETERS: gpe_event_info - info for this GPE
741 *
742 * RETURN: Status
743 *
744 * DESCRIPTION: Determine if a a GPE is "wake-only".
745 *
Bob Mooreb229cf92006-04-21 17:15:00 -0400746 * Called from Notify() code in interpreter when a "DeviceWake"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 * Notify comes in.
748 *
749 ******************************************************************************/
750
751acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400752acpi_ev_check_for_wake_only_gpe(struct acpi_gpe_event_info *gpe_event_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753{
Len Brown4be44fc2005-08-05 00:44:28 -0400754 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
Bob Mooreb229cf92006-04-21 17:15:00 -0400756 ACPI_FUNCTION_TRACE(ev_check_for_wake_only_gpe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757
Len Brown4be44fc2005-08-05 00:44:28 -0400758 if ((gpe_event_info) && /* Only >0 for _Lxx/_Exx */
759 ((gpe_event_info->flags & ACPI_GPE_SYSTEM_MASK) == ACPI_GPE_SYSTEM_RUNNING)) { /* System state at GPE time */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 /* This must be a wake-only GPE, disable it */
761
Len Brown4be44fc2005-08-05 00:44:28 -0400762 status = acpi_ev_disable_gpe(gpe_event_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763
764 /* Set GPE to wake-only. Do not change wake disabled/enabled status */
765
Len Brown4be44fc2005-08-05 00:44:28 -0400766 acpi_ev_set_gpe_type(gpe_event_info, ACPI_GPE_TYPE_WAKE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767
Bob Mooreb8e4d892006-01-27 16:43:00 -0500768 ACPI_INFO((AE_INFO,
769 "GPE %p was updated from wake/run to wake-only",
770 gpe_event_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
772 /* This was a wake-only GPE */
773
Len Brown4be44fc2005-08-05 00:44:28 -0400774 return_ACPI_STATUS(AE_WAKE_ONLY_GPE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 }
776
Len Brown4be44fc2005-08-05 00:44:28 -0400777 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778}
779#endif