exutils.c 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438
  1. /******************************************************************************
  2. *
  3. * Module Name: exutils - interpreter/scanner utilities
  4. *
  5. *****************************************************************************/
  6. /*
  7. * Copyright (C) 2000 - 2015, Intel Corp.
  8. * All rights reserved.
  9. *
  10. * Redistribution and use in source and binary forms, with or without
  11. * modification, are permitted provided that the following conditions
  12. * are met:
  13. * 1. Redistributions of source code must retain the above copyright
  14. * notice, this list of conditions, and the following disclaimer,
  15. * without modification.
  16. * 2. Redistributions in binary form must reproduce at minimum a disclaimer
  17. * substantially similar to the "NO WARRANTY" disclaimer below
  18. * ("Disclaimer") and any redistribution must be conditioned upon
  19. * including a substantially similar Disclaimer requirement for further
  20. * binary redistribution.
  21. * 3. Neither the names of the above-listed copyright holders nor the names
  22. * of any contributors may be used to endorse or promote products derived
  23. * from this software without specific prior written permission.
  24. *
  25. * Alternatively, this software may be distributed under the terms of the
  26. * GNU General Public License ("GPL") version 2 as published by the Free
  27. * Software Foundation.
  28. *
  29. * NO WARRANTY
  30. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  31. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  32. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
  33. * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  34. * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  35. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  36. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  37. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  38. * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
  39. * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  40. * POSSIBILITY OF SUCH DAMAGES.
  41. */
  42. /*
  43. * DEFINE_AML_GLOBALS is tested in amlcode.h
  44. * to determine whether certain global names should be "defined" or only
  45. * "declared" in the current compilation. This enhances maintainability
  46. * by enabling a single header file to embody all knowledge of the names
  47. * in question.
  48. *
  49. * Exactly one module of any executable should #define DEFINE_GLOBALS
  50. * before #including the header files which use this convention. The
  51. * names in question will be defined and initialized in that module,
  52. * and declared as extern in all other modules which #include those
  53. * header files.
  54. */
  55. #define DEFINE_AML_GLOBALS
  56. #include <acpi/acpi.h>
  57. #include "accommon.h"
  58. #include "acinterp.h"
  59. #include "amlcode.h"
  60. #define _COMPONENT ACPI_EXECUTER
  61. ACPI_MODULE_NAME("exutils")
  62. /* Local prototypes */
  63. static u32 acpi_ex_digits_needed(u64 value, u32 base);
  64. #ifndef ACPI_NO_METHOD_EXECUTION
  65. /*******************************************************************************
  66. *
  67. * FUNCTION: acpi_ex_enter_interpreter
  68. *
  69. * PARAMETERS: None
  70. *
  71. * RETURN: None
  72. *
  73. * DESCRIPTION: Enter the interpreter execution region. Failure to enter
  74. * the interpreter region is a fatal system error. Used in
  75. * conjunction with exit_interpreter.
  76. *
  77. ******************************************************************************/
  78. void acpi_ex_enter_interpreter(void)
  79. {
  80. acpi_status status;
  81. ACPI_FUNCTION_TRACE(ex_enter_interpreter);
  82. status = acpi_ut_acquire_mutex(ACPI_MTX_INTERPRETER);
  83. if (ACPI_FAILURE(status)) {
  84. ACPI_ERROR((AE_INFO,
  85. "Could not acquire AML Interpreter mutex"));
  86. }
  87. return_VOID;
  88. }
  89. /*******************************************************************************
  90. *
  91. * FUNCTION: acpi_ex_exit_interpreter
  92. *
  93. * PARAMETERS: None
  94. *
  95. * RETURN: None
  96. *
  97. * DESCRIPTION: Exit the interpreter execution region. This is the top level
  98. * routine used to exit the interpreter when all processing has
  99. * been completed, or when the method blocks.
  100. *
  101. * Cases where the interpreter is unlocked internally:
  102. * 1) Method will be blocked on a Sleep() AML opcode
  103. * 2) Method will be blocked on an Acquire() AML opcode
  104. * 3) Method will be blocked on a Wait() AML opcode
  105. * 4) Method will be blocked to acquire the global lock
  106. * 5) Method will be blocked waiting to execute a serialized control
  107. * method that is currently executing
  108. * 6) About to invoke a user-installed opregion handler
  109. *
  110. ******************************************************************************/
  111. void acpi_ex_exit_interpreter(void)
  112. {
  113. acpi_status status;
  114. ACPI_FUNCTION_TRACE(ex_exit_interpreter);
  115. status = acpi_ut_release_mutex(ACPI_MTX_INTERPRETER);
  116. if (ACPI_FAILURE(status)) {
  117. ACPI_ERROR((AE_INFO,
  118. "Could not release AML Interpreter mutex"));
  119. }
  120. return_VOID;
  121. }
  122. /*******************************************************************************
  123. *
  124. * FUNCTION: acpi_ex_truncate_for32bit_table
  125. *
  126. * PARAMETERS: obj_desc - Object to be truncated
  127. *
  128. * RETURN: TRUE if a truncation was performed, FALSE otherwise.
  129. *
  130. * DESCRIPTION: Truncate an ACPI Integer to 32 bits if the execution mode is
  131. * 32-bit, as determined by the revision of the DSDT.
  132. *
  133. ******************************************************************************/
  134. u8 acpi_ex_truncate_for32bit_table(union acpi_operand_object *obj_desc)
  135. {
  136. ACPI_FUNCTION_ENTRY();
  137. /*
  138. * Object must be a valid number and we must be executing
  139. * a control method. Object could be NS node for AML_INT_NAMEPATH_OP.
  140. */
  141. if ((!obj_desc) ||
  142. (ACPI_GET_DESCRIPTOR_TYPE(obj_desc) != ACPI_DESC_TYPE_OPERAND) ||
  143. (obj_desc->common.type != ACPI_TYPE_INTEGER)) {
  144. return (FALSE);
  145. }
  146. if ((acpi_gbl_integer_byte_width == 4) &&
  147. (obj_desc->integer.value > (u64)ACPI_UINT32_MAX)) {
  148. /*
  149. * We are executing in a 32-bit ACPI table.
  150. * Truncate the value to 32 bits by zeroing out the upper 32-bit field
  151. */
  152. obj_desc->integer.value &= (u64)ACPI_UINT32_MAX;
  153. return (TRUE);
  154. }
  155. return (FALSE);
  156. }
  157. /*******************************************************************************
  158. *
  159. * FUNCTION: acpi_ex_acquire_global_lock
  160. *
  161. * PARAMETERS: field_flags - Flags with Lock rule:
  162. * always_lock or never_lock
  163. *
  164. * RETURN: None
  165. *
  166. * DESCRIPTION: Obtain the ACPI hardware Global Lock, only if the field
  167. * flags specifiy that it is to be obtained before field access.
  168. *
  169. ******************************************************************************/
  170. void acpi_ex_acquire_global_lock(u32 field_flags)
  171. {
  172. acpi_status status;
  173. ACPI_FUNCTION_TRACE(ex_acquire_global_lock);
  174. /* Only use the lock if the always_lock bit is set */
  175. if (!(field_flags & AML_FIELD_LOCK_RULE_MASK)) {
  176. return_VOID;
  177. }
  178. /* Attempt to get the global lock, wait forever */
  179. status = acpi_ex_acquire_mutex_object(ACPI_WAIT_FOREVER,
  180. acpi_gbl_global_lock_mutex,
  181. acpi_os_get_thread_id());
  182. if (ACPI_FAILURE(status)) {
  183. ACPI_EXCEPTION((AE_INFO, status,
  184. "Could not acquire Global Lock"));
  185. }
  186. return_VOID;
  187. }
  188. /*******************************************************************************
  189. *
  190. * FUNCTION: acpi_ex_release_global_lock
  191. *
  192. * PARAMETERS: field_flags - Flags with Lock rule:
  193. * always_lock or never_lock
  194. *
  195. * RETURN: None
  196. *
  197. * DESCRIPTION: Release the ACPI hardware Global Lock
  198. *
  199. ******************************************************************************/
  200. void acpi_ex_release_global_lock(u32 field_flags)
  201. {
  202. acpi_status status;
  203. ACPI_FUNCTION_TRACE(ex_release_global_lock);
  204. /* Only use the lock if the always_lock bit is set */
  205. if (!(field_flags & AML_FIELD_LOCK_RULE_MASK)) {
  206. return_VOID;
  207. }
  208. /* Release the global lock */
  209. status = acpi_ex_release_mutex_object(acpi_gbl_global_lock_mutex);
  210. if (ACPI_FAILURE(status)) {
  211. /* Report the error, but there isn't much else we can do */
  212. ACPI_EXCEPTION((AE_INFO, status,
  213. "Could not release Global Lock"));
  214. }
  215. return_VOID;
  216. }
  217. /*******************************************************************************
  218. *
  219. * FUNCTION: acpi_ex_digits_needed
  220. *
  221. * PARAMETERS: value - Value to be represented
  222. * base - Base of representation
  223. *
  224. * RETURN: The number of digits.
  225. *
  226. * DESCRIPTION: Calculate the number of digits needed to represent the Value
  227. * in the given Base (Radix)
  228. *
  229. ******************************************************************************/
  230. static u32 acpi_ex_digits_needed(u64 value, u32 base)
  231. {
  232. u32 num_digits;
  233. u64 current_value;
  234. ACPI_FUNCTION_TRACE(ex_digits_needed);
  235. /* u64 is unsigned, so we don't worry about a '-' prefix */
  236. if (value == 0) {
  237. return_UINT32(1);
  238. }
  239. current_value = value;
  240. num_digits = 0;
  241. /* Count the digits in the requested base */
  242. while (current_value) {
  243. (void)acpi_ut_short_divide(current_value, base, &current_value,
  244. NULL);
  245. num_digits++;
  246. }
  247. return_UINT32(num_digits);
  248. }
  249. /*******************************************************************************
  250. *
  251. * FUNCTION: acpi_ex_eisa_id_to_string
  252. *
  253. * PARAMETERS: compressed_id - EISAID to be converted
  254. * out_string - Where to put the converted string (8 bytes)
  255. *
  256. * RETURN: None
  257. *
  258. * DESCRIPTION: Convert a numeric EISAID to string representation. Return
  259. * buffer must be large enough to hold the string. The string
  260. * returned is always exactly of length ACPI_EISAID_STRING_SIZE
  261. * (includes null terminator). The EISAID is always 32 bits.
  262. *
  263. ******************************************************************************/
  264. void acpi_ex_eisa_id_to_string(char *out_string, u64 compressed_id)
  265. {
  266. u32 swapped_id;
  267. ACPI_FUNCTION_ENTRY();
  268. /* The EISAID should be a 32-bit integer */
  269. if (compressed_id > ACPI_UINT32_MAX) {
  270. ACPI_WARNING((AE_INFO,
  271. "Expected EISAID is larger than 32 bits: 0x%8.8X%8.8X, truncating",
  272. ACPI_FORMAT_UINT64(compressed_id)));
  273. }
  274. /* Swap ID to big-endian to get contiguous bits */
  275. swapped_id = acpi_ut_dword_byte_swap((u32)compressed_id);
  276. /* First 3 bytes are uppercase letters. Next 4 bytes are hexadecimal */
  277. out_string[0] =
  278. (char)(0x40 + (((unsigned long)swapped_id >> 26) & 0x1F));
  279. out_string[1] = (char)(0x40 + ((swapped_id >> 21) & 0x1F));
  280. out_string[2] = (char)(0x40 + ((swapped_id >> 16) & 0x1F));
  281. out_string[3] = acpi_ut_hex_to_ascii_char((u64) swapped_id, 12);
  282. out_string[4] = acpi_ut_hex_to_ascii_char((u64) swapped_id, 8);
  283. out_string[5] = acpi_ut_hex_to_ascii_char((u64) swapped_id, 4);
  284. out_string[6] = acpi_ut_hex_to_ascii_char((u64) swapped_id, 0);
  285. out_string[7] = 0;
  286. }
  287. /*******************************************************************************
  288. *
  289. * FUNCTION: acpi_ex_integer_to_string
  290. *
  291. * PARAMETERS: out_string - Where to put the converted string. At least
  292. * 21 bytes are needed to hold the largest
  293. * possible 64-bit integer.
  294. * value - Value to be converted
  295. *
  296. * RETURN: None, string
  297. *
  298. * DESCRIPTION: Convert a 64-bit integer to decimal string representation.
  299. * Assumes string buffer is large enough to hold the string. The
  300. * largest string is (ACPI_MAX64_DECIMAL_DIGITS + 1).
  301. *
  302. ******************************************************************************/
  303. void acpi_ex_integer_to_string(char *out_string, u64 value)
  304. {
  305. u32 count;
  306. u32 digits_needed;
  307. u32 remainder;
  308. ACPI_FUNCTION_ENTRY();
  309. digits_needed = acpi_ex_digits_needed(value, 10);
  310. out_string[digits_needed] = 0;
  311. for (count = digits_needed; count > 0; count--) {
  312. (void)acpi_ut_short_divide(value, 10, &value, &remainder);
  313. out_string[count - 1] = (char)('0' + remainder);
  314. }
  315. }
  316. /*******************************************************************************
  317. *
  318. * FUNCTION: acpi_ex_pci_cls_to_string
  319. *
  320. * PARAMETERS: out_string - Where to put the converted string (7 bytes)
  321. * PARAMETERS: class_code - PCI class code to be converted (3 bytes)
  322. *
  323. * RETURN: None
  324. *
  325. * DESCRIPTION: Convert 3-bytes PCI class code to string representation.
  326. * Return buffer must be large enough to hold the string. The
  327. * string returned is always exactly of length
  328. * ACPI_PCICLS_STRING_SIZE (includes null terminator).
  329. *
  330. ******************************************************************************/
  331. void acpi_ex_pci_cls_to_string(char *out_string, u8 class_code[3])
  332. {
  333. ACPI_FUNCTION_ENTRY();
  334. /* All 3 bytes are hexadecimal */
  335. out_string[0] = acpi_ut_hex_to_ascii_char((u64)class_code[0], 4);
  336. out_string[1] = acpi_ut_hex_to_ascii_char((u64)class_code[0], 0);
  337. out_string[2] = acpi_ut_hex_to_ascii_char((u64)class_code[1], 4);
  338. out_string[3] = acpi_ut_hex_to_ascii_char((u64)class_code[1], 0);
  339. out_string[4] = acpi_ut_hex_to_ascii_char((u64)class_code[2], 4);
  340. out_string[5] = acpi_ut_hex_to_ascii_char((u64)class_code[2], 0);
  341. out_string[6] = 0;
  342. }
  343. /*******************************************************************************
  344. *
  345. * FUNCTION: acpi_is_valid_space_id
  346. *
  347. * PARAMETERS: space_id - ID to be validated
  348. *
  349. * RETURN: TRUE if valid/supported ID.
  350. *
  351. * DESCRIPTION: Validate an operation region space_ID.
  352. *
  353. ******************************************************************************/
  354. u8 acpi_is_valid_space_id(u8 space_id)
  355. {
  356. if ((space_id >= ACPI_NUM_PREDEFINED_REGIONS) &&
  357. (space_id < ACPI_USER_REGION_BEGIN) &&
  358. (space_id != ACPI_ADR_SPACE_DATA_TABLE) &&
  359. (space_id != ACPI_ADR_SPACE_FIXED_HARDWARE)) {
  360. return (FALSE);
  361. }
  362. return (TRUE);
  363. }
  364. #endif