ACPICA: Update Copyright headers to 2015
[deliverable/linux.git] / drivers / acpi / acpica / evgpe.c
CommitLineData
1da177e4
LT
1/******************************************************************************
2 *
3 * Module Name: evgpe - General Purpose Event handling and dispatch
4 *
5 *****************************************************************************/
6
7/*
82a80941 8 * Copyright (C) 2000 - 2015, Intel Corp.
1da177e4
LT
9 * All rights reserved.
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions, and the following disclaimer,
16 * without modification.
17 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
18 * substantially similar to the "NO WARRANTY" disclaimer below
19 * ("Disclaimer") and any redistribution must be conditioned upon
20 * including a substantially similar Disclaimer requirement for further
21 * binary redistribution.
22 * 3. Neither the names of the above-listed copyright holders nor the names
23 * of any contributors may be used to endorse or promote products derived
24 * from this software without specific prior written permission.
25 *
26 * Alternatively, this software may be distributed under the terms of the
27 * GNU General Public License ("GPL") version 2 as published by the Free
28 * Software Foundation.
29 *
30 * NO WARRANTY
31 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
32 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
33 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
34 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
35 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
36 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
37 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
38 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
39 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
40 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
41 * POSSIBILITY OF SUCH DAMAGES.
42 */
43
44#include <acpi/acpi.h>
e2f7a777
LB
45#include "accommon.h"
46#include "acevents.h"
47#include "acnamesp.h"
1da177e4
LT
48
49#define _COMPONENT ACPI_EVENTS
4be44fcd 50ACPI_MODULE_NAME("evgpe")
33620c54 51#if (!ACPI_REDUCED_HARDWARE) /* Entire module */
44f6c012 52/* Local prototypes */
4be44fcd 53static void ACPI_SYSTEM_XFACE acpi_ev_asynch_execute_gpe_method(void *context);
1da177e4 54
5a284cd7
LM
55static void ACPI_SYSTEM_XFACE acpi_ev_asynch_enable_gpe(void *context);
56
1da177e4
LT
57/*******************************************************************************
58 *
a44061aa 59 * FUNCTION: acpi_ev_update_gpe_enable_mask
1da177e4
LT
60 *
61 * PARAMETERS: gpe_event_info - GPE to update
1da177e4
LT
62 *
63 * RETURN: Status
64 *
a44061aa
RW
65 * DESCRIPTION: Updates GPE register enable mask based upon whether there are
66 * runtime references to this GPE
1da177e4
LT
67 *
68 ******************************************************************************/
69
70acpi_status
a44061aa 71acpi_ev_update_gpe_enable_mask(struct acpi_gpe_event_info *gpe_event_info)
1da177e4 72{
4be44fcd 73 struct acpi_gpe_register_info *gpe_register_info;
e4e9a735 74 u32 register_bit;
1da177e4 75
a44061aa 76 ACPI_FUNCTION_TRACE(ev_update_gpe_enable_mask);
1da177e4
LT
77
78 gpe_register_info = gpe_event_info->register_info;
79 if (!gpe_register_info) {
4be44fcd 80 return_ACPI_STATUS(AE_NOT_EXIST);
1da177e4 81 }
d4913dc6 82
1d94e1e8 83 register_bit = acpi_hw_get_gpe_register_bit(gpe_event_info);
1da177e4 84
a44061aa 85 /* Clear the run bit up front */
0f849d2c 86
9630bdd9 87 ACPI_CLEAR_BIT(gpe_register_info->enable_for_run, register_bit);
1da177e4 88
a44061aa 89 /* Set the mask bit only if there are references to this GPE */
0f849d2c
LM
90
91 if (gpe_event_info->runtime_count) {
1f86e8c1
LZ
92 ACPI_SET_BIT(gpe_register_info->enable_for_run,
93 (u8)register_bit);
0f849d2c 94 }
1da177e4 95
4be44fcd 96 return_ACPI_STATUS(AE_OK);
1da177e4
LT
97}
98
3bd741bd
RW
99/*******************************************************************************
100 *
101 * FUNCTION: acpi_ev_enable_gpe
102 *
f19f1a7e 103 * PARAMETERS: gpe_event_info - GPE to enable
3bd741bd
RW
104 *
105 * RETURN: Status
106 *
da503373 107 * DESCRIPTION: Clear a GPE of stale events and enable it.
3bd741bd
RW
108 *
109 ******************************************************************************/
f19f1a7e 110
1f86e8c1 111acpi_status acpi_ev_enable_gpe(struct acpi_gpe_event_info *gpe_event_info)
3bd741bd
RW
112{
113 acpi_status status;
114
115 ACPI_FUNCTION_TRACE(ev_enable_gpe);
116
3bd741bd 117 /* Clear the GPE (of stale events) */
f19f1a7e 118
3bd741bd
RW
119 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 */
3bd741bd 125
c50f13c6 126 status = acpi_hw_low_set_gpe(gpe_event_info, ACPI_GPE_ENABLE_SAVE);
3bd741bd
RW
127 return_ACPI_STATUS(status);
128}
129
28f4f8a9
RW
130/*******************************************************************************
131 *
3a37898d 132 * FUNCTION: acpi_ev_add_gpe_reference
28f4f8a9 133 *
da503373 134 * PARAMETERS: gpe_event_info - Add a reference to this GPE
28f4f8a9
RW
135 *
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
1f86e8c1
LZ
143acpi_status
144acpi_ev_add_gpe_reference(struct acpi_gpe_event_info *gpe_event_info)
28f4f8a9
RW
145{
146 acpi_status status = AE_OK;
147
3a37898d
LM
148 ACPI_FUNCTION_TRACE(ev_add_gpe_reference);
149
28f4f8a9
RW
150 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) {
da503373
LM
156
157 /* Enable on first reference */
158
28f4f8a9
RW
159 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 *
3a37898d 174 * FUNCTION: acpi_ev_remove_gpe_reference
28f4f8a9 175 *
da503373 176 * PARAMETERS: gpe_event_info - Remove a reference to this GPE
28f4f8a9
RW
177 *
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
1f86e8c1
LZ
185acpi_status
186acpi_ev_remove_gpe_reference(struct acpi_gpe_event_info *gpe_event_info)
28f4f8a9
RW
187{
188 acpi_status status = AE_OK;
189
3a37898d
LM
190 ACPI_FUNCTION_TRACE(ev_remove_gpe_reference);
191
28f4f8a9
RW
192 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) {
da503373
LM
198
199 /* Disable on last reference */
200
28f4f8a9
RW
201 status = acpi_ev_update_gpe_enable_mask(gpe_event_info);
202 if (ACPI_SUCCESS(status)) {
1f86e8c1
LZ
203 status =
204 acpi_hw_low_set_gpe(gpe_event_info,
c50f13c6 205 ACPI_GPE_DISABLE_SAVE);
28f4f8a9
RW
206 }
207
208 if (ACPI_FAILURE(status)) {
209 gpe_event_info->runtime_count++;
210 }
211 }
212
213 return_ACPI_STATUS(status);
214}
215
0f849d2c
LM
216/*******************************************************************************
217 *
218 * 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
1da177e4
LT
254/*******************************************************************************
255 *
256 * FUNCTION: acpi_ev_get_gpe_event_info
257 *
9f15fc66 258 * PARAMETERS: gpe_device - Device node. NULL for GPE0/GPE1
1da177e4
LT
259 * 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
4be44fcd
LB
271struct acpi_gpe_event_info *acpi_ev_get_gpe_event_info(acpi_handle gpe_device,
272 u32 gpe_number)
1da177e4 273{
4be44fcd 274 union acpi_operand_object *obj_desc;
0f849d2c 275 struct acpi_gpe_event_info *gpe_info;
67a119f9 276 u32 i;
1da177e4 277
4be44fcd 278 ACPI_FUNCTION_ENTRY();
1da177e4 279
186c307f 280 /* A NULL gpe_device means use the FADT-defined GPE block(s) */
1da177e4
LT
281
282 if (!gpe_device) {
52fc0b02 283
1da177e4
LT
284 /* Examine GPE Block 0 and 1 (These blocks are permanent) */
285
286 for (i = 0; i < ACPI_MAX_GPE_BLOCKS; i++) {
0f849d2c
LM
287 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);
1da177e4
LT
292 }
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
1f86e8c1
LZ
302 obj_desc =
303 acpi_ns_get_attached_object((struct acpi_namespace_node *)
fd350943 304 gpe_device);
4be44fcd 305 if (!obj_desc || !obj_desc->device.gpe_block) {
1da177e4
LT
306 return (NULL);
307 }
308
0f849d2c
LM
309 return (acpi_ev_low_get_gpe_info
310 (gpe_number, obj_desc->device.gpe_block));
1da177e4
LT
311}
312
1da177e4
LT
313/*******************************************************************************
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 *
9f15fc66 322 * DESCRIPTION: Detect if any GP events have occurred. This function is
1da177e4
LT
323 * executed at interrupt level.
324 *
325 ******************************************************************************/
326
f19f1a7e 327u32 acpi_ev_gpe_detect(struct acpi_gpe_xrupt_info *gpe_xrupt_list)
1da177e4 328{
0897831b
BM
329 acpi_status status;
330 struct acpi_gpe_block_info *gpe_block;
779ba5a3 331 struct acpi_namespace_node *gpe_device;
0897831b 332 struct acpi_gpe_register_info *gpe_register_info;
779ba5a3
LZ
333 struct acpi_gpe_event_info *gpe_event_info;
334 u32 gpe_number;
4be44fcd
LB
335 u32 int_status = ACPI_INTERRUPT_NOT_HANDLED;
336 u8 enabled_status_byte;
4be44fcd
LB
337 u32 status_reg;
338 u32 enable_reg;
b8e4d893 339 acpi_cpu_flags flags;
67a119f9
BM
340 u32 i;
341 u32 j;
4be44fcd 342
b229cf92 343 ACPI_FUNCTION_NAME(ev_gpe_detect);
1da177e4
LT
344
345 /* Check for the case where there are no GPEs */
346
347 if (!gpe_xrupt_list) {
348 return (int_status);
349 }
350
967440e3
BM
351 /*
352 * We need to obtain the GPE lock for both the data structs and registers
9f15fc66
BM
353 * Note: Not necessary to obtain the hardware lock, since the GPE
354 * registers are owned by the gpe_lock.
967440e3 355 */
4be44fcd 356 flags = acpi_os_acquire_lock(acpi_gbl_gpe_lock);
4c90ece2
BM
357
358 /* Examine all GPE blocks attached to this interrupt level */
359
1da177e4
LT
360 gpe_block = gpe_xrupt_list->gpe_block_list_head;
361 while (gpe_block) {
779ba5a3
LZ
362 gpe_device = gpe_block->node;
363
1da177e4 364 /*
9f15fc66
BM
365 * Read all of the 8-bit GPE status and enable registers in this GPE
366 * block, saving all of them. Find all currently active GP events.
1da177e4
LT
367 */
368 for (i = 0; i < gpe_block->register_count; i++) {
52fc0b02 369
1da177e4
LT
370 /* Get the next status/enable pair */
371
372 gpe_register_info = &gpe_block->register_info[i];
373
6dfad339
LM
374 /*
375 * Optimization: If there are no GPEs enabled within this
376 * register, we can safely ignore the entire register.
377 */
378 if (!(gpe_register_info->enable_for_run |
379 gpe_register_info->enable_for_wake)) {
e1154ebd 380 ACPI_DEBUG_PRINT((ACPI_DB_INTERRUPTS,
7505da4c 381 "Ignore disabled registers for GPE %02X-%02X: "
e1154ebd
BM
382 "RunEnable=%02X, WakeEnable=%02X\n",
383 gpe_register_info->
384 base_gpe_number,
385 gpe_register_info->
386 base_gpe_number +
387 (ACPI_GPE_REGISTER_WIDTH - 1),
388 gpe_register_info->
389 enable_for_run,
390 gpe_register_info->
391 enable_for_wake));
6dfad339
LM
392 continue;
393 }
394
1da177e4
LT
395 /* Read the Status Register */
396
4be44fcd 397 status =
c6b5774c
BM
398 acpi_hw_read(&status_reg,
399 &gpe_register_info->status_address);
4be44fcd 400 if (ACPI_FAILURE(status)) {
1da177e4
LT
401 goto unlock_and_exit;
402 }
403
404 /* Read the Enable Register */
405
4be44fcd 406 status =
c6b5774c
BM
407 acpi_hw_read(&enable_reg,
408 &gpe_register_info->enable_address);
4be44fcd 409 if (ACPI_FAILURE(status)) {
1da177e4
LT
410 goto unlock_and_exit;
411 }
412
4be44fcd 413 ACPI_DEBUG_PRINT((ACPI_DB_INTERRUPTS,
7505da4c 414 "Read registers for GPE %02X-%02X: Status=%02X, Enable=%02X, "
e1154ebd 415 "RunEnable=%02X, WakeEnable=%02X\n",
4be44fcd 416 gpe_register_info->base_gpe_number,
e1154ebd
BM
417 gpe_register_info->base_gpe_number +
418 (ACPI_GPE_REGISTER_WIDTH - 1),
419 status_reg, enable_reg,
420 gpe_register_info->enable_for_run,
421 gpe_register_info->enable_for_wake));
1da177e4 422
44f6c012 423 /* Check if there is anything active at all in this register */
1da177e4 424
f19f1a7e 425 enabled_status_byte = (u8)(status_reg & enable_reg);
1da177e4 426 if (!enabled_status_byte) {
52fc0b02 427
1da177e4
LT
428 /* No active GPEs in this register, move on */
429
430 continue;
431 }
432
433 /* Now look at the individual GPEs in this byte register */
434
435 for (j = 0; j < ACPI_GPE_REGISTER_WIDTH; j++) {
52fc0b02 436
1da177e4
LT
437 /* Examine one GPE bit */
438
779ba5a3
LZ
439 gpe_event_info =
440 &gpe_block->
441 event_info[((acpi_size) i *
442 ACPI_GPE_REGISTER_WIDTH) + j];
443 gpe_number =
444 j + gpe_register_info->base_gpe_number;
445
69874165 446 if (enabled_status_byte & (1 << j)) {
779ba5a3
LZ
447
448 /* Invoke global event handler if present */
449
450 acpi_gpe_count++;
451 if (acpi_gbl_global_event_handler) {
452 acpi_gbl_global_event_handler
453 (ACPI_EVENT_TYPE_GPE,
454 gpe_device, gpe_number,
455 acpi_gbl_global_event_handler_context);
456 }
457
1da177e4
LT
458 /*
459 * Found an active GPE. Dispatch the event to a handler
460 * or method.
461 */
4be44fcd 462 int_status |=
779ba5a3
LZ
463 acpi_ev_gpe_dispatch(gpe_device,
464 gpe_event_info,
465 gpe_number);
1da177e4
LT
466 }
467 }
468 }
469
470 gpe_block = gpe_block->next;
471 }
472
10622bf8 473unlock_and_exit:
1da177e4 474
4be44fcd 475 acpi_os_release_lock(acpi_gbl_gpe_lock, flags);
1da177e4
LT
476 return (int_status);
477}
478
1da177e4
LT
479/*******************************************************************************
480 *
481 * FUNCTION: acpi_ev_asynch_execute_gpe_method
482 *
483 * PARAMETERS: Context (gpe_event_info) - Info for this GPE
484 *
485 * RETURN: None
486 *
4119532c
BM
487 * DESCRIPTION: Perform the actual execution of a GPE control method. This
488 * function is called from an invocation of acpi_os_execute and
489 * therefore does NOT execute at interrupt level - so that
1da177e4
LT
490 * the control method itself is not executed in the context of
491 * an interrupt handler.
492 *
493 ******************************************************************************/
494
4be44fcd 495static void ACPI_SYSTEM_XFACE acpi_ev_asynch_execute_gpe_method(void *context)
1da177e4 496{
5a284cd7 497 struct acpi_gpe_event_info *gpe_event_info = context;
b7be6883 498 acpi_status status = AE_OK;
4119532c 499 struct acpi_evaluate_info *info;
5816b343 500 struct acpi_gpe_notify_info *notify;
1da177e4 501
b229cf92 502 ACPI_FUNCTION_TRACE(ev_asynch_execute_gpe_method);
1da177e4 503
bba63a29
LM
504 /* Do the correct dispatch - normal method or implicit notify */
505
7c43312a 506 switch (ACPI_GPE_DISPATCH_TYPE(gpe_event_info->flags)) {
bba63a29 507 case ACPI_GPE_DISPATCH_NOTIFY:
bba63a29
LM
508 /*
509 * Implicit notify.
510 * Dispatch a DEVICE_WAKE notify to the appropriate handler.
511 * NOTE: the request is queued for execution after this method
512 * completes. The notify handlers are NOT invoked synchronously
513 * from this thread -- because handlers may in turn run other
514 * control methods.
5816b343
BM
515 *
516 * June 2012: Expand implicit notify mechanism to support
517 * notifies on multiple device objects.
bba63a29 518 */
b18da580 519 notify = gpe_event_info->dispatch.notify_list;
5816b343
BM
520 while (ACPI_SUCCESS(status) && notify) {
521 status =
522 acpi_ev_queue_notify_request(notify->device_node,
523 ACPI_NOTIFY_DEVICE_WAKE);
524
525 notify = notify->next;
981858bd
RW
526 }
527
bba63a29
LM
528 break;
529
530 case ACPI_GPE_DISPATCH_METHOD:
1da177e4 531
4119532c
BM
532 /* Allocate the evaluation information block */
533
534 info = ACPI_ALLOCATE_ZEROED(sizeof(struct acpi_evaluate_info));
535 if (!info) {
536 status = AE_NO_MEMORY;
537 } else {
538 /*
75c8044f
LZ
539 * Invoke the GPE Method (_Lxx, _Exx) i.e., evaluate the
540 * _Lxx/_Exx control method that corresponds to this GPE
4119532c
BM
541 */
542 info->prefix_node =
b18da580 543 gpe_event_info->dispatch.method_node;
4119532c
BM
544 info->flags = ACPI_IGNORE_RETURN_VALUE;
545
546 status = acpi_ns_evaluate(info);
547 ACPI_FREE(info);
548 }
549
4be44fcd 550 if (ACPI_FAILURE(status)) {
b8e4d893 551 ACPI_EXCEPTION((AE_INFO, status,
2e42005b 552 "while evaluating GPE method [%4.4s]",
b18da580
LZ
553 acpi_ut_get_node_name(gpe_event_info->
554 dispatch.
555 method_node)));
1da177e4 556 }
bba63a29
LM
557 break;
558
559 default:
1d1ea1b7 560
b18da580 561 goto error_exit; /* Should never happen */
1da177e4 562 }
5a284cd7 563
17bc54ee 564 /* Defer enabling of GPE until all notify handlers are done */
5a284cd7
LM
565
566 status = acpi_os_execute(OSL_NOTIFY_HANDLER,
b18da580
LZ
567 acpi_ev_asynch_enable_gpe, gpe_event_info);
568 if (ACPI_SUCCESS(status)) {
569 return_VOID;
5a284cd7 570 }
b18da580
LZ
571
572error_exit:
573 acpi_ev_asynch_enable_gpe(gpe_event_info);
17bc54ee
AS
574 return_VOID;
575}
1da177e4 576
bba63a29 577
5a284cd7
LM
578/*******************************************************************************
579 *
580 * FUNCTION: acpi_ev_asynch_enable_gpe
581 *
582 * PARAMETERS: Context (gpe_event_info) - Info for this GPE
583 * Callback from acpi_os_execute
584 *
585 * RETURN: None
586 *
587 * DESCRIPTION: Asynchronous clear/enable for GPE. This allows the GPE to
bba63a29 588 * complete (i.e., finish execution of Notify)
5a284cd7
LM
589 *
590 ******************************************************************************/
591
592static void ACPI_SYSTEM_XFACE acpi_ev_asynch_enable_gpe(void *context)
17bc54ee
AS
593{
594 struct acpi_gpe_event_info *gpe_event_info = context;
7dd88219 595 acpi_cpu_flags flags;
bba63a29 596
7dd88219 597 flags = acpi_os_acquire_lock(acpi_gbl_gpe_lock);
bba63a29 598 (void)acpi_ev_finish_gpe(gpe_event_info);
7dd88219 599 acpi_os_release_lock(acpi_gbl_gpe_lock, flags);
bba63a29 600
bba63a29
LM
601 return;
602}
603
604
605/*******************************************************************************
606 *
607 * FUNCTION: acpi_ev_finish_gpe
608 *
609 * PARAMETERS: gpe_event_info - Info for this GPE
610 *
611 * RETURN: Status
612 *
613 * DESCRIPTION: Clear/Enable a GPE. Common code that is used after execution
614 * of a GPE method or a synchronous or asynchronous GPE handler.
615 *
616 ******************************************************************************/
617
f19f1a7e 618acpi_status acpi_ev_finish_gpe(struct acpi_gpe_event_info * gpe_event_info)
bba63a29 619{
17bc54ee 620 acpi_status status;
5a284cd7 621
17bc54ee 622 if ((gpe_event_info->flags & ACPI_GPE_XRUPT_TYPE_MASK) ==
4be44fcd 623 ACPI_GPE_LEVEL_TRIGGERED) {
1da177e4 624 /*
bba63a29
LM
625 * GPE is level-triggered, we clear the GPE status bit after
626 * handling the event.
1da177e4 627 */
17bc54ee 628 status = acpi_hw_clear_gpe(gpe_event_info);
4be44fcd 629 if (ACPI_FAILURE(status)) {
bba63a29 630 return (status);
1da177e4
LT
631 }
632 }
633
de5668fe 634 /*
bba63a29 635 * Enable this GPE, conditionally. This means that the GPE will
c50f13c6 636 * only be physically enabled if the enable_mask bit is set
bba63a29 637 * in the event_info.
de5668fe 638 */
3a37898d 639 (void)acpi_hw_low_set_gpe(gpe_event_info, ACPI_GPE_CONDITIONAL_ENABLE);
bba63a29 640 return (AE_OK);
1da177e4
LT
641}
642
bba63a29 643
1da177e4
LT
644/*******************************************************************************
645 *
646 * FUNCTION: acpi_ev_gpe_dispatch
647 *
f19f1a7e
LZ
648 * PARAMETERS: gpe_device - Device node. NULL for GPE0/GPE1
649 * gpe_event_info - Info for this GPE
650 * gpe_number - Number relative to the parent GPE block
1da177e4
LT
651 *
652 * RETURN: INTERRUPT_HANDLED or INTERRUPT_NOT_HANDLED
653 *
654 * DESCRIPTION: Dispatch a General Purpose Event to either a function (e.g. EC)
655 * or method (e.g. _Lxx/_Exx) handler.
656 *
657 * This function executes at interrupt level.
658 *
659 ******************************************************************************/
660
661u32
8b6cd8ad 662acpi_ev_gpe_dispatch(struct acpi_namespace_node *gpe_device,
f19f1a7e 663 struct acpi_gpe_event_info *gpe_event_info, u32 gpe_number)
1da177e4 664{
4be44fcd 665 acpi_status status;
bba63a29 666 u32 return_value;
1da177e4 667
b229cf92 668 ACPI_FUNCTION_TRACE(ev_gpe_dispatch);
1da177e4 669
1da177e4 670 /*
bba63a29
LM
671 * Always disable the GPE so that it does not keep firing before
672 * any asynchronous activity completes (either from the execution
673 * of a GPE method or an asynchronous GPE handler.)
674 *
675 * If there is no handler or method to run, just disable the
676 * GPE and leave it disabled permanently to prevent further such
677 * pointless events from firing.
678 */
679 status = acpi_hw_low_set_gpe(gpe_event_info, ACPI_GPE_DISABLE);
680 if (ACPI_FAILURE(status)) {
681 ACPI_EXCEPTION((AE_INFO, status,
7505da4c 682 "Unable to disable GPE %02X", gpe_number));
fd1af712 683 return_UINT32(ACPI_INTERRUPT_NOT_HANDLED);
bba63a29
LM
684 }
685
6ec5e120
LZ
686 /*
687 * If edge-triggered, clear the GPE status bit now. Note that
688 * level-triggered events are cleared after the GPE is serviced.
689 */
690 if ((gpe_event_info->flags & ACPI_GPE_XRUPT_TYPE_MASK) ==
691 ACPI_GPE_EDGE_TRIGGERED) {
692 status = acpi_hw_clear_gpe(gpe_event_info);
693 if (ACPI_FAILURE(status)) {
694 ACPI_EXCEPTION((AE_INFO, status,
695 "Unable to clear GPE %02X",
696 gpe_number));
697 (void)acpi_hw_low_set_gpe(gpe_event_info,
698 ACPI_GPE_CONDITIONAL_ENABLE);
699 return_UINT32(ACPI_INTERRUPT_NOT_HANDLED);
700 }
701 }
702
bba63a29
LM
703 /*
704 * Dispatch the GPE to either an installed handler or the control
705 * method associated with this GPE (_Lxx or _Exx). If a handler
706 * exists, we invoke it and do not attempt to run the method.
707 * If there is neither a handler nor a method, leave the GPE
708 * disabled.
1da177e4 709 */
7c43312a 710 switch (ACPI_GPE_DISPATCH_TYPE(gpe_event_info->flags)) {
1da177e4
LT
711 case ACPI_GPE_DISPATCH_HANDLER:
712
bba63a29
LM
713 /* Invoke the installed handler (at interrupt level) */
714
715 return_value =
716 gpe_event_info->dispatch.handler->address(gpe_device,
717 gpe_number,
718 gpe_event_info->
719 dispatch.handler->
720 context);
721
722 /* If requested, clear (if level-triggered) and reenable the GPE */
723
724 if (return_value & ACPI_REENABLE_GPE) {
725 (void)acpi_ev_finish_gpe(gpe_event_info);
1da177e4
LT
726 }
727 break;
728
729 case ACPI_GPE_DISPATCH_METHOD:
bba63a29 730 case ACPI_GPE_DISPATCH_NOTIFY:
1da177e4
LT
731 /*
732 * Execute the method associated with the GPE
733 * NOTE: Level-triggered GPEs are cleared after the method completes.
734 */
958dd242
BM
735 status = acpi_os_execute(OSL_GPE_HANDLER,
736 acpi_ev_asynch_execute_gpe_method,
737 gpe_event_info);
4be44fcd 738 if (ACPI_FAILURE(status)) {
b8e4d893 739 ACPI_EXCEPTION((AE_INFO, status,
7505da4c 740 "Unable to queue handler for GPE %02X - event disabled",
b8e4d893 741 gpe_number));
1da177e4
LT
742 }
743 break;
744
745 default:
0f849d2c
LM
746 /*
747 * No handler or method to run!
748 * 03/2010: This case should no longer be possible. We will not allow
749 * a GPE to be enabled if it has no handler or method.
750 */
b8e4d893 751 ACPI_ERROR((AE_INFO,
7505da4c 752 "No handler or method for GPE %02X, disabling event",
b8e4d893 753 gpe_number));
1da177e4 754
1da177e4
LT
755 break;
756 }
757
fd1af712 758 return_UINT32(ACPI_INTERRUPT_HANDLED);
1da177e4 759}
33620c54
BM
760
761#endif /* !ACPI_REDUCED_HARDWARE */
This page took 0.890737 seconds and 5 git commands to generate.