exutils.c 10.6 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8

/******************************************************************************
 *
 * Module Name: exutils - interpreter/scanner utilities
 *
 *****************************************************************************/

/*
B
Bob Moore 已提交
9
 * Copyright (C) 2000 - 2006, R. Byron Moore
L
Linus Torvalds 已提交
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 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
 * 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
 * "declared" in the current compilation.  This enhances maintainability
 * 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
 * before #including the header files which use this convention.  The
 * 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>
#include <acpi/acinterp.h>
#include <acpi/amlcode.h>
#include <acpi/acevents.h>

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

R
Robert Moore 已提交
69
/* Local prototypes */
L
Len Brown 已提交
70
static u32 acpi_ex_digits_needed(acpi_integer value, u32 base);
R
Robert Moore 已提交
71 72

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

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

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

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

L
Len Brown 已提交
97
	return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
98 99 100 101 102 103 104 105
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ex_exit_interpreter
 *
 * PARAMETERS:  None
 *
R
Robert Moore 已提交
106 107
 * RETURN:      None
 *
L
Linus Torvalds 已提交
108 109 110 111 112 113 114 115 116 117 118 119 120 121
 * DESCRIPTION: Exit the interpreter execution region
 *
 * Cases where the interpreter is unlocked:
 *      1) Completion of the execution of a control method
 *      2) Method blocked on a Sleep() AML opcode
 *      3) Method blocked on an Acquire() AML opcode
 *      4) Method blocked on a Wait() AML opcode
 *      5) Method blocked to acquire the global lock
 *      6) Method blocked to execute a serialized control method that is
 *          already executing
 *      7) About to invoke a user-installed opregion handler
 *
 ******************************************************************************/

