blob: a3f4d72bedc979b45c77e3b86516b08d763bc7e2 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
2/******************************************************************************
3 *
4 * Module Name: exmisc - ACPI AML (p-code) execution - specific opcodes
5 *
6 *****************************************************************************/
7
8/*
9 * Copyright (C) 2000 - 2005, R. Byron Moore
10 * All rights reserved.
11 *
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
14 * are met:
15 * 1. Redistributions of source code must retain the above copyright
16 * notice, this list of conditions, and the following disclaimer,
17 * without modification.
18 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
19 * substantially similar to the "NO WARRANTY" disclaimer below
20 * ("Disclaimer") and any redistribution must be conditioned upon
21 * including a substantially similar Disclaimer requirement for further
22 * binary redistribution.
23 * 3. Neither the names of the above-listed copyright holders nor the names
24 * of any contributors may be used to endorse or promote products derived
25 * from this software without specific prior written permission.
26 *
27 * Alternatively, this software may be distributed under the terms of the
28 * GNU General Public License ("GPL") version 2 as published by the Free
29 * Software Foundation.
30 *
31 * NO WARRANTY
32 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
33 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
34 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
35 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
36 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
37 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
38 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
39 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
40 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
41 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
42 * POSSIBILITY OF SUCH DAMAGES.
43 */
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <acpi/acpi.h>
46#include <acpi/acinterp.h>
47#include <acpi/amlcode.h>
48
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#define _COMPONENT ACPI_EXECUTER
Len Brown4be44fc2005-08-05 00:44:28 -040050ACPI_MODULE_NAME("exmisc")
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52/*******************************************************************************
53 *
54 * FUNCTION: acpi_ex_get_object_reference
55 *
56 * PARAMETERS: obj_desc - Create a reference to this object
57 * return_desc - Where to store the reference
58 * walk_state - Current state
59 *
60 * RETURN: Status
61 *
62 * DESCRIPTION: Obtain and return a "reference" to the target object
63 * Common code for the ref_of_op and the cond_ref_of_op.
64 *
65 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -070066acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -040067acpi_ex_get_object_reference(union acpi_operand_object *obj_desc,
68 union acpi_operand_object **return_desc,
69 struct acpi_walk_state *walk_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -070070{
Len Brown4be44fc2005-08-05 00:44:28 -040071 union acpi_operand_object *reference_obj;
72 union acpi_operand_object *referenced_obj;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
Len Brown4be44fc2005-08-05 00:44:28 -040074 ACPI_FUNCTION_TRACE_PTR("ex_get_object_reference", obj_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
76 *return_desc = NULL;
77
Len Brown4be44fc2005-08-05 00:44:28 -040078 switch (ACPI_GET_DESCRIPTOR_TYPE(obj_desc)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 case ACPI_DESC_TYPE_OPERAND:
80
Len Brown4be44fc2005-08-05 00:44:28 -040081 if (ACPI_GET_OBJECT_TYPE(obj_desc) != ACPI_TYPE_LOCAL_REFERENCE) {
82 return_ACPI_STATUS(AE_AML_OPERAND_TYPE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 }
84
85 /*
86 * Must be a reference to a Local or Arg
87 */
88 switch (obj_desc->reference.opcode) {
89 case AML_LOCAL_OP:
90 case AML_ARG_OP:
91 case AML_DEBUG_OP:
92
93 /* The referenced object is the pseudo-node for the local/arg */
94
95 referenced_obj = obj_desc->reference.object;
96 break;
97
98 default:
99
Len Brown4be44fc2005-08-05 00:44:28 -0400100 ACPI_REPORT_ERROR(("Unknown Reference opcode in get_reference %X\n", obj_desc->reference.opcode));
101 return_ACPI_STATUS(AE_AML_INTERNAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 }
103 break;
104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 case ACPI_DESC_TYPE_NAMED:
106
107 /*
108 * A named reference that has already been resolved to a Node
109 */
110 referenced_obj = obj_desc;
111 break;
112
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 default:
114
Len Brown4be44fc2005-08-05 00:44:28 -0400115 ACPI_REPORT_ERROR(("Invalid descriptor type in get_reference: %X\n", ACPI_GET_DESCRIPTOR_TYPE(obj_desc)));
116 return_ACPI_STATUS(AE_TYPE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 }
118
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 /* Create a new reference object */
120
Len Brown4be44fc2005-08-05 00:44:28 -0400121 reference_obj =
122 acpi_ut_create_internal_object(ACPI_TYPE_LOCAL_REFERENCE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 if (!reference_obj) {
Len Brown4be44fc2005-08-05 00:44:28 -0400124 return_ACPI_STATUS(AE_NO_MEMORY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 }
126
127 reference_obj->reference.opcode = AML_REF_OF_OP;
128 reference_obj->reference.object = referenced_obj;
129 *return_desc = reference_obj;
130
Len Brown4be44fc2005-08-05 00:44:28 -0400131 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
132 "Object %p Type [%s], returning Reference %p\n",
133 obj_desc, acpi_ut_get_object_type_name(obj_desc),
134 *return_desc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
Len Brown4be44fc2005-08-05 00:44:28 -0400136 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137}
138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139/*******************************************************************************
140 *
141 * FUNCTION: acpi_ex_concat_template
142 *
143 * PARAMETERS: Operand0 - First source object
144 * Operand1 - Second source object
145 * actual_return_desc - Where to place the return object
146 * walk_state - Current walk state
147 *
148 * RETURN: Status
149 *
150 * DESCRIPTION: Concatenate two resource templates
151 *
152 ******************************************************************************/
153
154acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400155acpi_ex_concat_template(union acpi_operand_object *operand0,
156 union acpi_operand_object *operand1,
157 union acpi_operand_object **actual_return_desc,
158 struct acpi_walk_state *walk_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159{
Len Brown4be44fc2005-08-05 00:44:28 -0400160 union acpi_operand_object *return_desc;
161 u8 *new_buf;
162 u8 *end_tag1;
163 u8 *end_tag2;
164 acpi_size length1;
165 acpi_size length2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
Len Brown4be44fc2005-08-05 00:44:28 -0400167 ACPI_FUNCTION_TRACE("ex_concat_template");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
169 /* Find the end_tags in each resource template */
170
Len Brown4be44fc2005-08-05 00:44:28 -0400171 end_tag1 = acpi_ut_get_resource_end_tag(operand0);
172 end_tag2 = acpi_ut_get_resource_end_tag(operand1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 if (!end_tag1 || !end_tag2) {
Len Brown4be44fc2005-08-05 00:44:28 -0400174 return_ACPI_STATUS(AE_AML_OPERAND_TYPE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 }
176
177 /* Compute the length of each part */
178
Len Brown4be44fc2005-08-05 00:44:28 -0400179 length1 = ACPI_PTR_DIFF(end_tag1, operand0->buffer.pointer);
180 length2 = ACPI_PTR_DIFF(end_tag2, operand1->buffer.pointer) + 2; /* Size of END_TAG */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
182 /* Create a new buffer object for the result */
183
Len Brown4be44fc2005-08-05 00:44:28 -0400184 return_desc = acpi_ut_create_buffer_object(length1 + length2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 if (!return_desc) {
Len Brown4be44fc2005-08-05 00:44:28 -0400186 return_ACPI_STATUS(AE_NO_MEMORY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 }
188
189 /* Copy the templates to the new descriptor */
190
191 new_buf = return_desc->buffer.pointer;
Len Brown4be44fc2005-08-05 00:44:28 -0400192 ACPI_MEMCPY(new_buf, operand0->buffer.pointer, length1);
193 ACPI_MEMCPY(new_buf + length1, operand1->buffer.pointer, length2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
195 /* Compute the new checksum */
196
197 new_buf[return_desc->buffer.length - 1] =
Len Brown4be44fc2005-08-05 00:44:28 -0400198 acpi_ut_generate_checksum(return_desc->buffer.pointer,
199 (return_desc->buffer.length - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
201 /* Return the completed template descriptor */
202
203 *actual_return_desc = return_desc;
Len Brown4be44fc2005-08-05 00:44:28 -0400204 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205}
206
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207/*******************************************************************************
208 *
209 * FUNCTION: acpi_ex_do_concatenate
210 *
211 * PARAMETERS: Operand0 - First source object
212 * Operand1 - Second source object
213 * actual_return_desc - Where to place the return object
214 * walk_state - Current walk state
215 *
216 * RETURN: Status
217 *
218 * DESCRIPTION: Concatenate two objects OF THE SAME TYPE.
219 *
220 ******************************************************************************/
221
222acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400223acpi_ex_do_concatenate(union acpi_operand_object *operand0,
224 union acpi_operand_object *operand1,
225 union acpi_operand_object **actual_return_desc,
226 struct acpi_walk_state *walk_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227{
Len Brown4be44fc2005-08-05 00:44:28 -0400228 union acpi_operand_object *local_operand1 = operand1;
229 union acpi_operand_object *return_desc;
230 char *new_buf;
231 acpi_status status;
232 acpi_size new_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
Len Brown4be44fc2005-08-05 00:44:28 -0400234 ACPI_FUNCTION_TRACE("ex_do_concatenate");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
236 /*
237 * Convert the second operand if necessary. The first operand
238 * determines the type of the second operand, (See the Data Types
239 * section of the ACPI specification.) Both object types are
240 * guaranteed to be either Integer/String/Buffer by the operand
241 * resolution mechanism.
242 */
Len Brown4be44fc2005-08-05 00:44:28 -0400243 switch (ACPI_GET_OBJECT_TYPE(operand0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 case ACPI_TYPE_INTEGER:
Len Brown4be44fc2005-08-05 00:44:28 -0400245 status =
246 acpi_ex_convert_to_integer(operand1, &local_operand1, 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 break;
248
249 case ACPI_TYPE_STRING:
Len Brown4be44fc2005-08-05 00:44:28 -0400250 status = acpi_ex_convert_to_string(operand1, &local_operand1,
251 ACPI_IMPLICIT_CONVERT_HEX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 break;
253
254 case ACPI_TYPE_BUFFER:
Len Brown4be44fc2005-08-05 00:44:28 -0400255 status = acpi_ex_convert_to_buffer(operand1, &local_operand1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 break;
257
258 default:
Len Brown4be44fc2005-08-05 00:44:28 -0400259 ACPI_REPORT_ERROR(("Concat - invalid obj type: %X\n",
260 ACPI_GET_OBJECT_TYPE(operand0)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 status = AE_AML_INTERNAL;
262 }
263
Len Brown4be44fc2005-08-05 00:44:28 -0400264 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 goto cleanup;
266 }
267
268 /*
269 * Both operands are now known to be the same object type
270 * (Both are Integer, String, or Buffer), and we can now perform the
271 * concatenation.
272 */
273
274 /*
275 * There are three cases to handle:
276 *
277 * 1) Two Integers concatenated to produce a new Buffer
278 * 2) Two Strings concatenated to produce a new String
279 * 3) Two Buffers concatenated to produce a new Buffer
280 */
Len Brown4be44fc2005-08-05 00:44:28 -0400281 switch (ACPI_GET_OBJECT_TYPE(operand0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 case ACPI_TYPE_INTEGER:
283
284 /* Result of two Integers is a Buffer */
285 /* Need enough buffer space for two integers */
286
Len Brown4be44fc2005-08-05 00:44:28 -0400287 return_desc = acpi_ut_create_buffer_object((acpi_size)
288 ACPI_MUL_2
289 (acpi_gbl_integer_byte_width));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 if (!return_desc) {
291 status = AE_NO_MEMORY;
292 goto cleanup;
293 }
294
Len Brown4be44fc2005-08-05 00:44:28 -0400295 new_buf = (char *)return_desc->buffer.pointer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
297 /* Copy the first integer, LSB first */
298
Len Brown4be44fc2005-08-05 00:44:28 -0400299 ACPI_MEMCPY(new_buf,
300 &operand0->integer.value,
301 acpi_gbl_integer_byte_width);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
303 /* Copy the second integer (LSB first) after the first */
304
Len Brown4be44fc2005-08-05 00:44:28 -0400305 ACPI_MEMCPY(new_buf + acpi_gbl_integer_byte_width,
306 &local_operand1->integer.value,
307 acpi_gbl_integer_byte_width);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 break;
309
310 case ACPI_TYPE_STRING:
311
312 /* Result of two Strings is a String */
313
314 new_length = (acpi_size) operand0->string.length +
Len Brown4be44fc2005-08-05 00:44:28 -0400315 (acpi_size) local_operand1->string.length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 if (new_length > ACPI_MAX_STRING_CONVERSION) {
317 status = AE_AML_STRING_LIMIT;
318 goto cleanup;
319 }
320
Len Brown4be44fc2005-08-05 00:44:28 -0400321 return_desc = acpi_ut_create_string_object(new_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 if (!return_desc) {
323 status = AE_NO_MEMORY;
324 goto cleanup;
325 }
326
327 new_buf = return_desc->string.pointer;
328
329 /* Concatenate the strings */
330
Len Brown4be44fc2005-08-05 00:44:28 -0400331 ACPI_STRCPY(new_buf, operand0->string.pointer);
332 ACPI_STRCPY(new_buf + operand0->string.length,
333 local_operand1->string.pointer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 break;
335
336 case ACPI_TYPE_BUFFER:
337
338 /* Result of two Buffers is a Buffer */
339
Len Brown4be44fc2005-08-05 00:44:28 -0400340 return_desc = acpi_ut_create_buffer_object((acpi_size)
341 operand0->buffer.
342 length +
343 (acpi_size)
344 local_operand1->
345 buffer.length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 if (!return_desc) {
347 status = AE_NO_MEMORY;
348 goto cleanup;
349 }
350
Len Brown4be44fc2005-08-05 00:44:28 -0400351 new_buf = (char *)return_desc->buffer.pointer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
353 /* Concatenate the buffers */
354
Len Brown4be44fc2005-08-05 00:44:28 -0400355 ACPI_MEMCPY(new_buf,
356 operand0->buffer.pointer, operand0->buffer.length);
357 ACPI_MEMCPY(new_buf + operand0->buffer.length,
358 local_operand1->buffer.pointer,
359 local_operand1->buffer.length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 break;
361
362 default:
363
364 /* Invalid object type, should not happen here */
365
Len Brown4be44fc2005-08-05 00:44:28 -0400366 ACPI_REPORT_ERROR(("Concatenate - Invalid object type: %X\n",
367 ACPI_GET_OBJECT_TYPE(operand0)));
368 status = AE_AML_INTERNAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 goto cleanup;
370 }
371
372 *actual_return_desc = return_desc;
373
Len Brown4be44fc2005-08-05 00:44:28 -0400374 cleanup:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 if (local_operand1 != operand1) {
Len Brown4be44fc2005-08-05 00:44:28 -0400376 acpi_ut_remove_reference(local_operand1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 }
Len Brown4be44fc2005-08-05 00:44:28 -0400378 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379}
380
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381/*******************************************************************************
382 *
383 * FUNCTION: acpi_ex_do_math_op
384 *
385 * PARAMETERS: Opcode - AML opcode
386 * Integer0 - Integer operand #0
387 * Integer1 - Integer operand #1
388 *
389 * RETURN: Integer result of the operation
390 *
391 * DESCRIPTION: Execute a math AML opcode. The purpose of having all of the
392 * math functions here is to prevent a lot of pointer dereferencing
393 * to obtain the operands.
394 *
395 ******************************************************************************/
396
397acpi_integer
Len Brown4be44fc2005-08-05 00:44:28 -0400398acpi_ex_do_math_op(u16 opcode, acpi_integer integer0, acpi_integer integer1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399{
400
Len Brown4be44fc2005-08-05 00:44:28 -0400401 ACPI_FUNCTION_ENTRY();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
403 switch (opcode) {
Len Brown4be44fc2005-08-05 00:44:28 -0400404 case AML_ADD_OP: /* Add (Integer0, Integer1, Result) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
406 return (integer0 + integer1);
407
Len Brown4be44fc2005-08-05 00:44:28 -0400408 case AML_BIT_AND_OP: /* And (Integer0, Integer1, Result) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
410 return (integer0 & integer1);
411
Len Brown4be44fc2005-08-05 00:44:28 -0400412 case AML_BIT_NAND_OP: /* NAnd (Integer0, Integer1, Result) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
414 return (~(integer0 & integer1));
415
Len Brown4be44fc2005-08-05 00:44:28 -0400416 case AML_BIT_OR_OP: /* Or (Integer0, Integer1, Result) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
418 return (integer0 | integer1);
419
Len Brown4be44fc2005-08-05 00:44:28 -0400420 case AML_BIT_NOR_OP: /* NOr (Integer0, Integer1, Result) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
422 return (~(integer0 | integer1));
423
Len Brown4be44fc2005-08-05 00:44:28 -0400424 case AML_BIT_XOR_OP: /* XOr (Integer0, Integer1, Result) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
426 return (integer0 ^ integer1);
427
Len Brown4be44fc2005-08-05 00:44:28 -0400428 case AML_MULTIPLY_OP: /* Multiply (Integer0, Integer1, Result) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
430 return (integer0 * integer1);
431
Len Brown4be44fc2005-08-05 00:44:28 -0400432 case AML_SHIFT_LEFT_OP: /* shift_left (Operand, shift_count, Result) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
434 return (integer0 << integer1);
435
Len Brown4be44fc2005-08-05 00:44:28 -0400436 case AML_SHIFT_RIGHT_OP: /* shift_right (Operand, shift_count, Result) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
438 return (integer0 >> integer1);
439
Len Brown4be44fc2005-08-05 00:44:28 -0400440 case AML_SUBTRACT_OP: /* Subtract (Integer0, Integer1, Result) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
442 return (integer0 - integer1);
443
444 default:
445
446 return (0);
447 }
448}
449
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450/*******************************************************************************
451 *
452 * FUNCTION: acpi_ex_do_logical_numeric_op
453 *
454 * PARAMETERS: Opcode - AML opcode
455 * Integer0 - Integer operand #0
456 * Integer1 - Integer operand #1
457 * logical_result - TRUE/FALSE result of the operation
458 *
459 * RETURN: Status
460 *
461 * DESCRIPTION: Execute a logical "Numeric" AML opcode. For these Numeric
462 * operators (LAnd and LOr), both operands must be integers.
463 *
464 * Note: cleanest machine code seems to be produced by the code
465 * below, rather than using statements of the form:
466 * Result = (Integer0 && Integer1);
467 *
468 ******************************************************************************/
469
470acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400471acpi_ex_do_logical_numeric_op(u16 opcode,
472 acpi_integer integer0,
473 acpi_integer integer1, u8 * logical_result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474{
Len Brown4be44fc2005-08-05 00:44:28 -0400475 acpi_status status = AE_OK;
476 u8 local_result = FALSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
Len Brown4be44fc2005-08-05 00:44:28 -0400478 ACPI_FUNCTION_TRACE("ex_do_logical_numeric_op");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
480 switch (opcode) {
Len Brown4be44fc2005-08-05 00:44:28 -0400481 case AML_LAND_OP: /* LAnd (Integer0, Integer1) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
483 if (integer0 && integer1) {
484 local_result = TRUE;
485 }
486 break;
487
Len Brown4be44fc2005-08-05 00:44:28 -0400488 case AML_LOR_OP: /* LOr (Integer0, Integer1) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
490 if (integer0 || integer1) {
491 local_result = TRUE;
492 }
493 break;
494
495 default:
496 status = AE_AML_INTERNAL;
497 break;
498 }
499
500 /* Return the logical result and status */
501
502 *logical_result = local_result;
Len Brown4be44fc2005-08-05 00:44:28 -0400503 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504}
505
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506/*******************************************************************************
507 *
508 * FUNCTION: acpi_ex_do_logical_op
509 *
510 * PARAMETERS: Opcode - AML opcode
511 * Operand0 - operand #0
512 * Operand1 - operand #1
513 * logical_result - TRUE/FALSE result of the operation
514 *
515 * RETURN: Status
516 *
517 * DESCRIPTION: Execute a logical AML opcode. The purpose of having all of the
518 * functions here is to prevent a lot of pointer dereferencing
519 * to obtain the operands and to simplify the generation of the
520 * logical value. For the Numeric operators (LAnd and LOr), both
521 * operands must be integers. For the other logical operators,
522 * operands can be any combination of Integer/String/Buffer. The
523 * first operand determines the type to which the second operand
524 * will be converted.
525 *
526 * Note: cleanest machine code seems to be produced by the code
527 * below, rather than using statements of the form:
528 * Result = (Operand0 == Operand1);
529 *
530 ******************************************************************************/
531
532acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400533acpi_ex_do_logical_op(u16 opcode,
534 union acpi_operand_object *operand0,
535 union acpi_operand_object *operand1, u8 * logical_result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536{
Len Brown4be44fc2005-08-05 00:44:28 -0400537 union acpi_operand_object *local_operand1 = operand1;
538 acpi_integer integer0;
539 acpi_integer integer1;
540 u32 length0;
541 u32 length1;
542 acpi_status status = AE_OK;
543 u8 local_result = FALSE;
544 int compare;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
Len Brown4be44fc2005-08-05 00:44:28 -0400546 ACPI_FUNCTION_TRACE("ex_do_logical_op");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
548 /*
549 * Convert the second operand if necessary. The first operand
550 * determines the type of the second operand, (See the Data Types
551 * section of the ACPI 3.0+ specification.) Both object types are
552 * guaranteed to be either Integer/String/Buffer by the operand
553 * resolution mechanism.
554 */
Len Brown4be44fc2005-08-05 00:44:28 -0400555 switch (ACPI_GET_OBJECT_TYPE(operand0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 case ACPI_TYPE_INTEGER:
Len Brown4be44fc2005-08-05 00:44:28 -0400557 status =
558 acpi_ex_convert_to_integer(operand1, &local_operand1, 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 break;
560
561 case ACPI_TYPE_STRING:
Len Brown4be44fc2005-08-05 00:44:28 -0400562 status = acpi_ex_convert_to_string(operand1, &local_operand1,
563 ACPI_IMPLICIT_CONVERT_HEX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 break;
565
566 case ACPI_TYPE_BUFFER:
Len Brown4be44fc2005-08-05 00:44:28 -0400567 status = acpi_ex_convert_to_buffer(operand1, &local_operand1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 break;
569
570 default:
571 status = AE_AML_INTERNAL;
572 break;
573 }
574
Len Brown4be44fc2005-08-05 00:44:28 -0400575 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 goto cleanup;
577 }
578
579 /*
580 * Two cases: 1) Both Integers, 2) Both Strings or Buffers
581 */
Len Brown4be44fc2005-08-05 00:44:28 -0400582 if (ACPI_GET_OBJECT_TYPE(operand0) == ACPI_TYPE_INTEGER) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 /*
584 * 1) Both operands are of type integer
585 * Note: local_operand1 may have changed above
586 */
587 integer0 = operand0->integer.value;
588 integer1 = local_operand1->integer.value;
589
590 switch (opcode) {
Len Brown4be44fc2005-08-05 00:44:28 -0400591 case AML_LEQUAL_OP: /* LEqual (Operand0, Operand1) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
593 if (integer0 == integer1) {
594 local_result = TRUE;
595 }
596 break;
597
Len Brown4be44fc2005-08-05 00:44:28 -0400598 case AML_LGREATER_OP: /* LGreater (Operand0, Operand1) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
600 if (integer0 > integer1) {
601 local_result = TRUE;
602 }
603 break;
604
Len Brown4be44fc2005-08-05 00:44:28 -0400605 case AML_LLESS_OP: /* LLess (Operand0, Operand1) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
607 if (integer0 < integer1) {
608 local_result = TRUE;
609 }
610 break;
611
612 default:
613 status = AE_AML_INTERNAL;
614 break;
615 }
Len Brown4be44fc2005-08-05 00:44:28 -0400616 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 /*
618 * 2) Both operands are Strings or both are Buffers
619 * Note: Code below takes advantage of common Buffer/String
620 * object fields. local_operand1 may have changed above. Use
621 * memcmp to handle nulls in buffers.
622 */
623 length0 = operand0->buffer.length;
624 length1 = local_operand1->buffer.length;
625
626 /* Lexicographic compare: compare the data bytes */
627
Len Brown4be44fc2005-08-05 00:44:28 -0400628 compare = ACPI_MEMCMP((const char *)operand0->buffer.pointer,
629 (const char *)local_operand1->buffer.
630 pointer,
631 (length0 > length1) ? length1 : length0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
633 switch (opcode) {
Len Brown4be44fc2005-08-05 00:44:28 -0400634 case AML_LEQUAL_OP: /* LEqual (Operand0, Operand1) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
636 /* Length and all bytes must be equal */
637
Len Brown4be44fc2005-08-05 00:44:28 -0400638 if ((length0 == length1) && (compare == 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 /* Length and all bytes match ==> TRUE */
640
641 local_result = TRUE;
642 }
643 break;
644
Len Brown4be44fc2005-08-05 00:44:28 -0400645 case AML_LGREATER_OP: /* LGreater (Operand0, Operand1) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
647 if (compare > 0) {
648 local_result = TRUE;
Len Brown4be44fc2005-08-05 00:44:28 -0400649 goto cleanup; /* TRUE */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 }
651 if (compare < 0) {
Len Brown4be44fc2005-08-05 00:44:28 -0400652 goto cleanup; /* FALSE */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 }
654
655 /* Bytes match (to shortest length), compare lengths */
656
657 if (length0 > length1) {
658 local_result = TRUE;
659 }
660 break;
661
Len Brown4be44fc2005-08-05 00:44:28 -0400662 case AML_LLESS_OP: /* LLess (Operand0, Operand1) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
664 if (compare > 0) {
Len Brown4be44fc2005-08-05 00:44:28 -0400665 goto cleanup; /* FALSE */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 }
667 if (compare < 0) {
668 local_result = TRUE;
Len Brown4be44fc2005-08-05 00:44:28 -0400669 goto cleanup; /* TRUE */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 }
671
672 /* Bytes match (to shortest length), compare lengths */
673
674 if (length0 < length1) {
675 local_result = TRUE;
676 }
677 break;
678
679 default:
680 status = AE_AML_INTERNAL;
681 break;
682 }
683 }
684
Len Brown4be44fc2005-08-05 00:44:28 -0400685 cleanup:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
687 /* New object was created if implicit conversion performed - delete */
688
689 if (local_operand1 != operand1) {
Len Brown4be44fc2005-08-05 00:44:28 -0400690 acpi_ut_remove_reference(local_operand1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 }
692
693 /* Return the logical result and status */
694
695 *logical_result = local_result;
Len Brown4be44fc2005-08-05 00:44:28 -0400696 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697}