blob: a8b857a7e9fb63291fcd5fb2dbf914b079b6cb08 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/******************************************************************************
2 *
3 * Module Name: exutils - interpreter/scanner utilities
4 *
5 *****************************************************************************/
6
7/*
Bob Moorec8100dc2016-01-15 08:17:03 +08008 * Copyright (C) 2000 - 2016, 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 }
Lv Zheng74f51b82016-09-07 14:07:10 +080097 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 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
Len Brown4d2acd92007-05-09 22:56:38 -0400102 return_VOID;
103}
104
105/*******************************************************************************
106 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 * FUNCTION: acpi_ex_exit_interpreter
108 *
109 * PARAMETERS: None
110 *
Robert Moore44f6c012005-04-18 22:49:35 -0400111 * RETURN: None
112 *
Len Brown4d2acd92007-05-09 22:56:38 -0400113 * DESCRIPTION: Exit the interpreter execution region. This is the top level
114 * routine used to exit the interpreter when all processing has
Lv Zhenge2b8ddc2014-03-24 14:48:45 +0800115 * 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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 *
126 ******************************************************************************/
127
Len Brown4be44fc2005-08-05 00:44:28 -0400128void acpi_ex_exit_interpreter(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129{
Len Brown4be44fc2005-08-05 00:44:28 -0400130 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
Bob Mooreb229cf92006-04-21 17:15:00 -0400132 ACPI_FUNCTION_TRACE(ex_exit_interpreter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
Lv Zheng74f51b82016-09-07 14:07:10 +0800134 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 }
Bob Moore4c90ece2006-06-08 16:29:00 -0400138 status = acpi_ut_release_mutex(ACPI_MTX_INTERPRETER);
Len Brown4be44fc2005-08-05 00:44:28 -0400139 if (ACPI_FAILURE(status)) {
Len Brown4d2acd92007-05-09 22:56:38 -0400140 ACPI_ERROR((AE_INFO,
141 "Could not release AML Interpreter mutex"));
142 }
143
144 return_VOID;
145}
146
147/*******************************************************************************
148 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 * FUNCTION: acpi_ex_truncate_for32bit_table
150 *
151 * PARAMETERS: obj_desc - Object to be truncated
152 *
Bob Mooreef42e532012-12-31 00:07:18 +0000153 * RETURN: TRUE if a truncation was performed, FALSE otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 *
Len Brown4d2acd92007-05-09 22:56:38 -0400155 * DESCRIPTION: Truncate an ACPI Integer to 32 bits if the execution mode is
156 * 32-bit, as determined by the revision of the DSDT.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 *
158 ******************************************************************************/
159
Bob Mooreef42e532012-12-31 00:07:18 +0000160u8 acpi_ex_truncate_for32bit_table(union acpi_operand_object *obj_desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161{
162
Len Brown4be44fc2005-08-05 00:44:28 -0400163 ACPI_FUNCTION_ENTRY();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
165 /*
166 * Object must be a valid number and we must be executing
Bob Mooreef42e532012-12-31 00:07:18 +0000167 * a control method. Object could be NS node for AML_INT_NAMEPATH_OP.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 */
169 if ((!obj_desc) ||
Bob Moore4e3156b2008-04-10 19:06:37 +0400170 (ACPI_GET_DESCRIPTOR_TYPE(obj_desc) != ACPI_DESC_TYPE_OPERAND) ||
Bob Moore3371c192009-02-18 14:44:03 +0800171 (obj_desc->common.type != ACPI_TYPE_INTEGER)) {
Bob Mooreef42e532012-12-31 00:07:18 +0000172 return (FALSE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 }
174
Bob Mooreef42e532012-12-31 00:07:18 +0000175 if ((acpi_gbl_integer_byte_width == 4) &&
176 (obj_desc->integer.value > (u64)ACPI_UINT32_MAX)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 /*
Bob Moore1fad8732015-12-29 13:54:36 +0800178 * We are executing in a 32-bit ACPI table. Truncate
179 * the value to 32 bits by zeroing out the upper 32-bit field
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 */
Bob Mooreef42e532012-12-31 00:07:18 +0000181 obj_desc->integer.value &= (u64)ACPI_UINT32_MAX;
182 return (TRUE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 }
Bob Mooreef42e532012-12-31 00:07:18 +0000184
185 return (FALSE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186}
187
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188/*******************************************************************************
189 *
190 * FUNCTION: acpi_ex_acquire_global_lock
191 *
192 * PARAMETERS: field_flags - Flags with Lock rule:
193 * always_lock or never_lock
194 *
Bob Mooreba886cd2008-04-10 19:06:37 +0400195 * RETURN: None
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 *
Bob Mooreba886cd2008-04-10 19:06:37 +0400197 * DESCRIPTION: Obtain the ACPI hardware Global Lock, only if the field
198 * flags specifiy that it is to be obtained before field access.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 *
200 ******************************************************************************/
201
Bob Mooreba886cd2008-04-10 19:06:37 +0400202void acpi_ex_acquire_global_lock(u32 field_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203{
Len Brown4be44fc2005-08-05 00:44:28 -0400204 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
Bob Mooreb229cf92006-04-21 17:15:00 -0400206 ACPI_FUNCTION_TRACE(ex_acquire_global_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
Bob Mooreba886cd2008-04-10 19:06:37 +0400208 /* Only use the lock if the always_lock bit is set */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
Bob Mooreba886cd2008-04-10 19:06:37 +0400210 if (!(field_flags & AML_FIELD_LOCK_RULE_MASK)) {
211 return_VOID;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 }
213
Bob Mooreba886cd2008-04-10 19:06:37 +0400214 /* Attempt to get the global lock, wait forever */
215
216 status = acpi_ex_acquire_mutex_object(ACPI_WAIT_FOREVER,
217 acpi_gbl_global_lock_mutex,
218 acpi_os_get_thread_id());
219
220 if (ACPI_FAILURE(status)) {
221 ACPI_EXCEPTION((AE_INFO, status,
222 "Could not acquire Global Lock"));
223 }
224
225 return_VOID;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226}
227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228/*******************************************************************************
229 *
230 * FUNCTION: acpi_ex_release_global_lock
231 *
Bob Mooref02e9fa2008-04-10 19:06:37 +0400232 * PARAMETERS: field_flags - Flags with Lock rule:
233 * always_lock or never_lock
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 *
Robert Moore44f6c012005-04-18 22:49:35 -0400235 * RETURN: None
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 *
Bob Mooreba886cd2008-04-10 19:06:37 +0400237 * DESCRIPTION: Release the ACPI hardware Global Lock
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 *
239 ******************************************************************************/
240
Bob Mooref02e9fa2008-04-10 19:06:37 +0400241void acpi_ex_release_global_lock(u32 field_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242{
Len Brown4be44fc2005-08-05 00:44:28 -0400243 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
Bob Mooreb229cf92006-04-21 17:15:00 -0400245 ACPI_FUNCTION_TRACE(ex_release_global_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
Bob Mooref02e9fa2008-04-10 19:06:37 +0400247 /* 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
Bob Mooreba886cd2008-04-10 19:06:37 +0400253 /* Release the global lock */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
Bob Mooreba886cd2008-04-10 19:06:37 +0400255 status = acpi_ex_release_mutex_object(acpi_gbl_global_lock_mutex);
256 if (ACPI_FAILURE(status)) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400257
Bob Mooreba886cd2008-04-10 19:06:37 +0400258 /* Report the error, but there isn't much else we can do */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
Bob Mooreba886cd2008-04-10 19:06:37 +0400260 ACPI_EXCEPTION((AE_INFO, status,
261 "Could not release Global Lock"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 }
263
264 return_VOID;
265}
266
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267/*******************************************************************************
268 *
269 * FUNCTION: acpi_ex_digits_needed
270 *
Bob Mooreba494be2012-07-12 09:40:10 +0800271 * PARAMETERS: value - Value to be represented
272 * base - Base of representation
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 *
Robert Moore44f6c012005-04-18 22:49:35 -0400274 * RETURN: The number of digits.
275 *
276 * DESCRIPTION: Calculate the number of digits needed to represent the Value
277 * in the given Base (Radix)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 *
279 ******************************************************************************/
280
Bob Moore5df7e6c2010-01-21 10:06:32 +0800281static u32 acpi_ex_digits_needed(u64 value, u32 base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282{
Len Brown4be44fc2005-08-05 00:44:28 -0400283 u32 num_digits;
Bob Moore5df7e6c2010-01-21 10:06:32 +0800284 u64 current_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
Bob Mooreb229cf92006-04-21 17:15:00 -0400286 ACPI_FUNCTION_TRACE(ex_digits_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
Bob Moore5df7e6c2010-01-21 10:06:32 +0800288 /* u64 is unsigned, so we don't worry about a '-' prefix */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
290 if (value == 0) {
Bob Moorefd1af712013-03-08 09:22:23 +0000291 return_UINT32(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 }
293
294 current_value = value;
295 num_digits = 0;
296
297 /* Count the digits in the requested base */
298
299 while (current_value) {
Len Brown4be44fc2005-08-05 00:44:28 -0400300 (void)acpi_ut_short_divide(current_value, base, &current_value,
301 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 num_digits++;
303 }
304
Bob Moorefd1af712013-03-08 09:22:23 +0000305 return_UINT32(num_digits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306}
307
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308/*******************************************************************************
309 *
310 * FUNCTION: acpi_ex_eisa_id_to_string
311 *
Bob Moored8aa0692016-03-24 09:39:58 +0800312 * PARAMETERS: out_string - Where to put the converted string (8 bytes)
313 * compressed_id - EISAID to be converted
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 *
Robert Moore44f6c012005-04-18 22:49:35 -0400315 * RETURN: None
316 *
Bob Moore15b8dd52009-06-29 13:39:29 +0800317 * 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 *
322 ******************************************************************************/
323
Bob Moore5df7e6c2010-01-21 10:06:32 +0800324void acpi_ex_eisa_id_to_string(char *out_string, u64 compressed_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325{
Bob Moore15b8dd52009-06-29 13:39:29 +0800326 u32 swapped_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
Len Brown4be44fc2005-08-05 00:44:28 -0400328 ACPI_FUNCTION_ENTRY();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
Bob Moore15b8dd52009-06-29 13:39:29 +0800330 /* The EISAID should be a 32-bit integer */
331
332 if (compressed_id > ACPI_UINT32_MAX) {
333 ACPI_WARNING((AE_INFO,
Bob Moore1fad8732015-12-29 13:54:36 +0800334 "Expected EISAID is larger than 32 bits: "
335 "0x%8.8X%8.8X, truncating",
Bob Moore15b8dd52009-06-29 13:39:29 +0800336 ACPI_FORMAT_UINT64(compressed_id)));
337 }
338
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 /* Swap ID to big-endian to get contiguous bits */
340
Bob Moore15b8dd52009-06-29 13:39:29 +0800341 swapped_id = acpi_ut_dword_byte_swap((u32)compressed_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
Bob Moore15b8dd52009-06-29 13:39:29 +0800343 /* 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));
Bob Moore5df7e6c2010-01-21 10:06:32 +0800349 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 out_string[7] = 0;
354}
355
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356/*******************************************************************************
357 *
Bob Moore15b8dd52009-06-29 13:39:29 +0800358 * FUNCTION: acpi_ex_integer_to_string
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 *
Bob Moore15b8dd52009-06-29 13:39:29 +0800360 * 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.
Bob Mooreba494be2012-07-12 09:40:10 +0800363 * value - Value to be converted
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 *
Bob Moored8aa0692016-03-24 09:39:58 +0800365 * RETURN: Converted string in out_string
Robert Moore44f6c012005-04-18 22:49:35 -0400366 *
Bob Moore15b8dd52009-06-29 13:39:29 +0800367 * 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).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 *
371 ******************************************************************************/
372
Bob Moore5df7e6c2010-01-21 10:06:32 +0800373void acpi_ex_integer_to_string(char *out_string, u64 value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374{
Len Brown4be44fc2005-08-05 00:44:28 -0400375 u32 count;
376 u32 digits_needed;
377 u32 remainder;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
Len Brown4be44fc2005-08-05 00:44:28 -0400379 ACPI_FUNCTION_ENTRY();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
Len Brown4be44fc2005-08-05 00:44:28 -0400381 digits_needed = acpi_ex_digits_needed(value, 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 out_string[digits_needed] = 0;
383
384 for (count = digits_needed; count > 0; count--) {
Len Brown4be44fc2005-08-05 00:44:28 -0400385 (void)acpi_ut_short_divide(value, 10, &value, &remainder);
386 out_string[count - 1] = (char)('0' + remainder);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 }
388}
389
Bob Mooreec463662011-11-30 09:35:05 +0800390/*******************************************************************************
391 *
Suravee Suthikulpanitf65358e2015-07-01 14:44:04 +0800392 * FUNCTION: acpi_ex_pci_cls_to_string
393 *
394 * PARAMETERS: out_string - Where to put the converted string (7 bytes)
Bob Moored8aa0692016-03-24 09:39:58 +0800395 * class_code - PCI class code to be converted (3 bytes)
Suravee Suthikulpanitf65358e2015-07-01 14:44:04 +0800396 *
Bob Moored8aa0692016-03-24 09:39:58 +0800397 * RETURN: Converted string in out_string
Suravee Suthikulpanitf65358e2015-07-01 14:44:04 +0800398 *
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
422/*******************************************************************************
423 *
Bob Mooreec463662011-11-30 09:35:05 +0800424 * FUNCTION: acpi_is_valid_space_id
425 *
426 * PARAMETERS: space_id - ID to be validated
427 *
Bob Moored8aa0692016-03-24 09:39:58 +0800428 * RETURN: TRUE if space_id is a valid/supported ID.
Bob Mooreec463662011-11-30 09:35:05 +0800429 *
Bob Mooreba494be2012-07-12 09:40:10 +0800430 * DESCRIPTION: Validate an operation region space_ID.
Bob Mooreec463662011-11-30 09:35:05 +0800431 *
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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447#endif