1 /******************************************************************************
3 * Module Name: evmisc - Miscellaneous event manager support functions
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>
49 #define _COMPONENT ACPI_EVENTS
50 ACPI_MODULE_NAME("evmisc")
52 /* Local prototypes */
53 static void ACPI_SYSTEM_XFACE
acpi_ev_notify_dispatch(void *context
);
55 /*******************************************************************************
57 * FUNCTION: acpi_ev_is_notify_object
59 * PARAMETERS: node - Node to check
61 * RETURN: TRUE if notifies allowed on this object
63 * DESCRIPTION: Check type of node for a object that supports notifies.
65 * TBD: This could be replaced by a flag bit in the node.
67 ******************************************************************************/
69 u8
acpi_ev_is_notify_object(struct acpi_namespace_node
*node
)
73 case ACPI_TYPE_DEVICE
:
74 case ACPI_TYPE_PROCESSOR
:
75 case ACPI_TYPE_THERMAL
:
77 * These are the ONLY objects that can receive ACPI notifications
87 /*******************************************************************************
89 * FUNCTION: acpi_ev_queue_notify_request
91 * PARAMETERS: node - NS node for the notified object
92 * notify_value - Value from the Notify() request
96 * DESCRIPTION: Dispatch a device notification event to a previously
99 ******************************************************************************/
102 acpi_ev_queue_notify_request(struct acpi_namespace_node
* node
,
105 union acpi_operand_object
*obj_desc
;
106 union acpi_operand_object
*handler_list_head
= NULL
;
107 union acpi_generic_state
*info
;
108 u8 handler_list_id
= 0;
109 acpi_status status
= AE_OK
;
111 ACPI_FUNCTION_NAME(ev_queue_notify_request
);
113 /* Are Notifies allowed on this object? */
115 if (!acpi_ev_is_notify_object(node
)) {
119 /* Get the correct notify list type (System or Device) */
121 if (notify_value
<= ACPI_MAX_SYS_NOTIFY
) {
122 handler_list_id
= ACPI_SYSTEM_HANDLER_LIST
;
124 handler_list_id
= ACPI_DEVICE_HANDLER_LIST
;
127 /* Get the notify object attached to the namespace Node */
129 obj_desc
= acpi_ns_get_attached_object(node
);
132 /* We have an attached object, Get the correct handler list */
135 obj_desc
->common_notify
.notify_list
[handler_list_id
];
139 * If there is no notify handler (Global or Local)
140 * for this object, just ignore the notify
142 if (!acpi_gbl_global_notify
[handler_list_id
].handler
143 && !handler_list_head
) {
144 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
145 "No notify handler for Notify, ignoring (%4.4s, %X) node %p\n",
146 acpi_ut_get_node_name(node
), notify_value
,
152 /* Setup notify info and schedule the notify dispatcher */
154 info
= acpi_ut_create_generic_state();
156 return (AE_NO_MEMORY
);
159 info
->common
.descriptor_type
= ACPI_DESC_TYPE_STATE_NOTIFY
;
161 info
->notify
.node
= node
;
162 info
->notify
.value
= (u16
)notify_value
;
163 info
->notify
.handler_list_id
= handler_list_id
;
164 info
->notify
.handler_list_head
= handler_list_head
;
165 info
->notify
.global
= &acpi_gbl_global_notify
[handler_list_id
];
167 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
168 "Dispatching Notify on [%4.4s] (%s) Value 0x%2.2X (%s) Node %p\n",
169 acpi_ut_get_node_name(node
),
170 acpi_ut_get_type_name(node
->type
), notify_value
,
171 acpi_ut_get_notify_name(notify_value
, ACPI_TYPE_ANY
),
174 status
= acpi_os_execute(OSL_NOTIFY_HANDLER
,
175 acpi_ev_notify_dispatch
, info
);
176 if (ACPI_FAILURE(status
)) {
177 acpi_ut_delete_generic_state(info
);
183 /*******************************************************************************
185 * FUNCTION: acpi_ev_notify_dispatch
187 * PARAMETERS: context - To be passed to the notify handler
191 * DESCRIPTION: Dispatch a device notification event to a previously
194 ******************************************************************************/
196 static void ACPI_SYSTEM_XFACE
acpi_ev_notify_dispatch(void *context
)
198 union acpi_generic_state
*info
= (union acpi_generic_state
*)context
;
199 union acpi_operand_object
*handler_obj
;
201 ACPI_FUNCTION_ENTRY();
203 /* Invoke a global notify handler if installed */
205 if (info
->notify
.global
->handler
) {
206 info
->notify
.global
->handler(info
->notify
.node
,
208 info
->notify
.global
->context
);
211 /* Now invoke the local notify handler(s) if any are installed */
213 handler_obj
= info
->notify
.handler_list_head
;
214 while (handler_obj
) {
215 handler_obj
->notify
.handler(info
->notify
.node
,
217 handler_obj
->notify
.context
);
220 handler_obj
->notify
.next
[info
->notify
.handler_list_id
];
223 /* All done with the info object */
225 acpi_ut_delete_generic_state(info
);
228 #if (!ACPI_REDUCED_HARDWARE)
229 /******************************************************************************
231 * FUNCTION: acpi_ev_terminate
237 * DESCRIPTION: Disable events and free memory allocated for table storage.
239 ******************************************************************************/
241 void acpi_ev_terminate(void)
246 ACPI_FUNCTION_TRACE(ev_terminate
);
248 if (acpi_gbl_events_initialized
) {
250 * Disable all event-related functionality. In all cases, on error,
251 * print a message but obviously we don't abort.
254 /* Disable all fixed events */
256 for (i
= 0; i
< ACPI_NUM_FIXED_EVENTS
; i
++) {
257 status
= acpi_disable_event(i
, 0);
258 if (ACPI_FAILURE(status
)) {
260 "Could not disable fixed event %u",
265 /* Disable all GPEs in all GPE blocks */
267 status
= acpi_ev_walk_gpe_list(acpi_hw_disable_gpe_block
, NULL
);
269 status
= acpi_ev_remove_global_lock_handler();
270 if (ACPI_FAILURE(status
)) {
272 "Could not remove Global Lock handler"));
275 acpi_gbl_events_initialized
= FALSE
;
278 /* Remove SCI handlers */
280 status
= acpi_ev_remove_all_sci_handlers();
281 if (ACPI_FAILURE(status
)) {
282 ACPI_ERROR((AE_INFO
, "Could not remove SCI handler"));
285 /* Deallocate all handler objects installed within GPE info structs */
287 status
= acpi_ev_walk_gpe_list(acpi_ev_delete_gpe_handlers
, NULL
);
289 /* Return to original mode if necessary */
291 if (acpi_gbl_original_mode
== ACPI_SYS_MODE_LEGACY
) {
292 status
= acpi_disable();
293 if (ACPI_FAILURE(status
)) {
294 ACPI_WARNING((AE_INFO
, "AcpiDisable failed"));
300 #endif /* !ACPI_REDUCED_HARDWARE */