blob: 11e5803b8b41958824c4f108954d6bb4ae37aaa8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/******************************************************************************
2 *
3 * Module Name: evxface - External interfaces for ACPI events
4 *
5 *****************************************************************************/
6
7/*
Bob Moorefbb7a2d2014-02-08 09:42:25 +08008 * Copyright (C) 2000 - 2014, 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
Lv Zheng839e9282013-10-29 09:29:51 +080044#define EXPORT_ACPI_INTERFACES
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <acpi/acpi.h>
Len Browne2f7a772009-01-09 00:30:03 -050047#include "accommon.h"
48#include "acnamesp.h"
49#include "acevents.h"
50#include "acinterp.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52#define _COMPONENT ACPI_EVENTS
Len Brown4be44fc2005-08-05 00:44:28 -040053ACPI_MODULE_NAME("evxface")
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56/*******************************************************************************
57 *
58 * FUNCTION: acpi_install_notify_handler
59 *
Lv Zheng75c80442012-12-19 05:36:49 +000060 * PARAMETERS: device - The device for which notifies will be handled
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 * handler_type - The type of handler:
Bob Moore86ed4bc2012-05-03 11:08:19 +080062 * ACPI_SYSTEM_NOTIFY: System Handler (00-7F)
63 * ACPI_DEVICE_NOTIFY: Device Handler (80-FF)
64 * ACPI_ALL_NOTIFY: Both System and Device
Lv Zheng75c80442012-12-19 05:36:49 +000065 * handler - Address of the handler
66 * context - Value passed to the handler on each GPE
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 *
68 * RETURN: Status
69 *
Bob Moore86ed4bc2012-05-03 11:08:19 +080070 * DESCRIPTION: Install a handler for notifications on an ACPI Device,
71 * thermal_zone, or Processor object.
72 *
73 * NOTES: The Root namespace object may have only one handler for each
74 * type of notify (System/Device). Device/Thermal/Processor objects
75 * may have one device notify handler, and multiple system notify
76 * handlers.
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 *
78 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -070079acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -040080acpi_install_notify_handler(acpi_handle device,
81 u32 handler_type,
82 acpi_notify_handler handler, void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -070083{
Bob Moore86ed4bc2012-05-03 11:08:19 +080084 struct acpi_namespace_node *node =
85 ACPI_CAST_PTR(struct acpi_namespace_node, device);
Len Brown4be44fc2005-08-05 00:44:28 -040086 union acpi_operand_object *obj_desc;
Bob Moore86ed4bc2012-05-03 11:08:19 +080087 union acpi_operand_object *handler_obj;
Len Brown4be44fc2005-08-05 00:44:28 -040088 acpi_status status;
Bob Moore86ed4bc2012-05-03 11:08:19 +080089 u32 i;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Bob Mooreb229cf92006-04-21 17:15:00 -040091 ACPI_FUNCTION_TRACE(acpi_install_notify_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
93 /* Parameter validation */
94
Bob Moore86ed4bc2012-05-03 11:08:19 +080095 if ((!device) || (!handler) || (!handler_type) ||
96 (handler_type > ACPI_MAX_NOTIFY_HANDLER_TYPE)) {
Len Brown4be44fc2005-08-05 00:44:28 -040097 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 }
99
Len Brown4be44fc2005-08-05 00:44:28 -0400100 status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE);
101 if (ACPI_FAILURE(status)) {
102 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 }
104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 /*
106 * Root Object:
107 * Registering a notify handler on the root object indicates that the
Bob Moore9f15fc62008-11-12 16:01:56 +0800108 * caller wishes to receive notifications for all objects. Note that
Bob Moore86ed4bc2012-05-03 11:08:19 +0800109 * only one global handler can be registered per notify type.
110 * Ensure that a handler is not already installed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 */
112 if (device == ACPI_ROOT_OBJECT) {
Bob Moore86ed4bc2012-05-03 11:08:19 +0800113 for (i = 0; i < ACPI_NUM_NOTIFY_TYPES; i++) {
114 if (handler_type & (i + 1)) {
115 if (acpi_gbl_global_notify[i].handler) {
Rafael J. Wysocki3f0be672010-02-17 23:42:59 +0100116 status = AE_ALREADY_EXISTS;
117 goto unlock_and_exit;
118 }
119
Bob Moore86ed4bc2012-05-03 11:08:19 +0800120 acpi_gbl_global_notify[i].handler = handler;
121 acpi_gbl_global_notify[i].context = context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 }
123 }
124
Bob Moore86ed4bc2012-05-03 11:08:19 +0800125 goto unlock_and_exit; /* Global notify handler installed, all done */
126 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
Bob Moore86ed4bc2012-05-03 11:08:19 +0800128 /*
129 * All Other Objects:
130 * Caller will only receive notifications specific to the target
131 * object. Note that only certain object types are allowed to
132 * receive notifications.
133 */
134
135 /* Are Notifies allowed on this object? */
136
137 if (!acpi_ev_is_notify_object(node)) {
138 status = AE_TYPE;
139 goto unlock_and_exit;
140 }
141
142 /* Check for an existing internal object, might not exist */
143
144 obj_desc = acpi_ns_get_attached_object(node);
145 if (!obj_desc) {
146
147 /* Create a new object */
148
149 obj_desc = acpi_ut_create_internal_object(node->type);
150 if (!obj_desc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 status = AE_NO_MEMORY;
152 goto unlock_and_exit;
153 }
154
Bob Moore86ed4bc2012-05-03 11:08:19 +0800155 /* Attach new object to the Node, remove local reference */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
Bob Moore86ed4bc2012-05-03 11:08:19 +0800157 status = acpi_ns_attach_object(device, obj_desc, node->type);
158 acpi_ut_remove_reference(obj_desc);
159 if (ACPI_FAILURE(status)) {
160 goto unlock_and_exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 }
162 }
163
Bob Moore86ed4bc2012-05-03 11:08:19 +0800164 /* Ensure that the handler is not already installed in the lists */
165
166 for (i = 0; i < ACPI_NUM_NOTIFY_TYPES; i++) {
167 if (handler_type & (i + 1)) {
168 handler_obj = obj_desc->common_notify.notify_list[i];
169 while (handler_obj) {
170 if (handler_obj->notify.handler == handler) {
171 status = AE_ALREADY_EXISTS;
172 goto unlock_and_exit;
173 }
174
175 handler_obj = handler_obj->notify.next[i];
176 }
177 }
178 }
179
180 /* Create and populate a new notify handler object */
181
182 handler_obj = acpi_ut_create_internal_object(ACPI_TYPE_LOCAL_NOTIFY);
183 if (!handler_obj) {
184 status = AE_NO_MEMORY;
185 goto unlock_and_exit;
186 }
187
188 handler_obj->notify.node = node;
189 handler_obj->notify.handler_type = handler_type;
190 handler_obj->notify.handler = handler;
191 handler_obj->notify.context = context;
192
193 /* Install the handler at the list head(s) */
194
195 for (i = 0; i < ACPI_NUM_NOTIFY_TYPES; i++) {
196 if (handler_type & (i + 1)) {
197 handler_obj->notify.next[i] =
198 obj_desc->common_notify.notify_list[i];
199
200 obj_desc->common_notify.notify_list[i] = handler_obj;
201 }
202 }
203
204 /* Add an extra reference if handler was installed in both lists */
205
206 if (handler_type == ACPI_ALL_NOTIFY) {
207 acpi_ut_add_reference(handler_obj);
208 }
209
210unlock_and_exit:
Len Brown4be44fc2005-08-05 00:44:28 -0400211 (void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
212 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
Bob Moore83135242006-10-03 00:00:00 -0400215ACPI_EXPORT_SYMBOL(acpi_install_notify_handler)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
217/*******************************************************************************
218 *
219 * FUNCTION: acpi_remove_notify_handler
220 *
Lv Zheng75c80442012-12-19 05:36:49 +0000221 * PARAMETERS: device - The device for which the handler is installed
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 * handler_type - The type of handler:
Bob Moore86ed4bc2012-05-03 11:08:19 +0800223 * ACPI_SYSTEM_NOTIFY: System Handler (00-7F)
224 * ACPI_DEVICE_NOTIFY: Device Handler (80-FF)
225 * ACPI_ALL_NOTIFY: Both System and Device
Lv Zheng75c80442012-12-19 05:36:49 +0000226 * handler - Address of the handler
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 *
228 * RETURN: Status
229 *
230 * DESCRIPTION: Remove a handler for notifies on an ACPI device
231 *
232 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400234acpi_remove_notify_handler(acpi_handle device,
235 u32 handler_type, acpi_notify_handler handler)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236{
Bob Moore86ed4bc2012-05-03 11:08:19 +0800237 struct acpi_namespace_node *node =
238 ACPI_CAST_PTR(struct acpi_namespace_node, device);
Len Brown4be44fc2005-08-05 00:44:28 -0400239 union acpi_operand_object *obj_desc;
Bob Moore86ed4bc2012-05-03 11:08:19 +0800240 union acpi_operand_object *handler_obj;
241 union acpi_operand_object *previous_handler_obj;
Lv Zheng69c841b2014-04-04 12:37:51 +0800242 acpi_status status = AE_OK;
Bob Moore86ed4bc2012-05-03 11:08:19 +0800243 u32 i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
Bob Mooreb229cf92006-04-21 17:15:00 -0400245 ACPI_FUNCTION_TRACE(acpi_remove_notify_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
247 /* Parameter validation */
248
Bob Moore86ed4bc2012-05-03 11:08:19 +0800249 if ((!device) || (!handler) || (!handler_type) ||
250 (handler_type > ACPI_MAX_NOTIFY_HANDLER_TYPE)) {
251 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 }
Lv Zheng3e8214e2012-12-19 05:37:15 +0000253
Bob Moore86ed4bc2012-05-03 11:08:19 +0800254 /* Root Object. Global handlers are removed here */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Bob Moore86ed4bc2012-05-03 11:08:19 +0800256 if (device == ACPI_ROOT_OBJECT) {
257 for (i = 0; i < ACPI_NUM_NOTIFY_TYPES; i++) {
258 if (handler_type & (i + 1)) {
Lv Zheng69c841b2014-04-04 12:37:51 +0800259 status =
260 acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE);
261 if (ACPI_FAILURE(status)) {
262 return_ACPI_STATUS(status);
263 }
264
Bob Moore86ed4bc2012-05-03 11:08:19 +0800265 if (!acpi_gbl_global_notify[i].handler ||
266 (acpi_gbl_global_notify[i].handler !=
267 handler)) {
268 status = AE_NOT_EXIST;
269 goto unlock_and_exit;
270 }
271
272 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
273 "Removing global notify handler\n"));
274
275 acpi_gbl_global_notify[i].handler = NULL;
276 acpi_gbl_global_notify[i].context = NULL;
Lv Zheng69c841b2014-04-04 12:37:51 +0800277
278 (void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
279
280 /* Make sure all deferred notify tasks are completed */
281
282 acpi_os_wait_events_complete();
Bob Moore86ed4bc2012-05-03 11:08:19 +0800283 }
284 }
285
Lv Zheng69c841b2014-04-04 12:37:51 +0800286 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 }
288
Bob Moore86ed4bc2012-05-03 11:08:19 +0800289 /* All other objects: Are Notifies allowed on this object? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
Bob Moore86ed4bc2012-05-03 11:08:19 +0800291 if (!acpi_ev_is_notify_object(node)) {
Lv Zheng69c841b2014-04-04 12:37:51 +0800292 return_ACPI_STATUS(AE_TYPE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 }
294
Bob Moore86ed4bc2012-05-03 11:08:19 +0800295 /* Must have an existing internal object */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
Bob Moore86ed4bc2012-05-03 11:08:19 +0800297 obj_desc = acpi_ns_get_attached_object(node);
298 if (!obj_desc) {
Lv Zheng69c841b2014-04-04 12:37:51 +0800299 return_ACPI_STATUS(AE_NOT_EXIST);
Bob Moore86ed4bc2012-05-03 11:08:19 +0800300 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
Bob Moore86ed4bc2012-05-03 11:08:19 +0800302 /* Internal object exists. Find the handler and remove it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
Bob Moore86ed4bc2012-05-03 11:08:19 +0800304 for (i = 0; i < ACPI_NUM_NOTIFY_TYPES; i++) {
305 if (handler_type & (i + 1)) {
Lv Zheng69c841b2014-04-04 12:37:51 +0800306 status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE);
307 if (ACPI_FAILURE(status)) {
308 return_ACPI_STATUS(status);
309 }
310
Bob Moore86ed4bc2012-05-03 11:08:19 +0800311 handler_obj = obj_desc->common_notify.notify_list[i];
312 previous_handler_obj = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
Bob Moore86ed4bc2012-05-03 11:08:19 +0800314 /* Attempt to find the handler in the handler list */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
Bob Moore86ed4bc2012-05-03 11:08:19 +0800316 while (handler_obj &&
317 (handler_obj->notify.handler != handler)) {
318 previous_handler_obj = handler_obj;
319 handler_obj = handler_obj->notify.next[i];
320 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
Bob Moore86ed4bc2012-05-03 11:08:19 +0800322 if (!handler_obj) {
Bob Mooref6dd9222006-07-07 20:44:38 -0400323 status = AE_NOT_EXIST;
324 goto unlock_and_exit;
325 }
326
Bob Moore86ed4bc2012-05-03 11:08:19 +0800327 /* Remove the handler object from the list */
328
329 if (previous_handler_obj) { /* Handler is not at the list head */
330 previous_handler_obj->notify.next[i] =
331 handler_obj->notify.next[i];
332 } else { /* Handler is at the list head */
333
334 obj_desc->common_notify.notify_list[i] =
335 handler_obj->notify.next[i];
Rafael J. Wysocki3f0be672010-02-17 23:42:59 +0100336 }
337
Lv Zheng69c841b2014-04-04 12:37:51 +0800338 (void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
339
340 /* Make sure all deferred notify tasks are completed */
341
342 acpi_os_wait_events_complete();
Bob Moore86ed4bc2012-05-03 11:08:19 +0800343 acpi_ut_remove_reference(handler_obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 }
345 }
346
Lv Zheng69c841b2014-04-04 12:37:51 +0800347 return_ACPI_STATUS(status);
348
Bob Moore86ed4bc2012-05-03 11:08:19 +0800349unlock_and_exit:
Len Brown4be44fc2005-08-05 00:44:28 -0400350 (void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
351 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
Bob Moore83135242006-10-03 00:00:00 -0400354ACPI_EXPORT_SYMBOL(acpi_remove_notify_handler)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
356/*******************************************************************************
357 *
Bob Moore33620c52012-02-14 18:14:27 +0800358 * FUNCTION: acpi_install_exception_handler
359 *
Bob Mooreba494be2012-07-12 09:40:10 +0800360 * PARAMETERS: handler - Pointer to the handler function for the
Bob Moore33620c52012-02-14 18:14:27 +0800361 * event
362 *
363 * RETURN: Status
364 *
365 * DESCRIPTION: Saves the pointer to the handler function
366 *
367 ******************************************************************************/
368#ifdef ACPI_FUTURE_USAGE
369acpi_status acpi_install_exception_handler(acpi_exception_handler handler)
370{
371 acpi_status status;
372
373 ACPI_FUNCTION_TRACE(acpi_install_exception_handler);
374
375 status = acpi_ut_acquire_mutex(ACPI_MTX_EVENTS);
376 if (ACPI_FAILURE(status)) {
377 return_ACPI_STATUS(status);
378 }
379
380 /* Don't allow two handlers. */
381
382 if (acpi_gbl_exception_handler) {
383 status = AE_ALREADY_EXISTS;
384 goto cleanup;
385 }
386
387 /* Install the handler */
388
389 acpi_gbl_exception_handler = handler;
390
Lv Zheng10622bf2013-10-29 09:30:02 +0800391cleanup:
Bob Moore33620c52012-02-14 18:14:27 +0800392 (void)acpi_ut_release_mutex(ACPI_MTX_EVENTS);
393 return_ACPI_STATUS(status);
394}
395
396ACPI_EXPORT_SYMBOL(acpi_install_exception_handler)
397#endif /* ACPI_FUTURE_USAGE */
398
399#if (!ACPI_REDUCED_HARDWARE)
400/*******************************************************************************
401 *
Lv Zhenga2fd4b42013-09-23 09:52:05 +0800402 * FUNCTION: acpi_install_sci_handler
403 *
404 * PARAMETERS: address - Address of the handler
405 * context - Value passed to the handler on each SCI
406 *
407 * RETURN: Status
408 *
409 * DESCRIPTION: Install a handler for a System Control Interrupt.
410 *
411 ******************************************************************************/
412acpi_status acpi_install_sci_handler(acpi_sci_handler address, void *context)
413{
414 struct acpi_sci_handler_info *new_sci_handler;
415 struct acpi_sci_handler_info *sci_handler;
416 acpi_cpu_flags flags;
417 acpi_status status;
418
419 ACPI_FUNCTION_TRACE(acpi_install_sci_handler);
420
421 if (!address) {
422 return_ACPI_STATUS(AE_BAD_PARAMETER);
423 }
424
425 /* Allocate and init a handler object */
426
427 new_sci_handler = ACPI_ALLOCATE(sizeof(struct acpi_sci_handler_info));
428 if (!new_sci_handler) {
429 return_ACPI_STATUS(AE_NO_MEMORY);
430 }
431
432 new_sci_handler->address = address;
433 new_sci_handler->context = context;
434
435 status = acpi_ut_acquire_mutex(ACPI_MTX_EVENTS);
436 if (ACPI_FAILURE(status)) {
437 goto exit;
438 }
439
440 /* Lock list during installation */
441
442 flags = acpi_os_acquire_lock(acpi_gbl_gpe_lock);
443 sci_handler = acpi_gbl_sci_handler_list;
444
445 /* Ensure handler does not already exist */
446
447 while (sci_handler) {
448 if (address == sci_handler->address) {
449 status = AE_ALREADY_EXISTS;
450 goto unlock_and_exit;
451 }
452
453 sci_handler = sci_handler->next;
454 }
455
456 /* Install the new handler into the global list (at head) */
457
458 new_sci_handler->next = acpi_gbl_sci_handler_list;
459 acpi_gbl_sci_handler_list = new_sci_handler;
460
Lv Zheng10622bf2013-10-29 09:30:02 +0800461unlock_and_exit:
Lv Zhenga2fd4b42013-09-23 09:52:05 +0800462
463 acpi_os_release_lock(acpi_gbl_gpe_lock, flags);
464 (void)acpi_ut_release_mutex(ACPI_MTX_EVENTS);
465
Lv Zheng10622bf2013-10-29 09:30:02 +0800466exit:
Lv Zhenga2fd4b42013-09-23 09:52:05 +0800467 if (ACPI_FAILURE(status)) {
468 ACPI_FREE(new_sci_handler);
469 }
470 return_ACPI_STATUS(status);
471}
472
Bob Moore1d44efa2014-04-04 12:36:47 +0800473ACPI_EXPORT_SYMBOL(acpi_install_sci_handler)
474
Lv Zhenga2fd4b42013-09-23 09:52:05 +0800475/*******************************************************************************
476 *
477 * FUNCTION: acpi_remove_sci_handler
478 *
479 * PARAMETERS: address - Address of the handler
480 *
481 * RETURN: Status
482 *
483 * DESCRIPTION: Remove a handler for a System Control Interrupt.
484 *
485 ******************************************************************************/
Lv Zhenga2fd4b42013-09-23 09:52:05 +0800486acpi_status acpi_remove_sci_handler(acpi_sci_handler address)
487{
488 struct acpi_sci_handler_info *prev_sci_handler;
489 struct acpi_sci_handler_info *next_sci_handler;
490 acpi_cpu_flags flags;
491 acpi_status status;
492
493 ACPI_FUNCTION_TRACE(acpi_remove_sci_handler);
494
495 if (!address) {
496 return_ACPI_STATUS(AE_BAD_PARAMETER);
497 }
498
499 status = acpi_ut_acquire_mutex(ACPI_MTX_EVENTS);
500 if (ACPI_FAILURE(status)) {
501 return_ACPI_STATUS(status);
502 }
503
504 /* Remove the SCI handler with lock */
505
506 flags = acpi_os_acquire_lock(acpi_gbl_gpe_lock);
507
508 prev_sci_handler = NULL;
509 next_sci_handler = acpi_gbl_sci_handler_list;
510 while (next_sci_handler) {
511 if (next_sci_handler->address == address) {
512
513 /* Unlink and free the SCI handler info block */
514
515 if (prev_sci_handler) {
516 prev_sci_handler->next = next_sci_handler->next;
517 } else {
518 acpi_gbl_sci_handler_list =
519 next_sci_handler->next;
520 }
521
522 acpi_os_release_lock(acpi_gbl_gpe_lock, flags);
523 ACPI_FREE(next_sci_handler);
524 goto unlock_and_exit;
525 }
526
527 prev_sci_handler = next_sci_handler;
528 next_sci_handler = next_sci_handler->next;
529 }
530
531 acpi_os_release_lock(acpi_gbl_gpe_lock, flags);
532 status = AE_NOT_EXIST;
533
Lv Zheng10622bf2013-10-29 09:30:02 +0800534unlock_and_exit:
Lv Zhenga2fd4b42013-09-23 09:52:05 +0800535 (void)acpi_ut_release_mutex(ACPI_MTX_EVENTS);
536 return_ACPI_STATUS(status);
537}
538
Bob Moore1d44efa2014-04-04 12:36:47 +0800539ACPI_EXPORT_SYMBOL(acpi_remove_sci_handler)
540
Lv Zhenga2fd4b42013-09-23 09:52:05 +0800541/*******************************************************************************
542 *
Bob Moore33620c52012-02-14 18:14:27 +0800543 * FUNCTION: acpi_install_global_event_handler
544 *
Bob Mooreba494be2012-07-12 09:40:10 +0800545 * PARAMETERS: handler - Pointer to the global event handler function
546 * context - Value passed to the handler on each event
Bob Moore33620c52012-02-14 18:14:27 +0800547 *
548 * RETURN: Status
549 *
550 * DESCRIPTION: Saves the pointer to the handler function. The global handler
551 * is invoked upon each incoming GPE and Fixed Event. It is
552 * invoked at interrupt level at the time of the event dispatch.
553 * Can be used to update event counters, etc.
554 *
555 ******************************************************************************/
556acpi_status
Lv Zheng644ef742012-10-31 02:25:36 +0000557acpi_install_global_event_handler(acpi_gbl_event_handler handler, void *context)
Bob Moore33620c52012-02-14 18:14:27 +0800558{
559 acpi_status status;
560
561 ACPI_FUNCTION_TRACE(acpi_install_global_event_handler);
562
563 /* Parameter validation */
564
565 if (!handler) {
566 return_ACPI_STATUS(AE_BAD_PARAMETER);
567 }
568
569 status = acpi_ut_acquire_mutex(ACPI_MTX_EVENTS);
570 if (ACPI_FAILURE(status)) {
571 return_ACPI_STATUS(status);
572 }
573
574 /* Don't allow two handlers. */
575
576 if (acpi_gbl_global_event_handler) {
577 status = AE_ALREADY_EXISTS;
578 goto cleanup;
579 }
580
581 acpi_gbl_global_event_handler = handler;
582 acpi_gbl_global_event_handler_context = context;
583
Lv Zheng10622bf2013-10-29 09:30:02 +0800584cleanup:
Bob Moore33620c52012-02-14 18:14:27 +0800585 (void)acpi_ut_release_mutex(ACPI_MTX_EVENTS);
586 return_ACPI_STATUS(status);
587}
588
589ACPI_EXPORT_SYMBOL(acpi_install_global_event_handler)
590
591/*******************************************************************************
592 *
593 * FUNCTION: acpi_install_fixed_event_handler
594 *
Bob Mooreba494be2012-07-12 09:40:10 +0800595 * PARAMETERS: event - Event type to enable.
596 * handler - Pointer to the handler function for the
Bob Moore33620c52012-02-14 18:14:27 +0800597 * event
Bob Mooreba494be2012-07-12 09:40:10 +0800598 * context - Value passed to the handler on each GPE
Bob Moore33620c52012-02-14 18:14:27 +0800599 *
600 * RETURN: Status
601 *
602 * DESCRIPTION: Saves the pointer to the handler function and then enables the
603 * event.
604 *
605 ******************************************************************************/
606acpi_status
607acpi_install_fixed_event_handler(u32 event,
608 acpi_event_handler handler, void *context)
609{
610 acpi_status status;
611
612 ACPI_FUNCTION_TRACE(acpi_install_fixed_event_handler);
613
614 /* Parameter validation */
615
616 if (event > ACPI_EVENT_MAX) {
617 return_ACPI_STATUS(AE_BAD_PARAMETER);
618 }
619
620 status = acpi_ut_acquire_mutex(ACPI_MTX_EVENTS);
621 if (ACPI_FAILURE(status)) {
622 return_ACPI_STATUS(status);
623 }
624
Bob Moored4d32192013-03-08 09:21:41 +0000625 /* Do not allow multiple handlers */
Bob Moore33620c52012-02-14 18:14:27 +0800626
Bob Moored4d32192013-03-08 09:21:41 +0000627 if (acpi_gbl_fixed_event_handlers[event].handler) {
Bob Moore33620c52012-02-14 18:14:27 +0800628 status = AE_ALREADY_EXISTS;
629 goto cleanup;
630 }
631
632 /* Install the handler before enabling the event */
633
634 acpi_gbl_fixed_event_handlers[event].handler = handler;
635 acpi_gbl_fixed_event_handlers[event].context = context;
636
637 status = acpi_clear_event(event);
638 if (ACPI_SUCCESS(status))
639 status = acpi_enable_event(event, 0);
640 if (ACPI_FAILURE(status)) {
Bob Moored4d32192013-03-08 09:21:41 +0000641 ACPI_WARNING((AE_INFO,
642 "Could not enable fixed event - %s (%u)",
643 acpi_ut_get_event_name(event), event));
Bob Moore33620c52012-02-14 18:14:27 +0800644
645 /* Remove the handler */
646
647 acpi_gbl_fixed_event_handlers[event].handler = NULL;
648 acpi_gbl_fixed_event_handlers[event].context = NULL;
649 } else {
650 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Bob Moored4d32192013-03-08 09:21:41 +0000651 "Enabled fixed event %s (%X), Handler=%p\n",
652 acpi_ut_get_event_name(event), event,
Bob Moore33620c52012-02-14 18:14:27 +0800653 handler));
654 }
655
Lv Zheng10622bf2013-10-29 09:30:02 +0800656cleanup:
Bob Moore33620c52012-02-14 18:14:27 +0800657 (void)acpi_ut_release_mutex(ACPI_MTX_EVENTS);
658 return_ACPI_STATUS(status);
659}
660
661ACPI_EXPORT_SYMBOL(acpi_install_fixed_event_handler)
662
663/*******************************************************************************
664 *
665 * FUNCTION: acpi_remove_fixed_event_handler
666 *
Bob Mooreba494be2012-07-12 09:40:10 +0800667 * PARAMETERS: event - Event type to disable.
668 * handler - Address of the handler
Bob Moore33620c52012-02-14 18:14:27 +0800669 *
670 * RETURN: Status
671 *
672 * DESCRIPTION: Disables the event and unregisters the event handler.
673 *
674 ******************************************************************************/
675acpi_status
676acpi_remove_fixed_event_handler(u32 event, acpi_event_handler handler)
677{
678 acpi_status status = AE_OK;
679
680 ACPI_FUNCTION_TRACE(acpi_remove_fixed_event_handler);
681
682 /* Parameter validation */
683
684 if (event > ACPI_EVENT_MAX) {
685 return_ACPI_STATUS(AE_BAD_PARAMETER);
686 }
687
688 status = acpi_ut_acquire_mutex(ACPI_MTX_EVENTS);
689 if (ACPI_FAILURE(status)) {
690 return_ACPI_STATUS(status);
691 }
692
693 /* Disable the event before removing the handler */
694
695 status = acpi_disable_event(event, 0);
696
697 /* Always Remove the handler */
698
699 acpi_gbl_fixed_event_handlers[event].handler = NULL;
700 acpi_gbl_fixed_event_handlers[event].context = NULL;
701
702 if (ACPI_FAILURE(status)) {
703 ACPI_WARNING((AE_INFO,
Bob Moored4d32192013-03-08 09:21:41 +0000704 "Could not disable fixed event - %s (%u)",
705 acpi_ut_get_event_name(event), event));
Bob Moore33620c52012-02-14 18:14:27 +0800706 } else {
Bob Moored4d32192013-03-08 09:21:41 +0000707 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
708 "Disabled fixed event - %s (%X)\n",
709 acpi_ut_get_event_name(event), event));
Bob Moore33620c52012-02-14 18:14:27 +0800710 }
711
712 (void)acpi_ut_release_mutex(ACPI_MTX_EVENTS);
713 return_ACPI_STATUS(status);
714}
715
716ACPI_EXPORT_SYMBOL(acpi_remove_fixed_event_handler)
717
718/*******************************************************************************
719 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 * FUNCTION: acpi_install_gpe_handler
721 *
Robert Moore44f6c012005-04-18 22:49:35 -0400722 * PARAMETERS: gpe_device - Namespace node for the GPE (NULL for FADT
723 * defined GPEs)
724 * gpe_number - The GPE number within the GPE block
Bob Mooreba494be2012-07-12 09:40:10 +0800725 * type - Whether this GPE should be treated as an
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 * edge- or level-triggered interrupt.
Bob Mooreba494be2012-07-12 09:40:10 +0800727 * address - Address of the handler
728 * context - Value passed to the handler on each GPE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 *
730 * RETURN: Status
731 *
732 * DESCRIPTION: Install a handler for a General Purpose Event.
733 *
734 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400736acpi_install_gpe_handler(acpi_handle gpe_device,
737 u32 gpe_number,
Lin Ming8b6cd8a2010-12-13 13:38:46 +0800738 u32 type, acpi_gpe_handler address, void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739{
Len Brown4be44fc2005-08-05 00:44:28 -0400740 struct acpi_gpe_event_info *gpe_event_info;
Lin Ming8b6cd8a2010-12-13 13:38:46 +0800741 struct acpi_gpe_handler_info *handler;
Len Brown4be44fc2005-08-05 00:44:28 -0400742 acpi_status status;
Bob Mooreb8e4d892006-01-27 16:43:00 -0500743 acpi_cpu_flags flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744
Bob Mooreb229cf92006-04-21 17:15:00 -0400745 ACPI_FUNCTION_TRACE(acpi_install_gpe_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
747 /* Parameter validation */
748
Lin Ming0f849d22010-04-06 14:52:37 +0800749 if ((!address) || (type & ~ACPI_GPE_XRUPT_TYPE_MASK)) {
750 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 }
752
Len Brown4be44fc2005-08-05 00:44:28 -0400753 status = acpi_ut_acquire_mutex(ACPI_MTX_EVENTS);
754 if (ACPI_FAILURE(status)) {
Lin Ming0f849d22010-04-06 14:52:37 +0800755 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 }
757
Lv Zheng75c80442012-12-19 05:36:49 +0000758 /* Allocate and init handler object (before lock) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
Lin Ming8b6cd8a2010-12-13 13:38:46 +0800760 handler = ACPI_ALLOCATE_ZEROED(sizeof(struct acpi_gpe_handler_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 if (!handler) {
762 status = AE_NO_MEMORY;
Bob Mooref6dd9222006-07-07 20:44:38 -0400763 goto unlock_and_exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 }
765
Rafael J. Wysocki28f4f8a2010-08-03 23:55:14 +0200766 flags = acpi_os_acquire_lock(acpi_gbl_gpe_lock);
767
768 /* Ensure that we have a valid GPE number */
769
770 gpe_event_info = acpi_ev_get_gpe_event_info(gpe_device, gpe_number);
771 if (!gpe_event_info) {
772 status = AE_BAD_PARAMETER;
773 goto free_and_exit;
774 }
775
776 /* Make sure that there isn't a handler there already */
777
778 if ((gpe_event_info->flags & ACPI_GPE_DISPATCH_MASK) ==
779 ACPI_GPE_DISPATCH_HANDLER) {
780 status = AE_ALREADY_EXISTS;
781 goto free_and_exit;
782 }
783
Len Brown4be44fc2005-08-05 00:44:28 -0400784 handler->address = address;
785 handler->context = context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 handler->method_node = gpe_event_info->dispatch.method_node;
Lv Zheng3e8214e2012-12-19 05:37:15 +0000787 handler->original_flags = (u8)(gpe_event_info->flags &
788 (ACPI_GPE_XRUPT_TYPE_MASK |
789 ACPI_GPE_DISPATCH_MASK));
Rafael J. Wysocki28f4f8a2010-08-03 23:55:14 +0200790
791 /*
Lv Zheng75c80442012-12-19 05:36:49 +0000792 * If the GPE is associated with a method, it may have been enabled
Rafael J. Wysockia2100802010-09-16 00:30:43 +0200793 * automatically during initialization, in which case it has to be
794 * disabled now to avoid spurious execution of the handler.
Rafael J. Wysocki28f4f8a2010-08-03 23:55:14 +0200795 */
796
Lin Ming3a378982010-12-13 13:36:15 +0800797 if ((handler->original_flags & ACPI_GPE_DISPATCH_METHOD)
Rafael J. Wysockia2100802010-09-16 00:30:43 +0200798 && gpe_event_info->runtime_count) {
Lin Ming3a378982010-12-13 13:36:15 +0800799 handler->originally_enabled = 1;
800 (void)acpi_ev_remove_gpe_reference(gpe_event_info);
Rafael J. Wysockia2100802010-09-16 00:30:43 +0200801 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 /* Install the handler */
804
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 gpe_event_info->dispatch.handler = handler;
806
Lv Zheng75c80442012-12-19 05:36:49 +0000807 /* Setup up dispatch flags to indicate handler (vs. method/notify) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808
Bob Moored4913dc2009-03-06 10:05:18 +0800809 gpe_event_info->flags &=
810 ~(ACPI_GPE_XRUPT_TYPE_MASK | ACPI_GPE_DISPATCH_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 gpe_event_info->flags |= (u8) (type | ACPI_GPE_DISPATCH_HANDLER);
812
Len Brown4be44fc2005-08-05 00:44:28 -0400813 acpi_os_release_lock(acpi_gbl_gpe_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814
Lin Ming0f849d22010-04-06 14:52:37 +0800815unlock_and_exit:
Len Brown4be44fc2005-08-05 00:44:28 -0400816 (void)acpi_ut_release_mutex(ACPI_MTX_EVENTS);
817 return_ACPI_STATUS(status);
Rafael J. Wysocki28f4f8a2010-08-03 23:55:14 +0200818
819free_and_exit:
820 acpi_os_release_lock(acpi_gbl_gpe_lock, flags);
821 ACPI_FREE(handler);
822 goto unlock_and_exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824
Bob Moore83135242006-10-03 00:00:00 -0400825ACPI_EXPORT_SYMBOL(acpi_install_gpe_handler)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826
827/*******************************************************************************
828 *
829 * FUNCTION: acpi_remove_gpe_handler
830 *
Robert Moore44f6c012005-04-18 22:49:35 -0400831 * PARAMETERS: gpe_device - Namespace node for the GPE (NULL for FADT
832 * defined GPEs)
833 * gpe_number - The event to remove a handler
Bob Mooreba494be2012-07-12 09:40:10 +0800834 * address - Address of the handler
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 *
836 * RETURN: Status
837 *
838 * DESCRIPTION: Remove a handler for a General Purpose acpi_event.
839 *
840 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400842acpi_remove_gpe_handler(acpi_handle gpe_device,
Lin Ming8b6cd8a2010-12-13 13:38:46 +0800843 u32 gpe_number, acpi_gpe_handler address)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844{
Len Brown4be44fc2005-08-05 00:44:28 -0400845 struct acpi_gpe_event_info *gpe_event_info;
Lin Ming8b6cd8a2010-12-13 13:38:46 +0800846 struct acpi_gpe_handler_info *handler;
Len Brown4be44fc2005-08-05 00:44:28 -0400847 acpi_status status;
Bob Mooreb8e4d892006-01-27 16:43:00 -0500848 acpi_cpu_flags flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849
Bob Mooreb229cf92006-04-21 17:15:00 -0400850 ACPI_FUNCTION_TRACE(acpi_remove_gpe_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851
852 /* Parameter validation */
853
854 if (!address) {
Len Brown4be44fc2005-08-05 00:44:28 -0400855 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 }
857
Len Brown4be44fc2005-08-05 00:44:28 -0400858 status = acpi_ut_acquire_mutex(ACPI_MTX_EVENTS);
859 if (ACPI_FAILURE(status)) {
860 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 }
862
Rafael J. Wysocki28f4f8a2010-08-03 23:55:14 +0200863 flags = acpi_os_acquire_lock(acpi_gbl_gpe_lock);
864
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 /* Ensure that we have a valid GPE number */
866
Len Brown4be44fc2005-08-05 00:44:28 -0400867 gpe_event_info = acpi_ev_get_gpe_event_info(gpe_device, gpe_number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 if (!gpe_event_info) {
869 status = AE_BAD_PARAMETER;
870 goto unlock_and_exit;
871 }
872
873 /* Make sure that a handler is indeed installed */
874
Len Brown4be44fc2005-08-05 00:44:28 -0400875 if ((gpe_event_info->flags & ACPI_GPE_DISPATCH_MASK) !=
876 ACPI_GPE_DISPATCH_HANDLER) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 status = AE_NOT_EXIST;
878 goto unlock_and_exit;
879 }
880
881 /* Make sure that the installed handler is the same */
882
883 if (gpe_event_info->dispatch.handler->address != address) {
884 status = AE_BAD_PARAMETER;
885 goto unlock_and_exit;
886 }
887
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 /* Remove the handler */
889
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 handler = gpe_event_info->dispatch.handler;
891
892 /* Restore Method node (if any), set dispatch flags */
893
894 gpe_event_info->dispatch.method_node = handler->method_node;
Rafael J. Wysocki28f4f8a2010-08-03 23:55:14 +0200895 gpe_event_info->flags &=
896 ~(ACPI_GPE_XRUPT_TYPE_MASK | ACPI_GPE_DISPATCH_MASK);
Lin Ming3a378982010-12-13 13:36:15 +0800897 gpe_event_info->flags |= handler->original_flags;
Rafael J. Wysocki28f4f8a2010-08-03 23:55:14 +0200898
899 /*
Rafael J. Wysockia2100802010-09-16 00:30:43 +0200900 * If the GPE was previously associated with a method and it was
901 * enabled, it should be enabled at this point to restore the
902 * post-initialization configuration.
Rafael J. Wysocki28f4f8a2010-08-03 23:55:14 +0200903 */
Lv Zheng3e8214e2012-12-19 05:37:15 +0000904 if ((handler->original_flags & ACPI_GPE_DISPATCH_METHOD) &&
905 handler->originally_enabled) {
Lin Ming3a378982010-12-13 13:36:15 +0800906 (void)acpi_ev_add_gpe_reference(gpe_event_info);
Lv Zheng3e8214e2012-12-19 05:37:15 +0000907 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908
Lv Zheng69c841b2014-04-04 12:37:51 +0800909 acpi_os_release_lock(acpi_gbl_gpe_lock, flags);
910 (void)acpi_ut_release_mutex(ACPI_MTX_EVENTS);
911
912 /* Make sure all deferred GPE tasks are completed */
913
914 acpi_os_wait_events_complete();
915
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 /* Now we can free the handler object */
917
Bob Moore83135242006-10-03 00:00:00 -0400918 ACPI_FREE(handler);
Lv Zheng69c841b2014-04-04 12:37:51 +0800919 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920
Rafael J. Wysocki28f4f8a2010-08-03 23:55:14 +0200921unlock_and_exit:
922 acpi_os_release_lock(acpi_gbl_gpe_lock, flags);
923
Len Brown4be44fc2005-08-05 00:44:28 -0400924 (void)acpi_ut_release_mutex(ACPI_MTX_EVENTS);
925 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927
Bob Moore83135242006-10-03 00:00:00 -0400928ACPI_EXPORT_SYMBOL(acpi_remove_gpe_handler)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929
930/*******************************************************************************
931 *
932 * FUNCTION: acpi_acquire_global_lock
933 *
Bob Mooreba494be2012-07-12 09:40:10 +0800934 * PARAMETERS: timeout - How long the caller is willing to wait
935 * handle - Where the handle to the lock is returned
Robert Moore44f6c012005-04-18 22:49:35 -0400936 * (if acquired)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 *
938 * RETURN: Status
939 *
940 * DESCRIPTION: Acquire the ACPI Global Lock
941 *
Bob Mooreba886cd2008-04-10 19:06:37 +0400942 * Note: Allows callers with the same thread ID to acquire the global lock
943 * multiple times. In other words, externally, the behavior of the global lock
944 * is identical to an AML mutex. On the first acquire, a new handle is
945 * returned. On any subsequent calls to acquire by the same thread, the same
946 * handle is returned.
947 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 ******************************************************************************/
Len Brown4be44fc2005-08-05 00:44:28 -0400949acpi_status acpi_acquire_global_lock(u16 timeout, u32 * handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950{
Len Brown4be44fc2005-08-05 00:44:28 -0400951 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952
953 if (!handle) {
954 return (AE_BAD_PARAMETER);
955 }
956
Len Brown4d2acd92007-05-09 22:56:38 -0400957 /* Must lock interpreter to prevent race conditions */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958
Len Brown4d2acd92007-05-09 22:56:38 -0400959 acpi_ex_enter_interpreter();
Bob Mooreba886cd2008-04-10 19:06:37 +0400960
961 status = acpi_ex_acquire_mutex_object(timeout,
962 acpi_gbl_global_lock_mutex,
963 acpi_os_get_thread_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964
Len Brown4be44fc2005-08-05 00:44:28 -0400965 if (ACPI_SUCCESS(status)) {
Bob Mooreba886cd2008-04-10 19:06:37 +0400966
Bob Mooree5567af2008-04-10 19:06:38 +0400967 /* Return the global lock handle (updated in acpi_ev_acquire_global_lock) */
Bob Mooreba886cd2008-04-10 19:06:37 +0400968
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 *handle = acpi_gbl_global_lock_handle;
970 }
971
Bob Mooreba886cd2008-04-10 19:06:37 +0400972 acpi_ex_exit_interpreter();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 return (status);
974}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975
Bob Moore83135242006-10-03 00:00:00 -0400976ACPI_EXPORT_SYMBOL(acpi_acquire_global_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977
978/*******************************************************************************
979 *
980 * FUNCTION: acpi_release_global_lock
981 *
Bob Mooreba494be2012-07-12 09:40:10 +0800982 * PARAMETERS: handle - Returned from acpi_acquire_global_lock
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 *
984 * RETURN: Status
985 *
Robert Moore44f6c012005-04-18 22:49:35 -0400986 * DESCRIPTION: Release the ACPI Global Lock. The handle must be valid.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 *
988 ******************************************************************************/
Len Brown4be44fc2005-08-05 00:44:28 -0400989acpi_status acpi_release_global_lock(u32 handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990{
Len Brown4be44fc2005-08-05 00:44:28 -0400991 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992
Bob Mooref02e9fa2008-04-10 19:06:37 +0400993 if (!handle || (handle != acpi_gbl_global_lock_handle)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 return (AE_NOT_ACQUIRED);
995 }
996
Bob Mooreba886cd2008-04-10 19:06:37 +0400997 status = acpi_ex_release_mutex_object(acpi_gbl_global_lock_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 return (status);
999}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000
Bob Moore83135242006-10-03 00:00:00 -04001001ACPI_EXPORT_SYMBOL(acpi_release_global_lock)
Bob Moore33620c52012-02-14 18:14:27 +08001002#endif /* !ACPI_REDUCED_HARDWARE */