Erik Schmauss | 9585763 | 2018-03-14 16:13:07 -0700 | [diff] [blame] | 1 | // SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /****************************************************************************** |
| 3 | * |
| 4 | * Module Name: exutils - interpreter/scanner utilities |
| 5 | * |
Bob Moore | 800ba7c | 2020-01-10 11:31:49 -0800 | [diff] [blame] | 6 | * Copyright (C) 2000 - 2020, Intel Corp. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * |
Erik Schmauss | 9585763 | 2018-03-14 16:13:07 -0700 | [diff] [blame] | 8 | *****************************************************************************/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | /* |
| 11 | * DEFINE_AML_GLOBALS is tested in amlcode.h |
| 12 | * to determine whether certain global names should be "defined" or only |
Bob Moore | 73a3090 | 2012-10-31 02:26:55 +0000 | [diff] [blame] | 13 | * "declared" in the current compilation. This enhances maintainability |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | * by enabling a single header file to embody all knowledge of the names |
| 15 | * in question. |
| 16 | * |
| 17 | * Exactly one module of any executable should #define DEFINE_GLOBALS |
Bob Moore | 73a3090 | 2012-10-31 02:26:55 +0000 | [diff] [blame] | 18 | * before #including the header files which use this convention. The |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | * names in question will be defined and initialized in that module, |
| 20 | * and declared as extern in all other modules which #include those |
| 21 | * header files. |
| 22 | */ |
| 23 | |
| 24 | #define DEFINE_AML_GLOBALS |
| 25 | |
| 26 | #include <acpi/acpi.h> |
Len Brown | e2f7a77 | 2009-01-09 00:30:03 -0500 | [diff] [blame] | 27 | #include "accommon.h" |
| 28 | #include "acinterp.h" |
| 29 | #include "amlcode.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | |
| 31 | #define _COMPONENT ACPI_EXECUTER |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 32 | ACPI_MODULE_NAME("exutils") |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 34 | /* Local prototypes */ |
Bob Moore | 5df7e6c | 2010-01-21 10:06:32 +0800 | [diff] [blame] | 35 | static u32 acpi_ex_digits_needed(u64 value, u32 base); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | /******************************************************************************* |
| 38 | * |
| 39 | * FUNCTION: acpi_ex_enter_interpreter |
| 40 | * |
| 41 | * PARAMETERS: None |
| 42 | * |
Len Brown | 4d2acd9 | 2007-05-09 22:56:38 -0400 | [diff] [blame] | 43 | * RETURN: None |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 44 | * |
Len Brown | 4d2acd9 | 2007-05-09 22:56:38 -0400 | [diff] [blame] | 45 | * DESCRIPTION: Enter the interpreter execution region. Failure to enter |
| 46 | * the interpreter region is a fatal system error. Used in |
| 47 | * conjunction with exit_interpreter. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | * |
| 49 | ******************************************************************************/ |
| 50 | |
Len Brown | 4d2acd9 | 2007-05-09 22:56:38 -0400 | [diff] [blame] | 51 | void acpi_ex_enter_interpreter(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 53 | acpi_status status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | |
Bob Moore | 977a622 | 2007-02-02 19:48:20 +0300 | [diff] [blame] | 55 | ACPI_FUNCTION_TRACE(ex_enter_interpreter); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | |
Bob Moore | 4c90ece | 2006-06-08 16:29:00 -0400 | [diff] [blame] | 57 | status = acpi_ut_acquire_mutex(ACPI_MTX_INTERPRETER); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 58 | if (ACPI_FAILURE(status)) { |
Len Brown | 4d2acd9 | 2007-05-09 22:56:38 -0400 | [diff] [blame] | 59 | ACPI_ERROR((AE_INFO, |
| 60 | "Could not acquire AML Interpreter mutex")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | } |
Lv Zheng | 74f51b8 | 2016-09-07 14:07:10 +0800 | [diff] [blame] | 62 | status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE); |
| 63 | if (ACPI_FAILURE(status)) { |
| 64 | ACPI_ERROR((AE_INFO, "Could not acquire AML Namespace mutex")); |
| 65 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | |
Len Brown | 4d2acd9 | 2007-05-09 22:56:38 -0400 | [diff] [blame] | 67 | return_VOID; |
| 68 | } |
| 69 | |
| 70 | /******************************************************************************* |
| 71 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | * FUNCTION: acpi_ex_exit_interpreter |
| 73 | * |
| 74 | * PARAMETERS: None |
| 75 | * |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 76 | * RETURN: None |
| 77 | * |
Len Brown | 4d2acd9 | 2007-05-09 22:56:38 -0400 | [diff] [blame] | 78 | * DESCRIPTION: Exit the interpreter execution region. This is the top level |
| 79 | * routine used to exit the interpreter when all processing has |
Lv Zheng | e2b8ddc | 2014-03-24 14:48:45 +0800 | [diff] [blame] | 80 | * been completed, or when the method blocks. |
| 81 | * |
| 82 | * Cases where the interpreter is unlocked internally: |
| 83 | * 1) Method will be blocked on a Sleep() AML opcode |
| 84 | * 2) Method will be blocked on an Acquire() AML opcode |
| 85 | * 3) Method will be blocked on a Wait() AML opcode |
| 86 | * 4) Method will be blocked to acquire the global lock |
| 87 | * 5) Method will be blocked waiting to execute a serialized control |
| 88 | * method that is currently executing |
| 89 | * 6) About to invoke a user-installed opregion handler |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | * |
| 91 | ******************************************************************************/ |
| 92 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 93 | void acpi_ex_exit_interpreter(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 95 | acpi_status status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 97 | ACPI_FUNCTION_TRACE(ex_exit_interpreter); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | |
Lv Zheng | 74f51b8 | 2016-09-07 14:07:10 +0800 | [diff] [blame] | 99 | status = acpi_ut_release_mutex(ACPI_MTX_NAMESPACE); |
| 100 | if (ACPI_FAILURE(status)) { |
| 101 | ACPI_ERROR((AE_INFO, "Could not release AML Namespace mutex")); |
| 102 | } |
Bob Moore | 4c90ece | 2006-06-08 16:29:00 -0400 | [diff] [blame] | 103 | status = acpi_ut_release_mutex(ACPI_MTX_INTERPRETER); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 104 | if (ACPI_FAILURE(status)) { |
Len Brown | 4d2acd9 | 2007-05-09 22:56:38 -0400 | [diff] [blame] | 105 | ACPI_ERROR((AE_INFO, |
| 106 | "Could not release AML Interpreter mutex")); |
| 107 | } |
| 108 | |
| 109 | return_VOID; |
| 110 | } |
| 111 | |
| 112 | /******************************************************************************* |
| 113 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | * FUNCTION: acpi_ex_truncate_for32bit_table |
| 115 | * |
| 116 | * PARAMETERS: obj_desc - Object to be truncated |
| 117 | * |
Bob Moore | ef42e53 | 2012-12-31 00:07:18 +0000 | [diff] [blame] | 118 | * RETURN: TRUE if a truncation was performed, FALSE otherwise. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | * |
Len Brown | 4d2acd9 | 2007-05-09 22:56:38 -0400 | [diff] [blame] | 120 | * DESCRIPTION: Truncate an ACPI Integer to 32 bits if the execution mode is |
| 121 | * 32-bit, as determined by the revision of the DSDT. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | * |
| 123 | ******************************************************************************/ |
| 124 | |
Bob Moore | ef42e53 | 2012-12-31 00:07:18 +0000 | [diff] [blame] | 125 | u8 acpi_ex_truncate_for32bit_table(union acpi_operand_object *obj_desc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | { |
| 127 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 128 | ACPI_FUNCTION_ENTRY(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | |
| 130 | /* |
| 131 | * Object must be a valid number and we must be executing |
Bob Moore | ef42e53 | 2012-12-31 00:07:18 +0000 | [diff] [blame] | 132 | * a control method. Object could be NS node for AML_INT_NAMEPATH_OP. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | */ |
| 134 | if ((!obj_desc) || |
Bob Moore | 4e3156b | 2008-04-10 19:06:37 +0400 | [diff] [blame] | 135 | (ACPI_GET_DESCRIPTOR_TYPE(obj_desc) != ACPI_DESC_TYPE_OPERAND) || |
Bob Moore | 3371c19 | 2009-02-18 14:44:03 +0800 | [diff] [blame] | 136 | (obj_desc->common.type != ACPI_TYPE_INTEGER)) { |
Bob Moore | ef42e53 | 2012-12-31 00:07:18 +0000 | [diff] [blame] | 137 | return (FALSE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | } |
| 139 | |
Bob Moore | ef42e53 | 2012-12-31 00:07:18 +0000 | [diff] [blame] | 140 | if ((acpi_gbl_integer_byte_width == 4) && |
| 141 | (obj_desc->integer.value > (u64)ACPI_UINT32_MAX)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | /* |
Bob Moore | 1fad873 | 2015-12-29 13:54:36 +0800 | [diff] [blame] | 143 | * We are executing in a 32-bit ACPI table. Truncate |
| 144 | * the value to 32 bits by zeroing out the upper 32-bit field |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | */ |
Bob Moore | ef42e53 | 2012-12-31 00:07:18 +0000 | [diff] [blame] | 146 | obj_desc->integer.value &= (u64)ACPI_UINT32_MAX; |
| 147 | return (TRUE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | } |
Bob Moore | ef42e53 | 2012-12-31 00:07:18 +0000 | [diff] [blame] | 149 | |
| 150 | return (FALSE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | } |
| 152 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | /******************************************************************************* |
| 154 | * |
| 155 | * FUNCTION: acpi_ex_acquire_global_lock |
| 156 | * |
| 157 | * PARAMETERS: field_flags - Flags with Lock rule: |
| 158 | * always_lock or never_lock |
| 159 | * |
Bob Moore | ba886cd | 2008-04-10 19:06:37 +0400 | [diff] [blame] | 160 | * RETURN: None |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | * |
Bob Moore | ba886cd | 2008-04-10 19:06:37 +0400 | [diff] [blame] | 162 | * DESCRIPTION: Obtain the ACPI hardware Global Lock, only if the field |
Erik Schmauss | c163f90c | 2019-02-15 13:36:19 -0800 | [diff] [blame] | 163 | * flags specify that it is to be obtained before field access. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | * |
| 165 | ******************************************************************************/ |
| 166 | |
Bob Moore | ba886cd | 2008-04-10 19:06:37 +0400 | [diff] [blame] | 167 | void acpi_ex_acquire_global_lock(u32 field_flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 169 | acpi_status status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 171 | ACPI_FUNCTION_TRACE(ex_acquire_global_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | |
Bob Moore | ba886cd | 2008-04-10 19:06:37 +0400 | [diff] [blame] | 173 | /* Only use the lock if the always_lock bit is set */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | |
Bob Moore | ba886cd | 2008-04-10 19:06:37 +0400 | [diff] [blame] | 175 | if (!(field_flags & AML_FIELD_LOCK_RULE_MASK)) { |
| 176 | return_VOID; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | } |
| 178 | |
Bob Moore | ba886cd | 2008-04-10 19:06:37 +0400 | [diff] [blame] | 179 | /* Attempt to get the global lock, wait forever */ |
| 180 | |
| 181 | status = acpi_ex_acquire_mutex_object(ACPI_WAIT_FOREVER, |
| 182 | acpi_gbl_global_lock_mutex, |
| 183 | acpi_os_get_thread_id()); |
| 184 | |
| 185 | if (ACPI_FAILURE(status)) { |
| 186 | ACPI_EXCEPTION((AE_INFO, status, |
| 187 | "Could not acquire Global Lock")); |
| 188 | } |
| 189 | |
| 190 | return_VOID; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | } |
| 192 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | /******************************************************************************* |
| 194 | * |
| 195 | * FUNCTION: acpi_ex_release_global_lock |
| 196 | * |
Bob Moore | f02e9fa | 2008-04-10 19:06:37 +0400 | [diff] [blame] | 197 | * PARAMETERS: field_flags - Flags with Lock rule: |
| 198 | * always_lock or never_lock |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | * |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 200 | * RETURN: None |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | * |
Bob Moore | ba886cd | 2008-04-10 19:06:37 +0400 | [diff] [blame] | 202 | * DESCRIPTION: Release the ACPI hardware Global Lock |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | * |
| 204 | ******************************************************************************/ |
| 205 | |
Bob Moore | f02e9fa | 2008-04-10 19:06:37 +0400 | [diff] [blame] | 206 | void acpi_ex_release_global_lock(u32 field_flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 208 | acpi_status status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 210 | ACPI_FUNCTION_TRACE(ex_release_global_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | |
Bob Moore | f02e9fa | 2008-04-10 19:06:37 +0400 | [diff] [blame] | 212 | /* Only use the lock if the always_lock bit is set */ |
| 213 | |
| 214 | if (!(field_flags & AML_FIELD_LOCK_RULE_MASK)) { |
| 215 | return_VOID; |
| 216 | } |
| 217 | |
Bob Moore | ba886cd | 2008-04-10 19:06:37 +0400 | [diff] [blame] | 218 | /* Release the global lock */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | |
Bob Moore | ba886cd | 2008-04-10 19:06:37 +0400 | [diff] [blame] | 220 | status = acpi_ex_release_mutex_object(acpi_gbl_global_lock_mutex); |
| 221 | if (ACPI_FAILURE(status)) { |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 222 | |
Bob Moore | ba886cd | 2008-04-10 19:06:37 +0400 | [diff] [blame] | 223 | /* Report the error, but there isn't much else we can do */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | |
Bob Moore | ba886cd | 2008-04-10 19:06:37 +0400 | [diff] [blame] | 225 | ACPI_EXCEPTION((AE_INFO, status, |
| 226 | "Could not release Global Lock")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 227 | } |
| 228 | |
| 229 | return_VOID; |
| 230 | } |
| 231 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | /******************************************************************************* |
| 233 | * |
| 234 | * FUNCTION: acpi_ex_digits_needed |
| 235 | * |
Bob Moore | ba494be | 2012-07-12 09:40:10 +0800 | [diff] [blame] | 236 | * PARAMETERS: value - Value to be represented |
| 237 | * base - Base of representation |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | * |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 239 | * RETURN: The number of digits. |
| 240 | * |
| 241 | * DESCRIPTION: Calculate the number of digits needed to represent the Value |
| 242 | * in the given Base (Radix) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 243 | * |
| 244 | ******************************************************************************/ |
| 245 | |
Bob Moore | 5df7e6c | 2010-01-21 10:06:32 +0800 | [diff] [blame] | 246 | static u32 acpi_ex_digits_needed(u64 value, u32 base) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 248 | u32 num_digits; |
Bob Moore | 5df7e6c | 2010-01-21 10:06:32 +0800 | [diff] [blame] | 249 | u64 current_value; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 251 | ACPI_FUNCTION_TRACE(ex_digits_needed); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 | |
Bob Moore | 5df7e6c | 2010-01-21 10:06:32 +0800 | [diff] [blame] | 253 | /* u64 is unsigned, so we don't worry about a '-' prefix */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 254 | |
| 255 | if (value == 0) { |
Bob Moore | fd1af71 | 2013-03-08 09:22:23 +0000 | [diff] [blame] | 256 | return_UINT32(1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | } |
| 258 | |
| 259 | current_value = value; |
| 260 | num_digits = 0; |
| 261 | |
| 262 | /* Count the digits in the requested base */ |
| 263 | |
| 264 | while (current_value) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 265 | (void)acpi_ut_short_divide(current_value, base, ¤t_value, |
| 266 | NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | num_digits++; |
| 268 | } |
| 269 | |
Bob Moore | fd1af71 | 2013-03-08 09:22:23 +0000 | [diff] [blame] | 270 | return_UINT32(num_digits); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 | } |
| 272 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | /******************************************************************************* |
| 274 | * |
| 275 | * FUNCTION: acpi_ex_eisa_id_to_string |
| 276 | * |
Bob Moore | d8aa069 | 2016-03-24 09:39:58 +0800 | [diff] [blame] | 277 | * PARAMETERS: out_string - Where to put the converted string (8 bytes) |
| 278 | * compressed_id - EISAID to be converted |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 279 | * |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 280 | * RETURN: None |
| 281 | * |
Bob Moore | 15b8dd5 | 2009-06-29 13:39:29 +0800 | [diff] [blame] | 282 | * DESCRIPTION: Convert a numeric EISAID to string representation. Return |
| 283 | * buffer must be large enough to hold the string. The string |
| 284 | * returned is always exactly of length ACPI_EISAID_STRING_SIZE |
| 285 | * (includes null terminator). The EISAID is always 32 bits. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 286 | * |
| 287 | ******************************************************************************/ |
| 288 | |
Bob Moore | 5df7e6c | 2010-01-21 10:06:32 +0800 | [diff] [blame] | 289 | void acpi_ex_eisa_id_to_string(char *out_string, u64 compressed_id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | { |
Bob Moore | 15b8dd5 | 2009-06-29 13:39:29 +0800 | [diff] [blame] | 291 | u32 swapped_id; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 292 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 293 | ACPI_FUNCTION_ENTRY(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 294 | |
Bob Moore | 15b8dd5 | 2009-06-29 13:39:29 +0800 | [diff] [blame] | 295 | /* The EISAID should be a 32-bit integer */ |
| 296 | |
| 297 | if (compressed_id > ACPI_UINT32_MAX) { |
| 298 | ACPI_WARNING((AE_INFO, |
Bob Moore | 1fad873 | 2015-12-29 13:54:36 +0800 | [diff] [blame] | 299 | "Expected EISAID is larger than 32 bits: " |
| 300 | "0x%8.8X%8.8X, truncating", |
Bob Moore | 15b8dd5 | 2009-06-29 13:39:29 +0800 | [diff] [blame] | 301 | ACPI_FORMAT_UINT64(compressed_id))); |
| 302 | } |
| 303 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | /* Swap ID to big-endian to get contiguous bits */ |
| 305 | |
Bob Moore | 15b8dd5 | 2009-06-29 13:39:29 +0800 | [diff] [blame] | 306 | swapped_id = acpi_ut_dword_byte_swap((u32)compressed_id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 | |
Bob Moore | 15b8dd5 | 2009-06-29 13:39:29 +0800 | [diff] [blame] | 308 | /* First 3 bytes are uppercase letters. Next 4 bytes are hexadecimal */ |
| 309 | |
| 310 | out_string[0] = |
| 311 | (char)(0x40 + (((unsigned long)swapped_id >> 26) & 0x1F)); |
| 312 | out_string[1] = (char)(0x40 + ((swapped_id >> 21) & 0x1F)); |
| 313 | out_string[2] = (char)(0x40 + ((swapped_id >> 16) & 0x1F)); |
Bob Moore | 5df7e6c | 2010-01-21 10:06:32 +0800 | [diff] [blame] | 314 | out_string[3] = acpi_ut_hex_to_ascii_char((u64) swapped_id, 12); |
| 315 | out_string[4] = acpi_ut_hex_to_ascii_char((u64) swapped_id, 8); |
| 316 | out_string[5] = acpi_ut_hex_to_ascii_char((u64) swapped_id, 4); |
| 317 | out_string[6] = acpi_ut_hex_to_ascii_char((u64) swapped_id, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 | out_string[7] = 0; |
| 319 | } |
| 320 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 321 | /******************************************************************************* |
| 322 | * |
Bob Moore | 15b8dd5 | 2009-06-29 13:39:29 +0800 | [diff] [blame] | 323 | * FUNCTION: acpi_ex_integer_to_string |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 324 | * |
Bob Moore | 15b8dd5 | 2009-06-29 13:39:29 +0800 | [diff] [blame] | 325 | * PARAMETERS: out_string - Where to put the converted string. At least |
| 326 | * 21 bytes are needed to hold the largest |
| 327 | * possible 64-bit integer. |
Bob Moore | ba494be | 2012-07-12 09:40:10 +0800 | [diff] [blame] | 328 | * value - Value to be converted |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 329 | * |
Bob Moore | d8aa069 | 2016-03-24 09:39:58 +0800 | [diff] [blame] | 330 | * RETURN: Converted string in out_string |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 331 | * |
Bob Moore | 15b8dd5 | 2009-06-29 13:39:29 +0800 | [diff] [blame] | 332 | * DESCRIPTION: Convert a 64-bit integer to decimal string representation. |
| 333 | * Assumes string buffer is large enough to hold the string. The |
| 334 | * largest string is (ACPI_MAX64_DECIMAL_DIGITS + 1). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 335 | * |
| 336 | ******************************************************************************/ |
| 337 | |
Bob Moore | 5df7e6c | 2010-01-21 10:06:32 +0800 | [diff] [blame] | 338 | void acpi_ex_integer_to_string(char *out_string, u64 value) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 339 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 340 | u32 count; |
| 341 | u32 digits_needed; |
| 342 | u32 remainder; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 344 | ACPI_FUNCTION_ENTRY(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 345 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 346 | digits_needed = acpi_ex_digits_needed(value, 10); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | out_string[digits_needed] = 0; |
| 348 | |
| 349 | for (count = digits_needed; count > 0; count--) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 350 | (void)acpi_ut_short_divide(value, 10, &value, &remainder); |
| 351 | out_string[count - 1] = (char)('0' + remainder); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 352 | } |
| 353 | } |
| 354 | |
Bob Moore | ec46366 | 2011-11-30 09:35:05 +0800 | [diff] [blame] | 355 | /******************************************************************************* |
| 356 | * |
Suravee Suthikulpanit | f65358e | 2015-07-01 14:44:04 +0800 | [diff] [blame] | 357 | * FUNCTION: acpi_ex_pci_cls_to_string |
| 358 | * |
| 359 | * PARAMETERS: out_string - Where to put the converted string (7 bytes) |
Bob Moore | d8aa069 | 2016-03-24 09:39:58 +0800 | [diff] [blame] | 360 | * class_code - PCI class code to be converted (3 bytes) |
Suravee Suthikulpanit | f65358e | 2015-07-01 14:44:04 +0800 | [diff] [blame] | 361 | * |
Bob Moore | d8aa069 | 2016-03-24 09:39:58 +0800 | [diff] [blame] | 362 | * RETURN: Converted string in out_string |
Suravee Suthikulpanit | f65358e | 2015-07-01 14:44:04 +0800 | [diff] [blame] | 363 | * |
| 364 | * DESCRIPTION: Convert 3-bytes PCI class code to string representation. |
| 365 | * Return buffer must be large enough to hold the string. The |
| 366 | * string returned is always exactly of length |
| 367 | * ACPI_PCICLS_STRING_SIZE (includes null terminator). |
| 368 | * |
| 369 | ******************************************************************************/ |
| 370 | |
| 371 | void acpi_ex_pci_cls_to_string(char *out_string, u8 class_code[3]) |
| 372 | { |
| 373 | |
| 374 | ACPI_FUNCTION_ENTRY(); |
| 375 | |
| 376 | /* All 3 bytes are hexadecimal */ |
| 377 | |
| 378 | out_string[0] = acpi_ut_hex_to_ascii_char((u64)class_code[0], 4); |
| 379 | out_string[1] = acpi_ut_hex_to_ascii_char((u64)class_code[0], 0); |
| 380 | out_string[2] = acpi_ut_hex_to_ascii_char((u64)class_code[1], 4); |
| 381 | out_string[3] = acpi_ut_hex_to_ascii_char((u64)class_code[1], 0); |
| 382 | out_string[4] = acpi_ut_hex_to_ascii_char((u64)class_code[2], 4); |
| 383 | out_string[5] = acpi_ut_hex_to_ascii_char((u64)class_code[2], 0); |
| 384 | out_string[6] = 0; |
| 385 | } |
| 386 | |
| 387 | /******************************************************************************* |
| 388 | * |
Bob Moore | ec46366 | 2011-11-30 09:35:05 +0800 | [diff] [blame] | 389 | * FUNCTION: acpi_is_valid_space_id |
| 390 | * |
| 391 | * PARAMETERS: space_id - ID to be validated |
| 392 | * |
Bob Moore | d8aa069 | 2016-03-24 09:39:58 +0800 | [diff] [blame] | 393 | * RETURN: TRUE if space_id is a valid/supported ID. |
Bob Moore | ec46366 | 2011-11-30 09:35:05 +0800 | [diff] [blame] | 394 | * |
Bob Moore | ba494be | 2012-07-12 09:40:10 +0800 | [diff] [blame] | 395 | * DESCRIPTION: Validate an operation region space_ID. |
Bob Moore | ec46366 | 2011-11-30 09:35:05 +0800 | [diff] [blame] | 396 | * |
| 397 | ******************************************************************************/ |
| 398 | |
| 399 | u8 acpi_is_valid_space_id(u8 space_id) |
| 400 | { |
| 401 | |
| 402 | if ((space_id >= ACPI_NUM_PREDEFINED_REGIONS) && |
| 403 | (space_id < ACPI_USER_REGION_BEGIN) && |
| 404 | (space_id != ACPI_ADR_SPACE_DATA_TABLE) && |
| 405 | (space_id != ACPI_ADR_SPACE_FIXED_HARDWARE)) { |
| 406 | return (FALSE); |
| 407 | } |
| 408 | |
| 409 | return (TRUE); |
| 410 | } |