ACPICA: Clarify ACPI_FREE_BUFFER usage.
[deliverable/linux.git] / drivers / acpi / acpica / evxface.c
CommitLineData
1da177e4
LT
1/******************************************************************************
2 *
3 * Module Name: evxface - External interfaces for ACPI events
4 *
5 *****************************************************************************/
6
7/*
25f044e6 8 * Copyright (C) 2000 - 2013, Intel Corp.
1da177e4
LT
9 * 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
839e928f
LZ
44#define EXPORT_ACPI_INTERFACES
45
1da177e4 46#include <acpi/acpi.h>
e2f7a777
LB
47#include "accommon.h"
48#include "acnamesp.h"
49#include "acevents.h"
50#include "acinterp.h"
1da177e4
LT
51
52#define _COMPONENT ACPI_EVENTS
4be44fcd 53ACPI_MODULE_NAME("evxface")
1da177e4 54
1da177e4
LT
55
56/*******************************************************************************
57 *
58 * FUNCTION: acpi_install_notify_handler
59 *
75c8044f 60 * PARAMETERS: device - The device for which notifies will be handled
1da177e4 61 * handler_type - The type of handler:
86ed4bc8
BM
62 * ACPI_SYSTEM_NOTIFY: System Handler (00-7F)
63 * ACPI_DEVICE_NOTIFY: Device Handler (80-FF)
64 * ACPI_ALL_NOTIFY: Both System and Device
75c8044f
LZ
65 * handler - Address of the handler
66 * context - Value passed to the handler on each GPE
1da177e4
LT
67 *
68 * RETURN: Status
69 *
86ed4bc8
BM
70 * 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.
1da177e4
LT
77 *
78 ******************************************************************************/
1da177e4 79acpi_status
4be44fcd
LB
80acpi_install_notify_handler(acpi_handle device,
81 u32 handler_type,
82 acpi_notify_handler handler, void *context)
1da177e4 83{
86ed4bc8
BM
84 struct acpi_namespace_node *node =
85 ACPI_CAST_PTR(struct acpi_namespace_node, device);
4be44fcd 86 union acpi_operand_object *obj_desc;
86ed4bc8 87 union acpi_operand_object *handler_obj;
4be44fcd 88 acpi_status status;
86ed4bc8 89 u32 i;
1da177e4 90
b229cf92 91 ACPI_FUNCTION_TRACE(acpi_install_notify_handler);
1da177e4
LT
92
93 /* Parameter validation */
94
86ed4bc8
BM
95 if ((!device) || (!handler) || (!handler_type) ||
96 (handler_type > ACPI_MAX_NOTIFY_HANDLER_TYPE)) {
4be44fcd 97 return_ACPI_STATUS(AE_BAD_PARAMETER);
1da177e4
LT
98 }
99
4be44fcd
LB
100 status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE);
101 if (ACPI_FAILURE(status)) {
102 return_ACPI_STATUS(status);
1da177e4
LT
103 }
104
1da177e4
LT
105 /*
106 * Root Object:
107 * Registering a notify handler on the root object indicates that the
9f15fc66 108 * caller wishes to receive notifications for all objects. Note that
86ed4bc8
BM
109 * only one global handler can be registered per notify type.
110 * Ensure that a handler is not already installed.
1da177e4
LT
111 */
112 if (device == ACPI_ROOT_OBJECT) {
86ed4bc8
BM
113 for (i = 0; i < ACPI_NUM_NOTIFY_TYPES; i++) {
114 if (handler_type & (i + 1)) {
115 if (acpi_gbl_global_notify[i].handler) {
116 status = AE_ALREADY_EXISTS;
117 goto unlock_and_exit;
118 }
52fc0b02 119
86ed4bc8
BM
120 acpi_gbl_global_notify[i].handler = handler;
121 acpi_gbl_global_notify[i].context = context;
122 }
1da177e4
LT
123 }
124
86ed4bc8 125 goto unlock_and_exit; /* Global notify handler installed, all done */
1da177e4
LT
126 }
127
128 /*
129 * All Other Objects:
86ed4bc8
BM
130 * Caller will only receive notifications specific to the target
131 * object. Note that only certain object types are allowed to
132 * receive notifications.
1da177e4 133 */
1da177e4 134
86ed4bc8 135 /* Are Notifies allowed on this object? */
1da177e4 136
86ed4bc8
BM
137 if (!acpi_ev_is_notify_object(node)) {
138 status = AE_TYPE;
139 goto unlock_and_exit;
140 }
1da177e4 141
86ed4bc8 142 /* Check for an existing internal object, might not exist */
52fc0b02 143
86ed4bc8
BM
144 obj_desc = acpi_ns_get_attached_object(node);
145 if (!obj_desc) {
1da177e4 146
86ed4bc8
BM
147 /* Create a new object */
148
149 obj_desc = acpi_ut_create_internal_object(node->type);
150 if (!obj_desc) {
151 status = AE_NO_MEMORY;
152 goto unlock_and_exit;
153 }
3f0be671 154
86ed4bc8 155 /* Attach new object to the Node, remove local reference */
3f0be671 156
86ed4bc8
BM
157 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;
161 }
162 }
3f0be671 163
86ed4bc8
BM
164 /* 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) {
3f0be671
RW
171 status = AE_ALREADY_EXISTS;
172 goto unlock_and_exit;
173 }
174
86ed4bc8 175 handler_obj = handler_obj->notify.next[i];
1da177e4
LT
176 }
177 }
86ed4bc8 178 }
1da177e4 179
86ed4bc8 180 /* Create and populate a new notify handler object */
1da177e4 181
86ed4bc8
BM
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 }
1da177e4 187
86ed4bc8
BM
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;
1da177e4 192
86ed4bc8 193 /* Install the handler at the list head(s) */
1da177e4 194
86ed4bc8
BM
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];
1da177e4 199
86ed4bc8
BM
200 obj_desc->common_notify.notify_list[i] = handler_obj;
201 }
202 }
52fc0b02 203
86ed4bc8 204 /* Add an extra reference if handler was installed in both lists */
1da177e4 205
86ed4bc8
BM
206 if (handler_type == ACPI_ALL_NOTIFY) {
207 acpi_ut_add_reference(handler_obj);
1da177e4
LT
208 }
209
86ed4bc8 210unlock_and_exit:
4be44fcd
LB
211 (void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
212 return_ACPI_STATUS(status);
1da177e4 213}
1da177e4 214
8313524a 215ACPI_EXPORT_SYMBOL(acpi_install_notify_handler)
1da177e4
LT
216
217/*******************************************************************************
218 *
219 * FUNCTION: acpi_remove_notify_handler
220 *
75c8044f 221 * PARAMETERS: device - The device for which the handler is installed
1da177e4 222 * handler_type - The type of handler:
86ed4bc8
BM
223 * ACPI_SYSTEM_NOTIFY: System Handler (00-7F)
224 * ACPI_DEVICE_NOTIFY: Device Handler (80-FF)
225 * ACPI_ALL_NOTIFY: Both System and Device
75c8044f 226 * handler - Address of the handler
1da177e4
LT
227 *
228 * RETURN: Status
229 *
230 * DESCRIPTION: Remove a handler for notifies on an ACPI device
231 *
232 ******************************************************************************/
1da177e4 233acpi_status
4be44fcd
LB
234acpi_remove_notify_handler(acpi_handle device,
235 u32 handler_type, acpi_notify_handler handler)
1da177e4 236{
86ed4bc8
BM
237 struct acpi_namespace_node *node =
238 ACPI_CAST_PTR(struct acpi_namespace_node, device);
4be44fcd 239 union acpi_operand_object *obj_desc;
86ed4bc8
BM
240 union acpi_operand_object *handler_obj;
241 union acpi_operand_object *previous_handler_obj;
4be44fcd 242 acpi_status status;
86ed4bc8 243 u32 i;
1da177e4 244
b229cf92 245 ACPI_FUNCTION_TRACE(acpi_remove_notify_handler);
1da177e4
LT
246
247 /* Parameter validation */
248
86ed4bc8
BM
249 if ((!device) || (!handler) || (!handler_type) ||
250 (handler_type > ACPI_MAX_NOTIFY_HANDLER_TYPE)) {
251 return_ACPI_STATUS(AE_BAD_PARAMETER);
1da177e4 252 }
3e8214e5 253
75c8044f 254 /* Make sure all deferred notify tasks are completed */
86ed4bc8 255
bd6f10a5 256 acpi_os_wait_events_complete();
3f0be671 257
4be44fcd
LB
258 status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE);
259 if (ACPI_FAILURE(status)) {
86ed4bc8 260 return_ACPI_STATUS(status);
1da177e4
LT
261 }
262
86ed4bc8 263 /* Root Object. Global handlers are removed here */
1da177e4
LT
264
265 if (device == ACPI_ROOT_OBJECT) {
86ed4bc8
BM
266 for (i = 0; i < ACPI_NUM_NOTIFY_TYPES; i++) {
267 if (handler_type & (i + 1)) {
268 if (!acpi_gbl_global_notify[i].handler ||
269 (acpi_gbl_global_notify[i].handler !=
270 handler)) {
271 status = AE_NOT_EXIST;
272 goto unlock_and_exit;
273 }
1da177e4 274
86ed4bc8
BM
275 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
276 "Removing global notify handler\n"));
1da177e4 277
86ed4bc8
BM
278 acpi_gbl_global_notify[i].handler = NULL;
279 acpi_gbl_global_notify[i].context = NULL;
280 }
1da177e4 281 }
1da177e4 282
86ed4bc8
BM
283 goto unlock_and_exit;
284 }
1da177e4 285
86ed4bc8 286 /* All other objects: Are Notifies allowed on this object? */
1da177e4 287
86ed4bc8
BM
288 if (!acpi_ev_is_notify_object(node)) {
289 status = AE_TYPE;
290 goto unlock_and_exit;
291 }
1da177e4 292
86ed4bc8 293 /* Must have an existing internal object */
1da177e4 294
86ed4bc8
BM
295 obj_desc = acpi_ns_get_attached_object(node);
296 if (!obj_desc) {
297 status = AE_NOT_EXIST;
298 goto unlock_and_exit;
299 }
1da177e4 300
86ed4bc8 301 /* Internal object exists. Find the handler and remove it */
1da177e4 302
86ed4bc8
BM
303 for (i = 0; i < ACPI_NUM_NOTIFY_TYPES; i++) {
304 if (handler_type & (i + 1)) {
305 handler_obj = obj_desc->common_notify.notify_list[i];
306 previous_handler_obj = NULL;
3f0be671 307
86ed4bc8 308 /* Attempt to find the handler in the handler list */
f6dd9221 309
86ed4bc8
BM
310 while (handler_obj &&
311 (handler_obj->notify.handler != handler)) {
312 previous_handler_obj = handler_obj;
313 handler_obj = handler_obj->notify.next[i];
3f0be671
RW
314 }
315
86ed4bc8
BM
316 if (!handler_obj) {
317 status = AE_NOT_EXIST;
f6dd9221 318 goto unlock_and_exit;
1da177e4 319 }
1da177e4 320
86ed4bc8 321 /* Remove the handler object from the list */
1da177e4 322
86ed4bc8
BM
323 if (previous_handler_obj) { /* Handler is not at the list head */
324 previous_handler_obj->notify.next[i] =
325 handler_obj->notify.next[i];
326 } else { /* Handler is at the list head */
f6dd9221 327
86ed4bc8
BM
328 obj_desc->common_notify.notify_list[i] =
329 handler_obj->notify.next[i];
1da177e4 330 }
1da177e4 331
86ed4bc8 332 acpi_ut_remove_reference(handler_obj);
1da177e4
LT
333 }
334 }
335
86ed4bc8 336unlock_and_exit:
4be44fcd
LB
337 (void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
338 return_ACPI_STATUS(status);
1da177e4 339}
1da177e4 340
8313524a 341ACPI_EXPORT_SYMBOL(acpi_remove_notify_handler)
1da177e4 342
33620c54
BM
343/*******************************************************************************
344 *
345 * FUNCTION: acpi_install_exception_handler
346 *
ba494bee 347 * PARAMETERS: handler - Pointer to the handler function for the
33620c54
BM
348 * event
349 *
350 * RETURN: Status
351 *
352 * DESCRIPTION: Saves the pointer to the handler function
353 *
354 ******************************************************************************/
355#ifdef ACPI_FUTURE_USAGE
356acpi_status acpi_install_exception_handler(acpi_exception_handler handler)
357{
358 acpi_status status;
359
360 ACPI_FUNCTION_TRACE(acpi_install_exception_handler);
361
362 status = acpi_ut_acquire_mutex(ACPI_MTX_EVENTS);
363 if (ACPI_FAILURE(status)) {
364 return_ACPI_STATUS(status);
365 }
366
367 /* Don't allow two handlers. */
368
369 if (acpi_gbl_exception_handler) {
370 status = AE_ALREADY_EXISTS;
371 goto cleanup;
372 }
373
374 /* Install the handler */
375
376 acpi_gbl_exception_handler = handler;
377
378 cleanup:
379 (void)acpi_ut_release_mutex(ACPI_MTX_EVENTS);
380 return_ACPI_STATUS(status);
381}
382
383ACPI_EXPORT_SYMBOL(acpi_install_exception_handler)
384#endif /* ACPI_FUTURE_USAGE */
385
386#if (!ACPI_REDUCED_HARDWARE)
a2fd4b4b
LZ
387/*******************************************************************************
388 *
389 * FUNCTION: acpi_install_sci_handler
390 *
391 * PARAMETERS: address - Address of the handler
392 * context - Value passed to the handler on each SCI
393 *
394 * RETURN: Status
395 *
396 * DESCRIPTION: Install a handler for a System Control Interrupt.
397 *
398 ******************************************************************************/
399acpi_status acpi_install_sci_handler(acpi_sci_handler address, void *context)
400{
401 struct acpi_sci_handler_info *new_sci_handler;
402 struct acpi_sci_handler_info *sci_handler;
403 acpi_cpu_flags flags;
404 acpi_status status;
405
406 ACPI_FUNCTION_TRACE(acpi_install_sci_handler);
407
408 if (!address) {
409 return_ACPI_STATUS(AE_BAD_PARAMETER);
410 }
411
412 /* Allocate and init a handler object */
413
414 new_sci_handler = ACPI_ALLOCATE(sizeof(struct acpi_sci_handler_info));
415 if (!new_sci_handler) {
416 return_ACPI_STATUS(AE_NO_MEMORY);
417 }
418
419 new_sci_handler->address = address;
420 new_sci_handler->context = context;
421
422 status = acpi_ut_acquire_mutex(ACPI_MTX_EVENTS);
423 if (ACPI_FAILURE(status)) {
424 goto exit;
425 }
426
427 /* Lock list during installation */
428
429 flags = acpi_os_acquire_lock(acpi_gbl_gpe_lock);
430 sci_handler = acpi_gbl_sci_handler_list;
431
432 /* Ensure handler does not already exist */
433
434 while (sci_handler) {
435 if (address == sci_handler->address) {
436 status = AE_ALREADY_EXISTS;
437 goto unlock_and_exit;
438 }
439
440 sci_handler = sci_handler->next;
441 }
442
443 /* Install the new handler into the global list (at head) */
444
445 new_sci_handler->next = acpi_gbl_sci_handler_list;
446 acpi_gbl_sci_handler_list = new_sci_handler;
447
448 unlock_and_exit:
449
450 acpi_os_release_lock(acpi_gbl_gpe_lock, flags);
451 (void)acpi_ut_release_mutex(ACPI_MTX_EVENTS);
452
453 exit:
454 if (ACPI_FAILURE(status)) {
455 ACPI_FREE(new_sci_handler);
456 }
457 return_ACPI_STATUS(status);
458}
459
460/*******************************************************************************
461 *
462 * FUNCTION: acpi_remove_sci_handler
463 *
464 * PARAMETERS: address - Address of the handler
465 *
466 * RETURN: Status
467 *
468 * DESCRIPTION: Remove a handler for a System Control Interrupt.
469 *
470 ******************************************************************************/
471
472acpi_status acpi_remove_sci_handler(acpi_sci_handler address)
473{
474 struct acpi_sci_handler_info *prev_sci_handler;
475 struct acpi_sci_handler_info *next_sci_handler;
476 acpi_cpu_flags flags;
477 acpi_status status;
478
479 ACPI_FUNCTION_TRACE(acpi_remove_sci_handler);
480
481 if (!address) {
482 return_ACPI_STATUS(AE_BAD_PARAMETER);
483 }
484
485 status = acpi_ut_acquire_mutex(ACPI_MTX_EVENTS);
486 if (ACPI_FAILURE(status)) {
487 return_ACPI_STATUS(status);
488 }
489
490 /* Remove the SCI handler with lock */
491
492 flags = acpi_os_acquire_lock(acpi_gbl_gpe_lock);
493
494 prev_sci_handler = NULL;
495 next_sci_handler = acpi_gbl_sci_handler_list;
496 while (next_sci_handler) {
497 if (next_sci_handler->address == address) {
498
499 /* Unlink and free the SCI handler info block */
500
501 if (prev_sci_handler) {
502 prev_sci_handler->next = next_sci_handler->next;
503 } else {
504 acpi_gbl_sci_handler_list =
505 next_sci_handler->next;
506 }
507
508 acpi_os_release_lock(acpi_gbl_gpe_lock, flags);
509 ACPI_FREE(next_sci_handler);
510 goto unlock_and_exit;
511 }
512
513 prev_sci_handler = next_sci_handler;
514 next_sci_handler = next_sci_handler->next;
515 }
516
517 acpi_os_release_lock(acpi_gbl_gpe_lock, flags);
518 status = AE_NOT_EXIST;
519
520 unlock_and_exit:
521 (void)acpi_ut_release_mutex(ACPI_MTX_EVENTS);
522 return_ACPI_STATUS(status);
523}
524
33620c54
BM
525/*******************************************************************************
526 *
527 * FUNCTION: acpi_install_global_event_handler
528 *
ba494bee
BM
529 * PARAMETERS: handler - Pointer to the global event handler function
530 * context - Value passed to the handler on each event
33620c54
BM
531 *
532 * RETURN: Status
533 *
534 * DESCRIPTION: Saves the pointer to the handler function. The global handler
535 * is invoked upon each incoming GPE and Fixed Event. It is
536 * invoked at interrupt level at the time of the event dispatch.
537 * Can be used to update event counters, etc.
538 *
539 ******************************************************************************/
a2fd4b4b 540
33620c54 541acpi_status
644ef74e 542acpi_install_global_event_handler(acpi_gbl_event_handler handler, void *context)
33620c54
BM
543{
544 acpi_status status;
545
546 ACPI_FUNCTION_TRACE(acpi_install_global_event_handler);
547
548 /* Parameter validation */
549
550 if (!handler) {
551 return_ACPI_STATUS(AE_BAD_PARAMETER);
552 }
553
554 status = acpi_ut_acquire_mutex(ACPI_MTX_EVENTS);
555 if (ACPI_FAILURE(status)) {
556 return_ACPI_STATUS(status);
557 }
558
559 /* Don't allow two handlers. */
560
561 if (acpi_gbl_global_event_handler) {
562 status = AE_ALREADY_EXISTS;
563 goto cleanup;
564 }
565
566 acpi_gbl_global_event_handler = handler;
567 acpi_gbl_global_event_handler_context = context;
568
569 cleanup:
570 (void)acpi_ut_release_mutex(ACPI_MTX_EVENTS);
571 return_ACPI_STATUS(status);
572}
573
574ACPI_EXPORT_SYMBOL(acpi_install_global_event_handler)
575
576/*******************************************************************************
577 *
578 * FUNCTION: acpi_install_fixed_event_handler
579 *
ba494bee
BM
580 * PARAMETERS: event - Event type to enable.
581 * handler - Pointer to the handler function for the
33620c54 582 * event
ba494bee 583 * context - Value passed to the handler on each GPE
33620c54
BM
584 *
585 * RETURN: Status
586 *
587 * DESCRIPTION: Saves the pointer to the handler function and then enables the
588 * event.
589 *
590 ******************************************************************************/
591acpi_status
592acpi_install_fixed_event_handler(u32 event,
593 acpi_event_handler handler, void *context)
594{
595 acpi_status status;
596
597 ACPI_FUNCTION_TRACE(acpi_install_fixed_event_handler);
598
599 /* Parameter validation */
600
601 if (event > ACPI_EVENT_MAX) {
602 return_ACPI_STATUS(AE_BAD_PARAMETER);
603 }
604
605 status = acpi_ut_acquire_mutex(ACPI_MTX_EVENTS);
606 if (ACPI_FAILURE(status)) {
607 return_ACPI_STATUS(status);
608 }
609
d4d32195 610 /* Do not allow multiple handlers */
33620c54 611
d4d32195 612 if (acpi_gbl_fixed_event_handlers[event].handler) {
33620c54
BM
613 status = AE_ALREADY_EXISTS;
614 goto cleanup;
615 }
616
617 /* Install the handler before enabling the event */
618
619 acpi_gbl_fixed_event_handlers[event].handler = handler;
620 acpi_gbl_fixed_event_handlers[event].context = context;
621
622 status = acpi_clear_event(event);
623 if (ACPI_SUCCESS(status))
624 status = acpi_enable_event(event, 0);
625 if (ACPI_FAILURE(status)) {
d4d32195
BM
626 ACPI_WARNING((AE_INFO,
627 "Could not enable fixed event - %s (%u)",
628 acpi_ut_get_event_name(event), event));
33620c54
BM
629
630 /* Remove the handler */
631
632 acpi_gbl_fixed_event_handlers[event].handler = NULL;
633 acpi_gbl_fixed_event_handlers[event].context = NULL;
634 } else {
635 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
d4d32195
BM
636 "Enabled fixed event %s (%X), Handler=%p\n",
637 acpi_ut_get_event_name(event), event,
33620c54
BM
638 handler));
639 }
640
641 cleanup:
642 (void)acpi_ut_release_mutex(ACPI_MTX_EVENTS);
643 return_ACPI_STATUS(status);
644}
645
646ACPI_EXPORT_SYMBOL(acpi_install_fixed_event_handler)
647
648/*******************************************************************************
649 *
650 * FUNCTION: acpi_remove_fixed_event_handler
651 *
ba494bee
BM
652 * PARAMETERS: event - Event type to disable.
653 * handler - Address of the handler
33620c54
BM
654 *
655 * RETURN: Status
656 *
657 * DESCRIPTION: Disables the event and unregisters the event handler.
658 *
659 ******************************************************************************/
660acpi_status
661acpi_remove_fixed_event_handler(u32 event, acpi_event_handler handler)
662{
663 acpi_status status = AE_OK;
664
665 ACPI_FUNCTION_TRACE(acpi_remove_fixed_event_handler);
666
667 /* Parameter validation */
668
669 if (event > ACPI_EVENT_MAX) {
670 return_ACPI_STATUS(AE_BAD_PARAMETER);
671 }
672
673 status = acpi_ut_acquire_mutex(ACPI_MTX_EVENTS);
674 if (ACPI_FAILURE(status)) {
675 return_ACPI_STATUS(status);
676 }
677
678 /* Disable the event before removing the handler */
679
680 status = acpi_disable_event(event, 0);
681
682 /* Always Remove the handler */
683
684 acpi_gbl_fixed_event_handlers[event].handler = NULL;
685 acpi_gbl_fixed_event_handlers[event].context = NULL;
686
687 if (ACPI_FAILURE(status)) {
688 ACPI_WARNING((AE_INFO,
d4d32195
BM
689 "Could not disable fixed event - %s (%u)",
690 acpi_ut_get_event_name(event), event));
33620c54 691 } else {
d4d32195
BM
692 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
693 "Disabled fixed event - %s (%X)\n",
694 acpi_ut_get_event_name(event), event));
33620c54
BM
695 }
696
697 (void)acpi_ut_release_mutex(ACPI_MTX_EVENTS);
698 return_ACPI_STATUS(status);
699}
700
701ACPI_EXPORT_SYMBOL(acpi_remove_fixed_event_handler)
702
1da177e4
LT
703/*******************************************************************************
704 *
705 * FUNCTION: acpi_install_gpe_handler
706 *
44f6c012
RM
707 * PARAMETERS: gpe_device - Namespace node for the GPE (NULL for FADT
708 * defined GPEs)
709 * gpe_number - The GPE number within the GPE block
ba494bee 710 * type - Whether this GPE should be treated as an
1da177e4 711 * edge- or level-triggered interrupt.
ba494bee
BM
712 * address - Address of the handler
713 * context - Value passed to the handler on each GPE
1da177e4
LT
714 *
715 * RETURN: Status
716 *
717 * DESCRIPTION: Install a handler for a General Purpose Event.
718 *
719 ******************************************************************************/
1da177e4 720acpi_status
4be44fcd
LB
721acpi_install_gpe_handler(acpi_handle gpe_device,
722 u32 gpe_number,
8b6cd8ad 723 u32 type, acpi_gpe_handler address, void *context)
1da177e4 724{
4be44fcd 725 struct acpi_gpe_event_info *gpe_event_info;
8b6cd8ad 726 struct acpi_gpe_handler_info *handler;
4be44fcd 727 acpi_status status;
b8e4d893 728 acpi_cpu_flags flags;
1da177e4 729
b229cf92 730 ACPI_FUNCTION_TRACE(acpi_install_gpe_handler);
1da177e4
LT
731
732 /* Parameter validation */
733
0f849d2c
LM
734 if ((!address) || (type & ~ACPI_GPE_XRUPT_TYPE_MASK)) {
735 return_ACPI_STATUS(AE_BAD_PARAMETER);
1da177e4
LT
736 }
737
4be44fcd
LB
738 status = acpi_ut_acquire_mutex(ACPI_MTX_EVENTS);
739 if (ACPI_FAILURE(status)) {
0f849d2c 740 return_ACPI_STATUS(status);
1da177e4
LT
741 }
742
75c8044f 743 /* Allocate and init handler object (before lock) */
28f4f8a9 744
8b6cd8ad 745 handler = ACPI_ALLOCATE_ZEROED(sizeof(struct acpi_gpe_handler_info));
28f4f8a9
RW
746 if (!handler) {
747 status = AE_NO_MEMORY;
748 goto unlock_and_exit;
749 }
750
751 flags = acpi_os_acquire_lock(acpi_gbl_gpe_lock);
752
1da177e4
LT
753 /* Ensure that we have a valid GPE number */
754
4be44fcd 755 gpe_event_info = acpi_ev_get_gpe_event_info(gpe_device, gpe_number);
1da177e4
LT
756 if (!gpe_event_info) {
757 status = AE_BAD_PARAMETER;
28f4f8a9 758 goto free_and_exit;
1da177e4
LT
759 }
760
761 /* Make sure that there isn't a handler there already */
762
4be44fcd
LB
763 if ((gpe_event_info->flags & ACPI_GPE_DISPATCH_MASK) ==
764 ACPI_GPE_DISPATCH_HANDLER) {
1da177e4 765 status = AE_ALREADY_EXISTS;
28f4f8a9 766 goto free_and_exit;
1da177e4
LT
767 }
768
4be44fcd
LB
769 handler->address = address;
770 handler->context = context;
1da177e4 771 handler->method_node = gpe_event_info->dispatch.method_node;
3e8214e5
LZ
772 handler->original_flags = (u8)(gpe_event_info->flags &
773 (ACPI_GPE_XRUPT_TYPE_MASK |
774 ACPI_GPE_DISPATCH_MASK));
28f4f8a9
RW
775
776 /*
75c8044f 777 * If the GPE is associated with a method, it may have been enabled
a2100801
RW
778 * automatically during initialization, in which case it has to be
779 * disabled now to avoid spurious execution of the handler.
28f4f8a9
RW
780 */
781
3a37898d 782 if ((handler->original_flags & ACPI_GPE_DISPATCH_METHOD)
a2100801 783 && gpe_event_info->runtime_count) {
3a37898d
LM
784 handler->originally_enabled = 1;
785 (void)acpi_ev_remove_gpe_reference(gpe_event_info);
a2100801 786 }
1da177e4 787
1da177e4
LT
788 /* Install the handler */
789
1da177e4
LT
790 gpe_event_info->dispatch.handler = handler;
791
75c8044f 792 /* Setup up dispatch flags to indicate handler (vs. method/notify) */
1da177e4 793
d4913dc6
BM
794 gpe_event_info->flags &=
795 ~(ACPI_GPE_XRUPT_TYPE_MASK | ACPI_GPE_DISPATCH_MASK);
1da177e4
LT
796 gpe_event_info->flags |= (u8) (type | ACPI_GPE_DISPATCH_HANDLER);
797
4be44fcd 798 acpi_os_release_lock(acpi_gbl_gpe_lock, flags);
1da177e4 799
0f849d2c 800unlock_and_exit:
4be44fcd
LB
801 (void)acpi_ut_release_mutex(ACPI_MTX_EVENTS);
802 return_ACPI_STATUS(status);
28f4f8a9
RW
803
804free_and_exit:
805 acpi_os_release_lock(acpi_gbl_gpe_lock, flags);
806 ACPI_FREE(handler);
807 goto unlock_and_exit;
1da177e4 808}
1da177e4 809
8313524a 810ACPI_EXPORT_SYMBOL(acpi_install_gpe_handler)
1da177e4
LT
811
812/*******************************************************************************
813 *
814 * FUNCTION: acpi_remove_gpe_handler
815 *
44f6c012
RM
816 * PARAMETERS: gpe_device - Namespace node for the GPE (NULL for FADT
817 * defined GPEs)
818 * gpe_number - The event to remove a handler
ba494bee 819 * address - Address of the handler
1da177e4
LT
820 *
821 * RETURN: Status
822 *
823 * DESCRIPTION: Remove a handler for a General Purpose acpi_event.
824 *
825 ******************************************************************************/
1da177e4 826acpi_status
4be44fcd 827acpi_remove_gpe_handler(acpi_handle gpe_device,
8b6cd8ad 828 u32 gpe_number, acpi_gpe_handler address)
1da177e4 829{
4be44fcd 830 struct acpi_gpe_event_info *gpe_event_info;
8b6cd8ad 831 struct acpi_gpe_handler_info *handler;
4be44fcd 832 acpi_status status;
b8e4d893 833 acpi_cpu_flags flags;
1da177e4 834
b229cf92 835 ACPI_FUNCTION_TRACE(acpi_remove_gpe_handler);
1da177e4
LT
836
837 /* Parameter validation */
838
839 if (!address) {
4be44fcd 840 return_ACPI_STATUS(AE_BAD_PARAMETER);
1da177e4
LT
841 }
842
75c8044f 843 /* Make sure all deferred GPE tasks are completed */
28f4f8a9 844
bd6f10a5 845 acpi_os_wait_events_complete();
28f4f8a9 846
4be44fcd
LB
847 status = acpi_ut_acquire_mutex(ACPI_MTX_EVENTS);
848 if (ACPI_FAILURE(status)) {
849 return_ACPI_STATUS(status);
1da177e4
LT
850 }
851
28f4f8a9
RW
852 flags = acpi_os_acquire_lock(acpi_gbl_gpe_lock);
853
1da177e4
LT
854 /* Ensure that we have a valid GPE number */
855
4be44fcd 856 gpe_event_info = acpi_ev_get_gpe_event_info(gpe_device, gpe_number);
1da177e4
LT
857 if (!gpe_event_info) {
858 status = AE_BAD_PARAMETER;
859 goto unlock_and_exit;
860 }
861
862 /* Make sure that a handler is indeed installed */
863
4be44fcd
LB
864 if ((gpe_event_info->flags & ACPI_GPE_DISPATCH_MASK) !=
865 ACPI_GPE_DISPATCH_HANDLER) {
1da177e4
LT
866 status = AE_NOT_EXIST;
867 goto unlock_and_exit;
868 }
869
870 /* Make sure that the installed handler is the same */
871
872 if (gpe_event_info->dispatch.handler->address != address) {
873 status = AE_BAD_PARAMETER;
874 goto unlock_and_exit;
875 }
876
1da177e4
LT
877 /* Remove the handler */
878
1da177e4
LT
879 handler = gpe_event_info->dispatch.handler;
880
881 /* Restore Method node (if any), set dispatch flags */
882
883 gpe_event_info->dispatch.method_node = handler->method_node;
28f4f8a9
RW
884 gpe_event_info->flags &=
885 ~(ACPI_GPE_XRUPT_TYPE_MASK | ACPI_GPE_DISPATCH_MASK);
3a37898d 886 gpe_event_info->flags |= handler->original_flags;
28f4f8a9
RW
887
888 /*
a2100801
RW
889 * If the GPE was previously associated with a method and it was
890 * enabled, it should be enabled at this point to restore the
891 * post-initialization configuration.
28f4f8a9 892 */
3e8214e5
LZ
893 if ((handler->original_flags & ACPI_GPE_DISPATCH_METHOD) &&
894 handler->originally_enabled) {
3a37898d 895 (void)acpi_ev_add_gpe_reference(gpe_event_info);
3e8214e5 896 }
1da177e4
LT
897
898 /* Now we can free the handler object */
899
8313524a 900 ACPI_FREE(handler);
1da177e4 901
28f4f8a9
RW
902unlock_and_exit:
903 acpi_os_release_lock(acpi_gbl_gpe_lock, flags);
904
4be44fcd
LB
905 (void)acpi_ut_release_mutex(ACPI_MTX_EVENTS);
906 return_ACPI_STATUS(status);
1da177e4 907}
1da177e4 908
8313524a 909ACPI_EXPORT_SYMBOL(acpi_remove_gpe_handler)
1da177e4
LT
910
911/*******************************************************************************
912 *
913 * FUNCTION: acpi_acquire_global_lock
914 *
ba494bee
BM
915 * PARAMETERS: timeout - How long the caller is willing to wait
916 * handle - Where the handle to the lock is returned
44f6c012 917 * (if acquired)
1da177e4
LT
918 *
919 * RETURN: Status
920 *
921 * DESCRIPTION: Acquire the ACPI Global Lock
922 *
ba886cd4
BM
923 * Note: Allows callers with the same thread ID to acquire the global lock
924 * multiple times. In other words, externally, the behavior of the global lock
925 * is identical to an AML mutex. On the first acquire, a new handle is
926 * returned. On any subsequent calls to acquire by the same thread, the same
927 * handle is returned.
928 *
1da177e4 929 ******************************************************************************/
4be44fcd 930acpi_status acpi_acquire_global_lock(u16 timeout, u32 * handle)
1da177e4 931{
4be44fcd 932 acpi_status status;
1da177e4
LT
933
934 if (!handle) {
935 return (AE_BAD_PARAMETER);
936 }
937
4d2acd9e 938 /* Must lock interpreter to prevent race conditions */
1da177e4 939
4d2acd9e 940 acpi_ex_enter_interpreter();
ba886cd4
BM
941
942 status = acpi_ex_acquire_mutex_object(timeout,
943 acpi_gbl_global_lock_mutex,
944 acpi_os_get_thread_id());
1da177e4 945
4be44fcd 946 if (ACPI_SUCCESS(status)) {
ba886cd4 947
e5567afa 948 /* Return the global lock handle (updated in acpi_ev_acquire_global_lock) */
ba886cd4 949
1da177e4
LT
950 *handle = acpi_gbl_global_lock_handle;
951 }
952
ba886cd4 953 acpi_ex_exit_interpreter();
1da177e4
LT
954 return (status);
955}
1da177e4 956
8313524a 957ACPI_EXPORT_SYMBOL(acpi_acquire_global_lock)
1da177e4
LT
958
959/*******************************************************************************
960 *
961 * FUNCTION: acpi_release_global_lock
962 *
ba494bee 963 * PARAMETERS: handle - Returned from acpi_acquire_global_lock
1da177e4
LT
964 *
965 * RETURN: Status
966 *
44f6c012 967 * DESCRIPTION: Release the ACPI Global Lock. The handle must be valid.
1da177e4
LT
968 *
969 ******************************************************************************/
4be44fcd 970acpi_status acpi_release_global_lock(u32 handle)
1da177e4 971{
4be44fcd 972 acpi_status status;
1da177e4 973
f02e9fa1 974 if (!handle || (handle != acpi_gbl_global_lock_handle)) {
1da177e4
LT
975 return (AE_NOT_ACQUIRED);
976 }
977
ba886cd4 978 status = acpi_ex_release_mutex_object(acpi_gbl_global_lock_mutex);
1da177e4
LT
979 return (status);
980}
1da177e4 981
8313524a 982ACPI_EXPORT_SYMBOL(acpi_release_global_lock)
33620c54 983#endif /* !ACPI_REDUCED_HARDWARE */
This page took 0.914729 seconds and 5 git commands to generate.