]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/acpi/executer/exsystem.c
[ACPI] ACPICA 20060210
[mirror_ubuntu-artful-kernel.git] / drivers / acpi / executer / exsystem.c
CommitLineData
1da177e4
LT
1
2/******************************************************************************
3 *
4 * Module Name: exsystem - Interface to OS services
5 *
6 *****************************************************************************/
7
8/*
4a90c7e8 9 * Copyright (C) 2000 - 2006, R. Byron Moore
1da177e4
LT
10 * All rights reserved.
11 *
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.
26 *
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.
30 *
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.
43 */
44
1da177e4
LT
45#include <acpi/acpi.h>
46#include <acpi/acinterp.h>
47#include <acpi/acevents.h>
48
49#define _COMPONENT ACPI_EXECUTER
4be44fcd 50ACPI_MODULE_NAME("exsystem")
1da177e4
LT
51
52/*******************************************************************************
53 *
54 * FUNCTION: acpi_ex_system_wait_semaphore
55 *
44f6c012
RM
56 * PARAMETERS: Semaphore - Semaphore to wait on
57 * Timeout - Max time to wait
1da177e4
LT
58 *
59 * RETURN: Status
60 *
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.
64 *
65 ******************************************************************************/
4be44fcd 66acpi_status acpi_ex_system_wait_semaphore(acpi_handle semaphore, u16 timeout)
1da177e4 67{
4be44fcd
LB
68 acpi_status status;
69 acpi_status status2;
1da177e4 70
4be44fcd 71 ACPI_FUNCTION_TRACE("ex_system_wait_semaphore");
1da177e4 72
4be44fcd
LB
73 status = acpi_os_wait_semaphore(semaphore, 1, 0);
74 if (ACPI_SUCCESS(status)) {
75 return_ACPI_STATUS(status);
1da177e4
LT
76 }
77
78 if (status == AE_TIME) {
52fc0b02 79
1da177e4
LT
80 /* We must wait, so unlock the interpreter */
81
4be44fcd 82 acpi_ex_exit_interpreter();
1da177e4 83
4be44fcd 84 status = acpi_os_wait_semaphore(semaphore, 1, timeout);
1da177e4 85
4be44fcd
LB
86 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
87 "*** Thread awake after blocking, %s\n",
88 acpi_format_exception(status)));
1da177e4
LT
89
90 /* Reacquire the interpreter */
91
4be44fcd
LB
92 status2 = acpi_ex_enter_interpreter();
93 if (ACPI_FAILURE(status2)) {
52fc0b02 94
1da177e4
LT
95 /* Report fatal error, could not acquire interpreter */
96
4be44fcd 97 return_ACPI_STATUS(status2);
1da177e4
LT
98 }
99 }
100
4be44fcd 101 return_ACPI_STATUS(status);
1da177e4
LT
102}
103
1da177e4
LT
104/*******************************************************************************
105 *
106 * FUNCTION: acpi_ex_system_do_stall
107 *
44f6c012
RM
108 * PARAMETERS: how_long - The amount of time to stall,
109 * in microseconds
1da177e4
LT
110 *
111 * RETURN: Status
112 *
113 * DESCRIPTION: Suspend running thread for specified amount of time.
114 * Note: ACPI specification requires that Stall() does not
115 * relinquish the processor, and delays longer than 100 usec
116 * should use Sleep() instead. We allow stalls up to 255 usec
117 * for compatibility with other interpreters and existing BIOSs.
118 *
119 ******************************************************************************/
120
4be44fcd 121acpi_status acpi_ex_system_do_stall(u32 how_long)
1da177e4 122{
4be44fcd 123 acpi_status status = AE_OK;
1da177e4 124
4be44fcd 125 ACPI_FUNCTION_ENTRY();
1da177e4 126
4be44fcd 127 if (how_long > 255) { /* 255 microseconds */
1da177e4
LT
128 /*
129 * Longer than 255 usec, this is an error
130 *
131 * (ACPI specifies 100 usec as max, but this gives some slack in
132 * order to support existing BIOSs)
133 */
b8e4d893
BM
134 ACPI_ERROR((AE_INFO, "Time parameter is too large (%d)",
135 how_long));
1da177e4 136 status = AE_AML_OPERAND_VALUE;
4be44fcd
LB
137 } else {
138 acpi_os_stall(how_long);
1da177e4
LT
139 }
140
141 return (status);
142}
143
1da177e4
LT
144/*******************************************************************************
145 *
146 * FUNCTION: acpi_ex_system_do_suspend
147 *
44f6c012
RM
148 * PARAMETERS: how_long - The amount of time to suspend,
149 * in milliseconds
1da177e4
LT
150 *
151 * RETURN: None
152 *
153 * DESCRIPTION: Suspend running thread for specified amount of time.
154 *
155 ******************************************************************************/
156
4be44fcd 157acpi_status acpi_ex_system_do_suspend(acpi_integer how_long)
1da177e4 158{
4be44fcd 159 acpi_status status;
1da177e4 160
4be44fcd 161 ACPI_FUNCTION_ENTRY();
1da177e4
LT
162
163 /* Since this thread will sleep, we must release the interpreter */
164
4be44fcd 165 acpi_ex_exit_interpreter();
1da177e4 166
4be44fcd 167 acpi_os_sleep(how_long);
1da177e4
LT
168
169 /* And now we must get the interpreter again */
170
4be44fcd 171 status = acpi_ex_enter_interpreter();
1da177e4
LT
172 return (status);
173}
174
1da177e4
LT
175/*******************************************************************************
176 *
177 * FUNCTION: acpi_ex_system_acquire_mutex
178 *
44f6c012
RM
179 * PARAMETERS: time_desc - The 'time to delay' object descriptor
180 * obj_desc - The object descriptor for this op
1da177e4
LT
181 *
182 * RETURN: Status
183 *
184 * DESCRIPTION: Provides an access point to perform synchronization operations
185 * within the AML. This function will cause a lock to be generated
186 * for the Mutex pointed to by obj_desc.
187 *
188 ******************************************************************************/
189
190acpi_status
4be44fcd
LB
191acpi_ex_system_acquire_mutex(union acpi_operand_object * time_desc,
192 union acpi_operand_object * obj_desc)
1da177e4 193{
4be44fcd 194 acpi_status status = AE_OK;
1da177e4 195
4be44fcd 196 ACPI_FUNCTION_TRACE_PTR("ex_system_acquire_mutex", obj_desc);
1da177e4
LT
197
198 if (!obj_desc) {
4be44fcd 199 return_ACPI_STATUS(AE_BAD_PARAMETER);
1da177e4
LT
200 }
201
44f6c012
RM
202 /* Support for the _GL_ Mutex object -- go get the global lock */
203
1da177e4 204 if (obj_desc->mutex.semaphore == acpi_gbl_global_lock_semaphore) {
4be44fcd
LB
205 status =
206 acpi_ev_acquire_global_lock((u16) time_desc->integer.value);
207 return_ACPI_STATUS(status);
1da177e4
LT
208 }
209
4be44fcd
LB
210 status = acpi_ex_system_wait_semaphore(obj_desc->mutex.semaphore,
211 (u16) time_desc->integer.value);
212 return_ACPI_STATUS(status);
1da177e4
LT
213}
214
1da177e4
LT
215/*******************************************************************************
216 *
217 * FUNCTION: acpi_ex_system_release_mutex
218 *
44f6c012 219 * PARAMETERS: obj_desc - The object descriptor for this op
1da177e4
LT
220 *
221 * RETURN: Status
222 *
223 * DESCRIPTION: Provides an access point to perform synchronization operations
224 * within the AML. This operation is a request to release a
225 * previously acquired Mutex. If the Mutex variable is set then
226 * it will be decremented.
227 *
228 ******************************************************************************/
229
4be44fcd 230acpi_status acpi_ex_system_release_mutex(union acpi_operand_object *obj_desc)
1da177e4 231{
4be44fcd 232 acpi_status status = AE_OK;
1da177e4 233
4be44fcd 234 ACPI_FUNCTION_TRACE("ex_system_release_mutex");
1da177e4
LT
235
236 if (!obj_desc) {
4be44fcd 237 return_ACPI_STATUS(AE_BAD_PARAMETER);
1da177e4
LT
238 }
239
44f6c012
RM
240 /* Support for the _GL_ Mutex object -- release the global lock */
241
1da177e4 242 if (obj_desc->mutex.semaphore == acpi_gbl_global_lock_semaphore) {
4be44fcd
LB
243 status = acpi_ev_release_global_lock();
244 return_ACPI_STATUS(status);
1da177e4
LT
245 }
246
4be44fcd
LB
247 status = acpi_os_signal_semaphore(obj_desc->mutex.semaphore, 1);
248 return_ACPI_STATUS(status);
1da177e4
LT
249}
250
1da177e4
LT
251/*******************************************************************************
252 *
253 * FUNCTION: acpi_ex_system_signal_event
254 *
44f6c012 255 * PARAMETERS: obj_desc - The object descriptor for this op
1da177e4 256 *
44f6c012 257 * RETURN: Status
1da177e4
LT
258 *
259 * DESCRIPTION: Provides an access point to perform synchronization operations
260 * within the AML.
261 *
262 ******************************************************************************/
263
4be44fcd 264acpi_status acpi_ex_system_signal_event(union acpi_operand_object *obj_desc)
1da177e4 265{
4be44fcd 266 acpi_status status = AE_OK;
1da177e4 267
4be44fcd 268 ACPI_FUNCTION_TRACE("ex_system_signal_event");
1da177e4
LT
269
270 if (obj_desc) {
4be44fcd 271 status = acpi_os_signal_semaphore(obj_desc->event.semaphore, 1);
1da177e4
LT
272 }
273
4be44fcd 274 return_ACPI_STATUS(status);
1da177e4
LT
275}
276
1da177e4
LT
277/*******************************************************************************
278 *
279 * FUNCTION: acpi_ex_system_wait_event
280 *
44f6c012
RM
281 * PARAMETERS: time_desc - The 'time to delay' object descriptor
282 * obj_desc - The object descriptor for this op
1da177e4
LT
283 *
284 * RETURN: Status
285 *
286 * DESCRIPTION: Provides an access point to perform synchronization operations
287 * within the AML. This operation is a request to wait for an
288 * event.
289 *
290 ******************************************************************************/
291
292acpi_status
4be44fcd
LB
293acpi_ex_system_wait_event(union acpi_operand_object *time_desc,
294 union acpi_operand_object *obj_desc)
1da177e4 295{
4be44fcd 296 acpi_status status = AE_OK;
1da177e4 297
4be44fcd 298 ACPI_FUNCTION_TRACE("ex_system_wait_event");
1da177e4
LT
299
300 if (obj_desc) {
4be44fcd
LB
301 status =
302 acpi_ex_system_wait_semaphore(obj_desc->event.semaphore,
303 (u16) time_desc->integer.
304 value);
1da177e4
LT
305 }
306
4be44fcd 307 return_ACPI_STATUS(status);
1da177e4
LT
308}
309
1da177e4
LT
310/*******************************************************************************
311 *
312 * FUNCTION: acpi_ex_system_reset_event
313 *
44f6c012 314 * PARAMETERS: obj_desc - The object descriptor for this op
1da177e4
LT
315 *
316 * RETURN: Status
317 *
318 * DESCRIPTION: Reset an event to a known state.
319 *
320 ******************************************************************************/
321
4be44fcd 322acpi_status acpi_ex_system_reset_event(union acpi_operand_object *obj_desc)
1da177e4 323{
4be44fcd
LB
324 acpi_status status = AE_OK;
325 void *temp_semaphore;
1da177e4 326
4be44fcd 327 ACPI_FUNCTION_ENTRY();
1da177e4
LT
328
329 /*
330 * We are going to simply delete the existing semaphore and
331 * create a new one!
332 */
4be44fcd
LB
333 status =
334 acpi_os_create_semaphore(ACPI_NO_UNIT_LIMIT, 0, &temp_semaphore);
335 if (ACPI_SUCCESS(status)) {
336 (void)acpi_os_delete_semaphore(obj_desc->event.semaphore);
1da177e4
LT
337 obj_desc->event.semaphore = temp_semaphore;
338 }
339
340 return (status);
341}