blob: 72adcf44afbb10e568ea9984308dacaa082e8635 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
2/******************************************************************************
3 *
4 * Module Name: exutils - interpreter/scanner utilities
5 *
6 *****************************************************************************/
7
8/*
Bob Moore4a90c7e2006-01-13 16:22:00 -05009 * Copyright (C) 2000 - 2006, 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/*
46 * DEFINE_AML_GLOBALS is tested in amlcode.h
47 * to determine whether certain global names should be "defined" or only
48 * "declared" in the current compilation. This enhances maintainability
49 * by enabling a single header file to embody all knowledge of the names
50 * in question.
51 *
52 * Exactly one module of any executable should #define DEFINE_GLOBALS
53 * before #including the header files which use this convention. The
54 * names in question will be defined and initialized in that module,
55 * and declared as extern in all other modules which #include those
56 * header files.
57 */
58
59#define DEFINE_AML_GLOBALS
60
61#include <acpi/acpi.h>
62#include <acpi/acinterp.h>
63#include <acpi/amlcode.h>
64#include <acpi/acevents.h>
65
66#define _COMPONENT ACPI_EXECUTER
Len Brown4be44fc2005-08-05 00:44:28 -040067ACPI_MODULE_NAME("exutils")
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Robert Moore44f6c012005-04-18 22:49:35 -040069/* Local prototypes */
Len Brown4be44fc2005-08-05 00:44:28 -040070static u32 acpi_ex_digits_needed(acpi_integer value, u32 base);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
72#ifndef ACPI_NO_METHOD_EXECUTION
Linus Torvalds1da177e2005-04-16 15:20:36 -070073/*******************************************************************************
74 *
75 * FUNCTION: acpi_ex_enter_interpreter
76 *
77 * PARAMETERS: None
78 *
Bob Moore1ba753a2007-02-02 19:48:20 +030079 * RETURN: None
Robert Moore44f6c012005-04-18 22:49:35 -040080 *
Bob Moore1ba753a2007-02-02 19:48:20 +030081 * DESCRIPTION: Enter the interpreter execution region. Failure to enter
82 * the interpreter region is a fatal system error. Used in
83 * conjunction with exit_interpreter.
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 *
85 ******************************************************************************/
86
Bob Moore1ba753a2007-02-02 19:48:20 +030087void acpi_ex_enter_interpreter(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070088{
Len Brown4be44fc2005-08-05 00:44:28 -040089 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Bob Moore1ba753a2007-02-02 19:48:20 +030091 ACPI_FUNCTION_TRACE(ex_reacquire_interpreter);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
Bob Moore4c90ece2006-06-08 16:29:00 -040093 status = acpi_ut_acquire_mutex(ACPI_MTX_INTERPRETER);
Len Brown4be44fc2005-08-05 00:44:28 -040094 if (ACPI_FAILURE(status)) {
Bob Moore1ba753a2007-02-02 19:48:20 +030095 ACPI_ERROR((AE_INFO,
96 "Could not acquire AML Interpreter mutex"));
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 }
98
Bob Moore1ba753a2007-02-02 19:48:20 +030099 return_VOID;
100}
101
102/*******************************************************************************
103 *
104 * FUNCTION: acpi_ex_reacquire_interpreter
105 *
106 * PARAMETERS: None
107 *
108 * RETURN: None
109 *
110 * DESCRIPTION: Reacquire the interpreter execution region from within the
111 * interpreter code. Failure to enter the interpreter region is a
112 * fatal system error. Used in conjuction with
113 * relinquish_interpreter
114 *
115 ******************************************************************************/
116
117void acpi_ex_reacquire_interpreter(void)
118{
119
120 ACPI_FUNCTION_TRACE(ex_reacquire_interpreter);
121
122 /*
123 * If the global serialized flag is set, do not release the interpreter,
124 * since it was not actually released by acpi_ex_relinquish_interpreter.
125 * This forces the interpreter to be single threaded.
126 */
127 if (!acpi_gbl_all_methods_serialized) {
128 acpi_ex_enter_interpreter();
129 }
130
131 return_VOID;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132}
133
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134/*******************************************************************************
135 *
136 * FUNCTION: acpi_ex_exit_interpreter
137 *
138 * PARAMETERS: None
139 *
Robert Moore44f6c012005-04-18 22:49:35 -0400140 * RETURN: None
141 *
Bob Moore1ba753a2007-02-02 19:48:20 +0300142 * DESCRIPTION: Exit the interpreter execution region. This is the top level
143 * routine used to exit the interpreter when all processing has
144 * been completed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 *
146 ******************************************************************************/
147
Len Brown4be44fc2005-08-05 00:44:28 -0400148void acpi_ex_exit_interpreter(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149{
Len Brown4be44fc2005-08-05 00:44:28 -0400150 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
Bob Mooreb229cf92006-04-21 17:15:00 -0400152 ACPI_FUNCTION_TRACE(ex_exit_interpreter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
Bob Moore4c90ece2006-06-08 16:29:00 -0400154 status = acpi_ut_release_mutex(ACPI_MTX_INTERPRETER);
Len Brown4be44fc2005-08-05 00:44:28 -0400155 if (ACPI_FAILURE(status)) {
Bob Moore1ba753a2007-02-02 19:48:20 +0300156 ACPI_ERROR((AE_INFO,
157 "Could not release AML Interpreter mutex"));
158 }
159
160 return_VOID;
161}
162
163/*******************************************************************************
164 *
165 * FUNCTION: acpi_ex_relinquish_interpreter
166 *
167 * PARAMETERS: None
168 *
169 * RETURN: None
170 *
171 * DESCRIPTION: Exit the interpreter execution region, from within the
172 * interpreter - before attempting an operation that will possibly
173 * block the running thread.
174 *
175 * Cases where the interpreter is unlocked internally
176 * 1) Method to be blocked on a Sleep() AML opcode
177 * 2) Method to be blocked on an Acquire() AML opcode
178 * 3) Method to be blocked on a Wait() AML opcode
179 * 4) Method to be blocked to acquire the global lock
180 * 5) Method to be blocked waiting to execute a serialized control method
181 * that is currently executing
182 * 6) About to invoke a user-installed opregion handler
183 *
184 ******************************************************************************/
185
186void acpi_ex_relinquish_interpreter(void)
187{
188
189 ACPI_FUNCTION_TRACE(ex_relinquish_interpreter);
190
191 /*
192 * If the global serialized flag is set, do not release the interpreter.
193 * This forces the interpreter to be single threaded.
194 */
195 if (!acpi_gbl_all_methods_serialized) {
196 acpi_ex_exit_interpreter();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 }
198
199 return_VOID;
200}
201
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202/*******************************************************************************
203 *
204 * FUNCTION: acpi_ex_truncate_for32bit_table
205 *
206 * PARAMETERS: obj_desc - Object to be truncated
207 *
208 * RETURN: none
209 *
Bob Moore1ba753a2007-02-02 19:48:20 +0300210 * DESCRIPTION: Truncate an ACPI Integer to 32 bits if the execution mode is
211 * 32-bit, as determined by the revision of the DSDT.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 *
213 ******************************************************************************/
214
Len Brown4be44fc2005-08-05 00:44:28 -0400215void acpi_ex_truncate_for32bit_table(union acpi_operand_object *obj_desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216{
217
Len Brown4be44fc2005-08-05 00:44:28 -0400218 ACPI_FUNCTION_ENTRY();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
220 /*
221 * Object must be a valid number and we must be executing
222 * a control method
223 */
224 if ((!obj_desc) ||
Len Brown4be44fc2005-08-05 00:44:28 -0400225 (ACPI_GET_OBJECT_TYPE(obj_desc) != ACPI_TYPE_INTEGER)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 return;
227 }
228
229 if (acpi_gbl_integer_byte_width == 4) {
230 /*
231 * We are running a method that exists in a 32-bit ACPI table.
232 * Truncate the value to 32 bits by zeroing out the upper 32-bit field
233 */
234 obj_desc->integer.value &= (acpi_integer) ACPI_UINT32_MAX;
235 }
236}
237
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238/*******************************************************************************
239 *
240 * FUNCTION: acpi_ex_acquire_global_lock
241 *
242 * PARAMETERS: field_flags - Flags with Lock rule:
243 * always_lock or never_lock
244 *
245 * RETURN: TRUE/FALSE indicating whether the lock was actually acquired
246 *
247 * DESCRIPTION: Obtain the global lock and keep track of this fact via two
248 * methods. A global variable keeps the state of the lock, and
249 * the state is returned to the caller.
250 *
251 ******************************************************************************/
252
Len Brown4be44fc2005-08-05 00:44:28 -0400253u8 acpi_ex_acquire_global_lock(u32 field_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254{
Len Brown4be44fc2005-08-05 00:44:28 -0400255 u8 locked = FALSE;
256 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
Bob Mooreb229cf92006-04-21 17:15:00 -0400258 ACPI_FUNCTION_TRACE(ex_acquire_global_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
260 /* Only attempt lock if the always_lock bit is set */
261
262 if (field_flags & AML_FIELD_LOCK_RULE_MASK) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400263
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 /* We should attempt to get the lock, wait forever */
265
Len Brown4be44fc2005-08-05 00:44:28 -0400266 status = acpi_ev_acquire_global_lock(ACPI_WAIT_FOREVER);
267 if (ACPI_SUCCESS(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 locked = TRUE;
Len Brown4be44fc2005-08-05 00:44:28 -0400269 } else {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500270 ACPI_EXCEPTION((AE_INFO, status,
271 "Could not acquire Global Lock"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 }
273 }
274
Bob Moore50eca3e2005-09-30 19:03:00 -0400275 return_UINT8(locked);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276}
277
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278/*******************************************************************************
279 *
280 * FUNCTION: acpi_ex_release_global_lock
281 *
282 * PARAMETERS: locked_by_me - Return value from corresponding call to
283 * acquire_global_lock.
284 *
Robert Moore44f6c012005-04-18 22:49:35 -0400285 * RETURN: None
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 *
287 * DESCRIPTION: Release the global lock if it is locked.
288 *
289 ******************************************************************************/
290
Len Brown4be44fc2005-08-05 00:44:28 -0400291void acpi_ex_release_global_lock(u8 locked_by_me)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292{
Len Brown4be44fc2005-08-05 00:44:28 -0400293 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
Bob Mooreb229cf92006-04-21 17:15:00 -0400295 ACPI_FUNCTION_TRACE(ex_release_global_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
297 /* Only attempt unlock if the caller locked it */
298
299 if (locked_by_me) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400300
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 /* OK, now release the lock */
302
Len Brown4be44fc2005-08-05 00:44:28 -0400303 status = acpi_ev_release_global_lock();
304 if (ACPI_FAILURE(status)) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400305
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 /* Report the error, but there isn't much else we can do */
307
Bob Mooreb8e4d892006-01-27 16:43:00 -0500308 ACPI_EXCEPTION((AE_INFO, status,
309 "Could not release ACPI Global Lock"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 }
311 }
312
313 return_VOID;
314}
315
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316/*******************************************************************************
317 *
318 * FUNCTION: acpi_ex_digits_needed
319 *
320 * PARAMETERS: Value - Value to be represented
321 * Base - Base of representation
322 *
Robert Moore44f6c012005-04-18 22:49:35 -0400323 * RETURN: The number of digits.
324 *
325 * DESCRIPTION: Calculate the number of digits needed to represent the Value
326 * in the given Base (Radix)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 *
328 ******************************************************************************/
329
Len Brown4be44fc2005-08-05 00:44:28 -0400330static u32 acpi_ex_digits_needed(acpi_integer value, u32 base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331{
Len Brown4be44fc2005-08-05 00:44:28 -0400332 u32 num_digits;
333 acpi_integer current_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
Bob Mooreb229cf92006-04-21 17:15:00 -0400335 ACPI_FUNCTION_TRACE(ex_digits_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
337 /* acpi_integer is unsigned, so we don't worry about a '-' prefix */
338
339 if (value == 0) {
Bob Moore50eca3e2005-09-30 19:03:00 -0400340 return_UINT32(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 }
342
343 current_value = value;
344 num_digits = 0;
345
346 /* Count the digits in the requested base */
347
348 while (current_value) {
Len Brown4be44fc2005-08-05 00:44:28 -0400349 (void)acpi_ut_short_divide(current_value, base, &current_value,
350 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 num_digits++;
352 }
353
Bob Moore50eca3e2005-09-30 19:03:00 -0400354 return_UINT32(num_digits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355}
356
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357/*******************************************************************************
358 *
359 * FUNCTION: acpi_ex_eisa_id_to_string
360 *
361 * PARAMETERS: numeric_id - EISA ID to be converted
362 * out_string - Where to put the converted string (8 bytes)
363 *
Robert Moore44f6c012005-04-18 22:49:35 -0400364 * RETURN: None
365 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 * DESCRIPTION: Convert a numeric EISA ID to string representation
367 *
368 ******************************************************************************/
369
Len Brown4be44fc2005-08-05 00:44:28 -0400370void acpi_ex_eisa_id_to_string(u32 numeric_id, char *out_string)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371{
Len Brown4be44fc2005-08-05 00:44:28 -0400372 u32 eisa_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
Len Brown4be44fc2005-08-05 00:44:28 -0400374 ACPI_FUNCTION_ENTRY();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
376 /* Swap ID to big-endian to get contiguous bits */
377
Len Brown4be44fc2005-08-05 00:44:28 -0400378 eisa_id = acpi_ut_dword_byte_swap(numeric_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
Len Brown4be44fc2005-08-05 00:44:28 -0400380 out_string[0] = (char)('@' + (((unsigned long)eisa_id >> 26) & 0x1f));
381 out_string[1] = (char)('@' + ((eisa_id >> 21) & 0x1f));
382 out_string[2] = (char)('@' + ((eisa_id >> 16) & 0x1f));
383 out_string[3] = acpi_ut_hex_to_ascii_char((acpi_integer) eisa_id, 12);
384 out_string[4] = acpi_ut_hex_to_ascii_char((acpi_integer) eisa_id, 8);
385 out_string[5] = acpi_ut_hex_to_ascii_char((acpi_integer) eisa_id, 4);
386 out_string[6] = acpi_ut_hex_to_ascii_char((acpi_integer) eisa_id, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 out_string[7] = 0;
388}
389
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390/*******************************************************************************
391 *
392 * FUNCTION: acpi_ex_unsigned_integer_to_string
393 *
394 * PARAMETERS: Value - Value to be converted
395 * out_string - Where to put the converted string (8 bytes)
396 *
Robert Moore44f6c012005-04-18 22:49:35 -0400397 * RETURN: None, string
398 *
Robert Moore73459f72005-06-24 00:00:00 -0400399 * DESCRIPTION: Convert a number to string representation. Assumes string
Robert Moore44f6c012005-04-18 22:49:35 -0400400 * buffer is large enough to hold the string.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 *
402 ******************************************************************************/
403
Len Brown4be44fc2005-08-05 00:44:28 -0400404void acpi_ex_unsigned_integer_to_string(acpi_integer value, char *out_string)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405{
Len Brown4be44fc2005-08-05 00:44:28 -0400406 u32 count;
407 u32 digits_needed;
408 u32 remainder;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
Len Brown4be44fc2005-08-05 00:44:28 -0400410 ACPI_FUNCTION_ENTRY();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
Len Brown4be44fc2005-08-05 00:44:28 -0400412 digits_needed = acpi_ex_digits_needed(value, 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 out_string[digits_needed] = 0;
414
415 for (count = digits_needed; count > 0; count--) {
Len Brown4be44fc2005-08-05 00:44:28 -0400416 (void)acpi_ut_short_divide(value, 10, &value, &remainder);
417 out_string[count - 1] = (char)('0' + remainder);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 }
419}
420
421#endif