exutils.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:10k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /******************************************************************************
  2.  *
  3.  * Module Name: exutils - interpreter/scanner utilities
  4.  *              $Revision: 85 $
  5.  *
  6.  *****************************************************************************/
  7. /*
  8.  *  Copyright (C) 2000, 2001 R. Byron Moore
  9.  *
  10.  *  This program is free software; you can redistribute it and/or modify
  11.  *  it under the terms of the GNU General Public License as published by
  12.  *  the Free Software Foundation; either version 2 of the License, or
  13.  *  (at your option) any later version.
  14.  *
  15.  *  This program is distributed in the hope that it will be useful,
  16.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  *  GNU General Public License for more details.
  19.  *
  20.  *  You should have received a copy of the GNU General Public License
  21.  *  along with this program; if not, write to the Free Software
  22.  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  23.  */
  24. /*
  25.  * DEFINE_AML_GLOBALS is tested in amlcode.h
  26.  * to determine whether certain global names should be "defined" or only
  27.  * "declared" in the current compilation.  This enhances maintainability
  28.  * by enabling a single header file to embody all knowledge of the names
  29.  * in question.
  30.  *
  31.  * Exactly one module of any executable should #define DEFINE_GLOBALS
  32.  * before #including the header files which use this convention.  The
  33.  * names in question will be defined and initialized in that module,
  34.  * and declared as extern in all other modules which #include those
  35.  * header files.
  36.  */
  37. #define DEFINE_AML_GLOBALS
  38. #include "acpi.h"
  39. #include "acparser.h"
  40. #include "acinterp.h"
  41. #include "amlcode.h"
  42. #include "acnamesp.h"
  43. #include "acevents.h"
  44. #include "acparser.h"
  45. #define _COMPONENT          ACPI_EXECUTER
  46.  MODULE_NAME         ("exutils")
  47. /*******************************************************************************
  48.  *
  49.  * FUNCTION:    Acpi_ex_enter_interpreter
  50.  *
  51.  * PARAMETERS:  None
  52.  *
  53.  * DESCRIPTION: Enter the interpreter execution region
  54.  *              TBD: should be a macro
  55.  *
  56.  ******************************************************************************/
  57. acpi_status
  58. acpi_ex_enter_interpreter (void)
  59. {
  60. acpi_status             status;
  61. FUNCTION_TRACE ("Ex_enter_interpreter");
  62. status = acpi_ut_acquire_mutex (ACPI_MTX_EXECUTE);
  63. return_ACPI_STATUS (status);
  64. }
  65. /*******************************************************************************
  66.  *
  67.  * FUNCTION:    Acpi_ex_exit_interpreter
  68.  *
  69.  * PARAMETERS:  None
  70.  *
  71.  * DESCRIPTION: Exit the interpreter execution region
  72.  *
  73.  * Cases where the interpreter is unlocked:
  74.  *      1) Completion of the execution of a control method
  75.  *      2) Method blocked on a Sleep() AML opcode
  76.  *      3) Method blocked on an Acquire() AML opcode
  77.  *      4) Method blocked on a Wait() AML opcode
  78.  *      5) Method blocked to acquire the global lock
  79.  *      6) Method blocked to execute a serialized control method that is
  80.  *          already executing
  81.  *      7) About to invoke a user-installed opregion handler
  82.  *
  83.  *              TBD: should be a macro
  84.  *
  85.  ******************************************************************************/
  86. void
  87. acpi_ex_exit_interpreter (void)
  88. {
  89. FUNCTION_TRACE ("Ex_exit_interpreter");
  90. acpi_ut_release_mutex (ACPI_MTX_EXECUTE);
  91. return_VOID;
  92. }
  93. /*******************************************************************************
  94.  *
  95.  * FUNCTION:    Acpi_ex_validate_object_type
  96.  *
  97.  * PARAMETERS:  Type            Object type to validate
  98.  *
  99.  * DESCRIPTION: Determine if a type is a valid ACPI object type
  100.  *
  101.  ******************************************************************************/
  102. u8
  103. acpi_ex_validate_object_type (
  104. acpi_object_type        type)
  105. {
  106. FUNCTION_ENTRY ();
  107. if ((type > ACPI_TYPE_MAX && type < INTERNAL_TYPE_BEGIN) ||
  108. (type > INTERNAL_TYPE_MAX)) {
  109. return (FALSE);
  110. }
  111. return (TRUE);
  112. }
  113. /*******************************************************************************
  114.  *
  115.  * FUNCTION:    Acpi_ex_truncate_for32bit_table
  116.  *
  117.  * PARAMETERS:  Obj_desc        - Object to be truncated
  118.  *              Walk_state      - Current walk state
  119.  *                                (A method must be executing)
  120.  *
  121.  * RETURN:      none
  122.  *
  123.  * DESCRIPTION: Truncate a number to 32-bits if the currently executing method
  124.  *              belongs to a 32-bit ACPI table.
  125.  *
  126.  ******************************************************************************/
  127. void
  128. acpi_ex_truncate_for32bit_table (
  129. acpi_operand_object     *obj_desc,
  130. acpi_walk_state         *walk_state)
  131. {
  132. FUNCTION_ENTRY ();
  133. /*
  134.  * Object must be a valid number and we must be executing
  135.  * a control method
  136.  */
  137. if ((!obj_desc) ||
  138. (obj_desc->common.type != ACPI_TYPE_INTEGER) ||
  139. (!walk_state->method_node)) {
  140. return;
  141. }
  142. if (walk_state->method_node->flags & ANOBJ_DATA_WIDTH_32) {
  143. /*
  144.  * We are running a method that exists in a 32-bit ACPI table.
  145.  * Truncate the value to 32 bits by zeroing out the upper 32-bit field
  146.  */
  147. obj_desc->integer.value &= (acpi_integer) ACPI_UINT32_MAX;
  148. }
  149. }
  150. /*******************************************************************************
  151.  *
  152.  * FUNCTION:    Acpi_ex_acquire_global_lock
  153.  *
  154.  * PARAMETERS:  Rule            - Lock rule: Always_lock, Never_lock
  155.  *
  156.  * RETURN:      TRUE/FALSE indicating whether the lock was actually acquired
  157.  *
  158.  * DESCRIPTION: Obtain the global lock and keep track of this fact via two
  159.  *              methods.  A global variable keeps the state of the lock, and
  160.  *              the state is returned to the caller.
  161.  *
  162.  ******************************************************************************/
  163. u8
  164. acpi_ex_acquire_global_lock (
  165. u32                     rule)
  166. {
  167. u8                      locked = FALSE;
  168. acpi_status             status;
  169. FUNCTION_TRACE ("Ex_acquire_global_lock");
  170. /* Only attempt lock if the Rule says so */
  171. if (rule == (u32) GLOCK_ALWAYS_LOCK) {
  172. /* We should attempt to get the lock */
  173. status = acpi_ev_acquire_global_lock ();
  174. if (ACPI_SUCCESS (status)) {
  175. locked = TRUE;
  176. }
  177. else {
  178. ACPI_DEBUG_PRINT ((ACPI_DB_ERROR, "Could not acquire Global Lock, %sn",
  179. acpi_format_exception (status)));
  180. }
  181. }
  182. return_VALUE (locked);
  183. }
  184. /*******************************************************************************
  185.  *
  186.  * FUNCTION:    Acpi_ex_release_global_lock
  187.  *
  188.  * PARAMETERS:  Locked_by_me    - Return value from corresponding call to
  189.  *                                Acquire_global_lock.
  190.  *
  191.  * RETURN:      Status
  192.  *
  193.  * DESCRIPTION: Release the global lock if it is locked.
  194.  *
  195.  ******************************************************************************/
  196. acpi_status
  197. acpi_ex_release_global_lock (
  198. u8                      locked_by_me)
  199. {
  200. FUNCTION_TRACE ("Ex_release_global_lock");
  201. /* Only attempt unlock if the caller locked it */
  202. if (locked_by_me) {
  203. /* OK, now release the lock */
  204. acpi_ev_release_global_lock ();
  205. }
  206. return_ACPI_STATUS (AE_OK);
  207. }
  208. /*******************************************************************************
  209.  *
  210.  * FUNCTION:    Acpi_ex_digits_needed
  211.  *
  212.  * PARAMETERS:  Value           - Value to be represented
  213.  *              Base            - Base of representation
  214.  *
  215.  * RETURN:      the number of digits needed to represent Value in Base
  216.  *
  217.  ******************************************************************************/
  218. u32
  219. acpi_ex_digits_needed (
  220. acpi_integer            value,
  221. u32                     base)
  222. {
  223. u32                     num_digits = 0;
  224. FUNCTION_TRACE ("Ex_digits_needed");
  225. if (base < 1) {
  226. REPORT_ERROR (("Ex_digits_needed: Internal error - Invalid basen"));
  227. }
  228. else {
  229. /*
  230.  * acpi_integer is unsigned, which is why we don't worry about a '-'
  231.  */
  232. for (num_digits = 1;
  233. (acpi_ut_short_divide (&value, base, &value, NULL));
  234. ++num_digits) { ; }
  235. }
  236. return_VALUE (num_digits);
  237. }
  238. /*******************************************************************************
  239.  *
  240.  * FUNCTION:    ntohl
  241.  *
  242.  * PARAMETERS:  Value           - Value to be converted
  243.  *
  244.  * DESCRIPTION: Convert a 32-bit value to big-endian (swap the bytes)
  245.  *
  246.  ******************************************************************************/
  247. static u32
  248. _ntohl (
  249. u32                     value)
  250. {
  251. union {
  252. u32                 value;
  253. u8                  bytes[4];
  254. } out;
  255. union {
  256. u32                 value;
  257. u8                  bytes[4];
  258. } in;
  259. FUNCTION_ENTRY ();
  260. in.value = value;
  261. out.bytes[0] = in.bytes[3];
  262. out.bytes[1] = in.bytes[2];
  263. out.bytes[2] = in.bytes[1];
  264. out.bytes[3] = in.bytes[0];
  265. return (out.value);
  266. }
  267. /*******************************************************************************
  268.  *
  269.  * FUNCTION:    Acpi_ex_eisa_id_to_string
  270.  *
  271.  * PARAMETERS:  Numeric_id      - EISA ID to be converted
  272.  *              Out_string      - Where to put the converted string (8 bytes)
  273.  *
  274.  * DESCRIPTION: Convert a numeric EISA ID to string representation
  275.  *
  276.  ******************************************************************************/
  277. acpi_status
  278. acpi_ex_eisa_id_to_string (
  279. u32                     numeric_id,
  280. NATIVE_CHAR             *out_string)
  281. {
  282. u32                     id;
  283. FUNCTION_ENTRY ();
  284. /* swap to big-endian to get contiguous bits */
  285. id = _ntohl (numeric_id);
  286. out_string[0] = (char) ('@' + ((id >> 26) & 0x1f));
  287. out_string[1] = (char) ('@' + ((id >> 21) & 0x1f));
  288. out_string[2] = (char) ('@' + ((id >> 16) & 0x1f));
  289. out_string[3] = acpi_ut_hex_to_ascii_char (id, 12);
  290. out_string[4] = acpi_ut_hex_to_ascii_char (id, 8);
  291. out_string[5] = acpi_ut_hex_to_ascii_char (id, 4);
  292. out_string[6] = acpi_ut_hex_to_ascii_char (id, 0);
  293. out_string[7] = 0;
  294. return (AE_OK);
  295. }
  296. /*******************************************************************************
  297.  *
  298.  * FUNCTION:    Acpi_ex_unsigned_integer_to_string
  299.  *
  300.  * PARAMETERS:  Value           - Value to be converted
  301.  *              Out_string      - Where to put the converted string (8 bytes)
  302.  *
  303.  * RETURN:      Convert a number to string representation
  304.  *
  305.  ******************************************************************************/
  306. acpi_status
  307. acpi_ex_unsigned_integer_to_string (
  308. acpi_integer            value,
  309. NATIVE_CHAR             *out_string)
  310. {
  311. u32                     count;
  312. u32                     digits_needed;
  313. u32                     remainder;
  314. FUNCTION_ENTRY ();
  315. digits_needed = acpi_ex_digits_needed (value, 10);
  316. out_string[digits_needed] = 0;
  317. for (count = digits_needed; count > 0; count--) {
  318. acpi_ut_short_divide (&value, 10, &value, &remainder);
  319. out_string[count-1] = (NATIVE_CHAR) ('0' + remainder);
  320. }
  321. return (AE_OK);
  322. }