exutils.c 14.0 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7
/******************************************************************************
 *
 * Module Name: exutils - interpreter/scanner utilities
 *
 *****************************************************************************/

/*
8
 * Copyright (C) 2000 - 2013, Intel Corp.
L
Linus Torvalds 已提交
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions, and the following disclaimer,
 *    without modification.
 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
 *    substantially similar to the "NO WARRANTY" disclaimer below
 *    ("Disclaimer") and any redistribution must be conditioned upon
 *    including a substantially similar Disclaimer requirement for further
 *    binary redistribution.
 * 3. Neither the names of the above-listed copyright holders nor the names
 *    of any contributors may be used to endorse or promote products derived
 *    from this software without specific prior written permission.
 *
 * Alternatively, this software may be distributed under the terms of the
 * GNU General Public License ("GPL") version 2 as published by the Free
 * Software Foundation.
 *
 * NO WARRANTY
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGES.
 */

/*
 * DEFINE_AML_GLOBALS is tested in amlcode.h
 * to determine whether certain global names should be "defined" or only
47
 * "declared" in the current compilation. This enhances maintainability
L
Linus Torvalds 已提交
48 49 50 51
 * by enabling a single header file to embody all knowledge of the names
 * in question.
 *
 * Exactly one module of any executable should #define DEFINE_GLOBALS
52
 * before #including the header files which use this convention. The
L
Linus Torvalds 已提交
53 54 55 56 57 58 59 60
 * names in question will be defined and initialized in that module,
 * and declared as extern in all other modules which #include those
 * header files.
 */

#define DEFINE_AML_GLOBALS

#include <acpi/acpi.h>
L
Len Brown 已提交
61 62 63
#include "accommon.h"
#include "acinterp.h"
#include "amlcode.h"
L
Linus Torvalds 已提交
64 65

#define _COMPONENT          ACPI_EXECUTER
L
Len Brown 已提交
66
ACPI_MODULE_NAME("exutils")
L
Linus Torvalds 已提交
67

R
Robert Moore 已提交
68
/* Local prototypes */
69
static u32 acpi_ex_digits_needed(u64 value, u32 base);
R
Robert Moore 已提交
70 71

#ifndef ACPI_NO_METHOD_EXECUTION
L
Linus Torvalds 已提交
72 73 74 75 76 77
/*******************************************************************************
 *
 * FUNCTION:    acpi_ex_enter_interpreter
 *
 * PARAMETERS:  None
 *
78
 * RETURN:      None
R
Robert Moore 已提交
79
 *
80 81 82
 * DESCRIPTION: Enter the interpreter execution region. Failure to enter
 *              the interpreter region is a fatal system error. Used in
 *              conjunction with exit_interpreter.
L
Linus Torvalds 已提交
83 84 85
 *
 ******************************************************************************/

86
void acpi_ex_enter_interpreter(void)
L
Linus Torvalds 已提交
87
{
L
Len Brown 已提交
88
	acpi_status status;
L
Linus Torvalds 已提交
89

90
	ACPI_FUNCTION_TRACE(ex_enter_interpreter);
L
Linus Torvalds 已提交
91

B
Bob Moore 已提交
92
	status = acpi_ut_acquire_mutex(ACPI_MTX_INTERPRETER);
L
Len Brown 已提交
93
	if (ACPI_FAILURE(status)) {
94 95
		ACPI_ERROR((AE_INFO,
			    "Could not acquire AML Interpreter mutex"));
L
Linus Torvalds 已提交
96 97
	}

98
	return_VOID;
99 100 101 102
}

/*******************************************************************************
 *
103
 * FUNCTION:    acpi_ex_reacquire_interpreter
104 105 106 107
 *
 * PARAMETERS:  None
 *
 * RETURN:      None
L
Linus Torvalds 已提交
108
 *
109 110
 * DESCRIPTION: Reacquire the interpreter execution region from within the
 *              interpreter code. Failure to enter the interpreter region is a
B
Bob Moore 已提交
111
 *              fatal system error. Used in conjunction with
112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
 *              relinquish_interpreter
 *
 ******************************************************************************/

