blob: b2edf620ba8968d1086dfe1938be8727a8d1580e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
2/******************************************************************************
3 *
4 * Module Name: exsystem - Interface to OS services
5 *
6 *****************************************************************************/
7
8/*
Bob Moore6c9deb72007-02-02 19:48:24 +03009 * Copyright (C) 2000 - 2007, R. Byron Moore
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 * 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <acpi/acpi.h>
46#include <acpi/acinterp.h>
47#include <acpi/acevents.h>
48
49#define _COMPONENT ACPI_EXECUTER
Len Brown4be44fc2005-08-05 00:44:28 -040050ACPI_MODULE_NAME("exsystem")
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52/*******************************************************************************
53 *
54 * FUNCTION: acpi_ex_system_wait_semaphore
55 *
Robert Moore44f6c012005-04-18 22:49:35 -040056 * PARAMETERS: Semaphore - Semaphore to wait on
57 * Timeout - Max time to wait
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 *
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
Bob Mooref6dd9222006-07-07 20:44:38 -040063 * interpreter is released before waiting.
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 *
65 ******************************************************************************/
Bob Moore967440e32006-06-23 17:04:00 -040066acpi_status acpi_ex_system_wait_semaphore(acpi_semaphore semaphore, u16 timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -070067{
Len Brown4be44fc2005-08-05 00:44:28 -040068 acpi_status status;
Len Browna8f4af62007-03-15 04:10:36 -040069 acpi_status status2;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Bob Mooreb229cf92006-04-21 17:15:00 -040071 ACPI_FUNCTION_TRACE(ex_system_wait_semaphore);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Bob Moore967440e32006-06-23 17:04:00 -040073 status = acpi_os_wait_semaphore(semaphore, 1, ACPI_DO_NOT_WAIT);
Len Brown4be44fc2005-08-05 00:44:28 -040074 if (ACPI_SUCCESS(status)) {
75 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 }
77
78 if (status == AE_TIME) {
Bob Moore52fc0b02006-10-02 00:00:00 -040079
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 /* We must wait, so unlock the interpreter */
81
Len Browna8f4af62007-03-15 04:10:36 -040082 acpi_ex_exit_interpreter();
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
Len Brown4be44fc2005-08-05 00:44:28 -040084 status = acpi_os_wait_semaphore(semaphore, 1, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
Len Brown4be44fc2005-08-05 00:44:28 -040086 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
87 "*** Thread awake after blocking, %s\n",
88 acpi_format_exception(status)));
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
90 /* Reacquire the interpreter */
91
Len Browna8f4af62007-03-15 04:10:36 -040092 status2 = acpi_ex_enter_interpreter();
93 if (ACPI_FAILURE(status2)) {
94
95 /* Report fatal error, could not acquire interpreter */
96
97 return_ACPI_STATUS(status2);
98 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 }
100
Len Brown4be44fc2005-08-05 00:44:28 -0400101 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102}
103
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104/*******************************************************************************
105 *
Bob Moore967440e32006-06-23 17:04:00 -0400106 * FUNCTION: acpi_ex_system_wait_mutex
107 *
108 * PARAMETERS: Mutex - Mutex to wait on
109 * Timeout - Max time to wait
110 *
111 * RETURN: Status
112 *
Bob Mooref6dd9222006-07-07 20:44:38 -0400113 * DESCRIPTION: Implements a mutex wait with a check to see if the
114 * mutex is available immediately. If it is not, the
115 * interpreter is released before waiting.
Bob Moore967440e32006-06-23 17:04:00 -0400116 *
117 ******************************************************************************/
118
119acpi_status acpi_ex_system_wait_mutex(acpi_mutex mutex, u16 timeout)
120{
121 acpi_status status;
Len Browna8f4af62007-03-15 04:10:36 -0400122 acpi_status status2;
Bob Moore967440e32006-06-23 17:04:00 -0400123
124 ACPI_FUNCTION_TRACE(ex_system_wait_mutex);
125
126 status = acpi_os_acquire_mutex(mutex, ACPI_DO_NOT_WAIT);
127 if (ACPI_SUCCESS(status)) {
128 return_ACPI_STATUS(status);
129 }
130
131 if (status == AE_TIME) {
132
133 /* We must wait, so unlock the interpreter */
134
Len Browna8f4af62007-03-15 04:10:36 -0400135 acpi_ex_exit_interpreter();
Bob Moore967440e32006-06-23 17:04:00 -0400136
137 status = acpi_os_acquire_mutex(mutex, timeout);
138
139 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
140 "*** Thread awake after blocking, %s\n",
141 acpi_format_exception(status)));
142
143 /* Reacquire the interpreter */
144
Len Browna8f4af62007-03-15 04:10:36 -0400145 status2 = acpi_ex_enter_interpreter();
146 if (ACPI_FAILURE(status2)) {
147
148 /* Report fatal error, could not acquire interpreter */
149
150 return_ACPI_STATUS(status2);
151 }
Bob Moore967440e32006-06-23 17:04:00 -0400152 }
153
154 return_ACPI_STATUS(status);
155}
156
157/*******************************************************************************
158 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 * FUNCTION: acpi_ex_system_do_stall
160 *
Robert Moore44f6c012005-04-18 22:49:35 -0400161 * PARAMETERS: how_long - The amount of time to stall,
162 * in microseconds
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 *
164 * RETURN: Status
165 *
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.
171 *
172 ******************************************************************************/
173
Len Brown4be44fc2005-08-05 00:44:28 -0400174acpi_status acpi_ex_system_do_stall(u32 how_long)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175{
Len Brown4be44fc2005-08-05 00:44:28 -0400176 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
Len Brown4be44fc2005-08-05 00:44:28 -0400178 ACPI_FUNCTION_ENTRY();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
Len Brown4be44fc2005-08-05 00:44:28 -0400180 if (how_long > 255) { /* 255 microseconds */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 /*
182 * Longer than 255 usec, this is an error
183 *
184 * (ACPI specifies 100 usec as max, but this gives some slack in
185 * order to support existing BIOSs)
186 */
Bob Mooreb8e4d892006-01-27 16:43:00 -0500187 ACPI_ERROR((AE_INFO, "Time parameter is too large (%d)",
188 how_long));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 status = AE_AML_OPERAND_VALUE;
Len Brown4be44fc2005-08-05 00:44:28 -0400190 } else {
191 acpi_os_stall(how_long);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 }
193
194 return (status);
195}
196
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197/*******************************************************************************
198 *
199 * FUNCTION: acpi_ex_system_do_suspend
200 *
Robert Moore44f6c012005-04-18 22:49:35 -0400201 * PARAMETERS: how_long - The amount of time to suspend,
202 * in milliseconds
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 *
204 * RETURN: None
205 *
206 * DESCRIPTION: Suspend running thread for specified amount of time.
207 *
208 ******************************************************************************/
209
Len Brown4be44fc2005-08-05 00:44:28 -0400210acpi_status acpi_ex_system_do_suspend(acpi_integer how_long)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211{
Len Browna8f4af62007-03-15 04:10:36 -0400212 acpi_status status;
213
Len Brown4be44fc2005-08-05 00:44:28 -0400214 ACPI_FUNCTION_ENTRY();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
216 /* Since this thread will sleep, we must release the interpreter */
217
Len Browna8f4af62007-03-15 04:10:36 -0400218 acpi_ex_exit_interpreter();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
Len Brown4be44fc2005-08-05 00:44:28 -0400220 acpi_os_sleep(how_long);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
222 /* And now we must get the interpreter again */
223
Len Browna8f4af62007-03-15 04:10:36 -0400224 status = acpi_ex_enter_interpreter();
225 return (status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226}
227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228/*******************************************************************************
229 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 * FUNCTION: acpi_ex_system_signal_event
231 *
Robert Moore44f6c012005-04-18 22:49:35 -0400232 * PARAMETERS: obj_desc - The object descriptor for this op
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 *
Robert Moore44f6c012005-04-18 22:49:35 -0400234 * RETURN: Status
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 *
236 * DESCRIPTION: Provides an access point to perform synchronization operations
237 * within the AML.
238 *
239 ******************************************************************************/
240
Bob Moorec81da662007-02-02 19:48:18 +0300241acpi_status acpi_ex_system_signal_event(union acpi_operand_object * obj_desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242{
Len Brown4be44fc2005-08-05 00:44:28 -0400243 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
Bob Mooreb229cf92006-04-21 17:15:00 -0400245 ACPI_FUNCTION_TRACE(ex_system_signal_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
247 if (obj_desc) {
Bob Moore967440e32006-06-23 17:04:00 -0400248 status =
249 acpi_os_signal_semaphore(obj_desc->event.os_semaphore, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 }
251
Len Brown4be44fc2005-08-05 00:44:28 -0400252 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253}
254
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255/*******************************************************************************
256 *
257 * FUNCTION: acpi_ex_system_wait_event
258 *
Robert Moore44f6c012005-04-18 22:49:35 -0400259 * PARAMETERS: time_desc - The 'time to delay' object descriptor
260 * obj_desc - The object descriptor for this op
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 *
262 * RETURN: Status
263 *
264 * DESCRIPTION: Provides an access point to perform synchronization operations
265 * within the AML. This operation is a request to wait for an
266 * event.
267 *
268 ******************************************************************************/
269
270acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400271acpi_ex_system_wait_event(union acpi_operand_object *time_desc,
272 union acpi_operand_object *obj_desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273{
Len Brown4be44fc2005-08-05 00:44:28 -0400274 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
Bob Mooreb229cf92006-04-21 17:15:00 -0400276 ACPI_FUNCTION_TRACE(ex_system_wait_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
278 if (obj_desc) {
Len Brown4be44fc2005-08-05 00:44:28 -0400279 status =
Bob Moore967440e32006-06-23 17:04:00 -0400280 acpi_ex_system_wait_semaphore(obj_desc->event.os_semaphore,
Len Brown4be44fc2005-08-05 00:44:28 -0400281 (u16) time_desc->integer.
282 value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 }
284
Len Brown4be44fc2005-08-05 00:44:28 -0400285 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286}
287
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288/*******************************************************************************
289 *
290 * FUNCTION: acpi_ex_system_reset_event
291 *
Robert Moore44f6c012005-04-18 22:49:35 -0400292 * PARAMETERS: obj_desc - The object descriptor for this op
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 *
294 * RETURN: Status
295 *
296 * DESCRIPTION: Reset an event to a known state.
297 *
298 ******************************************************************************/
299
Len Brown4be44fc2005-08-05 00:44:28 -0400300acpi_status acpi_ex_system_reset_event(union acpi_operand_object *obj_desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301{
Len Brown4be44fc2005-08-05 00:44:28 -0400302 acpi_status status = AE_OK;
Bob Moore967440e32006-06-23 17:04:00 -0400303 acpi_semaphore temp_semaphore;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
Len Brown4be44fc2005-08-05 00:44:28 -0400305 ACPI_FUNCTION_ENTRY();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
307 /*
308 * We are going to simply delete the existing semaphore and
309 * create a new one!
310 */
Len Brown4be44fc2005-08-05 00:44:28 -0400311 status =
312 acpi_os_create_semaphore(ACPI_NO_UNIT_LIMIT, 0, &temp_semaphore);
313 if (ACPI_SUCCESS(status)) {
Bob Moore967440e32006-06-23 17:04:00 -0400314 (void)acpi_os_delete_semaphore(obj_desc->event.os_semaphore);
315 obj_desc->event.os_semaphore = temp_semaphore;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 }
317
318 return (status);
319}