blob: db59fe3f63919220faa6818641a14082c1c91793 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/******************************************************************************
2 *
3 * Module Name: evmisc - Miscellaneous event manager support functions
4 *
5 *****************************************************************************/
6
7/*
Bob Moore25f044e2013-01-25 05:38:56 +00008 * Copyright (C) 2000 - 2013, Intel Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * 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>
Len Browne2f7a772009-01-09 00:30:03 -050045#include "accommon.h"
46#include "acevents.h"
47#include "acnamesp.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49#define _COMPONENT ACPI_EVENTS
Len Brown4be44fc2005-08-05 00:44:28 -040050ACPI_MODULE_NAME("evmisc")
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Robert Moore44f6c012005-04-18 22:49:35 -040052/* Local prototypes */
Len Brown4be44fc2005-08-05 00:44:28 -040053static void ACPI_SYSTEM_XFACE acpi_ev_notify_dispatch(void *context);
Robert Moore44f6c012005-04-18 22:49:35 -040054
Linus Torvalds1da177e2005-04-16 15:20:36 -070055/*******************************************************************************
56 *
57 * FUNCTION: acpi_ev_is_notify_object
58 *
Bob Mooreba494be2012-07-12 09:40:10 +080059 * PARAMETERS: node - Node to check
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 *
61 * RETURN: TRUE if notifies allowed on this object
62 *
63 * DESCRIPTION: Check type of node for a object that supports notifies.
64 *
65 * TBD: This could be replaced by a flag bit in the node.
66 *
67 ******************************************************************************/
68
Len Brown4be44fc2005-08-05 00:44:28 -040069u8 acpi_ev_is_notify_object(struct acpi_namespace_node *node)
Linus Torvalds1da177e2005-04-16 15:20:36 -070070{
71 switch (node->type) {
72 case ACPI_TYPE_DEVICE:
73 case ACPI_TYPE_PROCESSOR:
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 case ACPI_TYPE_THERMAL:
75 /*
76 * These are the ONLY objects that can receive ACPI notifications
77 */
78 return (TRUE);
79
80 default:
Chao Guan1d1ea1b2013-06-08 00:58:14 +000081
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 return (FALSE);
83 }
84}
85
Linus Torvalds1da177e2005-04-16 15:20:36 -070086/*******************************************************************************
87 *
88 * FUNCTION: acpi_ev_queue_notify_request
89 *
Bob Mooreba494be2012-07-12 09:40:10 +080090 * PARAMETERS: node - NS node for the notified object
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 * notify_value - Value from the Notify() request
92 *
93 * RETURN: Status
94 *
95 * DESCRIPTION: Dispatch a device notification event to a previously
96 * installed handler.
97 *
98 ******************************************************************************/
99
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400101acpi_ev_queue_notify_request(struct acpi_namespace_node * node,
102 u32 notify_value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103{
Len Brown4be44fc2005-08-05 00:44:28 -0400104 union acpi_operand_object *obj_desc;
Bob Moore86ed4bc2012-05-03 11:08:19 +0800105 union acpi_operand_object *handler_list_head = NULL;
106 union acpi_generic_state *info;
107 u8 handler_list_id = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400108 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
Bob Mooreb229cf92006-04-21 17:15:00 -0400110 ACPI_FUNCTION_NAME(ev_queue_notify_request);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
Bob Moore86ed4bc2012-05-03 11:08:19 +0800112 /* Are Notifies allowed on this object? */
113
114 if (!acpi_ev_is_notify_object(node)) {
115 return (AE_TYPE);
116 }
117
118 /* Get the correct notify list type (System or Device) */
119
120 if (notify_value <= ACPI_MAX_SYS_NOTIFY) {
121 handler_list_id = ACPI_SYSTEM_HANDLER_LIST;
122 } else {
123 handler_list_id = ACPI_DEVICE_HANDLER_LIST;
124 }
125
126 /* Get the notify object attached to the namespace Node */
127
128 obj_desc = acpi_ns_get_attached_object(node);
129 if (obj_desc) {
130
131 /* We have an attached object, Get the correct handler list */
132
133 handler_list_head =
134 obj_desc->common_notify.notify_list[handler_list_id];
135 }
136
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 /*
Bob Moore86ed4bc2012-05-03 11:08:19 +0800138 * If there is no notify handler (Global or Local)
139 * for this object, just ignore the notify
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 */
Bob Moore86ed4bc2012-05-03 11:08:19 +0800141 if (!acpi_gbl_global_notify[handler_list_id].handler
142 && !handler_list_head) {
143 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
144 "No notify handler for Notify, ignoring (%4.4s, %X) node %p\n",
145 acpi_ut_get_node_name(node), notify_value,
146 node));
147
148 return (AE_OK);
149 }
150
151 /* Setup notify info and schedule the notify dispatcher */
152
153 info = acpi_ut_create_generic_state();
154 if (!info) {
155 return (AE_NO_MEMORY);
156 }
157
158 info->common.descriptor_type = ACPI_DESC_TYPE_STATE_NOTIFY;
159
160 info->notify.node = node;
161 info->notify.value = (u16)notify_value;
162 info->notify.handler_list_id = handler_list_id;
163 info->notify.handler_list_head = handler_list_head;
164 info->notify.global = &acpi_gbl_global_notify[handler_list_id];
165
Len Brown4be44fc2005-08-05 00:44:28 -0400166 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Bob Mooreea143602012-02-14 18:23:39 +0800167 "Dispatching Notify on [%4.4s] (%s) Value 0x%2.2X (%s) Node %p\n",
168 acpi_ut_get_node_name(node),
169 acpi_ut_get_type_name(node->type), notify_value,
170 acpi_ut_get_notify_name(notify_value), node));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
Bob Moore86ed4bc2012-05-03 11:08:19 +0800172 status = acpi_os_execute(OSL_NOTIFY_HANDLER, acpi_ev_notify_dispatch,
173 info);
174 if (ACPI_FAILURE(status)) {
175 acpi_ut_delete_generic_state(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 }
177
178 return (status);
179}
180
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181/*******************************************************************************
182 *
183 * FUNCTION: acpi_ev_notify_dispatch
184 *
Bob Mooreba494be2012-07-12 09:40:10 +0800185 * PARAMETERS: context - To be passed to the notify handler
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 *
187 * RETURN: None.
188 *
189 * DESCRIPTION: Dispatch a device notification event to a previously
190 * installed handler.
191 *
192 ******************************************************************************/
193
Len Brown4be44fc2005-08-05 00:44:28 -0400194static void ACPI_SYSTEM_XFACE acpi_ev_notify_dispatch(void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195{
Bob Moore86ed4bc2012-05-03 11:08:19 +0800196 union acpi_generic_state *info = (union acpi_generic_state *)context;
Len Brown4be44fc2005-08-05 00:44:28 -0400197 union acpi_operand_object *handler_obj;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
Len Brown4be44fc2005-08-05 00:44:28 -0400199 ACPI_FUNCTION_ENTRY();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
Bob Moore86ed4bc2012-05-03 11:08:19 +0800201 /* Invoke a global notify handler if installed */
Bob Moore52fc0b02006-10-02 00:00:00 -0400202
Bob Moore86ed4bc2012-05-03 11:08:19 +0800203 if (info->notify.global->handler) {
204 info->notify.global->handler(info->notify.node,
205 info->notify.value,
206 info->notify.global->context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 }
208
Bob Moore86ed4bc2012-05-03 11:08:19 +0800209 /* Now invoke the local notify handler(s) if any are installed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
Bob Moore86ed4bc2012-05-03 11:08:19 +0800211 handler_obj = info->notify.handler_list_head;
212 while (handler_obj) {
213 handler_obj->notify.handler(info->notify.node,
214 info->notify.value,
215 handler_obj->notify.context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
Bob Moore86ed4bc2012-05-03 11:08:19 +0800217 handler_obj =
218 handler_obj->notify.next[info->notify.handler_list_id];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 }
220
221 /* All done with the info object */
222
Bob Moore86ed4bc2012-05-03 11:08:19 +0800223 acpi_ut_delete_generic_state(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224}
225
Bob Moore33620c52012-02-14 18:14:27 +0800226#if (!ACPI_REDUCED_HARDWARE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227/******************************************************************************
228 *
229 * FUNCTION: acpi_ev_terminate
230 *
231 * PARAMETERS: none
232 *
233 * RETURN: none
234 *
235 * DESCRIPTION: Disable events and free memory allocated for table storage.
236 *
237 ******************************************************************************/
238
Len Brown4be44fc2005-08-05 00:44:28 -0400239void acpi_ev_terminate(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240{
Bob Moore67a119f2008-06-10 13:42:13 +0800241 u32 i;
Len Brown4be44fc2005-08-05 00:44:28 -0400242 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
Bob Mooreb229cf92006-04-21 17:15:00 -0400244 ACPI_FUNCTION_TRACE(ev_terminate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
246 if (acpi_gbl_events_initialized) {
247 /*
Bob Moore9f15fc62008-11-12 16:01:56 +0800248 * Disable all event-related functionality. In all cases, on error,
249 * print a message but obviously we don't abort.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 */
251
252 /* Disable all fixed events */
253
254 for (i = 0; i < ACPI_NUM_FIXED_EVENTS; i++) {
Bob Moore67a119f2008-06-10 13:42:13 +0800255 status = acpi_disable_event(i, 0);
Len Brown4be44fc2005-08-05 00:44:28 -0400256 if (ACPI_FAILURE(status)) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500257 ACPI_ERROR((AE_INFO,
Bob Mooref6a22b02010-03-05 17:56:40 +0800258 "Could not disable fixed event %u",
Bob Mooreb8e4d892006-01-27 16:43:00 -0500259 (u32) i));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 }
261 }
262
263 /* Disable all GPEs in all GPE blocks */
264
Bob Mooree97d6bf2008-12-30 09:45:17 +0800265 status = acpi_ev_walk_gpe_list(acpi_hw_disable_gpe_block, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
267 /* Remove SCI handler */
268
Len Brown4be44fc2005-08-05 00:44:28 -0400269 status = acpi_ev_remove_sci_handler();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 if (ACPI_FAILURE(status)) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500271 ACPI_ERROR((AE_INFO, "Could not remove SCI handler"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 }
Bob Moore88760162007-02-02 19:48:22 +0300273
274 status = acpi_ev_remove_global_lock_handler();
275 if (ACPI_FAILURE(status)) {
276 ACPI_ERROR((AE_INFO,
277 "Could not remove Global Lock handler"));
278 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 }
280
281 /* Deallocate all handler objects installed within GPE info structs */
282
Bob Mooree97d6bf2008-12-30 09:45:17 +0800283 status = acpi_ev_walk_gpe_list(acpi_ev_delete_gpe_handlers, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
285 /* Return to original mode if necessary */
286
287 if (acpi_gbl_original_mode == ACPI_SYS_MODE_LEGACY) {
Len Brown4be44fc2005-08-05 00:44:28 -0400288 status = acpi_disable();
289 if (ACPI_FAILURE(status)) {
Bob Mooreb229cf92006-04-21 17:15:00 -0400290 ACPI_WARNING((AE_INFO, "AcpiDisable failed"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 }
292 }
293 return_VOID;
294}
Bob Moore33620c52012-02-14 18:14:27 +0800295
296#endif /* !ACPI_REDUCED_HARDWARE */