Sync ACPICA with Intel's version 20170224.
[dragonfly.git] / sys / contrib / dev / acpica / source / components / executer / exmisc.c
blob80d420cb87df8c8e654d7c83f28582cd85f53edd
1 /******************************************************************************
3 * Module Name: exmisc - ACPI AML (p-code) execution - specific opcodes
5 *****************************************************************************/
7 /*
8 * Copyright (C) 2000 - 2017, Intel Corp.
9 * All rights reserved.
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.
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.
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.
44 #include "acpi.h"
45 #include "accommon.h"
46 #include "acinterp.h"
47 #include "amlcode.h"
50 #define _COMPONENT ACPI_EXECUTER
51 ACPI_MODULE_NAME ("exmisc")
54 /*******************************************************************************
56 * FUNCTION: AcpiExGetObjectReference
58 * PARAMETERS: ObjDesc - Create a reference to this object
59 * ReturnDesc - Where to store the reference
60 * WalkState - Current state
62 * RETURN: Status
64 * DESCRIPTION: Obtain and return a "reference" to the target object
65 * Common code for the RefOfOp and the CondRefOfOp.
67 ******************************************************************************/
69 ACPI_STATUS
70 AcpiExGetObjectReference (
71 ACPI_OPERAND_OBJECT *ObjDesc,
72 ACPI_OPERAND_OBJECT **ReturnDesc,
73 ACPI_WALK_STATE *WalkState)
75 ACPI_OPERAND_OBJECT *ReferenceObj;
76 ACPI_OPERAND_OBJECT *ReferencedObj;
79 ACPI_FUNCTION_TRACE_PTR (ExGetObjectReference, ObjDesc);
82 *ReturnDesc = NULL;
84 switch (ACPI_GET_DESCRIPTOR_TYPE (ObjDesc))
86 case ACPI_DESC_TYPE_OPERAND:
88 if (ObjDesc->Common.Type != ACPI_TYPE_LOCAL_REFERENCE)
90 return_ACPI_STATUS (AE_AML_OPERAND_TYPE);
94 * Must be a reference to a Local or Arg
96 switch (ObjDesc->Reference.Class)
98 case ACPI_REFCLASS_LOCAL:
99 case ACPI_REFCLASS_ARG:
100 case ACPI_REFCLASS_DEBUG:
102 /* The referenced object is the pseudo-node for the local/arg */
104 ReferencedObj = ObjDesc->Reference.Object;
105 break;
107 default:
109 ACPI_ERROR ((AE_INFO, "Invalid Reference Class 0x%2.2X",
110 ObjDesc->Reference.Class));
111 return_ACPI_STATUS (AE_AML_OPERAND_TYPE);
113 break;
115 case ACPI_DESC_TYPE_NAMED:
117 * A named reference that has already been resolved to a Node
119 ReferencedObj = ObjDesc;
120 break;
122 default:
124 ACPI_ERROR ((AE_INFO, "Invalid descriptor type 0x%X",
125 ACPI_GET_DESCRIPTOR_TYPE (ObjDesc)));
126 return_ACPI_STATUS (AE_TYPE);
130 /* Create a new reference object */
132 ReferenceObj = AcpiUtCreateInternalObject (ACPI_TYPE_LOCAL_REFERENCE);
133 if (!ReferenceObj)
135 return_ACPI_STATUS (AE_NO_MEMORY);
138 ReferenceObj->Reference.Class = ACPI_REFCLASS_REFOF;
139 ReferenceObj->Reference.Object = ReferencedObj;
140 *ReturnDesc = ReferenceObj;
142 ACPI_DEBUG_PRINT ((ACPI_DB_EXEC,
143 "Object %p Type [%s], returning Reference %p\n",
144 ObjDesc, AcpiUtGetObjectTypeName (ObjDesc), *ReturnDesc));
146 return_ACPI_STATUS (AE_OK);
150 /*******************************************************************************
152 * FUNCTION: AcpiExDoMathOp
154 * PARAMETERS: Opcode - AML opcode
155 * Integer0 - Integer operand #0
156 * Integer1 - Integer operand #1
158 * RETURN: Integer result of the operation
160 * DESCRIPTION: Execute a math AML opcode. The purpose of having all of the
161 * math functions here is to prevent a lot of pointer dereferencing
162 * to obtain the operands.
164 ******************************************************************************/
166 UINT64
167 AcpiExDoMathOp (
168 UINT16 Opcode,
169 UINT64 Integer0,
170 UINT64 Integer1)
173 ACPI_FUNCTION_ENTRY ();
176 switch (Opcode)
178 case AML_ADD_OP: /* Add (Integer0, Integer1, Result) */
180 return (Integer0 + Integer1);
182 case AML_BIT_AND_OP: /* And (Integer0, Integer1, Result) */
184 return (Integer0 & Integer1);
186 case AML_BIT_NAND_OP: /* NAnd (Integer0, Integer1, Result) */
188 return (~(Integer0 & Integer1));
190 case AML_BIT_OR_OP: /* Or (Integer0, Integer1, Result) */
192 return (Integer0 | Integer1);
194 case AML_BIT_NOR_OP: /* NOr (Integer0, Integer1, Result) */
196 return (~(Integer0 | Integer1));
198 case AML_BIT_XOR_OP: /* XOr (Integer0, Integer1, Result) */
200 return (Integer0 ^ Integer1);
202 case AML_MULTIPLY_OP: /* Multiply (Integer0, Integer1, Result) */
204 return (Integer0 * Integer1);
206 case AML_SHIFT_LEFT_OP: /* ShiftLeft (Operand, ShiftCount, Result)*/
209 * We need to check if the shiftcount is larger than the integer bit
210 * width since the behavior of this is not well-defined in the C language.
212 if (Integer1 >= AcpiGbl_IntegerBitWidth)
214 return (0);
216 return (Integer0 << Integer1);
218 case AML_SHIFT_RIGHT_OP: /* ShiftRight (Operand, ShiftCount, Result) */
221 * We need to check if the shiftcount is larger than the integer bit
222 * width since the behavior of this is not well-defined in the C language.
224 if (Integer1 >= AcpiGbl_IntegerBitWidth)
226 return (0);
228 return (Integer0 >> Integer1);
230 case AML_SUBTRACT_OP: /* Subtract (Integer0, Integer1, Result) */
232 return (Integer0 - Integer1);
234 default:
236 return (0);
241 /*******************************************************************************
243 * FUNCTION: AcpiExDoLogicalNumericOp
245 * PARAMETERS: Opcode - AML opcode
246 * Integer0 - Integer operand #0
247 * Integer1 - Integer operand #1
248 * LogicalResult - TRUE/FALSE result of the operation
250 * RETURN: Status
252 * DESCRIPTION: Execute a logical "Numeric" AML opcode. For these Numeric
253 * operators (LAnd and LOr), both operands must be integers.
255 * Note: cleanest machine code seems to be produced by the code
256 * below, rather than using statements of the form:
257 * Result = (Integer0 && Integer1);
259 ******************************************************************************/
261 ACPI_STATUS
262 AcpiExDoLogicalNumericOp (
263 UINT16 Opcode,
264 UINT64 Integer0,
265 UINT64 Integer1,
266 BOOLEAN *LogicalResult)
268 ACPI_STATUS Status = AE_OK;
269 BOOLEAN LocalResult = FALSE;
272 ACPI_FUNCTION_TRACE (ExDoLogicalNumericOp);
275 switch (Opcode)
277 case AML_LOGICAL_AND_OP: /* LAnd (Integer0, Integer1) */
279 if (Integer0 && Integer1)
281 LocalResult = TRUE;
283 break;
285 case AML_LOGICAL_OR_OP: /* LOr (Integer0, Integer1) */
287 if (Integer0 || Integer1)
289 LocalResult = TRUE;
291 break;
293 default:
295 Status = AE_AML_INTERNAL;
296 break;
299 /* Return the logical result and status */
301 *LogicalResult = LocalResult;
302 return_ACPI_STATUS (Status);
306 /*******************************************************************************
308 * FUNCTION: AcpiExDoLogicalOp
310 * PARAMETERS: Opcode - AML opcode
311 * Operand0 - operand #0
312 * Operand1 - operand #1
313 * LogicalResult - TRUE/FALSE result of the operation
315 * RETURN: Status
317 * DESCRIPTION: Execute a logical AML opcode. The purpose of having all of the
318 * functions here is to prevent a lot of pointer dereferencing
319 * to obtain the operands and to simplify the generation of the
320 * logical value. For the Numeric operators (LAnd and LOr), both
321 * operands must be integers. For the other logical operators,
322 * operands can be any combination of Integer/String/Buffer. The
323 * first operand determines the type to which the second operand
324 * will be converted.
326 * Note: cleanest machine code seems to be produced by the code
327 * below, rather than using statements of the form:
328 * Result = (Operand0 == Operand1);
330 ******************************************************************************/
332 ACPI_STATUS
333 AcpiExDoLogicalOp (
334 UINT16 Opcode,
335 ACPI_OPERAND_OBJECT *Operand0,
336 ACPI_OPERAND_OBJECT *Operand1,
337 BOOLEAN *LogicalResult)
339 ACPI_OPERAND_OBJECT *LocalOperand1 = Operand1;
340 UINT64 Integer0;
341 UINT64 Integer1;
342 UINT32 Length0;
343 UINT32 Length1;
344 ACPI_STATUS Status = AE_OK;
345 BOOLEAN LocalResult = FALSE;
346 int Compare;
349 ACPI_FUNCTION_TRACE (ExDoLogicalOp);
353 * Convert the second operand if necessary. The first operand
354 * determines the type of the second operand, (See the Data Types
355 * section of the ACPI 3.0+ specification.) Both object types are
356 * guaranteed to be either Integer/String/Buffer by the operand
357 * resolution mechanism.
359 switch (Operand0->Common.Type)
361 case ACPI_TYPE_INTEGER:
363 Status = AcpiExConvertToInteger (Operand1, &LocalOperand1,
364 ACPI_STRTOUL_BASE16);
365 break;
367 case ACPI_TYPE_STRING:
369 Status = AcpiExConvertToString (
370 Operand1, &LocalOperand1, ACPI_IMPLICIT_CONVERT_HEX);
371 break;
373 case ACPI_TYPE_BUFFER:
375 Status = AcpiExConvertToBuffer (Operand1, &LocalOperand1);
376 break;
378 default:
380 Status = AE_AML_INTERNAL;
381 break;
384 if (ACPI_FAILURE (Status))
386 goto Cleanup;
390 * Two cases: 1) Both Integers, 2) Both Strings or Buffers
392 if (Operand0->Common.Type == ACPI_TYPE_INTEGER)
395 * 1) Both operands are of type integer
396 * Note: LocalOperand1 may have changed above
398 Integer0 = Operand0->Integer.Value;
399 Integer1 = LocalOperand1->Integer.Value;
401 switch (Opcode)
403 case AML_LOGICAL_EQUAL_OP: /* LEqual (Operand0, Operand1) */
405 if (Integer0 == Integer1)
407 LocalResult = TRUE;
409 break;
411 case AML_LOGICAL_GREATER_OP: /* LGreater (Operand0, Operand1) */
413 if (Integer0 > Integer1)
415 LocalResult = TRUE;
417 break;
419 case AML_LOGICAL_LESS_OP: /* LLess (Operand0, Operand1) */
421 if (Integer0 < Integer1)
423 LocalResult = TRUE;
425 break;
427 default:
429 Status = AE_AML_INTERNAL;
430 break;
433 else
436 * 2) Both operands are Strings or both are Buffers
437 * Note: Code below takes advantage of common Buffer/String
438 * object fields. LocalOperand1 may have changed above. Use
439 * memcmp to handle nulls in buffers.
441 Length0 = Operand0->Buffer.Length;
442 Length1 = LocalOperand1->Buffer.Length;
444 /* Lexicographic compare: compare the data bytes */
446 Compare = memcmp (Operand0->Buffer.Pointer,
447 LocalOperand1->Buffer.Pointer,
448 (Length0 > Length1) ? Length1 : Length0);
450 switch (Opcode)
452 case AML_LOGICAL_EQUAL_OP: /* LEqual (Operand0, Operand1) */
454 /* Length and all bytes must be equal */
456 if ((Length0 == Length1) &&
457 (Compare == 0))
459 /* Length and all bytes match ==> TRUE */
461 LocalResult = TRUE;
463 break;
465 case AML_LOGICAL_GREATER_OP: /* LGreater (Operand0, Operand1) */
467 if (Compare > 0)
469 LocalResult = TRUE;
470 goto Cleanup; /* TRUE */
472 if (Compare < 0)
474 goto Cleanup; /* FALSE */
477 /* Bytes match (to shortest length), compare lengths */
479 if (Length0 > Length1)
481 LocalResult = TRUE;
483 break;
485 case AML_LOGICAL_LESS_OP: /* LLess (Operand0, Operand1) */
487 if (Compare > 0)
489 goto Cleanup; /* FALSE */
491 if (Compare < 0)
493 LocalResult = TRUE;
494 goto Cleanup; /* TRUE */
497 /* Bytes match (to shortest length), compare lengths */
499 if (Length0 < Length1)
501 LocalResult = TRUE;
503 break;
505 default:
507 Status = AE_AML_INTERNAL;
508 break;
512 Cleanup:
514 /* New object was created if implicit conversion performed - delete */
516 if (LocalOperand1 != Operand1)
518 AcpiUtRemoveReference (LocalOperand1);
521 /* Return the logical result and status */
523 *LogicalResult = LocalResult;
524 return_ACPI_STATUS (Status);