Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /****************************************************************************** |
| 2 | * |
| 3 | * Module Name: exoparg2 - AML execution - opcodes with 2 arguments |
| 4 | * |
| 5 | *****************************************************************************/ |
| 6 | |
| 7 | /* |
Bob Moore | 25f044e | 2013-01-25 05:38:56 +0000 | [diff] [blame] | 8 | * Copyright (C) 2000 - 2013, Intel Corp. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | * All rights reserved. |
| 10 | * |
| 11 | * Redistribution and use in source and binary forms, with or without |
| 12 | * modification, are permitted provided that the following conditions |
| 13 | * are met: |
| 14 | * 1. Redistributions of source code must retain the above copyright |
| 15 | * notice, this list of conditions, and the following disclaimer, |
| 16 | * without modification. |
| 17 | * 2. Redistributions in binary form must reproduce at minimum a disclaimer |
| 18 | * substantially similar to the "NO WARRANTY" disclaimer below |
| 19 | * ("Disclaimer") and any redistribution must be conditioned upon |
| 20 | * including a substantially similar Disclaimer requirement for further |
| 21 | * binary redistribution. |
| 22 | * 3. Neither the names of the above-listed copyright holders nor the names |
| 23 | * of any contributors may be used to endorse or promote products derived |
| 24 | * from this software without specific prior written permission. |
| 25 | * |
| 26 | * Alternatively, this software may be distributed under the terms of the |
| 27 | * GNU General Public License ("GPL") version 2 as published by the Free |
| 28 | * Software Foundation. |
| 29 | * |
| 30 | * NO WARRANTY |
| 31 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 32 | * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 33 | * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR |
| 34 | * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 35 | * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 36 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 37 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 38 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, |
| 39 | * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING |
| 40 | * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 41 | * POSSIBILITY OF SUCH DAMAGES. |
| 42 | */ |
| 43 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | #include <acpi/acpi.h> |
Len Brown | e2f7a77 | 2009-01-09 00:30:03 -0500 | [diff] [blame] | 45 | #include "accommon.h" |
| 46 | #include "acparser.h" |
| 47 | #include "acinterp.h" |
| 48 | #include "acevents.h" |
| 49 | #include "amlcode.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | #define _COMPONENT ACPI_EXECUTER |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 52 | ACPI_MODULE_NAME("exoparg2") |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | |
| 54 | /*! |
| 55 | * Naming convention for AML interpreter execution routines. |
| 56 | * |
| 57 | * The routines that begin execution of AML opcodes are named with a common |
| 58 | * convention based upon the number of arguments, the number of target operands, |
| 59 | * and whether or not a value is returned: |
| 60 | * |
| 61 | * AcpiExOpcode_xA_yT_zR |
| 62 | * |
| 63 | * Where: |
| 64 | * |
| 65 | * xA - ARGUMENTS: The number of arguments (input operands) that are |
| 66 | * required for this opcode type (1 through 6 args). |
| 67 | * yT - TARGETS: The number of targets (output operands) that are required |
| 68 | * for this opcode type (0, 1, or 2 targets). |
| 69 | * zR - RETURN VALUE: Indicates whether this opcode type returns a value |
| 70 | * as the function return (0 or 1). |
| 71 | * |
| 72 | * The AcpiExOpcode* functions are called via the Dispatcher component with |
| 73 | * fully resolved operands. |
| 74 | !*/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | /******************************************************************************* |
| 76 | * |
| 77 | * FUNCTION: acpi_ex_opcode_2A_0T_0R |
| 78 | * |
| 79 | * PARAMETERS: walk_state - Current walk state |
| 80 | * |
| 81 | * RETURN: Status |
| 82 | * |
| 83 | * DESCRIPTION: Execute opcode with two arguments, no target, and no return |
| 84 | * value. |
| 85 | * |
| 86 | * ALLOCATION: Deletes both operands |
| 87 | * |
| 88 | ******************************************************************************/ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 89 | acpi_status acpi_ex_opcode_2A_0T_0R(struct acpi_walk_state *walk_state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 91 | union acpi_operand_object **operand = &walk_state->operands[0]; |
| 92 | struct acpi_namespace_node *node; |
| 93 | u32 value; |
| 94 | acpi_status status = AE_OK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 96 | ACPI_FUNCTION_TRACE_STR(ex_opcode_2A_0T_0R, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 97 | acpi_ps_get_opcode_name(walk_state->opcode)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | |
| 99 | /* Examine the opcode */ |
| 100 | |
| 101 | switch (walk_state->opcode) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 102 | case AML_NOTIFY_OP: /* Notify (notify_object, notify_value) */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | |
| 104 | /* The first operand is a namespace node */ |
| 105 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 106 | node = (struct acpi_namespace_node *)operand[0]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | |
| 108 | /* Second value is the notify value */ |
| 109 | |
| 110 | value = (u32) operand[1]->integer.value; |
| 111 | |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 112 | /* Are notifies allowed on this object? */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 114 | if (!acpi_ev_is_notify_object(node)) { |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 115 | ACPI_ERROR((AE_INFO, |
| 116 | "Unexpected notify object type [%s]", |
| 117 | acpi_ut_get_type_name(node->type))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | |
| 119 | status = AE_AML_OPERAND_TYPE; |
| 120 | break; |
| 121 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | |
| 123 | /* |
| 124 | * Dispatch the notify to the appropriate handler |
| 125 | * NOTE: the request is queued for execution after this method |
Bob Moore | 73a3090 | 2012-10-31 02:26:55 +0000 | [diff] [blame] | 126 | * completes. The notify handlers are NOT invoked synchronously |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | * from this thread -- because handlers may in turn run other |
| 128 | * control methods. |
| 129 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 130 | status = acpi_ev_queue_notify_request(node, value); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | break; |
| 132 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | default: |
| 134 | |
Bob Moore | f6a22b0 | 2010-03-05 17:56:40 +0800 | [diff] [blame] | 135 | ACPI_ERROR((AE_INFO, "Unknown AML opcode 0x%X", |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 136 | walk_state->opcode)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | status = AE_AML_BAD_OPCODE; |
| 138 | } |
| 139 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 140 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | } |
| 142 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | /******************************************************************************* |
| 144 | * |
| 145 | * FUNCTION: acpi_ex_opcode_2A_2T_1R |
| 146 | * |
| 147 | * PARAMETERS: walk_state - Current walk state |
| 148 | * |
| 149 | * RETURN: Status |
| 150 | * |
| 151 | * DESCRIPTION: Execute a dyadic operator (2 operands) with 2 output targets |
| 152 | * and one implicit return value. |
| 153 | * |
| 154 | ******************************************************************************/ |
| 155 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 156 | acpi_status acpi_ex_opcode_2A_2T_1R(struct acpi_walk_state *walk_state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 158 | union acpi_operand_object **operand = &walk_state->operands[0]; |
| 159 | union acpi_operand_object *return_desc1 = NULL; |
| 160 | union acpi_operand_object *return_desc2 = NULL; |
| 161 | acpi_status status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 163 | ACPI_FUNCTION_TRACE_STR(ex_opcode_2A_2T_1R, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 164 | acpi_ps_get_opcode_name(walk_state->opcode)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 166 | /* Execute the opcode */ |
| 167 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | switch (walk_state->opcode) { |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 169 | case AML_DIVIDE_OP: |
| 170 | |
| 171 | /* Divide (Dividend, Divisor, remainder_result quotient_result) */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 173 | return_desc1 = |
| 174 | acpi_ut_create_internal_object(ACPI_TYPE_INTEGER); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | if (!return_desc1) { |
| 176 | status = AE_NO_MEMORY; |
| 177 | goto cleanup; |
| 178 | } |
| 179 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 180 | return_desc2 = |
| 181 | acpi_ut_create_internal_object(ACPI_TYPE_INTEGER); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | if (!return_desc2) { |
| 183 | status = AE_NO_MEMORY; |
| 184 | goto cleanup; |
| 185 | } |
| 186 | |
| 187 | /* Quotient to return_desc1, remainder to return_desc2 */ |
| 188 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 189 | status = acpi_ut_divide(operand[0]->integer.value, |
| 190 | operand[1]->integer.value, |
| 191 | &return_desc1->integer.value, |
| 192 | &return_desc2->integer.value); |
| 193 | if (ACPI_FAILURE(status)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | goto cleanup; |
| 195 | } |
| 196 | break; |
| 197 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | default: |
| 199 | |
Bob Moore | f6a22b0 | 2010-03-05 17:56:40 +0800 | [diff] [blame] | 200 | ACPI_ERROR((AE_INFO, "Unknown AML opcode 0x%X", |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 201 | walk_state->opcode)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | status = AE_AML_BAD_OPCODE; |
| 203 | goto cleanup; |
| 204 | } |
| 205 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | /* Store the results to the target reference operands */ |
| 207 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 208 | status = acpi_ex_store(return_desc2, operand[2], walk_state); |
| 209 | if (ACPI_FAILURE(status)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | goto cleanup; |
| 211 | } |
| 212 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 213 | status = acpi_ex_store(return_desc1, operand[3], walk_state); |
| 214 | if (ACPI_FAILURE(status)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | goto cleanup; |
| 216 | } |
| 217 | |
Lv Zheng | 10622bf | 2013-10-29 09:30:02 +0800 | [diff] [blame] | 218 | cleanup: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | /* |
| 220 | * Since the remainder is not returned indirectly, remove a reference to |
| 221 | * it. Only the quotient is returned indirectly. |
| 222 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 223 | acpi_ut_remove_reference(return_desc2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 225 | if (ACPI_FAILURE(status)) { |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 226 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 227 | /* Delete the return object */ |
| 228 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 229 | acpi_ut_remove_reference(return_desc1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | } |
| 231 | |
Bob Moore | 4b6e16c | 2008-04-10 19:06:37 +0400 | [diff] [blame] | 232 | /* Save return object (the remainder) on success */ |
| 233 | |
| 234 | else { |
| 235 | walk_state->result_obj = return_desc1; |
| 236 | } |
| 237 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 238 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | } |
| 240 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | /******************************************************************************* |
| 242 | * |
| 243 | * FUNCTION: acpi_ex_opcode_2A_1T_1R |
| 244 | * |
| 245 | * PARAMETERS: walk_state - Current walk state |
| 246 | * |
| 247 | * RETURN: Status |
| 248 | * |
| 249 | * DESCRIPTION: Execute opcode with two arguments, one target, and a return |
| 250 | * value. |
| 251 | * |
| 252 | ******************************************************************************/ |
| 253 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 254 | acpi_status acpi_ex_opcode_2A_1T_1R(struct acpi_walk_state *walk_state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 255 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 256 | union acpi_operand_object **operand = &walk_state->operands[0]; |
| 257 | union acpi_operand_object *return_desc = NULL; |
Bob Moore | 5df7e6c | 2010-01-21 10:06:32 +0800 | [diff] [blame] | 258 | u64 index; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 259 | acpi_status status = AE_OK; |
Bob Moore | 663b95f | 2013-04-12 00:25:24 +0000 | [diff] [blame] | 260 | acpi_size length = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 262 | ACPI_FUNCTION_TRACE_STR(ex_opcode_2A_1T_1R, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 263 | acpi_ps_get_opcode_name(walk_state->opcode)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 265 | /* Execute the opcode */ |
| 266 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | if (walk_state->op_info->flags & AML_MATH) { |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 268 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | /* All simple math opcodes (add, etc.) */ |
| 270 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 271 | return_desc = acpi_ut_create_internal_object(ACPI_TYPE_INTEGER); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | if (!return_desc) { |
| 273 | status = AE_NO_MEMORY; |
| 274 | goto cleanup; |
| 275 | } |
| 276 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 277 | return_desc->integer.value = |
| 278 | acpi_ex_do_math_op(walk_state->opcode, |
| 279 | operand[0]->integer.value, |
| 280 | operand[1]->integer.value); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | goto store_result_to_target; |
| 282 | } |
| 283 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | switch (walk_state->opcode) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 285 | case AML_MOD_OP: /* Mod (Dividend, Divisor, remainder_result (ACPI 2.0) */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 286 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 287 | return_desc = acpi_ut_create_internal_object(ACPI_TYPE_INTEGER); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 288 | if (!return_desc) { |
| 289 | status = AE_NO_MEMORY; |
| 290 | goto cleanup; |
| 291 | } |
| 292 | |
| 293 | /* return_desc will contain the remainder */ |
| 294 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 295 | status = acpi_ut_divide(operand[0]->integer.value, |
| 296 | operand[1]->integer.value, |
| 297 | NULL, &return_desc->integer.value); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | break; |
| 299 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 300 | case AML_CONCAT_OP: /* Concatenate (Data1, Data2, Result) */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 301 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 302 | status = acpi_ex_do_concatenate(operand[0], operand[1], |
| 303 | &return_desc, walk_state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | break; |
| 305 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 306 | case AML_TO_STRING_OP: /* to_string (Buffer, Length, Result) (ACPI 2.0) */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 | /* |
| 308 | * Input object is guaranteed to be a buffer at this point (it may have |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 309 | * been converted.) Copy the raw buffer data to a new object of |
| 310 | * type String. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 311 | */ |
| 312 | |
| 313 | /* |
| 314 | * Get the length of the new string. It is the smallest of: |
| 315 | * 1) Length of the input buffer |
| 316 | * 2) Max length as specified in the to_string operator |
| 317 | * 3) Length of input buffer up to a zero byte (null terminator) |
| 318 | * |
| 319 | * NOTE: A length of zero is ok, and will create a zero-length, null |
| 320 | * terminated string. |
| 321 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | while ((length < operand[0]->buffer.length) && |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 323 | (length < operand[1]->integer.value) && |
| 324 | (operand[0]->buffer.pointer[length])) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 325 | length++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | } |
| 327 | |
| 328 | /* Allocate a new string object */ |
| 329 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 330 | return_desc = acpi_ut_create_string_object(length); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 331 | if (!return_desc) { |
| 332 | status = AE_NO_MEMORY; |
| 333 | goto cleanup; |
| 334 | } |
| 335 | |
Bob Moore | c51a4de | 2005-11-17 13:07:00 -0500 | [diff] [blame] | 336 | /* |
| 337 | * Copy the raw buffer data with no transform. |
| 338 | * (NULL terminated already) |
| 339 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 340 | ACPI_MEMCPY(return_desc->string.pointer, |
| 341 | operand[0]->buffer.pointer, length); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | break; |
| 343 | |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 344 | case AML_CONCAT_RES_OP: |
| 345 | |
| 346 | /* concatenate_res_template (Buffer, Buffer, Result) (ACPI 2.0) */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 348 | status = acpi_ex_concat_template(operand[0], operand[1], |
| 349 | &return_desc, walk_state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 350 | break; |
| 351 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 352 | case AML_INDEX_OP: /* Index (Source Index Result) */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 | |
| 354 | /* Create the internal return object */ |
| 355 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 356 | return_desc = |
| 357 | acpi_ut_create_internal_object(ACPI_TYPE_LOCAL_REFERENCE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | if (!return_desc) { |
| 359 | status = AE_NO_MEMORY; |
| 360 | goto cleanup; |
| 361 | } |
| 362 | |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 363 | /* Initialize the Index reference object */ |
| 364 | |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 365 | index = operand[1]->integer.value; |
Bob Moore | 1044f1f | 2008-09-27 11:08:41 +0800 | [diff] [blame] | 366 | return_desc->reference.value = (u32) index; |
| 367 | return_desc->reference.class = ACPI_REFCLASS_INDEX; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 368 | |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 369 | /* |
| 370 | * At this point, the Source operand is a String, Buffer, or Package. |
| 371 | * Verify that the index is within range. |
| 372 | */ |
Bob Moore | 3371c19 | 2009-02-18 14:44:03 +0800 | [diff] [blame] | 373 | switch ((operand[0])->common.type) { |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 374 | case ACPI_TYPE_STRING: |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 375 | |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 376 | if (index >= operand[0]->string.length) { |
Bob Moore | 663b95f | 2013-04-12 00:25:24 +0000 | [diff] [blame] | 377 | length = operand[0]->string.length; |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 378 | status = AE_AML_STRING_LIMIT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 379 | } |
| 380 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 381 | return_desc->reference.target_type = |
| 382 | ACPI_TYPE_BUFFER_FIELD; |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 383 | break; |
| 384 | |
| 385 | case ACPI_TYPE_BUFFER: |
| 386 | |
| 387 | if (index >= operand[0]->buffer.length) { |
Bob Moore | 663b95f | 2013-04-12 00:25:24 +0000 | [diff] [blame] | 388 | length = operand[0]->buffer.length; |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 389 | status = AE_AML_BUFFER_LIMIT; |
| 390 | } |
| 391 | |
| 392 | return_desc->reference.target_type = |
| 393 | ACPI_TYPE_BUFFER_FIELD; |
| 394 | break; |
| 395 | |
| 396 | case ACPI_TYPE_PACKAGE: |
| 397 | |
| 398 | if (index >= operand[0]->package.count) { |
Bob Moore | 663b95f | 2013-04-12 00:25:24 +0000 | [diff] [blame] | 399 | length = operand[0]->package.count; |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 400 | status = AE_AML_PACKAGE_LIMIT; |
| 401 | } |
| 402 | |
| 403 | return_desc->reference.target_type = ACPI_TYPE_PACKAGE; |
| 404 | return_desc->reference.where = |
| 405 | &operand[0]->package.elements[index]; |
| 406 | break; |
| 407 | |
| 408 | default: |
| 409 | |
| 410 | status = AE_AML_INTERNAL; |
| 411 | goto cleanup; |
| 412 | } |
| 413 | |
| 414 | /* Failure means that the Index was beyond the end of the object */ |
| 415 | |
| 416 | if (ACPI_FAILURE(status)) { |
| 417 | ACPI_EXCEPTION((AE_INFO, status, |
Bob Moore | 663b95f | 2013-04-12 00:25:24 +0000 | [diff] [blame] | 418 | "Index (0x%X%8.8X) is beyond end of object (length 0x%X)", |
Bob Moore | 475df48 | 2013-04-12 00:25:35 +0000 | [diff] [blame] | 419 | ACPI_FORMAT_UINT64(index), |
| 420 | (u32)length)); |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 421 | goto cleanup; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 422 | } |
| 423 | |
| 424 | /* |
Bob Moore | 8313524 | 2006-10-03 00:00:00 -0400 | [diff] [blame] | 425 | * Save the target object and add a reference to it for the life |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 426 | * of the index |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 427 | */ |
Bob Moore | 8313524 | 2006-10-03 00:00:00 -0400 | [diff] [blame] | 428 | return_desc->reference.object = operand[0]; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 429 | acpi_ut_add_reference(operand[0]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 431 | /* Store the reference to the Target */ |
| 432 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 433 | status = acpi_ex_store(return_desc, operand[2], walk_state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 | |
| 435 | /* Return the reference */ |
| 436 | |
| 437 | walk_state->result_obj = return_desc; |
| 438 | goto cleanup; |
| 439 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 440 | default: |
| 441 | |
Bob Moore | f6a22b0 | 2010-03-05 17:56:40 +0800 | [diff] [blame] | 442 | ACPI_ERROR((AE_INFO, "Unknown AML opcode 0x%X", |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 443 | walk_state->opcode)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 444 | status = AE_AML_BAD_OPCODE; |
| 445 | break; |
| 446 | } |
| 447 | |
Lv Zheng | 10622bf | 2013-10-29 09:30:02 +0800 | [diff] [blame] | 448 | store_result_to_target: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 449 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 450 | if (ACPI_SUCCESS(status)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 451 | /* |
| 452 | * Store the result of the operation (which is now in return_desc) into |
| 453 | * the Target descriptor. |
| 454 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 455 | status = acpi_ex_store(return_desc, operand[2], walk_state); |
| 456 | if (ACPI_FAILURE(status)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 457 | goto cleanup; |
| 458 | } |
| 459 | |
| 460 | if (!walk_state->result_obj) { |
| 461 | walk_state->result_obj = return_desc; |
| 462 | } |
| 463 | } |
| 464 | |
Lv Zheng | 10622bf | 2013-10-29 09:30:02 +0800 | [diff] [blame] | 465 | cleanup: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 466 | |
| 467 | /* Delete return object on error */ |
| 468 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 469 | if (ACPI_FAILURE(status)) { |
| 470 | acpi_ut_remove_reference(return_desc); |
Bob Moore | 4b6e16c | 2008-04-10 19:06:37 +0400 | [diff] [blame] | 471 | walk_state->result_obj = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 472 | } |
| 473 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 474 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 475 | } |
| 476 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 477 | /******************************************************************************* |
| 478 | * |
| 479 | * FUNCTION: acpi_ex_opcode_2A_0T_1R |
| 480 | * |
| 481 | * PARAMETERS: walk_state - Current walk state |
| 482 | * |
| 483 | * RETURN: Status |
| 484 | * |
| 485 | * DESCRIPTION: Execute opcode with 2 arguments, no target, and a return value |
| 486 | * |
| 487 | ******************************************************************************/ |
| 488 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 489 | acpi_status acpi_ex_opcode_2A_0T_1R(struct acpi_walk_state *walk_state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 490 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 491 | union acpi_operand_object **operand = &walk_state->operands[0]; |
| 492 | union acpi_operand_object *return_desc = NULL; |
| 493 | acpi_status status = AE_OK; |
| 494 | u8 logical_result = FALSE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 496 | ACPI_FUNCTION_TRACE_STR(ex_opcode_2A_0T_1R, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 497 | acpi_ps_get_opcode_name(walk_state->opcode)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 498 | |
| 499 | /* Create the internal return object */ |
| 500 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 501 | return_desc = acpi_ut_create_internal_object(ACPI_TYPE_INTEGER); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 502 | if (!return_desc) { |
| 503 | status = AE_NO_MEMORY; |
| 504 | goto cleanup; |
| 505 | } |
| 506 | |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 507 | /* Execute the Opcode */ |
| 508 | |
| 509 | if (walk_state->op_info->flags & AML_LOGICAL_NUMERIC) { |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 510 | |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 511 | /* logical_op (Operand0, Operand1) */ |
| 512 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 513 | status = acpi_ex_do_logical_numeric_op(walk_state->opcode, |
| 514 | operand[0]->integer. |
| 515 | value, |
| 516 | operand[1]->integer. |
| 517 | value, &logical_result); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 518 | goto store_logical_result; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 519 | } else if (walk_state->op_info->flags & AML_LOGICAL) { |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 520 | |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 521 | /* logical_op (Operand0, Operand1) */ |
| 522 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 523 | status = acpi_ex_do_logical_op(walk_state->opcode, operand[0], |
| 524 | operand[1], &logical_result); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 525 | goto store_logical_result; |
| 526 | } |
| 527 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 528 | switch (walk_state->opcode) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 529 | case AML_ACQUIRE_OP: /* Acquire (mutex_object, Timeout) */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 530 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 531 | status = |
| 532 | acpi_ex_acquire_mutex(operand[1], operand[0], walk_state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 533 | if (status == AE_TIME) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 534 | logical_result = TRUE; /* TRUE = Acquire timed out */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 535 | status = AE_OK; |
| 536 | } |
| 537 | break; |
| 538 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 539 | case AML_WAIT_OP: /* Wait (event_object, Timeout) */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 540 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 541 | status = acpi_ex_system_wait_event(operand[1], operand[0]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 542 | if (status == AE_TIME) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 543 | logical_result = TRUE; /* TRUE, Wait timed out */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 544 | status = AE_OK; |
| 545 | } |
| 546 | break; |
| 547 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 548 | default: |
| 549 | |
Bob Moore | f6a22b0 | 2010-03-05 17:56:40 +0800 | [diff] [blame] | 550 | ACPI_ERROR((AE_INFO, "Unknown AML opcode 0x%X", |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 551 | walk_state->opcode)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 552 | status = AE_AML_BAD_OPCODE; |
| 553 | goto cleanup; |
| 554 | } |
| 555 | |
Lv Zheng | 10622bf | 2013-10-29 09:30:02 +0800 | [diff] [blame] | 556 | store_logical_result: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 557 | /* |
| 558 | * Set return value to according to logical_result. logical TRUE (all ones) |
| 559 | * Default is FALSE (zero) |
| 560 | */ |
| 561 | if (logical_result) { |
Bob Moore | 5df7e6c | 2010-01-21 10:06:32 +0800 | [diff] [blame] | 562 | return_desc->integer.value = ACPI_UINT64_MAX; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 563 | } |
| 564 | |
Lv Zheng | 10622bf | 2013-10-29 09:30:02 +0800 | [diff] [blame] | 565 | cleanup: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 566 | |
| 567 | /* Delete return object on error */ |
| 568 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 569 | if (ACPI_FAILURE(status)) { |
| 570 | acpi_ut_remove_reference(return_desc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 571 | } |
| 572 | |
Bob Moore | 4b6e16c | 2008-04-10 19:06:37 +0400 | [diff] [blame] | 573 | /* Save return object on success */ |
| 574 | |
| 575 | else { |
| 576 | walk_state->result_obj = return_desc; |
| 577 | } |
| 578 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 579 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 580 | } |