1 /******************************************************************************
3 * Module Name: evgpeutil - GPE utilities
5 *****************************************************************************/
8 * Copyright (C) 2000 - 2016, Intel Corp.
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
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.
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.
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.
44 #include <acpi/acpi.h>
48 #define _COMPONENT ACPI_EVENTS
49 ACPI_MODULE_NAME("evgpeutil")
51 #if (!ACPI_REDUCED_HARDWARE) /* Entire module */
52 /*******************************************************************************
54 * FUNCTION: acpi_ev_walk_gpe_list
56 * PARAMETERS: gpe_walk_callback - Routine called for each GPE block
57 * context - Value passed to callback
61 * DESCRIPTION: Walk the GPE lists.
63 ******************************************************************************/
65 acpi_ev_walk_gpe_list(acpi_gpe_callback gpe_walk_callback
, void *context
)
67 struct acpi_gpe_block_info
*gpe_block
;
68 struct acpi_gpe_xrupt_info
*gpe_xrupt_info
;
69 acpi_status status
= AE_OK
;
72 ACPI_FUNCTION_TRACE(ev_walk_gpe_list
);
74 flags
= acpi_os_acquire_lock(acpi_gbl_gpe_lock
);
76 /* Walk the interrupt level descriptor list */
78 gpe_xrupt_info
= acpi_gbl_gpe_xrupt_list_head
;
79 while (gpe_xrupt_info
) {
81 /* Walk all Gpe Blocks attached to this interrupt level */
83 gpe_block
= gpe_xrupt_info
->gpe_block_list_head
;
86 /* One callback per GPE block */
89 gpe_walk_callback(gpe_xrupt_info
, gpe_block
,
91 if (ACPI_FAILURE(status
)) {
92 if (status
== AE_CTRL_END
) { /* Callback abort */
98 gpe_block
= gpe_block
->next
;
101 gpe_xrupt_info
= gpe_xrupt_info
->next
;
105 acpi_os_release_lock(acpi_gbl_gpe_lock
, flags
);
106 return_ACPI_STATUS(status
);
109 /*******************************************************************************
111 * FUNCTION: acpi_ev_get_gpe_device
113 * PARAMETERS: GPE_WALK_CALLBACK
117 * DESCRIPTION: Matches the input GPE index (0-current_gpe_count) with a GPE
118 * block device. NULL if the GPE is one of the FADT-defined GPEs.
120 ******************************************************************************/
123 acpi_ev_get_gpe_device(struct acpi_gpe_xrupt_info
*gpe_xrupt_info
,
124 struct acpi_gpe_block_info
*gpe_block
, void *context
)
126 struct acpi_gpe_device_info
*info
= context
;
128 /* Increment Index by the number of GPEs in this block */
130 info
->next_block_base_index
+= gpe_block
->gpe_count
;
132 if (info
->index
< info
->next_block_base_index
) {
134 * The GPE index is within this block, get the node. Leave the node
135 * NULL for the FADT-defined GPEs
137 if ((gpe_block
->node
)->type
== ACPI_TYPE_DEVICE
) {
138 info
->gpe_device
= gpe_block
->node
;
141 info
->status
= AE_OK
;
142 return (AE_CTRL_END
);
148 /*******************************************************************************
150 * FUNCTION: acpi_ev_get_gpe_xrupt_block
152 * PARAMETERS: interrupt_number - Interrupt for a GPE block
153 * gpe_xrupt_block - Where the block is returned
157 * DESCRIPTION: Get or Create a GPE interrupt block. There is one interrupt
158 * block per unique interrupt level used for GPEs. Should be
159 * called only when the GPE lists are semaphore locked and not
162 ******************************************************************************/
165 acpi_ev_get_gpe_xrupt_block(u32 interrupt_number
,
166 struct acpi_gpe_xrupt_info
**gpe_xrupt_block
)
168 struct acpi_gpe_xrupt_info
*next_gpe_xrupt
;
169 struct acpi_gpe_xrupt_info
*gpe_xrupt
;
171 acpi_cpu_flags flags
;
173 ACPI_FUNCTION_TRACE(ev_get_gpe_xrupt_block
);
175 /* No need for lock since we are not changing any list elements here */
177 next_gpe_xrupt
= acpi_gbl_gpe_xrupt_list_head
;
178 while (next_gpe_xrupt
) {
179 if (next_gpe_xrupt
->interrupt_number
== interrupt_number
) {
180 *gpe_xrupt_block
= next_gpe_xrupt
;
181 return_ACPI_STATUS(AE_OK
);
184 next_gpe_xrupt
= next_gpe_xrupt
->next
;
187 /* Not found, must allocate a new xrupt descriptor */
189 gpe_xrupt
= ACPI_ALLOCATE_ZEROED(sizeof(struct acpi_gpe_xrupt_info
));
191 return_ACPI_STATUS(AE_NO_MEMORY
);
194 gpe_xrupt
->interrupt_number
= interrupt_number
;
196 /* Install new interrupt descriptor with spin lock */
198 flags
= acpi_os_acquire_lock(acpi_gbl_gpe_lock
);
199 if (acpi_gbl_gpe_xrupt_list_head
) {
200 next_gpe_xrupt
= acpi_gbl_gpe_xrupt_list_head
;
201 while (next_gpe_xrupt
->next
) {
202 next_gpe_xrupt
= next_gpe_xrupt
->next
;
205 next_gpe_xrupt
->next
= gpe_xrupt
;
206 gpe_xrupt
->previous
= next_gpe_xrupt
;
208 acpi_gbl_gpe_xrupt_list_head
= gpe_xrupt
;
211 acpi_os_release_lock(acpi_gbl_gpe_lock
, flags
);
213 /* Install new interrupt handler if not SCI_INT */
215 if (interrupt_number
!= acpi_gbl_FADT
.sci_interrupt
) {
216 status
= acpi_os_install_interrupt_handler(interrupt_number
,
217 acpi_ev_gpe_xrupt_handler
,
219 if (ACPI_FAILURE(status
)) {
220 ACPI_EXCEPTION((AE_INFO
, status
,
221 "Could not install GPE interrupt handler at level 0x%X",
223 return_ACPI_STATUS(status
);
227 *gpe_xrupt_block
= gpe_xrupt
;
228 return_ACPI_STATUS(AE_OK
);
231 /*******************************************************************************
233 * FUNCTION: acpi_ev_delete_gpe_xrupt
235 * PARAMETERS: gpe_xrupt - A GPE interrupt info block
239 * DESCRIPTION: Remove and free a gpe_xrupt block. Remove an associated
240 * interrupt handler if not the SCI interrupt.
242 ******************************************************************************/
244 acpi_status
acpi_ev_delete_gpe_xrupt(struct acpi_gpe_xrupt_info
*gpe_xrupt
)
247 acpi_cpu_flags flags
;
249 ACPI_FUNCTION_TRACE(ev_delete_gpe_xrupt
);
251 /* We never want to remove the SCI interrupt handler */
253 if (gpe_xrupt
->interrupt_number
== acpi_gbl_FADT
.sci_interrupt
) {
254 gpe_xrupt
->gpe_block_list_head
= NULL
;
255 return_ACPI_STATUS(AE_OK
);
258 /* Disable this interrupt */
261 acpi_os_remove_interrupt_handler(gpe_xrupt
->interrupt_number
,
262 acpi_ev_gpe_xrupt_handler
);
263 if (ACPI_FAILURE(status
)) {
264 return_ACPI_STATUS(status
);
267 /* Unlink the interrupt block with lock */
269 flags
= acpi_os_acquire_lock(acpi_gbl_gpe_lock
);
270 if (gpe_xrupt
->previous
) {
271 gpe_xrupt
->previous
->next
= gpe_xrupt
->next
;
273 /* No previous, update list head */
275 acpi_gbl_gpe_xrupt_list_head
= gpe_xrupt
->next
;
278 if (gpe_xrupt
->next
) {
279 gpe_xrupt
->next
->previous
= gpe_xrupt
->previous
;
281 acpi_os_release_lock(acpi_gbl_gpe_lock
, flags
);
285 ACPI_FREE(gpe_xrupt
);
286 return_ACPI_STATUS(AE_OK
);
289 /*******************************************************************************
291 * FUNCTION: acpi_ev_delete_gpe_handlers
293 * PARAMETERS: gpe_xrupt_info - GPE Interrupt info
294 * gpe_block - Gpe Block info
298 * DESCRIPTION: Delete all Handler objects found in the GPE data structs.
299 * Used only prior to termination.
301 ******************************************************************************/
304 acpi_ev_delete_gpe_handlers(struct acpi_gpe_xrupt_info
*gpe_xrupt_info
,
305 struct acpi_gpe_block_info
*gpe_block
,
308 struct acpi_gpe_event_info
*gpe_event_info
;
309 struct acpi_gpe_notify_info
*notify
;
310 struct acpi_gpe_notify_info
*next
;
314 ACPI_FUNCTION_TRACE(ev_delete_gpe_handlers
);
316 /* Examine each GPE Register within the block */
318 for (i
= 0; i
< gpe_block
->register_count
; i
++) {
320 /* Now look at the individual GPEs in this byte register */
322 for (j
= 0; j
< ACPI_GPE_REGISTER_WIDTH
; j
++) {
323 gpe_event_info
= &gpe_block
->event_info
[((acpi_size
)i
*
324 ACPI_GPE_REGISTER_WIDTH
)
327 if ((ACPI_GPE_DISPATCH_TYPE(gpe_event_info
->flags
) ==
328 ACPI_GPE_DISPATCH_HANDLER
) ||
329 (ACPI_GPE_DISPATCH_TYPE(gpe_event_info
->flags
) ==
330 ACPI_GPE_DISPATCH_RAW_HANDLER
)) {
332 /* Delete an installed handler block */
334 ACPI_FREE(gpe_event_info
->dispatch
.handler
);
335 gpe_event_info
->dispatch
.handler
= NULL
;
336 gpe_event_info
->flags
&=
337 ~ACPI_GPE_DISPATCH_MASK
;
338 } else if (ACPI_GPE_DISPATCH_TYPE(gpe_event_info
->flags
)
339 == ACPI_GPE_DISPATCH_NOTIFY
) {
341 /* Delete the implicit notification device list */
343 notify
= gpe_event_info
->dispatch
.notify_list
;
350 gpe_event_info
->dispatch
.notify_list
= NULL
;
351 gpe_event_info
->flags
&=
352 ~ACPI_GPE_DISPATCH_MASK
;
357 return_ACPI_STATUS(AE_OK
);
360 #endif /* !ACPI_REDUCED_HARDWARE */