blob: 6eef4efddcf62b0f83fba9f2014b61403e4564fe [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/******************************************************************************
2 *
3 * Module Name: evmisc - Miscellaneous event manager support functions
4 *
5 *****************************************************************************/
6
7/*
Bob Moore4a90c7e2006-01-13 16:22:00 -05008 * Copyright (C) 2000 - 2006, R. Byron Moore
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * All rights reserved.
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions, and the following disclaimer,
16 * without modification.
17 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
18 * substantially similar to the "NO WARRANTY" disclaimer below
19 * ("Disclaimer") and any redistribution must be conditioned upon
20 * including a substantially similar Disclaimer requirement for further
21 * binary redistribution.
22 * 3. Neither the names of the above-listed copyright holders nor the names
23 * of any contributors may be used to endorse or promote products derived
24 * from this software without specific prior written permission.
25 *
26 * Alternatively, this software may be distributed under the terms of the
27 * GNU General Public License ("GPL") version 2 as published by the Free
28 * Software Foundation.
29 *
30 * NO WARRANTY
31 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
32 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
33 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
34 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
35 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
36 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
37 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
38 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
39 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
40 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
41 * POSSIBILITY OF SUCH DAMAGES.
42 */
43
44#include <acpi/acpi.h>
45#include <acpi/acevents.h>
46#include <acpi/acnamesp.h>
47#include <acpi/acinterp.h>
48
49#define _COMPONENT ACPI_EVENTS
Len Brown4be44fc2005-08-05 00:44:28 -040050ACPI_MODULE_NAME("evmisc")
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Bob Moore41195322006-05-26 16:36:00 -040052/* Names for Notify() values, used for debug output */
Robert Moore44f6c012005-04-18 22:49:35 -040053#ifdef ACPI_DEBUG_OUTPUT
Len Brown4be44fc2005-08-05 00:44:28 -040054static const char *acpi_notify_value_names[] = {
Robert Moore44f6c012005-04-18 22:49:35 -040055 "Bus Check",
56 "Device Check",
57 "Device Wake",
Bob Moore41195322006-05-26 16:36:00 -040058 "Eject Request",
Robert Moore44f6c012005-04-18 22:49:35 -040059 "Device Check Light",
60 "Frequency Mismatch",
61 "Bus Mode Mismatch",
62 "Power Fault"
63};
64#endif
65
66/* Local prototypes */
67
Len Brown4be44fc2005-08-05 00:44:28 -040068static void ACPI_SYSTEM_XFACE acpi_ev_notify_dispatch(void *context);
Robert Moore44f6c012005-04-18 22:49:35 -040069
Len Brown4be44fc2005-08-05 00:44:28 -040070static void ACPI_SYSTEM_XFACE acpi_ev_global_lock_thread(void *context);
Robert Moore44f6c012005-04-18 22:49:35 -040071
Len Brown4be44fc2005-08-05 00:44:28 -040072static u32 acpi_ev_global_lock_handler(void *context);
Robert Moore44f6c012005-04-18 22:49:35 -040073
Linus Torvalds1da177e2005-04-16 15:20:36 -070074/*******************************************************************************
75 *
76 * FUNCTION: acpi_ev_is_notify_object
77 *
78 * PARAMETERS: Node - Node to check
79 *
80 * RETURN: TRUE if notifies allowed on this object
81 *
82 * DESCRIPTION: Check type of node for a object that supports notifies.
83 *
84 * TBD: This could be replaced by a flag bit in the node.
85 *
86 ******************************************************************************/
87
Len Brown4be44fc2005-08-05 00:44:28 -040088u8 acpi_ev_is_notify_object(struct acpi_namespace_node *node)
Linus Torvalds1da177e2005-04-16 15:20:36 -070089{
90 switch (node->type) {
91 case ACPI_TYPE_DEVICE:
92 case ACPI_TYPE_PROCESSOR:
93 case ACPI_TYPE_POWER:
94 case ACPI_TYPE_THERMAL:
95 /*
96 * These are the ONLY objects that can receive ACPI notifications
97 */
98 return (TRUE);
99
100 default:
101 return (FALSE);
102 }
103}
104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105/*******************************************************************************
106 *
107 * FUNCTION: acpi_ev_queue_notify_request
108 *
109 * PARAMETERS: Node - NS node for the notified object
110 * notify_value - Value from the Notify() request
111 *
112 * RETURN: Status
113 *
114 * DESCRIPTION: Dispatch a device notification event to a previously
115 * installed handler.
116 *
117 ******************************************************************************/
118
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400120acpi_ev_queue_notify_request(struct acpi_namespace_node * node,
121 u32 notify_value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122{
Len Brown4be44fc2005-08-05 00:44:28 -0400123 union acpi_operand_object *obj_desc;
124 union acpi_operand_object *handler_obj = NULL;
125 union acpi_generic_state *notify_info;
126 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
Bob Mooreb229cf92006-04-21 17:15:00 -0400128 ACPI_FUNCTION_NAME(ev_queue_notify_request);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
130 /*
131 * For value 3 (Ejection Request), some device method may need to be run.
Robert Moore44f6c012005-04-18 22:49:35 -0400132 * For value 2 (Device Wake) if _PRW exists, the _PS0 method may need
133 * to be run.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 * For value 0x80 (Status Change) on the power button or sleep button,
Robert Moore44f6c012005-04-18 22:49:35 -0400135 * initiate soft-off or sleep operation?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 */
Len Brown4be44fc2005-08-05 00:44:28 -0400137 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
138 "Dispatching Notify(%X) on node %p\n", notify_value,
139 node));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
141 if (notify_value <= 7) {
Len Brown4be44fc2005-08-05 00:44:28 -0400142 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Notify value: %s\n",
143 acpi_notify_value_names[notify_value]));
144 } else {
145 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
146 "Notify value: 0x%2.2X **Device Specific**\n",
147 notify_value));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 }
149
150 /* Get the notify object attached to the NS Node */
151
Len Brown4be44fc2005-08-05 00:44:28 -0400152 obj_desc = acpi_ns_get_attached_object(node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 if (obj_desc) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400154
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 /* We have the notify object, Get the right handler */
156
157 switch (node->type) {
158 case ACPI_TYPE_DEVICE:
159 case ACPI_TYPE_THERMAL:
160 case ACPI_TYPE_PROCESSOR:
161 case ACPI_TYPE_POWER:
162
163 if (notify_value <= ACPI_MAX_SYS_NOTIFY) {
Len Brown4be44fc2005-08-05 00:44:28 -0400164 handler_obj =
165 obj_desc->common_notify.system_notify;
166 } else {
167 handler_obj =
168 obj_desc->common_notify.device_notify;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 }
170 break;
171
172 default:
173 /* All other types are not supported */
174 return (AE_TYPE);
175 }
176 }
177
178 /* If there is any handler to run, schedule the dispatcher */
179
Len Brown4be44fc2005-08-05 00:44:28 -0400180 if ((acpi_gbl_system_notify.handler
181 && (notify_value <= ACPI_MAX_SYS_NOTIFY))
182 || (acpi_gbl_device_notify.handler
183 && (notify_value > ACPI_MAX_SYS_NOTIFY)) || handler_obj) {
184 notify_info = acpi_ut_create_generic_state();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 if (!notify_info) {
186 return (AE_NO_MEMORY);
187 }
188
Bob Moore616861242006-03-17 16:44:00 -0500189 notify_info->common.descriptor_type =
190 ACPI_DESC_TYPE_STATE_NOTIFY;
Len Brown4be44fc2005-08-05 00:44:28 -0400191 notify_info->notify.node = node;
192 notify_info->notify.value = (u16) notify_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 notify_info->notify.handler_obj = handler_obj;
194
Bob Moore41195322006-05-26 16:36:00 -0400195 status =
196 acpi_os_execute(OSL_NOTIFY_HANDLER, acpi_ev_notify_dispatch,
197 notify_info);
Len Brown4be44fc2005-08-05 00:44:28 -0400198 if (ACPI_FAILURE(status)) {
199 acpi_ut_delete_generic_state(notify_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 }
201 }
202
203 if (!handler_obj) {
204 /*
205 * There is no per-device notify handler for this device.
206 * This may or may not be a problem.
207 */
Len Brown4be44fc2005-08-05 00:44:28 -0400208 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
209 "No notify handler for Notify(%4.4s, %X) node %p\n",
210 acpi_ut_get_node_name(node), notify_value,
211 node));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 }
213
214 return (status);
215}
216
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217/*******************************************************************************
218 *
219 * FUNCTION: acpi_ev_notify_dispatch
220 *
Robert Moore44f6c012005-04-18 22:49:35 -0400221 * PARAMETERS: Context - To be passed to the notify handler
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 *
223 * RETURN: None.
224 *
225 * DESCRIPTION: Dispatch a device notification event to a previously
226 * installed handler.
227 *
228 ******************************************************************************/
229
Len Brown4be44fc2005-08-05 00:44:28 -0400230static void ACPI_SYSTEM_XFACE acpi_ev_notify_dispatch(void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231{
Len Brown4be44fc2005-08-05 00:44:28 -0400232 union acpi_generic_state *notify_info =
233 (union acpi_generic_state *)context;
234 acpi_notify_handler global_handler = NULL;
235 void *global_context = NULL;
236 union acpi_operand_object *handler_obj;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Len Brown4be44fc2005-08-05 00:44:28 -0400238 ACPI_FUNCTION_ENTRY();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
240 /*
241 * We will invoke a global notify handler if installed.
Robert Moore44f6c012005-04-18 22:49:35 -0400242 * This is done _before_ we invoke the per-device handler attached
243 * to the device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 */
245 if (notify_info->notify.value <= ACPI_MAX_SYS_NOTIFY) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400246
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 /* Global system notification handler */
248
249 if (acpi_gbl_system_notify.handler) {
250 global_handler = acpi_gbl_system_notify.handler;
251 global_context = acpi_gbl_system_notify.context;
252 }
Len Brown4be44fc2005-08-05 00:44:28 -0400253 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 /* Global driver notification handler */
255
256 if (acpi_gbl_device_notify.handler) {
257 global_handler = acpi_gbl_device_notify.handler;
258 global_context = acpi_gbl_device_notify.context;
259 }
260 }
261
262 /* Invoke the system handler first, if present */
263
264 if (global_handler) {
Len Brown4be44fc2005-08-05 00:44:28 -0400265 global_handler(notify_info->notify.node,
266 notify_info->notify.value, global_context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 }
268
269 /* Now invoke the per-device handler, if present */
270
271 handler_obj = notify_info->notify.handler_obj;
272 if (handler_obj) {
Len Brown4be44fc2005-08-05 00:44:28 -0400273 handler_obj->notify.handler(notify_info->notify.node,
274 notify_info->notify.value,
275 handler_obj->notify.context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 }
277
278 /* All done with the info object */
279
Len Brown4be44fc2005-08-05 00:44:28 -0400280 acpi_ut_delete_generic_state(notify_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281}
282
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283/*******************************************************************************
284 *
285 * FUNCTION: acpi_ev_global_lock_thread
286 *
287 * PARAMETERS: Context - From thread interface, not used
288 *
289 * RETURN: None
290 *
291 * DESCRIPTION: Invoked by SCI interrupt handler upon acquisition of the
292 * Global Lock. Simply signal all threads that are waiting
293 * for the lock.
294 *
295 ******************************************************************************/
296
Len Brown4be44fc2005-08-05 00:44:28 -0400297static void ACPI_SYSTEM_XFACE acpi_ev_global_lock_thread(void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298{
Len Brown4be44fc2005-08-05 00:44:28 -0400299 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
301 /* Signal threads that are waiting for the lock */
302
303 if (acpi_gbl_global_lock_thread_count) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400304
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 /* Send sufficient units to the semaphore */
306
Len Brown4be44fc2005-08-05 00:44:28 -0400307 status =
308 acpi_os_signal_semaphore(acpi_gbl_global_lock_semaphore,
309 acpi_gbl_global_lock_thread_count);
310 if (ACPI_FAILURE(status)) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500311 ACPI_ERROR((AE_INFO,
312 "Could not signal Global Lock semaphore"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 }
314 }
315}
316
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317/*******************************************************************************
318 *
319 * FUNCTION: acpi_ev_global_lock_handler
320 *
321 * PARAMETERS: Context - From thread interface, not used
322 *
323 * RETURN: ACPI_INTERRUPT_HANDLED or ACPI_INTERRUPT_NOT_HANDLED
324 *
325 * DESCRIPTION: Invoked directly from the SCI handler when a global lock
326 * release interrupt occurs. Grab the global lock and queue
327 * the global lock thread for execution
328 *
329 ******************************************************************************/
330
Len Brown4be44fc2005-08-05 00:44:28 -0400331static u32 acpi_ev_global_lock_handler(void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332{
Len Brown4be44fc2005-08-05 00:44:28 -0400333 u8 acquired = FALSE;
334 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
336 /*
337 * Attempt to get the lock
338 * If we don't get it now, it will be marked pending and we will
339 * take another interrupt when it becomes free.
340 */
Len Brown4be44fc2005-08-05 00:44:28 -0400341 ACPI_ACQUIRE_GLOBAL_LOCK(acpi_gbl_common_fACS.global_lock, acquired);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 if (acquired) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400343
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 /* Got the lock, now wake all threads waiting for it */
345
346 acpi_gbl_global_lock_acquired = TRUE;
347
348 /* Run the Global Lock thread which will signal all waiting threads */
349
Bob Moore41195322006-05-26 16:36:00 -0400350 status =
351 acpi_os_execute(OSL_GLOBAL_LOCK_HANDLER,
352 acpi_ev_global_lock_thread, context);
Len Brown4be44fc2005-08-05 00:44:28 -0400353 if (ACPI_FAILURE(status)) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500354 ACPI_EXCEPTION((AE_INFO, status,
355 "Could not queue Global Lock thread"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
357 return (ACPI_INTERRUPT_NOT_HANDLED);
358 }
359 }
360
361 return (ACPI_INTERRUPT_HANDLED);
362}
363
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364/*******************************************************************************
365 *
366 * FUNCTION: acpi_ev_init_global_lock_handler
367 *
368 * PARAMETERS: None
369 *
370 * RETURN: Status
371 *
372 * DESCRIPTION: Install a handler for the global lock release event
373 *
374 ******************************************************************************/
375
Len Brown4be44fc2005-08-05 00:44:28 -0400376acpi_status acpi_ev_init_global_lock_handler(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377{
Len Brown4be44fc2005-08-05 00:44:28 -0400378 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
Bob Mooreb229cf92006-04-21 17:15:00 -0400380 ACPI_FUNCTION_TRACE(ev_init_global_lock_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
382 acpi_gbl_global_lock_present = TRUE;
Len Brown4be44fc2005-08-05 00:44:28 -0400383 status = acpi_install_fixed_event_handler(ACPI_EVENT_GLOBAL,
384 acpi_ev_global_lock_handler,
385 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
387 /*
388 * If the global lock does not exist on this platform, the attempt
389 * to enable GBL_STATUS will fail (the GBL_ENABLE bit will not stick)
390 * Map to AE_OK, but mark global lock as not present.
391 * Any attempt to actually use the global lock will be flagged
392 * with an error.
393 */
394 if (status == AE_NO_HARDWARE_RESPONSE) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500395 ACPI_ERROR((AE_INFO,
396 "No response from Global Lock hardware, disabling lock"));
Robert Moore0c9938c2005-07-29 15:15:00 -0700397
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 acpi_gbl_global_lock_present = FALSE;
399 status = AE_OK;
400 }
401
Len Brown4be44fc2005-08-05 00:44:28 -0400402 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403}
404
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405/******************************************************************************
406 *
407 * FUNCTION: acpi_ev_acquire_global_lock
408 *
409 * PARAMETERS: Timeout - Max time to wait for the lock, in millisec.
410 *
411 * RETURN: Status
412 *
413 * DESCRIPTION: Attempt to gain ownership of the Global Lock.
414 *
415 *****************************************************************************/
416
Len Brown4be44fc2005-08-05 00:44:28 -0400417acpi_status acpi_ev_acquire_global_lock(u16 timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418{
Len Brown4be44fc2005-08-05 00:44:28 -0400419 acpi_status status = AE_OK;
420 u8 acquired = FALSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
Bob Mooreb229cf92006-04-21 17:15:00 -0400422 ACPI_FUNCTION_TRACE(ev_acquire_global_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
424#ifndef ACPI_APPLICATION
425 /* Make sure that we actually have a global lock */
426
427 if (!acpi_gbl_global_lock_present) {
Len Brown4be44fc2005-08-05 00:44:28 -0400428 return_ACPI_STATUS(AE_NO_GLOBAL_LOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 }
430#endif
431
432 /* One more thread wants the global lock */
433
434 acpi_gbl_global_lock_thread_count++;
435
Robert Moore44f6c012005-04-18 22:49:35 -0400436 /*
437 * If we (OS side vs. BIOS side) have the hardware lock already,
438 * we are done
439 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 if (acpi_gbl_global_lock_acquired) {
Len Brown4be44fc2005-08-05 00:44:28 -0400441 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 }
443
444 /* We must acquire the actual hardware lock */
445
Len Brown4be44fc2005-08-05 00:44:28 -0400446 ACPI_ACQUIRE_GLOBAL_LOCK(acpi_gbl_common_fACS.global_lock, acquired);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 if (acquired) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400448
Len Brown4be44fc2005-08-05 00:44:28 -0400449 /* We got the lock */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
Len Brown4be44fc2005-08-05 00:44:28 -0400451 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
452 "Acquired the HW Global Lock\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
454 acpi_gbl_global_lock_acquired = TRUE;
Len Brown4be44fc2005-08-05 00:44:28 -0400455 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 }
457
458 /*
459 * Did not get the lock. The pending bit was set above, and we must now
460 * wait until we get the global lock released interrupt.
461 */
Len Brown4be44fc2005-08-05 00:44:28 -0400462 ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "Waiting for the HW Global Lock\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
464 /*
465 * Acquire the global lock semaphore first.
466 * Since this wait will block, we must release the interpreter
467 */
Bob Moore41195322006-05-26 16:36:00 -0400468 status =
469 acpi_ex_system_wait_semaphore(acpi_gbl_global_lock_semaphore,
470 timeout);
Len Brown4be44fc2005-08-05 00:44:28 -0400471 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472}
473
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474/*******************************************************************************
475 *
476 * FUNCTION: acpi_ev_release_global_lock
477 *
478 * PARAMETERS: None
479 *
480 * RETURN: Status
481 *
482 * DESCRIPTION: Releases ownership of the Global Lock.
483 *
484 ******************************************************************************/
485
Len Brown4be44fc2005-08-05 00:44:28 -0400486acpi_status acpi_ev_release_global_lock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487{
Len Brown4be44fc2005-08-05 00:44:28 -0400488 u8 pending = FALSE;
489 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
Bob Mooreb229cf92006-04-21 17:15:00 -0400491 ACPI_FUNCTION_TRACE(ev_release_global_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
493 if (!acpi_gbl_global_lock_thread_count) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500494 ACPI_WARNING((AE_INFO,
495 "Cannot release HW Global Lock, it has not been acquired"));
Len Brown4be44fc2005-08-05 00:44:28 -0400496 return_ACPI_STATUS(AE_NOT_ACQUIRED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 }
498
499 /* One fewer thread has the global lock */
500
501 acpi_gbl_global_lock_thread_count--;
502 if (acpi_gbl_global_lock_thread_count) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400503
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 /* There are still some threads holding the lock, cannot release */
505
Len Brown4be44fc2005-08-05 00:44:28 -0400506 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 }
508
509 /*
510 * No more threads holding lock, we can do the actual hardware
511 * release
512 */
Len Brown4be44fc2005-08-05 00:44:28 -0400513 ACPI_RELEASE_GLOBAL_LOCK(acpi_gbl_common_fACS.global_lock, pending);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 acpi_gbl_global_lock_acquired = FALSE;
515
516 /*
517 * If the pending bit was set, we must write GBL_RLS to the control
518 * register
519 */
520 if (pending) {
Len Brown4be44fc2005-08-05 00:44:28 -0400521 status = acpi_set_register(ACPI_BITREG_GLOBAL_LOCK_RELEASE,
522 1, ACPI_MTX_LOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 }
524
Len Brown4be44fc2005-08-05 00:44:28 -0400525 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526}
527
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528/******************************************************************************
529 *
530 * FUNCTION: acpi_ev_terminate
531 *
532 * PARAMETERS: none
533 *
534 * RETURN: none
535 *
536 * DESCRIPTION: Disable events and free memory allocated for table storage.
537 *
538 ******************************************************************************/
539
Len Brown4be44fc2005-08-05 00:44:28 -0400540void acpi_ev_terminate(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541{
Len Brown4be44fc2005-08-05 00:44:28 -0400542 acpi_native_uint i;
543 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
Bob Mooreb229cf92006-04-21 17:15:00 -0400545 ACPI_FUNCTION_TRACE(ev_terminate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
547 if (acpi_gbl_events_initialized) {
548 /*
549 * Disable all event-related functionality.
550 * In all cases, on error, print a message but obviously we don't abort.
551 */
552
553 /* Disable all fixed events */
554
555 for (i = 0; i < ACPI_NUM_FIXED_EVENTS; i++) {
Len Brown4be44fc2005-08-05 00:44:28 -0400556 status = acpi_disable_event((u32) i, 0);
557 if (ACPI_FAILURE(status)) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500558 ACPI_ERROR((AE_INFO,
559 "Could not disable fixed event %d",
560 (u32) i));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 }
562 }
563
564 /* Disable all GPEs in all GPE blocks */
565
Len Brown4be44fc2005-08-05 00:44:28 -0400566 status = acpi_ev_walk_gpe_list(acpi_hw_disable_gpe_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567
568 /* Remove SCI handler */
569
Len Brown4be44fc2005-08-05 00:44:28 -0400570 status = acpi_ev_remove_sci_handler();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 if (ACPI_FAILURE(status)) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500572 ACPI_ERROR((AE_INFO, "Could not remove SCI handler"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 }
574 }
575
576 /* Deallocate all handler objects installed within GPE info structs */
577
Len Brown4be44fc2005-08-05 00:44:28 -0400578 status = acpi_ev_walk_gpe_list(acpi_ev_delete_gpe_handlers);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
580 /* Return to original mode if necessary */
581
582 if (acpi_gbl_original_mode == ACPI_SYS_MODE_LEGACY) {
Len Brown4be44fc2005-08-05 00:44:28 -0400583 status = acpi_disable();
584 if (ACPI_FAILURE(status)) {
Bob Mooreb229cf92006-04-21 17:15:00 -0400585 ACPI_WARNING((AE_INFO, "AcpiDisable failed"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 }
587 }
588 return_VOID;
589}