ACPI: ACPICA 20060623
[linux-2.6.git] / drivers / acpi / executer / exsystem.c
blob6b5d1e6ce94b1b823d9ff3634608254293d884bb
2 /******************************************************************************
4 * Module Name: exsystem - Interface to OS services
6 *****************************************************************************/
8 /*
9 * Copyright (C) 2000 - 2006, R. Byron Moore
10 * All rights reserved.
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
14 * are met:
15 * 1. Redistributions of source code must retain the above copyright
16 * notice, this list of conditions, and the following disclaimer,
17 * without modification.
18 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
19 * substantially similar to the "NO WARRANTY" disclaimer below
20 * ("Disclaimer") and any redistribution must be conditioned upon
21 * including a substantially similar Disclaimer requirement for further
22 * binary redistribution.
23 * 3. Neither the names of the above-listed copyright holders nor the names
24 * of any contributors may be used to endorse or promote products derived
25 * from this software without specific prior written permission.
27 * Alternatively, this software may be distributed under the terms of the
28 * GNU General Public License ("GPL") version 2 as published by the Free
29 * Software Foundation.
31 * NO WARRANTY
32 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
33 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
34 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
35 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
36 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
37 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
38 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
39 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
40 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
41 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
42 * POSSIBILITY OF SUCH DAMAGES.
45 #include <acpi/acpi.h>
46 #include <acpi/acinterp.h>
47 #include <acpi/acevents.h>
49 #define _COMPONENT ACPI_EXECUTER
50 ACPI_MODULE_NAME("exsystem")
52 /*******************************************************************************
54 * FUNCTION: acpi_ex_system_wait_semaphore
56 * PARAMETERS: Semaphore - Semaphore to wait on
57 * Timeout - Max time to wait
59 * RETURN: Status
61 * DESCRIPTION: Implements a semaphore wait with a check to see if the
62 * semaphore is available immediately. If it is not, the
63 * interpreter is released.
65 ******************************************************************************/
66 acpi_status acpi_ex_system_wait_semaphore(acpi_semaphore semaphore, u16 timeout)
68 acpi_status status;
69 acpi_status status2;
71 ACPI_FUNCTION_TRACE(ex_system_wait_semaphore);
73 status = acpi_os_wait_semaphore(semaphore, 1, ACPI_DO_NOT_WAIT);
74 if (ACPI_SUCCESS(status)) {
75 return_ACPI_STATUS(status);
78 if (status == AE_TIME) {
80 /* We must wait, so unlock the interpreter */
82 acpi_ex_exit_interpreter();
84 status = acpi_os_wait_semaphore(semaphore, 1, timeout);
86 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
87 "*** Thread awake after blocking, %s\n",
88 acpi_format_exception(status)));
90 /* Reacquire the interpreter */
92 status2 = acpi_ex_enter_interpreter();
93 if (ACPI_FAILURE(status2)) {
95 /* Report fatal error, could not acquire interpreter */
97 return_ACPI_STATUS(status2);
101 return_ACPI_STATUS(status);
104 /*******************************************************************************
106 * FUNCTION: acpi_ex_system_wait_mutex
108 * PARAMETERS: Mutex - Mutex to wait on
109 * Timeout - Max time to wait
111 * RETURN: Status
113 * DESCRIPTION: Implements a semaphore wait with a check to see if the
114 * semaphore is available immediately. If it is not, the
115 * interpreter is released.
117 ******************************************************************************/
119 acpi_status acpi_ex_system_wait_mutex(acpi_mutex mutex, u16 timeout)
121 acpi_status status;
122 acpi_status status2;
124 ACPI_FUNCTION_TRACE(ex_system_wait_mutex);
126 status = acpi_os_acquire_mutex(mutex, ACPI_DO_NOT_WAIT);
127 if (ACPI_SUCCESS(status)) {
128 return_ACPI_STATUS(status);
131 if (status == AE_TIME) {
133 /* We must wait, so unlock the interpreter */
135 acpi_ex_exit_interpreter();
137 status = acpi_os_acquire_mutex(mutex, timeout);
139 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
140 "*** Thread awake after blocking, %s\n",
141 acpi_format_exception(status)));
143 /* Reacquire the interpreter */
145 status2 = acpi_ex_enter_interpreter();
146 if (ACPI_FAILURE(status2)) {
148 /* Report fatal error, could not acquire interpreter */
150 return_ACPI_STATUS(status2);
154 return_ACPI_STATUS(status);
157 /*******************************************************************************
159 * FUNCTION: acpi_ex_system_do_stall
161 * PARAMETERS: how_long - The amount of time to stall,
162 * in microseconds
164 * RETURN: Status
166 * DESCRIPTION: Suspend running thread for specified amount of time.
167 * Note: ACPI specification requires that Stall() does not
168 * relinquish the processor, and delays longer than 100 usec
169 * should use Sleep() instead. We allow stalls up to 255 usec
170 * for compatibility with other interpreters and existing BIOSs.
172 ******************************************************************************/
174 acpi_status acpi_ex_system_do_stall(u32 how_long)
176 acpi_status status = AE_OK;
178 ACPI_FUNCTION_ENTRY();
180 if (how_long > 255) { /* 255 microseconds */
182 * Longer than 255 usec, this is an error
184 * (ACPI specifies 100 usec as max, but this gives some slack in
185 * order to support existing BIOSs)
187 ACPI_ERROR((AE_INFO, "Time parameter is too large (%d)",
188 how_long));
189 status = AE_AML_OPERAND_VALUE;
190 } else {
191 acpi_os_stall(how_long);
194 return (status);
197 /*******************************************************************************
199 * FUNCTION: acpi_ex_system_do_suspend
201 * PARAMETERS: how_long - The amount of time to suspend,
202 * in milliseconds
204 * RETURN: None
206 * DESCRIPTION: Suspend running thread for specified amount of time.
208 ******************************************************************************/
210 acpi_status acpi_ex_system_do_suspend(acpi_integer how_long)
212 acpi_status status;
214 ACPI_FUNCTION_ENTRY();
216 /* Since this thread will sleep, we must release the interpreter */
218 acpi_ex_exit_interpreter();
220 acpi_os_sleep(how_long);
222 /* And now we must get the interpreter again */
224 status = acpi_ex_enter_interpreter();
225 return (status);
228 /*******************************************************************************
230 * FUNCTION: acpi_ex_system_acquire_mutex
232 * PARAMETERS: time_desc - Maximum time to wait for the mutex
233 * obj_desc - The object descriptor for this op
235 * RETURN: Status
237 * DESCRIPTION: Provides an access point to perform synchronization operations
238 * within the AML. This function will cause a lock to be generated
239 * for the Mutex pointed to by obj_desc.
241 ******************************************************************************/
243 acpi_status
244 acpi_ex_system_acquire_mutex(union acpi_operand_object * time_desc,
245 union acpi_operand_object * obj_desc)
247 acpi_status status = AE_OK;
249 ACPI_FUNCTION_TRACE_PTR(ex_system_acquire_mutex, obj_desc);
251 if (!obj_desc) {
252 return_ACPI_STATUS(AE_BAD_PARAMETER);
255 /* Support for the _GL_ Mutex object -- go get the global lock */
257 if (obj_desc->mutex.os_mutex == ACPI_GLOBAL_LOCK) {
258 status =
259 acpi_ev_acquire_global_lock((u16) time_desc->integer.value);
260 return_ACPI_STATUS(status);
263 status = acpi_ex_system_wait_mutex(obj_desc->mutex.os_mutex,
264 (u16) time_desc->integer.value);
265 return_ACPI_STATUS(status);
268 /*******************************************************************************
270 * FUNCTION: acpi_ex_system_release_mutex
272 * PARAMETERS: obj_desc - The object descriptor for this op
274 * RETURN: Status
276 * DESCRIPTION: Provides an access point to perform synchronization operations
277 * within the AML. This operation is a request to release a
278 * previously acquired Mutex. If the Mutex variable is set then
279 * it will be decremented.
281 ******************************************************************************/
283 acpi_status acpi_ex_system_release_mutex(union acpi_operand_object *obj_desc)
285 acpi_status status = AE_OK;
287 ACPI_FUNCTION_TRACE(ex_system_release_mutex);
289 if (!obj_desc) {
290 return_ACPI_STATUS(AE_BAD_PARAMETER);
293 /* Support for the _GL_ Mutex object -- release the global lock */
295 if (obj_desc->mutex.os_mutex == ACPI_GLOBAL_LOCK) {
296 status = acpi_ev_release_global_lock();
297 return_ACPI_STATUS(status);
300 acpi_os_release_mutex(obj_desc->mutex.os_mutex);
301 return_ACPI_STATUS(AE_OK);
304 /*******************************************************************************
306 * FUNCTION: acpi_ex_system_signal_event
308 * PARAMETERS: obj_desc - The object descriptor for this op
310 * RETURN: Status
312 * DESCRIPTION: Provides an access point to perform synchronization operations
313 * within the AML.
315 ******************************************************************************/
317 acpi_status acpi_ex_system_signal_event(union acpi_operand_object *obj_desc)
319 acpi_status status = AE_OK;
321 ACPI_FUNCTION_TRACE(ex_system_signal_event);
323 if (obj_desc) {
324 status =
325 acpi_os_signal_semaphore(obj_desc->event.os_semaphore, 1);
328 return_ACPI_STATUS(status);
331 /*******************************************************************************
333 * FUNCTION: acpi_ex_system_wait_event
335 * PARAMETERS: time_desc - The 'time to delay' object descriptor
336 * obj_desc - The object descriptor for this op
338 * RETURN: Status
340 * DESCRIPTION: Provides an access point to perform synchronization operations
341 * within the AML. This operation is a request to wait for an
342 * event.
344 ******************************************************************************/
346 acpi_status
347 acpi_ex_system_wait_event(union acpi_operand_object *time_desc,
348 union acpi_operand_object *obj_desc)
350 acpi_status status = AE_OK;
352 ACPI_FUNCTION_TRACE(ex_system_wait_event);
354 if (obj_desc) {
355 status =
356 acpi_ex_system_wait_semaphore(obj_desc->event.os_semaphore,
357 (u16) time_desc->integer.
358 value);
361 return_ACPI_STATUS(status);
364 /*******************************************************************************
366 * FUNCTION: acpi_ex_system_reset_event
368 * PARAMETERS: obj_desc - The object descriptor for this op
370 * RETURN: Status
372 * DESCRIPTION: Reset an event to a known state.
374 ******************************************************************************/
376 acpi_status acpi_ex_system_reset_event(union acpi_operand_object *obj_desc)
378 acpi_status status = AE_OK;
379 acpi_semaphore temp_semaphore;
381 ACPI_FUNCTION_ENTRY();
384 * We are going to simply delete the existing semaphore and
385 * create a new one!
387 status =
388 acpi_os_create_semaphore(ACPI_NO_UNIT_LIMIT, 0, &temp_semaphore);
389 if (ACPI_SUCCESS(status)) {
390 (void)acpi_os_delete_semaphore(obj_desc->event.os_semaphore);
391 obj_desc->event.os_semaphore = temp_semaphore;
394 return (status);