ACPICA: New: acpi_get_gpe_device interface
[linux-2.6] / drivers / acpi / events / evgpe.c
1 /******************************************************************************
2  *
3  * Module Name: evgpe - General Purpose Event handling and dispatch
4  *
5  *****************************************************************************/
6
7 /*
8  * Copyright (C) 2000 - 2008, Intel Corp.
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
49 ACPI_MODULE_NAME("evgpe")
50
51 /* Local prototypes */
52 static void ACPI_SYSTEM_XFACE acpi_ev_asynch_execute_gpe_method(void *context);
53
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
67 acpi_status
68 acpi_ev_set_gpe_type(struct acpi_gpe_event_info *gpe_event_info, u8 type)
69 {
70         acpi_status status;
71
72         ACPI_FUNCTION_TRACE(ev_set_gpe_type);
73
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:
83                 return_ACPI_STATUS(AE_BAD_PARAMETER);
84         }
85
86         /* Disable the GPE if currently enabled */
87
88         status = acpi_ev_disable_gpe(gpe_event_info);
89
90         /* Type was validated above */
91
92         gpe_event_info->flags &= ~ACPI_GPE_TYPE_MASK;   /* Clear type bits */
93         gpe_event_info->flags |= type;  /* Insert type */
94         return_ACPI_STATUS(status);
95 }
96
97 /*******************************************************************************
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
111 acpi_status
112 acpi_ev_update_gpe_enable_masks(struct acpi_gpe_event_info *gpe_event_info,
113                                 u8 type)
114 {
115         struct acpi_gpe_register_info *gpe_register_info;
116         u8 register_bit;
117
118         ACPI_FUNCTION_TRACE(ev_update_gpe_enable_masks);
119
120         gpe_register_info = gpe_event_info->register_info;
121         if (!gpe_register_info) {
122                 return_ACPI_STATUS(AE_NOT_EXIST);
123         }
124         register_bit = (u8)
125             (1 <<
126              (gpe_event_info->gpe_number - gpe_register_info->base_gpe_number));
127
128         /* 1) Disable case. Simply clear all enable bits */
129
130         if (type == ACPI_GPE_DISABLE) {
131                 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);
135         }
136
137         /* 2) Enable case. Set/Clear the appropriate enable bits */
138
139         switch (gpe_event_info->flags & ACPI_GPE_TYPE_MASK) {
140         case ACPI_GPE_TYPE_WAKE:
141                 ACPI_SET_BIT(gpe_register_info->enable_for_wake, register_bit);
142                 ACPI_CLEAR_BIT(gpe_register_info->enable_for_run, register_bit);
143                 break;
144
145         case ACPI_GPE_TYPE_RUNTIME:
146                 ACPI_CLEAR_BIT(gpe_register_info->enable_for_wake,
147                                register_bit);
148                 ACPI_SET_BIT(gpe_register_info->enable_for_run, register_bit);
149                 break;
150
151         case ACPI_GPE_TYPE_WAKE_RUN:
152                 ACPI_SET_BIT(gpe_register_info->enable_for_wake, register_bit);
153                 ACPI_SET_BIT(gpe_register_info->enable_for_run, register_bit);
154                 break;
155
156         default:
157                 return_ACPI_STATUS(AE_BAD_PARAMETER);
158         }
159
160         return_ACPI_STATUS(AE_OK);
161 }
162
163 /*******************************************************************************
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
177 acpi_status
178 acpi_ev_enable_gpe(struct acpi_gpe_event_info *gpe_event_info,
179                    u8 write_to_hardware)
180 {
181         acpi_status status;
182
183         ACPI_FUNCTION_TRACE(ev_enable_gpe);
184
185         /* Make sure HW enable masks are updated */
186
187         status =
188             acpi_ev_update_gpe_enable_masks(gpe_event_info, ACPI_GPE_ENABLE);
189         if (ACPI_FAILURE(status)) {
190                 return_ACPI_STATUS(status);
191         }
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
198                 ACPI_SET_BIT(gpe_event_info->flags, ACPI_GPE_WAKE_ENABLED);
199                 break;
200
201         case ACPI_GPE_TYPE_WAKE_RUN:
202
203                 ACPI_SET_BIT(gpe_event_info->flags, ACPI_GPE_WAKE_ENABLED);
204
205                 /*lint -fallthrough */
206
207         case ACPI_GPE_TYPE_RUNTIME:
208
209                 ACPI_SET_BIT(gpe_event_info->flags, ACPI_GPE_RUN_ENABLED);
210
211                 if (write_to_hardware) {
212
213                         /* Clear the GPE (of stale events), then enable it */
214
215                         status = acpi_hw_clear_gpe(gpe_event_info);
216                         if (ACPI_FAILURE(status)) {
217                                 return_ACPI_STATUS(status);
218                         }
219
220                         /* Enable the requested runtime GPE */
221
222                         status = acpi_hw_write_gpe_enable_reg(gpe_event_info);
223                 }
224                 break;
225
226         default:
227                 return_ACPI_STATUS(AE_BAD_PARAMETER);
228         }
229
230         return_ACPI_STATUS(AE_OK);
231 }
232
233 /*******************************************************************************
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
245 acpi_status acpi_ev_disable_gpe(struct acpi_gpe_event_info *gpe_event_info)
246 {
247         acpi_status status;
248
249         ACPI_FUNCTION_TRACE(ev_disable_gpe);
250
251         /* Make sure HW enable masks are updated */
252
253         status =
254             acpi_ev_update_gpe_enable_masks(gpe_event_info, ACPI_GPE_DISABLE);
255         if (ACPI_FAILURE(status)) {
256                 return_ACPI_STATUS(status);
257         }
258
259         /* Clear the appropriate enabled flags for this GPE */
260
261         switch (gpe_event_info->flags & ACPI_GPE_TYPE_MASK) {
262         case ACPI_GPE_TYPE_WAKE:
263                 ACPI_CLEAR_BIT(gpe_event_info->flags, ACPI_GPE_WAKE_ENABLED);
264                 break;
265
266         case ACPI_GPE_TYPE_WAKE_RUN:
267                 ACPI_CLEAR_BIT(gpe_event_info->flags, ACPI_GPE_WAKE_ENABLED);
268
269                 /* fallthrough */
270
271         case ACPI_GPE_TYPE_RUNTIME:
272
273                 /* Disable the requested runtime GPE */
274
275                 ACPI_CLEAR_BIT(gpe_event_info->flags, ACPI_GPE_RUN_ENABLED);
276                 break;
277
278         default:
279                 break;
280         }
281
282         /*
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);
292 }
293
294 /*******************************************************************************
295  *
296  * FUNCTION:    acpi_ev_get_gpe_event_info
297  *
298  * PARAMETERS:  gpe_device          - Device node. NULL for GPE0/GPE1
299  *              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
311 struct acpi_gpe_event_info *acpi_ev_get_gpe_event_info(acpi_handle gpe_device,
312                                                        u32 gpe_number)
313 {
314         union acpi_operand_object *obj_desc;
315         struct acpi_gpe_block_info *gpe_block;
316         u32 i;
317
318         ACPI_FUNCTION_ENTRY();
319
320         /* A NULL gpe_block means use the FADT-defined GPE block(s) */
321
322         if (!gpe_device) {
323
324                 /* 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) {
329                                 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]);
337                                 }
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
348         obj_desc = acpi_ns_get_attached_object((struct acpi_namespace_node *)
349                                                gpe_device);
350         if (!obj_desc || !obj_desc->device.gpe_block) {
351                 return (NULL);
352         }
353
354         gpe_block = obj_desc->device.gpe_block;
355
356         if ((gpe_number >= gpe_block->block_base_number) &&
357             (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]);
361         }
362
363         return (NULL);
364 }
365
366 /*******************************************************************************
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  *
375  * DESCRIPTION: Detect if any GP events have occurred. This function is
376  *              executed at interrupt level.
377  *
378  ******************************************************************************/
379
380 u32 acpi_ev_gpe_detect(struct acpi_gpe_xrupt_info * gpe_xrupt_list)
381 {
382         acpi_status status;
383         struct acpi_gpe_block_info *gpe_block;
384         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;
389         acpi_cpu_flags flags;
390         u32 i;
391         u32 j;
392
393         ACPI_FUNCTION_NAME(ev_gpe_detect);
394
395         /* Check for the case where there are no GPEs */
396
397         if (!gpe_xrupt_list) {
398                 return (int_status);
399         }
400
401         /*
402          * We need to obtain the GPE lock for both the data structs and registers
403          * Note: Not necessary to obtain the hardware lock, since the GPE
404          * registers are owned by the gpe_lock.
405          */
406         flags = acpi_os_acquire_lock(acpi_gbl_gpe_lock);
407
408         /* Examine all GPE blocks attached to this interrupt level */
409
410         gpe_block = gpe_xrupt_list->gpe_block_list_head;
411         while (gpe_block) {
412                 /*
413                  * 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.
415                  */
416                 for (i = 0; i < gpe_block->register_count; i++) {
417
418                         /* Get the next status/enable pair */
419
420                         gpe_register_info = &gpe_block->register_info[i];
421
422                         /* Read the Status Register */
423
424                         status =
425                             acpi_hw_low_level_read(ACPI_GPE_REGISTER_WIDTH,
426                                                    &status_reg,
427                                                    &gpe_register_info->
428                                                    status_address);
429                         if (ACPI_FAILURE(status)) {
430                                 goto unlock_and_exit;
431                         }
432
433                         /* Read the Enable Register */
434
435                         status =
436                             acpi_hw_low_level_read(ACPI_GPE_REGISTER_WIDTH,
437                                                    &enable_reg,
438                                                    &gpe_register_info->
439                                                    enable_address);
440                         if (ACPI_FAILURE(status)) {
441                                 goto unlock_and_exit;
442                         }
443
444                         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));
448
449                         /* Check if there is anything active at all in this register */
450
451                         enabled_status_byte = (u8) (status_reg & enable_reg);
452                         if (!enabled_status_byte) {
453
454                                 /* 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++) {
462
463                                 /* Examine one GPE bit */
464
465                                 if (enabled_status_byte & (1 << j)) {
466                                         /*
467                                          * Found an active GPE. Dispatch the event to a handler
468                                          * or method.
469                                          */
470                                         int_status |=
471                                             acpi_ev_gpe_dispatch(&gpe_block->
472                                                 event_info[((acpi_size) i * ACPI_GPE_REGISTER_WIDTH) + j], j + gpe_register_info->base_gpe_number);
473                                 }
474                         }
475                 }
476
477                 gpe_block = gpe_block->next;
478         }
479
480       unlock_and_exit:
481
482         acpi_os_release_lock(acpi_gbl_gpe_lock, flags);
483         return (int_status);
484 }
485
486 /*******************************************************************************
487  *
488  * FUNCTION:    acpi_ev_asynch_execute_gpe_method
489  *
490  * PARAMETERS:  Context (gpe_event_info) - Info for this GPE
491  *
492  * RETURN:      None
493  *
494  * DESCRIPTION: Perform the actual execution of a GPE control method. This
495  *              function is called from an invocation of acpi_os_execute and
496  *              therefore does NOT execute at interrupt level - so that
497  *              the control method itself is not executed in the context of
498  *              an interrupt handler.
499  *
500  ******************************************************************************/
501 static void acpi_ev_asynch_enable_gpe(void *context);
502
503 static void ACPI_SYSTEM_XFACE acpi_ev_asynch_execute_gpe_method(void *context)
504 {
505         struct acpi_gpe_event_info *gpe_event_info = (void *)context;
506         acpi_status status;
507         struct acpi_gpe_event_info local_gpe_event_info;
508         struct acpi_evaluate_info *info;
509
510         ACPI_FUNCTION_TRACE(ev_asynch_execute_gpe_method);
511
512         status = acpi_ut_acquire_mutex(ACPI_MTX_EVENTS);
513         if (ACPI_FAILURE(status)) {
514                 return_VOID;
515         }
516
517         /* Must revalidate the gpe_number/gpe_block */
518
519         if (!acpi_ev_valid_gpe_event(gpe_event_info)) {
520                 status = acpi_ut_release_mutex(ACPI_MTX_EVENTS);
521                 return_VOID;
522         }
523
524         /* Set the GPE flags for return to enabled state */
525
526         (void)acpi_ev_enable_gpe(gpe_event_info, FALSE);
527
528         /*
529          * Take a snapshot of the GPE info for this level - we copy the info to
530          * prevent a race condition with remove_handler/remove_block.
531          */
532         ACPI_MEMCPY(&local_gpe_event_info, gpe_event_info,
533                     sizeof(struct acpi_gpe_event_info));
534
535         status = acpi_ut_release_mutex(ACPI_MTX_EVENTS);
536         if (ACPI_FAILURE(status)) {
537                 return_VOID;
538         }
539
540         /*
541          * Must check for control method type dispatch one more time to avoid a
542          * race with ev_gpe_install_handler
543          */
544         if ((local_gpe_event_info.flags & ACPI_GPE_DISPATCH_MASK) ==
545             ACPI_GPE_DISPATCH_METHOD) {
546
547                 /* Allocate the evaluation information block */
548
549                 info = ACPI_ALLOCATE_ZEROED(sizeof(struct acpi_evaluate_info));
550                 if (!info) {
551                         status = AE_NO_MEMORY;
552                 } else {
553                         /*
554                          * Invoke the GPE Method (_Lxx, _Exx) i.e., evaluate the _Lxx/_Exx
555                          * control method that corresponds to this GPE
556                          */
557                         info->prefix_node =
558                             local_gpe_event_info.dispatch.method_node;
559                         info->flags = ACPI_IGNORE_RETURN_VALUE;
560
561                         status = acpi_ns_evaluate(info);
562                         ACPI_FREE(info);
563                 }
564
565                 if (ACPI_FAILURE(status)) {
566                         ACPI_EXCEPTION((AE_INFO, status,
567                                         "while evaluating GPE method [%4.4s]",
568                                         acpi_ut_get_node_name
569                                         (local_gpe_event_info.dispatch.
570                                          method_node)));
571                 }
572         }
573         /* Defer enabling of GPE until all notify handlers are done */
574         acpi_os_execute(OSL_NOTIFY_HANDLER, acpi_ev_asynch_enable_gpe,
575                                 gpe_event_info);
576         return_VOID;
577 }
578
579 static void acpi_ev_asynch_enable_gpe(void *context)
580 {
581         struct acpi_gpe_event_info *gpe_event_info = context;
582         acpi_status status;
583         if ((gpe_event_info->flags & ACPI_GPE_XRUPT_TYPE_MASK) ==
584             ACPI_GPE_LEVEL_TRIGGERED) {
585                 /*
586                  * GPE is level-triggered, we clear the GPE status bit after handling
587                  * the event.
588                  */
589                 status = acpi_hw_clear_gpe(gpe_event_info);
590                 if (ACPI_FAILURE(status)) {
591                         return_VOID;
592                 }
593         }
594
595         /* Enable this GPE */
596         (void)acpi_hw_write_gpe_enable_reg(gpe_event_info);
597         return_VOID;
598 }
599
600 /*******************************************************************************
601  *
602  * FUNCTION:    acpi_ev_gpe_dispatch
603  *
604  * PARAMETERS:  gpe_event_info  - Info for this GPE
605  *              gpe_number      - Number relative to the parent GPE block
606  *
607  * RETURN:      INTERRUPT_HANDLED or INTERRUPT_NOT_HANDLED
608  *
609  * DESCRIPTION: Dispatch a General Purpose Event to either a function (e.g. EC)
610  *              or method (e.g. _Lxx/_Exx) handler.
611  *
612  *              This function executes at interrupt level.
613  *
614  ******************************************************************************/
615
616 u32
617 acpi_ev_gpe_dispatch(struct acpi_gpe_event_info *gpe_event_info, u32 gpe_number)
618 {
619         acpi_status status;
620
621         ACPI_FUNCTION_TRACE(ev_gpe_dispatch);
622
623         acpi_os_gpe_count(gpe_number);
624
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          */
629         if ((gpe_event_info->flags & ACPI_GPE_XRUPT_TYPE_MASK) ==
630             ACPI_GPE_EDGE_TRIGGERED) {
631                 status = acpi_hw_clear_gpe(gpe_event_info);
632                 if (ACPI_FAILURE(status)) {
633                         ACPI_EXCEPTION((AE_INFO, status,
634                                         "Unable to clear GPE[%2X]",
635                                         gpe_number));
636                         return_UINT32(ACPI_INTERRUPT_NOT_HANDLED);
637                 }
638         }
639
640         /*
641          * Dispatch the GPE to either an installed handler, or the control method
642          * associated with this GPE (_Lxx or _Exx). If a handler exists, we invoke
643          * it and do not attempt to run the method. If there is neither a handler
644          * nor a method, we disable this GPE to prevent further such pointless
645          * events from firing.
646          */
647         switch (gpe_event_info->flags & ACPI_GPE_DISPATCH_MASK) {
648         case ACPI_GPE_DISPATCH_HANDLER:
649
650                 /*
651                  * Invoke the installed handler (at interrupt level)
652                  * Ignore return status for now.
653                  * TBD: leave GPE disabled on error?
654                  */
655                 (void)gpe_event_info->dispatch.handler->address(gpe_event_info->
656                                                                 dispatch.
657                                                                 handler->
658                                                                 context);
659
660                 /* It is now safe to clear level-triggered events. */
661
662                 if ((gpe_event_info->flags & ACPI_GPE_XRUPT_TYPE_MASK) ==
663                     ACPI_GPE_LEVEL_TRIGGERED) {
664                         status = acpi_hw_clear_gpe(gpe_event_info);
665                         if (ACPI_FAILURE(status)) {
666                                 ACPI_EXCEPTION((AE_INFO, status,
667                                                 "Unable to clear GPE[%2X]",
668                                                 gpe_number));
669                                 return_UINT32(ACPI_INTERRUPT_NOT_HANDLED);
670                         }
671                 }
672                 break;
673
674         case ACPI_GPE_DISPATCH_METHOD:
675
676                 /*
677                  * Disable the GPE, so it doesn't keep firing before the method has a
678                  * chance to run (it runs asynchronously with interrupts enabled).
679                  */
680                 status = acpi_ev_disable_gpe(gpe_event_info);
681                 if (ACPI_FAILURE(status)) {
682                         ACPI_EXCEPTION((AE_INFO, status,
683                                         "Unable to disable GPE[%2X]",
684                                         gpe_number));
685                         return_UINT32(ACPI_INTERRUPT_NOT_HANDLED);
686                 }
687
688                 /*
689                  * Execute the method associated with the GPE
690                  * NOTE: Level-triggered GPEs are cleared after the method completes.
691                  */
692                 status = acpi_os_execute(OSL_GPE_HANDLER,
693                                          acpi_ev_asynch_execute_gpe_method,
694                                          gpe_event_info);
695                 if (ACPI_FAILURE(status)) {
696                         ACPI_EXCEPTION((AE_INFO, status,
697                                         "Unable to queue handler for GPE[%2X] - event disabled",
698                                         gpe_number));
699                 }
700                 break;
701
702         default:
703
704                 /* No handler or method to run! */
705
706                 ACPI_ERROR((AE_INFO,
707                             "No handler or method for GPE[%2X], disabling event",
708                             gpe_number));
709
710                 /*
711                  * Disable the GPE. The GPE will remain disabled until the ACPICA
712                  * Core Subsystem is restarted, or a handler is installed.
713                  */
714                 status = acpi_ev_disable_gpe(gpe_event_info);
715                 if (ACPI_FAILURE(status)) {
716                         ACPI_EXCEPTION((AE_INFO, status,
717                                         "Unable to disable GPE[%2X]",
718                                         gpe_number));
719                         return_UINT32(ACPI_INTERRUPT_NOT_HANDLED);
720                 }
721                 break;
722         }
723
724         return_UINT32(ACPI_INTERRUPT_HANDLED);
725 }