Merge remote-tracking branch 'sound-asoc/for-next'
[deliverable/linux.git] / drivers / acpi / acpica / exutils.c
CommitLineData
1da177e4
LT
1/******************************************************************************
2 *
3 * Module Name: exutils - interpreter/scanner utilities
4 *
5 *****************************************************************************/
6
7/*
c8100dc4 8 * Copyright (C) 2000 - 2016, Intel Corp.
1da177e4
LT
9 * All rights reserved.
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions, and the following disclaimer,
16 * without modification.
17 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
18 * substantially similar to the "NO WARRANTY" disclaimer below
19 * ("Disclaimer") and any redistribution must be conditioned upon
20 * including a substantially similar Disclaimer requirement for further
21 * binary redistribution.
22 * 3. Neither the names of the above-listed copyright holders nor the names
23 * of any contributors may be used to endorse or promote products derived
24 * from this software without specific prior written permission.
25 *
26 * Alternatively, this software may be distributed under the terms of the
27 * GNU General Public License ("GPL") version 2 as published by the Free
28 * Software Foundation.
29 *
30 * NO WARRANTY
31 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
32 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
33 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
34 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
35 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
36 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
37 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
38 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
39 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
40 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
41 * POSSIBILITY OF SUCH DAMAGES.
42 */
43
1da177e4
LT
44/*
45 * DEFINE_AML_GLOBALS is tested in amlcode.h
46 * to determine whether certain global names should be "defined" or only
73a3090a 47 * "declared" in the current compilation. This enhances maintainability
1da177e4
LT
48 * by enabling a single header file to embody all knowledge of the names
49 * in question.
50 *
51 * Exactly one module of any executable should #define DEFINE_GLOBALS
73a3090a 52 * before #including the header files which use this convention. The
1da177e4
LT
53 * names in question will be defined and initialized in that module,
54 * and declared as extern in all other modules which #include those
55 * header files.
56 */
57
58#define DEFINE_AML_GLOBALS
59
60#include <acpi/acpi.h>
e2f7a777
LB
61#include "accommon.h"
62#include "acinterp.h"
63#include "amlcode.h"
1da177e4
LT
64
65#define _COMPONENT ACPI_EXECUTER
4be44fcd 66ACPI_MODULE_NAME("exutils")
1da177e4 67
44f6c012 68/* Local prototypes */
5df7e6cb 69static u32 acpi_ex_digits_needed(u64 value, u32 base);
44f6c012
RM
70
71#ifndef ACPI_NO_METHOD_EXECUTION
1da177e4
LT
72/*******************************************************************************
73 *
74 * FUNCTION: acpi_ex_enter_interpreter
75 *
76 * PARAMETERS: None
77 *
4d2acd9e 78 * RETURN: None
44f6c012 79 *
4d2acd9e
LB
80 * DESCRIPTION: Enter the interpreter execution region. Failure to enter
81 * the interpreter region is a fatal system error. Used in
82 * conjunction with exit_interpreter.
1da177e4
LT
83 *
84 ******************************************************************************/
85
4d2acd9e 86void acpi_ex_enter_interpreter(void)
1da177e4 87{
4be44fcd 88 acpi_status status;
1da177e4 89
977a6226 90 ACPI_FUNCTION_TRACE(ex_enter_interpreter);
1da177e4 91
4c90ece2 92 status = acpi_ut_acquire_mutex(ACPI_MTX_INTERPRETER);
4be44fcd 93 if (ACPI_FAILURE(status)) {
4d2acd9e
LB
94 ACPI_ERROR((AE_INFO,
95 "Could not acquire AML Interpreter mutex"));
1da177e4 96 }
74f51b80
LZ
97 status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE);
98 if (ACPI_FAILURE(status)) {
99 ACPI_ERROR((AE_INFO, "Could not acquire AML Namespace mutex"));
100 }
1da177e4 101
4d2acd9e 102 return_VOID;
1ba753ac
BM
103}
104
4d2acd9e
LB
105/*******************************************************************************
106 *
107 * FUNCTION: acpi_ex_exit_interpreter
108 *
109 * PARAMETERS: None
110 *
111 * RETURN: None
a8f4af6d 112 *
4d2acd9e
LB
113 * DESCRIPTION: Exit the interpreter execution region. This is the top level
114 * routine used to exit the interpreter when all processing has
e2b8ddcc
LZ
115 * been completed, or when the method blocks.
116 *
117 * Cases where the interpreter is unlocked internally:
118 * 1) Method will be blocked on a Sleep() AML opcode
119 * 2) Method will be blocked on an Acquire() AML opcode
120 * 3) Method will be blocked on a Wait() AML opcode
121 * 4) Method will be blocked to acquire the global lock
122 * 5) Method will be blocked waiting to execute a serialized control
123 * method that is currently executing
124 * 6) About to invoke a user-installed opregion handler
1da177e4
LT
125 *
126 ******************************************************************************/
127
4be44fcd 128void acpi_ex_exit_interpreter(void)
1da177e4 129{
4be44fcd 130 acpi_status status;
1da177e4 131
b229cf92 132 ACPI_FUNCTION_TRACE(ex_exit_interpreter);
1da177e4 133
74f51b80
LZ
134 status = acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
135 if (ACPI_FAILURE(status)) {
136 ACPI_ERROR((AE_INFO, "Could not release AML Namespace mutex"));
137 }
4c90ece2 138 status = acpi_ut_release_mutex(ACPI_MTX_INTERPRETER);
4be44fcd 139 if (ACPI_FAILURE(status)) {
4d2acd9e
LB
140 ACPI_ERROR((AE_INFO,
141 "Could not release AML Interpreter mutex"));
142 }
143
144 return_VOID;
145}
146
1da177e4
LT
147/*******************************************************************************
148 *
149 * FUNCTION: acpi_ex_truncate_for32bit_table
150 *
151 * PARAMETERS: obj_desc - Object to be truncated
152 *
ef42e53f 153 * RETURN: TRUE if a truncation was performed, FALSE otherwise.
1da177e4 154 *
4d2acd9e
LB
155 * DESCRIPTION: Truncate an ACPI Integer to 32 bits if the execution mode is
156 * 32-bit, as determined by the revision of the DSDT.
1da177e4
LT
157 *
158 ******************************************************************************/
159
ef42e53f 160u8 acpi_ex_truncate_for32bit_table(union acpi_operand_object *obj_desc)
1da177e4
LT
161{
162
4be44fcd 163 ACPI_FUNCTION_ENTRY();
1da177e4
LT
164
165 /*
166 * Object must be a valid number and we must be executing
ef42e53f 167 * a control method. Object could be NS node for AML_INT_NAMEPATH_OP.
1da177e4
LT
168 */
169 if ((!obj_desc) ||
4e3156b1 170 (ACPI_GET_DESCRIPTOR_TYPE(obj_desc) != ACPI_DESC_TYPE_OPERAND) ||
3371c19c 171 (obj_desc->common.type != ACPI_TYPE_INTEGER)) {
ef42e53f 172 return (FALSE);
1da177e4
LT
173 }
174
ef42e53f
BM
175 if ((acpi_gbl_integer_byte_width == 4) &&
176 (obj_desc->integer.value > (u64)ACPI_UINT32_MAX)) {
1da177e4 177 /*
1fad8738
BM
178 * We are executing in a 32-bit ACPI table. Truncate
179 * the value to 32 bits by zeroing out the upper 32-bit field
1da177e4 180 */
ef42e53f
BM
181 obj_desc->integer.value &= (u64)ACPI_UINT32_MAX;
182 return (TRUE);
1da177e4 183 }
ef42e53f
BM
184
185 return (FALSE);
1da177e4
LT
186}
187
1da177e4
LT
188/*******************************************************************************
189 *
190 * FUNCTION: acpi_ex_acquire_global_lock
191 *
192 * PARAMETERS: field_flags - Flags with Lock rule:
193 * always_lock or never_lock
194 *
ba886cd4 195 * RETURN: None
1da177e4 196 *
ba886cd4
BM
197 * DESCRIPTION: Obtain the ACPI hardware Global Lock, only if the field
198 * flags specifiy that it is to be obtained before field access.
1da177e4
LT
199 *
200 ******************************************************************************/
201
ba886cd4 202void acpi_ex_acquire_global_lock(u32 field_flags)
1da177e4 203{
4be44fcd 204 acpi_status status;
1da177e4 205
b229cf92 206 ACPI_FUNCTION_TRACE(ex_acquire_global_lock);
1da177e4 207
ba886cd4
BM
208 /* Only use the lock if the always_lock bit is set */
209
210 if (!(field_flags & AML_FIELD_LOCK_RULE_MASK)) {
211 return_VOID;
212 }
1da177e4 213
ba886cd4 214 /* Attempt to get the global lock, wait forever */
52fc0b02 215
ba886cd4
BM
216 status = acpi_ex_acquire_mutex_object(ACPI_WAIT_FOREVER,
217 acpi_gbl_global_lock_mutex,
218 acpi_os_get_thread_id());
1da177e4 219
ba886cd4
BM
220 if (ACPI_FAILURE(status)) {
221 ACPI_EXCEPTION((AE_INFO, status,
222 "Could not acquire Global Lock"));
1da177e4
LT
223 }
224
ba886cd4 225 return_VOID;
1da177e4
LT
226}
227
1da177e4
LT
228/*******************************************************************************
229 *
230 * FUNCTION: acpi_ex_release_global_lock
231 *
f02e9fa1
BM
232 * PARAMETERS: field_flags - Flags with Lock rule:
233 * always_lock or never_lock
1da177e4 234 *
44f6c012 235 * RETURN: None
1da177e4 236 *
ba886cd4 237 * DESCRIPTION: Release the ACPI hardware Global Lock
1da177e4
LT
238 *
239 ******************************************************************************/
240
f02e9fa1 241void acpi_ex_release_global_lock(u32 field_flags)
1da177e4 242{
4be44fcd 243 acpi_status status;
1da177e4 244
b229cf92 245 ACPI_FUNCTION_TRACE(ex_release_global_lock);
1da177e4 246
f02e9fa1
BM
247 /* Only use the lock if the always_lock bit is set */
248
249 if (!(field_flags & AML_FIELD_LOCK_RULE_MASK)) {
250 return_VOID;
251 }
252
ba886cd4 253 /* Release the global lock */
52fc0b02 254
ba886cd4
BM
255 status = acpi_ex_release_mutex_object(acpi_gbl_global_lock_mutex);
256 if (ACPI_FAILURE(status)) {
52fc0b02 257
ba886cd4 258 /* Report the error, but there isn't much else we can do */
1da177e4 259
ba886cd4
BM
260 ACPI_EXCEPTION((AE_INFO, status,
261 "Could not release Global Lock"));
1da177e4
LT
262 }
263
264 return_VOID;
265}
266
1da177e4
LT
267/*******************************************************************************
268 *
269 * FUNCTION: acpi_ex_digits_needed
270 *
ba494bee
BM
271 * PARAMETERS: value - Value to be represented
272 * base - Base of representation
1da177e4 273 *
44f6c012
RM
274 * RETURN: The number of digits.
275 *
276 * DESCRIPTION: Calculate the number of digits needed to represent the Value
277 * in the given Base (Radix)
1da177e4
LT
278 *
279 ******************************************************************************/
280
5df7e6cb 281static u32 acpi_ex_digits_needed(u64 value, u32 base)
1da177e4 282{
4be44fcd 283 u32 num_digits;
5df7e6cb 284 u64 current_value;
1da177e4 285
b229cf92 286 ACPI_FUNCTION_TRACE(ex_digits_needed);
1da177e4 287
5df7e6cb 288 /* u64 is unsigned, so we don't worry about a '-' prefix */
1da177e4
LT
289
290 if (value == 0) {
fd1af712 291 return_UINT32(1);
1da177e4
LT
292 }
293
294 current_value = value;
295 num_digits = 0;
296
297 /* Count the digits in the requested base */
298
299 while (current_value) {
4be44fcd
LB
300 (void)acpi_ut_short_divide(current_value, base, &current_value,
301 NULL);
1da177e4
LT
302 num_digits++;
303 }
304
fd1af712 305 return_UINT32(num_digits);
1da177e4
LT
306}
307
1da177e4
LT
308/*******************************************************************************
309 *
310 * FUNCTION: acpi_ex_eisa_id_to_string
311 *
d8aa069a
BM
312 * PARAMETERS: out_string - Where to put the converted string (8 bytes)
313 * compressed_id - EISAID to be converted
1da177e4 314 *
44f6c012
RM
315 * RETURN: None
316 *
15b8dd53
BM
317 * DESCRIPTION: Convert a numeric EISAID to string representation. Return
318 * buffer must be large enough to hold the string. The string
319 * returned is always exactly of length ACPI_EISAID_STRING_SIZE
320 * (includes null terminator). The EISAID is always 32 bits.
1da177e4
LT
321 *
322 ******************************************************************************/
323
5df7e6cb 324void acpi_ex_eisa_id_to_string(char *out_string, u64 compressed_id)
1da177e4 325{
15b8dd53 326 u32 swapped_id;
1da177e4 327
4be44fcd 328 ACPI_FUNCTION_ENTRY();
1da177e4 329
15b8dd53
BM
330 /* The EISAID should be a 32-bit integer */
331
332 if (compressed_id > ACPI_UINT32_MAX) {
333 ACPI_WARNING((AE_INFO,
1fad8738
BM
334 "Expected EISAID is larger than 32 bits: "
335 "0x%8.8X%8.8X, truncating",
15b8dd53
BM
336 ACPI_FORMAT_UINT64(compressed_id)));
337 }
338
1da177e4
LT
339 /* Swap ID to big-endian to get contiguous bits */
340
15b8dd53 341 swapped_id = acpi_ut_dword_byte_swap((u32)compressed_id);
1da177e4 342
15b8dd53
BM
343 /* First 3 bytes are uppercase letters. Next 4 bytes are hexadecimal */
344
345 out_string[0] =
346 (char)(0x40 + (((unsigned long)swapped_id >> 26) & 0x1F));
347 out_string[1] = (char)(0x40 + ((swapped_id >> 21) & 0x1F));
348 out_string[2] = (char)(0x40 + ((swapped_id >> 16) & 0x1F));
5df7e6cb
BM
349 out_string[3] = acpi_ut_hex_to_ascii_char((u64) swapped_id, 12);
350 out_string[4] = acpi_ut_hex_to_ascii_char((u64) swapped_id, 8);
351 out_string[5] = acpi_ut_hex_to_ascii_char((u64) swapped_id, 4);
352 out_string[6] = acpi_ut_hex_to_ascii_char((u64) swapped_id, 0);
1da177e4
LT
353 out_string[7] = 0;
354}
355
1da177e4
LT
356/*******************************************************************************
357 *
15b8dd53 358 * FUNCTION: acpi_ex_integer_to_string
1da177e4 359 *
15b8dd53
BM
360 * PARAMETERS: out_string - Where to put the converted string. At least
361 * 21 bytes are needed to hold the largest
362 * possible 64-bit integer.
ba494bee 363 * value - Value to be converted
1da177e4 364 *
d8aa069a 365 * RETURN: Converted string in out_string
44f6c012 366 *
15b8dd53
BM
367 * DESCRIPTION: Convert a 64-bit integer to decimal string representation.
368 * Assumes string buffer is large enough to hold the string. The
369 * largest string is (ACPI_MAX64_DECIMAL_DIGITS + 1).
1da177e4
LT
370 *
371 ******************************************************************************/
372
5df7e6cb 373void acpi_ex_integer_to_string(char *out_string, u64 value)
1da177e4 374{
4be44fcd
LB
375 u32 count;
376 u32 digits_needed;
377 u32 remainder;
1da177e4 378
4be44fcd 379 ACPI_FUNCTION_ENTRY();
1da177e4 380
4be44fcd 381 digits_needed = acpi_ex_digits_needed(value, 10);
1da177e4
LT
382 out_string[digits_needed] = 0;
383
384 for (count = digits_needed; count > 0; count--) {
4be44fcd
LB
385 (void)acpi_ut_short_divide(value, 10, &value, &remainder);
386 out_string[count - 1] = (char)('0' + remainder);
1da177e4
LT
387 }
388}
389
f65358e5
SS
390/*******************************************************************************
391 *
392 * FUNCTION: acpi_ex_pci_cls_to_string
393 *
394 * PARAMETERS: out_string - Where to put the converted string (7 bytes)
d8aa069a 395 * class_code - PCI class code to be converted (3 bytes)
f65358e5 396 *
d8aa069a 397 * RETURN: Converted string in out_string
f65358e5
SS
398 *
399 * DESCRIPTION: Convert 3-bytes PCI class code to string representation.
400 * Return buffer must be large enough to hold the string. The
401 * string returned is always exactly of length
402 * ACPI_PCICLS_STRING_SIZE (includes null terminator).
403 *
404 ******************************************************************************/
405
406void acpi_ex_pci_cls_to_string(char *out_string, u8 class_code[3])
407{
408
409 ACPI_FUNCTION_ENTRY();
410
411 /* All 3 bytes are hexadecimal */
412
413 out_string[0] = acpi_ut_hex_to_ascii_char((u64)class_code[0], 4);
414 out_string[1] = acpi_ut_hex_to_ascii_char((u64)class_code[0], 0);
415 out_string[2] = acpi_ut_hex_to_ascii_char((u64)class_code[1], 4);
416 out_string[3] = acpi_ut_hex_to_ascii_char((u64)class_code[1], 0);
417 out_string[4] = acpi_ut_hex_to_ascii_char((u64)class_code[2], 4);
418 out_string[5] = acpi_ut_hex_to_ascii_char((u64)class_code[2], 0);
419 out_string[6] = 0;
420}
421
ec463666
BM
422/*******************************************************************************
423 *
424 * FUNCTION: acpi_is_valid_space_id
425 *
426 * PARAMETERS: space_id - ID to be validated
427 *
d8aa069a 428 * RETURN: TRUE if space_id is a valid/supported ID.
ec463666 429 *
ba494bee 430 * DESCRIPTION: Validate an operation region space_ID.
ec463666
BM
431 *
432 ******************************************************************************/
433
434u8 acpi_is_valid_space_id(u8 space_id)
435{
436
437 if ((space_id >= ACPI_NUM_PREDEFINED_REGIONS) &&
438 (space_id < ACPI_USER_REGION_BEGIN) &&
439 (space_id != ACPI_ADR_SPACE_DATA_TABLE) &&
440 (space_id != ACPI_ADR_SPACE_FIXED_HARDWARE)) {
441 return (FALSE);
442 }
443
444 return (TRUE);
445}
446
1da177e4 447#endif
This page took 0.718346 seconds and 5 git commands to generate.