void acpi_ex_reacquire_interpreter(void)
{
	ACPI_FUNCTION_TRACE(ex_reacquire_interpreter);

	/*
	 * If the global serialized flag is set, do not release the interpreter,
	 * since it was not actually released by acpi_ex_relinquish_interpreter.
	 * This forces the interpreter to be single threaded.
	 */
	if (!acpi_gbl_all_methods_serialized) {
		acpi_ex_enter_interpreter();
	}

	return_VOID;
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ex_exit_interpreter
 *
 * PARAMETERS:  None
 *
 * RETURN:      None
139
 *
140 141 142
 * DESCRIPTION: Exit the interpreter execution region. This is the top level
 *              routine used to exit the interpreter when all processing has
 *              been completed.
L
Linus Torvalds 已提交
143 144 145
 *
 ******************************************************************************/

L
Len Brown 已提交
146
void acpi_ex_exit_interpreter(void)
L
Linus Torvalds 已提交
147
{
L
Len Brown 已提交
148
	acpi_status status;
L
Linus Torvalds 已提交
149

B
Bob Moore 已提交
150
	ACPI_FUNCTION_TRACE(ex_exit_interpreter);
L
Linus Torvalds 已提交
151

B
Bob Moore 已提交
152
	status = acpi_ut_release_mutex(ACPI_MTX_INTERPRETER);
L
Len Brown 已提交
153
	if (ACPI_FAILURE(status)) {
154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193
		ACPI_ERROR((AE_INFO,
			    "Could not release AML Interpreter mutex"));
	}

	return_VOID;
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ex_relinquish_interpreter
 *
 * PARAMETERS:  None
 *
 * RETURN:      None
 *
 * DESCRIPTION: Exit the interpreter execution region, from within the
 *              interpreter - before attempting an operation that will possibly
 *              block the running thread.
 *
 * Cases where the interpreter is unlocked internally
 *      1) Method to be blocked on a Sleep() AML opcode
 *      2) Method to be blocked on an Acquire() AML opcode
 *      3) Method to be blocked on a Wait() AML opcode
 *      4) Method to be blocked to acquire the global lock
 *      5) Method to be blocked waiting to execute a serialized control method
 *          that is currently executing
 *      6) About to invoke a user-installed opregion handler
 *
 ******************************************************************************/

