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

嵌入式Linux

开发平台:

Unix_Linux

  1. /******************************************************************************
  2.  *
  3.  * Module Name: exoparg6 - AML execution - opcodes with 6 arguments
  4.  *              $Revision: 4 $
  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. #include "acpi.h"
  25. #include "acinterp.h"
  26. #include "acparser.h"
  27. #include "amlcode.h"
  28. #define _COMPONENT          ACPI_EXECUTER
  29.  MODULE_NAME         ("exoparg6")
  30. /*!
  31.  * Naming convention for AML interpreter execution routines.
  32.  *
  33.  * The routines that begin execution of AML opcodes are named with a common
  34.  * convention based upon the number of arguments, the number of target operands,
  35.  * and whether or not a value is returned:
  36.  *
  37.  *      AcpiExOpcode_xA_yT_zR
  38.  *
  39.  * Where:
  40.  *
  41.  * xA - ARGUMENTS:    The number of arguments (input operands) that are
  42.  *                    required for this opcode type (1 through 6 args).
  43.  * yT - TARGETS:      The number of targets (output operands) that are required
  44.  *                    for this opcode type (0, 1, or 2 targets).
  45.  * zR - RETURN VALUE: Indicates whether this opcode type returns a value
  46.  *                    as the function return (0 or 1).
  47.  *
  48.  * The AcpiExOpcode* functions are called via the Dispatcher component with
  49.  * fully resolved operands.
  50. !*/
  51. /*******************************************************************************
  52.  *
  53.  * FUNCTION:    Acpi_ex_do_match
  54.  *
  55.  * PARAMETERS:  Match_op        - The AML match operand
  56.  *              Package_value   - Value from the target package
  57.  *              Match_value     - Value to be matched
  58.  *
  59.  * RETURN:      TRUE if the match is successful, FALSE otherwise
  60.  *
  61.  * DESCRIPTION: Implements the low-level match for the ASL Match operator
  62.  *
  63.  ******************************************************************************/
  64. u8
  65. acpi_ex_do_match (
  66. u32                     match_op,
  67. acpi_integer            package_value,
  68. acpi_integer            match_value)
  69. {
  70. switch (match_op) {
  71. case MATCH_MTR:   /* always true */
  72. break;
  73. case MATCH_MEQ:   /* true if equal   */
  74. if (package_value != match_value) {
  75. return (FALSE);
  76. }
  77. break;
  78. case MATCH_MLE:   /* true if less than or equal  */
  79. if (package_value > match_value) {
  80. return (FALSE);
  81. }
  82. break;
  83. case MATCH_MLT:   /* true if less than   */
  84. if (package_value >= match_value) {
  85. return (FALSE);
  86. }
  87. break;
  88. case MATCH_MGE:   /* true if greater than or equal   */
  89. if (package_value < match_value) {
  90. return (FALSE);
  91. }
  92. break;
  93. case MATCH_MGT:   /* true if greater than    */
  94. if (package_value <= match_value) {
  95. return (FALSE);
  96. }
  97. break;
  98. default:    /* undefined   */
  99. return (FALSE);
  100. }
  101. return TRUE;
  102. }
  103. /*******************************************************************************
  104.  *
  105.  * FUNCTION:    Acpi_ex_opcode_6A_0T_1R
  106.  *
  107.  * PARAMETERS:  Walk_state          - Current walk state
  108.  *
  109.  * RETURN:      Status
  110.  *
  111.  * DESCRIPTION: Execute opcode with 6 arguments, no target, and a return value
  112.  *
  113.  ******************************************************************************/
  114. acpi_status
  115. acpi_ex_opcode_6A_0T_1R (
  116. acpi_walk_state         *walk_state)
  117. {
  118. acpi_operand_object     **operand = &walk_state->operands[0];
  119. acpi_operand_object     *return_desc = NULL;
  120. acpi_status             status = AE_OK;
  121. u32                     index;
  122. acpi_operand_object     *this_element;
  123. FUNCTION_TRACE_STR ("Ex_opcode_6A_0T_1R", acpi_ps_get_opcode_name (walk_state->opcode));
  124. switch (walk_state->opcode) {
  125. case AML_MATCH_OP:
  126. /*
  127.  * Match (Search_package[0], Match_op1[1], Match_object1[2],
  128.  *                          Match_op2[3], Match_object2[4], Start_index[5])
  129.  */
  130. /* Validate match comparison sub-opcodes */
  131. if ((operand[1]->integer.value > MAX_MATCH_OPERATOR) ||
  132. (operand[3]->integer.value > MAX_MATCH_OPERATOR)) {
  133. ACPI_DEBUG_PRINT ((ACPI_DB_ERROR, "operation encoding out of rangen"));
  134. status = AE_AML_OPERAND_VALUE;
  135. goto cleanup;
  136. }
  137. index = (u32) operand[5]->integer.value;
  138. if (index >= (u32) operand[0]->package.count) {
  139. ACPI_DEBUG_PRINT ((ACPI_DB_ERROR, "Index beyond package endn"));
  140. status = AE_AML_PACKAGE_LIMIT;
  141. goto cleanup;
  142. }
  143. return_desc = acpi_ut_create_internal_object (ACPI_TYPE_INTEGER);
  144. if (!return_desc) {
  145. status = AE_NO_MEMORY;
  146. goto cleanup;
  147. }
  148. /* Default return value if no match found */
  149. return_desc->integer.value = ACPI_INTEGER_MAX;
  150. /*
  151.  * Examine each element until a match is found.  Within the loop,
  152.  * "continue" signifies that the current element does not match
  153.  * and the next should be examined.
  154.  * Upon finding a match, the loop will terminate via "break" at
  155.  * the bottom.  If it terminates "normally", Match_value will be -1
  156.  * (its initial value) indicating that no match was found.  When
  157.  * returned as a Number, this will produce the Ones value as specified.
  158.  */
  159. for ( ; index < operand[0]->package.count; index++) {
  160. this_element = operand[0]->package.elements[index];
  161. /*
  162.  * Treat any NULL or non-numeric elements as non-matching.
  163.  * TBD [Unhandled] - if an element is a Name,
  164.  *      should we examine its value?
  165.  */
  166. if (!this_element ||
  167. this_element->common.type != ACPI_TYPE_INTEGER) {
  168. continue;
  169. }
  170. /*
  171.  * Within these switch statements:
  172.  *      "break" (exit from the switch) signifies a match;
  173.  *      "continue" (proceed to next iteration of enclosing
  174.  *          "for" loop) signifies a non-match.
  175.  */
  176. if (!acpi_ex_do_match ((u32) operand[1]->integer.value,
  177.    this_element->integer.value, operand[2]->integer.value)) {
  178. continue;
  179. }
  180. if (!acpi_ex_do_match ((u32) operand[3]->integer.value,
  181.    this_element->integer.value, operand[4]->integer.value)) {
  182. continue;
  183. }
  184. /* Match found: Index is the return value */
  185. return_desc->integer.value = index;
  186. break;
  187. }
  188. break;
  189. case AML_LOAD_TABLE_OP:
  190. status = AE_NOT_IMPLEMENTED;
  191. goto cleanup;
  192. break;
  193. default:
  194. REPORT_ERROR (("Acpi_ex_opcode_3A_0T_0R: Unknown opcode %Xn",
  195. walk_state->opcode));
  196. status = AE_AML_BAD_OPCODE;
  197. goto cleanup;
  198. break;
  199. }
  200. walk_state->result_obj = return_desc;
  201. cleanup:
  202. /* Delete return object on error */
  203. if (ACPI_FAILURE (status)) {
  204. acpi_ut_remove_reference (return_desc);
  205. }
  206. return_ACPI_STATUS (status);
  207. }