blob: 9413ac61e440c2f2f76bedc583652edeec013130 [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 Moorea8357b02010-01-22 19:07:36 +08008 * Copyright (C) 2000 - 2010, Intel Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * All rights reserved.
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions, and the following disclaimer,
16 * without modification.
17 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
18 * substantially similar to the "NO WARRANTY" disclaimer below
19 * ("Disclaimer") and any redistribution must be conditioned upon
20 * including a substantially similar Disclaimer requirement for further
21 * binary redistribution.
22 * 3. Neither the names of the above-listed copyright holders nor the names
23 * of any contributors may be used to endorse or promote products derived
24 * from this software without specific prior written permission.
25 *
26 * Alternatively, this software may be distributed under the terms of the
27 * GNU General Public License ("GPL") version 2 as published by the Free
28 * Software Foundation.
29 *
30 * NO WARRANTY
31 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
32 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
33 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
34 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
35 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
36 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
37 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
38 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
39 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
40 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
41 * POSSIBILITY OF SUCH DAMAGES.
42 */
43
44#include <acpi/acpi.h>
Len Browne2f7a772009-01-09 00:30:03 -050045#include "accommon.h"
46#include "acevents.h"
47#include "acnamesp.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49#define _COMPONENT ACPI_EVENTS
Len Brown4be44fc2005-08-05 00:44:28 -040050ACPI_MODULE_NAME("evgpe")
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Robert Moore44f6c012005-04-18 22:49:35 -040052/* Local prototypes */
Len Brown4be44fc2005-08-05 00:44:28 -040053static void ACPI_SYSTEM_XFACE acpi_ev_asynch_execute_gpe_method(void *context);
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
55/*******************************************************************************
56 *
Rafael J. Wysockia44061a2010-07-01 10:11:45 +080057 * FUNCTION: acpi_ev_update_gpe_enable_mask
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 *
59 * PARAMETERS: gpe_event_info - GPE to update
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 *
61 * RETURN: Status
62 *
Rafael J. Wysockia44061a2010-07-01 10:11:45 +080063 * DESCRIPTION: Updates GPE register enable mask based upon whether there are
64 * runtime references to this GPE
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 *
66 ******************************************************************************/
67
68acpi_status
Rafael J. Wysockia44061a2010-07-01 10:11:45 +080069acpi_ev_update_gpe_enable_mask(struct acpi_gpe_event_info *gpe_event_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -070070{
Len Brown4be44fc2005-08-05 00:44:28 -040071 struct acpi_gpe_register_info *gpe_register_info;
Rafael J. Wysockie4e9a732010-06-08 10:48:26 +020072 u32 register_bit;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
Rafael J. Wysockia44061a2010-07-01 10:11:45 +080074 ACPI_FUNCTION_TRACE(ev_update_gpe_enable_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
76 gpe_register_info = gpe_event_info->register_info;
77 if (!gpe_register_info) {
Len Brown4be44fc2005-08-05 00:44:28 -040078 return_ACPI_STATUS(AE_NOT_EXIST);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 }
Bob Moored4913dc2009-03-06 10:05:18 +080080
Lin Mingb76df672010-07-01 10:07:17 +080081 register_bit = acpi_hw_get_gpe_register_bit(gpe_event_info,
Rafael J. Wysockie4e9a732010-06-08 10:48:26 +020082 gpe_register_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
Rafael J. Wysockia44061a2010-07-01 10:11:45 +080084 /* Clear the run bit up front */
Lin Ming0f849d22010-04-06 14:52:37 +080085
Rafael J. Wysocki9630bdd2010-02-17 23:41:07 +010086 ACPI_CLEAR_BIT(gpe_register_info->enable_for_run, register_bit);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
Rafael J. Wysockia44061a2010-07-01 10:11:45 +080088 /* Set the mask bit only if there are references to this GPE */
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
Lin Ming0f849d22010-04-06 14:52:37 +080090 if (gpe_event_info->runtime_count) {
Rafael J. Wysockia44061a2010-07-01 10:11:45 +080091 ACPI_SET_BIT(gpe_register_info->enable_for_run, (u8)register_bit);
Lin Ming0f849d22010-04-06 14:52:37 +080092 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Len Brown4be44fc2005-08-05 00:44:28 -040094 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095}
96
Lin Ming0f849d22010-04-06 14:52:37 +080097
98/*******************************************************************************
99 *
100 * FUNCTION: acpi_ev_low_get_gpe_info
101 *
102 * PARAMETERS: gpe_number - Raw GPE number
103 * gpe_block - A GPE info block
104 *
105 * RETURN: A GPE event_info struct. NULL if not a valid GPE (The gpe_number
106 * is not within the specified GPE block)
107 *
108 * DESCRIPTION: Returns the event_info struct associated with this GPE. This is
109 * the low-level implementation of ev_get_gpe_event_info.
110 *
111 ******************************************************************************/
112
113struct acpi_gpe_event_info *acpi_ev_low_get_gpe_info(u32 gpe_number,
114 struct acpi_gpe_block_info
115 *gpe_block)
116{
117 u32 gpe_index;
118
119 /*
120 * Validate that the gpe_number is within the specified gpe_block.
121 * (Two steps)
122 */
123 if (!gpe_block || (gpe_number < gpe_block->block_base_number)) {
124 return (NULL);
125 }
126
127 gpe_index = gpe_number - gpe_block->block_base_number;
128 if (gpe_index >= gpe_block->gpe_count) {
129 return (NULL);
130 }
131
132 return (&gpe_block->event_info[gpe_index]);
133}
134
135
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136/*******************************************************************************
137 *
138 * FUNCTION: acpi_ev_get_gpe_event_info
139 *
Bob Moore9f15fc62008-11-12 16:01:56 +0800140 * PARAMETERS: gpe_device - Device node. NULL for GPE0/GPE1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 * gpe_number - Raw GPE number
142 *
143 * RETURN: A GPE event_info struct. NULL if not a valid GPE
144 *
145 * DESCRIPTION: Returns the event_info struct associated with this GPE.
146 * Validates the gpe_block and the gpe_number
147 *
148 * Should be called only when the GPE lists are semaphore locked
149 * and not subject to change.
150 *
151 ******************************************************************************/
152
Len Brown4be44fc2005-08-05 00:44:28 -0400153struct acpi_gpe_event_info *acpi_ev_get_gpe_event_info(acpi_handle gpe_device,
154 u32 gpe_number)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155{
Len Brown4be44fc2005-08-05 00:44:28 -0400156 union acpi_operand_object *obj_desc;
Lin Ming0f849d22010-04-06 14:52:37 +0800157 struct acpi_gpe_event_info *gpe_info;
Bob Moore67a119f2008-06-10 13:42:13 +0800158 u32 i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
Len Brown4be44fc2005-08-05 00:44:28 -0400160 ACPI_FUNCTION_ENTRY();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
Bob Moore186c3072010-04-27 11:32:28 +0800162 /* A NULL gpe_device means use the FADT-defined GPE block(s) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
164 if (!gpe_device) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400165
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 /* Examine GPE Block 0 and 1 (These blocks are permanent) */
167
168 for (i = 0; i < ACPI_MAX_GPE_BLOCKS; i++) {
Lin Ming0f849d22010-04-06 14:52:37 +0800169 gpe_info = acpi_ev_low_get_gpe_info(gpe_number,
170 acpi_gbl_gpe_fadt_blocks
171 [i]);
172 if (gpe_info) {
173 return (gpe_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 }
175 }
176
177 /* The gpe_number was not in the range of either FADT GPE block */
178
179 return (NULL);
180 }
181
182 /* A Non-NULL gpe_device means this is a GPE Block Device */
183
Len Brownfd350942007-05-09 23:34:35 -0400184 obj_desc = acpi_ns_get_attached_object((struct acpi_namespace_node *)
185 gpe_device);
Len Brown4be44fc2005-08-05 00:44:28 -0400186 if (!obj_desc || !obj_desc->device.gpe_block) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 return (NULL);
188 }
189
Lin Ming0f849d22010-04-06 14:52:37 +0800190 return (acpi_ev_low_get_gpe_info
191 (gpe_number, obj_desc->device.gpe_block));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192}
193
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194/*******************************************************************************
195 *
196 * FUNCTION: acpi_ev_gpe_detect
197 *
198 * PARAMETERS: gpe_xrupt_list - Interrupt block for this interrupt.
199 * Can have multiple GPE blocks attached.
200 *
201 * RETURN: INTERRUPT_HANDLED or INTERRUPT_NOT_HANDLED
202 *
Bob Moore9f15fc62008-11-12 16:01:56 +0800203 * DESCRIPTION: Detect if any GP events have occurred. This function is
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 * executed at interrupt level.
205 *
206 ******************************************************************************/
207
Len Brown4be44fc2005-08-05 00:44:28 -0400208u32 acpi_ev_gpe_detect(struct acpi_gpe_xrupt_info * gpe_xrupt_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209{
Len Brown4be44fc2005-08-05 00:44:28 -0400210 acpi_status status;
211 struct acpi_gpe_block_info *gpe_block;
Bob Moore08978312005-10-21 00:00:00 -0400212 struct acpi_gpe_register_info *gpe_register_info;
213 u32 int_status = ACPI_INTERRUPT_NOT_HANDLED;
214 u8 enabled_status_byte;
215 u32 status_reg;
216 u32 enable_reg;
Bob Mooreb8e4d892006-01-27 16:43:00 -0500217 acpi_cpu_flags flags;
Bob Moore67a119f2008-06-10 13:42:13 +0800218 u32 i;
219 u32 j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
Bob Mooreb229cf92006-04-21 17:15:00 -0400221 ACPI_FUNCTION_NAME(ev_gpe_detect);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
223 /* Check for the case where there are no GPEs */
224
225 if (!gpe_xrupt_list) {
226 return (int_status);
227 }
228
Bob Moore967440e2006-06-23 17:04:00 -0400229 /*
230 * We need to obtain the GPE lock for both the data structs and registers
Bob Moore9f15fc62008-11-12 16:01:56 +0800231 * Note: Not necessary to obtain the hardware lock, since the GPE
232 * registers are owned by the gpe_lock.
Bob Moore967440e2006-06-23 17:04:00 -0400233 */
Len Brown4be44fc2005-08-05 00:44:28 -0400234 flags = acpi_os_acquire_lock(acpi_gbl_gpe_lock);
Bob Moore4c90ece2006-06-08 16:29:00 -0400235
236 /* Examine all GPE blocks attached to this interrupt level */
237
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 gpe_block = gpe_xrupt_list->gpe_block_list_head;
239 while (gpe_block) {
240 /*
Bob Moore9f15fc62008-11-12 16:01:56 +0800241 * Read all of the 8-bit GPE status and enable registers in this GPE
242 * block, saving all of them. Find all currently active GP events.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 */
244 for (i = 0; i < gpe_block->register_count; i++) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400245
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 /* Get the next status/enable pair */
247
248 gpe_register_info = &gpe_block->register_info[i];
249
250 /* Read the Status Register */
251
Len Brown4be44fc2005-08-05 00:44:28 -0400252 status =
Bob Moorec6b57742009-06-24 09:44:06 +0800253 acpi_hw_read(&status_reg,
254 &gpe_register_info->status_address);
Len Brown4be44fc2005-08-05 00:44:28 -0400255 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 goto unlock_and_exit;
257 }
258
259 /* Read the Enable Register */
260
Len Brown4be44fc2005-08-05 00:44:28 -0400261 status =
Bob Moorec6b57742009-06-24 09:44:06 +0800262 acpi_hw_read(&enable_reg,
263 &gpe_register_info->enable_address);
Len Brown4be44fc2005-08-05 00:44:28 -0400264 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 goto unlock_and_exit;
266 }
267
Len Brown4be44fc2005-08-05 00:44:28 -0400268 ACPI_DEBUG_PRINT((ACPI_DB_INTERRUPTS,
269 "Read GPE Register at GPE%X: Status=%02X, Enable=%02X\n",
270 gpe_register_info->base_gpe_number,
271 status_reg, enable_reg));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
Robert Moore44f6c012005-04-18 22:49:35 -0400273 /* Check if there is anything active at all in this register */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
275 enabled_status_byte = (u8) (status_reg & enable_reg);
276 if (!enabled_status_byte) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400277
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 /* No active GPEs in this register, move on */
279
280 continue;
281 }
282
283 /* Now look at the individual GPEs in this byte register */
284
285 for (j = 0; j < ACPI_GPE_REGISTER_WIDTH; j++) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400286
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 /* Examine one GPE bit */
288
Alexey Starikovskiy69874162007-02-02 19:48:19 +0300289 if (enabled_status_byte & (1 << j)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 /*
291 * Found an active GPE. Dispatch the event to a handler
292 * or method.
293 */
Len Brown4be44fc2005-08-05 00:44:28 -0400294 int_status |=
295 acpi_ev_gpe_dispatch(&gpe_block->
Bob Moore67a119f2008-06-10 13:42:13 +0800296 event_info[((acpi_size) i * ACPI_GPE_REGISTER_WIDTH) + j], j + gpe_register_info->base_gpe_number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 }
298 }
299 }
300
301 gpe_block = gpe_block->next;
302 }
303
Len Brown4be44fc2005-08-05 00:44:28 -0400304 unlock_and_exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
Len Brown4be44fc2005-08-05 00:44:28 -0400306 acpi_os_release_lock(acpi_gbl_gpe_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 return (int_status);
308}
309
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310/*******************************************************************************
311 *
312 * FUNCTION: acpi_ev_asynch_execute_gpe_method
313 *
314 * PARAMETERS: Context (gpe_event_info) - Info for this GPE
315 *
316 * RETURN: None
317 *
Bob Moore41195322006-05-26 16:36:00 -0400318 * DESCRIPTION: Perform the actual execution of a GPE control method. This
319 * function is called from an invocation of acpi_os_execute and
320 * therefore does NOT execute at interrupt level - so that
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 * the control method itself is not executed in the context of
322 * an interrupt handler.
323 *
324 ******************************************************************************/
Alexey Starikovskiy17bc54e2007-11-13 13:05:45 +0300325static void acpi_ev_asynch_enable_gpe(void *context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
Len Brown4be44fc2005-08-05 00:44:28 -0400327static void ACPI_SYSTEM_XFACE acpi_ev_asynch_execute_gpe_method(void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328{
Len Brown4be44fc2005-08-05 00:44:28 -0400329 struct acpi_gpe_event_info *gpe_event_info = (void *)context;
Len Brown4be44fc2005-08-05 00:44:28 -0400330 acpi_status status;
331 struct acpi_gpe_event_info local_gpe_event_info;
Bob Moore41195322006-05-26 16:36:00 -0400332 struct acpi_evaluate_info *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
Bob Mooreb229cf92006-04-21 17:15:00 -0400334 ACPI_FUNCTION_TRACE(ev_asynch_execute_gpe_method);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
Len Brown4be44fc2005-08-05 00:44:28 -0400336 status = acpi_ut_acquire_mutex(ACPI_MTX_EVENTS);
337 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 return_VOID;
339 }
340
341 /* Must revalidate the gpe_number/gpe_block */
342
Len Brown4be44fc2005-08-05 00:44:28 -0400343 if (!acpi_ev_valid_gpe_event(gpe_event_info)) {
344 status = acpi_ut_release_mutex(ACPI_MTX_EVENTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 return_VOID;
346 }
347
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 /*
Bob Moore9f15fc62008-11-12 16:01:56 +0800349 * Take a snapshot of the GPE info for this level - we copy the info to
350 * prevent a race condition with remove_handler/remove_block.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 */
Len Brown4be44fc2005-08-05 00:44:28 -0400352 ACPI_MEMCPY(&local_gpe_event_info, gpe_event_info,
353 sizeof(struct acpi_gpe_event_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
Len Brown4be44fc2005-08-05 00:44:28 -0400355 status = acpi_ut_release_mutex(ACPI_MTX_EVENTS);
356 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 return_VOID;
358 }
359
360 /*
Bob Moore9f15fc62008-11-12 16:01:56 +0800361 * Must check for control method type dispatch one more time to avoid a
362 * race with ev_gpe_install_handler
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 */
Robert Moore44f6c012005-04-18 22:49:35 -0400364 if ((local_gpe_event_info.flags & ACPI_GPE_DISPATCH_MASK) ==
Len Brown4be44fc2005-08-05 00:44:28 -0400365 ACPI_GPE_DISPATCH_METHOD) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
Bob Moore41195322006-05-26 16:36:00 -0400367 /* Allocate the evaluation information block */
368
369 info = ACPI_ALLOCATE_ZEROED(sizeof(struct acpi_evaluate_info));
370 if (!info) {
371 status = AE_NO_MEMORY;
372 } else {
373 /*
374 * Invoke the GPE Method (_Lxx, _Exx) i.e., evaluate the _Lxx/_Exx
375 * control method that corresponds to this GPE
376 */
377 info->prefix_node =
378 local_gpe_event_info.dispatch.method_node;
Bob Moore41195322006-05-26 16:36:00 -0400379 info->flags = ACPI_IGNORE_RETURN_VALUE;
380
381 status = acpi_ns_evaluate(info);
382 ACPI_FREE(info);
383 }
384
Len Brown4be44fc2005-08-05 00:44:28 -0400385 if (ACPI_FAILURE(status)) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500386 ACPI_EXCEPTION((AE_INFO, status,
Bob Moore2e420052007-02-02 19:48:18 +0300387 "while evaluating GPE method [%4.4s]",
Bob Mooreb8e4d892006-01-27 16:43:00 -0500388 acpi_ut_get_node_name
389 (local_gpe_event_info.dispatch.
Bob Moore4c90ece2006-06-08 16:29:00 -0400390 method_node)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 }
392 }
Alexey Starikovskiy17bc54e2007-11-13 13:05:45 +0300393 /* Defer enabling of GPE until all notify handlers are done */
394 acpi_os_execute(OSL_NOTIFY_HANDLER, acpi_ev_asynch_enable_gpe,
395 gpe_event_info);
396 return_VOID;
397}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
Alexey Starikovskiy17bc54e2007-11-13 13:05:45 +0300399static void acpi_ev_asynch_enable_gpe(void *context)
400{
401 struct acpi_gpe_event_info *gpe_event_info = context;
402 acpi_status status;
403 if ((gpe_event_info->flags & ACPI_GPE_XRUPT_TYPE_MASK) ==
Len Brown4be44fc2005-08-05 00:44:28 -0400404 ACPI_GPE_LEVEL_TRIGGERED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 /*
Bob Moore9f15fc62008-11-12 16:01:56 +0800406 * GPE is level-triggered, we clear the GPE status bit after handling
407 * the event.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 */
Alexey Starikovskiy17bc54e2007-11-13 13:05:45 +0300409 status = acpi_hw_clear_gpe(gpe_event_info);
Len Brown4be44fc2005-08-05 00:44:28 -0400410 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 return_VOID;
412 }
413 }
414
415 /* Enable this GPE */
Alexey Starikovskiy17bc54e2007-11-13 13:05:45 +0300416 (void)acpi_hw_write_gpe_enable_reg(gpe_event_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 return_VOID;
418}
419
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420/*******************************************************************************
421 *
422 * FUNCTION: acpi_ev_gpe_dispatch
423 *
Robert Moore44f6c012005-04-18 22:49:35 -0400424 * PARAMETERS: gpe_event_info - Info for this GPE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 * gpe_number - Number relative to the parent GPE block
426 *
427 * RETURN: INTERRUPT_HANDLED or INTERRUPT_NOT_HANDLED
428 *
429 * DESCRIPTION: Dispatch a General Purpose Event to either a function (e.g. EC)
430 * or method (e.g. _Lxx/_Exx) handler.
431 *
432 * This function executes at interrupt level.
433 *
434 ******************************************************************************/
435
436u32
Len Brown4be44fc2005-08-05 00:44:28 -0400437acpi_ev_gpe_dispatch(struct acpi_gpe_event_info *gpe_event_info, u32 gpe_number)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438{
Len Brown4be44fc2005-08-05 00:44:28 -0400439 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
Bob Mooreb229cf92006-04-21 17:15:00 -0400441 ACPI_FUNCTION_TRACE(ev_gpe_dispatch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
Len Brown5229e872008-02-06 01:26:55 -0500443 acpi_os_gpe_count(gpe_number);
Bob Moorefdffb722007-02-02 19:48:19 +0300444
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 /*
Bob Moore9f15fc62008-11-12 16:01:56 +0800446 * If edge-triggered, clear the GPE status bit now. Note that
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 * level-triggered events are cleared after the GPE is serviced.
448 */
Robert Moore44f6c012005-04-18 22:49:35 -0400449 if ((gpe_event_info->flags & ACPI_GPE_XRUPT_TYPE_MASK) ==
Len Brown4be44fc2005-08-05 00:44:28 -0400450 ACPI_GPE_EDGE_TRIGGERED) {
451 status = acpi_hw_clear_gpe(gpe_event_info);
452 if (ACPI_FAILURE(status)) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500453 ACPI_EXCEPTION((AE_INFO, status,
Bob Mooref6a22b02010-03-05 17:56:40 +0800454 "Unable to clear GPE[0x%2X]",
Bob Mooreb8e4d892006-01-27 16:43:00 -0500455 gpe_number));
Bob Moore50eca3e2005-09-30 19:03:00 -0400456 return_UINT32(ACPI_INTERRUPT_NOT_HANDLED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 }
458 }
459
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 /*
Bob Moorec5a71562007-02-02 19:48:19 +0300461 * Dispatch the GPE to either an installed handler, or the control method
462 * associated with this GPE (_Lxx or _Exx). If a handler exists, we invoke
463 * it and do not attempt to run the method. If there is neither a handler
464 * nor a method, we disable this GPE to prevent further such pointless
465 * events from firing.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 */
467 switch (gpe_event_info->flags & ACPI_GPE_DISPATCH_MASK) {
468 case ACPI_GPE_DISPATCH_HANDLER:
469
470 /*
471 * Invoke the installed handler (at interrupt level)
Bob Moore9f15fc62008-11-12 16:01:56 +0800472 * Ignore return status for now.
473 * TBD: leave GPE disabled on error?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 */
Len Brown4be44fc2005-08-05 00:44:28 -0400475 (void)gpe_event_info->dispatch.handler->address(gpe_event_info->
476 dispatch.
477 handler->
478 context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
480 /* It is now safe to clear level-triggered events. */
481
Robert Moore44f6c012005-04-18 22:49:35 -0400482 if ((gpe_event_info->flags & ACPI_GPE_XRUPT_TYPE_MASK) ==
Len Brown4be44fc2005-08-05 00:44:28 -0400483 ACPI_GPE_LEVEL_TRIGGERED) {
484 status = acpi_hw_clear_gpe(gpe_event_info);
485 if (ACPI_FAILURE(status)) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500486 ACPI_EXCEPTION((AE_INFO, status,
Bob Mooref6a22b02010-03-05 17:56:40 +0800487 "Unable to clear GPE[0x%2X]",
Bob Mooreb8e4d892006-01-27 16:43:00 -0500488 gpe_number));
Bob Moore50eca3e2005-09-30 19:03:00 -0400489 return_UINT32(ACPI_INTERRUPT_NOT_HANDLED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 }
491 }
492 break;
493
494 case ACPI_GPE_DISPATCH_METHOD:
495
496 /*
Bob Moorec5a71562007-02-02 19:48:19 +0300497 * Disable the GPE, so it doesn't keep firing before the method has a
498 * chance to run (it runs asynchronously with interrupts enabled).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 */
Rafael J. Wysockifd247442010-06-08 10:49:08 +0200500 status = acpi_hw_low_set_gpe(gpe_event_info, ACPI_GPE_DISABLE);
Len Brown4be44fc2005-08-05 00:44:28 -0400501 if (ACPI_FAILURE(status)) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500502 ACPI_EXCEPTION((AE_INFO, status,
Bob Mooref6a22b02010-03-05 17:56:40 +0800503 "Unable to disable GPE[0x%2X]",
Bob Mooreb8e4d892006-01-27 16:43:00 -0500504 gpe_number));
Bob Moore50eca3e2005-09-30 19:03:00 -0400505 return_UINT32(ACPI_INTERRUPT_NOT_HANDLED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 }
507
508 /*
509 * Execute the method associated with the GPE
510 * NOTE: Level-triggered GPEs are cleared after the method completes.
511 */
Bob Moore958dd242006-05-12 17:12:00 -0400512 status = acpi_os_execute(OSL_GPE_HANDLER,
513 acpi_ev_asynch_execute_gpe_method,
514 gpe_event_info);
Len Brown4be44fc2005-08-05 00:44:28 -0400515 if (ACPI_FAILURE(status)) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500516 ACPI_EXCEPTION((AE_INFO, status,
Bob Mooref6a22b02010-03-05 17:56:40 +0800517 "Unable to queue handler for GPE[0x%2X] - event disabled",
Bob Mooreb8e4d892006-01-27 16:43:00 -0500518 gpe_number));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 }
520 break;
521
522 default:
523
Lin Ming0f849d22010-04-06 14:52:37 +0800524 /*
525 * No handler or method to run!
526 * 03/2010: This case should no longer be possible. We will not allow
527 * a GPE to be enabled if it has no handler or method.
528 */
Bob Mooreb8e4d892006-01-27 16:43:00 -0500529 ACPI_ERROR((AE_INFO,
Bob Mooref6a22b02010-03-05 17:56:40 +0800530 "No handler or method for GPE[0x%2X], disabling event",
Bob Mooreb8e4d892006-01-27 16:43:00 -0500531 gpe_number));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
533 /*
Lin Ming0f849d22010-04-06 14:52:37 +0800534 * Disable the GPE. The GPE will remain disabled a handler
535 * is installed or ACPICA is restarted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 */
Rafael J. Wysockifd247442010-06-08 10:49:08 +0200537 status = acpi_hw_low_set_gpe(gpe_event_info, ACPI_GPE_DISABLE);
Len Brown4be44fc2005-08-05 00:44:28 -0400538 if (ACPI_FAILURE(status)) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500539 ACPI_EXCEPTION((AE_INFO, status,
Bob Mooref6a22b02010-03-05 17:56:40 +0800540 "Unable to disable GPE[0x%2X]",
Bob Mooreb8e4d892006-01-27 16:43:00 -0500541 gpe_number));
Bob Moore50eca3e2005-09-30 19:03:00 -0400542 return_UINT32(ACPI_INTERRUPT_NOT_HANDLED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 }
544 break;
545 }
546
Bob Moore50eca3e2005-09-30 19:03:00 -0400547 return_UINT32(ACPI_INTERRUPT_HANDLED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548}