1 // SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0
2 /******************************************************************************
4 * Module Name: exutils - interpreter/scanner utilities
6 * Copyright (C) 2000 - 2018, Intel Corp.
8 *****************************************************************************/
11 * DEFINE_AML_GLOBALS is tested in amlcode.h
12 * to determine whether certain global names should be "defined" or only
13 * "declared" in the current compilation. This enhances maintainability
14 * by enabling a single header file to embody all knowledge of the names
17 * Exactly one module of any executable should #define DEFINE_GLOBALS
18 * before #including the header files which use this convention. The
19 * names in question will be defined and initialized in that module,
20 * and declared as extern in all other modules which #include those
24 #define DEFINE_AML_GLOBALS
26 #include <acpi/acpi.h>
31 #define _COMPONENT ACPI_EXECUTER
32 ACPI_MODULE_NAME("exutils")
34 /* Local prototypes */
35 static u32
acpi_ex_digits_needed(u64 value
, u32 base
);
37 #ifndef ACPI_NO_METHOD_EXECUTION
38 /*******************************************************************************
40 * FUNCTION: acpi_ex_enter_interpreter
46 * DESCRIPTION: Enter the interpreter execution region. Failure to enter
47 * the interpreter region is a fatal system error. Used in
48 * conjunction with exit_interpreter.
50 ******************************************************************************/
52 void acpi_ex_enter_interpreter(void)
56 ACPI_FUNCTION_TRACE(ex_enter_interpreter
);
58 status
= acpi_ut_acquire_mutex(ACPI_MTX_INTERPRETER
);
59 if (ACPI_FAILURE(status
)) {
61 "Could not acquire AML Interpreter mutex"));
63 status
= acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE
);
64 if (ACPI_FAILURE(status
)) {
65 ACPI_ERROR((AE_INFO
, "Could not acquire AML Namespace mutex"));
71 /*******************************************************************************
73 * FUNCTION: acpi_ex_exit_interpreter
79 * DESCRIPTION: Exit the interpreter execution region. This is the top level
80 * routine used to exit the interpreter when all processing has
81 * been completed, or when the method blocks.
83 * Cases where the interpreter is unlocked internally:
84 * 1) Method will be blocked on a Sleep() AML opcode
85 * 2) Method will be blocked on an Acquire() AML opcode
86 * 3) Method will be blocked on a Wait() AML opcode
87 * 4) Method will be blocked to acquire the global lock
88 * 5) Method will be blocked waiting to execute a serialized control
89 * method that is currently executing
90 * 6) About to invoke a user-installed opregion handler
92 ******************************************************************************/
94 void acpi_ex_exit_interpreter(void)
98 ACPI_FUNCTION_TRACE(ex_exit_interpreter
);
100 status
= acpi_ut_release_mutex(ACPI_MTX_NAMESPACE
);
101 if (ACPI_FAILURE(status
)) {
102 ACPI_ERROR((AE_INFO
, "Could not release AML Namespace mutex"));
104 status
= acpi_ut_release_mutex(ACPI_MTX_INTERPRETER
);
105 if (ACPI_FAILURE(status
)) {
107 "Could not release AML Interpreter mutex"));
113 /*******************************************************************************
115 * FUNCTION: acpi_ex_truncate_for32bit_table
117 * PARAMETERS: obj_desc - Object to be truncated
119 * RETURN: TRUE if a truncation was performed, FALSE otherwise.
121 * DESCRIPTION: Truncate an ACPI Integer to 32 bits if the execution mode is
122 * 32-bit, as determined by the revision of the DSDT.
124 ******************************************************************************/
126 u8
acpi_ex_truncate_for32bit_table(union acpi_operand_object
*obj_desc
)
129 ACPI_FUNCTION_ENTRY();
132 * Object must be a valid number and we must be executing
133 * a control method. Object could be NS node for AML_INT_NAMEPATH_OP.
136 (ACPI_GET_DESCRIPTOR_TYPE(obj_desc
) != ACPI_DESC_TYPE_OPERAND
) ||
137 (obj_desc
->common
.type
!= ACPI_TYPE_INTEGER
)) {
141 if ((acpi_gbl_integer_byte_width
== 4) &&
142 (obj_desc
->integer
.value
> (u64
)ACPI_UINT32_MAX
)) {
144 * We are executing in a 32-bit ACPI table. Truncate
145 * the value to 32 bits by zeroing out the upper 32-bit field
147 obj_desc
->integer
.value
&= (u64
)ACPI_UINT32_MAX
;
154 /*******************************************************************************
156 * FUNCTION: acpi_ex_acquire_global_lock
158 * PARAMETERS: field_flags - Flags with Lock rule:
159 * always_lock or never_lock
163 * DESCRIPTION: Obtain the ACPI hardware Global Lock, only if the field
164 * flags specifiy that it is to be obtained before field access.
166 ******************************************************************************/
168 void acpi_ex_acquire_global_lock(u32 field_flags
)
172 ACPI_FUNCTION_TRACE(ex_acquire_global_lock
);
174 /* Only use the lock if the always_lock bit is set */
176 if (!(field_flags
& AML_FIELD_LOCK_RULE_MASK
)) {
180 /* Attempt to get the global lock, wait forever */
182 status
= acpi_ex_acquire_mutex_object(ACPI_WAIT_FOREVER
,
183 acpi_gbl_global_lock_mutex
,
184 acpi_os_get_thread_id());
186 if (ACPI_FAILURE(status
)) {
187 ACPI_EXCEPTION((AE_INFO
, status
,
188 "Could not acquire Global Lock"));
194 /*******************************************************************************
196 * FUNCTION: acpi_ex_release_global_lock
198 * PARAMETERS: field_flags - Flags with Lock rule:
199 * always_lock or never_lock
203 * DESCRIPTION: Release the ACPI hardware Global Lock
205 ******************************************************************************/
207 void acpi_ex_release_global_lock(u32 field_flags
)
211 ACPI_FUNCTION_TRACE(ex_release_global_lock
);
213 /* Only use the lock if the always_lock bit is set */
215 if (!(field_flags
& AML_FIELD_LOCK_RULE_MASK
)) {
219 /* Release the global lock */
221 status
= acpi_ex_release_mutex_object(acpi_gbl_global_lock_mutex
);
222 if (ACPI_FAILURE(status
)) {
224 /* Report the error, but there isn't much else we can do */
226 ACPI_EXCEPTION((AE_INFO
, status
,
227 "Could not release Global Lock"));
233 /*******************************************************************************
235 * FUNCTION: acpi_ex_digits_needed
237 * PARAMETERS: value - Value to be represented
238 * base - Base of representation
240 * RETURN: The number of digits.
242 * DESCRIPTION: Calculate the number of digits needed to represent the Value
243 * in the given Base (Radix)
245 ******************************************************************************/
247 static u32
acpi_ex_digits_needed(u64 value
, u32 base
)
252 ACPI_FUNCTION_TRACE(ex_digits_needed
);
254 /* u64 is unsigned, so we don't worry about a '-' prefix */
260 current_value
= value
;
263 /* Count the digits in the requested base */
265 while (current_value
) {
266 (void)acpi_ut_short_divide(current_value
, base
, ¤t_value
,
271 return_UINT32(num_digits
);
274 /*******************************************************************************
276 * FUNCTION: acpi_ex_eisa_id_to_string
278 * PARAMETERS: out_string - Where to put the converted string (8 bytes)
279 * compressed_id - EISAID to be converted
283 * DESCRIPTION: Convert a numeric EISAID to string representation. Return
284 * buffer must be large enough to hold the string. The string
285 * returned is always exactly of length ACPI_EISAID_STRING_SIZE
286 * (includes null terminator). The EISAID is always 32 bits.
288 ******************************************************************************/
290 void acpi_ex_eisa_id_to_string(char *out_string
, u64 compressed_id
)
294 ACPI_FUNCTION_ENTRY();
296 /* The EISAID should be a 32-bit integer */
298 if (compressed_id
> ACPI_UINT32_MAX
) {
299 ACPI_WARNING((AE_INFO
,
300 "Expected EISAID is larger than 32 bits: "
301 "0x%8.8X%8.8X, truncating",
302 ACPI_FORMAT_UINT64(compressed_id
)));
305 /* Swap ID to big-endian to get contiguous bits */
307 swapped_id
= acpi_ut_dword_byte_swap((u32
)compressed_id
);
309 /* First 3 bytes are uppercase letters. Next 4 bytes are hexadecimal */
312 (char)(0x40 + (((unsigned long)swapped_id
>> 26) & 0x1F));
313 out_string
[1] = (char)(0x40 + ((swapped_id
>> 21) & 0x1F));
314 out_string
[2] = (char)(0x40 + ((swapped_id
>> 16) & 0x1F));
315 out_string
[3] = acpi_ut_hex_to_ascii_char((u64
) swapped_id
, 12);
316 out_string
[4] = acpi_ut_hex_to_ascii_char((u64
) swapped_id
, 8);
317 out_string
[5] = acpi_ut_hex_to_ascii_char((u64
) swapped_id
, 4);
318 out_string
[6] = acpi_ut_hex_to_ascii_char((u64
) swapped_id
, 0);
322 /*******************************************************************************
324 * FUNCTION: acpi_ex_integer_to_string
326 * PARAMETERS: out_string - Where to put the converted string. At least
327 * 21 bytes are needed to hold the largest
328 * possible 64-bit integer.
329 * value - Value to be converted
331 * RETURN: Converted string in out_string
333 * DESCRIPTION: Convert a 64-bit integer to decimal string representation.
334 * Assumes string buffer is large enough to hold the string. The
335 * largest string is (ACPI_MAX64_DECIMAL_DIGITS + 1).
337 ******************************************************************************/
339 void acpi_ex_integer_to_string(char *out_string
, u64 value
)
345 ACPI_FUNCTION_ENTRY();
347 digits_needed
= acpi_ex_digits_needed(value
, 10);
348 out_string
[digits_needed
] = 0;
350 for (count
= digits_needed
; count
> 0; count
--) {
351 (void)acpi_ut_short_divide(value
, 10, &value
, &remainder
);
352 out_string
[count
- 1] = (char)('0' + remainder
);
356 /*******************************************************************************
358 * FUNCTION: acpi_ex_pci_cls_to_string
360 * PARAMETERS: out_string - Where to put the converted string (7 bytes)
361 * class_code - PCI class code to be converted (3 bytes)
363 * RETURN: Converted string in out_string
365 * DESCRIPTION: Convert 3-bytes PCI class code to string representation.
366 * Return buffer must be large enough to hold the string. The
367 * string returned is always exactly of length
368 * ACPI_PCICLS_STRING_SIZE (includes null terminator).
370 ******************************************************************************/
372 void acpi_ex_pci_cls_to_string(char *out_string
, u8 class_code
[3])
375 ACPI_FUNCTION_ENTRY();
377 /* All 3 bytes are hexadecimal */
379 out_string
[0] = acpi_ut_hex_to_ascii_char((u64
)class_code
[0], 4);
380 out_string
[1] = acpi_ut_hex_to_ascii_char((u64
)class_code
[0], 0);
381 out_string
[2] = acpi_ut_hex_to_ascii_char((u64
)class_code
[1], 4);
382 out_string
[3] = acpi_ut_hex_to_ascii_char((u64
)class_code
[1], 0);
383 out_string
[4] = acpi_ut_hex_to_ascii_char((u64
)class_code
[2], 4);
384 out_string
[5] = acpi_ut_hex_to_ascii_char((u64
)class_code
[2], 0);
388 /*******************************************************************************
390 * FUNCTION: acpi_is_valid_space_id
392 * PARAMETERS: space_id - ID to be validated
394 * RETURN: TRUE if space_id is a valid/supported ID.
396 * DESCRIPTION: Validate an operation region space_ID.
398 ******************************************************************************/
400 u8
acpi_is_valid_space_id(u8 space_id
)
403 if ((space_id
>= ACPI_NUM_PREDEFINED_REGIONS
) &&
404 (space_id
< ACPI_USER_REGION_BEGIN
) &&
405 (space_id
!= ACPI_ADR_SPACE_DATA_TABLE
) &&
406 (space_id
!= ACPI_ADR_SPACE_FIXED_HARDWARE
)) {