blob: 3db3c5669ca23fa3593b6ccbe6d2160ae7f6c2f1 [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 Moore77848132012-01-12 13:27:23 +08008 * Copyright (C) 2000 - 2012, 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")
Bob Moore33620c52012-02-14 18:14:27 +080051#if (!ACPI_REDUCED_HARDWARE) /* Entire module */
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
Lin Ming5a284cd2010-12-13 13:39:07 +080055static void ACPI_SYSTEM_XFACE acpi_ev_asynch_enable_gpe(void *context);
56
Linus Torvalds1da177e2005-04-16 15:20:36 -070057/*******************************************************************************
58 *
Rafael J. Wysockia44061a2010-07-01 10:11:45 +080059 * FUNCTION: acpi_ev_update_gpe_enable_mask
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 *
61 * PARAMETERS: gpe_event_info - GPE to update
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 *
63 * RETURN: Status
64 *
Rafael J. Wysockia44061a2010-07-01 10:11:45 +080065 * DESCRIPTION: Updates GPE register enable mask based upon whether there are
66 * runtime references to this GPE
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 *
68 ******************************************************************************/
69
70acpi_status
Rafael J. Wysockia44061a2010-07-01 10:11:45 +080071acpi_ev_update_gpe_enable_mask(struct acpi_gpe_event_info *gpe_event_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -070072{
Len Brown4be44fc2005-08-05 00:44:28 -040073 struct acpi_gpe_register_info *gpe_register_info;
Rafael J. Wysockie4e9a732010-06-08 10:48:26 +020074 u32 register_bit;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Rafael J. Wysockia44061a2010-07-01 10:11:45 +080076 ACPI_FUNCTION_TRACE(ev_update_gpe_enable_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
78 gpe_register_info = gpe_event_info->register_info;
79 if (!gpe_register_info) {
Len Brown4be44fc2005-08-05 00:44:28 -040080 return_ACPI_STATUS(AE_NOT_EXIST);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 }
Bob Moored4913dc2009-03-06 10:05:18 +080082
Lin Mingb76df672010-07-01 10:07:17 +080083 register_bit = acpi_hw_get_gpe_register_bit(gpe_event_info,
Rafael J. Wysockie4e9a732010-06-08 10:48:26 +020084 gpe_register_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
Rafael J. Wysockia44061a2010-07-01 10:11:45 +080086 /* Clear the run bit up front */
Lin Ming0f849d22010-04-06 14:52:37 +080087
Rafael J. Wysocki9630bdd2010-02-17 23:41:07 +010088 ACPI_CLEAR_BIT(gpe_register_info->enable_for_run, register_bit);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
Rafael J. Wysockia44061a2010-07-01 10:11:45 +080090 /* Set the mask bit only if there are references to this GPE */
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
Lin Ming0f849d22010-04-06 14:52:37 +080092 if (gpe_event_info->runtime_count) {
Rafael J. Wysockia44061a2010-07-01 10:11:45 +080093 ACPI_SET_BIT(gpe_register_info->enable_for_run, (u8)register_bit);
Lin Ming0f849d22010-04-06 14:52:37 +080094 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
Len Brown4be44fc2005-08-05 00:44:28 -040096 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097}
98
Rafael J. Wysocki3bd741b2010-07-01 11:01:12 +080099/*******************************************************************************
100 *
101 * FUNCTION: acpi_ev_enable_gpe
102 *
103 * PARAMETERS: gpe_event_info - GPE to enable
104 *
105 * RETURN: Status
106 *
Lin Mingda503372010-12-13 13:39:37 +0800107 * DESCRIPTION: Clear a GPE of stale events and enable it.
Rafael J. Wysocki3bd741b2010-07-01 11:01:12 +0800108 *
109 ******************************************************************************/
110acpi_status
111acpi_ev_enable_gpe(struct acpi_gpe_event_info *gpe_event_info)
112{
113 acpi_status status;
114
115 ACPI_FUNCTION_TRACE(ev_enable_gpe);
116
117 /*
Lin Mingbba63a22010-12-13 13:39:17 +0800118 * We will only allow a GPE to be enabled if it has either an associated
119 * method (_Lxx/_Exx) or a handler, or is using the implicit notify
120 * feature. Otherwise, the GPE will be immediately disabled by
121 * acpi_ev_gpe_dispatch the first time it fires.
Rafael J. Wysocki3bd741b2010-07-01 11:01:12 +0800122 */
Lin Mingbba63a22010-12-13 13:39:17 +0800123 if ((gpe_event_info->flags & ACPI_GPE_DISPATCH_MASK) ==
124 ACPI_GPE_DISPATCH_NONE) {
Rafael J. Wysocki3bd741b2010-07-01 11:01:12 +0800125 return_ACPI_STATUS(AE_NO_HANDLER);
126 }
127
128 /* Clear the GPE (of stale events) */
129 status = acpi_hw_clear_gpe(gpe_event_info);
130 if (ACPI_FAILURE(status)) {
131 return_ACPI_STATUS(status);
132 }
133
134 /* Enable the requested GPE */
135 status = acpi_hw_low_set_gpe(gpe_event_info, ACPI_GPE_ENABLE);
136
137 return_ACPI_STATUS(status);
138}
139
Lin Ming0f849d22010-04-06 14:52:37 +0800140
141/*******************************************************************************
142 *
Lin Ming3a378982010-12-13 13:36:15 +0800143 * FUNCTION: acpi_ev_add_gpe_reference
Rafael J. Wysocki28f4f8a2010-08-03 23:55:14 +0200144 *
Lin Mingda503372010-12-13 13:39:37 +0800145 * PARAMETERS: gpe_event_info - Add a reference to this GPE
Rafael J. Wysocki28f4f8a2010-08-03 23:55:14 +0200146 *
147 * RETURN: Status
148 *
149 * DESCRIPTION: Add a reference to a GPE. On the first reference, the GPE is
150 * hardware-enabled.
151 *
152 ******************************************************************************/
153
Lin Ming3a378982010-12-13 13:36:15 +0800154acpi_status acpi_ev_add_gpe_reference(struct acpi_gpe_event_info *gpe_event_info)
Rafael J. Wysocki28f4f8a2010-08-03 23:55:14 +0200155{
156 acpi_status status = AE_OK;
157
Lin Ming3a378982010-12-13 13:36:15 +0800158 ACPI_FUNCTION_TRACE(ev_add_gpe_reference);
159
Rafael J. Wysocki28f4f8a2010-08-03 23:55:14 +0200160 if (gpe_event_info->runtime_count == ACPI_UINT8_MAX) {
161 return_ACPI_STATUS(AE_LIMIT);
162 }
163
164 gpe_event_info->runtime_count++;
165 if (gpe_event_info->runtime_count == 1) {
Lin Mingda503372010-12-13 13:39:37 +0800166
167 /* Enable on first reference */
168
Rafael J. Wysocki28f4f8a2010-08-03 23:55:14 +0200169 status = acpi_ev_update_gpe_enable_mask(gpe_event_info);
170 if (ACPI_SUCCESS(status)) {
171 status = acpi_ev_enable_gpe(gpe_event_info);
172 }
173
174 if (ACPI_FAILURE(status)) {
175 gpe_event_info->runtime_count--;
176 }
177 }
178
179 return_ACPI_STATUS(status);
180}
181
182/*******************************************************************************
183 *
Lin Ming3a378982010-12-13 13:36:15 +0800184 * FUNCTION: acpi_ev_remove_gpe_reference
Rafael J. Wysocki28f4f8a2010-08-03 23:55:14 +0200185 *
Lin Mingda503372010-12-13 13:39:37 +0800186 * PARAMETERS: gpe_event_info - Remove a reference to this GPE
Rafael J. Wysocki28f4f8a2010-08-03 23:55:14 +0200187 *
188 * RETURN: Status
189 *
190 * DESCRIPTION: Remove a reference to a GPE. When the last reference is
191 * removed, the GPE is hardware-disabled.
192 *
193 ******************************************************************************/
194
Lin Ming3a378982010-12-13 13:36:15 +0800195acpi_status acpi_ev_remove_gpe_reference(struct acpi_gpe_event_info *gpe_event_info)
Rafael J. Wysocki28f4f8a2010-08-03 23:55:14 +0200196{
197 acpi_status status = AE_OK;
198
Lin Ming3a378982010-12-13 13:36:15 +0800199 ACPI_FUNCTION_TRACE(ev_remove_gpe_reference);
200
Rafael J. Wysocki28f4f8a2010-08-03 23:55:14 +0200201 if (!gpe_event_info->runtime_count) {
202 return_ACPI_STATUS(AE_LIMIT);
203 }
204
205 gpe_event_info->runtime_count--;
206 if (!gpe_event_info->runtime_count) {
Lin Mingda503372010-12-13 13:39:37 +0800207
208 /* Disable on last reference */
209
Rafael J. Wysocki28f4f8a2010-08-03 23:55:14 +0200210 status = acpi_ev_update_gpe_enable_mask(gpe_event_info);
211 if (ACPI_SUCCESS(status)) {
212 status = acpi_hw_low_set_gpe(gpe_event_info,
213 ACPI_GPE_DISABLE);
214 }
215
216 if (ACPI_FAILURE(status)) {
217 gpe_event_info->runtime_count++;
218 }
219 }
220
221 return_ACPI_STATUS(status);
222}
223
224/*******************************************************************************
225 *
Lin Ming0f849d22010-04-06 14:52:37 +0800226 * FUNCTION: acpi_ev_low_get_gpe_info
227 *
228 * PARAMETERS: gpe_number - Raw GPE number
229 * gpe_block - A GPE info block
230 *
231 * RETURN: A GPE event_info struct. NULL if not a valid GPE (The gpe_number
232 * is not within the specified GPE block)
233 *
234 * DESCRIPTION: Returns the event_info struct associated with this GPE. This is
235 * the low-level implementation of ev_get_gpe_event_info.
236 *
237 ******************************************************************************/
238
239struct acpi_gpe_event_info *acpi_ev_low_get_gpe_info(u32 gpe_number,
240 struct acpi_gpe_block_info
241 *gpe_block)
242{
243 u32 gpe_index;
244
245 /*
246 * Validate that the gpe_number is within the specified gpe_block.
247 * (Two steps)
248 */
249 if (!gpe_block || (gpe_number < gpe_block->block_base_number)) {
250 return (NULL);
251 }
252
253 gpe_index = gpe_number - gpe_block->block_base_number;
254 if (gpe_index >= gpe_block->gpe_count) {
255 return (NULL);
256 }
257
258 return (&gpe_block->event_info[gpe_index]);
259}
260
261
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262/*******************************************************************************
263 *
264 * FUNCTION: acpi_ev_get_gpe_event_info
265 *
Bob Moore9f15fc62008-11-12 16:01:56 +0800266 * PARAMETERS: gpe_device - Device node. NULL for GPE0/GPE1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 * gpe_number - Raw GPE number
268 *
269 * RETURN: A GPE event_info struct. NULL if not a valid GPE
270 *
271 * DESCRIPTION: Returns the event_info struct associated with this GPE.
272 * Validates the gpe_block and the gpe_number
273 *
274 * Should be called only when the GPE lists are semaphore locked
275 * and not subject to change.
276 *
277 ******************************************************************************/
278
Len Brown4be44fc2005-08-05 00:44:28 -0400279struct acpi_gpe_event_info *acpi_ev_get_gpe_event_info(acpi_handle gpe_device,
280 u32 gpe_number)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281{
Len Brown4be44fc2005-08-05 00:44:28 -0400282 union acpi_operand_object *obj_desc;
Lin Ming0f849d22010-04-06 14:52:37 +0800283 struct acpi_gpe_event_info *gpe_info;
Bob Moore67a119f2008-06-10 13:42:13 +0800284 u32 i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
Len Brown4be44fc2005-08-05 00:44:28 -0400286 ACPI_FUNCTION_ENTRY();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
Bob Moore186c3072010-04-27 11:32:28 +0800288 /* A NULL gpe_device means use the FADT-defined GPE block(s) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
290 if (!gpe_device) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400291
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 /* Examine GPE Block 0 and 1 (These blocks are permanent) */
293
294 for (i = 0; i < ACPI_MAX_GPE_BLOCKS; i++) {
Lin Ming0f849d22010-04-06 14:52:37 +0800295 gpe_info = acpi_ev_low_get_gpe_info(gpe_number,
296 acpi_gbl_gpe_fadt_blocks
297 [i]);
298 if (gpe_info) {
299 return (gpe_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 }
301 }
302
303 /* The gpe_number was not in the range of either FADT GPE block */
304
305 return (NULL);
306 }
307
308 /* A Non-NULL gpe_device means this is a GPE Block Device */
309
Len Brownfd350942007-05-09 23:34:35 -0400310 obj_desc = acpi_ns_get_attached_object((struct acpi_namespace_node *)
311 gpe_device);
Len Brown4be44fc2005-08-05 00:44:28 -0400312 if (!obj_desc || !obj_desc->device.gpe_block) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 return (NULL);
314 }
315
Lin Ming0f849d22010-04-06 14:52:37 +0800316 return (acpi_ev_low_get_gpe_info
317 (gpe_number, obj_desc->device.gpe_block));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318}
319
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320/*******************************************************************************
321 *
322 * FUNCTION: acpi_ev_gpe_detect
323 *
324 * PARAMETERS: gpe_xrupt_list - Interrupt block for this interrupt.
325 * Can have multiple GPE blocks attached.
326 *
327 * RETURN: INTERRUPT_HANDLED or INTERRUPT_NOT_HANDLED
328 *
Bob Moore9f15fc62008-11-12 16:01:56 +0800329 * DESCRIPTION: Detect if any GP events have occurred. This function is
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 * executed at interrupt level.
331 *
332 ******************************************************************************/
333
Len Brown4be44fc2005-08-05 00:44:28 -0400334u32 acpi_ev_gpe_detect(struct acpi_gpe_xrupt_info * gpe_xrupt_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335{
Len Brown4be44fc2005-08-05 00:44:28 -0400336 acpi_status status;
337 struct acpi_gpe_block_info *gpe_block;
Bob Moore08978312005-10-21 00:00:00 -0400338 struct acpi_gpe_register_info *gpe_register_info;
339 u32 int_status = ACPI_INTERRUPT_NOT_HANDLED;
340 u8 enabled_status_byte;
341 u32 status_reg;
342 u32 enable_reg;
Bob Mooreb8e4d892006-01-27 16:43:00 -0500343 acpi_cpu_flags flags;
Bob Moore67a119f2008-06-10 13:42:13 +0800344 u32 i;
345 u32 j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
Bob Mooreb229cf92006-04-21 17:15:00 -0400347 ACPI_FUNCTION_NAME(ev_gpe_detect);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
349 /* Check for the case where there are no GPEs */
350
351 if (!gpe_xrupt_list) {
352 return (int_status);
353 }
354
Bob Moore967440e32006-06-23 17:04:00 -0400355 /*
356 * We need to obtain the GPE lock for both the data structs and registers
Bob Moore9f15fc62008-11-12 16:01:56 +0800357 * Note: Not necessary to obtain the hardware lock, since the GPE
358 * registers are owned by the gpe_lock.
Bob Moore967440e32006-06-23 17:04:00 -0400359 */
Len Brown4be44fc2005-08-05 00:44:28 -0400360 flags = acpi_os_acquire_lock(acpi_gbl_gpe_lock);
Bob Moore4c90ece2006-06-08 16:29:00 -0400361
362 /* Examine all GPE blocks attached to this interrupt level */
363
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 gpe_block = gpe_xrupt_list->gpe_block_list_head;
365 while (gpe_block) {
366 /*
Bob Moore9f15fc62008-11-12 16:01:56 +0800367 * Read all of the 8-bit GPE status and enable registers in this GPE
368 * block, saving all of them. Find all currently active GP events.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 */
370 for (i = 0; i < gpe_block->register_count; i++) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400371
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 /* Get the next status/enable pair */
373
374 gpe_register_info = &gpe_block->register_info[i];
375
Lin Ming6dfad332011-02-14 15:29:34 +0800376 /*
377 * Optimization: If there are no GPEs enabled within this
378 * register, we can safely ignore the entire register.
379 */
380 if (!(gpe_register_info->enable_for_run |
381 gpe_register_info->enable_for_wake)) {
Bob Mooree1154eb2012-08-17 10:55:14 +0800382 ACPI_DEBUG_PRINT((ACPI_DB_INTERRUPTS,
383 "Ignore disabled registers for GPE%02X-GPE%02X: "
384 "RunEnable=%02X, WakeEnable=%02X\n",
385 gpe_register_info->
386 base_gpe_number,
387 gpe_register_info->
388 base_gpe_number +
389 (ACPI_GPE_REGISTER_WIDTH - 1),
390 gpe_register_info->
391 enable_for_run,
392 gpe_register_info->
393 enable_for_wake));
Lin Ming6dfad332011-02-14 15:29:34 +0800394 continue;
395 }
396
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 /* Read the Status Register */
398
Len Brown4be44fc2005-08-05 00:44:28 -0400399 status =
Bob Moorec6b57742009-06-24 09:44:06 +0800400 acpi_hw_read(&status_reg,
401 &gpe_register_info->status_address);
Len Brown4be44fc2005-08-05 00:44:28 -0400402 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 goto unlock_and_exit;
404 }
405
406 /* Read the Enable Register */
407
Len Brown4be44fc2005-08-05 00:44:28 -0400408 status =
Bob Moorec6b57742009-06-24 09:44:06 +0800409 acpi_hw_read(&enable_reg,
410 &gpe_register_info->enable_address);
Len Brown4be44fc2005-08-05 00:44:28 -0400411 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 goto unlock_and_exit;
413 }
414
Len Brown4be44fc2005-08-05 00:44:28 -0400415 ACPI_DEBUG_PRINT((ACPI_DB_INTERRUPTS,
Bob Mooree1154eb2012-08-17 10:55:14 +0800416 "Read registers for GPE%02X-GPE%02X: Status=%02X, Enable=%02X, "
417 "RunEnable=%02X, WakeEnable=%02X\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400418 gpe_register_info->base_gpe_number,
Bob Mooree1154eb2012-08-17 10:55:14 +0800419 gpe_register_info->base_gpe_number +
420 (ACPI_GPE_REGISTER_WIDTH - 1),
421 status_reg, enable_reg,
422 gpe_register_info->enable_for_run,
423 gpe_register_info->enable_for_wake));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
Robert Moore44f6c012005-04-18 22:49:35 -0400425 /* Check if there is anything active at all in this register */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
427 enabled_status_byte = (u8) (status_reg & enable_reg);
428 if (!enabled_status_byte) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400429
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 /* No active GPEs in this register, move on */
431
432 continue;
433 }
434
435 /* Now look at the individual GPEs in this byte register */
436
437 for (j = 0; j < ACPI_GPE_REGISTER_WIDTH; j++) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400438
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 /* Examine one GPE bit */
440
Alexey Starikovskiy69874162007-02-02 19:48:19 +0300441 if (enabled_status_byte & (1 << j)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 /*
443 * Found an active GPE. Dispatch the event to a handler
444 * or method.
445 */
Len Brown4be44fc2005-08-05 00:44:28 -0400446 int_status |=
Lin Ming8b6cd8a2010-12-13 13:38:46 +0800447 acpi_ev_gpe_dispatch(gpe_block->
448 node,
449 &gpe_block->
Bob Moore67a119f2008-06-10 13:42:13 +0800450 event_info[((acpi_size) i * ACPI_GPE_REGISTER_WIDTH) + j], j + gpe_register_info->base_gpe_number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 }
452 }
453 }
454
455 gpe_block = gpe_block->next;
456 }
457
Len Brown4be44fc2005-08-05 00:44:28 -0400458 unlock_and_exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
Len Brown4be44fc2005-08-05 00:44:28 -0400460 acpi_os_release_lock(acpi_gbl_gpe_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 return (int_status);
462}
463
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464/*******************************************************************************
465 *
466 * FUNCTION: acpi_ev_asynch_execute_gpe_method
467 *
468 * PARAMETERS: Context (gpe_event_info) - Info for this GPE
469 *
470 * RETURN: None
471 *
Bob Moore41195322006-05-26 16:36:00 -0400472 * DESCRIPTION: Perform the actual execution of a GPE control method. This
473 * function is called from an invocation of acpi_os_execute and
474 * therefore does NOT execute at interrupt level - so that
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 * the control method itself is not executed in the context of
476 * an interrupt handler.
477 *
478 ******************************************************************************/
479
Len Brown4be44fc2005-08-05 00:44:28 -0400480static void ACPI_SYSTEM_XFACE acpi_ev_asynch_execute_gpe_method(void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481{
Lin Ming5a284cd2010-12-13 13:39:07 +0800482 struct acpi_gpe_event_info *gpe_event_info = context;
Len Brown4be44fc2005-08-05 00:44:28 -0400483 acpi_status status;
Lin Ming5a284cd2010-12-13 13:39:07 +0800484 struct acpi_gpe_event_info *local_gpe_event_info;
Bob Moore41195322006-05-26 16:36:00 -0400485 struct acpi_evaluate_info *info;
Bob Moore5816b342012-06-29 10:04:17 +0800486 struct acpi_gpe_notify_info *notify;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
Bob Mooreb229cf92006-04-21 17:15:00 -0400488 ACPI_FUNCTION_TRACE(ev_asynch_execute_gpe_method);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
Lin Ming5a284cd2010-12-13 13:39:07 +0800490 /* Allocate a local GPE block */
491
492 local_gpe_event_info =
493 ACPI_ALLOCATE_ZEROED(sizeof(struct acpi_gpe_event_info));
494 if (!local_gpe_event_info) {
495 ACPI_EXCEPTION((AE_INFO, AE_NO_MEMORY, "while handling a GPE"));
496 return_VOID;
497 }
498
Len Brown4be44fc2005-08-05 00:44:28 -0400499 status = acpi_ut_acquire_mutex(ACPI_MTX_EVENTS);
500 if (ACPI_FAILURE(status)) {
Jesper Juhlbe33b762011-01-16 20:37:52 +0100501 ACPI_FREE(local_gpe_event_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 return_VOID;
503 }
504
505 /* Must revalidate the gpe_number/gpe_block */
506
Len Brown4be44fc2005-08-05 00:44:28 -0400507 if (!acpi_ev_valid_gpe_event(gpe_event_info)) {
508 status = acpi_ut_release_mutex(ACPI_MTX_EVENTS);
Jesper Juhlbe33b762011-01-16 20:37:52 +0100509 ACPI_FREE(local_gpe_event_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 return_VOID;
511 }
512
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 /*
Bob Moore9f15fc62008-11-12 16:01:56 +0800514 * Take a snapshot of the GPE info for this level - we copy the info to
515 * prevent a race condition with remove_handler/remove_block.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 */
Lin Ming5a284cd2010-12-13 13:39:07 +0800517 ACPI_MEMCPY(local_gpe_event_info, gpe_event_info,
Len Brown4be44fc2005-08-05 00:44:28 -0400518 sizeof(struct acpi_gpe_event_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
Len Brown4be44fc2005-08-05 00:44:28 -0400520 status = acpi_ut_release_mutex(ACPI_MTX_EVENTS);
521 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 return_VOID;
523 }
524
Lin Mingbba63a22010-12-13 13:39:17 +0800525 /* Do the correct dispatch - normal method or implicit notify */
526
527 switch (local_gpe_event_info->flags & ACPI_GPE_DISPATCH_MASK) {
528 case ACPI_GPE_DISPATCH_NOTIFY:
529
530 /*
531 * Implicit notify.
532 * Dispatch a DEVICE_WAKE notify to the appropriate handler.
533 * NOTE: the request is queued for execution after this method
534 * completes. The notify handlers are NOT invoked synchronously
535 * from this thread -- because handlers may in turn run other
536 * control methods.
Bob Moore5816b342012-06-29 10:04:17 +0800537 *
538 * June 2012: Expand implicit notify mechanism to support
539 * notifies on multiple device objects.
Lin Mingbba63a22010-12-13 13:39:17 +0800540 */
Bob Moore5816b342012-06-29 10:04:17 +0800541 notify = local_gpe_event_info->dispatch.notify_list;
542 while (ACPI_SUCCESS(status) && notify) {
543 status =
544 acpi_ev_queue_notify_request(notify->device_node,
545 ACPI_NOTIFY_DEVICE_WAKE);
Rafael J. Wysocki981858b2011-02-24 19:59:21 +0100546
Bob Moore5816b342012-06-29 10:04:17 +0800547 notify = notify->next;
Rafael J. Wysocki981858b2011-02-24 19:59:21 +0100548 }
549
Lin Mingbba63a22010-12-13 13:39:17 +0800550 break;
551
552 case ACPI_GPE_DISPATCH_METHOD:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
Bob Moore41195322006-05-26 16:36:00 -0400554 /* Allocate the evaluation information block */
555
556 info = ACPI_ALLOCATE_ZEROED(sizeof(struct acpi_evaluate_info));
557 if (!info) {
558 status = AE_NO_MEMORY;
559 } else {
560 /*
561 * Invoke the GPE Method (_Lxx, _Exx) i.e., evaluate the _Lxx/_Exx
562 * control method that corresponds to this GPE
563 */
564 info->prefix_node =
Lin Ming5a284cd2010-12-13 13:39:07 +0800565 local_gpe_event_info->dispatch.method_node;
Bob Moore41195322006-05-26 16:36:00 -0400566 info->flags = ACPI_IGNORE_RETURN_VALUE;
567
568 status = acpi_ns_evaluate(info);
569 ACPI_FREE(info);
570 }
571
Len Brown4be44fc2005-08-05 00:44:28 -0400572 if (ACPI_FAILURE(status)) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500573 ACPI_EXCEPTION((AE_INFO, status,
Bob Moore2e420052007-02-02 19:48:18 +0300574 "while evaluating GPE method [%4.4s]",
Bob Mooreb8e4d892006-01-27 16:43:00 -0500575 acpi_ut_get_node_name
Lin Ming5a284cd2010-12-13 13:39:07 +0800576 (local_gpe_event_info->dispatch.
Bob Moore4c90ece2006-06-08 16:29:00 -0400577 method_node)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 }
Lin Mingbba63a22010-12-13 13:39:17 +0800579
580 break;
581
582 default:
583 return_VOID; /* Should never happen */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 }
Lin Ming5a284cd2010-12-13 13:39:07 +0800585
Alexey Starikovskiy17bc54e2007-11-13 13:05:45 +0300586 /* Defer enabling of GPE until all notify handlers are done */
Lin Ming5a284cd2010-12-13 13:39:07 +0800587
588 status = acpi_os_execute(OSL_NOTIFY_HANDLER,
589 acpi_ev_asynch_enable_gpe,
590 local_gpe_event_info);
591 if (ACPI_FAILURE(status)) {
592 ACPI_FREE(local_gpe_event_info);
593 }
Alexey Starikovskiy17bc54e2007-11-13 13:05:45 +0300594 return_VOID;
595}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
Lin Mingbba63a22010-12-13 13:39:17 +0800597
Lin Ming5a284cd2010-12-13 13:39:07 +0800598/*******************************************************************************
599 *
600 * FUNCTION: acpi_ev_asynch_enable_gpe
601 *
602 * PARAMETERS: Context (gpe_event_info) - Info for this GPE
603 * Callback from acpi_os_execute
604 *
605 * RETURN: None
606 *
607 * DESCRIPTION: Asynchronous clear/enable for GPE. This allows the GPE to
Lin Mingbba63a22010-12-13 13:39:17 +0800608 * complete (i.e., finish execution of Notify)
Lin Ming5a284cd2010-12-13 13:39:07 +0800609 *
610 ******************************************************************************/
611
612static void ACPI_SYSTEM_XFACE acpi_ev_asynch_enable_gpe(void *context)
Alexey Starikovskiy17bc54e2007-11-13 13:05:45 +0300613{
614 struct acpi_gpe_event_info *gpe_event_info = context;
Lin Mingbba63a22010-12-13 13:39:17 +0800615
616 (void)acpi_ev_finish_gpe(gpe_event_info);
617
618 ACPI_FREE(gpe_event_info);
619 return;
620}
621
622
623/*******************************************************************************
624 *
625 * FUNCTION: acpi_ev_finish_gpe
626 *
627 * PARAMETERS: gpe_event_info - Info for this GPE
628 *
629 * RETURN: Status
630 *
631 * DESCRIPTION: Clear/Enable a GPE. Common code that is used after execution
632 * of a GPE method or a synchronous or asynchronous GPE handler.
633 *
634 ******************************************************************************/
635
636acpi_status acpi_ev_finish_gpe(struct acpi_gpe_event_info *gpe_event_info)
637{
Alexey Starikovskiy17bc54e2007-11-13 13:05:45 +0300638 acpi_status status;
Lin Ming5a284cd2010-12-13 13:39:07 +0800639
Alexey Starikovskiy17bc54e2007-11-13 13:05:45 +0300640 if ((gpe_event_info->flags & ACPI_GPE_XRUPT_TYPE_MASK) ==
Len Brown4be44fc2005-08-05 00:44:28 -0400641 ACPI_GPE_LEVEL_TRIGGERED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 /*
Lin Mingbba63a22010-12-13 13:39:17 +0800643 * GPE is level-triggered, we clear the GPE status bit after
644 * handling the event.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 */
Alexey Starikovskiy17bc54e2007-11-13 13:05:45 +0300646 status = acpi_hw_clear_gpe(gpe_event_info);
Len Brown4be44fc2005-08-05 00:44:28 -0400647 if (ACPI_FAILURE(status)) {
Lin Mingbba63a22010-12-13 13:39:17 +0800648 return (status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 }
650 }
651
Bob Moorede5668f2010-07-06 10:30:37 +0800652 /*
Lin Mingbba63a22010-12-13 13:39:17 +0800653 * Enable this GPE, conditionally. This means that the GPE will
654 * only be physically enabled if the enable_for_run bit is set
655 * in the event_info.
Bob Moorede5668f2010-07-06 10:30:37 +0800656 */
Lin Ming3a378982010-12-13 13:36:15 +0800657 (void)acpi_hw_low_set_gpe(gpe_event_info, ACPI_GPE_CONDITIONAL_ENABLE);
Lin Mingbba63a22010-12-13 13:39:17 +0800658 return (AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659}
660
Lin Mingbba63a22010-12-13 13:39:17 +0800661
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662/*******************************************************************************
663 *
664 * FUNCTION: acpi_ev_gpe_dispatch
665 *
Lin Ming8b6cd8a2010-12-13 13:38:46 +0800666 * PARAMETERS: gpe_device - Device node. NULL for GPE0/GPE1
667 * gpe_event_info - Info for this GPE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 * gpe_number - Number relative to the parent GPE block
669 *
670 * RETURN: INTERRUPT_HANDLED or INTERRUPT_NOT_HANDLED
671 *
672 * DESCRIPTION: Dispatch a General Purpose Event to either a function (e.g. EC)
673 * or method (e.g. _Lxx/_Exx) handler.
674 *
675 * This function executes at interrupt level.
676 *
677 ******************************************************************************/
678
679u32
Lin Ming8b6cd8a2010-12-13 13:38:46 +0800680acpi_ev_gpe_dispatch(struct acpi_namespace_node *gpe_device,
681 struct acpi_gpe_event_info *gpe_event_info, u32 gpe_number)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682{
Len Brown4be44fc2005-08-05 00:44:28 -0400683 acpi_status status;
Lin Mingbba63a22010-12-13 13:39:17 +0800684 u32 return_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
Bob Mooreb229cf92006-04-21 17:15:00 -0400686 ACPI_FUNCTION_TRACE(ev_gpe_dispatch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
Lin Minga0fcdb22010-12-13 13:39:26 +0800688 /* Invoke global event handler if present */
689
690 acpi_gpe_count++;
691 if (acpi_gbl_global_event_handler) {
692 acpi_gbl_global_event_handler(ACPI_EVENT_TYPE_GPE, gpe_device,
693 gpe_number,
694 acpi_gbl_global_event_handler_context);
695 }
Bob Moorefdffb722007-02-02 19:48:19 +0300696
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 /*
Bob Moore9f15fc62008-11-12 16:01:56 +0800698 * If edge-triggered, clear the GPE status bit now. Note that
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 * level-triggered events are cleared after the GPE is serviced.
700 */
Robert Moore44f6c012005-04-18 22:49:35 -0400701 if ((gpe_event_info->flags & ACPI_GPE_XRUPT_TYPE_MASK) ==
Len Brown4be44fc2005-08-05 00:44:28 -0400702 ACPI_GPE_EDGE_TRIGGERED) {
703 status = acpi_hw_clear_gpe(gpe_event_info);
704 if (ACPI_FAILURE(status)) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500705 ACPI_EXCEPTION((AE_INFO, status,
Lin Mingda503372010-12-13 13:39:37 +0800706 "Unable to clear GPE%02X", gpe_number));
Bob Moore50eca3e2005-09-30 19:03:00 -0400707 return_UINT32(ACPI_INTERRUPT_NOT_HANDLED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 }
709 }
710
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 /*
Lin Mingbba63a22010-12-13 13:39:17 +0800712 * Always disable the GPE so that it does not keep firing before
713 * any asynchronous activity completes (either from the execution
714 * of a GPE method or an asynchronous GPE handler.)
715 *
716 * If there is no handler or method to run, just disable the
717 * GPE and leave it disabled permanently to prevent further such
718 * pointless events from firing.
719 */
720 status = acpi_hw_low_set_gpe(gpe_event_info, ACPI_GPE_DISABLE);
721 if (ACPI_FAILURE(status)) {
722 ACPI_EXCEPTION((AE_INFO, status,
723 "Unable to disable GPE%02X", gpe_number));
724 return_UINT32(ACPI_INTERRUPT_NOT_HANDLED);
725 }
726
727 /*
728 * Dispatch the GPE to either an installed handler or the control
729 * method associated with this GPE (_Lxx or _Exx). If a handler
730 * exists, we invoke it and do not attempt to run the method.
731 * If there is neither a handler nor a method, leave the GPE
732 * disabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 */
734 switch (gpe_event_info->flags & ACPI_GPE_DISPATCH_MASK) {
735 case ACPI_GPE_DISPATCH_HANDLER:
736
Lin Mingbba63a22010-12-13 13:39:17 +0800737 /* Invoke the installed handler (at interrupt level) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738
Lin Mingbba63a22010-12-13 13:39:17 +0800739 return_value =
740 gpe_event_info->dispatch.handler->address(gpe_device,
741 gpe_number,
742 gpe_event_info->
743 dispatch.handler->
744 context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745
Lin Mingbba63a22010-12-13 13:39:17 +0800746 /* If requested, clear (if level-triggered) and reenable the GPE */
747
748 if (return_value & ACPI_REENABLE_GPE) {
749 (void)acpi_ev_finish_gpe(gpe_event_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 }
751 break;
752
753 case ACPI_GPE_DISPATCH_METHOD:
Lin Mingbba63a22010-12-13 13:39:17 +0800754 case ACPI_GPE_DISPATCH_NOTIFY:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
756 /*
757 * Execute the method associated with the GPE
758 * NOTE: Level-triggered GPEs are cleared after the method completes.
759 */
Bob Moore958dd242006-05-12 17:12:00 -0400760 status = acpi_os_execute(OSL_GPE_HANDLER,
761 acpi_ev_asynch_execute_gpe_method,
762 gpe_event_info);
Len Brown4be44fc2005-08-05 00:44:28 -0400763 if (ACPI_FAILURE(status)) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500764 ACPI_EXCEPTION((AE_INFO, status,
Lin Mingda503372010-12-13 13:39:37 +0800765 "Unable to queue handler for GPE%2X - event disabled",
Bob Mooreb8e4d892006-01-27 16:43:00 -0500766 gpe_number));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 }
768 break;
769
770 default:
771
Lin Ming0f849d22010-04-06 14:52:37 +0800772 /*
773 * No handler or method to run!
774 * 03/2010: This case should no longer be possible. We will not allow
775 * a GPE to be enabled if it has no handler or method.
776 */
Bob Mooreb8e4d892006-01-27 16:43:00 -0500777 ACPI_ERROR((AE_INFO,
Lin Mingda503372010-12-13 13:39:37 +0800778 "No handler or method for GPE%02X, disabling event",
Bob Mooreb8e4d892006-01-27 16:43:00 -0500779 gpe_number));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 break;
782 }
783
Bob Moore50eca3e2005-09-30 19:03:00 -0400784 return_UINT32(ACPI_INTERRUPT_HANDLED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785}
Bob Moore33620c52012-02-14 18:14:27 +0800786
787#endif /* !ACPI_REDUCED_HARDWARE */