Home | History | Annotate | Line # | Download | only in acpiexec
aetables.c revision 1.1.1.7
      1 /******************************************************************************
      2  *
      3  * Module Name: aetables - ACPI table setup/install for acpiexec utility
      4  *
      5  *****************************************************************************/
      6 
      7 /*
      8  * Copyright (C) 2000 - 2015, Intel Corp.
      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 
     44 #include "aecommon.h"
     45 #include "aetables.h"
     46 
     47 #define _COMPONENT          ACPI_TOOLS
     48         ACPI_MODULE_NAME    ("aetables")
     49 
     50 /* Local prototypes */
     51 
     52 static void
     53 AeInitializeTableHeader (
     54     ACPI_TABLE_HEADER       *Header,
     55     char                    *Signature,
     56     UINT32                  Length);
     57 
     58 void
     59 AeTableOverride (
     60     ACPI_TABLE_HEADER       *ExistingTable,
     61     ACPI_TABLE_HEADER       **NewTable);
     62 
     63 /* User table (DSDT) */
     64 
     65 static ACPI_TABLE_HEADER        *DsdtToInstallOverride;
     66 
     67 /* Non-AML tables that are constructed locally and installed */
     68 
     69 static ACPI_TABLE_RSDP          LocalRSDP;
     70 static ACPI_TABLE_FACS          LocalFACS;
     71 static ACPI_TABLE_HEADER        LocalTEST;
     72 static ACPI_TABLE_HEADER        LocalBADTABLE;
     73 
     74 /*
     75  * We need a local FADT so that the hardware subcomponent will function,
     76  * even though the underlying OSD HW access functions don't do anything.
     77  */
     78 static ACPI_TABLE_FADT          LocalFADT;
     79 
     80 /*
     81  * Use XSDT so that both 32- and 64-bit versions of this utility will
     82  * function automatically.
     83  */
     84 static ACPI_TABLE_XSDT          *LocalXSDT;
     85 
     86 #define BASE_XSDT_TABLES        9
     87 #define BASE_XSDT_SIZE          ((BASE_XSDT_TABLES) * sizeof (UINT64))
     88 
     89 #define ACPI_MAX_INIT_TABLES    (32)
     90 static ACPI_TABLE_DESC          Tables[ACPI_MAX_INIT_TABLES];
     91 
     92 
     93 /******************************************************************************
     94  *
     95  * FUNCTION:    AeTableOverride
     96  *
     97  * DESCRIPTION: Local implementation of AcpiOsTableOverride.
     98  *              Exercise the override mechanism
     99  *
    100  *****************************************************************************/
    101 
    102 void
    103 AeTableOverride (
    104     ACPI_TABLE_HEADER       *ExistingTable,
    105     ACPI_TABLE_HEADER       **NewTable)
    106 {
    107 
    108     if (!AcpiGbl_LoadTestTables)
    109     {
    110         *NewTable = NULL;
    111         return;
    112     }
    113 
    114     /* This code exercises the table override mechanism in the core */
    115 
    116     if (ACPI_COMPARE_NAME (ExistingTable->Signature, ACPI_SIG_DSDT))
    117     {
    118         *NewTable = DsdtToInstallOverride;
    119     }
    120 
    121     /* This code tests override of dynamically loaded tables */
    122 
    123     else if (ACPI_COMPARE_NAME (ExistingTable->Signature, "OEM9"))
    124     {
    125         *NewTable = ACPI_CAST_PTR (ACPI_TABLE_HEADER, Ssdt3Code);
    126     }
    127 }
    128 
    129 
    130 /******************************************************************************
    131  *
    132  * FUNCTION:    AeInitializeTableHeader
    133  *
    134  * PARAMETERS:  Header          - A valid standard ACPI table header
    135  *              Signature       - Signature to insert
    136  *              Length          - Length of the table
    137  *
    138  * RETURN:      None. Header is modified.
    139  *
    140  * DESCRIPTION: Initialize the table header for a local ACPI table.
    141  *
    142  *****************************************************************************/
    143 
    144 static void
    145 AeInitializeTableHeader (
    146     ACPI_TABLE_HEADER       *Header,
    147     char                    *Signature,
    148     UINT32                  Length)
    149 {
    150 
    151     ACPI_MOVE_NAME (Header->Signature, Signature);
    152     Header->Length = Length;
    153 
    154     Header->OemRevision = 0x1001;
    155     strncpy (Header->OemId, "Intel", ACPI_OEM_ID_SIZE);
    156     strncpy (Header->OemTableId, "AcpiExec", ACPI_OEM_TABLE_ID_SIZE);
    157     strncpy (Header->AslCompilerId, "INTL", ACPI_NAME_SIZE);
    158     Header->AslCompilerRevision = 0x20131218;
    159 }
    160 
    161 
    162 /******************************************************************************
    163  *
    164  * FUNCTION:    AeBuildLocalTables
    165  *
    166  * PARAMETERS:  TableCount      - Number of tables on the command line
    167  *              TableList       - List of actual tables from files
    168  *
    169  * RETURN:      Status
    170  *
    171  * DESCRIPTION: Build a complete ACPI table chain, with a local RSDP, XSDT,
    172  *              FADT, and several other test tables.
    173  *
    174  *****************************************************************************/
    175 
    176 ACPI_STATUS
    177 AeBuildLocalTables (
    178     UINT32                  TableCount,
    179     AE_TABLE_DESC           *TableList)
    180 {
    181     ACPI_PHYSICAL_ADDRESS   DsdtAddress = 0;
    182     UINT32                  XsdtSize;
    183     AE_TABLE_DESC           *NextTable;
    184     UINT32                  NextIndex;
    185     ACPI_TABLE_FADT         *ExternalFadt = NULL;
    186 
    187 
    188     /*
    189      * Update the table count. For the DSDT, it is not put into the XSDT.
    190      * For the FADT, this table is already accounted for since we usually
    191      * install a local FADT.
    192      */
    193     NextTable = TableList;
    194     while (NextTable)
    195     {
    196         if (ACPI_COMPARE_NAME (NextTable->Table->Signature, ACPI_SIG_DSDT) ||
    197             ACPI_COMPARE_NAME (NextTable->Table->Signature, ACPI_SIG_FADT))
    198         {
    199             TableCount--;
    200         }
    201         NextTable = NextTable->Next;
    202     }
    203 
    204     XsdtSize = (((TableCount + 1) * sizeof (UINT64)) + sizeof (ACPI_TABLE_HEADER));
    205     if (AcpiGbl_LoadTestTables)
    206     {
    207         XsdtSize += BASE_XSDT_SIZE;
    208     }
    209 
    210     /* Build an XSDT */
    211 
    212     LocalXSDT = AcpiOsAllocate (XsdtSize);
    213     if (!LocalXSDT)
    214     {
    215         return (AE_NO_MEMORY);
    216     }
    217 
    218     memset (LocalXSDT, 0, XsdtSize);
    219     AeInitializeTableHeader ((void *) LocalXSDT, ACPI_SIG_XSDT, XsdtSize);
    220 
    221     LocalXSDT->TableOffsetEntry[0] = ACPI_PTR_TO_PHYSADDR (&LocalFADT);
    222     NextIndex = 1;
    223 
    224     /*
    225      * Install the user tables. The DSDT must be installed in the FADT.
    226      * All other tables are installed directly into the XSDT.
    227      *
    228      * Note: The tables are loaded in reverse order from the incoming
    229      * input, which makes it match the command line order.
    230      */
    231     NextTable = TableList;
    232     while (NextTable)
    233     {
    234         /*
    235          * Incoming DSDT or FADT are special cases. All other tables are
    236          * just immediately installed into the XSDT.
    237          */
    238         if (ACPI_COMPARE_NAME (NextTable->Table->Signature, ACPI_SIG_DSDT))
    239         {
    240             if (DsdtAddress)
    241             {
    242                 printf ("Already found a DSDT, only one allowed\n");
    243                 return (AE_ALREADY_EXISTS);
    244             }
    245 
    246             /* The incoming user table is a DSDT */
    247 
    248             DsdtAddress = ACPI_PTR_TO_PHYSADDR (NextTable->Table);
    249             DsdtToInstallOverride = NextTable->Table;
    250         }
    251         else if (ACPI_COMPARE_NAME (NextTable->Table->Signature, ACPI_SIG_FADT))
    252         {
    253             ExternalFadt = ACPI_CAST_PTR (ACPI_TABLE_FADT, NextTable->Table);
    254             LocalXSDT->TableOffsetEntry[0] = ACPI_PTR_TO_PHYSADDR (NextTable->Table);
    255         }
    256         else
    257         {
    258             /* Install the table in the XSDT */
    259 
    260             LocalXSDT->TableOffsetEntry[TableCount - NextIndex + 1] =
    261                 ACPI_PTR_TO_PHYSADDR (NextTable->Table);
    262             NextIndex++;
    263         }
    264 
    265         NextTable = NextTable->Next;
    266     }
    267 
    268     /* Install the optional extra local tables */
    269 
    270     if (AcpiGbl_LoadTestTables)
    271     {
    272         LocalXSDT->TableOffsetEntry[NextIndex++] = ACPI_PTR_TO_PHYSADDR (&LocalTEST);
    273         LocalXSDT->TableOffsetEntry[NextIndex++] = ACPI_PTR_TO_PHYSADDR (&LocalBADTABLE);
    274 
    275         /* Install two SSDTs to test multiple table support */
    276 
    277         LocalXSDT->TableOffsetEntry[NextIndex++] = ACPI_PTR_TO_PHYSADDR (&Ssdt1Code);
    278         LocalXSDT->TableOffsetEntry[NextIndex++] = ACPI_PTR_TO_PHYSADDR (&Ssdt2Code);
    279 
    280         /* Install the OEM1 table to test LoadTable */
    281 
    282         LocalXSDT->TableOffsetEntry[NextIndex++] = ACPI_PTR_TO_PHYSADDR (&Oem1Code);
    283 
    284         /* Install the OEMx table to test LoadTable */
    285 
    286         LocalXSDT->TableOffsetEntry[NextIndex++] = ACPI_PTR_TO_PHYSADDR (&OemxCode);
    287 
    288          /* Install the ECDT table to test _REG */
    289 
    290         LocalXSDT->TableOffsetEntry[NextIndex++] = ACPI_PTR_TO_PHYSADDR (&EcdtCode);
    291 
    292         /* Install two UEFIs to test multiple table support */
    293 
    294         LocalXSDT->TableOffsetEntry[NextIndex++] = ACPI_PTR_TO_PHYSADDR (&Uefi1Code);
    295         LocalXSDT->TableOffsetEntry[NextIndex++] = ACPI_PTR_TO_PHYSADDR (&Uefi2Code);
    296     }
    297 
    298     /* Build an RSDP. Contains a valid XSDT only, no RSDT */
    299 
    300     memset (&LocalRSDP, 0, sizeof (ACPI_TABLE_RSDP));
    301     ACPI_MAKE_RSDP_SIG (LocalRSDP.Signature);
    302     memcpy (LocalRSDP.OemId, "Intel", 6);
    303 
    304     LocalRSDP.Revision = 2;
    305     LocalRSDP.XsdtPhysicalAddress = ACPI_PTR_TO_PHYSADDR (LocalXSDT);
    306     LocalRSDP.Length = sizeof (ACPI_TABLE_RSDP);
    307 
    308     /* Set checksums for both XSDT and RSDP */
    309 
    310     LocalXSDT->Header.Checksum = 0;
    311     LocalXSDT->Header.Checksum = (UINT8) -AcpiTbChecksum (
    312         (void *) LocalXSDT, LocalXSDT->Header.Length);
    313 
    314     LocalRSDP.Checksum = 0;
    315     LocalRSDP.Checksum = (UINT8) -AcpiTbChecksum (
    316         (void *) &LocalRSDP, ACPI_RSDP_CHECKSUM_LENGTH);
    317 
    318     if (!DsdtAddress)
    319     {
    320         /* Use the local DSDT because incoming table(s) are all SSDT(s) */
    321 
    322         DsdtAddress = ACPI_PTR_TO_PHYSADDR (LocalDsdtCode);
    323         DsdtToInstallOverride = ACPI_CAST_PTR (ACPI_TABLE_HEADER, LocalDsdtCode);
    324     }
    325 
    326     /*
    327      * Build an FADT. There are three options for the FADT:
    328      * 1) Incoming external FADT specified on the command line
    329      * 2) A "hardware reduced" local FADT
    330      * 3) A fully featured local FADT
    331      */
    332     memset (&LocalFADT, 0, sizeof (ACPI_TABLE_FADT));
    333 
    334     if (ExternalFadt)
    335     {
    336         /*
    337          * Use the external FADT, but we must update the DSDT/FACS addresses
    338          * as well as the checksum
    339          */
    340         ExternalFadt->Dsdt = (UINT32) DsdtAddress;
    341         if (!AcpiGbl_ReducedHardware)
    342         {
    343             ExternalFadt->Facs = ACPI_PTR_TO_PHYSADDR (&LocalFACS);
    344         }
    345 
    346         /* Is there room in the FADT for the XDsdst and XFacs 64-bit pointers? */
    347 
    348         if (ExternalFadt->Header.Length > ACPI_PTR_DIFF (&ExternalFadt->XDsdt, ExternalFadt))
    349         {
    350             ExternalFadt->XDsdt = DsdtAddress;
    351 
    352             if (!AcpiGbl_ReducedHardware)
    353             {
    354                 ExternalFadt->XFacs = ACPI_PTR_TO_PHYSADDR (&LocalFACS);
    355             }
    356         }
    357 
    358         /* Complete the FADT with the checksum */
    359 
    360         ExternalFadt->Header.Checksum = 0;
    361         ExternalFadt->Header.Checksum = (UINT8) -AcpiTbChecksum (
    362             (void *) ExternalFadt, ExternalFadt->Header.Length);
    363     }
    364     else if (AcpiGbl_UseHwReducedFadt)
    365     {
    366         memcpy (&LocalFADT, HwReducedFadtCode, ACPI_FADT_V5_SIZE);
    367         LocalFADT.Dsdt = (UINT32) DsdtAddress;
    368         LocalFADT.XDsdt = DsdtAddress;
    369 
    370         LocalFADT.Header.Checksum = 0;
    371         LocalFADT.Header.Checksum = (UINT8) -AcpiTbChecksum (
    372             (void *) &LocalFADT, LocalFADT.Header.Length);
    373     }
    374     else
    375     {
    376         /*
    377          * Build a local FADT so we can test the hardware/event init
    378          */
    379         LocalFADT.Header.Revision = 5;
    380         AeInitializeTableHeader ((void *) &LocalFADT, ACPI_SIG_FADT, sizeof (ACPI_TABLE_FADT));
    381 
    382         /* Setup FADT header and DSDT/FACS addresses */
    383 
    384         LocalFADT.Dsdt = 0;
    385         LocalFADT.Facs = 0;
    386 
    387         LocalFADT.XDsdt = DsdtAddress;
    388         LocalFADT.XFacs = ACPI_PTR_TO_PHYSADDR (&LocalFACS);
    389 
    390         /* Miscellaneous FADT fields */
    391 
    392         LocalFADT.Gpe0BlockLength = 0x08;
    393         LocalFADT.Gpe0Block = 0x00001234;
    394 
    395         LocalFADT.Gpe1BlockLength = 0x80;
    396         LocalFADT.Gpe1Block = 0x00005678;
    397         LocalFADT.Gpe1Base = 100;
    398 
    399         LocalFADT.Pm1EventLength = 4;
    400         LocalFADT.Pm1aEventBlock = 0x00001aaa;
    401         LocalFADT.Pm1bEventBlock = 0x00001bbb;
    402 
    403         LocalFADT.Pm1ControlLength = 2;
    404         LocalFADT.Pm1aControlBlock = 0xB0;
    405 
    406         LocalFADT.PmTimerLength = 4;
    407         LocalFADT.PmTimerBlock = 0xA0;
    408 
    409         LocalFADT.Pm2ControlBlock = 0xC0;
    410         LocalFADT.Pm2ControlLength = 1;
    411 
    412         /* Setup one example X-64 GAS field */
    413 
    414         LocalFADT.XPm1bEventBlock.SpaceId = ACPI_ADR_SPACE_SYSTEM_IO;
    415         LocalFADT.XPm1bEventBlock.Address = LocalFADT.Pm1bEventBlock;
    416         LocalFADT.XPm1bEventBlock.BitWidth = (UINT8) ACPI_MUL_8 (LocalFADT.Pm1EventLength);
    417 
    418         /* Complete the FADT with the checksum */
    419 
    420         LocalFADT.Header.Checksum = 0;
    421         LocalFADT.Header.Checksum = (UINT8) -AcpiTbChecksum (
    422             (void *) &LocalFADT, LocalFADT.Header.Length);
    423     }
    424 
    425     /* Build a FACS */
    426 
    427     memset (&LocalFACS, 0, sizeof (ACPI_TABLE_FACS));
    428     ACPI_MOVE_NAME (LocalFACS.Signature, ACPI_SIG_FACS);
    429 
    430     LocalFACS.Length = sizeof (ACPI_TABLE_FACS);
    431     LocalFACS.GlobalLock = 0x11AA0011;
    432 
    433     /* Build the optional local tables */
    434 
    435     if (AcpiGbl_LoadTestTables)
    436     {
    437         /*
    438          * Build a fake table [TEST] so that we make sure that the
    439          * ACPICA core ignores it
    440          */
    441         memset (&LocalTEST, 0, sizeof (ACPI_TABLE_HEADER));
    442         ACPI_MOVE_NAME (LocalTEST.Signature, "TEST");
    443 
    444         LocalTEST.Revision = 1;
    445         LocalTEST.Length = sizeof (ACPI_TABLE_HEADER);
    446         LocalTEST.Checksum = (UINT8) -AcpiTbChecksum (
    447             (void *) &LocalTEST, LocalTEST.Length);
    448 
    449         /*
    450          * Build a fake table with a bad signature [BAD!] so that we make
    451          * sure that the ACPICA core ignores it
    452          */
    453         memset (&LocalBADTABLE, 0, sizeof (ACPI_TABLE_HEADER));
    454         ACPI_MOVE_NAME (LocalBADTABLE.Signature, "BAD!");
    455 
    456         LocalBADTABLE.Revision = 1;
    457         LocalBADTABLE.Length = sizeof (ACPI_TABLE_HEADER);
    458         LocalBADTABLE.Checksum = (UINT8) -AcpiTbChecksum (
    459             (void *) &LocalBADTABLE, LocalBADTABLE.Length);
    460     }
    461 
    462     return (AE_OK);
    463 }
    464 
    465 
    466 /******************************************************************************
    467  *
    468  * FUNCTION:    AeInstallTables
    469  *
    470  * PARAMETERS:  None
    471  *
    472  * RETURN:      Status
    473  *
    474  * DESCRIPTION: Install the various ACPI tables
    475  *
    476  *****************************************************************************/
    477 
    478 ACPI_STATUS
    479 AeInstallTables (
    480     void)
    481 {
    482     ACPI_STATUS             Status;
    483     ACPI_TABLE_HEADER       Header;
    484     ACPI_TABLE_HEADER       *Table;
    485 
    486 
    487     Status = AcpiInitializeTables (Tables, ACPI_MAX_INIT_TABLES, TRUE);
    488     AE_CHECK_OK (AcpiInitializeTables, Status);
    489 
    490     Status = AcpiReallocateRootTable ();
    491     AE_CHECK_OK (AcpiReallocateRootTable, Status);
    492 
    493     Status = AcpiLoadTables ();
    494     AE_CHECK_OK (AcpiLoadTables, Status);
    495 
    496     /*
    497      * Test run-time control method installation. Do it twice to test code
    498      * for an existing name.
    499      */
    500     Status = AcpiInstallMethod (MethodCode);
    501     if (ACPI_FAILURE (Status))
    502     {
    503         AcpiOsPrintf ("%s, Could not install method\n",
    504             AcpiFormatException (Status));
    505     }
    506 
    507     Status = AcpiInstallMethod (MethodCode);
    508     if (ACPI_FAILURE (Status))
    509     {
    510         AcpiOsPrintf ("%s, Could not install method\n",
    511             AcpiFormatException (Status));
    512     }
    513 
    514     if (AcpiGbl_LoadTestTables)
    515     {
    516         /* Test multiple table/UEFI support. First, get the headers */
    517 
    518         Status = AcpiGetTableHeader (ACPI_SIG_UEFI, 1, &Header);
    519         AE_CHECK_OK (AcpiGetTableHeader, Status);
    520 
    521         Status = AcpiGetTableHeader (ACPI_SIG_UEFI, 2, &Header);
    522         AE_CHECK_OK (AcpiGetTableHeader, Status);
    523 
    524         Status = AcpiGetTableHeader (ACPI_SIG_UEFI, 3, &Header);
    525         AE_CHECK_STATUS (AcpiGetTableHeader, Status, AE_NOT_FOUND);
    526 
    527         /* Now get the actual tables */
    528 
    529         Status = AcpiGetTable (ACPI_SIG_UEFI, 1, &Table);
    530         AE_CHECK_OK (AcpiGetTable, Status);
    531 
    532         Status = AcpiGetTable (ACPI_SIG_UEFI, 2, &Table);
    533         AE_CHECK_OK (AcpiGetTable, Status);
    534 
    535         Status = AcpiGetTable (ACPI_SIG_UEFI, 3, &Table);
    536         AE_CHECK_STATUS (AcpiGetTable, Status, AE_NOT_FOUND);
    537     }
    538 
    539     return (AE_OK);
    540 }
    541 
    542 
    543 /******************************************************************************
    544  *
    545  * FUNCTION:    AcpiOsGetRootPointer
    546  *
    547  * PARAMETERS:  Flags       - not used
    548  *              Address     - Where the root pointer is returned
    549  *
    550  * RETURN:      Status
    551  *
    552  * DESCRIPTION: Return a local RSDP, used to dynamically load tables via the
    553  *              standard ACPI mechanism.
    554  *
    555  *****************************************************************************/
    556 
    557 ACPI_PHYSICAL_ADDRESS
    558 AcpiOsGetRootPointer (
    559     void)
    560 {
    561 
    562     return (ACPI_PTR_TO_PHYSADDR (&LocalRSDP));
    563 }
    564