1 /******************************************************************************
3 * Module Name: evgpeblk - GPE block creation and initialization.
5 *****************************************************************************/
8 * Copyright (C) 2000 - 2008, 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>
49 #define _COMPONENT ACPI_EVENTS
50 ACPI_MODULE_NAME("evgpeblk")
52 /* Local prototypes */
54 acpi_ev_save_method_info(acpi_handle obj_handle
,
55 u32 level
, void *obj_desc
, void **return_value
);
58 acpi_ev_match_prw_and_gpe(acpi_handle obj_handle
,
59 u32 level
, void *info
, void **return_value
);
61 static struct acpi_gpe_xrupt_info
*acpi_ev_get_gpe_xrupt_block(u32
65 acpi_ev_delete_gpe_xrupt(struct acpi_gpe_xrupt_info
*gpe_xrupt
);
68 acpi_ev_install_gpe_block(struct acpi_gpe_block_info
*gpe_block
,
69 u32 interrupt_number
);
72 acpi_ev_create_gpe_info_blocks(struct acpi_gpe_block_info
*gpe_block
);
74 /*******************************************************************************
76 * FUNCTION: acpi_ev_valid_gpe_event
78 * PARAMETERS: gpe_event_info - Info for this GPE
80 * RETURN: TRUE if the gpe_event is valid
82 * DESCRIPTION: Validate a GPE event. DO NOT CALL FROM INTERRUPT LEVEL.
83 * Should be called only when the GPE lists are semaphore locked
84 * and not subject to change.
86 ******************************************************************************/
88 u8
acpi_ev_valid_gpe_event(struct acpi_gpe_event_info
*gpe_event_info
)
90 struct acpi_gpe_xrupt_info
*gpe_xrupt_block
;
91 struct acpi_gpe_block_info
*gpe_block
;
93 ACPI_FUNCTION_ENTRY();
95 /* No need for spin lock since we are not changing any list elements */
97 /* Walk the GPE interrupt levels */
99 gpe_xrupt_block
= acpi_gbl_gpe_xrupt_list_head
;
100 while (gpe_xrupt_block
) {
101 gpe_block
= gpe_xrupt_block
->gpe_block_list_head
;
103 /* Walk the GPE blocks on this interrupt level */
106 if ((&gpe_block
->event_info
[0] <= gpe_event_info
) &&
107 (&gpe_block
->event_info
[((acpi_size
)
109 register_count
) * 8] >
114 gpe_block
= gpe_block
->next
;
117 gpe_xrupt_block
= gpe_xrupt_block
->next
;
123 /*******************************************************************************
125 * FUNCTION: acpi_ev_walk_gpe_list
127 * PARAMETERS: gpe_walk_callback - Routine called for each GPE block
128 * Context - Value passed to callback
132 * DESCRIPTION: Walk the GPE lists.
134 ******************************************************************************/
137 acpi_ev_walk_gpe_list(acpi_gpe_callback gpe_walk_callback
, void *context
)
139 struct acpi_gpe_block_info
*gpe_block
;
140 struct acpi_gpe_xrupt_info
*gpe_xrupt_info
;
141 acpi_status status
= AE_OK
;
142 acpi_cpu_flags flags
;
144 ACPI_FUNCTION_TRACE(ev_walk_gpe_list
);
146 flags
= acpi_os_acquire_lock(acpi_gbl_gpe_lock
);
148 /* Walk the interrupt level descriptor list */
150 gpe_xrupt_info
= acpi_gbl_gpe_xrupt_list_head
;
151 while (gpe_xrupt_info
) {
153 /* Walk all Gpe Blocks attached to this interrupt level */
155 gpe_block
= gpe_xrupt_info
->gpe_block_list_head
;
158 /* One callback per GPE block */
161 gpe_walk_callback(gpe_xrupt_info
, gpe_block
,
163 if (ACPI_FAILURE(status
)) {
164 if (status
== AE_CTRL_END
) { /* Callback abort */
167 goto unlock_and_exit
;
170 gpe_block
= gpe_block
->next
;
173 gpe_xrupt_info
= gpe_xrupt_info
->next
;
177 acpi_os_release_lock(acpi_gbl_gpe_lock
, flags
);
178 return_ACPI_STATUS(status
);
181 /*******************************************************************************
183 * FUNCTION: acpi_ev_delete_gpe_handlers
185 * PARAMETERS: gpe_xrupt_info - GPE Interrupt info
186 * gpe_block - Gpe Block info
190 * DESCRIPTION: Delete all Handler objects found in the GPE data structs.
191 * Used only prior to termination.
193 ******************************************************************************/
196 acpi_ev_delete_gpe_handlers(struct acpi_gpe_xrupt_info
*gpe_xrupt_info
,
197 struct acpi_gpe_block_info
*gpe_block
,
200 struct acpi_gpe_event_info
*gpe_event_info
;
204 ACPI_FUNCTION_TRACE(ev_delete_gpe_handlers
);
206 /* Examine each GPE Register within the block */
208 for (i
= 0; i
< gpe_block
->register_count
; i
++) {
210 /* Now look at the individual GPEs in this byte register */
212 for (j
= 0; j
< ACPI_GPE_REGISTER_WIDTH
; j
++) {
213 gpe_event_info
= &gpe_block
->event_info
[((acpi_size
) i
*
214 ACPI_GPE_REGISTER_WIDTH
)
217 if ((gpe_event_info
->flags
& ACPI_GPE_DISPATCH_MASK
) ==
218 ACPI_GPE_DISPATCH_HANDLER
) {
219 ACPI_FREE(gpe_event_info
->dispatch
.handler
);
220 gpe_event_info
->dispatch
.handler
= NULL
;
221 gpe_event_info
->flags
&=
222 ~ACPI_GPE_DISPATCH_MASK
;
227 return_ACPI_STATUS(AE_OK
);
230 /*******************************************************************************
232 * FUNCTION: acpi_ev_save_method_info
234 * PARAMETERS: Callback from walk_namespace
238 * DESCRIPTION: Called from acpi_walk_namespace. Expects each object to be a
239 * control method under the _GPE portion of the namespace.
240 * Extract the name and GPE type from the object, saving this
241 * information for quick lookup during GPE dispatch
243 * The name of each GPE control method is of the form:
246 * L - means that the GPE is level triggered
247 * E - means that the GPE is edge triggered
248 * xx - is the GPE number [in HEX]
250 ******************************************************************************/
253 acpi_ev_save_method_info(acpi_handle obj_handle
,
254 u32 level
, void *obj_desc
, void **return_value
)
256 struct acpi_gpe_block_info
*gpe_block
= (void *)obj_desc
;
257 struct acpi_gpe_event_info
*gpe_event_info
;
259 char name
[ACPI_NAME_SIZE
+ 1];
263 ACPI_FUNCTION_TRACE(ev_save_method_info
);
266 * _Lxx and _Exx GPE method support
268 * 1) Extract the name from the object and convert to a string
270 ACPI_MOVE_32_TO_32(name
,
271 &((struct acpi_namespace_node
*)obj_handle
)->name
.
273 name
[ACPI_NAME_SIZE
] = 0;
276 * 2) Edge/Level determination is based on the 2nd character
279 * NOTE: Default GPE type is RUNTIME. May be changed later to WAKE
280 * if a _PRW object is found that points to this GPE.
284 type
= ACPI_GPE_LEVEL_TRIGGERED
;
288 type
= ACPI_GPE_EDGE_TRIGGERED
;
292 /* Unknown method type, just ignore it! */
294 ACPI_DEBUG_PRINT((ACPI_DB_LOAD
,
295 "Ignoring unknown GPE method type: %s "
296 "(name not of form _Lxx or _Exx)", name
));
297 return_ACPI_STATUS(AE_OK
);
300 /* Convert the last two characters of the name to the GPE Number */
302 gpe_number
= ACPI_STRTOUL(&name
[2], NULL
, 16);
303 if (gpe_number
== ACPI_UINT32_MAX
) {
305 /* Conversion failed; invalid method, just ignore it */
307 ACPI_DEBUG_PRINT((ACPI_DB_LOAD
,
308 "Could not extract GPE number from name: %s "
309 "(name is not of form _Lxx or _Exx)", name
));
310 return_ACPI_STATUS(AE_OK
);
313 /* Ensure that we have a valid GPE number for this GPE block */
315 if ((gpe_number
< gpe_block
->block_base_number
) ||
316 (gpe_number
>= (gpe_block
->block_base_number
+
317 (gpe_block
->register_count
* 8)))) {
319 * Not valid for this GPE block, just ignore it. However, it may be
320 * valid for a different GPE block, since GPE0 and GPE1 methods both
321 * appear under \_GPE.
323 return_ACPI_STATUS(AE_OK
);
327 * Now we can add this information to the gpe_event_info block for use
328 * during dispatch of this GPE. Default type is RUNTIME, although this may
329 * change when the _PRW methods are executed later.
332 &gpe_block
->event_info
[gpe_number
- gpe_block
->block_base_number
];
334 gpe_event_info
->flags
= (u8
)
335 (type
| ACPI_GPE_DISPATCH_METHOD
| ACPI_GPE_TYPE_RUNTIME
);
337 gpe_event_info
->dispatch
.method_node
=
338 (struct acpi_namespace_node
*)obj_handle
;
340 /* Update enable mask, but don't enable the HW GPE as of yet */
342 status
= acpi_ev_enable_gpe(gpe_event_info
, FALSE
);
344 ACPI_DEBUG_PRINT((ACPI_DB_LOAD
,
345 "Registered GPE method %s as GPE number 0x%.2X\n",
347 return_ACPI_STATUS(status
);
350 /*******************************************************************************
352 * FUNCTION: acpi_ev_match_prw_and_gpe
354 * PARAMETERS: Callback from walk_namespace
356 * RETURN: Status. NOTE: We ignore errors so that the _PRW walk is
357 * not aborted on a single _PRW failure.
359 * DESCRIPTION: Called from acpi_walk_namespace. Expects each object to be a
360 * Device. Run the _PRW method. If present, extract the GPE
361 * number and mark the GPE as a WAKE GPE.
363 ******************************************************************************/
366 acpi_ev_match_prw_and_gpe(acpi_handle obj_handle
,
367 u32 level
, void *info
, void **return_value
)
369 struct acpi_gpe_walk_info
*gpe_info
= (void *)info
;
370 struct acpi_namespace_node
*gpe_device
;
371 struct acpi_gpe_block_info
*gpe_block
;
372 struct acpi_namespace_node
*target_gpe_device
;
373 struct acpi_gpe_event_info
*gpe_event_info
;
374 union acpi_operand_object
*pkg_desc
;
375 union acpi_operand_object
*obj_desc
;
379 ACPI_FUNCTION_TRACE(ev_match_prw_and_gpe
);
381 /* Check for a _PRW method under this device */
383 status
= acpi_ut_evaluate_object(obj_handle
, METHOD_NAME__PRW
,
384 ACPI_BTYPE_PACKAGE
, &pkg_desc
);
385 if (ACPI_FAILURE(status
)) {
387 /* Ignore all errors from _PRW, we don't want to abort the subsystem */
389 return_ACPI_STATUS(AE_OK
);
392 /* The returned _PRW package must have at least two elements */
394 if (pkg_desc
->package
.count
< 2) {
398 /* Extract pointers from the input context */
400 gpe_device
= gpe_info
->gpe_device
;
401 gpe_block
= gpe_info
->gpe_block
;
404 * The _PRW object must return a package, we are only interested in the
407 obj_desc
= pkg_desc
->package
.elements
[0];
409 if (obj_desc
->common
.type
== ACPI_TYPE_INTEGER
) {
411 /* Use FADT-defined GPE device (from definition of _PRW) */
413 target_gpe_device
= acpi_gbl_fadt_gpe_device
;
415 /* Integer is the GPE number in the FADT described GPE blocks */
417 gpe_number
= (u32
) obj_desc
->integer
.value
;
418 } else if (obj_desc
->common
.type
== ACPI_TYPE_PACKAGE
) {
420 /* Package contains a GPE reference and GPE number within a GPE block */
422 if ((obj_desc
->package
.count
< 2) ||
423 ((obj_desc
->package
.elements
[0])->common
.type
!=
424 ACPI_TYPE_LOCAL_REFERENCE
) ||
425 ((obj_desc
->package
.elements
[1])->common
.type
!=
426 ACPI_TYPE_INTEGER
)) {
430 /* Get GPE block reference and decode */
433 obj_desc
->package
.elements
[0]->reference
.node
;
434 gpe_number
= (u32
) obj_desc
->package
.elements
[1]->integer
.value
;
436 /* Unknown type, just ignore it */
442 * Is this GPE within this block?
444 * TRUE if and only if these conditions are true:
445 * 1) The GPE devices match.
446 * 2) The GPE index(number) is within the range of the Gpe Block
447 * associated with the GPE device.
449 if ((gpe_device
== target_gpe_device
) &&
450 (gpe_number
>= gpe_block
->block_base_number
) &&
451 (gpe_number
< gpe_block
->block_base_number
+
452 (gpe_block
->register_count
* 8))) {
453 gpe_event_info
= &gpe_block
->event_info
[gpe_number
-
457 /* Mark GPE for WAKE-ONLY but WAKE_DISABLED */
459 gpe_event_info
->flags
&=
460 ~(ACPI_GPE_WAKE_ENABLED
| ACPI_GPE_RUN_ENABLED
);
463 acpi_ev_set_gpe_type(gpe_event_info
, ACPI_GPE_TYPE_WAKE
);
464 if (ACPI_FAILURE(status
)) {
469 acpi_ev_update_gpe_enable_masks(gpe_event_info
,
474 acpi_ut_remove_reference(pkg_desc
);
475 return_ACPI_STATUS(AE_OK
);
478 /*******************************************************************************
480 * FUNCTION: acpi_ev_get_gpe_xrupt_block
482 * PARAMETERS: interrupt_number - Interrupt for a GPE block
484 * RETURN: A GPE interrupt block
486 * DESCRIPTION: Get or Create a GPE interrupt block. There is one interrupt
487 * block per unique interrupt level used for GPEs. Should be
488 * called only when the GPE lists are semaphore locked and not
491 ******************************************************************************/
493 static struct acpi_gpe_xrupt_info
*acpi_ev_get_gpe_xrupt_block(u32
496 struct acpi_gpe_xrupt_info
*next_gpe_xrupt
;
497 struct acpi_gpe_xrupt_info
*gpe_xrupt
;
499 acpi_cpu_flags flags
;
501 ACPI_FUNCTION_TRACE(ev_get_gpe_xrupt_block
);
503 /* No need for lock since we are not changing any list elements here */
505 next_gpe_xrupt
= acpi_gbl_gpe_xrupt_list_head
;
506 while (next_gpe_xrupt
) {
507 if (next_gpe_xrupt
->interrupt_number
== interrupt_number
) {
508 return_PTR(next_gpe_xrupt
);
511 next_gpe_xrupt
= next_gpe_xrupt
->next
;
514 /* Not found, must allocate a new xrupt descriptor */
516 gpe_xrupt
= ACPI_ALLOCATE_ZEROED(sizeof(struct acpi_gpe_xrupt_info
));
521 gpe_xrupt
->interrupt_number
= interrupt_number
;
523 /* Install new interrupt descriptor with spin lock */
525 flags
= acpi_os_acquire_lock(acpi_gbl_gpe_lock
);
526 if (acpi_gbl_gpe_xrupt_list_head
) {
527 next_gpe_xrupt
= acpi_gbl_gpe_xrupt_list_head
;
528 while (next_gpe_xrupt
->next
) {
529 next_gpe_xrupt
= next_gpe_xrupt
->next
;
532 next_gpe_xrupt
->next
= gpe_xrupt
;
533 gpe_xrupt
->previous
= next_gpe_xrupt
;
535 acpi_gbl_gpe_xrupt_list_head
= gpe_xrupt
;
537 acpi_os_release_lock(acpi_gbl_gpe_lock
, flags
);
539 /* Install new interrupt handler if not SCI_INT */
541 if (interrupt_number
!= acpi_gbl_FADT
.sci_interrupt
) {
542 status
= acpi_os_install_interrupt_handler(interrupt_number
,
543 acpi_ev_gpe_xrupt_handler
,
545 if (ACPI_FAILURE(status
)) {
547 "Could not install GPE interrupt handler at level 0x%X",
553 return_PTR(gpe_xrupt
);
556 /*******************************************************************************
558 * FUNCTION: acpi_ev_delete_gpe_xrupt
560 * PARAMETERS: gpe_xrupt - A GPE interrupt info block
564 * DESCRIPTION: Remove and free a gpe_xrupt block. Remove an associated
565 * interrupt handler if not the SCI interrupt.
567 ******************************************************************************/
570 acpi_ev_delete_gpe_xrupt(struct acpi_gpe_xrupt_info
*gpe_xrupt
)
573 acpi_cpu_flags flags
;
575 ACPI_FUNCTION_TRACE(ev_delete_gpe_xrupt
);
577 /* We never want to remove the SCI interrupt handler */
579 if (gpe_xrupt
->interrupt_number
== acpi_gbl_FADT
.sci_interrupt
) {
580 gpe_xrupt
->gpe_block_list_head
= NULL
;
581 return_ACPI_STATUS(AE_OK
);
584 /* Disable this interrupt */
587 acpi_os_remove_interrupt_handler(gpe_xrupt
->interrupt_number
,
588 acpi_ev_gpe_xrupt_handler
);
589 if (ACPI_FAILURE(status
)) {
590 return_ACPI_STATUS(status
);
593 /* Unlink the interrupt block with lock */
595 flags
= acpi_os_acquire_lock(acpi_gbl_gpe_lock
);
596 if (gpe_xrupt
->previous
) {
597 gpe_xrupt
->previous
->next
= gpe_xrupt
->next
;
599 /* No previous, update list head */
601 acpi_gbl_gpe_xrupt_list_head
= gpe_xrupt
->next
;
604 if (gpe_xrupt
->next
) {
605 gpe_xrupt
->next
->previous
= gpe_xrupt
->previous
;
607 acpi_os_release_lock(acpi_gbl_gpe_lock
, flags
);
611 ACPI_FREE(gpe_xrupt
);
612 return_ACPI_STATUS(AE_OK
);
615 /*******************************************************************************
617 * FUNCTION: acpi_ev_install_gpe_block
619 * PARAMETERS: gpe_block - New GPE block
620 * interrupt_number - Xrupt to be associated with this
625 * DESCRIPTION: Install new GPE block with mutex support
627 ******************************************************************************/
630 acpi_ev_install_gpe_block(struct acpi_gpe_block_info
*gpe_block
,
631 u32 interrupt_number
)
633 struct acpi_gpe_block_info
*next_gpe_block
;
634 struct acpi_gpe_xrupt_info
*gpe_xrupt_block
;
636 acpi_cpu_flags flags
;
638 ACPI_FUNCTION_TRACE(ev_install_gpe_block
);
640 status
= acpi_ut_acquire_mutex(ACPI_MTX_EVENTS
);
641 if (ACPI_FAILURE(status
)) {
642 return_ACPI_STATUS(status
);
645 gpe_xrupt_block
= acpi_ev_get_gpe_xrupt_block(interrupt_number
);
646 if (!gpe_xrupt_block
) {
647 status
= AE_NO_MEMORY
;
648 goto unlock_and_exit
;
651 /* Install the new block at the end of the list with lock */
653 flags
= acpi_os_acquire_lock(acpi_gbl_gpe_lock
);
654 if (gpe_xrupt_block
->gpe_block_list_head
) {
655 next_gpe_block
= gpe_xrupt_block
->gpe_block_list_head
;
656 while (next_gpe_block
->next
) {
657 next_gpe_block
= next_gpe_block
->next
;
660 next_gpe_block
->next
= gpe_block
;
661 gpe_block
->previous
= next_gpe_block
;
663 gpe_xrupt_block
->gpe_block_list_head
= gpe_block
;
666 gpe_block
->xrupt_block
= gpe_xrupt_block
;
667 acpi_os_release_lock(acpi_gbl_gpe_lock
, flags
);
670 status
= acpi_ut_release_mutex(ACPI_MTX_EVENTS
);
671 return_ACPI_STATUS(status
);
674 /*******************************************************************************
676 * FUNCTION: acpi_ev_delete_gpe_block
678 * PARAMETERS: gpe_block - Existing GPE block
682 * DESCRIPTION: Remove a GPE block
684 ******************************************************************************/
686 acpi_status
acpi_ev_delete_gpe_block(struct acpi_gpe_block_info
*gpe_block
)
689 acpi_cpu_flags flags
;
691 ACPI_FUNCTION_TRACE(ev_install_gpe_block
);
693 status
= acpi_ut_acquire_mutex(ACPI_MTX_EVENTS
);
694 if (ACPI_FAILURE(status
)) {
695 return_ACPI_STATUS(status
);
698 /* Disable all GPEs in this block */
701 acpi_hw_disable_gpe_block(gpe_block
->xrupt_block
, gpe_block
, NULL
);
703 if (!gpe_block
->previous
&& !gpe_block
->next
) {
705 /* This is the last gpe_block on this interrupt */
707 status
= acpi_ev_delete_gpe_xrupt(gpe_block
->xrupt_block
);
708 if (ACPI_FAILURE(status
)) {
709 goto unlock_and_exit
;
712 /* Remove the block on this interrupt with lock */
714 flags
= acpi_os_acquire_lock(acpi_gbl_gpe_lock
);
715 if (gpe_block
->previous
) {
716 gpe_block
->previous
->next
= gpe_block
->next
;
718 gpe_block
->xrupt_block
->gpe_block_list_head
=
722 if (gpe_block
->next
) {
723 gpe_block
->next
->previous
= gpe_block
->previous
;
725 acpi_os_release_lock(acpi_gbl_gpe_lock
, flags
);
728 acpi_current_gpe_count
-=
729 gpe_block
->register_count
* ACPI_GPE_REGISTER_WIDTH
;
731 /* Free the gpe_block */
733 ACPI_FREE(gpe_block
->register_info
);
734 ACPI_FREE(gpe_block
->event_info
);
735 ACPI_FREE(gpe_block
);
738 status
= acpi_ut_release_mutex(ACPI_MTX_EVENTS
);
739 return_ACPI_STATUS(status
);
742 /*******************************************************************************
744 * FUNCTION: acpi_ev_create_gpe_info_blocks
746 * PARAMETERS: gpe_block - New GPE block
750 * DESCRIPTION: Create the register_info and event_info blocks for this GPE block
752 ******************************************************************************/
755 acpi_ev_create_gpe_info_blocks(struct acpi_gpe_block_info
*gpe_block
)
757 struct acpi_gpe_register_info
*gpe_register_info
= NULL
;
758 struct acpi_gpe_event_info
*gpe_event_info
= NULL
;
759 struct acpi_gpe_event_info
*this_event
;
760 struct acpi_gpe_register_info
*this_register
;
765 ACPI_FUNCTION_TRACE(ev_create_gpe_info_blocks
);
767 /* Allocate the GPE register information block */
769 gpe_register_info
= ACPI_ALLOCATE_ZEROED((acpi_size
) gpe_block
->
772 acpi_gpe_register_info
));
773 if (!gpe_register_info
) {
775 "Could not allocate the GpeRegisterInfo table"));
776 return_ACPI_STATUS(AE_NO_MEMORY
);
780 * Allocate the GPE event_info block. There are eight distinct GPEs
781 * per register. Initialization to zeros is sufficient.
783 gpe_event_info
= ACPI_ALLOCATE_ZEROED(((acpi_size
) gpe_block
->
785 ACPI_GPE_REGISTER_WIDTH
) *
787 acpi_gpe_event_info
));
788 if (!gpe_event_info
) {
790 "Could not allocate the GpeEventInfo table"));
791 status
= AE_NO_MEMORY
;
795 /* Save the new Info arrays in the GPE block */
797 gpe_block
->register_info
= gpe_register_info
;
798 gpe_block
->event_info
= gpe_event_info
;
801 * Initialize the GPE Register and Event structures. A goal of these
802 * tables is to hide the fact that there are two separate GPE register
803 * sets in a given GPE hardware block, the status registers occupy the
804 * first half, and the enable registers occupy the second half.
806 this_register
= gpe_register_info
;
807 this_event
= gpe_event_info
;
809 for (i
= 0; i
< gpe_block
->register_count
; i
++) {
811 /* Init the register_info for this GPE register (8 GPEs) */
813 this_register
->base_gpe_number
=
814 (u8
) (gpe_block
->block_base_number
+
815 (i
* ACPI_GPE_REGISTER_WIDTH
));
817 this_register
->status_address
.address
=
818 gpe_block
->block_address
.address
+ i
;
820 this_register
->enable_address
.address
=
821 gpe_block
->block_address
.address
+ i
+
822 gpe_block
->register_count
;
824 this_register
->status_address
.space_id
=
825 gpe_block
->block_address
.space_id
;
826 this_register
->enable_address
.space_id
=
827 gpe_block
->block_address
.space_id
;
828 this_register
->status_address
.bit_width
=
829 ACPI_GPE_REGISTER_WIDTH
;
830 this_register
->enable_address
.bit_width
=
831 ACPI_GPE_REGISTER_WIDTH
;
832 this_register
->status_address
.bit_offset
= 0;
833 this_register
->enable_address
.bit_offset
= 0;
835 /* Init the event_info for each GPE within this register */
837 for (j
= 0; j
< ACPI_GPE_REGISTER_WIDTH
; j
++) {
838 this_event
->gpe_number
=
839 (u8
) (this_register
->base_gpe_number
+ j
);
840 this_event
->register_info
= this_register
;
844 /* Disable all GPEs within this register */
846 status
= acpi_write(0x00, &this_register
->enable_address
);
847 if (ACPI_FAILURE(status
)) {
851 /* Clear any pending GPE events within this register */
853 status
= acpi_write(0xFF, &this_register
->status_address
);
854 if (ACPI_FAILURE(status
)) {
861 return_ACPI_STATUS(AE_OK
);
864 if (gpe_register_info
) {
865 ACPI_FREE(gpe_register_info
);
867 if (gpe_event_info
) {
868 ACPI_FREE(gpe_event_info
);
871 return_ACPI_STATUS(status
);
874 /*******************************************************************************
876 * FUNCTION: acpi_ev_create_gpe_block
878 * PARAMETERS: gpe_device - Handle to the parent GPE block
879 * gpe_block_address - Address and space_iD
880 * register_count - Number of GPE register pairs in the block
881 * gpe_block_base_number - Starting GPE number for the block
882 * interrupt_number - H/W interrupt for the block
883 * return_gpe_block - Where the new block descriptor is returned
887 * DESCRIPTION: Create and Install a block of GPE registers. All GPEs within
888 * the block are disabled at exit.
889 * Note: Assumes namespace is locked.
891 ******************************************************************************/
894 acpi_ev_create_gpe_block(struct acpi_namespace_node
*gpe_device
,
895 struct acpi_generic_address
*gpe_block_address
,
897 u8 gpe_block_base_number
,
898 u32 interrupt_number
,
899 struct acpi_gpe_block_info
**return_gpe_block
)
902 struct acpi_gpe_block_info
*gpe_block
;
904 ACPI_FUNCTION_TRACE(ev_create_gpe_block
);
906 if (!register_count
) {
907 return_ACPI_STATUS(AE_OK
);
910 /* Allocate a new GPE block */
912 gpe_block
= ACPI_ALLOCATE_ZEROED(sizeof(struct acpi_gpe_block_info
));
914 return_ACPI_STATUS(AE_NO_MEMORY
);
917 /* Initialize the new GPE block */
919 gpe_block
->node
= gpe_device
;
920 gpe_block
->register_count
= register_count
;
921 gpe_block
->block_base_number
= gpe_block_base_number
;
923 ACPI_MEMCPY(&gpe_block
->block_address
, gpe_block_address
,
924 sizeof(struct acpi_generic_address
));
927 * Create the register_info and event_info sub-structures
928 * Note: disables and clears all GPEs in the block
930 status
= acpi_ev_create_gpe_info_blocks(gpe_block
);
931 if (ACPI_FAILURE(status
)) {
932 ACPI_FREE(gpe_block
);
933 return_ACPI_STATUS(status
);
936 /* Install the new block in the global lists */
938 status
= acpi_ev_install_gpe_block(gpe_block
, interrupt_number
);
939 if (ACPI_FAILURE(status
)) {
940 ACPI_FREE(gpe_block
);
941 return_ACPI_STATUS(status
);
944 /* Find all GPE methods (_Lxx, _Exx) for this block */
946 status
= acpi_ns_walk_namespace(ACPI_TYPE_METHOD
, gpe_device
,
947 ACPI_UINT32_MAX
, ACPI_NS_WALK_NO_UNLOCK
,
948 acpi_ev_save_method_info
, gpe_block
,
951 /* Return the new block */
953 if (return_gpe_block
) {
954 (*return_gpe_block
) = gpe_block
;
957 ACPI_DEBUG_PRINT((ACPI_DB_INIT
,
958 "GPE %02X to %02X [%4.4s] %u regs on int 0x%X\n",
959 (u32
) gpe_block
->block_base_number
,
960 (u32
) (gpe_block
->block_base_number
+
961 ((gpe_block
->register_count
*
962 ACPI_GPE_REGISTER_WIDTH
) - 1)),
963 gpe_device
->name
.ascii
, gpe_block
->register_count
,
966 /* Update global count of currently available GPEs */
968 acpi_current_gpe_count
+= register_count
* ACPI_GPE_REGISTER_WIDTH
;
969 return_ACPI_STATUS(AE_OK
);
972 /*******************************************************************************
974 * FUNCTION: acpi_ev_initialize_gpe_block
976 * PARAMETERS: gpe_device - Handle to the parent GPE block
977 * gpe_block - Gpe Block info
981 * DESCRIPTION: Initialize and enable a GPE block. First find and run any
982 * _PRT methods associated with the block, then enable the
984 * Note: Assumes namespace is locked.
986 ******************************************************************************/
989 acpi_ev_initialize_gpe_block(struct acpi_namespace_node
*gpe_device
,
990 struct acpi_gpe_block_info
*gpe_block
)
993 struct acpi_gpe_event_info
*gpe_event_info
;
994 struct acpi_gpe_walk_info gpe_info
;
996 u32 gpe_enabled_count
;
1000 ACPI_FUNCTION_TRACE(ev_initialize_gpe_block
);
1002 /* Ignore a null GPE block (e.g., if no GPE block 1 exists) */
1005 return_ACPI_STATUS(AE_OK
);
1009 * Runtime option: Should wake GPEs be enabled at runtime? The default
1010 * is no, they should only be enabled just as the machine goes to sleep.
1012 if (acpi_gbl_leave_wake_gpes_disabled
) {
1014 * Differentiate runtime vs wake GPEs, via the _PRW control methods.
1015 * Each GPE that has one or more _PRWs that reference it is by
1016 * definition a wake GPE and will not be enabled while the machine
1019 gpe_info
.gpe_block
= gpe_block
;
1020 gpe_info
.gpe_device
= gpe_device
;
1023 acpi_ns_walk_namespace(ACPI_TYPE_DEVICE
, ACPI_ROOT_OBJECT
,
1024 ACPI_UINT32_MAX
, ACPI_NS_WALK_UNLOCK
,
1025 acpi_ev_match_prw_and_gpe
, &gpe_info
,
1030 * Enable all GPEs in this block that have these attributes:
1031 * 1) are "runtime" or "run/wake" GPEs, and
1032 * 2) have a corresponding _Lxx or _Exx method
1034 * Any other GPEs within this block must be enabled via the
1035 * acpi_enable_gpe() external interface.
1038 gpe_enabled_count
= 0;
1040 for (i
= 0; i
< gpe_block
->register_count
; i
++) {
1041 for (j
= 0; j
< 8; j
++) {
1043 /* Get the info block for this particular GPE */
1045 gpe_event_info
= &gpe_block
->event_info
[((acpi_size
) i
*
1046 ACPI_GPE_REGISTER_WIDTH
)
1049 if (((gpe_event_info
->flags
& ACPI_GPE_DISPATCH_MASK
) ==
1050 ACPI_GPE_DISPATCH_METHOD
) &&
1051 (gpe_event_info
->flags
& ACPI_GPE_TYPE_RUNTIME
)) {
1052 gpe_enabled_count
++;
1055 if (gpe_event_info
->flags
& ACPI_GPE_TYPE_WAKE
) {
1061 ACPI_DEBUG_PRINT((ACPI_DB_INIT
,
1062 "Found %u Wake, Enabled %u Runtime GPEs in this block\n",
1063 wake_gpe_count
, gpe_enabled_count
));
1065 /* Enable all valid runtime GPEs found above */
1067 status
= acpi_hw_enable_runtime_gpe_block(NULL
, gpe_block
, NULL
);
1068 if (ACPI_FAILURE(status
)) {
1069 ACPI_ERROR((AE_INFO
, "Could not enable GPEs in GpeBlock %p",
1073 return_ACPI_STATUS(status
);
1076 /*******************************************************************************
1078 * FUNCTION: acpi_ev_gpe_initialize
1084 * DESCRIPTION: Initialize the GPE data structures
1086 ******************************************************************************/
1088 acpi_status
acpi_ev_gpe_initialize(void)
1090 u32 register_count0
= 0;
1091 u32 register_count1
= 0;
1092 u32 gpe_number_max
= 0;
1095 ACPI_FUNCTION_TRACE(ev_gpe_initialize
);
1097 status
= acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE
);
1098 if (ACPI_FAILURE(status
)) {
1099 return_ACPI_STATUS(status
);
1103 * Initialize the GPE Block(s) defined in the FADT
1105 * Why the GPE register block lengths are divided by 2: From the ACPI
1106 * Spec, section "General-Purpose Event Registers", we have:
1108 * "Each register block contains two registers of equal length
1109 * GPEx_STS and GPEx_EN (where x is 0 or 1). The length of the
1110 * GPE0_STS and GPE0_EN registers is equal to half the GPE0_LEN
1111 * The length of the GPE1_STS and GPE1_EN registers is equal to
1112 * half the GPE1_LEN. If a generic register block is not supported
1113 * then its respective block pointer and block length values in the
1114 * FADT table contain zeros. The GPE0_LEN and GPE1_LEN do not need
1115 * to be the same size."
1119 * Determine the maximum GPE number for this machine.
1121 * Note: both GPE0 and GPE1 are optional, and either can exist without
1124 * If EITHER the register length OR the block address are zero, then that
1125 * particular block is not supported.
1127 if (acpi_gbl_FADT
.gpe0_block_length
&&
1128 acpi_gbl_FADT
.xgpe0_block
.address
) {
1130 /* GPE block 0 exists (has both length and address > 0) */
1132 register_count0
= (u16
) (acpi_gbl_FADT
.gpe0_block_length
/ 2);
1135 (register_count0
* ACPI_GPE_REGISTER_WIDTH
) - 1;
1137 /* Install GPE Block 0 */
1139 status
= acpi_ev_create_gpe_block(acpi_gbl_fadt_gpe_device
,
1140 &acpi_gbl_FADT
.xgpe0_block
,
1142 acpi_gbl_FADT
.sci_interrupt
,
1143 &acpi_gbl_gpe_fadt_blocks
[0]);
1145 if (ACPI_FAILURE(status
)) {
1146 ACPI_EXCEPTION((AE_INFO
, status
,
1147 "Could not create GPE Block 0"));
1151 if (acpi_gbl_FADT
.gpe1_block_length
&&
1152 acpi_gbl_FADT
.xgpe1_block
.address
) {
1154 /* GPE block 1 exists (has both length and address > 0) */
1156 register_count1
= (u16
) (acpi_gbl_FADT
.gpe1_block_length
/ 2);
1158 /* Check for GPE0/GPE1 overlap (if both banks exist) */
1160 if ((register_count0
) &&
1161 (gpe_number_max
>= acpi_gbl_FADT
.gpe1_base
)) {
1162 ACPI_ERROR((AE_INFO
,
1163 "GPE0 block (GPE 0 to %d) overlaps the GPE1 block "
1164 "(GPE %d to %d) - Ignoring GPE1",
1165 gpe_number_max
, acpi_gbl_FADT
.gpe1_base
,
1166 acpi_gbl_FADT
.gpe1_base
+
1168 ACPI_GPE_REGISTER_WIDTH
) - 1)));
1170 /* Ignore GPE1 block by setting the register count to zero */
1172 register_count1
= 0;
1174 /* Install GPE Block 1 */
1177 acpi_ev_create_gpe_block(acpi_gbl_fadt_gpe_device
,
1178 &acpi_gbl_FADT
.xgpe1_block
,
1180 acpi_gbl_FADT
.gpe1_base
,
1183 &acpi_gbl_gpe_fadt_blocks
1186 if (ACPI_FAILURE(status
)) {
1187 ACPI_EXCEPTION((AE_INFO
, status
,
1188 "Could not create GPE Block 1"));
1192 * GPE0 and GPE1 do not have to be contiguous in the GPE number
1193 * space. However, GPE0 always starts at GPE number zero.
1195 gpe_number_max
= acpi_gbl_FADT
.gpe1_base
+
1196 ((register_count1
* ACPI_GPE_REGISTER_WIDTH
) - 1);
1200 /* Exit if there are no GPE registers */
1202 if ((register_count0
+ register_count1
) == 0) {
1204 /* GPEs are not required by ACPI, this is OK */
1206 ACPI_DEBUG_PRINT((ACPI_DB_INIT
,
1207 "There are no GPE blocks defined in the FADT\n"));
1212 /* Check for Max GPE number out-of-range */
1214 if (gpe_number_max
> ACPI_GPE_MAX
) {
1215 ACPI_ERROR((AE_INFO
,
1216 "Maximum GPE number from FADT is too large: 0x%X",
1218 status
= AE_BAD_VALUE
;
1223 (void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE
);
1224 return_ACPI_STATUS(AE_OK
);