blob: b2e63e7857190c31a4130b137789026d7aa6b19f [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 Moorefbb7a2d2014-02-08 09:42:25 +08008 * Copyright (C) 2000 - 2014, 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
Feng Tang1d94e1e2012-08-17 11:10:02 +080083 register_bit = acpi_hw_get_gpe_register_bit(gpe_event_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
Rafael J. Wysockia44061a2010-07-01 10:11:45 +080085 /* Clear the run bit up front */
Lin Ming0f849d22010-04-06 14:52:37 +080086
Rafael J. Wysocki9630bdd2010-02-17 23:41:07 +010087 ACPI_CLEAR_BIT(gpe_register_info->enable_for_run, register_bit);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
Rafael J. Wysockia44061a2010-07-01 10:11:45 +080089 /* Set the mask bit only if there are references to this GPE */
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Lin Ming0f849d22010-04-06 14:52:37 +080091 if (gpe_event_info->runtime_count) {
Lv Zheng1f86e8c2012-10-31 02:25:45 +000092 ACPI_SET_BIT(gpe_register_info->enable_for_run,
93 (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 *
Lv Zhengf19f1a72014-10-10 10:39:39 +0800103 * PARAMETERS: gpe_event_info - GPE to enable
Rafael J. Wysocki3bd741b2010-07-01 11:01:12 +0800104 *
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 ******************************************************************************/
Lv Zhengf19f1a72014-10-10 10:39:39 +0800110
Lv Zheng1f86e8c2012-10-31 02:25:45 +0000111acpi_status acpi_ev_enable_gpe(struct acpi_gpe_event_info *gpe_event_info)
Rafael J. Wysocki3bd741b2010-07-01 11:01:12 +0800112{
113 acpi_status status;
114
115 ACPI_FUNCTION_TRACE(ev_enable_gpe);
116
Rafael J. Wysocki3bd741b2010-07-01 11:01:12 +0800117 /* Clear the GPE (of stale events) */
Lv Zhengf19f1a72014-10-10 10:39:39 +0800118
Rafael J. Wysocki3bd741b2010-07-01 11:01:12 +0800119 status = acpi_hw_clear_gpe(gpe_event_info);
120 if (ACPI_FAILURE(status)) {
121 return_ACPI_STATUS(status);
122 }
123
124 /* Enable the requested GPE */
Rafael J. Wysocki3bd741b2010-07-01 11:01:12 +0800125
Rafael J. Wysockic50f13c2014-12-01 23:50:16 +0100126 status = acpi_hw_low_set_gpe(gpe_event_info, ACPI_GPE_ENABLE_SAVE);
Rafael J. Wysocki3bd741b2010-07-01 11:01:12 +0800127 return_ACPI_STATUS(status);
128}
129
Lin Ming0f849d22010-04-06 14:52:37 +0800130/*******************************************************************************
131 *
Lin Ming3a378982010-12-13 13:36:15 +0800132 * FUNCTION: acpi_ev_add_gpe_reference
Rafael J. Wysocki28f4f8a2010-08-03 23:55:14 +0200133 *
Lin Mingda503372010-12-13 13:39:37 +0800134 * PARAMETERS: gpe_event_info - Add a reference to this GPE
Rafael J. Wysocki28f4f8a2010-08-03 23:55:14 +0200135 *
136 * RETURN: Status
137 *
138 * DESCRIPTION: Add a reference to a GPE. On the first reference, the GPE is
139 * hardware-enabled.
140 *
141 ******************************************************************************/
142
Lv Zheng1f86e8c2012-10-31 02:25:45 +0000143acpi_status
144acpi_ev_add_gpe_reference(struct acpi_gpe_event_info *gpe_event_info)
Rafael J. Wysocki28f4f8a2010-08-03 23:55:14 +0200145{
146 acpi_status status = AE_OK;
147
Lin Ming3a378982010-12-13 13:36:15 +0800148 ACPI_FUNCTION_TRACE(ev_add_gpe_reference);
149
Rafael J. Wysocki28f4f8a2010-08-03 23:55:14 +0200150 if (gpe_event_info->runtime_count == ACPI_UINT8_MAX) {
151 return_ACPI_STATUS(AE_LIMIT);
152 }
153
154 gpe_event_info->runtime_count++;
155 if (gpe_event_info->runtime_count == 1) {
Lin Mingda503372010-12-13 13:39:37 +0800156
157 /* Enable on first reference */
158
Rafael J. Wysocki28f4f8a2010-08-03 23:55:14 +0200159 status = acpi_ev_update_gpe_enable_mask(gpe_event_info);
160 if (ACPI_SUCCESS(status)) {
161 status = acpi_ev_enable_gpe(gpe_event_info);
162 }
163
164 if (ACPI_FAILURE(status)) {
165 gpe_event_info->runtime_count--;
166 }
167 }
168
169 return_ACPI_STATUS(status);
170}
171
172/*******************************************************************************
173 *
Lin Ming3a378982010-12-13 13:36:15 +0800174 * FUNCTION: acpi_ev_remove_gpe_reference
Rafael J. Wysocki28f4f8a2010-08-03 23:55:14 +0200175 *
Lin Mingda503372010-12-13 13:39:37 +0800176 * PARAMETERS: gpe_event_info - Remove a reference to this GPE
Rafael J. Wysocki28f4f8a2010-08-03 23:55:14 +0200177 *
178 * RETURN: Status
179 *
180 * DESCRIPTION: Remove a reference to a GPE. When the last reference is
181 * removed, the GPE is hardware-disabled.
182 *
183 ******************************************************************************/
184
Lv Zheng1f86e8c2012-10-31 02:25:45 +0000185acpi_status
186acpi_ev_remove_gpe_reference(struct acpi_gpe_event_info *gpe_event_info)
Rafael J. Wysocki28f4f8a2010-08-03 23:55:14 +0200187{
188 acpi_status status = AE_OK;
189
Lin Ming3a378982010-12-13 13:36:15 +0800190 ACPI_FUNCTION_TRACE(ev_remove_gpe_reference);
191
Rafael J. Wysocki28f4f8a2010-08-03 23:55:14 +0200192 if (!gpe_event_info->runtime_count) {
193 return_ACPI_STATUS(AE_LIMIT);
194 }
195
196 gpe_event_info->runtime_count--;
197 if (!gpe_event_info->runtime_count) {
Lin Mingda503372010-12-13 13:39:37 +0800198
199 /* Disable on last reference */
200
Rafael J. Wysocki28f4f8a2010-08-03 23:55:14 +0200201 status = acpi_ev_update_gpe_enable_mask(gpe_event_info);
202 if (ACPI_SUCCESS(status)) {
Lv Zheng1f86e8c2012-10-31 02:25:45 +0000203 status =
204 acpi_hw_low_set_gpe(gpe_event_info,
Rafael J. Wysockic50f13c2014-12-01 23:50:16 +0100205 ACPI_GPE_DISABLE_SAVE);
Rafael J. Wysocki28f4f8a2010-08-03 23:55:14 +0200206 }
207
208 if (ACPI_FAILURE(status)) {
209 gpe_event_info->runtime_count++;
210 }
211 }
212
213 return_ACPI_STATUS(status);
214}
215
216/*******************************************************************************
217 *
Lin Ming0f849d22010-04-06 14:52:37 +0800218 * FUNCTION: acpi_ev_low_get_gpe_info
219 *
220 * PARAMETERS: gpe_number - Raw GPE number
221 * gpe_block - A GPE info block
222 *
223 * RETURN: A GPE event_info struct. NULL if not a valid GPE (The gpe_number
224 * is not within the specified GPE block)
225 *
226 * DESCRIPTION: Returns the event_info struct associated with this GPE. This is
227 * the low-level implementation of ev_get_gpe_event_info.
228 *
229 ******************************************************************************/
230
231struct acpi_gpe_event_info *acpi_ev_low_get_gpe_info(u32 gpe_number,
232 struct acpi_gpe_block_info
233 *gpe_block)
234{
235 u32 gpe_index;
236
237 /*
238 * Validate that the gpe_number is within the specified gpe_block.
239 * (Two steps)
240 */
241 if (!gpe_block || (gpe_number < gpe_block->block_base_number)) {
242 return (NULL);
243 }
244
245 gpe_index = gpe_number - gpe_block->block_base_number;
246 if (gpe_index >= gpe_block->gpe_count) {
247 return (NULL);
248 }
249
250 return (&gpe_block->event_info[gpe_index]);
251}
252
253
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254/*******************************************************************************
255 *
256 * FUNCTION: acpi_ev_get_gpe_event_info
257 *
Bob Moore9f15fc62008-11-12 16:01:56 +0800258 * PARAMETERS: gpe_device - Device node. NULL for GPE0/GPE1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 * gpe_number - Raw GPE number
260 *
261 * RETURN: A GPE event_info struct. NULL if not a valid GPE
262 *
263 * DESCRIPTION: Returns the event_info struct associated with this GPE.
264 * Validates the gpe_block and the gpe_number
265 *
266 * Should be called only when the GPE lists are semaphore locked
267 * and not subject to change.
268 *
269 ******************************************************************************/
270
Len Brown4be44fc2005-08-05 00:44:28 -0400271struct acpi_gpe_event_info *acpi_ev_get_gpe_event_info(acpi_handle gpe_device,
272 u32 gpe_number)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273{
Len Brown4be44fc2005-08-05 00:44:28 -0400274 union acpi_operand_object *obj_desc;
Lin Ming0f849d22010-04-06 14:52:37 +0800275 struct acpi_gpe_event_info *gpe_info;
Bob Moore67a119f2008-06-10 13:42:13 +0800276 u32 i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
Len Brown4be44fc2005-08-05 00:44:28 -0400278 ACPI_FUNCTION_ENTRY();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
Bob Moore186c3072010-04-27 11:32:28 +0800280 /* A NULL gpe_device means use the FADT-defined GPE block(s) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
282 if (!gpe_device) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400283
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 /* Examine GPE Block 0 and 1 (These blocks are permanent) */
285
286 for (i = 0; i < ACPI_MAX_GPE_BLOCKS; i++) {
Lin Ming0f849d22010-04-06 14:52:37 +0800287 gpe_info = acpi_ev_low_get_gpe_info(gpe_number,
288 acpi_gbl_gpe_fadt_blocks
289 [i]);
290 if (gpe_info) {
291 return (gpe_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 }
293 }
294
295 /* The gpe_number was not in the range of either FADT GPE block */
296
297 return (NULL);
298 }
299
300 /* A Non-NULL gpe_device means this is a GPE Block Device */
301
Lv Zheng1f86e8c2012-10-31 02:25:45 +0000302 obj_desc =
303 acpi_ns_get_attached_object((struct acpi_namespace_node *)
Len Brownfd350942007-05-09 23:34:35 -0400304 gpe_device);
Len Brown4be44fc2005-08-05 00:44:28 -0400305 if (!obj_desc || !obj_desc->device.gpe_block) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 return (NULL);
307 }
308
Lin Ming0f849d22010-04-06 14:52:37 +0800309 return (acpi_ev_low_get_gpe_info
310 (gpe_number, obj_desc->device.gpe_block));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311}
312
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313/*******************************************************************************
314 *
315 * FUNCTION: acpi_ev_gpe_detect
316 *
317 * PARAMETERS: gpe_xrupt_list - Interrupt block for this interrupt.
318 * Can have multiple GPE blocks attached.
319 *
320 * RETURN: INTERRUPT_HANDLED or INTERRUPT_NOT_HANDLED
321 *
Bob Moore9f15fc62008-11-12 16:01:56 +0800322 * DESCRIPTION: Detect if any GP events have occurred. This function is
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 * executed at interrupt level.
324 *
325 ******************************************************************************/
326
Lv Zhengf19f1a72014-10-10 10:39:39 +0800327u32 acpi_ev_gpe_detect(struct acpi_gpe_xrupt_info *gpe_xrupt_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328{
Len Brown4be44fc2005-08-05 00:44:28 -0400329 acpi_status status;
330 struct acpi_gpe_block_info *gpe_block;
Bob Moore08978312005-10-21 00:00:00 -0400331 struct acpi_gpe_register_info *gpe_register_info;
332 u32 int_status = ACPI_INTERRUPT_NOT_HANDLED;
333 u8 enabled_status_byte;
334 u32 status_reg;
335 u32 enable_reg;
Bob Mooreb8e4d892006-01-27 16:43:00 -0500336 acpi_cpu_flags flags;
Bob Moore67a119f2008-06-10 13:42:13 +0800337 u32 i;
338 u32 j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
Bob Mooreb229cf92006-04-21 17:15:00 -0400340 ACPI_FUNCTION_NAME(ev_gpe_detect);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
342 /* Check for the case where there are no GPEs */
343
344 if (!gpe_xrupt_list) {
345 return (int_status);
346 }
347
Bob Moore967440e32006-06-23 17:04:00 -0400348 /*
349 * We need to obtain the GPE lock for both the data structs and registers
Bob Moore9f15fc62008-11-12 16:01:56 +0800350 * Note: Not necessary to obtain the hardware lock, since the GPE
351 * registers are owned by the gpe_lock.
Bob Moore967440e32006-06-23 17:04:00 -0400352 */
Len Brown4be44fc2005-08-05 00:44:28 -0400353 flags = acpi_os_acquire_lock(acpi_gbl_gpe_lock);
Bob Moore4c90ece2006-06-08 16:29:00 -0400354
355 /* Examine all GPE blocks attached to this interrupt level */
356
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 gpe_block = gpe_xrupt_list->gpe_block_list_head;
358 while (gpe_block) {
359 /*
Bob Moore9f15fc62008-11-12 16:01:56 +0800360 * Read all of the 8-bit GPE status and enable registers in this GPE
361 * block, saving all of them. Find all currently active GP events.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 */
363 for (i = 0; i < gpe_block->register_count; i++) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400364
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 /* Get the next status/enable pair */
366
367 gpe_register_info = &gpe_block->register_info[i];
368
Lin Ming6dfad332011-02-14 15:29:34 +0800369 /*
370 * Optimization: If there are no GPEs enabled within this
371 * register, we can safely ignore the entire register.
372 */
373 if (!(gpe_register_info->enable_for_run |
374 gpe_register_info->enable_for_wake)) {
Bob Mooree1154eb2012-08-17 10:55:14 +0800375 ACPI_DEBUG_PRINT((ACPI_DB_INTERRUPTS,
Bob Moore7505da42014-04-30 10:06:15 +0800376 "Ignore disabled registers for GPE %02X-%02X: "
Bob Mooree1154eb2012-08-17 10:55:14 +0800377 "RunEnable=%02X, WakeEnable=%02X\n",
378 gpe_register_info->
379 base_gpe_number,
380 gpe_register_info->
381 base_gpe_number +
382 (ACPI_GPE_REGISTER_WIDTH - 1),
383 gpe_register_info->
384 enable_for_run,
385 gpe_register_info->
386 enable_for_wake));
Lin Ming6dfad332011-02-14 15:29:34 +0800387 continue;
388 }
389
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 /* Read the Status Register */
391
Len Brown4be44fc2005-08-05 00:44:28 -0400392 status =
Bob Moorec6b57742009-06-24 09:44:06 +0800393 acpi_hw_read(&status_reg,
394 &gpe_register_info->status_address);
Len Brown4be44fc2005-08-05 00:44:28 -0400395 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 goto unlock_and_exit;
397 }
398
399 /* Read the Enable Register */
400
Len Brown4be44fc2005-08-05 00:44:28 -0400401 status =
Bob Moorec6b57742009-06-24 09:44:06 +0800402 acpi_hw_read(&enable_reg,
403 &gpe_register_info->enable_address);
Len Brown4be44fc2005-08-05 00:44:28 -0400404 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 goto unlock_and_exit;
406 }
407
Len Brown4be44fc2005-08-05 00:44:28 -0400408 ACPI_DEBUG_PRINT((ACPI_DB_INTERRUPTS,
Bob Moore7505da42014-04-30 10:06:15 +0800409 "Read registers for GPE %02X-%02X: Status=%02X, Enable=%02X, "
Bob Mooree1154eb2012-08-17 10:55:14 +0800410 "RunEnable=%02X, WakeEnable=%02X\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400411 gpe_register_info->base_gpe_number,
Bob Mooree1154eb2012-08-17 10:55:14 +0800412 gpe_register_info->base_gpe_number +
413 (ACPI_GPE_REGISTER_WIDTH - 1),
414 status_reg, enable_reg,
415 gpe_register_info->enable_for_run,
416 gpe_register_info->enable_for_wake));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
Robert Moore44f6c012005-04-18 22:49:35 -0400418 /* Check if there is anything active at all in this register */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
Lv Zhengf19f1a72014-10-10 10:39:39 +0800420 enabled_status_byte = (u8)(status_reg & enable_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 if (!enabled_status_byte) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400422
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 /* No active GPEs in this register, move on */
424
425 continue;
426 }
427
428 /* Now look at the individual GPEs in this byte register */
429
430 for (j = 0; j < ACPI_GPE_REGISTER_WIDTH; j++) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400431
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 /* Examine one GPE bit */
433
Alexey Starikovskiy69874162007-02-02 19:48:19 +0300434 if (enabled_status_byte & (1 << j)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 /*
436 * Found an active GPE. Dispatch the event to a handler
437 * or method.
438 */
Len Brown4be44fc2005-08-05 00:44:28 -0400439 int_status |=
Lin Ming8b6cd8a2010-12-13 13:38:46 +0800440 acpi_ev_gpe_dispatch(gpe_block->
441 node,
442 &gpe_block->
Lv Zhengf19f1a72014-10-10 10:39:39 +0800443 event_info[((acpi_size) i * ACPI_GPE_REGISTER_WIDTH) + j], j + gpe_register_info->base_gpe_number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 }
445 }
446 }
447
448 gpe_block = gpe_block->next;
449 }
450
Lv Zheng10622bf2013-10-29 09:30:02 +0800451unlock_and_exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
Len Brown4be44fc2005-08-05 00:44:28 -0400453 acpi_os_release_lock(acpi_gbl_gpe_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 return (int_status);
455}
456
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457/*******************************************************************************
458 *
459 * FUNCTION: acpi_ev_asynch_execute_gpe_method
460 *
461 * PARAMETERS: Context (gpe_event_info) - Info for this GPE
462 *
463 * RETURN: None
464 *
Bob Moore41195322006-05-26 16:36:00 -0400465 * DESCRIPTION: Perform the actual execution of a GPE control method. This
466 * function is called from an invocation of acpi_os_execute and
467 * therefore does NOT execute at interrupt level - so that
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 * the control method itself is not executed in the context of
469 * an interrupt handler.
470 *
471 ******************************************************************************/
472
Len Brown4be44fc2005-08-05 00:44:28 -0400473static void ACPI_SYSTEM_XFACE acpi_ev_asynch_execute_gpe_method(void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474{
Lin Ming5a284cd2010-12-13 13:39:07 +0800475 struct acpi_gpe_event_info *gpe_event_info = context;
Len Brown4be44fc2005-08-05 00:44:28 -0400476 acpi_status status;
Lin Ming5a284cd2010-12-13 13:39:07 +0800477 struct acpi_gpe_event_info *local_gpe_event_info;
Bob Moore41195322006-05-26 16:36:00 -0400478 struct acpi_evaluate_info *info;
Bob Moore5816b342012-06-29 10:04:17 +0800479 struct acpi_gpe_notify_info *notify;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
Bob Mooreb229cf92006-04-21 17:15:00 -0400481 ACPI_FUNCTION_TRACE(ev_asynch_execute_gpe_method);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
Lin Ming5a284cd2010-12-13 13:39:07 +0800483 /* Allocate a local GPE block */
484
485 local_gpe_event_info =
486 ACPI_ALLOCATE_ZEROED(sizeof(struct acpi_gpe_event_info));
487 if (!local_gpe_event_info) {
488 ACPI_EXCEPTION((AE_INFO, AE_NO_MEMORY, "while handling a GPE"));
489 return_VOID;
490 }
491
Len Brown4be44fc2005-08-05 00:44:28 -0400492 status = acpi_ut_acquire_mutex(ACPI_MTX_EVENTS);
493 if (ACPI_FAILURE(status)) {
Jesper Juhlbe33b762011-01-16 20:37:52 +0100494 ACPI_FREE(local_gpe_event_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 return_VOID;
496 }
497
498 /* Must revalidate the gpe_number/gpe_block */
499
Len Brown4be44fc2005-08-05 00:44:28 -0400500 if (!acpi_ev_valid_gpe_event(gpe_event_info)) {
501 status = acpi_ut_release_mutex(ACPI_MTX_EVENTS);
Jesper Juhlbe33b762011-01-16 20:37:52 +0100502 ACPI_FREE(local_gpe_event_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 return_VOID;
504 }
505
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 /*
Bob Moore9f15fc62008-11-12 16:01:56 +0800507 * Take a snapshot of the GPE info for this level - we copy the info to
508 * prevent a race condition with remove_handler/remove_block.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 */
Lin Ming5a284cd2010-12-13 13:39:07 +0800510 ACPI_MEMCPY(local_gpe_event_info, gpe_event_info,
Len Brown4be44fc2005-08-05 00:44:28 -0400511 sizeof(struct acpi_gpe_event_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
Len Brown4be44fc2005-08-05 00:44:28 -0400513 status = acpi_ut_release_mutex(ACPI_MTX_EVENTS);
514 if (ACPI_FAILURE(status)) {
Lv Zhengab3b2482013-10-29 09:29:40 +0800515 ACPI_FREE(local_gpe_event_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 return_VOID;
517 }
518
Lin Mingbba63a22010-12-13 13:39:17 +0800519 /* Do the correct dispatch - normal method or implicit notify */
520
521 switch (local_gpe_event_info->flags & ACPI_GPE_DISPATCH_MASK) {
522 case ACPI_GPE_DISPATCH_NOTIFY:
Lin Mingbba63a22010-12-13 13:39:17 +0800523 /*
524 * Implicit notify.
525 * Dispatch a DEVICE_WAKE notify to the appropriate handler.
526 * NOTE: the request is queued for execution after this method
527 * completes. The notify handlers are NOT invoked synchronously
528 * from this thread -- because handlers may in turn run other
529 * control methods.
Bob Moore5816b342012-06-29 10:04:17 +0800530 *
531 * June 2012: Expand implicit notify mechanism to support
532 * notifies on multiple device objects.
Lin Mingbba63a22010-12-13 13:39:17 +0800533 */
Bob Moore5816b342012-06-29 10:04:17 +0800534 notify = local_gpe_event_info->dispatch.notify_list;
535 while (ACPI_SUCCESS(status) && notify) {
536 status =
537 acpi_ev_queue_notify_request(notify->device_node,
538 ACPI_NOTIFY_DEVICE_WAKE);
Rafael J. Wysocki981858b2011-02-24 19:59:21 +0100539
Bob Moore5816b342012-06-29 10:04:17 +0800540 notify = notify->next;
Rafael J. Wysocki981858b2011-02-24 19:59:21 +0100541 }
542
Lin Mingbba63a22010-12-13 13:39:17 +0800543 break;
544
545 case ACPI_GPE_DISPATCH_METHOD:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
Bob Moore41195322006-05-26 16:36:00 -0400547 /* 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 /*
Lv Zheng75c80442012-12-19 05:36:49 +0000554 * Invoke the GPE Method (_Lxx, _Exx) i.e., evaluate the
555 * _Lxx/_Exx control method that corresponds to this GPE
Bob Moore41195322006-05-26 16:36:00 -0400556 */
557 info->prefix_node =
Lin Ming5a284cd2010-12-13 13:39:07 +0800558 local_gpe_event_info->dispatch.method_node;
Bob Moore41195322006-05-26 16:36:00 -0400559 info->flags = ACPI_IGNORE_RETURN_VALUE;
560
561 status = acpi_ns_evaluate(info);
562 ACPI_FREE(info);
563 }
564
Len Brown4be44fc2005-08-05 00:44:28 -0400565 if (ACPI_FAILURE(status)) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500566 ACPI_EXCEPTION((AE_INFO, status,
Bob Moore2e420052007-02-02 19:48:18 +0300567 "while evaluating GPE method [%4.4s]",
Bob Mooreb8e4d892006-01-27 16:43:00 -0500568 acpi_ut_get_node_name
Lin Ming5a284cd2010-12-13 13:39:07 +0800569 (local_gpe_event_info->dispatch.
Bob Moore4c90ece2006-06-08 16:29:00 -0400570 method_node)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 }
Lin Mingbba63a22010-12-13 13:39:17 +0800572 break;
573
574 default:
Chao Guan1d1ea1b2013-06-08 00:58:14 +0000575
576 return_VOID; /* Should never happen */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 }
Lin Ming5a284cd2010-12-13 13:39:07 +0800578
Alexey Starikovskiy17bc54e2007-11-13 13:05:45 +0300579 /* Defer enabling of GPE until all notify handlers are done */
Lin Ming5a284cd2010-12-13 13:39:07 +0800580
581 status = acpi_os_execute(OSL_NOTIFY_HANDLER,
582 acpi_ev_asynch_enable_gpe,
583 local_gpe_event_info);
584 if (ACPI_FAILURE(status)) {
585 ACPI_FREE(local_gpe_event_info);
586 }
Alexey Starikovskiy17bc54e2007-11-13 13:05:45 +0300587 return_VOID;
588}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
Lin Mingbba63a22010-12-13 13:39:17 +0800590
Lin Ming5a284cd2010-12-13 13:39:07 +0800591/*******************************************************************************
592 *
593 * FUNCTION: acpi_ev_asynch_enable_gpe
594 *
595 * PARAMETERS: Context (gpe_event_info) - Info for this GPE
596 * Callback from acpi_os_execute
597 *
598 * RETURN: None
599 *
600 * DESCRIPTION: Asynchronous clear/enable for GPE. This allows the GPE to
Lin Mingbba63a22010-12-13 13:39:17 +0800601 * complete (i.e., finish execution of Notify)
Lin Ming5a284cd2010-12-13 13:39:07 +0800602 *
603 ******************************************************************************/
604
605static void ACPI_SYSTEM_XFACE acpi_ev_asynch_enable_gpe(void *context)
Alexey Starikovskiy17bc54e2007-11-13 13:05:45 +0300606{
607 struct acpi_gpe_event_info *gpe_event_info = context;
Lv Zheng7dd88212014-12-02 08:56:55 +0800608 acpi_cpu_flags flags;
Lin Mingbba63a22010-12-13 13:39:17 +0800609
Lv Zheng7dd88212014-12-02 08:56:55 +0800610 flags = acpi_os_acquire_lock(acpi_gbl_gpe_lock);
Lin Mingbba63a22010-12-13 13:39:17 +0800611 (void)acpi_ev_finish_gpe(gpe_event_info);
Lv Zheng7dd88212014-12-02 08:56:55 +0800612 acpi_os_release_lock(acpi_gbl_gpe_lock, flags);
Lin Mingbba63a22010-12-13 13:39:17 +0800613
614 ACPI_FREE(gpe_event_info);
615 return;
616}
617
618
619/*******************************************************************************
620 *
621 * FUNCTION: acpi_ev_finish_gpe
622 *
623 * PARAMETERS: gpe_event_info - Info for this GPE
624 *
625 * RETURN: Status
626 *
627 * DESCRIPTION: Clear/Enable a GPE. Common code that is used after execution
628 * of a GPE method or a synchronous or asynchronous GPE handler.
629 *
630 ******************************************************************************/
631
Lv Zhengf19f1a72014-10-10 10:39:39 +0800632acpi_status acpi_ev_finish_gpe(struct acpi_gpe_event_info * gpe_event_info)
Lin Mingbba63a22010-12-13 13:39:17 +0800633{
Alexey Starikovskiy17bc54e2007-11-13 13:05:45 +0300634 acpi_status status;
Lin Ming5a284cd2010-12-13 13:39:07 +0800635
Alexey Starikovskiy17bc54e2007-11-13 13:05:45 +0300636 if ((gpe_event_info->flags & ACPI_GPE_XRUPT_TYPE_MASK) ==
Len Brown4be44fc2005-08-05 00:44:28 -0400637 ACPI_GPE_LEVEL_TRIGGERED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 /*
Lin Mingbba63a22010-12-13 13:39:17 +0800639 * GPE is level-triggered, we clear the GPE status bit after
640 * handling the event.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 */
Alexey Starikovskiy17bc54e2007-11-13 13:05:45 +0300642 status = acpi_hw_clear_gpe(gpe_event_info);
Len Brown4be44fc2005-08-05 00:44:28 -0400643 if (ACPI_FAILURE(status)) {
Lin Mingbba63a22010-12-13 13:39:17 +0800644 return (status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 }
646 }
647
Bob Moorede5668f2010-07-06 10:30:37 +0800648 /*
Lin Mingbba63a22010-12-13 13:39:17 +0800649 * Enable this GPE, conditionally. This means that the GPE will
Rafael J. Wysockic50f13c2014-12-01 23:50:16 +0100650 * only be physically enabled if the enable_mask bit is set
Lin Mingbba63a22010-12-13 13:39:17 +0800651 * in the event_info.
Bob Moorede5668f2010-07-06 10:30:37 +0800652 */
Lin Ming3a378982010-12-13 13:36:15 +0800653 (void)acpi_hw_low_set_gpe(gpe_event_info, ACPI_GPE_CONDITIONAL_ENABLE);
Lin Mingbba63a22010-12-13 13:39:17 +0800654 return (AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655}
656
Lin Mingbba63a22010-12-13 13:39:17 +0800657
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658/*******************************************************************************
659 *
660 * FUNCTION: acpi_ev_gpe_dispatch
661 *
Lv Zhengf19f1a72014-10-10 10:39:39 +0800662 * PARAMETERS: gpe_device - Device node. NULL for GPE0/GPE1
663 * gpe_event_info - Info for this GPE
664 * gpe_number - Number relative to the parent GPE block
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 *
666 * RETURN: INTERRUPT_HANDLED or INTERRUPT_NOT_HANDLED
667 *
668 * DESCRIPTION: Dispatch a General Purpose Event to either a function (e.g. EC)
669 * or method (e.g. _Lxx/_Exx) handler.
670 *
671 * This function executes at interrupt level.
672 *
673 ******************************************************************************/
674
675u32
Lin Ming8b6cd8a2010-12-13 13:38:46 +0800676acpi_ev_gpe_dispatch(struct acpi_namespace_node *gpe_device,
Lv Zhengf19f1a72014-10-10 10:39:39 +0800677 struct acpi_gpe_event_info *gpe_event_info, u32 gpe_number)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678{
Len Brown4be44fc2005-08-05 00:44:28 -0400679 acpi_status status;
Lin Mingbba63a22010-12-13 13:39:17 +0800680 u32 return_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
Bob Mooreb229cf92006-04-21 17:15:00 -0400682 ACPI_FUNCTION_TRACE(ev_gpe_dispatch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
Lin Minga0fcdb22010-12-13 13:39:26 +0800684 /* Invoke global event handler if present */
685
686 acpi_gpe_count++;
687 if (acpi_gbl_global_event_handler) {
688 acpi_gbl_global_event_handler(ACPI_EVENT_TYPE_GPE, gpe_device,
689 gpe_number,
690 acpi_gbl_global_event_handler_context);
691 }
Bob Moorefdffb722007-02-02 19:48:19 +0300692
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 /*
Lin Mingbba63a22010-12-13 13:39:17 +0800694 * Always disable the GPE so that it does not keep firing before
695 * any asynchronous activity completes (either from the execution
696 * of a GPE method or an asynchronous GPE handler.)
697 *
698 * If there is no handler or method to run, just disable the
699 * GPE and leave it disabled permanently to prevent further such
700 * pointless events from firing.
701 */
702 status = acpi_hw_low_set_gpe(gpe_event_info, ACPI_GPE_DISABLE);
703 if (ACPI_FAILURE(status)) {
704 ACPI_EXCEPTION((AE_INFO, status,
Bob Moore7505da42014-04-30 10:06:15 +0800705 "Unable to disable GPE %02X", gpe_number));
Bob Moorefd1af712013-03-08 09:22:23 +0000706 return_UINT32(ACPI_INTERRUPT_NOT_HANDLED);
Lin Mingbba63a22010-12-13 13:39:17 +0800707 }
708
709 /*
Lv Zheng6ec5e122014-06-15 08:42:31 +0800710 * If edge-triggered, clear the GPE status bit now. Note that
711 * level-triggered events are cleared after the GPE is serviced.
712 */
713 if ((gpe_event_info->flags & ACPI_GPE_XRUPT_TYPE_MASK) ==
714 ACPI_GPE_EDGE_TRIGGERED) {
715 status = acpi_hw_clear_gpe(gpe_event_info);
716 if (ACPI_FAILURE(status)) {
717 ACPI_EXCEPTION((AE_INFO, status,
718 "Unable to clear GPE %02X",
719 gpe_number));
720 (void)acpi_hw_low_set_gpe(gpe_event_info,
721 ACPI_GPE_CONDITIONAL_ENABLE);
722 return_UINT32(ACPI_INTERRUPT_NOT_HANDLED);
723 }
724 }
725
726 /*
Lin Mingbba63a22010-12-13 13:39:17 +0800727 * Dispatch the GPE to either an installed handler or the control
728 * method associated with this GPE (_Lxx or _Exx). If a handler
729 * exists, we invoke it and do not attempt to run the method.
730 * If there is neither a handler nor a method, leave the GPE
731 * disabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 */
733 switch (gpe_event_info->flags & ACPI_GPE_DISPATCH_MASK) {
734 case ACPI_GPE_DISPATCH_HANDLER:
735
Lin Mingbba63a22010-12-13 13:39:17 +0800736 /* Invoke the installed handler (at interrupt level) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737
Lin Mingbba63a22010-12-13 13:39:17 +0800738 return_value =
739 gpe_event_info->dispatch.handler->address(gpe_device,
740 gpe_number,
741 gpe_event_info->
742 dispatch.handler->
743 context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744
Lin Mingbba63a22010-12-13 13:39:17 +0800745 /* If requested, clear (if level-triggered) and reenable the GPE */
746
747 if (return_value & ACPI_REENABLE_GPE) {
748 (void)acpi_ev_finish_gpe(gpe_event_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 }
750 break;
751
752 case ACPI_GPE_DISPATCH_METHOD:
Lin Mingbba63a22010-12-13 13:39:17 +0800753 case ACPI_GPE_DISPATCH_NOTIFY:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 /*
755 * Execute the method associated with the GPE
756 * NOTE: Level-triggered GPEs are cleared after the method completes.
757 */
Bob Moore958dd242006-05-12 17:12:00 -0400758 status = acpi_os_execute(OSL_GPE_HANDLER,
759 acpi_ev_asynch_execute_gpe_method,
760 gpe_event_info);
Len Brown4be44fc2005-08-05 00:44:28 -0400761 if (ACPI_FAILURE(status)) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500762 ACPI_EXCEPTION((AE_INFO, status,
Bob Moore7505da42014-04-30 10:06:15 +0800763 "Unable to queue handler for GPE %02X - event disabled",
Bob Mooreb8e4d892006-01-27 16:43:00 -0500764 gpe_number));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 }
766 break;
767
768 default:
Lin Ming0f849d22010-04-06 14:52:37 +0800769 /*
770 * No handler or method to run!
771 * 03/2010: This case should no longer be possible. We will not allow
772 * a GPE to be enabled if it has no handler or method.
773 */
Bob Mooreb8e4d892006-01-27 16:43:00 -0500774 ACPI_ERROR((AE_INFO,
Bob Moore7505da42014-04-30 10:06:15 +0800775 "No handler or method for GPE %02X, disabling event",
Bob Mooreb8e4d892006-01-27 16:43:00 -0500776 gpe_number));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 break;
779 }
780
Bob Moorefd1af712013-03-08 09:22:23 +0000781 return_UINT32(ACPI_INTERRUPT_HANDLED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782}
Bob Moore33620c52012-02-14 18:14:27 +0800783
784#endif /* !ACPI_REDUCED_HARDWARE */