Merge tag 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost
[deliverable/linux.git] / drivers / acpi / acpica / exmisc.c
CommitLineData
1da177e4
LT
1/******************************************************************************
2 *
3 * Module Name: exmisc - ACPI AML (p-code) execution - specific opcodes
4 *
5 *****************************************************************************/
6
7/*
82a80941 8 * Copyright (C) 2000 - 2015, Intel Corp.
1da177e4
LT
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
1da177e4 44#include <acpi/acpi.h>
e2f7a777
LB
45#include "accommon.h"
46#include "acinterp.h"
47#include "amlcode.h"
48#include "amlresrc.h"
1da177e4 49
1da177e4 50#define _COMPONENT ACPI_EXECUTER
4be44fcd 51ACPI_MODULE_NAME("exmisc")
1da177e4
LT
52
53/*******************************************************************************
54 *
55 * FUNCTION: acpi_ex_get_object_reference
56 *
57 * PARAMETERS: obj_desc - Create a reference to this object
58 * return_desc - Where to store the reference
59 * walk_state - Current state
60 *
61 * RETURN: Status
62 *
63 * DESCRIPTION: Obtain and return a "reference" to the target object
64 * Common code for the ref_of_op and the cond_ref_of_op.
65 *
66 ******************************************************************************/
1da177e4 67acpi_status
4be44fcd
LB
68acpi_ex_get_object_reference(union acpi_operand_object *obj_desc,
69 union acpi_operand_object **return_desc,
70 struct acpi_walk_state *walk_state)
1da177e4 71{
4be44fcd
LB
72 union acpi_operand_object *reference_obj;
73 union acpi_operand_object *referenced_obj;
1da177e4 74
b229cf92 75 ACPI_FUNCTION_TRACE_PTR(ex_get_object_reference, obj_desc);
1da177e4
LT
76
77 *return_desc = NULL;
78
4be44fcd 79 switch (ACPI_GET_DESCRIPTOR_TYPE(obj_desc)) {
1da177e4
LT
80 case ACPI_DESC_TYPE_OPERAND:
81
3371c19c 82 if (obj_desc->common.type != ACPI_TYPE_LOCAL_REFERENCE) {
4be44fcd 83 return_ACPI_STATUS(AE_AML_OPERAND_TYPE);
1da177e4
LT
84 }
85
86 /*
87 * Must be a reference to a Local or Arg
88 */
1044f1f6
BM
89 switch (obj_desc->reference.class) {
90 case ACPI_REFCLASS_LOCAL:
91 case ACPI_REFCLASS_ARG:
92 case ACPI_REFCLASS_DEBUG:
1da177e4
LT
93
94 /* The referenced object is the pseudo-node for the local/arg */
95
96 referenced_obj = obj_desc->reference.object;
97 break;
98
99 default:
100
395ec731 101 ACPI_ERROR((AE_INFO, "Invalid Reference Class 0x%2.2X",
1044f1f6 102 obj_desc->reference.class));
395ec731 103 return_ACPI_STATUS(AE_AML_OPERAND_TYPE);
1da177e4
LT
104 }
105 break;
106
1da177e4 107 case ACPI_DESC_TYPE_NAMED:
1da177e4
LT
108 /*
109 * A named reference that has already been resolved to a Node
110 */
111 referenced_obj = obj_desc;
112 break;
113
1da177e4
LT
114 default:
115
f6a22b0b 116 ACPI_ERROR((AE_INFO, "Invalid descriptor type 0x%X",
b8e4d893 117 ACPI_GET_DESCRIPTOR_TYPE(obj_desc)));
4be44fcd 118 return_ACPI_STATUS(AE_TYPE);
1da177e4
LT
119 }
120
1da177e4
LT
121 /* Create a new reference object */
122
4be44fcd
LB
123 reference_obj =
124 acpi_ut_create_internal_object(ACPI_TYPE_LOCAL_REFERENCE);
1da177e4 125 if (!reference_obj) {
4be44fcd 126 return_ACPI_STATUS(AE_NO_MEMORY);
1da177e4
LT
127 }
128
1044f1f6 129 reference_obj->reference.class = ACPI_REFCLASS_REFOF;
1da177e4
LT
130 reference_obj->reference.object = referenced_obj;
131 *return_desc = reference_obj;
132
4be44fcd
LB
133 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
134 "Object %p Type [%s], returning Reference %p\n",
135 obj_desc, acpi_ut_get_object_type_name(obj_desc),
136 *return_desc));
1da177e4 137
4be44fcd 138 return_ACPI_STATUS(AE_OK);
1da177e4
LT
139}
140
1da177e4
LT
141/*******************************************************************************
142 *
143 * FUNCTION: acpi_ex_concat_template
144 *
ba494bee
BM
145 * PARAMETERS: operand0 - First source object
146 * operand1 - Second source object
1da177e4
LT
147 * actual_return_desc - Where to place the return object
148 * walk_state - Current walk state
149 *
150 * RETURN: Status
151 *
152 * DESCRIPTION: Concatenate two resource templates
153 *
154 ******************************************************************************/
155
156acpi_status
4be44fcd
LB
157acpi_ex_concat_template(union acpi_operand_object *operand0,
158 union acpi_operand_object *operand1,
159 union acpi_operand_object **actual_return_desc,
160 struct acpi_walk_state *walk_state)
1da177e4 161{
96db255c 162 acpi_status status;
4be44fcd
LB
163 union acpi_operand_object *return_desc;
164 u8 *new_buf;
96db255c
BM
165 u8 *end_tag;
166 acpi_size length0;
4be44fcd 167 acpi_size length1;
b8e4d893 168 acpi_size new_length;
1da177e4 169
b229cf92 170 ACPI_FUNCTION_TRACE(ex_concat_template);
1da177e4 171
96db255c
BM
172 /*
173 * Find the end_tag descriptor in each resource template.
b8e4d893
BM
174 * Note1: returned pointers point TO the end_tag, not past it.
175 * Note2: zero-length buffers are allowed; treated like one end_tag
96db255c 176 */
b8e4d893
BM
177
178 /* Get the length of the first resource template */
179
96db255c
BM
180 status = acpi_ut_get_resource_end_tag(operand0, &end_tag);
181 if (ACPI_FAILURE(status)) {
182 return_ACPI_STATUS(status);
183 }
184
185 length0 = ACPI_PTR_DIFF(end_tag, operand0->buffer.pointer);
1da177e4 186
b8e4d893
BM
187 /* Get the length of the second resource template */
188
96db255c
BM
189 status = acpi_ut_get_resource_end_tag(operand1, &end_tag);
190 if (ACPI_FAILURE(status)) {
191 return_ACPI_STATUS(status);
1da177e4
LT
192 }
193
b8e4d893
BM
194 length1 = ACPI_PTR_DIFF(end_tag, operand1->buffer.pointer);
195
196 /* Combine both lengths, minimum size will be 2 for end_tag */
1da177e4 197
b8e4d893 198 new_length = length0 + length1 + sizeof(struct aml_resource_end_tag);
1da177e4 199
b8e4d893 200 /* Create a new buffer object for the result (with one end_tag) */
1da177e4 201
b8e4d893 202 return_desc = acpi_ut_create_buffer_object(new_length);
1da177e4 203 if (!return_desc) {
4be44fcd 204 return_ACPI_STATUS(AE_NO_MEMORY);
1da177e4
LT
205 }
206
96db255c
BM
207 /*
208 * Copy the templates to the new buffer, 0 first, then 1 follows. One
209 * end_tag descriptor is copied from Operand1.
210 */
1da177e4 211 new_buf = return_desc->buffer.pointer;
4fa4616e
BM
212 memcpy(new_buf, operand0->buffer.pointer, length0);
213 memcpy(new_buf + length0, operand1->buffer.pointer, length1);
1da177e4 214
b8e4d893 215 /* Insert end_tag and set the checksum to zero, means "ignore checksum" */
1da177e4 216
b8e4d893
BM
217 new_buf[new_length - 1] = 0;
218 new_buf[new_length - 2] = ACPI_RESOURCE_NAME_END_TAG | 1;
1da177e4 219
96db255c 220 /* Return the completed resource template */
1da177e4
LT
221
222 *actual_return_desc = return_desc;
4be44fcd 223 return_ACPI_STATUS(AE_OK);
1da177e4
LT
224}
225
1da177e4
LT
226/*******************************************************************************
227 *
228 * FUNCTION: acpi_ex_do_concatenate
229 *
ba494bee
BM
230 * PARAMETERS: operand0 - First source object
231 * operand1 - Second source object
1da177e4
LT
232 * actual_return_desc - Where to place the return object
233 * walk_state - Current walk state
234 *
235 * RETURN: Status
236 *
237 * DESCRIPTION: Concatenate two objects OF THE SAME TYPE.
238 *
239 ******************************************************************************/
240
241acpi_status
4be44fcd
LB
242acpi_ex_do_concatenate(union acpi_operand_object *operand0,
243 union acpi_operand_object *operand1,
244 union acpi_operand_object **actual_return_desc,
245 struct acpi_walk_state *walk_state)
1da177e4 246{
4be44fcd
LB
247 union acpi_operand_object *local_operand1 = operand1;
248 union acpi_operand_object *return_desc;
249 char *new_buf;
7910617e 250 const char *type_string;
4be44fcd 251 acpi_status status;
1da177e4 252
b229cf92 253 ACPI_FUNCTION_TRACE(ex_do_concatenate);
1da177e4
LT
254
255 /*
73a3090a 256 * Convert the second operand if necessary. The first operand
1da177e4
LT
257 * determines the type of the second operand, (See the Data Types
258 * section of the ACPI specification.) Both object types are
259 * guaranteed to be either Integer/String/Buffer by the operand
260 * resolution mechanism.
261 */
3371c19c 262 switch (operand0->common.type) {
1da177e4 263 case ACPI_TYPE_INTEGER:
1d1ea1b7 264
4be44fcd
LB
265 status =
266 acpi_ex_convert_to_integer(operand1, &local_operand1, 16);
1da177e4
LT
267 break;
268
269 case ACPI_TYPE_STRING:
7910617e
BM
270 /*
271 * Per the ACPI spec, Concatenate only supports int/str/buf.
272 * However, we support all objects here as an extension.
273 * This improves the usefulness of the Printf() macro.
274 * 12/2015.
275 */
276 switch (operand1->common.type) {
277 case ACPI_TYPE_INTEGER:
278 case ACPI_TYPE_STRING:
279 case ACPI_TYPE_BUFFER:
280
281 status =
282 acpi_ex_convert_to_string(operand1, &local_operand1,
283 ACPI_IMPLICIT_CONVERT_HEX);
284 break;
1d1ea1b7 285
7910617e
BM
286 default:
287 /*
288 * Just emit a string containing the object type.
289 */
290 type_string =
291 acpi_ut_get_type_name(operand1->common.type);
292
293 local_operand1 = acpi_ut_create_string_object(((acpi_size) strlen(type_string) + 9)); /* 9 For "[Object]" */
294 if (!local_operand1) {
295 status = AE_NO_MEMORY;
296 goto cleanup;
297 }
298
299 strcpy(local_operand1->string.pointer, "[");
300 strcat(local_operand1->string.pointer, type_string);
301 strcat(local_operand1->string.pointer, " Object]");
302 status = AE_OK;
303 break;
304 }
1da177e4
LT
305 break;
306
307 case ACPI_TYPE_BUFFER:
1d1ea1b7 308
4be44fcd 309 status = acpi_ex_convert_to_buffer(operand1, &local_operand1);
1da177e4
LT
310 break;
311
312 default:
1d1ea1b7 313
f6a22b0b 314 ACPI_ERROR((AE_INFO, "Invalid object type: 0x%X",
3371c19c 315 operand0->common.type));
1da177e4
LT
316 status = AE_AML_INTERNAL;
317 }
318
4be44fcd 319 if (ACPI_FAILURE(status)) {
1da177e4
LT
320 goto cleanup;
321 }
322
323 /*
324 * Both operands are now known to be the same object type
325 * (Both are Integer, String, or Buffer), and we can now perform the
326 * concatenation.
327 */
328
329 /*
330 * There are three cases to handle:
331 *
332 * 1) Two Integers concatenated to produce a new Buffer
333 * 2) Two Strings concatenated to produce a new String
334 * 3) Two Buffers concatenated to produce a new Buffer
335 */
3371c19c 336 switch (operand0->common.type) {
1da177e4
LT
337 case ACPI_TYPE_INTEGER:
338
339 /* Result of two Integers is a Buffer */
340 /* Need enough buffer space for two integers */
341
4be44fcd
LB
342 return_desc = acpi_ut_create_buffer_object((acpi_size)
343 ACPI_MUL_2
344 (acpi_gbl_integer_byte_width));
1da177e4
LT
345 if (!return_desc) {
346 status = AE_NO_MEMORY;
347 goto cleanup;
348 }
349
4be44fcd 350 new_buf = (char *)return_desc->buffer.pointer;
1da177e4
LT
351
352 /* Copy the first integer, LSB first */
353
4fa4616e
BM
354 memcpy(new_buf, &operand0->integer.value,
355 acpi_gbl_integer_byte_width);
1da177e4
LT
356
357 /* Copy the second integer (LSB first) after the first */
358
4fa4616e
BM
359 memcpy(new_buf + acpi_gbl_integer_byte_width,
360 &local_operand1->integer.value,
361 acpi_gbl_integer_byte_width);
1da177e4
LT
362 break;
363
364 case ACPI_TYPE_STRING:
365
366 /* Result of two Strings is a String */
367
67a119f9
BM
368 return_desc = acpi_ut_create_string_object(((acpi_size)
369 operand0->string.
c51a4de8
BM
370 length +
371 local_operand1->
372 string.length));
1da177e4
LT
373 if (!return_desc) {
374 status = AE_NO_MEMORY;
375 goto cleanup;
376 }
377
378 new_buf = return_desc->string.pointer;
379
380 /* Concatenate the strings */
381
4fa4616e 382 strcpy(new_buf, operand0->string.pointer);
7910617e 383 strcat(new_buf, local_operand1->string.pointer);
1da177e4
LT
384 break;
385
386 case ACPI_TYPE_BUFFER:
387
388 /* Result of two Buffers is a Buffer */
389
67a119f9
BM
390 return_desc = acpi_ut_create_buffer_object(((acpi_size)
391 operand0->buffer.
c51a4de8
BM
392 length +
393 local_operand1->
394 buffer.length));
1da177e4
LT
395 if (!return_desc) {
396 status = AE_NO_MEMORY;
397 goto cleanup;
398 }
399
4be44fcd 400 new_buf = (char *)return_desc->buffer.pointer;
1da177e4
LT
401
402 /* Concatenate the buffers */
403
4fa4616e
BM
404 memcpy(new_buf, operand0->buffer.pointer,
405 operand0->buffer.length);
406 memcpy(new_buf + operand0->buffer.length,
407 local_operand1->buffer.pointer,
408 local_operand1->buffer.length);
1da177e4
LT
409 break;
410
411 default:
412
413 /* Invalid object type, should not happen here */
414
f6a22b0b 415 ACPI_ERROR((AE_INFO, "Invalid object type: 0x%X",
3371c19c 416 operand0->common.type));
4be44fcd 417 status = AE_AML_INTERNAL;
1da177e4
LT
418 goto cleanup;
419 }
420
421 *actual_return_desc = return_desc;
422
10622bf8 423cleanup:
1da177e4 424 if (local_operand1 != operand1) {
4be44fcd 425 acpi_ut_remove_reference(local_operand1);
1da177e4 426 }
4be44fcd 427 return_ACPI_STATUS(status);
1da177e4
LT
428}
429
1da177e4
LT
430/*******************************************************************************
431 *
432 * FUNCTION: acpi_ex_do_math_op
433 *
ba494bee
BM
434 * PARAMETERS: opcode - AML opcode
435 * integer0 - Integer operand #0
436 * integer1 - Integer operand #1
1da177e4
LT
437 *
438 * RETURN: Integer result of the operation
439 *
440 * DESCRIPTION: Execute a math AML opcode. The purpose of having all of the
441 * math functions here is to prevent a lot of pointer dereferencing
442 * to obtain the operands.
443 *
444 ******************************************************************************/
445
5df7e6cb 446u64 acpi_ex_do_math_op(u16 opcode, u64 integer0, u64 integer1)
1da177e4
LT
447{
448
4be44fcd 449 ACPI_FUNCTION_ENTRY();
1da177e4
LT
450
451 switch (opcode) {
4be44fcd 452 case AML_ADD_OP: /* Add (Integer0, Integer1, Result) */
1da177e4
LT
453
454 return (integer0 + integer1);
455
4be44fcd 456 case AML_BIT_AND_OP: /* And (Integer0, Integer1, Result) */
1da177e4
LT
457
458 return (integer0 & integer1);
459
4be44fcd 460 case AML_BIT_NAND_OP: /* NAnd (Integer0, Integer1, Result) */
1da177e4
LT
461
462 return (~(integer0 & integer1));
463
4be44fcd 464 case AML_BIT_OR_OP: /* Or (Integer0, Integer1, Result) */
1da177e4
LT
465
466 return (integer0 | integer1);
467
4be44fcd 468 case AML_BIT_NOR_OP: /* NOr (Integer0, Integer1, Result) */
1da177e4
LT
469
470 return (~(integer0 | integer1));
471
4be44fcd 472 case AML_BIT_XOR_OP: /* XOr (Integer0, Integer1, Result) */
1da177e4
LT
473
474 return (integer0 ^ integer1);
475
4be44fcd 476 case AML_MULTIPLY_OP: /* Multiply (Integer0, Integer1, Result) */
1da177e4
LT
477
478 return (integer0 * integer1);
479
4be44fcd 480 case AML_SHIFT_LEFT_OP: /* shift_left (Operand, shift_count, Result) */
1da177e4 481
4119532c
BM
482 /*
483 * We need to check if the shiftcount is larger than the integer bit
484 * width since the behavior of this is not well-defined in the C language.
485 */
486 if (integer1 >= acpi_gbl_integer_bit_width) {
487 return (0);
488 }
1da177e4
LT
489 return (integer0 << integer1);
490
4be44fcd 491 case AML_SHIFT_RIGHT_OP: /* shift_right (Operand, shift_count, Result) */
1da177e4 492
4119532c
BM
493 /*
494 * We need to check if the shiftcount is larger than the integer bit
495 * width since the behavior of this is not well-defined in the C language.
496 */
497 if (integer1 >= acpi_gbl_integer_bit_width) {
498 return (0);
499 }
1da177e4
LT
500 return (integer0 >> integer1);
501
4be44fcd 502 case AML_SUBTRACT_OP: /* Subtract (Integer0, Integer1, Result) */
1da177e4
LT
503
504 return (integer0 - integer1);
505
506 default:
507
508 return (0);
509 }
510}
511
1da177e4
LT
512/*******************************************************************************
513 *
514 * FUNCTION: acpi_ex_do_logical_numeric_op
515 *
ba494bee
BM
516 * PARAMETERS: opcode - AML opcode
517 * integer0 - Integer operand #0
518 * integer1 - Integer operand #1
1da177e4
LT
519 * logical_result - TRUE/FALSE result of the operation
520 *
521 * RETURN: Status
522 *
523 * DESCRIPTION: Execute a logical "Numeric" AML opcode. For these Numeric
524 * operators (LAnd and LOr), both operands must be integers.
525 *
526 * Note: cleanest machine code seems to be produced by the code
527 * below, rather than using statements of the form:
528 * Result = (Integer0 && Integer1);
529 *
530 ******************************************************************************/
531
532acpi_status
4be44fcd 533acpi_ex_do_logical_numeric_op(u16 opcode,
5df7e6cb 534 u64 integer0, u64 integer1, u8 *logical_result)
1da177e4 535{
4be44fcd
LB
536 acpi_status status = AE_OK;
537 u8 local_result = FALSE;
1da177e4 538
b229cf92 539 ACPI_FUNCTION_TRACE(ex_do_logical_numeric_op);
1da177e4
LT
540
541 switch (opcode) {
4be44fcd 542 case AML_LAND_OP: /* LAnd (Integer0, Integer1) */
1da177e4
LT
543
544 if (integer0 && integer1) {
545 local_result = TRUE;
546 }
547 break;
548
4be44fcd 549 case AML_LOR_OP: /* LOr (Integer0, Integer1) */
1da177e4
LT
550
551 if (integer0 || integer1) {
552 local_result = TRUE;
553 }
554 break;
555
556 default:
1d1ea1b7 557
1da177e4
LT
558 status = AE_AML_INTERNAL;
559 break;
560 }
561
562 /* Return the logical result and status */
563
564 *logical_result = local_result;
4be44fcd 565 return_ACPI_STATUS(status);
1da177e4
LT
566}
567
1da177e4
LT
568/*******************************************************************************
569 *
570 * FUNCTION: acpi_ex_do_logical_op
571 *
ba494bee
BM
572 * PARAMETERS: opcode - AML opcode
573 * operand0 - operand #0
574 * operand1 - operand #1
1da177e4
LT
575 * logical_result - TRUE/FALSE result of the operation
576 *
577 * RETURN: Status
578 *
579 * DESCRIPTION: Execute a logical AML opcode. The purpose of having all of the
580 * functions here is to prevent a lot of pointer dereferencing
581 * to obtain the operands and to simplify the generation of the
582 * logical value. For the Numeric operators (LAnd and LOr), both
583 * operands must be integers. For the other logical operators,
584 * operands can be any combination of Integer/String/Buffer. The
585 * first operand determines the type to which the second operand
586 * will be converted.
587 *
588 * Note: cleanest machine code seems to be produced by the code
589 * below, rather than using statements of the form:
590 * Result = (Operand0 == Operand1);
591 *
592 ******************************************************************************/
593
594acpi_status
4be44fcd
LB
595acpi_ex_do_logical_op(u16 opcode,
596 union acpi_operand_object *operand0,
597 union acpi_operand_object *operand1, u8 * logical_result)
1da177e4 598{
4be44fcd 599 union acpi_operand_object *local_operand1 = operand1;
5df7e6cb
BM
600 u64 integer0;
601 u64 integer1;
4be44fcd
LB
602 u32 length0;
603 u32 length1;
604 acpi_status status = AE_OK;
605 u8 local_result = FALSE;
606 int compare;
1da177e4 607
b229cf92 608 ACPI_FUNCTION_TRACE(ex_do_logical_op);
1da177e4
LT
609
610 /*
73a3090a 611 * Convert the second operand if necessary. The first operand
1da177e4
LT
612 * determines the type of the second operand, (See the Data Types
613 * section of the ACPI 3.0+ specification.) Both object types are
614 * guaranteed to be either Integer/String/Buffer by the operand
615 * resolution mechanism.
616 */
3371c19c 617 switch (operand0->common.type) {
1da177e4 618 case ACPI_TYPE_INTEGER:
1d1ea1b7 619
4be44fcd
LB
620 status =
621 acpi_ex_convert_to_integer(operand1, &local_operand1, 16);
1da177e4
LT
622 break;
623
624 case ACPI_TYPE_STRING:
1d1ea1b7 625
1fad8738
BM
626 status =
627 acpi_ex_convert_to_string(operand1, &local_operand1,
628 ACPI_IMPLICIT_CONVERT_HEX);
1da177e4
LT
629 break;
630
631 case ACPI_TYPE_BUFFER:
1d1ea1b7 632
4be44fcd 633 status = acpi_ex_convert_to_buffer(operand1, &local_operand1);
1da177e4
LT
634 break;
635
636 default:
1d1ea1b7 637
1da177e4
LT
638 status = AE_AML_INTERNAL;
639 break;
640 }
641
4be44fcd 642 if (ACPI_FAILURE(status)) {
1da177e4
LT
643 goto cleanup;
644 }
645
646 /*
647 * Two cases: 1) Both Integers, 2) Both Strings or Buffers
648 */
3371c19c 649 if (operand0->common.type == ACPI_TYPE_INTEGER) {
1da177e4
LT
650 /*
651 * 1) Both operands are of type integer
652 * Note: local_operand1 may have changed above
653 */
654 integer0 = operand0->integer.value;
655 integer1 = local_operand1->integer.value;
656
657 switch (opcode) {
4be44fcd 658 case AML_LEQUAL_OP: /* LEqual (Operand0, Operand1) */
1da177e4
LT
659
660 if (integer0 == integer1) {
661 local_result = TRUE;
662 }
663 break;
664
4be44fcd 665 case AML_LGREATER_OP: /* LGreater (Operand0, Operand1) */
1da177e4
LT
666
667 if (integer0 > integer1) {
668 local_result = TRUE;
669 }
670 break;
671
4be44fcd 672 case AML_LLESS_OP: /* LLess (Operand0, Operand1) */
1da177e4
LT
673
674 if (integer0 < integer1) {
675 local_result = TRUE;
676 }
677 break;
678
679 default:
1d1ea1b7 680
1da177e4
LT
681 status = AE_AML_INTERNAL;
682 break;
683 }
4be44fcd 684 } else {
1da177e4
LT
685 /*
686 * 2) Both operands are Strings or both are Buffers
687 * Note: Code below takes advantage of common Buffer/String
688 * object fields. local_operand1 may have changed above. Use
689 * memcmp to handle nulls in buffers.
690 */
691 length0 = operand0->buffer.length;
692 length1 = local_operand1->buffer.length;
693
694 /* Lexicographic compare: compare the data bytes */
695
4fa4616e
BM
696 compare = memcmp(operand0->buffer.pointer,
697 local_operand1->buffer.pointer,
698 (length0 > length1) ? length1 : length0);
1da177e4
LT
699
700 switch (opcode) {
4be44fcd 701 case AML_LEQUAL_OP: /* LEqual (Operand0, Operand1) */
1da177e4
LT
702
703 /* Length and all bytes must be equal */
704
4be44fcd 705 if ((length0 == length1) && (compare == 0)) {
52fc0b02 706
1da177e4
LT
707 /* Length and all bytes match ==> TRUE */
708
709 local_result = TRUE;
710 }
711 break;
712
4be44fcd 713 case AML_LGREATER_OP: /* LGreater (Operand0, Operand1) */
1da177e4
LT
714
715 if (compare > 0) {
716 local_result = TRUE;
4be44fcd 717 goto cleanup; /* TRUE */
1da177e4
LT
718 }
719 if (compare < 0) {
4be44fcd 720 goto cleanup; /* FALSE */
1da177e4
LT
721 }
722
723 /* Bytes match (to shortest length), compare lengths */
724
725 if (length0 > length1) {
726 local_result = TRUE;
727 }
728 break;
729
4be44fcd 730 case AML_LLESS_OP: /* LLess (Operand0, Operand1) */
1da177e4
LT
731
732 if (compare > 0) {
4be44fcd 733 goto cleanup; /* FALSE */
1da177e4
LT
734 }
735 if (compare < 0) {
736 local_result = TRUE;
4be44fcd 737 goto cleanup; /* TRUE */
1da177e4
LT
738 }
739
740 /* Bytes match (to shortest length), compare lengths */
741
742 if (length0 < length1) {
743 local_result = TRUE;
744 }
745 break;
746
747 default:
1d1ea1b7 748
1da177e4
LT
749 status = AE_AML_INTERNAL;
750 break;
751 }
752 }
753
10622bf8 754cleanup:
1da177e4
LT
755
756 /* New object was created if implicit conversion performed - delete */
757
758 if (local_operand1 != operand1) {
4be44fcd 759 acpi_ut_remove_reference(local_operand1);
1da177e4
LT
760 }
761
762 /* Return the logical result and status */
763
764 *logical_result = local_result;
4be44fcd 765 return_ACPI_STATUS(status);
1da177e4 766}
This page took 0.859173 seconds and 5 git commands to generate.