void acpi_ex_relinquish_interpreter(void)
{
	ACPI_FUNCTION_TRACE(ex_relinquish_interpreter);

	/*
	 * If the global serialized flag is set, do not release the interpreter.
	 * This forces the interpreter to be single threaded.
	 */
	if (!acpi_gbl_all_methods_serialized) {
		acpi_ex_exit_interpreter();
L
Linus Torvalds 已提交
194 195 196 197 198 199 200 201 202 203 204
	}

	return_VOID;
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ex_truncate_for32bit_table
 *
 * PARAMETERS:  obj_desc        - Object to be truncated
 *
205
 * RETURN:      TRUE if a truncation was performed, FALSE otherwise.
L
Linus Torvalds 已提交
206
 *
207 208
 * DESCRIPTION: Truncate an ACPI Integer to 32 bits if the execution mode is
 *              32-bit, as determined by the revision of the DSDT.
L
Linus Torvalds 已提交
209 210 211
 *
 ******************************************************************************/

212
u8 acpi_ex_truncate_for32bit_table(union acpi_operand_object *obj_desc)
L
Linus Torvalds 已提交
213 214
{

L
Len Brown 已提交
215
	ACPI_FUNCTION_ENTRY();
L
Linus Torvalds 已提交
216 217 218

	/*
	 * Object must be a valid number and we must be executing
219
	 * a control method. Object could be NS node for AML_INT_NAMEPATH_OP.
L
Linus Torvalds 已提交
220 221
	 */
	if ((!obj_desc) ||
222
	    (ACPI_GET_DESCRIPTOR_TYPE(obj_desc) != ACPI_DESC_TYPE_OPERAND) ||
223
	    (obj_desc->common.type != ACPI_TYPE_INTEGER)) {
224
		return (FALSE);
L
Linus Torvalds 已提交
225 226
	}

227 228
	if ((acpi_gbl_integer_byte_width == 4) &&
	    (obj_desc->integer.value > (u64)ACPI_UINT32_MAX)) {
L
Linus Torvalds 已提交
229
		/*
230
		 * We are executing in a 32-bit ACPI table.
L
Linus Torvalds 已提交
231 232
		 * Truncate the value to 32 bits by zeroing out the upper 32-bit field
		 */
233 234
		obj_desc->integer.value &= (u64)ACPI_UINT32_MAX;
		return (TRUE);
L
Linus Torvalds 已提交
235
	}
236 237

	return (FALSE);
L
Linus Torvalds 已提交
238 239 240 241 242 243 244 245 246
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ex_acquire_global_lock
 *
 * PARAMETERS:  field_flags           - Flags with Lock rule:
 *                                      always_lock or never_lock
 *
247
 * RETURN:      None
L
Linus Torvalds 已提交
248
 *
249 250
 * DESCRIPTION: Obtain the ACPI hardware Global Lock, only if the field
 *              flags specifiy that it is to be obtained before field access.
L
Linus Torvalds 已提交
251 252 253
 *
 ******************************************************************************/

254
void acpi_ex_acquire_global_lock(u32 field_flags)
L
Linus Torvalds 已提交
255
{
L
Len Brown 已提交
256
	acpi_status status;
L
Linus Torvalds 已提交
257

B
Bob Moore 已提交
258
	ACPI_FUNCTION_TRACE(ex_acquire_global_lock);
L
Linus Torvalds 已提交
259

260 261 262 263 264
	/* Only use the lock if the always_lock bit is set */

	if (!(field_flags & AML_FIELD_LOCK_RULE_MASK)) {
		return_VOID;
	}
L
Linus Torvalds 已提交
265

266
	/* Attempt to get the global lock, wait forever */
B
Bob Moore 已提交
267

268 269 270
	status = acpi_ex_acquire_mutex_object(ACPI_WAIT_FOREVER,
					      acpi_gbl_global_lock_mutex,
					      acpi_os_get_thread_id());
L
Linus Torvalds 已提交
271

272 273 274
	if (ACPI_FAILURE(status)) {
		ACPI_EXCEPTION((AE_INFO, status,
				"Could not acquire Global Lock"));
L
Linus Torvalds 已提交
275 276
	}

277
	return_VOID;
L
Linus Torvalds 已提交
278 279 280 281 282 283
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ex_release_global_lock
 *
284 285
 * PARAMETERS:  field_flags           - Flags with Lock rule:
 *                                      always_lock or never_lock
L
Linus Torvalds 已提交
286
 *
R
Robert Moore 已提交
287
 * RETURN:      None
L
Linus Torvalds 已提交
288
 *
289
 * DESCRIPTION: Release the ACPI hardware Global Lock
L
Linus Torvalds 已提交
290 291 292
 *
 ******************************************************************************/

293
void acpi_ex_release_global_lock(u32 field_flags)
L
Linus Torvalds 已提交
294
{
L
Len Brown 已提交
295
	acpi_status status;
L
Linus Torvalds 已提交
296

B
Bob Moore 已提交
297
	ACPI_FUNCTION_TRACE(ex_release_global_lock);
L
Linus Torvalds 已提交
298

299 300 301 302 303 304
	/* Only use the lock if the always_lock bit is set */

	if (!(field_flags & AML_FIELD_LOCK_RULE_MASK)) {
		return_VOID;
	}

305
	/* Release the global lock */
B
Bob Moore 已提交
306

307 308
	status = acpi_ex_release_mutex_object(acpi_gbl_global_lock_mutex);
	if (ACPI_FAILURE(status)) {
B
Bob Moore 已提交
309

310
		/* Report the error, but there isn't much else we can do */
L
Linus Torvalds 已提交
311

312 313
		ACPI_EXCEPTION((AE_INFO, status,
				"Could not release Global Lock"));
L
Linus Torvalds 已提交
314 315 316 317 318 319 320 321 322
	}

	return_VOID;
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ex_digits_needed
 *
323 324
 * PARAMETERS:  value           - Value to be represented
 *              base            - Base of representation
L
Linus Torvalds 已提交
325
 *
R
Robert Moore 已提交
326 327 328 329
 * RETURN:      The number of digits.
 *
 * DESCRIPTION: Calculate the number of digits needed to represent the Value
 *              in the given Base (Radix)
L
Linus Torvalds 已提交
330 331 332
 *
 ******************************************************************************/

333
static u32 acpi_ex_digits_needed(u64 value, u32 base)
L
Linus Torvalds 已提交
334
{
L
Len Brown 已提交
335
	u32 num_digits;
336
	u64 current_value;
L
Linus Torvalds 已提交
337

B
Bob Moore 已提交
338
	ACPI_FUNCTION_TRACE(ex_digits_needed);
L
Linus Torvalds 已提交
339

340
	/* u64 is unsigned, so we don't worry about a '-' prefix */
L
Linus Torvalds 已提交
341 342

	if (value == 0) {
343
		return_UINT32(1);
L
Linus Torvalds 已提交
344 345 346 347 348 349 350 351
	}

	current_value = value;
	num_digits = 0;

	/* Count the digits in the requested base */

	while (current_value) {
L
Len Brown 已提交
352 353
		(void)acpi_ut_short_divide(current_value, base, &current_value,
					   NULL);
L
Linus Torvalds 已提交
354 355 356
		num_digits++;
	}

357
	return_UINT32(num_digits);
L
Linus Torvalds 已提交
358 359 360 361 362 363
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ex_eisa_id_to_string
 *
364
 * PARAMETERS:  compressed_id   - EISAID to be converted
L
Linus Torvalds 已提交
365 366
 *              out_string      - Where to put the converted string (8 bytes)
 *
R
Robert Moore 已提交
367 368
 * RETURN:      None
 *
369 370 371 372
 * DESCRIPTION: Convert a numeric EISAID to string representation. Return
 *              buffer must be large enough to hold the string. The string
 *              returned is always exactly of length ACPI_EISAID_STRING_SIZE
 *              (includes null terminator). The EISAID is always 32 bits.
L
Linus Torvalds 已提交
373 374 375
 *
 ******************************************************************************/

376
void acpi_ex_eisa_id_to_string(char *out_string, u64 compressed_id)
L
Linus Torvalds 已提交
377
{
378
	u32 swapped_id;
L
Linus Torvalds 已提交
379

L
Len Brown 已提交
380
	ACPI_FUNCTION_ENTRY();
L
Linus Torvalds 已提交
381

382 383 384 385 386 387 388 389
	/* The EISAID should be a 32-bit integer */

	if (compressed_id > ACPI_UINT32_MAX) {
		ACPI_WARNING((AE_INFO,
			      "Expected EISAID is larger than 32 bits: 0x%8.8X%8.8X, truncating",
			      ACPI_FORMAT_UINT64(compressed_id)));
	}

L
Linus Torvalds 已提交
390 391
	/* Swap ID to big-endian to get contiguous bits */

392
	swapped_id = acpi_ut_dword_byte_swap((u32)compressed_id);
L
Linus Torvalds 已提交
393

394 395 396 397 398 399
	/* First 3 bytes are uppercase letters. Next 4 bytes are hexadecimal */

	out_string[0] =
	    (char)(0x40 + (((unsigned long)swapped_id >> 26) & 0x1F));
	out_string[1] = (char)(0x40 + ((swapped_id >> 21) & 0x1F));
	out_string[2] = (char)(0x40 + ((swapped_id >> 16) & 0x1F));
400 401 402 403
	out_string[3] = acpi_ut_hex_to_ascii_char((u64) swapped_id, 12);
	out_string[4] = acpi_ut_hex_to_ascii_char((u64) swapped_id, 8);
	out_string[5] = acpi_ut_hex_to_ascii_char((u64) swapped_id, 4);
	out_string[6] = acpi_ut_hex_to_ascii_char((u64) swapped_id, 0);
L
Linus Torvalds 已提交
404 405 406 407 408
	out_string[7] = 0;
}

/*******************************************************************************
 *
409
 * FUNCTION:    acpi_ex_integer_to_string
L
Linus Torvalds 已提交
410
 *
411 412 413
 * PARAMETERS:  out_string      - Where to put the converted string. At least
 *                                21 bytes are needed to hold the largest
 *                                possible 64-bit integer.
414
 *              value           - Value to be converted
L
Linus Torvalds 已提交
415
 *
R
Robert Moore 已提交
416 417
 * RETURN:      None, string
 *
418 419 420
 * DESCRIPTION: Convert a 64-bit integer to decimal string representation.
 *              Assumes string buffer is large enough to hold the string. The
 *              largest string is (ACPI_MAX64_DECIMAL_DIGITS + 1).
L
Linus Torvalds 已提交
421 422 423
 *
 ******************************************************************************/

424
void acpi_ex_integer_to_string(char *out_string, u64 value)
L
Linus Torvalds 已提交
425
{
L
Len Brown 已提交
426 427 428
	u32 count;
	u32 digits_needed;
	u32 remainder;
L
Linus Torvalds 已提交
429

L
Len Brown 已提交
430
	ACPI_FUNCTION_ENTRY();
L
Linus Torvalds 已提交
431

L
Len Brown 已提交
432
	digits_needed = acpi_ex_digits_needed(value, 10);
L
Linus Torvalds 已提交
433 434 435
	out_string[digits_needed] = 0;

	for (count = digits_needed; count > 0; count--) {
L
Len Brown 已提交
436 437
		(void)acpi_ut_short_divide(value, 10, &value, &remainder);
		out_string[count - 1] = (char)('0' + remainder);
L
Linus Torvalds 已提交
438 439 440
	}
}

441 442 443 444 445 446 447 448
/*******************************************************************************
 *
 * FUNCTION:    acpi_is_valid_space_id
 *
 * PARAMETERS:  space_id            - ID to be validated
 *
 * RETURN:      TRUE if valid/supported ID.
 *
449
 * DESCRIPTION: Validate an operation region space_ID.
450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465
 *
 ******************************************************************************/

u8 acpi_is_valid_space_id(u8 space_id)
{

	if ((space_id >= ACPI_NUM_PREDEFINED_REGIONS) &&
	    (space_id < ACPI_USER_REGION_BEGIN) &&
	    (space_id != ACPI_ADR_SPACE_DATA_TABLE) &&
	    (space_id != ACPI_ADR_SPACE_FIXED_HARDWARE)) {
		return (FALSE);
	}

	return (TRUE);
}

L
Linus Torvalds 已提交
466
#endif