Linux Audio

Check our new training course

Yocto distribution development and maintenance

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