blob: 264d22d8018c14f50fd7cf338339247692be136d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/******************************************************************************
2 *
3 * Module Name: exutils - interpreter/scanner utilities
4 *
5 *****************************************************************************/
6
7/*
Bob Moore77848132012-01-12 13:27:23 +08008 * Copyright (C) 2000 - 2012, Intel Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070044/*
45 * DEFINE_AML_GLOBALS is tested in amlcode.h
46 * to determine whether certain global names should be "defined" or only
Bob Moore73a30902012-10-31 02:26:55 +000047 * "declared" in the current compilation. This enhances maintainability
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 * 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
Bob Moore73a30902012-10-31 02:26:55 +000052 * before #including the header files which use this convention. The
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 * 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>
Len Browne2f7a772009-01-09 00:30:03 -050061#include "accommon.h"
62#include "acinterp.h"
63#include "amlcode.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
65#define _COMPONENT ACPI_EXECUTER
Len Brown4be44fc2005-08-05 00:44:28 -040066ACPI_MODULE_NAME("exutils")
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Robert Moore44f6c012005-04-18 22:49:35 -040068/* Local prototypes */
Bob Moore5df7e6c2010-01-21 10:06:32 +080069static u32 acpi_ex_digits_needed(u64 value, u32 base);
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
71#ifndef ACPI_NO_METHOD_EXECUTION
Linus Torvalds1da177e2005-04-16 15:20:36 -070072/*******************************************************************************
73 *
74 * FUNCTION: acpi_ex_enter_interpreter
75 *
76 * PARAMETERS: None
77 *
Len Brown4d2acd92007-05-09 22:56:38 -040078 * RETURN: None
Robert Moore44f6c012005-04-18 22:49:35 -040079 *
Len Brown4d2acd92007-05-09 22:56:38 -040080 * 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 *
84 ******************************************************************************/
85
Len Brown4d2acd92007-05-09 22:56:38 -040086void acpi_ex_enter_interpreter(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070087{
Len Brown4be44fc2005-08-05 00:44:28 -040088 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
Bob Moore977a6222007-02-02 19:48:20 +030090 ACPI_FUNCTION_TRACE(ex_enter_interpreter);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
Bob Moore4c90ece2006-06-08 16:29:00 -040092 status = acpi_ut_acquire_mutex(ACPI_MTX_INTERPRETER);
Len Brown4be44fc2005-08-05 00:44:28 -040093 if (ACPI_FAILURE(status)) {
Len Brown4d2acd92007-05-09 22:56:38 -040094 ACPI_ERROR((AE_INFO,
95 "Could not acquire AML Interpreter mutex"));
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 }
97
Len Brown4d2acd92007-05-09 22:56:38 -040098 return_VOID;
99}
100
101/*******************************************************************************
102 *
103 * FUNCTION: acpi_ex_reacquire_interpreter
104 *
105 * PARAMETERS: None
106 *
107 * RETURN: None
108 *
109 * DESCRIPTION: Reacquire the interpreter execution region from within the
110 * interpreter code. Failure to enter the interpreter region is a
Bob Moorecf489582012-07-16 09:52:27 +0800111 * fatal system error. Used in conjunction with
Len Brown4d2acd92007-05-09 22:56:38 -0400112 * relinquish_interpreter
113 *
114 ******************************************************************************/
115
116void acpi_ex_reacquire_interpreter(void)
117{
118 ACPI_FUNCTION_TRACE(ex_reacquire_interpreter);
119
120 /*
121 * If the global serialized flag is set, do not release the interpreter,
122 * since it was not actually released by acpi_ex_relinquish_interpreter.
123 * This forces the interpreter to be single threaded.
124 */
125 if (!acpi_gbl_all_methods_serialized) {
126 acpi_ex_enter_interpreter();
127 }
128
129 return_VOID;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130}
131
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132/*******************************************************************************
133 *
134 * FUNCTION: acpi_ex_exit_interpreter
135 *
136 * PARAMETERS: None
137 *
Robert Moore44f6c012005-04-18 22:49:35 -0400138 * RETURN: None
139 *
Len Brown4d2acd92007-05-09 22:56:38 -0400140 * DESCRIPTION: Exit the interpreter execution region. This is the top level
141 * routine used to exit the interpreter when all processing has
142 * been completed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 *
144 ******************************************************************************/
145
Len Brown4be44fc2005-08-05 00:44:28 -0400146void acpi_ex_exit_interpreter(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147{
Len Brown4be44fc2005-08-05 00:44:28 -0400148 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
Bob Mooreb229cf92006-04-21 17:15:00 -0400150 ACPI_FUNCTION_TRACE(ex_exit_interpreter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
Bob Moore4c90ece2006-06-08 16:29:00 -0400152 status = acpi_ut_release_mutex(ACPI_MTX_INTERPRETER);
Len Brown4be44fc2005-08-05 00:44:28 -0400153 if (ACPI_FAILURE(status)) {
Len Brown4d2acd92007-05-09 22:56:38 -0400154 ACPI_ERROR((AE_INFO,
155 "Could not release AML Interpreter mutex"));
156 }
157
158 return_VOID;
159}
160
161/*******************************************************************************
162 *
163 * FUNCTION: acpi_ex_relinquish_interpreter
164 *
165 * PARAMETERS: None
166 *
167 * RETURN: None
168 *
169 * DESCRIPTION: Exit the interpreter execution region, from within the
170 * interpreter - before attempting an operation that will possibly
171 * block the running thread.
172 *
173 * Cases where the interpreter is unlocked internally
174 * 1) Method to be blocked on a Sleep() AML opcode
175 * 2) Method to be blocked on an Acquire() AML opcode
176 * 3) Method to be blocked on a Wait() AML opcode
177 * 4) Method to be blocked to acquire the global lock
178 * 5) Method to be blocked waiting to execute a serialized control method
179 * that is currently executing
180 * 6) About to invoke a user-installed opregion handler
181 *
182 ******************************************************************************/
183
184void acpi_ex_relinquish_interpreter(void)
185{
186 ACPI_FUNCTION_TRACE(ex_relinquish_interpreter);
187
188 /*
189 * If the global serialized flag is set, do not release the interpreter.
190 * This forces the interpreter to be single threaded.
191 */
192 if (!acpi_gbl_all_methods_serialized) {
193 acpi_ex_exit_interpreter();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 }
195
196 return_VOID;
197}
198
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199/*******************************************************************************
200 *
201 * FUNCTION: acpi_ex_truncate_for32bit_table
202 *
203 * PARAMETERS: obj_desc - Object to be truncated
204 *
205 * RETURN: none
206 *
Len Brown4d2acd92007-05-09 22:56:38 -0400207 * DESCRIPTION: Truncate an ACPI Integer to 32 bits if the execution mode is
208 * 32-bit, as determined by the revision of the DSDT.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 *
210 ******************************************************************************/
211
Len Brown4be44fc2005-08-05 00:44:28 -0400212void acpi_ex_truncate_for32bit_table(union acpi_operand_object *obj_desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213{
214
Len Brown4be44fc2005-08-05 00:44:28 -0400215 ACPI_FUNCTION_ENTRY();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
217 /*
218 * Object must be a valid number and we must be executing
Bob Moore4e3156b2008-04-10 19:06:37 +0400219 * a control method. NS node could be there for AML_INT_NAMEPATH_OP.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 */
221 if ((!obj_desc) ||
Bob Moore4e3156b2008-04-10 19:06:37 +0400222 (ACPI_GET_DESCRIPTOR_TYPE(obj_desc) != ACPI_DESC_TYPE_OPERAND) ||
Bob Moore3371c192009-02-18 14:44:03 +0800223 (obj_desc->common.type != ACPI_TYPE_INTEGER)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 return;
225 }
226
227 if (acpi_gbl_integer_byte_width == 4) {
228 /*
229 * We are running a method that exists in a 32-bit ACPI table.
230 * Truncate the value to 32 bits by zeroing out the upper 32-bit field
231 */
Bob Moore5df7e6c2010-01-21 10:06:32 +0800232 obj_desc->integer.value &= (u64) ACPI_UINT32_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 }
234}
235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236/*******************************************************************************
237 *
238 * FUNCTION: acpi_ex_acquire_global_lock
239 *
240 * PARAMETERS: field_flags - Flags with Lock rule:
241 * always_lock or never_lock
242 *
Bob Mooreba886cd2008-04-10 19:06:37 +0400243 * RETURN: None
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 *
Bob Mooreba886cd2008-04-10 19:06:37 +0400245 * DESCRIPTION: Obtain the ACPI hardware Global Lock, only if the field
246 * flags specifiy that it is to be obtained before field access.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 *
248 ******************************************************************************/
249
Bob Mooreba886cd2008-04-10 19:06:37 +0400250void acpi_ex_acquire_global_lock(u32 field_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251{
Len Brown4be44fc2005-08-05 00:44:28 -0400252 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
Bob Mooreb229cf92006-04-21 17:15:00 -0400254 ACPI_FUNCTION_TRACE(ex_acquire_global_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Bob Mooreba886cd2008-04-10 19:06:37 +0400256 /* Only use the lock if the always_lock bit is set */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
Bob Mooreba886cd2008-04-10 19:06:37 +0400258 if (!(field_flags & AML_FIELD_LOCK_RULE_MASK)) {
259 return_VOID;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 }
261
Bob Mooreba886cd2008-04-10 19:06:37 +0400262 /* Attempt to get the global lock, wait forever */
263
264 status = acpi_ex_acquire_mutex_object(ACPI_WAIT_FOREVER,
265 acpi_gbl_global_lock_mutex,
266 acpi_os_get_thread_id());
267
268 if (ACPI_FAILURE(status)) {
269 ACPI_EXCEPTION((AE_INFO, status,
270 "Could not acquire Global Lock"));
271 }
272
273 return_VOID;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274}
275
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276/*******************************************************************************
277 *
278 * FUNCTION: acpi_ex_release_global_lock
279 *
Bob Mooref02e9fa2008-04-10 19:06:37 +0400280 * PARAMETERS: field_flags - Flags with Lock rule:
281 * always_lock or never_lock
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 *
Robert Moore44f6c012005-04-18 22:49:35 -0400283 * RETURN: None
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 *
Bob Mooreba886cd2008-04-10 19:06:37 +0400285 * DESCRIPTION: Release the ACPI hardware Global Lock
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 *
287 ******************************************************************************/
288
Bob Mooref02e9fa2008-04-10 19:06:37 +0400289void acpi_ex_release_global_lock(u32 field_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290{
Len Brown4be44fc2005-08-05 00:44:28 -0400291 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
Bob Mooreb229cf92006-04-21 17:15:00 -0400293 ACPI_FUNCTION_TRACE(ex_release_global_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
Bob Mooref02e9fa2008-04-10 19:06:37 +0400295 /* Only use the lock if the always_lock bit is set */
296
297 if (!(field_flags & AML_FIELD_LOCK_RULE_MASK)) {
298 return_VOID;
299 }
300
Bob Mooreba886cd2008-04-10 19:06:37 +0400301 /* Release the global lock */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
Bob Mooreba886cd2008-04-10 19:06:37 +0400303 status = acpi_ex_release_mutex_object(acpi_gbl_global_lock_mutex);
304 if (ACPI_FAILURE(status)) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400305
Bob Mooreba886cd2008-04-10 19:06:37 +0400306 /* Report the error, but there isn't much else we can do */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
Bob Mooreba886cd2008-04-10 19:06:37 +0400308 ACPI_EXCEPTION((AE_INFO, status,
309 "Could not release Global Lock"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 }
311
312 return_VOID;
313}
314
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315/*******************************************************************************
316 *
317 * FUNCTION: acpi_ex_digits_needed
318 *
Bob Mooreba494be2012-07-12 09:40:10 +0800319 * PARAMETERS: value - Value to be represented
320 * base - Base of representation
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 *
Robert Moore44f6c012005-04-18 22:49:35 -0400322 * RETURN: The number of digits.
323 *
324 * DESCRIPTION: Calculate the number of digits needed to represent the Value
325 * in the given Base (Radix)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 *
327 ******************************************************************************/
328
Bob Moore5df7e6c2010-01-21 10:06:32 +0800329static u32 acpi_ex_digits_needed(u64 value, u32 base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330{
Len Brown4be44fc2005-08-05 00:44:28 -0400331 u32 num_digits;
Bob Moore5df7e6c2010-01-21 10:06:32 +0800332 u64 current_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
Bob Mooreb229cf92006-04-21 17:15:00 -0400334 ACPI_FUNCTION_TRACE(ex_digits_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
Bob Moore5df7e6c2010-01-21 10:06:32 +0800336 /* u64 is unsigned, so we don't worry about a '-' prefix */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
338 if (value == 0) {
Bob Moore50eca3e2005-09-30 19:03:00 -0400339 return_UINT32(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 }
341
342 current_value = value;
343 num_digits = 0;
344
345 /* Count the digits in the requested base */
346
347 while (current_value) {
Len Brown4be44fc2005-08-05 00:44:28 -0400348 (void)acpi_ut_short_divide(current_value, base, &current_value,
349 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 num_digits++;
351 }
352
Bob Moore50eca3e2005-09-30 19:03:00 -0400353 return_UINT32(num_digits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354}
355
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356/*******************************************************************************
357 *
358 * FUNCTION: acpi_ex_eisa_id_to_string
359 *
Bob Moore15b8dd52009-06-29 13:39:29 +0800360 * PARAMETERS: compressed_id - EISAID to be converted
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 * out_string - Where to put the converted string (8 bytes)
362 *
Robert Moore44f6c012005-04-18 22:49:35 -0400363 * RETURN: None
364 *
Bob Moore15b8dd52009-06-29 13:39:29 +0800365 * DESCRIPTION: Convert a numeric EISAID to string representation. Return
366 * buffer must be large enough to hold the string. The string
367 * returned is always exactly of length ACPI_EISAID_STRING_SIZE
368 * (includes null terminator). The EISAID is always 32 bits.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 *
370 ******************************************************************************/
371
Bob Moore5df7e6c2010-01-21 10:06:32 +0800372void acpi_ex_eisa_id_to_string(char *out_string, u64 compressed_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373{
Bob Moore15b8dd52009-06-29 13:39:29 +0800374 u32 swapped_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
Len Brown4be44fc2005-08-05 00:44:28 -0400376 ACPI_FUNCTION_ENTRY();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
Bob Moore15b8dd52009-06-29 13:39:29 +0800378 /* The EISAID should be a 32-bit integer */
379
380 if (compressed_id > ACPI_UINT32_MAX) {
381 ACPI_WARNING((AE_INFO,
382 "Expected EISAID is larger than 32 bits: 0x%8.8X%8.8X, truncating",
383 ACPI_FORMAT_UINT64(compressed_id)));
384 }
385
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 /* Swap ID to big-endian to get contiguous bits */
387
Bob Moore15b8dd52009-06-29 13:39:29 +0800388 swapped_id = acpi_ut_dword_byte_swap((u32)compressed_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
Bob Moore15b8dd52009-06-29 13:39:29 +0800390 /* First 3 bytes are uppercase letters. Next 4 bytes are hexadecimal */
391
392 out_string[0] =
393 (char)(0x40 + (((unsigned long)swapped_id >> 26) & 0x1F));
394 out_string[1] = (char)(0x40 + ((swapped_id >> 21) & 0x1F));
395 out_string[2] = (char)(0x40 + ((swapped_id >> 16) & 0x1F));
Bob Moore5df7e6c2010-01-21 10:06:32 +0800396 out_string[3] = acpi_ut_hex_to_ascii_char((u64) swapped_id, 12);
397 out_string[4] = acpi_ut_hex_to_ascii_char((u64) swapped_id, 8);
398 out_string[5] = acpi_ut_hex_to_ascii_char((u64) swapped_id, 4);
399 out_string[6] = acpi_ut_hex_to_ascii_char((u64) swapped_id, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 out_string[7] = 0;
401}
402
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403/*******************************************************************************
404 *
Bob Moore15b8dd52009-06-29 13:39:29 +0800405 * FUNCTION: acpi_ex_integer_to_string
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 *
Bob Moore15b8dd52009-06-29 13:39:29 +0800407 * PARAMETERS: out_string - Where to put the converted string. At least
408 * 21 bytes are needed to hold the largest
409 * possible 64-bit integer.
Bob Mooreba494be2012-07-12 09:40:10 +0800410 * value - Value to be converted
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 *
Robert Moore44f6c012005-04-18 22:49:35 -0400412 * RETURN: None, string
413 *
Bob Moore15b8dd52009-06-29 13:39:29 +0800414 * DESCRIPTION: Convert a 64-bit integer to decimal string representation.
415 * Assumes string buffer is large enough to hold the string. The
416 * largest string is (ACPI_MAX64_DECIMAL_DIGITS + 1).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 *
418 ******************************************************************************/
419
Bob Moore5df7e6c2010-01-21 10:06:32 +0800420void acpi_ex_integer_to_string(char *out_string, u64 value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421{
Len Brown4be44fc2005-08-05 00:44:28 -0400422 u32 count;
423 u32 digits_needed;
424 u32 remainder;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
Len Brown4be44fc2005-08-05 00:44:28 -0400426 ACPI_FUNCTION_ENTRY();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
Len Brown4be44fc2005-08-05 00:44:28 -0400428 digits_needed = acpi_ex_digits_needed(value, 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 out_string[digits_needed] = 0;
430
431 for (count = digits_needed; count > 0; count--) {
Len Brown4be44fc2005-08-05 00:44:28 -0400432 (void)acpi_ut_short_divide(value, 10, &value, &remainder);
433 out_string[count - 1] = (char)('0' + remainder);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 }
435}
436
Bob Mooreec463662011-11-30 09:35:05 +0800437/*******************************************************************************
438 *
439 * FUNCTION: acpi_is_valid_space_id
440 *
441 * PARAMETERS: space_id - ID to be validated
442 *
443 * RETURN: TRUE if valid/supported ID.
444 *
Bob Mooreba494be2012-07-12 09:40:10 +0800445 * DESCRIPTION: Validate an operation region space_ID.
Bob Mooreec463662011-11-30 09:35:05 +0800446 *
447 ******************************************************************************/
448
449u8 acpi_is_valid_space_id(u8 space_id)
450{
451
452 if ((space_id >= ACPI_NUM_PREDEFINED_REGIONS) &&
453 (space_id < ACPI_USER_REGION_BEGIN) &&
454 (space_id != ACPI_ADR_SPACE_DATA_TABLE) &&
455 (space_id != ACPI_ADR_SPACE_FIXED_HARDWARE)) {
456 return (FALSE);
457 }
458
459 return (TRUE);
460}
461
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462#endif