1 /******************************************************************************
3 * Module Name: evmisc - Miscellaneous event manager support functions
6 *****************************************************************************/
8 /******************************************************************************
12 * Some or all of this work - Copyright (c) 1999 - 2006, Intel Corp.
13 * All rights reserved.
17 * 2.1. This is your license from Intel Corp. under its intellectual property
18 * rights. You may have additional license terms from the party that provided
19 * you this software, covering your right to use that party's intellectual
22 * 2.2. Intel grants, free of charge, to any person ("Licensee") obtaining a
23 * copy of the source code appearing in this file ("Covered Code") an
24 * irrevocable, perpetual, worldwide license under Intel's copyrights in the
25 * base code distributed originally by Intel ("Original Intel Code") to copy,
26 * make derivatives, distribute, use and display any portion of the Covered
27 * Code in any form, with the right to sublicense such rights; and
29 * 2.3. Intel grants Licensee a non-exclusive and non-transferable patent
30 * license (with the right to sublicense), under only those claims of Intel
31 * patents that are infringed by the Original Intel Code, to make, use, sell,
32 * offer to sell, and import the Covered Code and derivative works thereof
33 * solely to the minimum extent necessary to exercise the above copyright
34 * license, and in no event shall the patent license extend to any additions
35 * to or modifications of the Original Intel Code. No other license or right
36 * is granted directly or by implication, estoppel or otherwise;
38 * The above copyright and patent license is granted only if the following
43 * 3.1. Redistribution of Source with Rights to Further Distribute Source.
44 * Redistribution of source code of any substantial portion of the Covered
45 * Code or modification with rights to further distribute source must include
46 * the above Copyright Notice, the above License, this list of Conditions,
47 * and the following Disclaimer and Export Compliance provision. In addition,
48 * Licensee must cause all Covered Code to which Licensee contributes to
49 * contain a file documenting the changes Licensee made to create that Covered
50 * Code and the date of any change. Licensee must include in that file the
51 * documentation of any changes made by any predecessor Licensee. Licensee
52 * must include a prominent statement that the modification is derived,
53 * directly or indirectly, from Original Intel Code.
55 * 3.2. Redistribution of Source with no Rights to Further Distribute Source.
56 * Redistribution of source code of any substantial portion of the Covered
57 * Code or modification without rights to further distribute source must
58 * include the following Disclaimer and Export Compliance provision in the
59 * documentation and/or other materials provided with distribution. In
60 * addition, Licensee may not authorize further sublicense of source of any
61 * portion of the Covered Code, and must include terms to the effect that the
62 * license from Licensee to its licensee is limited to the intellectual
63 * property embodied in the software Licensee provides to its licensee, and
64 * not to intellectual property embodied in modifications its licensee may
67 * 3.3. Redistribution of Executable. Redistribution in executable form of any
68 * substantial portion of the Covered Code or modification must reproduce the
69 * above Copyright Notice, and the following Disclaimer and Export Compliance
70 * provision in the documentation and/or other materials provided with the
73 * 3.4. Intel retains all right, title, and interest in and to the Original
76 * 3.5. Neither the name Intel nor any other trademark owned or controlled by
77 * Intel shall be used in advertising or otherwise to promote the sale, use or
78 * other dealings in products derived from or relating to the Covered Code
79 * without prior written authorization from Intel.
81 * 4. Disclaimer and Export Compliance
83 * 4.1. INTEL MAKES NO WARRANTY OF ANY KIND REGARDING ANY SOFTWARE PROVIDED
84 * HERE. ANY SOFTWARE ORIGINATING FROM INTEL OR DERIVED FROM INTEL SOFTWARE
85 * IS PROVIDED "AS IS," AND INTEL WILL NOT PROVIDE ANY SUPPORT, ASSISTANCE,
86 * INSTALLATION, TRAINING OR OTHER SERVICES. INTEL WILL NOT PROVIDE ANY
87 * UPDATES, ENHANCEMENTS OR EXTENSIONS. INTEL SPECIFICALLY DISCLAIMS ANY
88 * IMPLIED WARRANTIES OF MERCHANTABILITY, NONINFRINGEMENT AND FITNESS FOR A
91 * 4.2. IN NO EVENT SHALL INTEL HAVE ANY LIABILITY TO LICENSEE, ITS LICENSEES
92 * OR ANY OTHER THIRD PARTY, FOR ANY LOST PROFITS, LOST DATA, LOSS OF USE OR
93 * COSTS OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, OR FOR ANY INDIRECT,
94 * SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THIS AGREEMENT, UNDER ANY
95 * CAUSE OF ACTION OR THEORY OF LIABILITY, AND IRRESPECTIVE OF WHETHER INTEL
96 * HAS ADVANCE NOTICE OF THE POSSIBILITY OF SUCH DAMAGES. THESE LIMITATIONS
97 * SHALL APPLY NOTWITHSTANDING THE FAILURE OF THE ESSENTIAL PURPOSE OF ANY
100 * 4.3. Licensee shall not export, either directly or indirectly, any of this
101 * software or system incorporating such software without first obtaining any
102 * required license or other approval from the U. S. Department of Commerce or
103 * any other agency or department of the United States Government. In the
104 * event Licensee exports any such software from the United States or
105 * re-exports any such software from a foreign destination, Licensee shall
106 * ensure that the distribution and export/re-export of the software is in
107 * compliance with all laws, regulations, orders, or other restrictions of the
108 * U.S. Export Administration Regulations. Licensee agrees that neither it nor
109 * any of its subsidiaries will export/re-export any technical data, process,
110 * software, or service, directly or indirectly, to any country for which the
111 * United States government or any agency thereof requires an export license,
112 * other governmental approval, or letter of assurance, without first obtaining
113 * such license, approval or letter.
115 *****************************************************************************/
118 #include "acevents.h"
119 #include "acnamesp.h"
120 #include "acinterp.h"
122 #define _COMPONENT ACPI_EVENTS
123 ACPI_MODULE_NAME ("evmisc")
126 /* Names for Notify() values, used for debug output */
128 #ifdef ACPI_DEBUG_OUTPUT
129 static const char *AcpiNotifyValueNames
[] =
135 "Device Check Light",
136 "Frequency Mismatch",
142 /* Pointer to FACS needed for the Global Lock */
144 static ACPI_TABLE_FACS
*Facs
= NULL
;
146 /* Local prototypes */
148 static void ACPI_SYSTEM_XFACE
149 AcpiEvNotifyDispatch (
153 AcpiEvGlobalLockHandler (
157 /*******************************************************************************
159 * FUNCTION: AcpiEvIsNotifyObject
161 * PARAMETERS: Node - Node to check
163 * RETURN: TRUE if notifies allowed on this object
165 * DESCRIPTION: Check type of node for a object that supports notifies.
167 * TBD: This could be replaced by a flag bit in the node.
169 ******************************************************************************/
172 AcpiEvIsNotifyObject (
173 ACPI_NAMESPACE_NODE
*Node
)
177 case ACPI_TYPE_DEVICE
:
178 case ACPI_TYPE_PROCESSOR
:
179 case ACPI_TYPE_POWER
:
180 case ACPI_TYPE_THERMAL
:
182 * These are the ONLY objects that can receive ACPI notifications
192 /*******************************************************************************
194 * FUNCTION: AcpiEvQueueNotifyRequest
196 * PARAMETERS: Node - NS node for the notified object
197 * NotifyValue - Value from the Notify() request
201 * DESCRIPTION: Dispatch a device notification event to a previously
204 ******************************************************************************/
207 AcpiEvQueueNotifyRequest (
208 ACPI_NAMESPACE_NODE
*Node
,
211 ACPI_OPERAND_OBJECT
*ObjDesc
;
212 ACPI_OPERAND_OBJECT
*HandlerObj
= NULL
;
213 ACPI_GENERIC_STATE
*NotifyInfo
;
214 ACPI_STATUS Status
= AE_OK
;
217 ACPI_FUNCTION_NAME (EvQueueNotifyRequest
);
221 * For value 3 (Ejection Request), some device method may need to be run.
222 * For value 2 (Device Wake) if _PRW exists, the _PS0 method may need
224 * For value 0x80 (Status Change) on the power button or sleep button,
225 * initiate soft-off or sleep operation?
227 ACPI_DEBUG_PRINT ((ACPI_DB_INFO
,
228 "Dispatching Notify(%X) on node %p\n", NotifyValue
, Node
));
230 if (NotifyValue
<= 7)
232 ACPI_DEBUG_PRINT ((ACPI_DB_INFO
, "Notify value: %s\n",
233 AcpiNotifyValueNames
[NotifyValue
]));
237 ACPI_DEBUG_PRINT ((ACPI_DB_INFO
,
238 "Notify value: 0x%2.2X **Device Specific**\n",
242 /* Get the notify object attached to the NS Node */
244 ObjDesc
= AcpiNsGetAttachedObject (Node
);
247 /* We have the notify object, Get the right handler */
251 case ACPI_TYPE_DEVICE
:
252 case ACPI_TYPE_THERMAL
:
253 case ACPI_TYPE_PROCESSOR
:
254 case ACPI_TYPE_POWER
:
256 if (NotifyValue
<= ACPI_MAX_SYS_NOTIFY
)
258 HandlerObj
= ObjDesc
->CommonNotify
.SystemNotify
;
262 HandlerObj
= ObjDesc
->CommonNotify
.DeviceNotify
;
267 /* All other types are not supported */
272 /* If there is any handler to run, schedule the dispatcher */
274 if ((AcpiGbl_SystemNotify
.Handler
&& (NotifyValue
<= ACPI_MAX_SYS_NOTIFY
)) ||
275 (AcpiGbl_DeviceNotify
.Handler
&& (NotifyValue
> ACPI_MAX_SYS_NOTIFY
)) ||
278 NotifyInfo
= AcpiUtCreateGenericState ();
281 return (AE_NO_MEMORY
);
284 NotifyInfo
->Common
.DescriptorType
= ACPI_DESC_TYPE_STATE_NOTIFY
;
285 NotifyInfo
->Notify
.Node
= Node
;
286 NotifyInfo
->Notify
.Value
= (UINT16
) NotifyValue
;
287 NotifyInfo
->Notify
.HandlerObj
= HandlerObj
;
289 Status
= AcpiOsExecute (
290 OSL_NOTIFY_HANDLER
, AcpiEvNotifyDispatch
, NotifyInfo
);
291 if (ACPI_FAILURE (Status
))
293 AcpiUtDeleteGenericState (NotifyInfo
);
300 * There is no per-device notify handler for this device.
301 * This may or may not be a problem.
303 ACPI_DEBUG_PRINT ((ACPI_DB_INFO
,
304 "No notify handler for Notify(%4.4s, %X) node %p\n",
305 AcpiUtGetNodeName (Node
), NotifyValue
, Node
));
312 /*******************************************************************************
314 * FUNCTION: AcpiEvNotifyDispatch
316 * PARAMETERS: Context - To be passed to the notify handler
320 * DESCRIPTION: Dispatch a device notification event to a previously
323 ******************************************************************************/
325 static void ACPI_SYSTEM_XFACE
326 AcpiEvNotifyDispatch (
329 ACPI_GENERIC_STATE
*NotifyInfo
= (ACPI_GENERIC_STATE
*) Context
;
330 ACPI_NOTIFY_HANDLER GlobalHandler
= NULL
;
331 void *GlobalContext
= NULL
;
332 ACPI_OPERAND_OBJECT
*HandlerObj
;
335 ACPI_FUNCTION_ENTRY ();
339 * We will invoke a global notify handler if installed.
340 * This is done _before_ we invoke the per-device handler attached
343 if (NotifyInfo
->Notify
.Value
<= ACPI_MAX_SYS_NOTIFY
)
345 /* Global system notification handler */
347 if (AcpiGbl_SystemNotify
.Handler
)
349 GlobalHandler
= AcpiGbl_SystemNotify
.Handler
;
350 GlobalContext
= AcpiGbl_SystemNotify
.Context
;
355 /* Global driver notification handler */
357 if (AcpiGbl_DeviceNotify
.Handler
)
359 GlobalHandler
= AcpiGbl_DeviceNotify
.Handler
;
360 GlobalContext
= AcpiGbl_DeviceNotify
.Context
;
364 /* Invoke the system handler first, if present */
368 GlobalHandler (NotifyInfo
->Notify
.Node
, NotifyInfo
->Notify
.Value
,
372 /* Now invoke the per-device handler, if present */
374 HandlerObj
= NotifyInfo
->Notify
.HandlerObj
;
377 HandlerObj
->Notify
.Handler (NotifyInfo
->Notify
.Node
,
378 NotifyInfo
->Notify
.Value
,
379 HandlerObj
->Notify
.Context
);
382 /* All done with the info object */
384 AcpiUtDeleteGenericState (NotifyInfo
);
388 /*******************************************************************************
390 * FUNCTION: AcpiEvGlobalLockHandler
392 * PARAMETERS: Context - From thread interface, not used
394 * RETURN: ACPI_INTERRUPT_HANDLED
396 * DESCRIPTION: Invoked directly from the SCI handler when a global lock
397 * release interrupt occurs. Attempt to acquire the global lock,
398 * if successful, signal the thread waiting for the lock.
400 * NOTE: Assumes that the semaphore can be signaled from interrupt level. If
401 * this is not possible for some reason, a separate thread will have to be
402 * scheduled to do this.
404 ******************************************************************************/
407 AcpiEvGlobalLockHandler (
410 BOOLEAN Acquired
= FALSE
;
415 * Attempt to get the lock.
417 * If we don't get it now, it will be marked pending and we will
418 * take another interrupt when it becomes free.
420 ACPI_ACQUIRE_GLOBAL_LOCK (Facs
, Acquired
);
423 /* Got the lock, now wake the thread waiting for it */
425 AcpiGbl_GlobalLockAcquired
= TRUE
;
427 /* Send a unit to the semaphore */
429 Status
= AcpiOsSignalSemaphore (AcpiGbl_GlobalLockSemaphore
, 1);
430 if (ACPI_FAILURE (Status
))
432 ACPI_ERROR ((AE_INFO
, "Could not signal Global Lock semaphore"));
436 return (ACPI_INTERRUPT_HANDLED
);
440 /*******************************************************************************
442 * FUNCTION: AcpiEvInitGlobalLockHandler
448 * DESCRIPTION: Install a handler for the global lock release event
450 ******************************************************************************/
453 AcpiEvInitGlobalLockHandler (
459 ACPI_FUNCTION_TRACE (EvInitGlobalLockHandler
);
462 Status
= AcpiGetTableByIndex (ACPI_TABLE_INDEX_FACS
, (ACPI_TABLE_HEADER
**) &Facs
);
463 if (ACPI_FAILURE (Status
))
465 return_ACPI_STATUS (Status
);
468 AcpiGbl_GlobalLockPresent
= TRUE
;
469 Status
= AcpiInstallFixedEventHandler (ACPI_EVENT_GLOBAL
,
470 AcpiEvGlobalLockHandler
, NULL
);
473 * If the global lock does not exist on this platform, the attempt
474 * to enable GBL_STATUS will fail (the GBL_ENABLE bit will not stick)
475 * Map to AE_OK, but mark global lock as not present.
476 * Any attempt to actually use the global lock will be flagged
479 if (Status
== AE_NO_HARDWARE_RESPONSE
)
481 ACPI_ERROR ((AE_INFO
,
482 "No response from Global Lock hardware, disabling lock"));
484 AcpiGbl_GlobalLockPresent
= FALSE
;
488 return_ACPI_STATUS (Status
);
492 /******************************************************************************
494 * FUNCTION: AcpiEvAcquireGlobalLock
496 * PARAMETERS: Timeout - Max time to wait for the lock, in millisec.
500 * DESCRIPTION: Attempt to gain ownership of the Global Lock.
502 * MUTEX: Interpreter must be locked
504 * Note: The original implementation allowed multiple threads to "acquire" the
505 * Global Lock, and the OS would hold the lock until the last thread had
506 * released it. However, this could potentially starve the BIOS out of the
507 * lock, especially in the case where there is a tight handshake between the
508 * Embedded Controller driver and the BIOS. Therefore, this implementation
509 * allows only one thread to acquire the HW Global Lock at a time, and makes
510 * the global lock appear as a standard mutex on the OS side.
512 *****************************************************************************/
515 AcpiEvAcquireGlobalLock (
518 ACPI_STATUS Status
= AE_OK
;
519 BOOLEAN Acquired
= FALSE
;
522 ACPI_FUNCTION_TRACE (EvAcquireGlobalLock
);
526 * Only one thread can acquire the GL at a time, the GlobalLockMutex
527 * enforces this. This interface releases the interpreter if we must wait.
529 Status
= AcpiExSystemWaitMutex (AcpiGbl_GlobalLockMutex
, Timeout
);
530 if (ACPI_FAILURE (Status
))
532 return_ACPI_STATUS (Status
);
536 * Make sure that a global lock actually exists. If not, just treat
537 * the lock as a standard mutex.
539 if (!AcpiGbl_GlobalLockPresent
)
541 AcpiGbl_GlobalLockAcquired
= TRUE
;
542 return_ACPI_STATUS (AE_OK
);
545 /* Attempt to acquire the actual hardware lock */
547 ACPI_ACQUIRE_GLOBAL_LOCK (Facs
, Acquired
);
550 /* We got the lock */
552 ACPI_DEBUG_PRINT ((ACPI_DB_EXEC
, "Acquired hardware Global Lock\n"));
554 AcpiGbl_GlobalLockAcquired
= TRUE
;
555 return_ACPI_STATUS (AE_OK
);
559 * Did not get the lock. The pending bit was set above, and we must now
560 * wait until we get the global lock released interrupt.
562 ACPI_DEBUG_PRINT ((ACPI_DB_EXEC
, "Waiting for hardware Global Lock\n"));
565 * Wait for handshake with the global lock interrupt handler.
566 * This interface releases the interpreter if we must wait.
568 Status
= AcpiExSystemWaitSemaphore (AcpiGbl_GlobalLockSemaphore
,
571 return_ACPI_STATUS (Status
);
575 /*******************************************************************************
577 * FUNCTION: AcpiEvReleaseGlobalLock
583 * DESCRIPTION: Releases ownership of the Global Lock.
585 ******************************************************************************/
588 AcpiEvReleaseGlobalLock (
591 BOOLEAN Pending
= FALSE
;
592 ACPI_STATUS Status
= AE_OK
;
595 ACPI_FUNCTION_TRACE (EvReleaseGlobalLock
);
598 /* Lock must be already acquired */
600 if (!AcpiGbl_GlobalLockAcquired
)
602 ACPI_WARNING ((AE_INFO
,
603 "Cannot release the ACPI Global Lock, it has not been acquired"));
604 return_ACPI_STATUS (AE_NOT_ACQUIRED
);
607 if (AcpiGbl_GlobalLockPresent
)
609 /* Allow any thread to release the lock */
611 ACPI_RELEASE_GLOBAL_LOCK (Facs
, Pending
);
614 * If the pending bit was set, we must write GBL_RLS to the control
619 Status
= AcpiSetRegister (
620 ACPI_BITREG_GLOBAL_LOCK_RELEASE
, 1);
623 ACPI_DEBUG_PRINT ((ACPI_DB_EXEC
, "Released hardware Global Lock\n"));
626 AcpiGbl_GlobalLockAcquired
= FALSE
;
628 /* Release the local GL mutex */
630 AcpiOsReleaseMutex (AcpiGbl_GlobalLockMutex
);
631 return_ACPI_STATUS (Status
);
635 /******************************************************************************
637 * FUNCTION: AcpiEvTerminate
643 * DESCRIPTION: Disable events and free memory allocated for table storage.
645 ******************************************************************************/
655 ACPI_FUNCTION_TRACE (EvTerminate
);
658 if (AcpiGbl_EventsInitialized
)
661 * Disable all event-related functionality.
662 * In all cases, on error, print a message but obviously we don't abort.
665 /* Disable all fixed events */
667 for (i
= 0; i
< ACPI_NUM_FIXED_EVENTS
; i
++)
669 Status
= AcpiDisableEvent ((UINT32
) i
, 0);
670 if (ACPI_FAILURE (Status
))
672 ACPI_ERROR ((AE_INFO
,
673 "Could not disable fixed event %d", (UINT32
) i
));
677 /* Disable all GPEs in all GPE blocks */
679 Status
= AcpiEvWalkGpeList (AcpiHwDisableGpeBlock
);
681 /* Remove SCI handler */
683 Status
= AcpiEvRemoveSciHandler ();
684 if (ACPI_FAILURE(Status
))
686 ACPI_ERROR ((AE_INFO
,
687 "Could not remove SCI handler"));
691 /* Deallocate all handler objects installed within GPE info structs */
693 Status
= AcpiEvWalkGpeList (AcpiEvDeleteGpeHandlers
);
695 /* Return to original mode if necessary */
697 if (AcpiGbl_OriginalMode
== ACPI_SYS_MODE_LEGACY
)
699 Status
= AcpiDisable ();
700 if (ACPI_FAILURE (Status
))
702 ACPI_WARNING ((AE_INFO
, "AcpiDisable failed"));