Merge branch 'bkl/procfs' of git://git.kernel.org/pub/scm/linux/kernel/git/frederic...
[linux-2.6-block.git] / drivers / acpi / acpica / evgpe.c
CommitLineData
1da177e4
LT
1/******************************************************************************
2 *
3 * Module Name: evgpe - General Purpose Event handling and dispatch
4 *
5 *****************************************************************************/
6
7/*
a8357b0c 8 * Copyright (C) 2000 - 2010, Intel Corp.
1da177e4
LT
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>
e2f7a777
LB
45#include "accommon.h"
46#include "acevents.h"
47#include "acnamesp.h"
1da177e4
LT
48
49#define _COMPONENT ACPI_EVENTS
4be44fcd 50ACPI_MODULE_NAME("evgpe")
1da177e4 51
44f6c012 52/* Local prototypes */
4be44fcd 53static void ACPI_SYSTEM_XFACE acpi_ev_asynch_execute_gpe_method(void *context);
1da177e4 54
1da177e4
LT
55/*******************************************************************************
56 *
57 * FUNCTION: acpi_ev_update_gpe_enable_masks
58 *
59 * PARAMETERS: gpe_event_info - GPE to update
1da177e4
LT
60 *
61 * RETURN: Status
62 *
63 * DESCRIPTION: Updates GPE register enable masks based on the GPE type
64 *
65 ******************************************************************************/
66
67acpi_status
9630bdd9 68acpi_ev_update_gpe_enable_masks(struct acpi_gpe_event_info *gpe_event_info)
1da177e4 69{
4be44fcd
LB
70 struct acpi_gpe_register_info *gpe_register_info;
71 u8 register_bit;
1da177e4 72
b229cf92 73 ACPI_FUNCTION_TRACE(ev_update_gpe_enable_masks);
1da177e4
LT
74
75 gpe_register_info = gpe_event_info->register_info;
76 if (!gpe_register_info) {
4be44fcd 77 return_ACPI_STATUS(AE_NOT_EXIST);
1da177e4 78 }
d4913dc6 79
69874165
AS
80 register_bit = (u8)
81 (1 <<
82 (gpe_event_info->gpe_number - gpe_register_info->base_gpe_number));
1da177e4 83
9630bdd9
RW
84 ACPI_CLEAR_BIT(gpe_register_info->enable_for_wake, register_bit);
85 ACPI_CLEAR_BIT(gpe_register_info->enable_for_run, register_bit);
1da177e4 86
9630bdd9 87 if (gpe_event_info->runtime_count)
4be44fcd 88 ACPI_SET_BIT(gpe_register_info->enable_for_run, register_bit);
1da177e4 89
9630bdd9 90 if (gpe_event_info->wakeup_count)
4be44fcd 91 ACPI_SET_BIT(gpe_register_info->enable_for_wake, register_bit);
1da177e4 92
4be44fcd 93 return_ACPI_STATUS(AE_OK);
1da177e4
LT
94}
95
1da177e4
LT
96/*******************************************************************************
97 *
98 * FUNCTION: acpi_ev_enable_gpe
99 *
100 * PARAMETERS: gpe_event_info - GPE to enable
1da177e4
LT
101 *
102 * RETURN: Status
103 *
104 * DESCRIPTION: Enable a GPE based on the GPE type
105 *
106 ******************************************************************************/
107
cbbc0de7 108acpi_status acpi_ev_enable_gpe(struct acpi_gpe_event_info *gpe_event_info)
1da177e4 109{
4be44fcd 110 acpi_status status;
1da177e4 111
b229cf92 112 ACPI_FUNCTION_TRACE(ev_enable_gpe);
1da177e4
LT
113
114 /* Make sure HW enable masks are updated */
115
9630bdd9
RW
116 status = acpi_ev_update_gpe_enable_masks(gpe_event_info);
117 if (ACPI_FAILURE(status))
4be44fcd 118 return_ACPI_STATUS(status);
1da177e4 119
bf02bd25
RW
120 /* Clear the GPE (of stale events), then enable it */
121 status = acpi_hw_clear_gpe(gpe_event_info);
122 if (ACPI_FAILURE(status))
123 return_ACPI_STATUS(status);
1da177e4 124
bf02bd25
RW
125 /* Enable the requested GPE */
126 status = acpi_hw_write_gpe_enable_reg(gpe_event_info);
127 return_ACPI_STATUS(status);
1da177e4
LT
128}
129
1da177e4
LT
130/*******************************************************************************
131 *
132 * FUNCTION: acpi_ev_disable_gpe
133 *
134 * PARAMETERS: gpe_event_info - GPE to disable
135 *
136 * RETURN: Status
137 *
138 * DESCRIPTION: Disable a GPE based on the GPE type
139 *
140 ******************************************************************************/
141
4be44fcd 142acpi_status acpi_ev_disable_gpe(struct acpi_gpe_event_info *gpe_event_info)
1da177e4 143{
4be44fcd 144 acpi_status status;
1da177e4 145
b229cf92 146 ACPI_FUNCTION_TRACE(ev_disable_gpe);
1da177e4 147
1da177e4
LT
148 /* Make sure HW enable masks are updated */
149
9630bdd9
RW
150 status = acpi_ev_update_gpe_enable_masks(gpe_event_info);
151 if (ACPI_FAILURE(status))
4be44fcd 152 return_ACPI_STATUS(status);
1da177e4 153
e38e8a07
BM
154 /*
155 * Even if we don't know the GPE type, make sure that we always
156 * disable it. low_disable_gpe will just clear the enable bit for this
157 * GPE and write it. It will not write out the current GPE enable mask,
158 * since this may inadvertently enable GPEs too early, if a rogue GPE has
159 * come in during ACPICA initialization - possibly as a result of AML or
160 * other code that has enabled the GPE.
161 */
162 status = acpi_hw_low_disable_gpe(gpe_event_info);
163 return_ACPI_STATUS(status);
1da177e4
LT
164}
165
1da177e4
LT
166/*******************************************************************************
167 *
168 * FUNCTION: acpi_ev_get_gpe_event_info
169 *
9f15fc66 170 * PARAMETERS: gpe_device - Device node. NULL for GPE0/GPE1
1da177e4
LT
171 * gpe_number - Raw GPE number
172 *
173 * RETURN: A GPE event_info struct. NULL if not a valid GPE
174 *
175 * DESCRIPTION: Returns the event_info struct associated with this GPE.
176 * Validates the gpe_block and the gpe_number
177 *
178 * Should be called only when the GPE lists are semaphore locked
179 * and not subject to change.
180 *
181 ******************************************************************************/
182
4be44fcd
LB
183struct acpi_gpe_event_info *acpi_ev_get_gpe_event_info(acpi_handle gpe_device,
184 u32 gpe_number)
1da177e4 185{
4be44fcd
LB
186 union acpi_operand_object *obj_desc;
187 struct acpi_gpe_block_info *gpe_block;
67a119f9 188 u32 i;
1da177e4 189
4be44fcd 190 ACPI_FUNCTION_ENTRY();
1da177e4
LT
191
192 /* A NULL gpe_block means use the FADT-defined GPE block(s) */
193
194 if (!gpe_device) {
52fc0b02 195
1da177e4
LT
196 /* Examine GPE Block 0 and 1 (These blocks are permanent) */
197
198 for (i = 0; i < ACPI_MAX_GPE_BLOCKS; i++) {
199 gpe_block = acpi_gbl_gpe_fadt_blocks[i];
200 if (gpe_block) {
4be44fcd
LB
201 if ((gpe_number >= gpe_block->block_base_number)
202 && (gpe_number <
203 gpe_block->block_base_number +
204 (gpe_block->register_count * 8))) {
205 return (&gpe_block->
206 event_info[gpe_number -
207 gpe_block->
208 block_base_number]);
1da177e4
LT
209 }
210 }
211 }
212
213 /* The gpe_number was not in the range of either FADT GPE block */
214
215 return (NULL);
216 }
217
218 /* A Non-NULL gpe_device means this is a GPE Block Device */
219
fd350943
LB
220 obj_desc = acpi_ns_get_attached_object((struct acpi_namespace_node *)
221 gpe_device);
4be44fcd 222 if (!obj_desc || !obj_desc->device.gpe_block) {
1da177e4
LT
223 return (NULL);
224 }
225
226 gpe_block = obj_desc->device.gpe_block;
227
228 if ((gpe_number >= gpe_block->block_base_number) &&
4be44fcd
LB
229 (gpe_number <
230 gpe_block->block_base_number + (gpe_block->register_count * 8))) {
231 return (&gpe_block->
232 event_info[gpe_number - gpe_block->block_base_number]);
1da177e4
LT
233 }
234
235 return (NULL);
236}
237
1da177e4
LT
238/*******************************************************************************
239 *
240 * FUNCTION: acpi_ev_gpe_detect
241 *
242 * PARAMETERS: gpe_xrupt_list - Interrupt block for this interrupt.
243 * Can have multiple GPE blocks attached.
244 *
245 * RETURN: INTERRUPT_HANDLED or INTERRUPT_NOT_HANDLED
246 *
9f15fc66 247 * DESCRIPTION: Detect if any GP events have occurred. This function is
1da177e4
LT
248 * executed at interrupt level.
249 *
250 ******************************************************************************/
251
4be44fcd 252u32 acpi_ev_gpe_detect(struct acpi_gpe_xrupt_info * gpe_xrupt_list)
1da177e4 253{
0897831b
BM
254 acpi_status status;
255 struct acpi_gpe_block_info *gpe_block;
256 struct acpi_gpe_register_info *gpe_register_info;
4be44fcd
LB
257 u32 int_status = ACPI_INTERRUPT_NOT_HANDLED;
258 u8 enabled_status_byte;
4be44fcd
LB
259 u32 status_reg;
260 u32 enable_reg;
b8e4d893 261 acpi_cpu_flags flags;
67a119f9
BM
262 u32 i;
263 u32 j;
4be44fcd 264
b229cf92 265 ACPI_FUNCTION_NAME(ev_gpe_detect);
1da177e4
LT
266
267 /* Check for the case where there are no GPEs */
268
269 if (!gpe_xrupt_list) {
270 return (int_status);
271 }
272
967440e3
BM
273 /*
274 * We need to obtain the GPE lock for both the data structs and registers
9f15fc66
BM
275 * Note: Not necessary to obtain the hardware lock, since the GPE
276 * registers are owned by the gpe_lock.
967440e3 277 */
4be44fcd 278 flags = acpi_os_acquire_lock(acpi_gbl_gpe_lock);
4c90ece2
BM
279
280 /* Examine all GPE blocks attached to this interrupt level */
281
1da177e4
LT
282 gpe_block = gpe_xrupt_list->gpe_block_list_head;
283 while (gpe_block) {
284 /*
9f15fc66
BM
285 * Read all of the 8-bit GPE status and enable registers in this GPE
286 * block, saving all of them. Find all currently active GP events.
1da177e4
LT
287 */
288 for (i = 0; i < gpe_block->register_count; i++) {
52fc0b02 289
1da177e4
LT
290 /* Get the next status/enable pair */
291
292 gpe_register_info = &gpe_block->register_info[i];
293
294 /* Read the Status Register */
295
4be44fcd 296 status =
c6b5774c
BM
297 acpi_hw_read(&status_reg,
298 &gpe_register_info->status_address);
4be44fcd 299 if (ACPI_FAILURE(status)) {
1da177e4
LT
300 goto unlock_and_exit;
301 }
302
303 /* Read the Enable Register */
304
4be44fcd 305 status =
c6b5774c
BM
306 acpi_hw_read(&enable_reg,
307 &gpe_register_info->enable_address);
4be44fcd 308 if (ACPI_FAILURE(status)) {
1da177e4
LT
309 goto unlock_and_exit;
310 }
311
4be44fcd
LB
312 ACPI_DEBUG_PRINT((ACPI_DB_INTERRUPTS,
313 "Read GPE Register at GPE%X: Status=%02X, Enable=%02X\n",
314 gpe_register_info->base_gpe_number,
315 status_reg, enable_reg));
1da177e4 316
44f6c012 317 /* Check if there is anything active at all in this register */
1da177e4
LT
318
319 enabled_status_byte = (u8) (status_reg & enable_reg);
320 if (!enabled_status_byte) {
52fc0b02 321
1da177e4
LT
322 /* No active GPEs in this register, move on */
323
324 continue;
325 }
326
327 /* Now look at the individual GPEs in this byte register */
328
329 for (j = 0; j < ACPI_GPE_REGISTER_WIDTH; j++) {
52fc0b02 330
1da177e4
LT
331 /* Examine one GPE bit */
332
69874165 333 if (enabled_status_byte & (1 << j)) {
1da177e4
LT
334 /*
335 * Found an active GPE. Dispatch the event to a handler
336 * or method.
337 */
4be44fcd
LB
338 int_status |=
339 acpi_ev_gpe_dispatch(&gpe_block->
67a119f9 340 event_info[((acpi_size) i * ACPI_GPE_REGISTER_WIDTH) + j], j + gpe_register_info->base_gpe_number);
1da177e4
LT
341 }
342 }
343 }
344
345 gpe_block = gpe_block->next;
346 }
347
4be44fcd 348 unlock_and_exit:
1da177e4 349
4be44fcd 350 acpi_os_release_lock(acpi_gbl_gpe_lock, flags);
1da177e4
LT
351 return (int_status);
352}
353
1da177e4
LT
354/*******************************************************************************
355 *
356 * FUNCTION: acpi_ev_asynch_execute_gpe_method
357 *
358 * PARAMETERS: Context (gpe_event_info) - Info for this GPE
359 *
360 * RETURN: None
361 *
4119532c
BM
362 * DESCRIPTION: Perform the actual execution of a GPE control method. This
363 * function is called from an invocation of acpi_os_execute and
364 * therefore does NOT execute at interrupt level - so that
1da177e4
LT
365 * the control method itself is not executed in the context of
366 * an interrupt handler.
367 *
368 ******************************************************************************/
17bc54ee 369static void acpi_ev_asynch_enable_gpe(void *context);
1da177e4 370
4be44fcd 371static void ACPI_SYSTEM_XFACE acpi_ev_asynch_execute_gpe_method(void *context)
1da177e4 372{
4be44fcd 373 struct acpi_gpe_event_info *gpe_event_info = (void *)context;
4be44fcd
LB
374 acpi_status status;
375 struct acpi_gpe_event_info local_gpe_event_info;
4119532c 376 struct acpi_evaluate_info *info;
1da177e4 377
b229cf92 378 ACPI_FUNCTION_TRACE(ev_asynch_execute_gpe_method);
1da177e4 379
4be44fcd
LB
380 status = acpi_ut_acquire_mutex(ACPI_MTX_EVENTS);
381 if (ACPI_FAILURE(status)) {
1da177e4
LT
382 return_VOID;
383 }
384
385 /* Must revalidate the gpe_number/gpe_block */
386
4be44fcd
LB
387 if (!acpi_ev_valid_gpe_event(gpe_event_info)) {
388 status = acpi_ut_release_mutex(ACPI_MTX_EVENTS);
1da177e4
LT
389 return_VOID;
390 }
391
392 /* Set the GPE flags for return to enabled state */
393
cbbc0de7 394 (void)acpi_ev_update_gpe_enable_masks(gpe_event_info);
1da177e4
LT
395
396 /*
9f15fc66
BM
397 * Take a snapshot of the GPE info for this level - we copy the info to
398 * prevent a race condition with remove_handler/remove_block.
1da177e4 399 */
4be44fcd
LB
400 ACPI_MEMCPY(&local_gpe_event_info, gpe_event_info,
401 sizeof(struct acpi_gpe_event_info));
1da177e4 402
4be44fcd
LB
403 status = acpi_ut_release_mutex(ACPI_MTX_EVENTS);
404 if (ACPI_FAILURE(status)) {
1da177e4
LT
405 return_VOID;
406 }
407
408 /*
9f15fc66
BM
409 * Must check for control method type dispatch one more time to avoid a
410 * race with ev_gpe_install_handler
1da177e4 411 */
44f6c012 412 if ((local_gpe_event_info.flags & ACPI_GPE_DISPATCH_MASK) ==
4be44fcd 413 ACPI_GPE_DISPATCH_METHOD) {
1da177e4 414
4119532c
BM
415 /* Allocate the evaluation information block */
416
417 info = ACPI_ALLOCATE_ZEROED(sizeof(struct acpi_evaluate_info));
418 if (!info) {
419 status = AE_NO_MEMORY;
420 } else {
421 /*
422 * Invoke the GPE Method (_Lxx, _Exx) i.e., evaluate the _Lxx/_Exx
423 * control method that corresponds to this GPE
424 */
425 info->prefix_node =
426 local_gpe_event_info.dispatch.method_node;
4119532c
BM
427 info->flags = ACPI_IGNORE_RETURN_VALUE;
428
429 status = acpi_ns_evaluate(info);
430 ACPI_FREE(info);
431 }
432
4be44fcd 433 if (ACPI_FAILURE(status)) {
b8e4d893 434 ACPI_EXCEPTION((AE_INFO, status,
2e42005b 435 "while evaluating GPE method [%4.4s]",
b8e4d893
BM
436 acpi_ut_get_node_name
437 (local_gpe_event_info.dispatch.
4c90ece2 438 method_node)));
1da177e4
LT
439 }
440 }
17bc54ee
AS
441 /* Defer enabling of GPE until all notify handlers are done */
442 acpi_os_execute(OSL_NOTIFY_HANDLER, acpi_ev_asynch_enable_gpe,
443 gpe_event_info);
444 return_VOID;
445}
1da177e4 446
17bc54ee
AS
447static void acpi_ev_asynch_enable_gpe(void *context)
448{
449 struct acpi_gpe_event_info *gpe_event_info = context;
450 acpi_status status;
451 if ((gpe_event_info->flags & ACPI_GPE_XRUPT_TYPE_MASK) ==
4be44fcd 452 ACPI_GPE_LEVEL_TRIGGERED) {
1da177e4 453 /*
9f15fc66
BM
454 * GPE is level-triggered, we clear the GPE status bit after handling
455 * the event.
1da177e4 456 */
17bc54ee 457 status = acpi_hw_clear_gpe(gpe_event_info);
4be44fcd 458 if (ACPI_FAILURE(status)) {
1da177e4
LT
459 return_VOID;
460 }
461 }
462
463 /* Enable this GPE */
17bc54ee 464 (void)acpi_hw_write_gpe_enable_reg(gpe_event_info);
1da177e4
LT
465 return_VOID;
466}
467
1da177e4
LT
468/*******************************************************************************
469 *
470 * FUNCTION: acpi_ev_gpe_dispatch
471 *
44f6c012 472 * PARAMETERS: gpe_event_info - Info for this GPE
1da177e4
LT
473 * gpe_number - Number relative to the parent GPE block
474 *
475 * RETURN: INTERRUPT_HANDLED or INTERRUPT_NOT_HANDLED
476 *
477 * DESCRIPTION: Dispatch a General Purpose Event to either a function (e.g. EC)
478 * or method (e.g. _Lxx/_Exx) handler.
479 *
480 * This function executes at interrupt level.
481 *
482 ******************************************************************************/
483
484u32
4be44fcd 485acpi_ev_gpe_dispatch(struct acpi_gpe_event_info *gpe_event_info, u32 gpe_number)
1da177e4 486{
4be44fcd 487 acpi_status status;
1da177e4 488
b229cf92 489 ACPI_FUNCTION_TRACE(ev_gpe_dispatch);
1da177e4 490
5229e87d 491 acpi_os_gpe_count(gpe_number);
fdffb72d 492
1da177e4 493 /*
9f15fc66 494 * If edge-triggered, clear the GPE status bit now. Note that
1da177e4
LT
495 * level-triggered events are cleared after the GPE is serviced.
496 */
44f6c012 497 if ((gpe_event_info->flags & ACPI_GPE_XRUPT_TYPE_MASK) ==
4be44fcd
LB
498 ACPI_GPE_EDGE_TRIGGERED) {
499 status = acpi_hw_clear_gpe(gpe_event_info);
500 if (ACPI_FAILURE(status)) {
b8e4d893
BM
501 ACPI_EXCEPTION((AE_INFO, status,
502 "Unable to clear GPE[%2X]",
503 gpe_number));
50eca3eb 504 return_UINT32(ACPI_INTERRUPT_NOT_HANDLED);
1da177e4
LT
505 }
506 }
507
1da177e4 508 /*
c5a71569
BM
509 * Dispatch the GPE to either an installed handler, or the control method
510 * associated with this GPE (_Lxx or _Exx). If a handler exists, we invoke
511 * it and do not attempt to run the method. If there is neither a handler
512 * nor a method, we disable this GPE to prevent further such pointless
513 * events from firing.
1da177e4
LT
514 */
515 switch (gpe_event_info->flags & ACPI_GPE_DISPATCH_MASK) {
516 case ACPI_GPE_DISPATCH_HANDLER:
517
518 /*
519 * Invoke the installed handler (at interrupt level)
9f15fc66
BM
520 * Ignore return status for now.
521 * TBD: leave GPE disabled on error?
1da177e4 522 */
4be44fcd
LB
523 (void)gpe_event_info->dispatch.handler->address(gpe_event_info->
524 dispatch.
525 handler->
526 context);
1da177e4
LT
527
528 /* It is now safe to clear level-triggered events. */
529
44f6c012 530 if ((gpe_event_info->flags & ACPI_GPE_XRUPT_TYPE_MASK) ==
4be44fcd
LB
531 ACPI_GPE_LEVEL_TRIGGERED) {
532 status = acpi_hw_clear_gpe(gpe_event_info);
533 if (ACPI_FAILURE(status)) {
b8e4d893
BM
534 ACPI_EXCEPTION((AE_INFO, status,
535 "Unable to clear GPE[%2X]",
536 gpe_number));
50eca3eb 537 return_UINT32(ACPI_INTERRUPT_NOT_HANDLED);
1da177e4
LT
538 }
539 }
540 break;
541
542 case ACPI_GPE_DISPATCH_METHOD:
543
544 /*
c5a71569
BM
545 * Disable the GPE, so it doesn't keep firing before the method has a
546 * chance to run (it runs asynchronously with interrupts enabled).
1da177e4 547 */
4be44fcd
LB
548 status = acpi_ev_disable_gpe(gpe_event_info);
549 if (ACPI_FAILURE(status)) {
b8e4d893
BM
550 ACPI_EXCEPTION((AE_INFO, status,
551 "Unable to disable GPE[%2X]",
552 gpe_number));
50eca3eb 553 return_UINT32(ACPI_INTERRUPT_NOT_HANDLED);
1da177e4
LT
554 }
555
556 /*
557 * Execute the method associated with the GPE
558 * NOTE: Level-triggered GPEs are cleared after the method completes.
559 */
958dd242
BM
560 status = acpi_os_execute(OSL_GPE_HANDLER,
561 acpi_ev_asynch_execute_gpe_method,
562 gpe_event_info);
4be44fcd 563 if (ACPI_FAILURE(status)) {
b8e4d893
BM
564 ACPI_EXCEPTION((AE_INFO, status,
565 "Unable to queue handler for GPE[%2X] - event disabled",
566 gpe_number));
1da177e4
LT
567 }
568 break;
569
570 default:
571
572 /* No handler or method to run! */
573
b8e4d893
BM
574 ACPI_ERROR((AE_INFO,
575 "No handler or method for GPE[%2X], disabling event",
576 gpe_number));
1da177e4
LT
577
578 /*
9f15fc66 579 * Disable the GPE. The GPE will remain disabled until the ACPICA
1da177e4
LT
580 * Core Subsystem is restarted, or a handler is installed.
581 */
4be44fcd
LB
582 status = acpi_ev_disable_gpe(gpe_event_info);
583 if (ACPI_FAILURE(status)) {
b8e4d893
BM
584 ACPI_EXCEPTION((AE_INFO, status,
585 "Unable to disable GPE[%2X]",
586 gpe_number));
50eca3eb 587 return_UINT32(ACPI_INTERRUPT_NOT_HANDLED);
1da177e4
LT
588 }
589 break;
590 }
591
50eca3eb 592 return_UINT32(ACPI_INTERRUPT_HANDLED);
1da177e4 593}