2 /******************************************************************************
4 * Module Name: exutils - interpreter/scanner utilities
6 *****************************************************************************/
9 * Copyright (C) 2000 - 2005, 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
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.
47 * DEFINE_AML_GLOBALS is tested in amlcode.h
48 * to determine whether certain global names should be "defined" or only
49 * "declared" in the current compilation. This enhances maintainability
50 * by enabling a single header file to embody all knowledge of the names
53 * Exactly one module of any executable should #define DEFINE_GLOBALS
54 * before #including the header files which use this convention. The
55 * names in question will be defined and initialized in that module,
56 * and declared as extern in all other modules which #include those
60 #define DEFINE_AML_GLOBALS
62 #include <acpi/acpi.h>
63 #include <acpi/acinterp.h>
64 #include <acpi/amlcode.h>
65 #include <acpi/acevents.h>
67 #define _COMPONENT ACPI_EXECUTER
68 ACPI_MODULE_NAME ("exutils")
71 #ifndef ACPI_NO_METHOD_EXECUTION
73 /*******************************************************************************
75 * FUNCTION: acpi_ex_enter_interpreter
79 * DESCRIPTION: Enter the interpreter execution region. Failure to enter
80 * the interpreter region is a fatal system error
82 ******************************************************************************/
85 acpi_ex_enter_interpreter (void)
89 ACPI_FUNCTION_TRACE ("ex_enter_interpreter");
92 status
= acpi_ut_acquire_mutex (ACPI_MTX_EXECUTE
);
93 if (ACPI_FAILURE (status
)) {
94 ACPI_REPORT_ERROR (("Could not acquire interpreter mutex\n"));
97 return_ACPI_STATUS (status
);
101 /*******************************************************************************
103 * FUNCTION: acpi_ex_exit_interpreter
107 * DESCRIPTION: Exit the interpreter execution region
109 * Cases where the interpreter is unlocked:
110 * 1) Completion of the execution of a control method
111 * 2) Method blocked on a Sleep() AML opcode
112 * 3) Method blocked on an Acquire() AML opcode
113 * 4) Method blocked on a Wait() AML opcode
114 * 5) Method blocked to acquire the global lock
115 * 6) Method blocked to execute a serialized control method that is
117 * 7) About to invoke a user-installed opregion handler
119 ******************************************************************************/
122 acpi_ex_exit_interpreter (void)
127 ACPI_FUNCTION_TRACE ("ex_exit_interpreter");
130 status
= acpi_ut_release_mutex (ACPI_MTX_EXECUTE
);
131 if (ACPI_FAILURE (status
)) {
132 ACPI_REPORT_ERROR (("Could not release interpreter mutex\n"));
139 /*******************************************************************************
141 * FUNCTION: acpi_ex_truncate_for32bit_table
143 * PARAMETERS: obj_desc - Object to be truncated
147 * DESCRIPTION: Truncate a number to 32-bits if the currently executing method
148 * belongs to a 32-bit ACPI table.
150 ******************************************************************************/
153 acpi_ex_truncate_for32bit_table (
154 union acpi_operand_object
*obj_desc
)
157 ACPI_FUNCTION_ENTRY ();
161 * Object must be a valid number and we must be executing
165 (ACPI_GET_OBJECT_TYPE (obj_desc
) != ACPI_TYPE_INTEGER
)) {
169 if (acpi_gbl_integer_byte_width
== 4) {
171 * We are running a method that exists in a 32-bit ACPI table.
172 * Truncate the value to 32 bits by zeroing out the upper 32-bit field
174 obj_desc
->integer
.value
&= (acpi_integer
) ACPI_UINT32_MAX
;
179 /*******************************************************************************
181 * FUNCTION: acpi_ex_acquire_global_lock
183 * PARAMETERS: field_flags - Flags with Lock rule:
184 * always_lock or never_lock
186 * RETURN: TRUE/FALSE indicating whether the lock was actually acquired
188 * DESCRIPTION: Obtain the global lock and keep track of this fact via two
189 * methods. A global variable keeps the state of the lock, and
190 * the state is returned to the caller.
192 ******************************************************************************/
195 acpi_ex_acquire_global_lock (
202 ACPI_FUNCTION_TRACE ("ex_acquire_global_lock");
205 /* Only attempt lock if the always_lock bit is set */
207 if (field_flags
& AML_FIELD_LOCK_RULE_MASK
) {
208 /* We should attempt to get the lock, wait forever */
210 status
= acpi_ev_acquire_global_lock (ACPI_WAIT_FOREVER
);
211 if (ACPI_SUCCESS (status
)) {
215 ACPI_DEBUG_PRINT ((ACPI_DB_ERROR
, "Could not acquire Global Lock, %s\n",
216 acpi_format_exception (status
)));
220 return_VALUE (locked
);
224 /*******************************************************************************
226 * FUNCTION: acpi_ex_release_global_lock
228 * PARAMETERS: locked_by_me - Return value from corresponding call to
229 * acquire_global_lock.
233 * DESCRIPTION: Release the global lock if it is locked.
235 ******************************************************************************/
238 acpi_ex_release_global_lock (
244 ACPI_FUNCTION_TRACE ("ex_release_global_lock");
247 /* Only attempt unlock if the caller locked it */
250 /* OK, now release the lock */
252 status
= acpi_ev_release_global_lock ();
253 if (ACPI_FAILURE (status
)) {
254 /* Report the error, but there isn't much else we can do */
256 ACPI_REPORT_ERROR (("Could not release ACPI Global Lock, %s\n",
257 acpi_format_exception (status
)));
265 /*******************************************************************************
267 * FUNCTION: acpi_ex_digits_needed
269 * PARAMETERS: Value - Value to be represented
270 * Base - Base of representation
272 * RETURN: the number of digits needed to represent Value in Base
274 ******************************************************************************/
277 acpi_ex_digits_needed (
282 acpi_integer current_value
;
285 ACPI_FUNCTION_TRACE ("ex_digits_needed");
288 /* acpi_integer is unsigned, so we don't worry about a '-' prefix */
294 current_value
= value
;
297 /* Count the digits in the requested base */
299 while (current_value
) {
300 (void) acpi_ut_short_divide (current_value
, base
, ¤t_value
, NULL
);
304 return_VALUE (num_digits
);
308 /*******************************************************************************
310 * FUNCTION: acpi_ex_eisa_id_to_string
312 * PARAMETERS: numeric_id - EISA ID to be converted
313 * out_string - Where to put the converted string (8 bytes)
315 * DESCRIPTION: Convert a numeric EISA ID to string representation
317 ******************************************************************************/
320 acpi_ex_eisa_id_to_string (
327 ACPI_FUNCTION_ENTRY ();
330 /* Swap ID to big-endian to get contiguous bits */
332 eisa_id
= acpi_ut_dword_byte_swap (numeric_id
);
334 out_string
[0] = (char) ('@' + (((unsigned long) eisa_id
>> 26) & 0x1f));
335 out_string
[1] = (char) ('@' + ((eisa_id
>> 21) & 0x1f));
336 out_string
[2] = (char) ('@' + ((eisa_id
>> 16) & 0x1f));
337 out_string
[3] = acpi_ut_hex_to_ascii_char ((acpi_integer
) eisa_id
, 12);
338 out_string
[4] = acpi_ut_hex_to_ascii_char ((acpi_integer
) eisa_id
, 8);
339 out_string
[5] = acpi_ut_hex_to_ascii_char ((acpi_integer
) eisa_id
, 4);
340 out_string
[6] = acpi_ut_hex_to_ascii_char ((acpi_integer
) eisa_id
, 0);
345 /*******************************************************************************
347 * FUNCTION: acpi_ex_unsigned_integer_to_string
349 * PARAMETERS: Value - Value to be converted
350 * out_string - Where to put the converted string (8 bytes)
352 * RETURN: Convert a number to string representation
354 ******************************************************************************/
357 acpi_ex_unsigned_integer_to_string (
366 ACPI_FUNCTION_ENTRY ();
369 digits_needed
= acpi_ex_digits_needed (value
, 10);
370 out_string
[digits_needed
] = 0;
372 for (count
= digits_needed
; count
> 0; count
--) {
373 (void) acpi_ut_short_divide (value
, 10, &value
, &remainder
);
374 out_string
[count
-1] = (char) ('0' + remainder
);\