Home | History | Annotate | Line # | Download | only in compiler
      1 /******************************************************************************
      2  *
      3  * Module Name: dtutils.c - Utility routines for the data table compiler
      4  *
      5  *****************************************************************************/
      6 
      7 /******************************************************************************
      8  *
      9  * 1. Copyright Notice
     10  *
     11  * Some or all of this work - Copyright (c) 1999 - 2025, Intel Corp.
     12  * All rights reserved.
     13  *
     14  * 2. License
     15  *
     16  * 2.1. This is your license from Intel Corp. under its intellectual property
     17  * rights. You may have additional license terms from the party that provided
     18  * you this software, covering your right to use that party's intellectual
     19  * property rights.
     20  *
     21  * 2.2. Intel grants, free of charge, to any person ("Licensee") obtaining a
     22  * copy of the source code appearing in this file ("Covered Code") an
     23  * irrevocable, perpetual, worldwide license under Intel's copyrights in the
     24  * base code distributed originally by Intel ("Original Intel Code") to copy,
     25  * make derivatives, distribute, use and display any portion of the Covered
     26  * Code in any form, with the right to sublicense such rights; and
     27  *
     28  * 2.3. Intel grants Licensee a non-exclusive and non-transferable patent
     29  * license (with the right to sublicense), under only those claims of Intel
     30  * patents that are infringed by the Original Intel Code, to make, use, sell,
     31  * offer to sell, and import the Covered Code and derivative works thereof
     32  * solely to the minimum extent necessary to exercise the above copyright
     33  * license, and in no event shall the patent license extend to any additions
     34  * to or modifications of the Original Intel Code. No other license or right
     35  * is granted directly or by implication, estoppel or otherwise;
     36  *
     37  * The above copyright and patent license is granted only if the following
     38  * conditions are met:
     39  *
     40  * 3. Conditions
     41  *
     42  * 3.1. Redistribution of Source with Rights to Further Distribute Source.
     43  * Redistribution of source code of any substantial portion of the Covered
     44  * Code or modification with rights to further distribute source must include
     45  * the above Copyright Notice, the above License, this list of Conditions,
     46  * and the following Disclaimer and Export Compliance provision. In addition,
     47  * Licensee must cause all Covered Code to which Licensee contributes to
     48  * contain a file documenting the changes Licensee made to create that Covered
     49  * Code and the date of any change. Licensee must include in that file the
     50  * documentation of any changes made by any predecessor Licensee. Licensee
     51  * must include a prominent statement that the modification is derived,
     52  * directly or indirectly, from Original Intel Code.
     53  *
     54  * 3.2. Redistribution of Source with no Rights to Further Distribute Source.
     55  * Redistribution of source code of any substantial portion of the Covered
     56  * Code or modification without rights to further distribute source must
     57  * include the following Disclaimer and Export Compliance provision in the
     58  * documentation and/or other materials provided with distribution. In
     59  * addition, Licensee may not authorize further sublicense of source of any
     60  * portion of the Covered Code, and must include terms to the effect that the
     61  * license from Licensee to its licensee is limited to the intellectual
     62  * property embodied in the software Licensee provides to its licensee, and
     63  * not to intellectual property embodied in modifications its licensee may
     64  * make.
     65  *
     66  * 3.3. Redistribution of Executable. Redistribution in executable form of any
     67  * substantial portion of the Covered Code or modification must reproduce the
     68  * above Copyright Notice, and the following Disclaimer and Export Compliance
     69  * provision in the documentation and/or other materials provided with the
     70  * distribution.
     71  *
     72  * 3.4. Intel retains all right, title, and interest in and to the Original
     73  * Intel Code.
     74  *
     75  * 3.5. Neither the name Intel nor any other trademark owned or controlled by
     76  * Intel shall be used in advertising or otherwise to promote the sale, use or
     77  * other dealings in products derived from or relating to the Covered Code
     78  * without prior written authorization from Intel.
     79  *
     80  * 4. Disclaimer and Export Compliance
     81  *
     82  * 4.1. INTEL MAKES NO WARRANTY OF ANY KIND REGARDING ANY SOFTWARE PROVIDED
     83  * HERE. ANY SOFTWARE ORIGINATING FROM INTEL OR DERIVED FROM INTEL SOFTWARE
     84  * IS PROVIDED "AS IS," AND INTEL WILL NOT PROVIDE ANY SUPPORT, ASSISTANCE,
     85  * INSTALLATION, TRAINING OR OTHER SERVICES. INTEL WILL NOT PROVIDE ANY
     86  * UPDATES, ENHANCEMENTS OR EXTENSIONS. INTEL SPECIFICALLY DISCLAIMS ANY
     87  * IMPLIED WARRANTIES OF MERCHANTABILITY, NONINFRINGEMENT AND FITNESS FOR A
     88  * PARTICULAR PURPOSE.
     89  *
     90  * 4.2. IN NO EVENT SHALL INTEL HAVE ANY LIABILITY TO LICENSEE, ITS LICENSEES
     91  * OR ANY OTHER THIRD PARTY, FOR ANY LOST PROFITS, LOST DATA, LOSS OF USE OR
     92  * COSTS OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, OR FOR ANY INDIRECT,
     93  * SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THIS AGREEMENT, UNDER ANY
     94  * CAUSE OF ACTION OR THEORY OF LIABILITY, AND IRRESPECTIVE OF WHETHER INTEL
     95  * HAS ADVANCE NOTICE OF THE POSSIBILITY OF SUCH DAMAGES. THESE LIMITATIONS
     96  * SHALL APPLY NOTWITHSTANDING THE FAILURE OF THE ESSENTIAL PURPOSE OF ANY
     97  * LIMITED REMEDY.
     98  *
     99  * 4.3. Licensee shall not export, either directly or indirectly, any of this
    100  * software or system incorporating such software without first obtaining any
    101  * required license or other approval from the U. S. Department of Commerce or
    102  * any other agency or department of the United States Government. In the
    103  * event Licensee exports any such software from the United States or
    104  * re-exports any such software from a foreign destination, Licensee shall
    105  * ensure that the distribution and export/re-export of the software is in
    106  * compliance with all laws, regulations, orders, or other restrictions of the
    107  * U.S. Export Administration Regulations. Licensee agrees that neither it nor
    108  * any of its subsidiaries will export/re-export any technical data, process,
    109  * software, or service, directly or indirectly, to any country for which the
    110  * United States government or any agency thereof requires an export license,
    111  * other governmental approval, or letter of assurance, without first obtaining
    112  * such license, approval or letter.
    113  *
    114  *****************************************************************************
    115  *
    116  * Alternatively, you may choose to be licensed under the terms of the
    117  * following license:
    118  *
    119  * Redistribution and use in source and binary forms, with or without
    120  * modification, are permitted provided that the following conditions
    121  * are met:
    122  * 1. Redistributions of source code must retain the above copyright
    123  *    notice, this list of conditions, and the following disclaimer,
    124  *    without modification.
    125  * 2. Redistributions in binary form must reproduce at minimum a disclaimer
    126  *    substantially similar to the "NO WARRANTY" disclaimer below
    127  *    ("Disclaimer") and any redistribution must be conditioned upon
    128  *    including a substantially similar Disclaimer requirement for further
    129  *    binary redistribution.
    130  * 3. Neither the names of the above-listed copyright holders nor the names
    131  *    of any contributors may be used to endorse or promote products derived
    132  *    from this software without specific prior written permission.
    133  *
    134  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
    135  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
    136  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
    137  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
    138  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
    139  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
    140  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
    141  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
    142  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    143  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
    144  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    145  *
    146  * Alternatively, you may choose to be licensed under the terms of the
    147  * GNU General Public License ("GPL") version 2 as published by the Free
    148  * Software Foundation.
    149  *
    150  *****************************************************************************/
    151 
    152 #include "aslcompiler.h"
    153 #include "actables.h"
    154 
    155 #define _COMPONENT          DT_COMPILER
    156         ACPI_MODULE_NAME    ("dtutils")
    157 
    158 /* Local prototypes */
    159 
    160 static void
    161 DtSum (
    162     DT_SUBTABLE             *Subtable,
    163     void                    *Context,
    164     void                    *ReturnValue);
    165 
    166 
    167 /******************************************************************************
    168  *
    169  * FUNCTION:    DtError
    170  *
    171  * PARAMETERS:  Level               - Seriousness (Warning/error, etc.)
    172  *              MessageId           - Index into global message buffer
    173  *              Op                  - Parse node where error happened
    174  *              ExtraMessage        - additional error message
    175  *
    176  * RETURN:      None
    177  *
    178  * DESCRIPTION: Common error interface for data table compiler
    179  *
    180  *****************************************************************************/
    181 
    182 void
    183 DtError (
    184     UINT8                   Level,
    185     UINT16                  MessageId,
    186     DT_FIELD                *FieldObject,
    187     char                    *ExtraMessage)
    188 {
    189     UINT32                  Line = 0;
    190 
    191 
    192     /* Field object could be NULL */
    193 
    194     if (FieldObject)
    195     {
    196         Line = FieldObject->Line;
    197     }
    198 
    199     /* Check if user wants to ignore this exception */
    200 
    201     if (AslIsExceptionIgnored (AslGbl_Files[ASL_FILE_INPUT].Filename,
    202         Line, Level, MessageId))
    203     {
    204         return;
    205     }
    206 
    207     if (FieldObject)
    208     {
    209         AslCommonError (Level, MessageId,
    210             FieldObject->Line,
    211             FieldObject->Line,
    212             FieldObject->ByteOffset,
    213             FieldObject->Column,
    214             AslGbl_Files[ASL_FILE_INPUT].Filename, ExtraMessage);
    215     }
    216     else
    217     {
    218         AslCommonError (Level, MessageId, 0,
    219             0, 0, 0, 0, ExtraMessage);
    220     }
    221 }
    222 
    223 
    224 /******************************************************************************
    225  *
    226  * FUNCTION:    DtNameError
    227  *
    228  * PARAMETERS:  Level               - Seriousness (Warning/error, etc.)
    229  *              MessageId           - Index into global message buffer
    230  *              Op                  - Parse node where error happened
    231  *              ExtraMessage        - additional error message
    232  *
    233  * RETURN:      None
    234  *
    235  * DESCRIPTION: Error interface for named objects
    236  *
    237  *****************************************************************************/
    238 
    239 void
    240 DtNameError (
    241     UINT8                   Level,
    242     UINT16                  MessageId,
    243     DT_FIELD                *FieldObject,
    244     char                    *ExtraMessage)
    245 {
    246 
    247     switch (Level)
    248     {
    249     case ASL_WARNING2:
    250     case ASL_WARNING3:
    251 
    252         if (AslGbl_WarningLevel < Level)
    253         {
    254             return;
    255         }
    256         break;
    257 
    258     default:
    259 
    260         break;
    261     }
    262 
    263     if (FieldObject)
    264     {
    265         AslCommonError (Level, MessageId,
    266             FieldObject->Line,
    267             FieldObject->Line,
    268             FieldObject->ByteOffset,
    269             FieldObject->NameColumn,
    270             AslGbl_Files[ASL_FILE_INPUT].Filename, ExtraMessage);
    271     }
    272     else
    273     {
    274         AslCommonError (Level, MessageId, 0,
    275             0, 0, 0, 0, ExtraMessage);
    276     }
    277 }
    278 
    279 
    280 /*******************************************************************************
    281  *
    282  * FUNCTION:    DtFatal
    283  *
    284  * PARAMETERS:  None
    285  *
    286  * RETURN:      None
    287  *
    288  * DESCRIPTION: Dump the error log and abort the compiler. Used for serious
    289  *              compile or I/O errors
    290  *
    291  ******************************************************************************/
    292 
    293 void
    294 DtFatal (
    295     UINT16                  MessageId,
    296     DT_FIELD                *FieldObject,
    297     char                    *ExtraMessage)
    298 {
    299 
    300     DtError (ASL_ERROR, MessageId, FieldObject, ExtraMessage);
    301 
    302 /*
    303  * TBD: remove this entire function, DtFatal
    304  *
    305  * We cannot abort the compiler on error, because we may be compiling a
    306  * list of files. We must move on to the next file.
    307  */
    308 #ifdef __OBSOLETE
    309     CmCleanupAndExit ();
    310     exit (1);
    311 #endif
    312 }
    313 
    314 
    315 /*******************************************************************************
    316  *
    317  * FUNCTION:    DtDoConstant
    318  *
    319  * PARAMETERS:  String              - Only hex constants are supported,
    320  *                                    regardless of whether the 0x prefix
    321  *                                    is used
    322  *
    323  * RETURN:      Converted Integer
    324  *
    325  * DESCRIPTION: Convert a string to an integer, with overflow/error checking.
    326  *
    327  ******************************************************************************/
    328 
    329 UINT64
    330 DtDoConstant (
    331     char                    *String)
    332 {
    333     UINT64                  ConvertedInteger;
    334 
    335 
    336     /*
    337      * TBD: The ImplicitStrtoul64 function does not report overflow
    338      * conditions. The input string is simply truncated. If it is
    339      * desired to report overflow to the table compiler, this should
    340      * somehow be added here. Note: integers that are prefixed with 0x
    341      * or not are both hex integers.
    342      */
    343     ConvertedInteger = AcpiUtImplicitStrtoul64 (String);
    344     return (ConvertedInteger);
    345 }
    346 
    347 /******************************************************************************
    348  *
    349  * FUNCTION:    DtGetFieldValue
    350  *
    351  * PARAMETERS:  Field               - Current field list pointer
    352  *
    353  * RETURN:      Field value
    354  *
    355  * DESCRIPTION: Get field value
    356  *
    357  *****************************************************************************/
    358 
    359 char *
    360 DtGetFieldValue (
    361     DT_FIELD                *Field)
    362 {
    363     if (!Field)
    364     {
    365         return (NULL);
    366     }
    367 
    368     return (Field->Value);
    369 }
    370 
    371 
    372 /******************************************************************************
    373  *
    374  * FUNCTION:    DtGetFieldType
    375  *
    376  * PARAMETERS:  Info                - Data table info
    377  *
    378  * RETURN:      Field type
    379  *
    380  * DESCRIPTION: Get field type
    381  *
    382  *****************************************************************************/
    383 
    384 UINT8
    385 DtGetFieldType (
    386     ACPI_DMTABLE_INFO       *Info)
    387 {
    388     UINT8                   Type;
    389 
    390 
    391     /* DT_FLAG means that this is the start of a block of flag bits */
    392     /* TBD - we can make these a separate opcode later */
    393 
    394     if (Info->Flags & DT_FLAG)
    395     {
    396         return (DT_FIELD_TYPE_FLAGS_INTEGER);
    397     }
    398 
    399     /* Type is based upon the opcode for this field in the info table */
    400 
    401     switch (Info->Opcode)
    402     {
    403     case ACPI_DMT_FLAG0:
    404     case ACPI_DMT_FLAG1:
    405     case ACPI_DMT_FLAG2:
    406     case ACPI_DMT_FLAG3:
    407     case ACPI_DMT_FLAG4:
    408     case ACPI_DMT_FLAG5:
    409     case ACPI_DMT_FLAG6:
    410     case ACPI_DMT_FLAG7:
    411     case ACPI_DMT_FLAGS0:
    412     case ACPI_DMT_FLAGS1:
    413     case ACPI_DMT_FLAGS2:
    414     case ACPI_DMT_FLAGS8_2:
    415     case ACPI_DMT_FLAGS4:
    416     case ACPI_DMT_FLAGS4_0:
    417     case ACPI_DMT_FLAGS4_4:
    418     case ACPI_DMT_FLAGS4_8:
    419     case ACPI_DMT_FLAGS4_12:
    420     case ACPI_DMT_FLAGS16_16:
    421 
    422         Type = DT_FIELD_TYPE_FLAG;
    423         break;
    424 
    425     case ACPI_DMT_NAME4:
    426     case ACPI_DMT_SIG:
    427     case ACPI_DMT_NAME6:
    428     case ACPI_DMT_NAME8:
    429     case ACPI_DMT_STRING:
    430     case ACPI_DMT_IVRS_UNTERMINATED_STRING:
    431 
    432         Type = DT_FIELD_TYPE_STRING;
    433         break;
    434 
    435     case ACPI_DMT_BUFFER:
    436     case ACPI_DMT_RAW_BUFFER:
    437     case ACPI_DMT_BUF7:
    438     case ACPI_DMT_BUF10:
    439     case ACPI_DMT_BUF11:
    440     case ACPI_DMT_BUF12:
    441     case ACPI_DMT_BUF16:
    442     case ACPI_DMT_BUF18:
    443     case ACPI_DMT_BUF24:
    444     case ACPI_DMT_BUF26:
    445     case ACPI_DMT_BUF32:
    446     case ACPI_DMT_BUF112:
    447     case ACPI_DMT_BUF128:
    448     case ACPI_DMT_PCI_PATH:
    449     case ACPI_DMT_PMTT_VENDOR:
    450 
    451         Type = DT_FIELD_TYPE_BUFFER;
    452         break;
    453 
    454     case ACPI_DMT_GAS:
    455     case ACPI_DMT_HESTNTFY:
    456     case ACPI_DMT_IORTMEM:
    457 
    458         Type = DT_FIELD_TYPE_INLINE_SUBTABLE;
    459         break;
    460 
    461     case ACPI_DMT_UNICODE:
    462     case ACPI_DMT_WPBT_UNICODE:
    463 
    464         Type = DT_FIELD_TYPE_UNICODE;
    465         break;
    466 
    467     case ACPI_DMT_UUID:
    468 
    469         Type = DT_FIELD_TYPE_UUID;
    470         break;
    471 
    472     case ACPI_DMT_DEVICE_PATH:
    473 
    474         Type = DT_FIELD_TYPE_DEVICE_PATH;
    475         break;
    476 
    477     case ACPI_DMT_LABEL:
    478 
    479         Type = DT_FIELD_TYPE_LABEL;
    480         break;
    481 
    482     default:
    483 
    484         Type = DT_FIELD_TYPE_INTEGER;
    485         break;
    486     }
    487 
    488     return (Type);
    489 }
    490 
    491 
    492 /******************************************************************************
    493  *
    494  * FUNCTION:    DtGetBufferLength
    495  *
    496  * PARAMETERS:  Buffer              - List of integers,
    497  *                                    for example "10 3A 4F 2E"
    498  *
    499  * RETURN:      Count of integer
    500  *
    501  * DESCRIPTION: Get length of bytes needed to store the integers
    502  *
    503  *****************************************************************************/
    504 
    505 UINT32
    506 DtGetBufferLength (
    507     char                    *Buffer)
    508 {
    509     UINT32                  ByteLength = 0;
    510 
    511 
    512     while (*Buffer)
    513     {
    514         if (*Buffer == ' ')
    515         {
    516             ByteLength++;
    517 
    518             while (*Buffer == ' ')
    519             {
    520                 Buffer++;
    521             }
    522         }
    523 
    524         Buffer++;
    525     }
    526 
    527     return (++ByteLength);
    528 }
    529 
    530 
    531 /******************************************************************************
    532  *
    533  * FUNCTION:    DtGetFieldLength
    534  *
    535  * PARAMETERS:  Field               - Current field
    536  *              Info                - Data table info
    537  *
    538  * RETURN:      Field length
    539  *
    540  * DESCRIPTION: Get length of bytes needed to compile the field
    541  *
    542  * Note: This function must remain in sync with AcpiDmDumpTable.
    543  *
    544  *****************************************************************************/
    545 
    546 UINT32
    547 DtGetFieldLength (
    548     DT_FIELD                *Field,
    549     ACPI_DMTABLE_INFO       *Info)
    550 {
    551     UINT32                  ByteLength = 0;
    552     char                    *Value;
    553 
    554 
    555     /* Length is based upon the opcode for this field in the info table */
    556 
    557     switch (Info->Opcode)
    558     {
    559     case ACPI_DMT_FLAG0:
    560     case ACPI_DMT_FLAG1:
    561     case ACPI_DMT_FLAG2:
    562     case ACPI_DMT_FLAG3:
    563     case ACPI_DMT_FLAG4:
    564     case ACPI_DMT_FLAG5:
    565     case ACPI_DMT_FLAG6:
    566     case ACPI_DMT_FLAG7:
    567     case ACPI_DMT_FLAGS0:
    568     case ACPI_DMT_FLAGS1:
    569     case ACPI_DMT_FLAGS2:
    570     case ACPI_DMT_FLAGS8_2:
    571     case ACPI_DMT_FLAGS4:
    572     case ACPI_DMT_FLAGS4_0:
    573     case ACPI_DMT_FLAGS4_4:
    574     case ACPI_DMT_FLAGS4_8:
    575     case ACPI_DMT_FLAGS4_12:
    576     case ACPI_DMT_FLAGS16_16:
    577     case ACPI_DMT_LABEL:
    578     case ACPI_DMT_EXTRA_TEXT:
    579 
    580         ByteLength = 0;
    581         break;
    582 
    583     case ACPI_DMT_UINT8:
    584     case ACPI_DMT_CHKSUM:
    585     case ACPI_DMT_SPACEID:
    586     case ACPI_DMT_ACCWIDTH:
    587     case ACPI_DMT_CEDT:
    588     case ACPI_DMT_IVRS:
    589     case ACPI_DMT_IVRS_DE:
    590     case ACPI_DMT_GTDT:
    591     case ACPI_DMT_MADT:
    592     case ACPI_DMT_MPAM_LOCATOR:
    593     case ACPI_DMT_NHLT1:
    594     case ACPI_DMT_NHLT1a:
    595     case ACPI_DMT_NHLT1b:
    596     case ACPI_DMT_NHLT1c:
    597     case ACPI_DMT_NHLT1d:
    598     case ACPI_DMT_NHLT1f:
    599     case ACPI_DMT_PCCT:
    600     case ACPI_DMT_PMTT:
    601     case ACPI_DMT_PPTT:
    602     case ACPI_DMT_RGRT:
    603     case ACPI_DMT_SDEV:
    604     case ACPI_DMT_SRAT:
    605     case ACPI_DMT_AEST:
    606     case ACPI_DMT_AEST_RES:
    607     case ACPI_DMT_AEST_XFACE:
    608     case ACPI_DMT_AEST_XRUPT:
    609     case ACPI_DMT_ASF:
    610     case ACPI_DMT_CDAT:
    611     case ACPI_DMT_HESTNTYP:
    612     case ACPI_DMT_FADTPM:
    613     case ACPI_DMT_EINJACT:
    614     case ACPI_DMT_EINJINST:
    615     case ACPI_DMT_ERSTACT:
    616     case ACPI_DMT_ERSTINST:
    617     case ACPI_DMT_DMAR_SCOPE:
    618     case ACPI_DMT_VIOT:
    619 
    620         ByteLength = 1;
    621         break;
    622 
    623     case ACPI_DMT_ASPT:
    624     case ACPI_DMT_UINT16:
    625     case ACPI_DMT_DMAR:
    626     case ACPI_DMT_ERDT:
    627     case ACPI_DMT_HEST:
    628     case ACPI_DMT_HMAT:
    629     case ACPI_DMT_NFIT:
    630     case ACPI_DMT_NHLT1e:
    631     case ACPI_DMT_PCI_PATH:
    632     case ACPI_DMT_PHAT:
    633     case ACPI_DMT_RHCT:
    634 
    635         ByteLength = 2;
    636         break;
    637 
    638     case ACPI_DMT_UINT24:
    639 
    640         ByteLength = 3;
    641         break;
    642 
    643     case ACPI_DMT_UINT32:
    644     case ACPI_DMT_AEST_CACHE:
    645     case ACPI_DMT_AEST_GIC:
    646     case ACPI_DMT_NAME4:
    647     case ACPI_DMT_SIG:
    648     case ACPI_DMT_LPIT:
    649     case ACPI_DMT_TPM2:
    650 
    651         ByteLength = 4;
    652         break;
    653 
    654     case ACPI_DMT_UINT40:
    655 
    656         ByteLength = 5;
    657         break;
    658 
    659     case ACPI_DMT_UINT48:
    660     case ACPI_DMT_NAME6:
    661 
    662         ByteLength = 6;
    663         break;
    664 
    665     case ACPI_DMT_UINT56:
    666     case ACPI_DMT_BUF7:
    667 
    668         ByteLength = 7;
    669         break;
    670 
    671     case ACPI_DMT_UINT64:
    672     case ACPI_DMT_NAME8:
    673 
    674         ByteLength = 8;
    675         break;
    676 
    677     case ACPI_DMT_STRING:
    678 
    679         Value = DtGetFieldValue (Field);
    680         if (Value)
    681         {
    682             ByteLength = strlen (Value) + 1;
    683         }
    684         else
    685         {   /* At this point, this is a fatal error */
    686 
    687             snprintf (AslGbl_MsgBuffer, sizeof(AslGbl_MsgBuffer), "Expected \"%s\"", Info->Name);
    688             DtFatal (ASL_MSG_COMPILER_INTERNAL, NULL, AslGbl_MsgBuffer);
    689             return (0);
    690         }
    691         break;
    692 
    693     case ACPI_DMT_IVRS_UNTERMINATED_STRING:
    694 
    695         Value = DtGetFieldValue (Field);
    696         if (Value)
    697         {
    698             ByteLength = strlen (Value);
    699         }
    700         else
    701         {   /* At this point, this is a fatal error */
    702 
    703             snprintf (AslGbl_MsgBuffer, sizeof(AslGbl_MsgBuffer), "Expected \"%s\"", Info->Name);
    704             DtFatal (ASL_MSG_COMPILER_INTERNAL, NULL, AslGbl_MsgBuffer);
    705             return (0);
    706         }
    707         break;
    708 
    709     case ACPI_DMT_GAS:
    710 
    711         ByteLength = sizeof (ACPI_GENERIC_ADDRESS);
    712         break;
    713 
    714     case ACPI_DMT_HESTNTFY:
    715 
    716         ByteLength = sizeof (ACPI_HEST_NOTIFY);
    717         break;
    718 
    719     case ACPI_DMT_IORTMEM:
    720 
    721         ByteLength = sizeof (ACPI_IORT_MEMORY_ACCESS);
    722         break;
    723 
    724     case ACPI_DMT_BUFFER:
    725     case ACPI_DMT_RAW_BUFFER:
    726     case ACPI_DMT_PMTT_VENDOR:
    727 
    728         Value = DtGetFieldValue (Field);
    729         if (Value)
    730         {
    731             ByteLength = DtGetBufferLength (Value);
    732         }
    733         else
    734         {   /* At this point, this is a fatal error */
    735 
    736             snprintf (AslGbl_MsgBuffer, sizeof(AslGbl_MsgBuffer), "Expected \"%s\"", Info->Name);
    737             DtFatal (ASL_MSG_COMPILER_INTERNAL, NULL, AslGbl_MsgBuffer);
    738             return (0);
    739         }
    740         break;
    741 
    742     case ACPI_DMT_BUF10:
    743 
    744         ByteLength = 10;
    745         break;
    746 
    747     case ACPI_DMT_BUF11:
    748 
    749         ByteLength = 11;
    750         break;
    751 
    752     case ACPI_DMT_BUF12:
    753 
    754         ByteLength = 12;
    755         break;
    756 
    757     case ACPI_DMT_BUF16:
    758     case ACPI_DMT_UUID:
    759 
    760         ByteLength = 16;
    761         break;
    762 
    763     case ACPI_DMT_BUF18:
    764 
    765         ByteLength = 18;
    766         break;
    767 
    768     case ACPI_DMT_BUF24:
    769 
    770         ByteLength = 24;
    771         break;
    772 
    773     case ACPI_DMT_BUF26:
    774 
    775         ByteLength = 26;
    776         break;
    777 
    778     case ACPI_DMT_BUF32:
    779 
    780         ByteLength = 32;
    781         break;
    782 
    783     case ACPI_DMT_BUF112:
    784 
    785         ByteLength = 112;
    786         break;
    787 
    788     case ACPI_DMT_BUF128:
    789 
    790         ByteLength = 128;
    791         break;
    792 
    793     case ACPI_DMT_UNICODE:
    794     case ACPI_DMT_WPBT_UNICODE:
    795 
    796         Value = DtGetFieldValue (Field);
    797 
    798         /* TBD: error if Value is NULL? (as below?) */
    799 
    800         ByteLength = (strlen (Value) + 1) * sizeof (UINT16);
    801         break;
    802 
    803     default:
    804 
    805         DtFatal (ASL_MSG_COMPILER_INTERNAL, Field, "Invalid table opcode");
    806         return (0);
    807     }
    808 
    809     return (ByteLength);
    810 }
    811 
    812 
    813 /******************************************************************************
    814  *
    815  * FUNCTION:    DtSum
    816  *
    817  * PARAMETERS:  DT_WALK_CALLBACK:
    818  *              Subtable            - Subtable
    819  *              Context             - Unused
    820  *              ReturnValue         - Store the checksum of subtable
    821  *
    822  * RETURN:      Status
    823  *
    824  * DESCRIPTION: Get the checksum of subtable
    825  *
    826  *****************************************************************************/
    827 
    828 static void
    829 DtSum (
    830     DT_SUBTABLE             *Subtable,
    831     void                    *Context,
    832     void                    *ReturnValue)
    833 {
    834     UINT8                   Checksum;
    835     UINT8                   *Sum = ReturnValue;
    836 
    837 
    838     Checksum = AcpiUtChecksum (Subtable->Buffer, Subtable->Length);
    839     *Sum = (UINT8) (*Sum + Checksum);
    840 }
    841 
    842 
    843 /******************************************************************************
    844  *
    845  * FUNCTION:    DtSetTableChecksum
    846  *
    847  * PARAMETERS:  ChecksumPointer     - Where to return the checksum
    848  *
    849  * RETURN:      None
    850  *
    851  * DESCRIPTION: Set checksum of the whole data table into the checksum field
    852  *
    853  *****************************************************************************/
    854 
    855 void
    856 DtSetTableChecksum (
    857     UINT8                   *ChecksumPointer)
    858 {
    859     UINT8                   Checksum = 0;
    860     UINT8                   OldSum;
    861 
    862 
    863     DtWalkTableTree (AslGbl_RootTable, DtSum, NULL, &Checksum);
    864 
    865     OldSum = *ChecksumPointer;
    866     Checksum = (UINT8) (Checksum - OldSum);
    867 
    868     /* Compute the final checksum */
    869 
    870     Checksum = (UINT8) (0 - Checksum);
    871     *ChecksumPointer = Checksum;
    872 }
    873 
    874 
    875 /******************************************************************************
    876  *
    877  * FUNCTION:    DtSetTableLength
    878  *
    879  * PARAMETERS:  None
    880  *
    881  * RETURN:      None
    882  *
    883  * DESCRIPTION: Walk the subtables and set all the length fields
    884  *
    885  *****************************************************************************/
    886 
    887 void
    888 DtSetTableLength (
    889     void)
    890 {
    891     DT_SUBTABLE             *ParentTable;
    892     DT_SUBTABLE             *ChildTable;
    893 
    894 
    895     ParentTable = AslGbl_RootTable;
    896     ChildTable = NULL;
    897 
    898     if (!ParentTable)
    899     {
    900         return;
    901     }
    902 
    903     DtSetSubtableLength (ParentTable);
    904 
    905     while (1)
    906     {
    907         ChildTable = DtGetNextSubtable (ParentTable, ChildTable);
    908         if (ChildTable)
    909         {
    910             if (ChildTable->LengthField)
    911             {
    912                 DtSetSubtableLength (ChildTable);
    913             }
    914 
    915             if (ChildTable->Child)
    916             {
    917                 ParentTable = ChildTable;
    918                 ChildTable = NULL;
    919             }
    920             else
    921             {
    922                 ParentTable->TotalLength += ChildTable->TotalLength;
    923                 if (ParentTable->LengthField)
    924                 {
    925                     DtSetSubtableLength (ParentTable);
    926                 }
    927             }
    928         }
    929         else
    930         {
    931             ChildTable = ParentTable;
    932 
    933             if (ChildTable == AslGbl_RootTable)
    934             {
    935                 break;
    936             }
    937 
    938             ParentTable = DtGetParentSubtable (ParentTable);
    939 
    940             ParentTable->TotalLength += ChildTable->TotalLength;
    941             if (ParentTable->LengthField)
    942             {
    943                 DtSetSubtableLength (ParentTable);
    944             }
    945         }
    946     }
    947 }
    948 
    949 
    950 /******************************************************************************
    951  *
    952  * FUNCTION:    DtWalkTableTree
    953  *
    954  * PARAMETERS:  StartTable          - Subtable in the tree where walking begins
    955  *              UserFunction        - Called during the walk
    956  *              Context             - Passed to user function
    957  *              ReturnValue         - The return value of UserFunction
    958  *
    959  * RETURN:      None
    960  *
    961  * DESCRIPTION: Performs a depth-first walk of the subtable tree
    962  *
    963  *****************************************************************************/
    964 
    965 void
    966 DtWalkTableTree (
    967     DT_SUBTABLE             *StartTable,
    968     DT_WALK_CALLBACK        UserFunction,
    969     void                    *Context,
    970     void                    *ReturnValue)
    971 {
    972     DT_SUBTABLE             *ParentTable;
    973     DT_SUBTABLE             *ChildTable;
    974 
    975 
    976     ParentTable = StartTable;
    977     ChildTable = NULL;
    978 
    979     if (!ParentTable)
    980     {
    981         return;
    982     }
    983 
    984     UserFunction (ParentTable, Context, ReturnValue);
    985 
    986     while (1)
    987     {
    988         ChildTable = DtGetNextSubtable (ParentTable, ChildTable);
    989         if (ChildTable)
    990         {
    991             UserFunction (ChildTable, Context, ReturnValue);
    992 
    993             if (ChildTable->Child)
    994             {
    995                 ParentTable = ChildTable;
    996                 ChildTable = NULL;
    997             }
    998         }
    999         else
   1000         {
   1001             ChildTable = ParentTable;
   1002             if (ChildTable == AslGbl_RootTable)
   1003             {
   1004                 break;
   1005             }
   1006 
   1007             ParentTable = DtGetParentSubtable (ParentTable);
   1008 
   1009             if (ChildTable->Peer == StartTable)
   1010             {
   1011                 break;
   1012             }
   1013         }
   1014     }
   1015 }
   1016