2 /******************************************************************************
4 * Module Name: exsystem - Interface to OS services
6 *****************************************************************************/
9 * Copyright (C) 2000 - 2008, Intel Corp.
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
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.
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>
48 #define _COMPONENT ACPI_EXECUTER
49 ACPI_MODULE_NAME("exsystem")
51 /*******************************************************************************
53 * FUNCTION: acpi_ex_system_wait_semaphore
55 * PARAMETERS: Semaphore - Semaphore to wait on
56 * Timeout - Max time to wait
60 * DESCRIPTION: Implements a semaphore wait with a check to see if the
61 * semaphore is available immediately. If it is not, the
62 * interpreter is released before waiting.
64 ******************************************************************************/
65 acpi_status
acpi_ex_system_wait_semaphore(acpi_semaphore semaphore
, u16 timeout
)
69 ACPI_FUNCTION_TRACE(ex_system_wait_semaphore
);
71 status
= acpi_os_wait_semaphore(semaphore
, 1, ACPI_DO_NOT_WAIT
);
72 if (ACPI_SUCCESS(status
)) {
73 return_ACPI_STATUS(status
);
76 if (status
== AE_TIME
) {
78 /* We must wait, so unlock the interpreter */
80 acpi_ex_relinquish_interpreter();
82 status
= acpi_os_wait_semaphore(semaphore
, 1, timeout
);
84 ACPI_DEBUG_PRINT((ACPI_DB_EXEC
,
85 "*** Thread awake after blocking, %s\n",
86 acpi_format_exception(status
)));
88 /* Reacquire the interpreter */
90 acpi_ex_reacquire_interpreter();
93 return_ACPI_STATUS(status
);
96 /*******************************************************************************
98 * FUNCTION: acpi_ex_system_wait_mutex
100 * PARAMETERS: Mutex - Mutex to wait on
101 * Timeout - Max time to wait
105 * DESCRIPTION: Implements a mutex wait with a check to see if the
106 * mutex is available immediately. If it is not, the
107 * interpreter is released before waiting.
109 ******************************************************************************/
111 acpi_status
acpi_ex_system_wait_mutex(acpi_mutex mutex
, u16 timeout
)
115 ACPI_FUNCTION_TRACE(ex_system_wait_mutex
);
117 status
= acpi_os_acquire_mutex(mutex
, ACPI_DO_NOT_WAIT
);
118 if (ACPI_SUCCESS(status
)) {
119 return_ACPI_STATUS(status
);
122 if (status
== AE_TIME
) {
124 /* We must wait, so unlock the interpreter */
126 acpi_ex_relinquish_interpreter();
128 status
= acpi_os_acquire_mutex(mutex
, timeout
);
130 ACPI_DEBUG_PRINT((ACPI_DB_EXEC
,
131 "*** Thread awake after blocking, %s\n",
132 acpi_format_exception(status
)));
134 /* Reacquire the interpreter */
136 acpi_ex_reacquire_interpreter();
139 return_ACPI_STATUS(status
);
142 /*******************************************************************************
144 * FUNCTION: acpi_ex_system_do_stall
146 * PARAMETERS: how_long - The amount of time to stall,
151 * DESCRIPTION: Suspend running thread for specified amount of time.
152 * Note: ACPI specification requires that Stall() does not
153 * relinquish the processor, and delays longer than 100 usec
154 * should use Sleep() instead. We allow stalls up to 255 usec
155 * for compatibility with other interpreters and existing BIOSs.
157 ******************************************************************************/
159 acpi_status
acpi_ex_system_do_stall(u32 how_long
)
161 acpi_status status
= AE_OK
;
163 ACPI_FUNCTION_ENTRY();
165 if (how_long
> 255) { /* 255 microseconds */
167 * Longer than 255 usec, this is an error
169 * (ACPI specifies 100 usec as max, but this gives some slack in
170 * order to support existing BIOSs)
172 ACPI_ERROR((AE_INFO
, "Time parameter is too large (%d)",
174 status
= AE_AML_OPERAND_VALUE
;
176 acpi_os_stall(how_long
);
182 /*******************************************************************************
184 * FUNCTION: acpi_ex_system_do_suspend
186 * PARAMETERS: how_long - The amount of time to suspend,
191 * DESCRIPTION: Suspend running thread for specified amount of time.
193 ******************************************************************************/
195 acpi_status
acpi_ex_system_do_suspend(acpi_integer how_long
)
197 ACPI_FUNCTION_ENTRY();
199 /* Since this thread will sleep, we must release the interpreter */
201 acpi_ex_relinquish_interpreter();
203 acpi_os_sleep(how_long
);
205 /* And now we must get the interpreter again */
207 acpi_ex_reacquire_interpreter();
211 /*******************************************************************************
213 * FUNCTION: acpi_ex_system_signal_event
215 * PARAMETERS: obj_desc - The object descriptor for this op
219 * DESCRIPTION: Provides an access point to perform synchronization operations
222 ******************************************************************************/
224 acpi_status
acpi_ex_system_signal_event(union acpi_operand_object
* obj_desc
)
226 acpi_status status
= AE_OK
;
228 ACPI_FUNCTION_TRACE(ex_system_signal_event
);
232 acpi_os_signal_semaphore(obj_desc
->event
.os_semaphore
, 1);
235 return_ACPI_STATUS(status
);
238 /*******************************************************************************
240 * FUNCTION: acpi_ex_system_wait_event
242 * PARAMETERS: time_desc - The 'time to delay' object descriptor
243 * obj_desc - The object descriptor for this op
247 * DESCRIPTION: Provides an access point to perform synchronization operations
248 * within the AML. This operation is a request to wait for an
251 ******************************************************************************/
254 acpi_ex_system_wait_event(union acpi_operand_object
*time_desc
,
255 union acpi_operand_object
*obj_desc
)
257 acpi_status status
= AE_OK
;
259 ACPI_FUNCTION_TRACE(ex_system_wait_event
);
263 acpi_ex_system_wait_semaphore(obj_desc
->event
.os_semaphore
,
264 (u16
) time_desc
->integer
.
268 return_ACPI_STATUS(status
);
271 /*******************************************************************************
273 * FUNCTION: acpi_ex_system_reset_event
275 * PARAMETERS: obj_desc - The object descriptor for this op
279 * DESCRIPTION: Reset an event to a known state.
281 ******************************************************************************/
283 acpi_status
acpi_ex_system_reset_event(union acpi_operand_object
*obj_desc
)
285 acpi_status status
= AE_OK
;
286 acpi_semaphore temp_semaphore
;
288 ACPI_FUNCTION_ENTRY();
291 * We are going to simply delete the existing semaphore and
295 acpi_os_create_semaphore(ACPI_NO_UNIT_LIMIT
, 0, &temp_semaphore
);
296 if (ACPI_SUCCESS(status
)) {
297 (void)acpi_os_delete_semaphore(obj_desc
->event
.os_semaphore
);
298 obj_desc
->event
.os_semaphore
= temp_semaphore
;