1 /******************************************************************************
3 * Module Name: evxfgpe - External Interfaces for General Purpose Events (GPEs)
5 *****************************************************************************/
8 * Copyright (C) 2000 - 2015, 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 #define EXPORT_ACPI_INTERFACES
46 #include <acpi/acpi.h>
51 #define _COMPONENT ACPI_EVENTS
52 ACPI_MODULE_NAME("evxfgpe")
54 #if (!ACPI_REDUCED_HARDWARE) /* Entire module */
55 /*******************************************************************************
57 * FUNCTION: acpi_update_all_gpes
63 * DESCRIPTION: Complete GPE initialization and enable all GPEs that have
64 * associated _Lxx or _Exx methods and are not pointed to by any
65 * device _PRW methods (this indicates that these GPEs are
66 * generally intended for system or device wakeup. Such GPEs
67 * have to be enabled directly when the devices whose _PRW
68 * methods point to them are set up for wakeup signaling.)
70 * NOTE: Should be called after any GPEs are added to the system. Primarily,
71 * after the system _PRW methods have been run, but also after a GPE Block
72 * Device has been added or if any new GPE methods have been added via a
75 ******************************************************************************/
77 acpi_status
acpi_update_all_gpes(void)
81 ACPI_FUNCTION_TRACE(acpi_update_all_gpes
);
83 status
= acpi_ut_acquire_mutex(ACPI_MTX_EVENTS
);
84 if (ACPI_FAILURE(status
)) {
85 return_ACPI_STATUS(status
);
88 if (acpi_gbl_all_gpes_initialized
) {
92 status
= acpi_ev_walk_gpe_list(acpi_ev_initialize_gpe_block
, NULL
);
93 if (ACPI_SUCCESS(status
)) {
94 acpi_gbl_all_gpes_initialized
= TRUE
;
98 (void)acpi_ut_release_mutex(ACPI_MTX_EVENTS
);
100 return_ACPI_STATUS(status
);
103 ACPI_EXPORT_SYMBOL(acpi_update_all_gpes
)
105 /*******************************************************************************
107 * FUNCTION: acpi_enable_gpe
109 * PARAMETERS: gpe_device - Parent GPE Device. NULL for GPE0/GPE1
110 * gpe_number - GPE level within the GPE block
114 * DESCRIPTION: Add a reference to a GPE. On the first reference, the GPE is
117 ******************************************************************************/
118 acpi_status
acpi_enable_gpe(acpi_handle gpe_device
, u32 gpe_number
)
120 acpi_status status
= AE_BAD_PARAMETER
;
121 struct acpi_gpe_event_info
*gpe_event_info
;
122 acpi_cpu_flags flags
;
124 ACPI_FUNCTION_TRACE(acpi_enable_gpe
);
126 flags
= acpi_os_acquire_lock(acpi_gbl_gpe_lock
);
129 * Ensure that we have a valid GPE number and that there is some way
130 * of handling the GPE (handler or a GPE method). In other words, we
131 * won't allow a valid GPE to be enabled if there is no way to handle it.
133 gpe_event_info
= acpi_ev_get_gpe_event_info(gpe_device
, gpe_number
);
134 if (gpe_event_info
) {
135 if (ACPI_GPE_DISPATCH_TYPE(gpe_event_info
->flags
) !=
136 ACPI_GPE_DISPATCH_NONE
) {
137 status
= acpi_ev_add_gpe_reference(gpe_event_info
);
139 status
= AE_NO_HANDLER
;
143 acpi_os_release_lock(acpi_gbl_gpe_lock
, flags
);
144 return_ACPI_STATUS(status
);
146 ACPI_EXPORT_SYMBOL(acpi_enable_gpe
)
148 /*******************************************************************************
150 * FUNCTION: acpi_disable_gpe
152 * PARAMETERS: gpe_device - Parent GPE Device. NULL for GPE0/GPE1
153 * gpe_number - GPE level within the GPE block
157 * DESCRIPTION: Remove a reference to a GPE. When the last reference is
158 * removed, only then is the GPE disabled (for runtime GPEs), or
159 * the GPE mask bit disabled (for wake GPEs)
161 ******************************************************************************/
163 acpi_status
acpi_disable_gpe(acpi_handle gpe_device
, u32 gpe_number
)
165 acpi_status status
= AE_BAD_PARAMETER
;
166 struct acpi_gpe_event_info
*gpe_event_info
;
167 acpi_cpu_flags flags
;
169 ACPI_FUNCTION_TRACE(acpi_disable_gpe
);
171 flags
= acpi_os_acquire_lock(acpi_gbl_gpe_lock
);
173 /* Ensure that we have a valid GPE number */
175 gpe_event_info
= acpi_ev_get_gpe_event_info(gpe_device
, gpe_number
);
176 if (gpe_event_info
) {
177 status
= acpi_ev_remove_gpe_reference(gpe_event_info
) ;
180 acpi_os_release_lock(acpi_gbl_gpe_lock
, flags
);
181 return_ACPI_STATUS(status
);
184 ACPI_EXPORT_SYMBOL(acpi_disable_gpe
)
186 /*******************************************************************************
188 * FUNCTION: acpi_set_gpe
190 * PARAMETERS: gpe_device - Parent GPE Device. NULL for GPE0/GPE1
191 * gpe_number - GPE level within the GPE block
192 * action - ACPI_GPE_ENABLE or ACPI_GPE_DISABLE
196 * DESCRIPTION: Enable or disable an individual GPE. This function bypasses
197 * the reference count mechanism used in the acpi_enable_gpe(),
198 * acpi_disable_gpe() interfaces.
199 * This API is typically used by the GPE raw handler mode driver
200 * to switch between the polling mode and the interrupt mode after
201 * the driver has enabled the GPE.
202 * The APIs should be invoked in this order:
203 * acpi_enable_gpe() <- Ensure the reference count > 0
204 * acpi_set_gpe(ACPI_GPE_DISABLE) <- Enter polling mode
205 * acpi_set_gpe(ACPI_GPE_ENABLE) <- Leave polling mode
206 * acpi_disable_gpe() <- Decrease the reference count
208 * Note: If a GPE is shared by 2 silicon components, then both the drivers
209 * should support GPE polling mode or disabling the GPE for long period
210 * for one driver may break the other. So use it with care since all
211 * firmware _Lxx/_Exx handlers currently rely on the GPE interrupt mode.
213 ******************************************************************************/
214 acpi_status
acpi_set_gpe(acpi_handle gpe_device
, u32 gpe_number
, u8 action
)
216 struct acpi_gpe_event_info
*gpe_event_info
;
218 acpi_cpu_flags flags
;
220 ACPI_FUNCTION_TRACE(acpi_set_gpe
);
222 flags
= acpi_os_acquire_lock(acpi_gbl_gpe_lock
);
224 /* Ensure that we have a valid GPE number */
226 gpe_event_info
= acpi_ev_get_gpe_event_info(gpe_device
, gpe_number
);
227 if (!gpe_event_info
) {
228 status
= AE_BAD_PARAMETER
;
229 goto unlock_and_exit
;
232 /* Perform the action */
235 case ACPI_GPE_ENABLE
:
237 status
= acpi_hw_low_set_gpe(gpe_event_info
, ACPI_GPE_ENABLE
);
240 case ACPI_GPE_DISABLE
:
242 status
= acpi_hw_low_set_gpe(gpe_event_info
, ACPI_GPE_DISABLE
);
247 status
= AE_BAD_PARAMETER
;
252 acpi_os_release_lock(acpi_gbl_gpe_lock
, flags
);
253 return_ACPI_STATUS(status
);
256 ACPI_EXPORT_SYMBOL(acpi_set_gpe
)
258 /*******************************************************************************
260 * FUNCTION: acpi_mark_gpe_for_wake
262 * PARAMETERS: gpe_device - Parent GPE Device. NULL for GPE0/GPE1
263 * gpe_number - GPE level within the GPE block
267 * DESCRIPTION: Mark a GPE as having the ability to wake the system. Simply
268 * sets the ACPI_GPE_CAN_WAKE flag.
270 * Some potential callers of acpi_setup_gpe_for_wake may know in advance that
271 * there won't be any notify handlers installed for device wake notifications
272 * from the given GPE (one example is a button GPE in Linux). For these cases,
273 * acpi_mark_gpe_for_wake should be used instead of acpi_setup_gpe_for_wake.
274 * This will set the ACPI_GPE_CAN_WAKE flag for the GPE without trying to
275 * setup implicit wake notification for it (since there's no handler method).
277 ******************************************************************************/
278 acpi_status
acpi_mark_gpe_for_wake(acpi_handle gpe_device
, u32 gpe_number
)
280 struct acpi_gpe_event_info
*gpe_event_info
;
281 acpi_status status
= AE_BAD_PARAMETER
;
282 acpi_cpu_flags flags
;
284 ACPI_FUNCTION_TRACE(acpi_mark_gpe_for_wake
);
286 flags
= acpi_os_acquire_lock(acpi_gbl_gpe_lock
);
288 /* Ensure that we have a valid GPE number */
290 gpe_event_info
= acpi_ev_get_gpe_event_info(gpe_device
, gpe_number
);
291 if (gpe_event_info
) {
293 /* Mark the GPE as a possible wake event */
295 gpe_event_info
->flags
|= ACPI_GPE_CAN_WAKE
;
299 acpi_os_release_lock(acpi_gbl_gpe_lock
, flags
);
300 return_ACPI_STATUS(status
);
303 ACPI_EXPORT_SYMBOL(acpi_mark_gpe_for_wake
)
305 /*******************************************************************************
307 * FUNCTION: acpi_setup_gpe_for_wake
309 * PARAMETERS: wake_device - Device associated with the GPE (via _PRW)
310 * gpe_device - Parent GPE Device. NULL for GPE0/GPE1
311 * gpe_number - GPE level within the GPE block
315 * DESCRIPTION: Mark a GPE as having the ability to wake the system. This
316 * interface is intended to be used as the host executes the
317 * _PRW methods (Power Resources for Wake) in the system tables.
318 * Each _PRW appears under a Device Object (The wake_device), and
319 * contains the info for the wake GPE associated with the
322 ******************************************************************************/
324 acpi_setup_gpe_for_wake(acpi_handle wake_device
,
325 acpi_handle gpe_device
, u32 gpe_number
)
328 struct acpi_gpe_event_info
*gpe_event_info
;
329 struct acpi_namespace_node
*device_node
;
330 struct acpi_gpe_notify_info
*notify
;
331 struct acpi_gpe_notify_info
*new_notify
;
332 acpi_cpu_flags flags
;
334 ACPI_FUNCTION_TRACE(acpi_setup_gpe_for_wake
);
336 /* Parameter Validation */
340 * By forcing wake_device to be valid, we automatically enable the
341 * implicit notify feature on all hosts.
343 return_ACPI_STATUS(AE_BAD_PARAMETER
);
346 /* Handle root object case */
348 if (wake_device
== ACPI_ROOT_OBJECT
) {
349 device_node
= acpi_gbl_root_node
;
352 ACPI_CAST_PTR(struct acpi_namespace_node
, wake_device
);
355 /* Validate wake_device is of type Device */
357 if (device_node
->type
!= ACPI_TYPE_DEVICE
) {
358 return_ACPI_STATUS (AE_BAD_PARAMETER
);
362 * Allocate a new notify object up front, in case it is needed.
363 * Memory allocation while holding a spinlock is a big no-no
366 new_notify
= ACPI_ALLOCATE_ZEROED(sizeof(struct acpi_gpe_notify_info
));
368 return_ACPI_STATUS(AE_NO_MEMORY
);
371 flags
= acpi_os_acquire_lock(acpi_gbl_gpe_lock
);
373 /* Ensure that we have a valid GPE number */
375 gpe_event_info
= acpi_ev_get_gpe_event_info(gpe_device
, gpe_number
);
376 if (!gpe_event_info
) {
377 status
= AE_BAD_PARAMETER
;
378 goto unlock_and_exit
;
382 * If there is no method or handler for this GPE, then the
383 * wake_device will be notified whenever this GPE fires. This is
384 * known as an "implicit notify". Note: The GPE is assumed to be
385 * level-triggered (for windows compatibility).
387 if (ACPI_GPE_DISPATCH_TYPE(gpe_event_info
->flags
) ==
388 ACPI_GPE_DISPATCH_NONE
) {
390 * This is the first device for implicit notify on this GPE.
391 * Just set the flags here, and enter the NOTIFY block below.
393 gpe_event_info
->flags
=
394 (ACPI_GPE_DISPATCH_NOTIFY
| ACPI_GPE_LEVEL_TRIGGERED
);
398 * If we already have an implicit notify on this GPE, add
399 * this device to the notify list.
401 if (ACPI_GPE_DISPATCH_TYPE(gpe_event_info
->flags
) ==
402 ACPI_GPE_DISPATCH_NOTIFY
) {
404 /* Ensure that the device is not already in the list */
406 notify
= gpe_event_info
->dispatch
.notify_list
;
408 if (notify
->device_node
== device_node
) {
409 status
= AE_ALREADY_EXISTS
;
410 goto unlock_and_exit
;
412 notify
= notify
->next
;
415 /* Add this device to the notify list for this GPE */
417 new_notify
->device_node
= device_node
;
418 new_notify
->next
= gpe_event_info
->dispatch
.notify_list
;
419 gpe_event_info
->dispatch
.notify_list
= new_notify
;
423 /* Mark the GPE as a possible wake event */
425 gpe_event_info
->flags
|= ACPI_GPE_CAN_WAKE
;
429 acpi_os_release_lock(acpi_gbl_gpe_lock
, flags
);
431 /* Delete the notify object if it was not used above */
434 ACPI_FREE(new_notify
);
436 return_ACPI_STATUS(status
);
438 ACPI_EXPORT_SYMBOL(acpi_setup_gpe_for_wake
)
440 /*******************************************************************************
442 * FUNCTION: acpi_set_gpe_wake_mask
444 * PARAMETERS: gpe_device - Parent GPE Device. NULL for GPE0/GPE1
445 * gpe_number - GPE level within the GPE block
446 * action - Enable or Disable
450 * DESCRIPTION: Set or clear the GPE's wakeup enable mask bit. The GPE must
451 * already be marked as a WAKE GPE.
453 ******************************************************************************/
456 acpi_set_gpe_wake_mask(acpi_handle gpe_device
, u32 gpe_number
, u8 action
)
458 acpi_status status
= AE_OK
;
459 struct acpi_gpe_event_info
*gpe_event_info
;
460 struct acpi_gpe_register_info
*gpe_register_info
;
461 acpi_cpu_flags flags
;
464 ACPI_FUNCTION_TRACE(acpi_set_gpe_wake_mask
);
466 flags
= acpi_os_acquire_lock(acpi_gbl_gpe_lock
);
469 * Ensure that we have a valid GPE number and that this GPE is in
472 gpe_event_info
= acpi_ev_get_gpe_event_info(gpe_device
, gpe_number
);
473 if (!gpe_event_info
) {
474 status
= AE_BAD_PARAMETER
;
475 goto unlock_and_exit
;
478 if (!(gpe_event_info
->flags
& ACPI_GPE_CAN_WAKE
)) {
480 goto unlock_and_exit
;
483 gpe_register_info
= gpe_event_info
->register_info
;
484 if (!gpe_register_info
) {
485 status
= AE_NOT_EXIST
;
486 goto unlock_and_exit
;
489 register_bit
= acpi_hw_get_gpe_register_bit(gpe_event_info
);
491 /* Perform the action */
494 case ACPI_GPE_ENABLE
:
496 ACPI_SET_BIT(gpe_register_info
->enable_for_wake
,
500 case ACPI_GPE_DISABLE
:
502 ACPI_CLEAR_BIT(gpe_register_info
->enable_for_wake
,
508 ACPI_ERROR((AE_INFO
, "%u, Invalid action", action
));
509 status
= AE_BAD_PARAMETER
;
514 acpi_os_release_lock(acpi_gbl_gpe_lock
, flags
);
515 return_ACPI_STATUS(status
);
518 ACPI_EXPORT_SYMBOL(acpi_set_gpe_wake_mask
)
520 /*******************************************************************************
522 * FUNCTION: acpi_clear_gpe
524 * PARAMETERS: gpe_device - Parent GPE Device. NULL for GPE0/GPE1
525 * gpe_number - GPE level within the GPE block
529 * DESCRIPTION: Clear an ACPI event (general purpose)
531 ******************************************************************************/
532 acpi_status
acpi_clear_gpe(acpi_handle gpe_device
, u32 gpe_number
)
534 acpi_status status
= AE_OK
;
535 struct acpi_gpe_event_info
*gpe_event_info
;
536 acpi_cpu_flags flags
;
538 ACPI_FUNCTION_TRACE(acpi_clear_gpe
);
540 flags
= acpi_os_acquire_lock(acpi_gbl_gpe_lock
);
542 /* Ensure that we have a valid GPE number */
544 gpe_event_info
= acpi_ev_get_gpe_event_info(gpe_device
, gpe_number
);
545 if (!gpe_event_info
) {
546 status
= AE_BAD_PARAMETER
;
547 goto unlock_and_exit
;
550 status
= acpi_hw_clear_gpe(gpe_event_info
);
553 acpi_os_release_lock(acpi_gbl_gpe_lock
, flags
);
554 return_ACPI_STATUS(status
);
557 ACPI_EXPORT_SYMBOL(acpi_clear_gpe
)
559 /*******************************************************************************
561 * FUNCTION: acpi_get_gpe_status
563 * PARAMETERS: gpe_device - Parent GPE Device. NULL for GPE0/GPE1
564 * gpe_number - GPE level within the GPE block
565 * event_status - Where the current status of the event
570 * DESCRIPTION: Get the current status of a GPE (signalled/not_signalled)
572 ******************************************************************************/
574 acpi_get_gpe_status(acpi_handle gpe_device
,
575 u32 gpe_number
, acpi_event_status
*event_status
)
577 acpi_status status
= AE_OK
;
578 struct acpi_gpe_event_info
*gpe_event_info
;
579 acpi_cpu_flags flags
;
581 ACPI_FUNCTION_TRACE(acpi_get_gpe_status
);
583 flags
= acpi_os_acquire_lock(acpi_gbl_gpe_lock
);
585 /* Ensure that we have a valid GPE number */
587 gpe_event_info
= acpi_ev_get_gpe_event_info(gpe_device
, gpe_number
);
588 if (!gpe_event_info
) {
589 status
= AE_BAD_PARAMETER
;
590 goto unlock_and_exit
;
593 /* Obtain status on the requested GPE number */
595 status
= acpi_hw_get_gpe_status(gpe_event_info
, event_status
);
598 acpi_os_release_lock(acpi_gbl_gpe_lock
, flags
);
599 return_ACPI_STATUS(status
);
602 ACPI_EXPORT_SYMBOL(acpi_get_gpe_status
)
604 /*******************************************************************************
606 * FUNCTION: acpi_finish_gpe
608 * PARAMETERS: gpe_device - Namespace node for the GPE Block
609 * (NULL for FADT defined GPEs)
610 * gpe_number - GPE level within the GPE block
614 * DESCRIPTION: Clear and conditionally reenable a GPE. This completes the GPE
615 * processing. Intended for use by asynchronous host-installed
616 * GPE handlers. The GPE is only reenabled if the enable_for_run bit
617 * is set in the GPE info.
619 ******************************************************************************/
620 acpi_status
acpi_finish_gpe(acpi_handle gpe_device
, u32 gpe_number
)
622 struct acpi_gpe_event_info
*gpe_event_info
;
624 acpi_cpu_flags flags
;
626 ACPI_FUNCTION_TRACE(acpi_finish_gpe
);
628 flags
= acpi_os_acquire_lock(acpi_gbl_gpe_lock
);
630 /* Ensure that we have a valid GPE number */
632 gpe_event_info
= acpi_ev_get_gpe_event_info(gpe_device
, gpe_number
);
633 if (!gpe_event_info
) {
634 status
= AE_BAD_PARAMETER
;
635 goto unlock_and_exit
;
638 status
= acpi_ev_finish_gpe(gpe_event_info
);
641 acpi_os_release_lock(acpi_gbl_gpe_lock
, flags
);
642 return_ACPI_STATUS(status
);
645 ACPI_EXPORT_SYMBOL(acpi_finish_gpe
)
647 /******************************************************************************
649 * FUNCTION: acpi_disable_all_gpes
655 * DESCRIPTION: Disable and clear all GPEs in all GPE blocks
657 ******************************************************************************/
659 acpi_status
acpi_disable_all_gpes(void)
663 ACPI_FUNCTION_TRACE(acpi_disable_all_gpes
);
665 status
= acpi_ut_acquire_mutex(ACPI_MTX_EVENTS
);
666 if (ACPI_FAILURE(status
)) {
667 return_ACPI_STATUS(status
);
670 status
= acpi_hw_disable_all_gpes();
671 (void)acpi_ut_release_mutex(ACPI_MTX_EVENTS
);
673 return_ACPI_STATUS(status
);
676 ACPI_EXPORT_SYMBOL(acpi_disable_all_gpes
)
678 /******************************************************************************
680 * FUNCTION: acpi_enable_all_runtime_gpes
686 * DESCRIPTION: Enable all "runtime" GPEs, in all GPE blocks
688 ******************************************************************************/
690 acpi_status
acpi_enable_all_runtime_gpes(void)
694 ACPI_FUNCTION_TRACE(acpi_enable_all_runtime_gpes
);
696 status
= acpi_ut_acquire_mutex(ACPI_MTX_EVENTS
);
697 if (ACPI_FAILURE(status
)) {
698 return_ACPI_STATUS(status
);
701 status
= acpi_hw_enable_all_runtime_gpes();
702 (void)acpi_ut_release_mutex(ACPI_MTX_EVENTS
);
704 return_ACPI_STATUS(status
);
707 ACPI_EXPORT_SYMBOL(acpi_enable_all_runtime_gpes
)
709 /******************************************************************************
711 * FUNCTION: acpi_enable_all_wakeup_gpes
717 * DESCRIPTION: Enable all "wakeup" GPEs and disable all of the other GPEs, in
720 ******************************************************************************/
721 acpi_status
acpi_enable_all_wakeup_gpes(void)
725 ACPI_FUNCTION_TRACE(acpi_enable_all_wakeup_gpes
);
727 status
= acpi_ut_acquire_mutex(ACPI_MTX_EVENTS
);
728 if (ACPI_FAILURE(status
)) {
729 return_ACPI_STATUS(status
);
732 status
= acpi_hw_enable_all_wakeup_gpes();
733 (void)acpi_ut_release_mutex(ACPI_MTX_EVENTS
);
735 return_ACPI_STATUS(status
);
738 ACPI_EXPORT_SYMBOL(acpi_enable_all_wakeup_gpes
)
740 /*******************************************************************************
742 * FUNCTION: acpi_install_gpe_block
744 * PARAMETERS: gpe_device - Handle to the parent GPE Block Device
745 * gpe_block_address - Address and space_ID
746 * register_count - Number of GPE register pairs in the block
747 * interrupt_number - H/W interrupt for the block
751 * DESCRIPTION: Create and Install a block of GPE registers. The GPEs are not
754 ******************************************************************************/
756 acpi_install_gpe_block(acpi_handle gpe_device
,
757 struct acpi_generic_address
*gpe_block_address
,
758 u32 register_count
, u32 interrupt_number
)
761 union acpi_operand_object
*obj_desc
;
762 struct acpi_namespace_node
*node
;
763 struct acpi_gpe_block_info
*gpe_block
;
765 ACPI_FUNCTION_TRACE(acpi_install_gpe_block
);
767 if ((!gpe_device
) || (!gpe_block_address
) || (!register_count
)) {
768 return_ACPI_STATUS(AE_BAD_PARAMETER
);
771 status
= acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE
);
772 if (ACPI_FAILURE(status
)) {
773 return_ACPI_STATUS(status
);
776 node
= acpi_ns_validate_handle(gpe_device
);
778 status
= AE_BAD_PARAMETER
;
779 goto unlock_and_exit
;
782 /* Validate the parent device */
784 if (node
->type
!= ACPI_TYPE_DEVICE
) {
786 goto unlock_and_exit
;
790 status
= AE_ALREADY_EXISTS
;
791 goto unlock_and_exit
;
795 * For user-installed GPE Block Devices, the gpe_block_base_number
798 status
= acpi_ev_create_gpe_block(node
, gpe_block_address
->address
,
799 gpe_block_address
->space_id
,
800 register_count
, 0, interrupt_number
,
802 if (ACPI_FAILURE(status
)) {
803 goto unlock_and_exit
;
806 /* Install block in the device_object attached to the node */
808 obj_desc
= acpi_ns_get_attached_object(node
);
812 * No object, create a new one (Device nodes do not always have
813 * an attached object)
815 obj_desc
= acpi_ut_create_internal_object(ACPI_TYPE_DEVICE
);
817 status
= AE_NO_MEMORY
;
818 goto unlock_and_exit
;
822 acpi_ns_attach_object(node
, obj_desc
, ACPI_TYPE_DEVICE
);
824 /* Remove local reference to the object */
826 acpi_ut_remove_reference(obj_desc
);
828 if (ACPI_FAILURE(status
)) {
829 goto unlock_and_exit
;
833 /* Now install the GPE block in the device_object */
835 obj_desc
->device
.gpe_block
= gpe_block
;
838 (void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE
);
839 return_ACPI_STATUS(status
);
842 ACPI_EXPORT_SYMBOL(acpi_install_gpe_block
)
844 /*******************************************************************************
846 * FUNCTION: acpi_remove_gpe_block
848 * PARAMETERS: gpe_device - Handle to the parent GPE Block Device
852 * DESCRIPTION: Remove a previously installed block of GPE registers
854 ******************************************************************************/
855 acpi_status
acpi_remove_gpe_block(acpi_handle gpe_device
)
857 union acpi_operand_object
*obj_desc
;
859 struct acpi_namespace_node
*node
;
861 ACPI_FUNCTION_TRACE(acpi_remove_gpe_block
);
864 return_ACPI_STATUS(AE_BAD_PARAMETER
);
867 status
= acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE
);
868 if (ACPI_FAILURE(status
)) {
869 return_ACPI_STATUS(status
);
872 node
= acpi_ns_validate_handle(gpe_device
);
874 status
= AE_BAD_PARAMETER
;
875 goto unlock_and_exit
;
878 /* Validate the parent device */
880 if (node
->type
!= ACPI_TYPE_DEVICE
) {
882 goto unlock_and_exit
;
885 /* Get the device_object attached to the node */
887 obj_desc
= acpi_ns_get_attached_object(node
);
888 if (!obj_desc
|| !obj_desc
->device
.gpe_block
) {
889 return_ACPI_STATUS(AE_NULL_OBJECT
);
892 /* Delete the GPE block (but not the device_object) */
894 status
= acpi_ev_delete_gpe_block(obj_desc
->device
.gpe_block
);
895 if (ACPI_SUCCESS(status
)) {
896 obj_desc
->device
.gpe_block
= NULL
;
900 (void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE
);
901 return_ACPI_STATUS(status
);
904 ACPI_EXPORT_SYMBOL(acpi_remove_gpe_block
)
906 /*******************************************************************************
908 * FUNCTION: acpi_get_gpe_device
910 * PARAMETERS: index - System GPE index (0-current_gpe_count)
911 * gpe_device - Where the parent GPE Device is returned
915 * DESCRIPTION: Obtain the GPE device associated with the input index. A NULL
916 * gpe device indicates that the gpe number is contained in one of
917 * the FADT-defined gpe blocks. Otherwise, the GPE block device.
919 ******************************************************************************/
920 acpi_status
acpi_get_gpe_device(u32 index
, acpi_handle
* gpe_device
)
922 struct acpi_gpe_device_info info
;
925 ACPI_FUNCTION_TRACE(acpi_get_gpe_device
);
928 return_ACPI_STATUS(AE_BAD_PARAMETER
);
931 if (index
>= acpi_current_gpe_count
) {
932 return_ACPI_STATUS(AE_NOT_EXIST
);
935 /* Setup and walk the GPE list */
938 info
.status
= AE_NOT_EXIST
;
939 info
.gpe_device
= NULL
;
940 info
.next_block_base_index
= 0;
942 status
= acpi_ev_walk_gpe_list(acpi_ev_get_gpe_device
, &info
);
943 if (ACPI_FAILURE(status
)) {
944 return_ACPI_STATUS(status
);
947 *gpe_device
= ACPI_CAST_PTR(acpi_handle
, info
.gpe_device
);
948 return_ACPI_STATUS(info
.status
);
951 ACPI_EXPORT_SYMBOL(acpi_get_gpe_device
)
952 #endif /* !ACPI_REDUCED_HARDWARE */