Home | History | Annotate | Line # | Download | only in compiler
asloffset.c revision 1.1.1.1.10.3
      1  1.1.1.1.10.2       tls /******************************************************************************
      2  1.1.1.1.10.2       tls  *
      3  1.1.1.1.10.2       tls  * Module Name: asloffset - Generate a C "offset table" for BIOS use.
      4  1.1.1.1.10.2       tls  *
      5  1.1.1.1.10.2       tls  *****************************************************************************/
      6  1.1.1.1.10.2       tls 
      7  1.1.1.1.10.2       tls /*
      8  1.1.1.1.10.3  jdolecek  * Copyright (C) 2000 - 2017, Intel Corp.
      9  1.1.1.1.10.2       tls  * All rights reserved.
     10  1.1.1.1.10.2       tls  *
     11  1.1.1.1.10.2       tls  * Redistribution and use in source and binary forms, with or without
     12  1.1.1.1.10.2       tls  * modification, are permitted provided that the following conditions
     13  1.1.1.1.10.2       tls  * are met:
     14  1.1.1.1.10.2       tls  * 1. Redistributions of source code must retain the above copyright
     15  1.1.1.1.10.2       tls  *    notice, this list of conditions, and the following disclaimer,
     16  1.1.1.1.10.2       tls  *    without modification.
     17  1.1.1.1.10.2       tls  * 2. Redistributions in binary form must reproduce at minimum a disclaimer
     18  1.1.1.1.10.2       tls  *    substantially similar to the "NO WARRANTY" disclaimer below
     19  1.1.1.1.10.2       tls  *    ("Disclaimer") and any redistribution must be conditioned upon
     20  1.1.1.1.10.2       tls  *    including a substantially similar Disclaimer requirement for further
     21  1.1.1.1.10.2       tls  *    binary redistribution.
     22  1.1.1.1.10.2       tls  * 3. Neither the names of the above-listed copyright holders nor the names
     23  1.1.1.1.10.2       tls  *    of any contributors may be used to endorse or promote products derived
     24  1.1.1.1.10.2       tls  *    from this software without specific prior written permission.
     25  1.1.1.1.10.2       tls  *
     26  1.1.1.1.10.2       tls  * Alternatively, this software may be distributed under the terms of the
     27  1.1.1.1.10.2       tls  * GNU General Public License ("GPL") version 2 as published by the Free
     28  1.1.1.1.10.2       tls  * Software Foundation.
     29  1.1.1.1.10.2       tls  *
     30  1.1.1.1.10.2       tls  * NO WARRANTY
     31  1.1.1.1.10.2       tls  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
     32  1.1.1.1.10.2       tls  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
     33  1.1.1.1.10.2       tls  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
     34  1.1.1.1.10.2       tls  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
     35  1.1.1.1.10.2       tls  * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     36  1.1.1.1.10.2       tls  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     37  1.1.1.1.10.2       tls  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     38  1.1.1.1.10.2       tls  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
     39  1.1.1.1.10.2       tls  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
     40  1.1.1.1.10.2       tls  * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     41  1.1.1.1.10.2       tls  * POSSIBILITY OF SUCH DAMAGES.
     42  1.1.1.1.10.2       tls  */
     43  1.1.1.1.10.2       tls 
     44  1.1.1.1.10.2       tls #include "aslcompiler.h"
     45  1.1.1.1.10.2       tls #include "aslcompiler.y.h"
     46  1.1.1.1.10.2       tls #include "amlcode.h"
     47  1.1.1.1.10.2       tls #include "acnamesp.h"
     48  1.1.1.1.10.2       tls 
     49  1.1.1.1.10.2       tls 
     50  1.1.1.1.10.2       tls #define _COMPONENT          ACPI_COMPILER
     51  1.1.1.1.10.2       tls         ACPI_MODULE_NAME    ("asloffset")
     52  1.1.1.1.10.2       tls 
     53  1.1.1.1.10.2       tls 
     54  1.1.1.1.10.2       tls /* Local prototypes */
     55  1.1.1.1.10.2       tls 
     56  1.1.1.1.10.2       tls static void
     57  1.1.1.1.10.2       tls LsEmitOffsetTableEntry (
     58  1.1.1.1.10.2       tls     UINT32                  FileId,
     59  1.1.1.1.10.2       tls     ACPI_NAMESPACE_NODE     *Node,
     60  1.1.1.1.10.2       tls     UINT32                  NamepathOffset,
     61  1.1.1.1.10.2       tls     UINT32                  Offset,
     62  1.1.1.1.10.2       tls     char                    *OpName,
     63  1.1.1.1.10.2       tls     UINT64                  Value,
     64  1.1.1.1.10.2       tls     UINT8                   AmlOpcode,
     65  1.1.1.1.10.2       tls     UINT16                  ParentOpcode);
     66  1.1.1.1.10.2       tls 
     67  1.1.1.1.10.2       tls 
     68  1.1.1.1.10.2       tls /*******************************************************************************
     69  1.1.1.1.10.2       tls  *
     70  1.1.1.1.10.2       tls  * FUNCTION:    LsAmlOffsetWalk
     71  1.1.1.1.10.2       tls  *
     72  1.1.1.1.10.2       tls  * PARAMETERS:  ASL_WALK_CALLBACK
     73  1.1.1.1.10.2       tls  *
     74  1.1.1.1.10.2       tls  * RETURN:      Status
     75  1.1.1.1.10.2       tls  *
     76  1.1.1.1.10.2       tls  * DESCRIPTION: Process one node during a offset table file generation.
     77  1.1.1.1.10.2       tls  *
     78  1.1.1.1.10.2       tls  * Three types of objects are currently emitted to the offset table:
     79  1.1.1.1.10.2       tls  *   1) Tagged (named) resource descriptors
     80  1.1.1.1.10.2       tls  *   2) Named integer objects with constant integer values
     81  1.1.1.1.10.2       tls  *   3) Named package objects
     82  1.1.1.1.10.2       tls  *   4) Operation Regions that have constant Offset (address) parameters
     83  1.1.1.1.10.2       tls  *   5) Control methods
     84  1.1.1.1.10.2       tls  *
     85  1.1.1.1.10.2       tls  * The offset table allows the BIOS to dynamically update the values of these
     86  1.1.1.1.10.2       tls  * objects at boot time.
     87  1.1.1.1.10.2       tls  *
     88  1.1.1.1.10.2       tls  ******************************************************************************/
     89  1.1.1.1.10.2       tls 
     90  1.1.1.1.10.2       tls ACPI_STATUS
     91  1.1.1.1.10.2       tls LsAmlOffsetWalk (
     92  1.1.1.1.10.2       tls     ACPI_PARSE_OBJECT       *Op,
     93  1.1.1.1.10.2       tls     UINT32                  Level,
     94  1.1.1.1.10.2       tls     void                    *Context)
     95  1.1.1.1.10.2       tls {
     96  1.1.1.1.10.2       tls     UINT32                  FileId = (UINT32) ACPI_TO_INTEGER (Context);
     97  1.1.1.1.10.2       tls     ACPI_NAMESPACE_NODE     *Node;
     98  1.1.1.1.10.2       tls     UINT32                  Length;
     99  1.1.1.1.10.2       tls     UINT32                  NamepathOffset;
    100  1.1.1.1.10.2       tls     UINT32                  DataOffset;
    101  1.1.1.1.10.2       tls     ACPI_PARSE_OBJECT       *NextOp;
    102  1.1.1.1.10.2       tls 
    103  1.1.1.1.10.2       tls 
    104  1.1.1.1.10.2       tls     /* Ignore actual data blocks for resource descriptors */
    105  1.1.1.1.10.2       tls 
    106  1.1.1.1.10.3  jdolecek     if (Op->Asl.CompileFlags & OP_IS_RESOURCE_DATA)
    107  1.1.1.1.10.2       tls     {
    108  1.1.1.1.10.2       tls         return (AE_OK); /* Do NOT update the global AML offset */
    109  1.1.1.1.10.2       tls     }
    110  1.1.1.1.10.2       tls 
    111  1.1.1.1.10.2       tls     /* We are only interested in named objects (have a namespace node) */
    112  1.1.1.1.10.2       tls 
    113  1.1.1.1.10.2       tls     Node = Op->Asl.Node;
    114  1.1.1.1.10.2       tls     if (!Node)
    115  1.1.1.1.10.2       tls     {
    116  1.1.1.1.10.2       tls         Gbl_CurrentAmlOffset += Op->Asl.FinalAmlLength;
    117  1.1.1.1.10.2       tls         return (AE_OK);
    118  1.1.1.1.10.2       tls     }
    119  1.1.1.1.10.2       tls 
    120  1.1.1.1.10.2       tls     /* Named resource descriptor (has a descriptor tag) */
    121  1.1.1.1.10.2       tls 
    122  1.1.1.1.10.2       tls     if ((Node->Type == ACPI_TYPE_LOCAL_RESOURCE) &&
    123  1.1.1.1.10.3  jdolecek         (Op->Asl.CompileFlags & OP_IS_RESOURCE_DESC))
    124  1.1.1.1.10.2       tls     {
    125  1.1.1.1.10.2       tls         LsEmitOffsetTableEntry (FileId, Node, 0, Gbl_CurrentAmlOffset,
    126  1.1.1.1.10.2       tls             Op->Asl.ParseOpName, 0, Op->Asl.Extra, AML_BUFFER_OP);
    127  1.1.1.1.10.2       tls 
    128  1.1.1.1.10.2       tls         Gbl_CurrentAmlOffset += Op->Asl.FinalAmlLength;
    129  1.1.1.1.10.2       tls         return (AE_OK);
    130  1.1.1.1.10.2       tls     }
    131  1.1.1.1.10.2       tls 
    132  1.1.1.1.10.2       tls     switch (Op->Asl.AmlOpcode)
    133  1.1.1.1.10.2       tls     {
    134  1.1.1.1.10.2       tls     case AML_NAME_OP:
    135  1.1.1.1.10.2       tls 
    136  1.1.1.1.10.2       tls         /* Named object -- Name (NameString, DataRefObject) */
    137  1.1.1.1.10.2       tls 
    138  1.1.1.1.10.2       tls         if (!Op->Asl.Child)
    139  1.1.1.1.10.2       tls         {
    140  1.1.1.1.10.2       tls             FlPrintFile (FileId, "%s NO CHILD!\n", MsgBuffer);
    141  1.1.1.1.10.2       tls             return (AE_OK);
    142  1.1.1.1.10.2       tls         }
    143  1.1.1.1.10.2       tls 
    144  1.1.1.1.10.2       tls         Length = Op->Asl.FinalAmlLength;
    145  1.1.1.1.10.2       tls 
    146  1.1.1.1.10.2       tls         /* Get to the NameSeg/NamePath Op (and length of the name) */
    147  1.1.1.1.10.2       tls 
    148  1.1.1.1.10.2       tls         Op = Op->Asl.Child;
    149  1.1.1.1.10.2       tls 
    150  1.1.1.1.10.2       tls         /* Get offset of last nameseg and the actual data */
    151  1.1.1.1.10.2       tls 
    152  1.1.1.1.10.2       tls         NamepathOffset = Gbl_CurrentAmlOffset + Length +
    153  1.1.1.1.10.2       tls             (Op->Asl.FinalAmlLength - ACPI_NAME_SIZE);
    154  1.1.1.1.10.2       tls 
    155  1.1.1.1.10.2       tls         DataOffset = Gbl_CurrentAmlOffset + Length +
    156  1.1.1.1.10.2       tls             Op->Asl.FinalAmlLength;
    157  1.1.1.1.10.2       tls 
    158  1.1.1.1.10.2       tls         /* Get actual value associated with the name */
    159  1.1.1.1.10.2       tls 
    160  1.1.1.1.10.2       tls         Op = Op->Asl.Next;
    161  1.1.1.1.10.2       tls         switch (Op->Asl.AmlOpcode)
    162  1.1.1.1.10.2       tls         {
    163  1.1.1.1.10.2       tls         case AML_BYTE_OP:
    164  1.1.1.1.10.2       tls         case AML_WORD_OP:
    165  1.1.1.1.10.2       tls         case AML_DWORD_OP:
    166  1.1.1.1.10.2       tls         case AML_QWORD_OP:
    167  1.1.1.1.10.2       tls 
    168  1.1.1.1.10.2       tls             /* The +1 is to handle the integer size prefix (opcode) */
    169  1.1.1.1.10.2       tls 
    170  1.1.1.1.10.2       tls             LsEmitOffsetTableEntry (FileId, Node, NamepathOffset, (DataOffset + 1),
    171  1.1.1.1.10.2       tls                 Op->Asl.ParseOpName, Op->Asl.Value.Integer,
    172  1.1.1.1.10.2       tls                 (UINT8) Op->Asl.AmlOpcode, AML_NAME_OP);
    173  1.1.1.1.10.2       tls             break;
    174  1.1.1.1.10.2       tls 
    175  1.1.1.1.10.2       tls         case AML_ONE_OP:
    176  1.1.1.1.10.2       tls         case AML_ONES_OP:
    177  1.1.1.1.10.2       tls         case AML_ZERO_OP:
    178  1.1.1.1.10.2       tls 
    179  1.1.1.1.10.2       tls             /* For these, offset will point to the opcode */
    180  1.1.1.1.10.2       tls 
    181  1.1.1.1.10.2       tls             LsEmitOffsetTableEntry (FileId, Node, NamepathOffset, DataOffset,
    182  1.1.1.1.10.2       tls                 Op->Asl.ParseOpName, Op->Asl.Value.Integer,
    183  1.1.1.1.10.2       tls                 (UINT8) Op->Asl.AmlOpcode, AML_NAME_OP);
    184  1.1.1.1.10.2       tls             break;
    185  1.1.1.1.10.2       tls 
    186  1.1.1.1.10.2       tls         case AML_PACKAGE_OP:
    187  1.1.1.1.10.3  jdolecek         case AML_VARIABLE_PACKAGE_OP:
    188  1.1.1.1.10.2       tls 
    189  1.1.1.1.10.2       tls             /* Get the package element count */
    190  1.1.1.1.10.2       tls 
    191  1.1.1.1.10.2       tls             NextOp = Op->Asl.Child;
    192  1.1.1.1.10.2       tls 
    193  1.1.1.1.10.2       tls             LsEmitOffsetTableEntry (FileId, Node, NamepathOffset, DataOffset,
    194  1.1.1.1.10.2       tls                 Op->Asl.ParseOpName, NextOp->Asl.Value.Integer,
    195  1.1.1.1.10.2       tls                 (UINT8) Op->Asl.AmlOpcode, AML_NAME_OP);
    196  1.1.1.1.10.2       tls             break;
    197  1.1.1.1.10.2       tls 
    198  1.1.1.1.10.2       tls          default:
    199  1.1.1.1.10.2       tls              break;
    200  1.1.1.1.10.2       tls         }
    201  1.1.1.1.10.2       tls 
    202  1.1.1.1.10.2       tls         Gbl_CurrentAmlOffset += Length;
    203  1.1.1.1.10.2       tls         return (AE_OK);
    204  1.1.1.1.10.2       tls 
    205  1.1.1.1.10.2       tls     case AML_REGION_OP:
    206  1.1.1.1.10.2       tls 
    207  1.1.1.1.10.2       tls         /* OperationRegion (NameString, RegionSpace, RegionOffset, RegionLength) */
    208  1.1.1.1.10.2       tls 
    209  1.1.1.1.10.2       tls         Length = Op->Asl.FinalAmlLength;
    210  1.1.1.1.10.2       tls 
    211  1.1.1.1.10.2       tls         /* Get the name/namepath node */
    212  1.1.1.1.10.2       tls 
    213  1.1.1.1.10.2       tls         NextOp = Op->Asl.Child;
    214  1.1.1.1.10.2       tls 
    215  1.1.1.1.10.2       tls         /* Get offset of last nameseg and the actual data */
    216  1.1.1.1.10.2       tls 
    217  1.1.1.1.10.2       tls         NamepathOffset = Gbl_CurrentAmlOffset + Length +
    218  1.1.1.1.10.2       tls             (NextOp->Asl.FinalAmlLength - ACPI_NAME_SIZE);
    219  1.1.1.1.10.2       tls 
    220  1.1.1.1.10.2       tls         DataOffset = Gbl_CurrentAmlOffset + Length +
    221  1.1.1.1.10.2       tls             (NextOp->Asl.FinalAmlLength + 1);
    222  1.1.1.1.10.2       tls 
    223  1.1.1.1.10.2       tls         /* Get the SpaceId node, then the Offset (address) node */
    224  1.1.1.1.10.2       tls 
    225  1.1.1.1.10.2       tls         NextOp = NextOp->Asl.Next;
    226  1.1.1.1.10.2       tls         NextOp = NextOp->Asl.Next;
    227  1.1.1.1.10.2       tls 
    228  1.1.1.1.10.2       tls         switch (NextOp->Asl.AmlOpcode)
    229  1.1.1.1.10.2       tls         {
    230  1.1.1.1.10.2       tls         /*
    231  1.1.1.1.10.2       tls          * We are only interested in integer constants that can be changed
    232  1.1.1.1.10.2       tls          * at boot time. Note, the One/Ones/Zero opcodes are considered
    233  1.1.1.1.10.2       tls          * non-changeable, so we ignore them here.
    234  1.1.1.1.10.2       tls          */
    235  1.1.1.1.10.2       tls         case AML_BYTE_OP:
    236  1.1.1.1.10.2       tls         case AML_WORD_OP:
    237  1.1.1.1.10.2       tls         case AML_DWORD_OP:
    238  1.1.1.1.10.2       tls         case AML_QWORD_OP:
    239  1.1.1.1.10.2       tls 
    240  1.1.1.1.10.2       tls             LsEmitOffsetTableEntry (FileId, Node, NamepathOffset, (DataOffset + 1),
    241  1.1.1.1.10.2       tls                 Op->Asl.ParseOpName, NextOp->Asl.Value.Integer,
    242  1.1.1.1.10.2       tls                 (UINT8) NextOp->Asl.AmlOpcode, AML_REGION_OP);
    243  1.1.1.1.10.2       tls 
    244  1.1.1.1.10.2       tls             Gbl_CurrentAmlOffset += Length;
    245  1.1.1.1.10.2       tls             return (AE_OK);
    246  1.1.1.1.10.2       tls 
    247  1.1.1.1.10.2       tls         default:
    248  1.1.1.1.10.2       tls             break;
    249  1.1.1.1.10.2       tls         }
    250  1.1.1.1.10.2       tls         break;
    251  1.1.1.1.10.2       tls 
    252  1.1.1.1.10.2       tls     case AML_METHOD_OP:
    253  1.1.1.1.10.2       tls 
    254  1.1.1.1.10.2       tls         /* Method (Namepath, ...) */
    255  1.1.1.1.10.2       tls 
    256  1.1.1.1.10.2       tls         Length = Op->Asl.FinalAmlLength;
    257  1.1.1.1.10.2       tls 
    258  1.1.1.1.10.2       tls         /* Get the NameSeg/NamePath Op */
    259  1.1.1.1.10.2       tls 
    260  1.1.1.1.10.2       tls         NextOp = Op->Asl.Child;
    261  1.1.1.1.10.2       tls 
    262  1.1.1.1.10.2       tls         /* Get offset of last nameseg and the actual data (flags byte) */
    263  1.1.1.1.10.2       tls 
    264  1.1.1.1.10.2       tls         NamepathOffset = Gbl_CurrentAmlOffset + Length +
    265  1.1.1.1.10.2       tls             (NextOp->Asl.FinalAmlLength - ACPI_NAME_SIZE);
    266  1.1.1.1.10.2       tls 
    267  1.1.1.1.10.2       tls         DataOffset = Gbl_CurrentAmlOffset + Length +
    268  1.1.1.1.10.2       tls             NextOp->Asl.FinalAmlLength;
    269  1.1.1.1.10.2       tls 
    270  1.1.1.1.10.2       tls         /* Get the flags byte Op */
    271  1.1.1.1.10.2       tls 
    272  1.1.1.1.10.2       tls         NextOp = NextOp->Asl.Next;
    273  1.1.1.1.10.2       tls 
    274  1.1.1.1.10.2       tls         LsEmitOffsetTableEntry (FileId, Node, NamepathOffset, DataOffset,
    275  1.1.1.1.10.2       tls             Op->Asl.ParseOpName, NextOp->Asl.Value.Integer,
    276  1.1.1.1.10.2       tls             (UINT8) Op->Asl.AmlOpcode, AML_METHOD_OP);
    277  1.1.1.1.10.2       tls         break;
    278  1.1.1.1.10.2       tls 
    279  1.1.1.1.10.2       tls     case AML_PROCESSOR_OP:
    280  1.1.1.1.10.2       tls 
    281  1.1.1.1.10.2       tls         /* Processor (Namepath, ProcessorId, Address, Length) */
    282  1.1.1.1.10.2       tls 
    283  1.1.1.1.10.2       tls         Length = Op->Asl.FinalAmlLength;
    284  1.1.1.1.10.2       tls         NextOp = Op->Asl.Child;     /* Get Namepath */
    285  1.1.1.1.10.2       tls 
    286  1.1.1.1.10.2       tls         /* Get offset of last nameseg and the actual data (PBlock address) */
    287  1.1.1.1.10.2       tls 
    288  1.1.1.1.10.2       tls         NamepathOffset = Gbl_CurrentAmlOffset + Length +
    289  1.1.1.1.10.2       tls             (NextOp->Asl.FinalAmlLength - ACPI_NAME_SIZE);
    290  1.1.1.1.10.2       tls 
    291  1.1.1.1.10.2       tls         DataOffset = Gbl_CurrentAmlOffset + Length +
    292  1.1.1.1.10.2       tls             (NextOp->Asl.FinalAmlLength + 1);
    293  1.1.1.1.10.2       tls 
    294  1.1.1.1.10.2       tls         NextOp = NextOp->Asl.Next;  /* Get ProcessorID (BYTE) */
    295  1.1.1.1.10.2       tls         NextOp = NextOp->Asl.Next;  /* Get Address (DWORD) */
    296  1.1.1.1.10.2       tls 
    297  1.1.1.1.10.2       tls         LsEmitOffsetTableEntry (FileId, Node, NamepathOffset, DataOffset,
    298  1.1.1.1.10.2       tls             Op->Asl.ParseOpName, NextOp->Asl.Value.Integer,
    299  1.1.1.1.10.2       tls             (UINT8) AML_DWORD_OP, AML_PROCESSOR_OP);
    300  1.1.1.1.10.2       tls         break;
    301  1.1.1.1.10.2       tls 
    302  1.1.1.1.10.2       tls     case AML_DEVICE_OP:
    303  1.1.1.1.10.2       tls     case AML_SCOPE_OP:
    304  1.1.1.1.10.2       tls     case AML_THERMAL_ZONE_OP:
    305  1.1.1.1.10.2       tls 
    306  1.1.1.1.10.2       tls         /* Device/Scope/ThermalZone (Namepath) */
    307  1.1.1.1.10.2       tls 
    308  1.1.1.1.10.2       tls         Length = Op->Asl.FinalAmlLength;
    309  1.1.1.1.10.2       tls         NextOp = Op->Asl.Child;     /* Get Namepath */
    310  1.1.1.1.10.2       tls 
    311  1.1.1.1.10.2       tls         /* Get offset of last nameseg */
    312  1.1.1.1.10.2       tls 
    313  1.1.1.1.10.2       tls         NamepathOffset = Gbl_CurrentAmlOffset + Length +
    314  1.1.1.1.10.2       tls             (NextOp->Asl.FinalAmlLength - ACPI_NAME_SIZE);
    315  1.1.1.1.10.2       tls 
    316  1.1.1.1.10.2       tls         LsEmitOffsetTableEntry (FileId, Node, NamepathOffset, 0,
    317  1.1.1.1.10.2       tls             Op->Asl.ParseOpName, 0, (UINT8) 0, Op->Asl.AmlOpcode);
    318  1.1.1.1.10.2       tls         break;
    319  1.1.1.1.10.2       tls 
    320  1.1.1.1.10.2       tls     default:
    321  1.1.1.1.10.2       tls         break;
    322  1.1.1.1.10.2       tls     }
    323  1.1.1.1.10.2       tls 
    324  1.1.1.1.10.2       tls     Gbl_CurrentAmlOffset += Op->Asl.FinalAmlLength;
    325  1.1.1.1.10.2       tls     return (AE_OK);
    326  1.1.1.1.10.2       tls }
    327  1.1.1.1.10.2       tls 
    328  1.1.1.1.10.2       tls 
    329  1.1.1.1.10.2       tls /*******************************************************************************
    330  1.1.1.1.10.2       tls  *
    331  1.1.1.1.10.2       tls  * FUNCTION:    LsEmitOffsetTableEntry
    332  1.1.1.1.10.2       tls  *
    333  1.1.1.1.10.2       tls  * PARAMETERS:  FileId          - ID of current listing file
    334  1.1.1.1.10.2       tls  *              Node            - Namespace node associated with the name
    335  1.1.1.1.10.2       tls  *              Offset          - Offset of the value within the AML table
    336  1.1.1.1.10.2       tls  *              OpName          - Name of the AML opcode
    337  1.1.1.1.10.2       tls  *              Value           - Current value of the AML field
    338  1.1.1.1.10.2       tls  *              AmlOpcode       - Opcode associated with the field
    339  1.1.1.1.10.2       tls  *              ObjectType      - ACPI object type
    340  1.1.1.1.10.2       tls  *
    341  1.1.1.1.10.2       tls  * RETURN:      None
    342  1.1.1.1.10.2       tls  *
    343  1.1.1.1.10.2       tls  * DESCRIPTION: Emit a line of the offset table (-so option)
    344  1.1.1.1.10.2       tls  *
    345  1.1.1.1.10.2       tls  ******************************************************************************/
    346  1.1.1.1.10.2       tls 
    347  1.1.1.1.10.2       tls static void
    348  1.1.1.1.10.2       tls LsEmitOffsetTableEntry (
    349  1.1.1.1.10.2       tls     UINT32                  FileId,
    350  1.1.1.1.10.2       tls     ACPI_NAMESPACE_NODE     *Node,
    351  1.1.1.1.10.2       tls     UINT32                  NamepathOffset,
    352  1.1.1.1.10.2       tls     UINT32                  Offset,
    353  1.1.1.1.10.2       tls     char                    *OpName,
    354  1.1.1.1.10.2       tls     UINT64                  Value,
    355  1.1.1.1.10.2       tls     UINT8                   AmlOpcode,
    356  1.1.1.1.10.2       tls     UINT16                  ParentOpcode)
    357  1.1.1.1.10.2       tls {
    358  1.1.1.1.10.2       tls     ACPI_BUFFER             TargetPath;
    359  1.1.1.1.10.2       tls     ACPI_STATUS             Status;
    360  1.1.1.1.10.2       tls 
    361  1.1.1.1.10.2       tls 
    362  1.1.1.1.10.2       tls     /* Get the full pathname to the namespace node */
    363  1.1.1.1.10.2       tls 
    364  1.1.1.1.10.2       tls     TargetPath.Length = ACPI_ALLOCATE_LOCAL_BUFFER;
    365  1.1.1.1.10.3  jdolecek     Status = AcpiNsHandleToPathname (Node, &TargetPath, FALSE);
    366  1.1.1.1.10.2       tls     if (ACPI_FAILURE (Status))
    367  1.1.1.1.10.2       tls     {
    368  1.1.1.1.10.2       tls         return;
    369  1.1.1.1.10.2       tls     }
    370  1.1.1.1.10.2       tls 
    371  1.1.1.1.10.2       tls     /* [1] - Skip the opening backslash for the path */
    372  1.1.1.1.10.2       tls 
    373  1.1.1.1.10.2       tls     strcpy (MsgBuffer, "\"");
    374  1.1.1.1.10.2       tls     strcat (MsgBuffer, &((char *) TargetPath.Pointer)[1]);
    375  1.1.1.1.10.2       tls     strcat (MsgBuffer, "\",");
    376  1.1.1.1.10.2       tls     ACPI_FREE (TargetPath.Pointer);
    377  1.1.1.1.10.2       tls 
    378  1.1.1.1.10.2       tls     /*
    379  1.1.1.1.10.2       tls      * Max offset is 4G, constrained by 32-bit ACPI table length.
    380  1.1.1.1.10.2       tls      * Max Length for Integers is 8 bytes.
    381  1.1.1.1.10.2       tls      */
    382  1.1.1.1.10.2       tls     FlPrintFile (FileId,
    383  1.1.1.1.10.2       tls         "    {%-29s 0x%4.4X, 0x%8.8X, 0x%2.2X, 0x%8.8X, 0x%8.8X%8.8X}, /* %s */\n",
    384  1.1.1.1.10.2       tls         MsgBuffer, ParentOpcode, NamepathOffset, AmlOpcode,
    385  1.1.1.1.10.2       tls         Offset, ACPI_FORMAT_UINT64 (Value), OpName);
    386  1.1.1.1.10.2       tls }
    387  1.1.1.1.10.2       tls 
    388  1.1.1.1.10.2       tls 
    389  1.1.1.1.10.2       tls /*******************************************************************************
    390  1.1.1.1.10.2       tls  *
    391  1.1.1.1.10.2       tls  * FUNCTION:    LsDoOffsetTableHeader, LsDoOffsetTableFooter
    392  1.1.1.1.10.2       tls  *
    393  1.1.1.1.10.2       tls  * PARAMETERS:  FileId          - ID of current listing file
    394  1.1.1.1.10.2       tls  *
    395  1.1.1.1.10.2       tls  * RETURN:      None
    396  1.1.1.1.10.2       tls  *
    397  1.1.1.1.10.2       tls  * DESCRIPTION: Header and footer for the offset table file.
    398  1.1.1.1.10.2       tls  *
    399  1.1.1.1.10.2       tls  ******************************************************************************/
    400  1.1.1.1.10.2       tls 
    401  1.1.1.1.10.2       tls void
    402  1.1.1.1.10.2       tls LsDoOffsetTableHeader (
    403  1.1.1.1.10.2       tls     UINT32                  FileId)
    404  1.1.1.1.10.2       tls {
    405  1.1.1.1.10.2       tls 
    406  1.1.1.1.10.2       tls     FlPrintFile (FileId,
    407  1.1.1.1.10.2       tls         "#ifndef __AML_OFFSET_TABLE_H\n"
    408  1.1.1.1.10.2       tls         "#define __AML_OFFSET_TABLE_H\n\n");
    409  1.1.1.1.10.2       tls 
    410  1.1.1.1.10.2       tls     FlPrintFile (FileId, "typedef struct {\n"
    411  1.1.1.1.10.2       tls         "    char                   *Pathname;      /* Full pathname (from root) to the object */\n"
    412  1.1.1.1.10.2       tls         "    unsigned short         ParentOpcode;   /* AML opcode for the parent object */\n"
    413  1.1.1.1.10.2       tls         "    unsigned long          NamesegOffset;  /* Offset of last nameseg in the parent namepath */\n"
    414  1.1.1.1.10.2       tls         "    unsigned char          Opcode;         /* AML opcode for the data */\n"
    415  1.1.1.1.10.2       tls         "    unsigned long          Offset;         /* Offset for the data */\n"
    416  1.1.1.1.10.2       tls         "    unsigned long long     Value;          /* Original value of the data (as applicable) */\n"
    417  1.1.1.1.10.2       tls         "} AML_OFFSET_TABLE_ENTRY;\n\n");
    418  1.1.1.1.10.2       tls 
    419  1.1.1.1.10.2       tls     FlPrintFile (FileId,
    420  1.1.1.1.10.2       tls         "#endif /* __AML_OFFSET_TABLE_H */\n\n");
    421  1.1.1.1.10.2       tls 
    422  1.1.1.1.10.2       tls     FlPrintFile (FileId,
    423  1.1.1.1.10.2       tls         "/*\n"
    424  1.1.1.1.10.2       tls         " * Information specific to the supported object types:\n"
    425  1.1.1.1.10.2       tls         " *\n"
    426  1.1.1.1.10.2       tls         " * Integers:\n"
    427  1.1.1.1.10.2       tls         " *    Opcode is the integer prefix, indicates length of the data\n"
    428  1.1.1.1.10.2       tls         " *        (One of: BYTE, WORD, DWORD, QWORD, ZERO, ONE, ONES)\n"
    429  1.1.1.1.10.2       tls         " *    Offset points to the actual integer data\n"
    430  1.1.1.1.10.2       tls         " *    Value is the existing value in the AML\n"
    431  1.1.1.1.10.2       tls         " *\n"
    432  1.1.1.1.10.2       tls         " * Packages:\n"
    433  1.1.1.1.10.2       tls         " *    Opcode is the package or var_package opcode\n"
    434  1.1.1.1.10.2       tls         " *    Offset points to the package opcode\n"
    435  1.1.1.1.10.2       tls         " *    Value is the package element count\n"
    436  1.1.1.1.10.2       tls         " *\n"
    437  1.1.1.1.10.2       tls         " * Operation Regions:\n"
    438  1.1.1.1.10.2       tls         " *    Opcode is the address integer prefix, indicates length of the data\n"
    439  1.1.1.1.10.2       tls         " *    Offset points to the region address\n"
    440  1.1.1.1.10.2       tls         " *    Value is the existing address value in the AML\n"
    441  1.1.1.1.10.2       tls         " *\n"
    442  1.1.1.1.10.2       tls         " * Control Methods:\n"
    443  1.1.1.1.10.2       tls         " *    Offset points to the method flags byte\n"
    444  1.1.1.1.10.2       tls         " *    Value is the existing flags value in the AML\n"
    445  1.1.1.1.10.2       tls         " *\n"
    446  1.1.1.1.10.2       tls         " * Processors:\n"
    447  1.1.1.1.10.2       tls         " *    Offset points to the first byte of the PBlock Address\n"
    448  1.1.1.1.10.2       tls         " *\n"
    449  1.1.1.1.10.2       tls         " * Resource Descriptors:\n"
    450  1.1.1.1.10.2       tls         " *    Opcode is the descriptor type\n"
    451  1.1.1.1.10.2       tls         " *    Offset points to the start of the descriptor\n"
    452  1.1.1.1.10.2       tls         " *\n"
    453  1.1.1.1.10.2       tls         " * Scopes/Devices/ThermalZones:\n"
    454  1.1.1.1.10.2       tls         " *    Nameseg offset only\n"
    455  1.1.1.1.10.2       tls         " */\n");
    456  1.1.1.1.10.2       tls 
    457  1.1.1.1.10.2       tls     FlPrintFile (FileId,
    458  1.1.1.1.10.2       tls         "AML_OFFSET_TABLE_ENTRY   %s_%s_OffsetTable[] =\n{\n",
    459  1.1.1.1.10.2       tls         Gbl_TableSignature, Gbl_TableId);
    460  1.1.1.1.10.2       tls }
    461  1.1.1.1.10.2       tls 
    462  1.1.1.1.10.2       tls 
    463  1.1.1.1.10.2       tls void
    464  1.1.1.1.10.2       tls LsDoOffsetTableFooter (
    465  1.1.1.1.10.2       tls     UINT32                  FileId)
    466  1.1.1.1.10.2       tls {
    467  1.1.1.1.10.2       tls 
    468  1.1.1.1.10.2       tls     FlPrintFile (FileId,
    469  1.1.1.1.10.2       tls         "    {NULL,0,0,0,0,0} /* Table terminator */\n};\n\n");
    470  1.1.1.1.10.2       tls     Gbl_CurrentAmlOffset = 0;
    471  1.1.1.1.10.2       tls }
    472