L
Len Brown 已提交
122
void acpi_ex_exit_interpreter(void)
L
Linus Torvalds 已提交
123
{
L
Len Brown 已提交
124
	acpi_status status;
L
Linus Torvalds 已提交
125

B
Bob Moore 已提交
126
	ACPI_FUNCTION_TRACE(ex_exit_interpreter);
L
Linus Torvalds 已提交
127

L
Len Brown 已提交
128 129
	status = acpi_ut_release_mutex(ACPI_MTX_EXECUTE);
	if (ACPI_FAILURE(status)) {
B
Bob Moore 已提交
130
		ACPI_ERROR((AE_INFO, "Could not release interpreter mutex"));
L
Linus Torvalds 已提交
131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148
	}

	return_VOID;
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ex_truncate_for32bit_table
 *
 * PARAMETERS:  obj_desc        - Object to be truncated
 *
 * RETURN:      none
 *
 * DESCRIPTION: Truncate a number to 32-bits if the currently executing method
 *              belongs to a 32-bit ACPI table.
 *
 ******************************************************************************/

L
Len Brown 已提交
149
void acpi_ex_truncate_for32bit_table(union acpi_operand_object *obj_desc)
L
Linus Torvalds 已提交
150 151
{

L
Len Brown 已提交
152
	ACPI_FUNCTION_ENTRY();
L
Linus Torvalds 已提交
153 154 155 156 157 158

	/*
	 * Object must be a valid number and we must be executing
	 * a control method
	 */
	if ((!obj_desc) ||
L
Len Brown 已提交
159
	    (ACPI_GET_OBJECT_TYPE(obj_desc) != ACPI_TYPE_INTEGER)) {
L
Linus Torvalds 已提交
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
		return;
	}

	if (acpi_gbl_integer_byte_width == 4) {
		/*
		 * We are running a method that exists in a 32-bit ACPI table.
		 * Truncate the value to 32 bits by zeroing out the upper 32-bit field
		 */
		obj_desc->integer.value &= (acpi_integer) ACPI_UINT32_MAX;
	}
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ex_acquire_global_lock
 *
 * PARAMETERS:  field_flags           - Flags with Lock rule:
 *                                      always_lock or never_lock
 *
 * RETURN:      TRUE/FALSE indicating whether the lock was actually acquired
 *
 * DESCRIPTION: Obtain the global lock and keep track of this fact via two
 *              methods.  A global variable keeps the state of the lock, and
 *              the state is returned to the caller.
 *
 ******************************************************************************/

L
Len Brown 已提交
187
u8 acpi_ex_acquire_global_lock(u32 field_flags)
L
Linus Torvalds 已提交
188
{
L
Len Brown 已提交
189 190
	u8 locked = FALSE;
	acpi_status status;
L
Linus Torvalds 已提交
191

B
Bob Moore 已提交
192
	ACPI_FUNCTION_TRACE(ex_acquire_global_lock);
L
Linus Torvalds 已提交
193 194 195 196

	/* Only attempt lock if the always_lock bit is set */

	if (field_flags & AML_FIELD_LOCK_RULE_MASK) {
B
Bob Moore 已提交
197

L
Linus Torvalds 已提交
198 199
		/* We should attempt to get the lock, wait forever */

L
Len Brown 已提交
200 201
		status = acpi_ev_acquire_global_lock(ACPI_WAIT_FOREVER);
		if (ACPI_SUCCESS(status)) {
L
Linus Torvalds 已提交
202
			locked = TRUE;
L
Len Brown 已提交
203
		} else {
B
Bob Moore 已提交
204 205
			ACPI_EXCEPTION((AE_INFO, status,
					"Could not acquire Global Lock"));
L
Linus Torvalds 已提交
206 207 208
		}
	}

B
Bob Moore 已提交
209
	return_UINT8(locked);
L
Linus Torvalds 已提交
210 211 212 213 214 215 216 217 218
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ex_release_global_lock
 *
 * PARAMETERS:  locked_by_me    - Return value from corresponding call to
 *                                acquire_global_lock.
 *
R
Robert Moore 已提交
219
 * RETURN:      None
L
Linus Torvalds 已提交
220 221 222 223 224
 *
 * DESCRIPTION: Release the global lock if it is locked.
 *
 ******************************************************************************/

L
Len Brown 已提交
225
void acpi_ex_release_global_lock(u8 locked_by_me)
L
Linus Torvalds 已提交
226
{
L
Len Brown 已提交
227
	acpi_status status;
L
Linus Torvalds 已提交
228

B
Bob Moore 已提交
229
	ACPI_FUNCTION_TRACE(ex_release_global_lock);
L
Linus Torvalds 已提交
230 231 232 233

	/* Only attempt unlock if the caller locked it */

	if (locked_by_me) {
B
Bob Moore 已提交
234

L
Linus Torvalds 已提交
235 236
		/* OK, now release the lock */

L
Len Brown 已提交
237 238
		status = acpi_ev_release_global_lock();
		if (ACPI_FAILURE(status)) {
B
Bob Moore 已提交
239

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

B
Bob Moore 已提交
242 243
			ACPI_EXCEPTION((AE_INFO, status,
					"Could not release ACPI Global Lock"));
L
Linus Torvalds 已提交
244 245 246 247 248 249 250 251 252 253 254 255 256
		}
	}

	return_VOID;
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ex_digits_needed
 *
 * PARAMETERS:  Value           - Value to be represented
 *              Base            - Base of representation
 *
R
Robert Moore 已提交
257 258 259 260
 * RETURN:      The number of digits.
 *
 * DESCRIPTION: Calculate the number of digits needed to represent the Value
 *              in the given Base (Radix)
L
Linus Torvalds 已提交
261 262 263
 *
 ******************************************************************************/

L
Len Brown 已提交
264
static u32 acpi_ex_digits_needed(acpi_integer value, u32 base)
L
Linus Torvalds 已提交
265
{
L
Len Brown 已提交
266 267
	u32 num_digits;
	acpi_integer current_value;
L
Linus Torvalds 已提交
268

B
Bob Moore 已提交
269
	ACPI_FUNCTION_TRACE(ex_digits_needed);
L
Linus Torvalds 已提交
270 271 272 273

	/* acpi_integer is unsigned, so we don't worry about a '-' prefix */

	if (value == 0) {
B
Bob Moore 已提交
274
		return_UINT32(1);
L
Linus Torvalds 已提交
275 276 277 278 279 280 281 282
	}

	current_value = value;
	num_digits = 0;

	/* Count the digits in the requested base */

	while (current_value) {
L
Len Brown 已提交
283 284
		(void)acpi_ut_short_divide(current_value, base, &current_value,
					   NULL);
L
Linus Torvalds 已提交
285 286 287
		num_digits++;
	}

B
Bob Moore 已提交
288
	return_UINT32(num_digits);
L
Linus Torvalds 已提交
289 290 291 292 293 294 295 296 297
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ex_eisa_id_to_string
 *
 * PARAMETERS:  numeric_id      - EISA ID to be converted
 *              out_string      - Where to put the converted string (8 bytes)
 *
R
Robert Moore 已提交
298 299
 * RETURN:      None
 *
L
Linus Torvalds 已提交
300 301 302 303
 * DESCRIPTION: Convert a numeric EISA ID to string representation
 *
 ******************************************************************************/

L
Len Brown 已提交
304
void acpi_ex_eisa_id_to_string(u32 numeric_id, char *out_string)
L
Linus Torvalds 已提交
305
{
L
Len Brown 已提交
306
	u32 eisa_id;
L
Linus Torvalds 已提交
307

L
Len Brown 已提交
308
	ACPI_FUNCTION_ENTRY();
L
Linus Torvalds 已提交
309 310 311

	/* Swap ID to big-endian to get contiguous bits */

L
Len Brown 已提交
312
	eisa_id = acpi_ut_dword_byte_swap(numeric_id);
L
Linus Torvalds 已提交
313

L
Len Brown 已提交
314 315 316 317 318 319 320
	out_string[0] = (char)('@' + (((unsigned long)eisa_id >> 26) & 0x1f));
	out_string[1] = (char)('@' + ((eisa_id >> 21) & 0x1f));
	out_string[2] = (char)('@' + ((eisa_id >> 16) & 0x1f));
	out_string[3] = acpi_ut_hex_to_ascii_char((acpi_integer) eisa_id, 12);
	out_string[4] = acpi_ut_hex_to_ascii_char((acpi_integer) eisa_id, 8);
	out_string[5] = acpi_ut_hex_to_ascii_char((acpi_integer) eisa_id, 4);
	out_string[6] = acpi_ut_hex_to_ascii_char((acpi_integer) eisa_id, 0);
L
Linus Torvalds 已提交
321 322 323 324 325 326 327 328 329 330
	out_string[7] = 0;
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ex_unsigned_integer_to_string
 *
 * PARAMETERS:  Value           - Value to be converted
 *              out_string      - Where to put the converted string (8 bytes)
 *
R
Robert Moore 已提交
331 332
 * RETURN:      None, string
 *
333
 * DESCRIPTION: Convert a number to string representation. Assumes string
R
Robert Moore 已提交
334
 *              buffer is large enough to hold the string.
L
Linus Torvalds 已提交
335 336 337
 *
 ******************************************************************************/

L
Len Brown 已提交
338
void acpi_ex_unsigned_integer_to_string(acpi_integer value, char *out_string)
L
Linus Torvalds 已提交
339
{
L
Len Brown 已提交
340 341 342
	u32 count;
	u32 digits_needed;
	u32 remainder;
L
Linus Torvalds 已提交
343

L
Len Brown 已提交
344
	ACPI_FUNCTION_ENTRY();
L
Linus Torvalds 已提交
345

L
Len Brown 已提交
346
	digits_needed = acpi_ex_digits_needed(value, 10);
L
Linus Torvalds 已提交
347 348 349
	out_string[digits_needed] = 0;

	for (count = digits_needed; count > 0; count--) {
L
Len Brown 已提交
350 351
		(void)acpi_ut_short_divide(value, 10, &value, &remainder);
		out_string[count - 1] = (char)('0' + remainder);
L
Linus Torvalds 已提交
352 353 354 355
	}
}

#endif