blob: e1141402dbed1868e4e473e21fe0bf09b8521daf [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 Mooreb4e104e2011-01-17 11:05:40 +08008 * Copyright (C) 2000 - 2011, 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <acpi/acpi.h>
Len Browne2f7a772009-01-09 00:30:03 -050045#include "accommon.h"
46#include "acnamesp.h"
47#include "acevents.h"
48#include "acinterp.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50#define _COMPONENT ACPI_EVENTS
Len Brown4be44fc2005-08-05 00:44:28 -040051ACPI_MODULE_NAME("evxface")
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53/*******************************************************************************
54 *
55 * FUNCTION: acpi_install_exception_handler
56 *
57 * PARAMETERS: Handler - Pointer to the handler function for the
58 * event
59 *
60 * RETURN: Status
61 *
62 * DESCRIPTION: Saves the pointer to the handler function
63 *
64 ******************************************************************************/
65#ifdef ACPI_FUTURE_USAGE
Len Brown4be44fc2005-08-05 00:44:28 -040066acpi_status acpi_install_exception_handler(acpi_exception_handler handler)
Linus Torvalds1da177e2005-04-16 15:20:36 -070067{
Len Brown4be44fc2005-08-05 00:44:28 -040068 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
Bob Mooreb229cf92006-04-21 17:15:00 -040070 ACPI_FUNCTION_TRACE(acpi_install_exception_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Len Brown4be44fc2005-08-05 00:44:28 -040072 status = acpi_ut_acquire_mutex(ACPI_MTX_EVENTS);
73 if (ACPI_FAILURE(status)) {
74 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 }
76
77 /* Don't allow two handlers. */
78
79 if (acpi_gbl_exception_handler) {
80 status = AE_ALREADY_EXISTS;
81 goto cleanup;
82 }
83
84 /* Install the handler */
85
86 acpi_gbl_exception_handler = handler;
87
Len Brown4be44fc2005-08-05 00:44:28 -040088 cleanup:
89 (void)acpi_ut_release_mutex(ACPI_MTX_EVENTS);
90 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091}
Bob Moore83135242006-10-03 00:00:00 -040092
93ACPI_EXPORT_SYMBOL(acpi_install_exception_handler)
Len Brown4be44fc2005-08-05 00:44:28 -040094#endif /* ACPI_FUTURE_USAGE */
Lin Minga0fcdb22010-12-13 13:39:26 +080095
96/*******************************************************************************
97 *
98 * FUNCTION: acpi_install_global_event_handler
99 *
100 * PARAMETERS: Handler - Pointer to the global event handler function
101 * Context - Value passed to the handler on each event
102 *
103 * RETURN: Status
104 *
105 * DESCRIPTION: Saves the pointer to the handler function. The global handler
106 * is invoked upon each incoming GPE and Fixed Event. It is
107 * invoked at interrupt level at the time of the event dispatch.
108 * Can be used to update event counters, etc.
109 *
110 ******************************************************************************/
111acpi_status
112acpi_install_global_event_handler(ACPI_GBL_EVENT_HANDLER handler, void *context)
113{
114 acpi_status status;
115
116 ACPI_FUNCTION_TRACE(acpi_install_global_event_handler);
117
118 /* Parameter validation */
119
120 if (!handler) {
121 return_ACPI_STATUS(AE_BAD_PARAMETER);
122 }
123
124 status = acpi_ut_acquire_mutex(ACPI_MTX_EVENTS);
125 if (ACPI_FAILURE(status)) {
126 return_ACPI_STATUS(status);
127 }
128
129 /* Don't allow two handlers. */
130
131 if (acpi_gbl_global_event_handler) {
132 status = AE_ALREADY_EXISTS;
133 goto cleanup;
134 }
135
136 acpi_gbl_global_event_handler = handler;
137 acpi_gbl_global_event_handler_context = context;
138
139 cleanup:
140 (void)acpi_ut_release_mutex(ACPI_MTX_EVENTS);
141 return_ACPI_STATUS(status);
142}
143
144ACPI_EXPORT_SYMBOL(acpi_install_global_event_handler)
145
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146/*******************************************************************************
147 *
148 * FUNCTION: acpi_install_fixed_event_handler
149 *
150 * PARAMETERS: Event - Event type to enable.
151 * Handler - Pointer to the handler function for the
152 * event
153 * Context - Value passed to the handler on each GPE
154 *
155 * RETURN: Status
156 *
157 * DESCRIPTION: Saves the pointer to the handler function and then enables the
158 * event.
159 *
160 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400162acpi_install_fixed_event_handler(u32 event,
163 acpi_event_handler handler, void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164{
Len Brown4be44fc2005-08-05 00:44:28 -0400165 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
Bob Mooreb229cf92006-04-21 17:15:00 -0400167 ACPI_FUNCTION_TRACE(acpi_install_fixed_event_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
169 /* Parameter validation */
170
171 if (event > ACPI_EVENT_MAX) {
Len Brown4be44fc2005-08-05 00:44:28 -0400172 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 }
174
Len Brown4be44fc2005-08-05 00:44:28 -0400175 status = acpi_ut_acquire_mutex(ACPI_MTX_EVENTS);
176 if (ACPI_FAILURE(status)) {
177 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 }
179
180 /* Don't allow two handlers. */
181
182 if (NULL != acpi_gbl_fixed_event_handlers[event].handler) {
183 status = AE_ALREADY_EXISTS;
184 goto cleanup;
185 }
186
187 /* Install the handler before enabling the event */
188
189 acpi_gbl_fixed_event_handlers[event].handler = handler;
190 acpi_gbl_fixed_event_handlers[event].context = context;
191
Len Brown4be44fc2005-08-05 00:44:28 -0400192 status = acpi_clear_event(event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 if (ACPI_SUCCESS(status))
Len Brown4be44fc2005-08-05 00:44:28 -0400194 status = acpi_enable_event(event, 0);
195 if (ACPI_FAILURE(status)) {
Bob Mooref6a22b02010-03-05 17:56:40 +0800196 ACPI_WARNING((AE_INFO, "Could not enable fixed event 0x%X",
Bob Mooreb8e4d892006-01-27 16:43:00 -0500197 event));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
199 /* Remove the handler */
200
201 acpi_gbl_fixed_event_handlers[event].handler = NULL;
202 acpi_gbl_fixed_event_handlers[event].context = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400203 } else {
204 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
205 "Enabled fixed event %X, Handler=%p\n", event,
206 handler));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 }
208
Len Brown4be44fc2005-08-05 00:44:28 -0400209 cleanup:
210 (void)acpi_ut_release_mutex(ACPI_MTX_EVENTS);
211 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
Bob Moore83135242006-10-03 00:00:00 -0400214ACPI_EXPORT_SYMBOL(acpi_install_fixed_event_handler)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
216/*******************************************************************************
217 *
218 * FUNCTION: acpi_remove_fixed_event_handler
219 *
220 * PARAMETERS: Event - Event type to disable.
221 * Handler - Address of the handler
222 *
223 * RETURN: Status
224 *
225 * DESCRIPTION: Disables the event and unregisters the event handler.
226 *
227 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400229acpi_remove_fixed_event_handler(u32 event, acpi_event_handler handler)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230{
Len Brown4be44fc2005-08-05 00:44:28 -0400231 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
Bob Mooreb229cf92006-04-21 17:15:00 -0400233 ACPI_FUNCTION_TRACE(acpi_remove_fixed_event_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
235 /* Parameter validation */
236
237 if (event > ACPI_EVENT_MAX) {
Len Brown4be44fc2005-08-05 00:44:28 -0400238 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 }
240
Len Brown4be44fc2005-08-05 00:44:28 -0400241 status = acpi_ut_acquire_mutex(ACPI_MTX_EVENTS);
242 if (ACPI_FAILURE(status)) {
243 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 }
245
246 /* Disable the event before removing the handler */
247
Len Brown4be44fc2005-08-05 00:44:28 -0400248 status = acpi_disable_event(event, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
250 /* Always Remove the handler */
251
252 acpi_gbl_fixed_event_handlers[event].handler = NULL;
253 acpi_gbl_fixed_event_handlers[event].context = NULL;
254
Len Brown4be44fc2005-08-05 00:44:28 -0400255 if (ACPI_FAILURE(status)) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500256 ACPI_WARNING((AE_INFO,
Bob Mooref6a22b02010-03-05 17:56:40 +0800257 "Could not write to fixed event enable register 0x%X",
Bob Mooreb8e4d892006-01-27 16:43:00 -0500258 event));
Len Brown4be44fc2005-08-05 00:44:28 -0400259 } else {
Bob Moore4a90c7e2006-01-13 16:22:00 -0500260 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Disabled fixed event %X\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400261 event));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 }
263
Len Brown4be44fc2005-08-05 00:44:28 -0400264 (void)acpi_ut_release_mutex(ACPI_MTX_EVENTS);
265 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
Bob Moore83135242006-10-03 00:00:00 -0400268ACPI_EXPORT_SYMBOL(acpi_remove_fixed_event_handler)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
270/*******************************************************************************
271 *
Rafael J. Wysocki3f0be672010-02-17 23:42:59 +0100272 * FUNCTION: acpi_populate_handler_object
273 *
274 * PARAMETERS: handler_obj - Handler object to populate
275 * handler_type - The type of handler:
276 * ACPI_SYSTEM_NOTIFY: system_handler (00-7f)
277 * ACPI_DEVICE_NOTIFY: driver_handler (80-ff)
278 * ACPI_ALL_NOTIFY: both system and device
279 * handler - Address of the handler
280 * context - Value passed to the handler on each GPE
281 * next - Address of a handler object to link to
282 *
283 * RETURN: None
284 *
285 * DESCRIPTION: Populate a handler object.
286 *
287 ******************************************************************************/
288static void
289acpi_populate_handler_object(struct acpi_object_notify_handler *handler_obj,
290 u32 handler_type,
291 acpi_notify_handler handler, void *context,
292 struct acpi_object_notify_handler *next)
293{
294 handler_obj->handler_type = handler_type;
295 handler_obj->handler = handler;
296 handler_obj->context = context;
297 handler_obj->next = next;
298}
299
300/*******************************************************************************
301 *
302 * FUNCTION: acpi_add_handler_object
303 *
304 * PARAMETERS: parent_obj - Parent of the new object
305 * handler - Address of the handler
306 * context - Value passed to the handler on each GPE
307 *
308 * RETURN: Status
309 *
310 * DESCRIPTION: Create a new handler object and populate it.
311 *
312 ******************************************************************************/
313static acpi_status
314acpi_add_handler_object(struct acpi_object_notify_handler *parent_obj,
315 acpi_notify_handler handler, void *context)
316{
317 struct acpi_object_notify_handler *handler_obj;
318
319 /* The parent must not be a defice notify handler object. */
320 if (parent_obj->handler_type & ACPI_DEVICE_NOTIFY)
321 return AE_BAD_PARAMETER;
322
323 handler_obj = ACPI_ALLOCATE_ZEROED(sizeof(*handler_obj));
324 if (!handler_obj)
325 return AE_NO_MEMORY;
326
327 acpi_populate_handler_object(handler_obj,
328 ACPI_SYSTEM_NOTIFY,
329 handler, context,
330 parent_obj->next);
331 parent_obj->next = handler_obj;
332
333 return AE_OK;
334}
335
336/*******************************************************************************
337 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 * FUNCTION: acpi_install_notify_handler
339 *
340 * PARAMETERS: Device - The device for which notifies will be handled
341 * handler_type - The type of handler:
342 * ACPI_SYSTEM_NOTIFY: system_handler (00-7f)
343 * ACPI_DEVICE_NOTIFY: driver_handler (80-ff)
344 * ACPI_ALL_NOTIFY: both system and device
345 * Handler - Address of the handler
346 * Context - Value passed to the handler on each GPE
347 *
348 * RETURN: Status
349 *
350 * DESCRIPTION: Install a handler for notifies on an ACPI device
351 *
352 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400354acpi_install_notify_handler(acpi_handle device,
355 u32 handler_type,
356 acpi_notify_handler handler, void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357{
Len Brown4be44fc2005-08-05 00:44:28 -0400358 union acpi_operand_object *obj_desc;
359 union acpi_operand_object *notify_obj;
360 struct acpi_namespace_node *node;
361 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
Bob Mooreb229cf92006-04-21 17:15:00 -0400363 ACPI_FUNCTION_TRACE(acpi_install_notify_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
365 /* Parameter validation */
366
Len Brown4be44fc2005-08-05 00:44:28 -0400367 if ((!device) ||
368 (!handler) || (handler_type > ACPI_MAX_NOTIFY_HANDLER_TYPE)) {
369 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 }
371
Len Brown4be44fc2005-08-05 00:44:28 -0400372 status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE);
373 if (ACPI_FAILURE(status)) {
374 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 }
376
377 /* Convert and validate the device handle */
378
Bob Mooref24b6642009-12-11 14:57:00 +0800379 node = acpi_ns_validate_handle(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 if (!node) {
381 status = AE_BAD_PARAMETER;
382 goto unlock_and_exit;
383 }
384
385 /*
386 * Root Object:
387 * Registering a notify handler on the root object indicates that the
Bob Moore9f15fc62008-11-12 16:01:56 +0800388 * caller wishes to receive notifications for all objects. Note that
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 * only one <external> global handler can be regsitered (per notify type).
390 */
391 if (device == ACPI_ROOT_OBJECT) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400392
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 /* Make sure the handler is not already installed */
394
395 if (((handler_type & ACPI_SYSTEM_NOTIFY) &&
Len Brown4be44fc2005-08-05 00:44:28 -0400396 acpi_gbl_system_notify.handler) ||
397 ((handler_type & ACPI_DEVICE_NOTIFY) &&
398 acpi_gbl_device_notify.handler)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 status = AE_ALREADY_EXISTS;
400 goto unlock_and_exit;
401 }
402
403 if (handler_type & ACPI_SYSTEM_NOTIFY) {
Len Brown4be44fc2005-08-05 00:44:28 -0400404 acpi_gbl_system_notify.node = node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 acpi_gbl_system_notify.handler = handler;
406 acpi_gbl_system_notify.context = context;
407 }
408
409 if (handler_type & ACPI_DEVICE_NOTIFY) {
Len Brown4be44fc2005-08-05 00:44:28 -0400410 acpi_gbl_device_notify.node = node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 acpi_gbl_device_notify.handler = handler;
412 acpi_gbl_device_notify.context = context;
413 }
414
415 /* Global notify handler installed */
416 }
417
418 /*
419 * All Other Objects:
420 * Caller will only receive notifications specific to the target object.
421 * Note that only certain object types can receive notifications.
422 */
423 else {
424 /* Notifies allowed on this object? */
425
Len Brown4be44fc2005-08-05 00:44:28 -0400426 if (!acpi_ev_is_notify_object(node)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 status = AE_TYPE;
428 goto unlock_and_exit;
429 }
430
431 /* Check for an existing internal object */
432
Len Brown4be44fc2005-08-05 00:44:28 -0400433 obj_desc = acpi_ns_get_attached_object(node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 if (obj_desc) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400435
Rafael J. Wysocki3f0be672010-02-17 23:42:59 +0100436 /* Object exists. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
Rafael J. Wysocki3f0be672010-02-17 23:42:59 +0100438 /* For a device notify, make sure there's no handler. */
439 if ((handler_type & ACPI_DEVICE_NOTIFY) &&
440 obj_desc->common_notify.device_notify) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 status = AE_ALREADY_EXISTS;
442 goto unlock_and_exit;
443 }
Rafael J. Wysocki3f0be672010-02-17 23:42:59 +0100444
445 /* System notifies may have more handlers installed. */
446 notify_obj = obj_desc->common_notify.system_notify;
447
448 if ((handler_type & ACPI_SYSTEM_NOTIFY) && notify_obj) {
449 struct acpi_object_notify_handler *parent_obj;
450
451 if (handler_type & ACPI_DEVICE_NOTIFY) {
452 status = AE_ALREADY_EXISTS;
453 goto unlock_and_exit;
454 }
455
456 parent_obj = &notify_obj->notify;
457 status = acpi_add_handler_object(parent_obj,
458 handler,
459 context);
460 goto unlock_and_exit;
461 }
Len Brown4be44fc2005-08-05 00:44:28 -0400462 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 /* Create a new object */
464
Len Brown4be44fc2005-08-05 00:44:28 -0400465 obj_desc = acpi_ut_create_internal_object(node->type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 if (!obj_desc) {
467 status = AE_NO_MEMORY;
468 goto unlock_and_exit;
469 }
470
471 /* Attach new object to the Node */
472
Len Brown4be44fc2005-08-05 00:44:28 -0400473 status =
474 acpi_ns_attach_object(device, obj_desc, node->type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
476 /* Remove local reference to the object */
477
Len Brown4be44fc2005-08-05 00:44:28 -0400478 acpi_ut_remove_reference(obj_desc);
479 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 goto unlock_and_exit;
481 }
482 }
483
484 /* Install the handler */
485
Len Brown4be44fc2005-08-05 00:44:28 -0400486 notify_obj =
487 acpi_ut_create_internal_object(ACPI_TYPE_LOCAL_NOTIFY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 if (!notify_obj) {
489 status = AE_NO_MEMORY;
490 goto unlock_and_exit;
491 }
492
Rafael J. Wysocki3f0be672010-02-17 23:42:59 +0100493 acpi_populate_handler_object(&notify_obj->notify,
494 handler_type,
495 handler, context,
496 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
498 if (handler_type & ACPI_SYSTEM_NOTIFY) {
499 obj_desc->common_notify.system_notify = notify_obj;
500 }
501
502 if (handler_type & ACPI_DEVICE_NOTIFY) {
503 obj_desc->common_notify.device_notify = notify_obj;
504 }
505
506 if (handler_type == ACPI_ALL_NOTIFY) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400507
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 /* Extra ref if installed in both */
509
Len Brown4be44fc2005-08-05 00:44:28 -0400510 acpi_ut_add_reference(notify_obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 }
512 }
513
Len Brown4be44fc2005-08-05 00:44:28 -0400514 unlock_and_exit:
515 (void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
516 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
Bob Moore83135242006-10-03 00:00:00 -0400519ACPI_EXPORT_SYMBOL(acpi_install_notify_handler)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
521/*******************************************************************************
522 *
523 * FUNCTION: acpi_remove_notify_handler
524 *
525 * PARAMETERS: Device - The device for which notifies will be handled
526 * handler_type - The type of handler:
527 * ACPI_SYSTEM_NOTIFY: system_handler (00-7f)
528 * ACPI_DEVICE_NOTIFY: driver_handler (80-ff)
529 * ACPI_ALL_NOTIFY: both system and device
530 * Handler - Address of the handler
531 *
532 * RETURN: Status
533 *
534 * DESCRIPTION: Remove a handler for notifies on an ACPI device
535 *
536 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400538acpi_remove_notify_handler(acpi_handle device,
539 u32 handler_type, acpi_notify_handler handler)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540{
Len Brown4be44fc2005-08-05 00:44:28 -0400541 union acpi_operand_object *notify_obj;
542 union acpi_operand_object *obj_desc;
543 struct acpi_namespace_node *node;
544 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
Bob Mooreb229cf92006-04-21 17:15:00 -0400546 ACPI_FUNCTION_TRACE(acpi_remove_notify_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
548 /* Parameter validation */
549
Len Brown4be44fc2005-08-05 00:44:28 -0400550 if ((!device) ||
551 (!handler) || (handler_type > ACPI_MAX_NOTIFY_HANDLER_TYPE)) {
Thomas Renningere8406b42006-06-02 15:58:00 -0400552 status = AE_BAD_PARAMETER;
553 goto exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 }
555
Rafael J. Wysocki3f0be672010-02-17 23:42:59 +0100556
557 /* Make sure all deferred tasks are completed */
558 acpi_os_wait_events_complete(NULL);
559
Len Brown4be44fc2005-08-05 00:44:28 -0400560 status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE);
561 if (ACPI_FAILURE(status)) {
Thomas Renningere8406b42006-06-02 15:58:00 -0400562 goto exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 }
564
565 /* Convert and validate the device handle */
566
Bob Mooref24b6642009-12-11 14:57:00 +0800567 node = acpi_ns_validate_handle(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 if (!node) {
569 status = AE_BAD_PARAMETER;
Bob Mooref6dd9222006-07-07 20:44:38 -0400570 goto unlock_and_exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 }
572
573 /* Root Object */
574
575 if (device == ACPI_ROOT_OBJECT) {
Len Brown4be44fc2005-08-05 00:44:28 -0400576 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Bob Moore4a90c7e2006-01-13 16:22:00 -0500577 "Removing notify handler for namespace root object\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
579 if (((handler_type & ACPI_SYSTEM_NOTIFY) &&
Len Brown4be44fc2005-08-05 00:44:28 -0400580 !acpi_gbl_system_notify.handler) ||
581 ((handler_type & ACPI_DEVICE_NOTIFY) &&
582 !acpi_gbl_device_notify.handler)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 status = AE_NOT_EXIST;
Bob Mooref6dd9222006-07-07 20:44:38 -0400584 goto unlock_and_exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 }
586
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 if (handler_type & ACPI_SYSTEM_NOTIFY) {
Len Brown4be44fc2005-08-05 00:44:28 -0400588 acpi_gbl_system_notify.node = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 acpi_gbl_system_notify.handler = NULL;
590 acpi_gbl_system_notify.context = NULL;
591 }
592
593 if (handler_type & ACPI_DEVICE_NOTIFY) {
Len Brown4be44fc2005-08-05 00:44:28 -0400594 acpi_gbl_device_notify.node = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 acpi_gbl_device_notify.handler = NULL;
596 acpi_gbl_device_notify.context = NULL;
597 }
598 }
599
600 /* All Other Objects */
601
602 else {
603 /* Notifies allowed on this object? */
604
Len Brown4be44fc2005-08-05 00:44:28 -0400605 if (!acpi_ev_is_notify_object(node)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 status = AE_TYPE;
Bob Mooref6dd9222006-07-07 20:44:38 -0400607 goto unlock_and_exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 }
609
610 /* Check for an existing internal object */
611
Len Brown4be44fc2005-08-05 00:44:28 -0400612 obj_desc = acpi_ns_get_attached_object(node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 if (!obj_desc) {
614 status = AE_NOT_EXIST;
Bob Mooref6dd9222006-07-07 20:44:38 -0400615 goto unlock_and_exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 }
617
618 /* Object exists - make sure there's an existing handler */
619
620 if (handler_type & ACPI_SYSTEM_NOTIFY) {
Rafael J. Wysocki3f0be672010-02-17 23:42:59 +0100621 struct acpi_object_notify_handler *handler_obj;
622 struct acpi_object_notify_handler *parent_obj;
623
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 notify_obj = obj_desc->common_notify.system_notify;
Bob Mooref6dd9222006-07-07 20:44:38 -0400625 if (!notify_obj) {
626 status = AE_NOT_EXIST;
627 goto unlock_and_exit;
628 }
629
Rafael J. Wysocki3f0be672010-02-17 23:42:59 +0100630 handler_obj = &notify_obj->notify;
631 parent_obj = NULL;
632 while (handler_obj->handler != handler) {
633 if (handler_obj->next) {
634 parent_obj = handler_obj;
635 handler_obj = handler_obj->next;
636 } else {
637 break;
638 }
639 }
640
641 if (handler_obj->handler != handler) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 status = AE_BAD_PARAMETER;
Bob Mooref6dd9222006-07-07 20:44:38 -0400643 goto unlock_and_exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645
Rafael J. Wysocki3f0be672010-02-17 23:42:59 +0100646 /*
647 * Remove the handler. There are three possible cases.
648 * First, we may need to remove a non-embedded object.
649 * Second, we may need to remove the embedded object's
650 * handler data, while non-embedded objects exist.
651 * Finally, we may need to remove the embedded object
652 * entirely along with its container.
653 */
654 if (parent_obj) {
655 /* Non-embedded object is being removed. */
656 parent_obj->next = handler_obj->next;
657 ACPI_FREE(handler_obj);
658 } else if (notify_obj->notify.next) {
659 /*
660 * The handler matches the embedded object, but
661 * there are more handler objects in the list.
662 * Replace the embedded object's data with the
663 * first next object's data and remove that
664 * object.
665 */
666 parent_obj = &notify_obj->notify;
667 handler_obj = notify_obj->notify.next;
668 *parent_obj = *handler_obj;
669 ACPI_FREE(handler_obj);
670 } else {
671 /* No more handler objects in the list. */
672 obj_desc->common_notify.system_notify = NULL;
673 acpi_ut_remove_reference(notify_obj);
Len Brown4be44fc2005-08-05 00:44:28 -0400674 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 }
676
677 if (handler_type & ACPI_DEVICE_NOTIFY) {
678 notify_obj = obj_desc->common_notify.device_notify;
Bob Mooref6dd9222006-07-07 20:44:38 -0400679 if (!notify_obj) {
680 status = AE_NOT_EXIST;
681 goto unlock_and_exit;
682 }
683
684 if (notify_obj->notify.handler != handler) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 status = AE_BAD_PARAMETER;
Bob Mooref6dd9222006-07-07 20:44:38 -0400686 goto unlock_and_exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
689 /* Remove the handler */
690 obj_desc->common_notify.device_notify = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400691 acpi_ut_remove_reference(notify_obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 }
693 }
694
Bob Mooref6dd9222006-07-07 20:44:38 -0400695 unlock_and_exit:
Len Brown4be44fc2005-08-05 00:44:28 -0400696 (void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
Bob Mooref6dd9222006-07-07 20:44:38 -0400697 exit:
Thomas Renningere8406b42006-06-02 15:58:00 -0400698 if (ACPI_FAILURE(status))
699 ACPI_EXCEPTION((AE_INFO, status, "Removing notify handler"));
Len Brown4be44fc2005-08-05 00:44:28 -0400700 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
Bob Moore83135242006-10-03 00:00:00 -0400703ACPI_EXPORT_SYMBOL(acpi_remove_notify_handler)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
705/*******************************************************************************
706 *
707 * FUNCTION: acpi_install_gpe_handler
708 *
Robert Moore44f6c012005-04-18 22:49:35 -0400709 * PARAMETERS: gpe_device - Namespace node for the GPE (NULL for FADT
710 * defined GPEs)
711 * gpe_number - The GPE number within the GPE block
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 * Type - Whether this GPE should be treated as an
713 * edge- or level-triggered interrupt.
714 * Address - Address of the handler
715 * Context - Value passed to the handler on each GPE
716 *
717 * RETURN: Status
718 *
719 * DESCRIPTION: Install a handler for a General Purpose Event.
720 *
721 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400723acpi_install_gpe_handler(acpi_handle gpe_device,
724 u32 gpe_number,
Lin Ming8b6cd8a2010-12-13 13:38:46 +0800725 u32 type, acpi_gpe_handler address, void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726{
Len Brown4be44fc2005-08-05 00:44:28 -0400727 struct acpi_gpe_event_info *gpe_event_info;
Lin Ming8b6cd8a2010-12-13 13:38:46 +0800728 struct acpi_gpe_handler_info *handler;
Len Brown4be44fc2005-08-05 00:44:28 -0400729 acpi_status status;
Bob Mooreb8e4d892006-01-27 16:43:00 -0500730 acpi_cpu_flags flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
Bob Mooreb229cf92006-04-21 17:15:00 -0400732 ACPI_FUNCTION_TRACE(acpi_install_gpe_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
734 /* Parameter validation */
735
Lin Ming0f849d22010-04-06 14:52:37 +0800736 if ((!address) || (type & ~ACPI_GPE_XRUPT_TYPE_MASK)) {
737 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 }
739
Len Brown4be44fc2005-08-05 00:44:28 -0400740 status = acpi_ut_acquire_mutex(ACPI_MTX_EVENTS);
741 if (ACPI_FAILURE(status)) {
Lin Ming0f849d22010-04-06 14:52:37 +0800742 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 }
744
Rafael J. Wysocki28f4f8a2010-08-03 23:55:14 +0200745 /* Allocate memory for the handler object */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
Lin Ming8b6cd8a2010-12-13 13:38:46 +0800747 handler = ACPI_ALLOCATE_ZEROED(sizeof(struct acpi_gpe_handler_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 if (!handler) {
749 status = AE_NO_MEMORY;
Bob Mooref6dd9222006-07-07 20:44:38 -0400750 goto unlock_and_exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 }
752
Rafael J. Wysocki28f4f8a2010-08-03 23:55:14 +0200753 flags = acpi_os_acquire_lock(acpi_gbl_gpe_lock);
754
755 /* Ensure that we have a valid GPE number */
756
757 gpe_event_info = acpi_ev_get_gpe_event_info(gpe_device, gpe_number);
758 if (!gpe_event_info) {
759 status = AE_BAD_PARAMETER;
760 goto free_and_exit;
761 }
762
763 /* Make sure that there isn't a handler there already */
764
765 if ((gpe_event_info->flags & ACPI_GPE_DISPATCH_MASK) ==
766 ACPI_GPE_DISPATCH_HANDLER) {
767 status = AE_ALREADY_EXISTS;
768 goto free_and_exit;
769 }
770
771 /* Allocate and init handler object */
772
Len Brown4be44fc2005-08-05 00:44:28 -0400773 handler->address = address;
774 handler->context = context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 handler->method_node = gpe_event_info->dispatch.method_node;
Lin Ming3a378982010-12-13 13:36:15 +0800776 handler->original_flags = gpe_event_info->flags &
Rafael J. Wysocki28f4f8a2010-08-03 23:55:14 +0200777 (ACPI_GPE_XRUPT_TYPE_MASK | ACPI_GPE_DISPATCH_MASK);
778
779 /*
Rafael J. Wysockia2100802010-09-16 00:30:43 +0200780 * If the GPE is associated with a method, it might have been enabled
781 * automatically during initialization, in which case it has to be
782 * disabled now to avoid spurious execution of the handler.
Rafael J. Wysocki28f4f8a2010-08-03 23:55:14 +0200783 */
784
Lin Ming3a378982010-12-13 13:36:15 +0800785 if ((handler->original_flags & ACPI_GPE_DISPATCH_METHOD)
Rafael J. Wysockia2100802010-09-16 00:30:43 +0200786 && gpe_event_info->runtime_count) {
Lin Ming3a378982010-12-13 13:36:15 +0800787 handler->originally_enabled = 1;
788 (void)acpi_ev_remove_gpe_reference(gpe_event_info);
Rafael J. Wysockia2100802010-09-16 00:30:43 +0200789 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 /* Install the handler */
792
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 gpe_event_info->dispatch.handler = handler;
794
795 /* Setup up dispatch flags to indicate handler (vs. method) */
796
Bob Moored4913dc2009-03-06 10:05:18 +0800797 gpe_event_info->flags &=
798 ~(ACPI_GPE_XRUPT_TYPE_MASK | ACPI_GPE_DISPATCH_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 gpe_event_info->flags |= (u8) (type | ACPI_GPE_DISPATCH_HANDLER);
800
Len Brown4be44fc2005-08-05 00:44:28 -0400801 acpi_os_release_lock(acpi_gbl_gpe_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802
Lin Ming0f849d22010-04-06 14:52:37 +0800803unlock_and_exit:
Len Brown4be44fc2005-08-05 00:44:28 -0400804 (void)acpi_ut_release_mutex(ACPI_MTX_EVENTS);
805 return_ACPI_STATUS(status);
Rafael J. Wysocki28f4f8a2010-08-03 23:55:14 +0200806
807free_and_exit:
808 acpi_os_release_lock(acpi_gbl_gpe_lock, flags);
809 ACPI_FREE(handler);
810 goto unlock_and_exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812
Bob Moore83135242006-10-03 00:00:00 -0400813ACPI_EXPORT_SYMBOL(acpi_install_gpe_handler)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814
815/*******************************************************************************
816 *
817 * FUNCTION: acpi_remove_gpe_handler
818 *
Robert Moore44f6c012005-04-18 22:49:35 -0400819 * PARAMETERS: gpe_device - Namespace node for the GPE (NULL for FADT
820 * defined GPEs)
821 * gpe_number - The event to remove a handler
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 * Address - Address of the handler
823 *
824 * RETURN: Status
825 *
826 * DESCRIPTION: Remove a handler for a General Purpose acpi_event.
827 *
828 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400830acpi_remove_gpe_handler(acpi_handle gpe_device,
Lin Ming8b6cd8a2010-12-13 13:38:46 +0800831 u32 gpe_number, acpi_gpe_handler address)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832{
Len Brown4be44fc2005-08-05 00:44:28 -0400833 struct acpi_gpe_event_info *gpe_event_info;
Lin Ming8b6cd8a2010-12-13 13:38:46 +0800834 struct acpi_gpe_handler_info *handler;
Len Brown4be44fc2005-08-05 00:44:28 -0400835 acpi_status status;
Bob Mooreb8e4d892006-01-27 16:43:00 -0500836 acpi_cpu_flags flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
Bob Mooreb229cf92006-04-21 17:15:00 -0400838 ACPI_FUNCTION_TRACE(acpi_remove_gpe_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
840 /* Parameter validation */
841
842 if (!address) {
Len Brown4be44fc2005-08-05 00:44:28 -0400843 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 }
845
Rafael J. Wysocki28f4f8a2010-08-03 23:55:14 +0200846 /* Make sure all deferred tasks are completed */
847
848 acpi_os_wait_events_complete(NULL);
849
Len Brown4be44fc2005-08-05 00:44:28 -0400850 status = acpi_ut_acquire_mutex(ACPI_MTX_EVENTS);
851 if (ACPI_FAILURE(status)) {
852 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 }
854
Rafael J. Wysocki28f4f8a2010-08-03 23:55:14 +0200855 flags = acpi_os_acquire_lock(acpi_gbl_gpe_lock);
856
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 /* Ensure that we have a valid GPE number */
858
Len Brown4be44fc2005-08-05 00:44:28 -0400859 gpe_event_info = acpi_ev_get_gpe_event_info(gpe_device, gpe_number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 if (!gpe_event_info) {
861 status = AE_BAD_PARAMETER;
862 goto unlock_and_exit;
863 }
864
865 /* Make sure that a handler is indeed installed */
866
Len Brown4be44fc2005-08-05 00:44:28 -0400867 if ((gpe_event_info->flags & ACPI_GPE_DISPATCH_MASK) !=
868 ACPI_GPE_DISPATCH_HANDLER) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 status = AE_NOT_EXIST;
870 goto unlock_and_exit;
871 }
872
873 /* Make sure that the installed handler is the same */
874
875 if (gpe_event_info->dispatch.handler->address != address) {
876 status = AE_BAD_PARAMETER;
877 goto unlock_and_exit;
878 }
879
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 /* Remove the handler */
881
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 handler = gpe_event_info->dispatch.handler;
883
884 /* Restore Method node (if any), set dispatch flags */
885
886 gpe_event_info->dispatch.method_node = handler->method_node;
Rafael J. Wysocki28f4f8a2010-08-03 23:55:14 +0200887 gpe_event_info->flags &=
888 ~(ACPI_GPE_XRUPT_TYPE_MASK | ACPI_GPE_DISPATCH_MASK);
Lin Ming3a378982010-12-13 13:36:15 +0800889 gpe_event_info->flags |= handler->original_flags;
Rafael J. Wysocki28f4f8a2010-08-03 23:55:14 +0200890
891 /*
Rafael J. Wysockia2100802010-09-16 00:30:43 +0200892 * If the GPE was previously associated with a method and it was
893 * enabled, it should be enabled at this point to restore the
894 * post-initialization configuration.
Rafael J. Wysocki28f4f8a2010-08-03 23:55:14 +0200895 */
896
Lin Ming3a378982010-12-13 13:36:15 +0800897 if ((handler->original_flags & ACPI_GPE_DISPATCH_METHOD)
898 && handler->originally_enabled)
899 (void)acpi_ev_add_gpe_reference(gpe_event_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900
901 /* Now we can free the handler object */
902
Bob Moore83135242006-10-03 00:00:00 -0400903 ACPI_FREE(handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904
Rafael J. Wysocki28f4f8a2010-08-03 23:55:14 +0200905unlock_and_exit:
906 acpi_os_release_lock(acpi_gbl_gpe_lock, flags);
907
Len Brown4be44fc2005-08-05 00:44:28 -0400908 (void)acpi_ut_release_mutex(ACPI_MTX_EVENTS);
909 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911
Bob Moore83135242006-10-03 00:00:00 -0400912ACPI_EXPORT_SYMBOL(acpi_remove_gpe_handler)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913
914/*******************************************************************************
915 *
916 * FUNCTION: acpi_acquire_global_lock
917 *
918 * PARAMETERS: Timeout - How long the caller is willing to wait
Robert Moore44f6c012005-04-18 22:49:35 -0400919 * Handle - Where the handle to the lock is returned
920 * (if acquired)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 *
922 * RETURN: Status
923 *
924 * DESCRIPTION: Acquire the ACPI Global Lock
925 *
Bob Mooreba886cd2008-04-10 19:06:37 +0400926 * Note: Allows callers with the same thread ID to acquire the global lock
927 * multiple times. In other words, externally, the behavior of the global lock
928 * is identical to an AML mutex. On the first acquire, a new handle is
929 * returned. On any subsequent calls to acquire by the same thread, the same
930 * handle is returned.
931 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 ******************************************************************************/
Len Brown4be44fc2005-08-05 00:44:28 -0400933acpi_status acpi_acquire_global_lock(u16 timeout, u32 * handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934{
Len Brown4be44fc2005-08-05 00:44:28 -0400935 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936
937 if (!handle) {
938 return (AE_BAD_PARAMETER);
939 }
940
Len Brown4d2acd92007-05-09 22:56:38 -0400941 /* Must lock interpreter to prevent race conditions */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942
Len Brown4d2acd92007-05-09 22:56:38 -0400943 acpi_ex_enter_interpreter();
Bob Mooreba886cd2008-04-10 19:06:37 +0400944
945 status = acpi_ex_acquire_mutex_object(timeout,
946 acpi_gbl_global_lock_mutex,
947 acpi_os_get_thread_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948
Len Brown4be44fc2005-08-05 00:44:28 -0400949 if (ACPI_SUCCESS(status)) {
Bob Mooreba886cd2008-04-10 19:06:37 +0400950
Bob Mooree5567af2008-04-10 19:06:38 +0400951 /* Return the global lock handle (updated in acpi_ev_acquire_global_lock) */
Bob Mooreba886cd2008-04-10 19:06:37 +0400952
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 *handle = acpi_gbl_global_lock_handle;
954 }
955
Bob Mooreba886cd2008-04-10 19:06:37 +0400956 acpi_ex_exit_interpreter();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 return (status);
958}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959
Bob Moore83135242006-10-03 00:00:00 -0400960ACPI_EXPORT_SYMBOL(acpi_acquire_global_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961
962/*******************************************************************************
963 *
964 * FUNCTION: acpi_release_global_lock
965 *
966 * PARAMETERS: Handle - Returned from acpi_acquire_global_lock
967 *
968 * RETURN: Status
969 *
Robert Moore44f6c012005-04-18 22:49:35 -0400970 * DESCRIPTION: Release the ACPI Global Lock. The handle must be valid.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 *
972 ******************************************************************************/
Len Brown4be44fc2005-08-05 00:44:28 -0400973acpi_status acpi_release_global_lock(u32 handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974{
Len Brown4be44fc2005-08-05 00:44:28 -0400975 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976
Bob Mooref02e9fa2008-04-10 19:06:37 +0400977 if (!handle || (handle != acpi_gbl_global_lock_handle)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 return (AE_NOT_ACQUIRED);
979 }
980
Bob Mooreba886cd2008-04-10 19:06:37 +0400981 status = acpi_ex_release_mutex_object(acpi_gbl_global_lock_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 return (status);
983}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984
Bob Moore83135242006-10-03 00:00:00 -0400985ACPI_EXPORT_SYMBOL(acpi_release_global_lock)