exutils.c 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464
  1. /******************************************************************************
  2. *
  3. * Module Name: exutils - interpreter/scanner utilities
  4. *
  5. *****************************************************************************/
  6. /*
  7. * Copyright (C) 2000 - 2012, 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_reacquire_interpreter
  92. *
  93. * PARAMETERS: None
  94. *
  95. * RETURN: None
  96. *
  97. * DESCRIPTION: Reacquire the interpreter execution region from within the
  98. * interpreter code. Failure to enter the interpreter region is a
  99. * fatal system error. Used in conjunction with
  100. * relinquish_interpreter
  101. *
  102. ******************************************************************************/
  103. void acpi_ex_reacquire_interpreter(void)
  104. {
  105. ACPI_FUNCTION_TRACE(ex_reacquire_interpreter);
  106. /*
  107. * If the global serialized flag is set, do not release the interpreter,
  108. * since it was not actually released by acpi_ex_relinquish_interpreter.
  109. * This forces the interpreter to be single threaded.
  110. */
  111. if (!acpi_gbl_all_methods_serialized) {
  112. acpi_ex_enter_interpreter();
  113. }
  114. return_VOID;
  115. }
  116. /*******************************************************************************
  117. *
  118. * FUNCTION: acpi_ex_exit_interpreter
  119. *
  120. * PARAMETERS: None
  121. *
  122. * RETURN: None
  123. *
  124. * DESCRIPTION: Exit the interpreter execution region. This is the top level
  125. * routine used to exit the interpreter when all processing has
  126. * been completed.
  127. *
  128. ******************************************************************************/
  129. void acpi_ex_exit_interpreter(void)
  130. {
  131. acpi_status status;
  132. ACPI_FUNCTION_TRACE(ex_exit_interpreter);
  133. status = acpi_ut_release_mutex(ACPI_MTX_INTERPRETER);
  134. if (ACPI_FAILURE(status)) {
  135. ACPI_ERROR((AE_INFO,
  136. "Could not release AML Interpreter mutex"));
  137. }
  138. return_VOID;
  139. }
  140. /*******************************************************************************
  141. *
  142. * FUNCTION: acpi_ex_relinquish_interpreter
  143. *
  144. * PARAMETERS: None
  145. *
  146. * RETURN: None
  147. *
  148. * DESCRIPTION: Exit the interpreter execution region, from within the
  149. * interpreter - before attempting an operation that will possibly
  150. * block the running thread.
  151. *
  152. * Cases where the interpreter is unlocked internally
  153. * 1) Method to be blocked on a Sleep() AML opcode
  154. * 2) Method to be blocked on an Acquire() AML opcode
  155. * 3) Method to be blocked on a Wait() AML opcode
  156. * 4) Method to be blocked to acquire the global lock
  157. * 5) Method to be blocked waiting to execute a serialized control method
  158. * that is currently executing
  159. * 6) About to invoke a user-installed opregion handler
  160. *
  161. ******************************************************************************/
  162. void acpi_ex_relinquish_interpreter(void)
  163. {
  164. ACPI_FUNCTION_TRACE(ex_relinquish_interpreter);
  165. /*
  166. * If the global serialized flag is set, do not release the interpreter.
  167. * This forces the interpreter to be single threaded.
  168. */
  169. if (!acpi_gbl_all_methods_serialized) {
  170. acpi_ex_exit_interpreter();
  171. }
  172. return_VOID;
  173. }
  174. /*******************************************************************************
  175. *
  176. * FUNCTION: acpi_ex_truncate_for32bit_table
  177. *
  178. * PARAMETERS: obj_desc - Object to be truncated
  179. *
  180. * RETURN: none
  181. *
  182. * DESCRIPTION: Truncate an ACPI Integer to 32 bits if the execution mode is
  183. * 32-bit, as determined by the revision of the DSDT.
  184. *
  185. ******************************************************************************/
  186. void acpi_ex_truncate_for32bit_table(union acpi_operand_object *obj_desc)
  187. {
  188. ACPI_FUNCTION_ENTRY();
  189. /*
  190. * Object must be a valid number and we must be executing
  191. * a control method. NS node could be there for AML_INT_NAMEPATH_OP.
  192. */
  193. if ((!obj_desc) ||
  194. (ACPI_GET_DESCRIPTOR_TYPE(obj_desc) != ACPI_DESC_TYPE_OPERAND) ||
  195. (obj_desc->common.type != ACPI_TYPE_INTEGER)) {
  196. return;
  197. }
  198. if (acpi_gbl_integer_byte_width == 4) {
  199. /*
  200. * We are running a method that exists in a 32-bit ACPI table.
  201. * Truncate the value to 32 bits by zeroing out the upper 32-bit field
  202. */
  203. obj_desc->integer.value &= (u64) ACPI_UINT32_MAX;
  204. }
  205. }
  206. /*******************************************************************************
  207. *
  208. * FUNCTION: acpi_ex_acquire_global_lock
  209. *
  210. * PARAMETERS: field_flags - Flags with Lock rule:
  211. * always_lock or never_lock
  212. *
  213. * RETURN: None
  214. *
  215. * DESCRIPTION: Obtain the ACPI hardware Global Lock, only if the field
  216. * flags specifiy that it is to be obtained before field access.
  217. *
  218. ******************************************************************************/
  219. void acpi_ex_acquire_global_lock(u32 field_flags)
  220. {
  221. acpi_status status;
  222. ACPI_FUNCTION_TRACE(ex_acquire_global_lock);
  223. /* Only use the lock if the always_lock bit is set */
  224. if (!(field_flags & AML_FIELD_LOCK_RULE_MASK)) {
  225. return_VOID;
  226. }
  227. /* Attempt to get the global lock, wait forever */
  228. status = acpi_ex_acquire_mutex_object(ACPI_WAIT_FOREVER,
  229. acpi_gbl_global_lock_mutex,
  230. acpi_os_get_thread_id());
  231. if (ACPI_FAILURE(status)) {
  232. ACPI_EXCEPTION((AE_INFO, status,
  233. "Could not acquire Global Lock"));
  234. }
  235. return_VOID;
  236. }
  237. /*******************************************************************************
  238. *
  239. * FUNCTION: acpi_ex_release_global_lock
  240. *
  241. * PARAMETERS: field_flags - Flags with Lock rule:
  242. * always_lock or never_lock
  243. *
  244. * RETURN: None
  245. *
  246. * DESCRIPTION: Release the ACPI hardware Global Lock
  247. *
  248. ******************************************************************************/
  249. void acpi_ex_release_global_lock(u32 field_flags)
  250. {
  251. acpi_status status;
  252. ACPI_FUNCTION_TRACE(ex_release_global_lock);
  253. /* Only use the lock if the always_lock bit is set */
  254. if (!(field_flags & AML_FIELD_LOCK_RULE_MASK)) {
  255. return_VOID;
  256. }
  257. /* Release the global lock */
  258. status = acpi_ex_release_mutex_object(acpi_gbl_global_lock_mutex);
  259. if (ACPI_FAILURE(status)) {
  260. /* Report the error, but there isn't much else we can do */
  261. ACPI_EXCEPTION((AE_INFO, status,
  262. "Could not release Global Lock"));
  263. }
  264. return_VOID;
  265. }
  266. /*******************************************************************************
  267. *
  268. * FUNCTION: acpi_ex_digits_needed
  269. *
  270. * PARAMETERS: Value - Value to be represented
  271. * Base - Base of representation
  272. *
  273. * RETURN: The number of digits.
  274. *
  275. * DESCRIPTION: Calculate the number of digits needed to represent the Value
  276. * in the given Base (Radix)
  277. *
  278. ******************************************************************************/
  279. static u32 acpi_ex_digits_needed(u64 value, u32 base)
  280. {
  281. u32 num_digits;
  282. u64 current_value;
  283. ACPI_FUNCTION_TRACE(ex_digits_needed);
  284. /* u64 is unsigned, so we don't worry about a '-' prefix */
  285. if (value == 0) {
  286. return_UINT32(1);
  287. }
  288. current_value = value;
  289. num_digits = 0;
  290. /* Count the digits in the requested base */
  291. while (current_value) {
  292. (void)acpi_ut_short_divide(current_value, base, &current_value,
  293. NULL);
  294. num_digits++;
  295. }
  296. return_UINT32(num_digits);
  297. }
  298. /*******************************************************************************
  299. *
  300. * FUNCTION: acpi_ex_eisa_id_to_string
  301. *
  302. * PARAMETERS: compressed_id - EISAID to be converted
  303. * out_string - Where to put the converted string (8 bytes)
  304. *
  305. * RETURN: None
  306. *
  307. * DESCRIPTION: Convert a numeric EISAID to string representation. Return
  308. * buffer must be large enough to hold the string. The string
  309. * returned is always exactly of length ACPI_EISAID_STRING_SIZE
  310. * (includes null terminator). The EISAID is always 32 bits.
  311. *
  312. ******************************************************************************/
  313. void acpi_ex_eisa_id_to_string(char *out_string, u64 compressed_id)
  314. {
  315. u32 swapped_id;
  316. ACPI_FUNCTION_ENTRY();
  317. /* The EISAID should be a 32-bit integer */
  318. if (compressed_id > ACPI_UINT32_MAX) {
  319. ACPI_WARNING((AE_INFO,
  320. "Expected EISAID is larger than 32 bits: 0x%8.8X%8.8X, truncating",
  321. ACPI_FORMAT_UINT64(compressed_id)));
  322. }
  323. /* Swap ID to big-endian to get contiguous bits */
  324. swapped_id = acpi_ut_dword_byte_swap((u32)compressed_id);
  325. /* First 3 bytes are uppercase letters. Next 4 bytes are hexadecimal */
  326. out_string[0] =
  327. (char)(0x40 + (((unsigned long)swapped_id >> 26) & 0x1F));
  328. out_string[1] = (char)(0x40 + ((swapped_id >> 21) & 0x1F));
  329. out_string[2] = (char)(0x40 + ((swapped_id >> 16) & 0x1F));
  330. out_string[3] = acpi_ut_hex_to_ascii_char((u64) swapped_id, 12);
  331. out_string[4] = acpi_ut_hex_to_ascii_char((u64) swapped_id, 8);
  332. out_string[5] = acpi_ut_hex_to_ascii_char((u64) swapped_id, 4);
  333. out_string[6] = acpi_ut_hex_to_ascii_char((u64) swapped_id, 0);
  334. out_string[7] = 0;
  335. }
  336. /*******************************************************************************
  337. *
  338. * FUNCTION: acpi_ex_integer_to_string
  339. *
  340. * PARAMETERS: out_string - Where to put the converted string. At least
  341. * 21 bytes are needed to hold the largest
  342. * possible 64-bit integer.
  343. * Value - Value to be converted
  344. *
  345. * RETURN: None, string
  346. *
  347. * DESCRIPTION: Convert a 64-bit integer to decimal string representation.
  348. * Assumes string buffer is large enough to hold the string. The
  349. * largest string is (ACPI_MAX64_DECIMAL_DIGITS + 1).
  350. *
  351. ******************************************************************************/
  352. void acpi_ex_integer_to_string(char *out_string, u64 value)
  353. {
  354. u32 count;
  355. u32 digits_needed;
  356. u32 remainder;
  357. ACPI_FUNCTION_ENTRY();
  358. digits_needed = acpi_ex_digits_needed(value, 10);
  359. out_string[digits_needed] = 0;
  360. for (count = digits_needed; count > 0; count--) {
  361. (void)acpi_ut_short_divide(value, 10, &value, &remainder);
  362. out_string[count - 1] = (char)('0' + remainder);
  363. }
  364. }
  365. /*******************************************************************************
  366. *
  367. * FUNCTION: acpi_is_valid_space_id
  368. *
  369. * PARAMETERS: space_id - ID to be validated
  370. *
  371. * RETURN: TRUE if valid/supported ID.
  372. *
  373. * DESCRIPTION: Validate an operation region space_iD.
  374. *
  375. ******************************************************************************/
  376. u8 acpi_is_valid_space_id(u8 space_id)
  377. {
  378. if ((space_id >= ACPI_NUM_PREDEFINED_REGIONS) &&
  379. (space_id < ACPI_USER_REGION_BEGIN) &&
  380. (space_id != ACPI_ADR_SPACE_DATA_TABLE) &&
  381. (space_id != ACPI_ADR_SPACE_FIXED_HARDWARE)) {
  382. return (FALSE);
  383. }
  384. return (TRUE);
  385. }
  386. #endif