Home | History | Annotate | Line # | Download | only in common
dmtbdump1.c revision 1.1
      1  1.1  christos /******************************************************************************
      2  1.1  christos  *
      3  1.1  christos  * Module Name: dmtbdump1 - Dump ACPI data tables that contain no AML code
      4  1.1  christos  *
      5  1.1  christos  *****************************************************************************/
      6  1.1  christos 
      7  1.1  christos /*
      8  1.1  christos  * Copyright (C) 2000 - 2018, Intel Corp.
      9  1.1  christos  * All rights reserved.
     10  1.1  christos  *
     11  1.1  christos  * Redistribution and use in source and binary forms, with or without
     12  1.1  christos  * modification, are permitted provided that the following conditions
     13  1.1  christos  * are met:
     14  1.1  christos  * 1. Redistributions of source code must retain the above copyright
     15  1.1  christos  *    notice, this list of conditions, and the following disclaimer,
     16  1.1  christos  *    without modification.
     17  1.1  christos  * 2. Redistributions in binary form must reproduce at minimum a disclaimer
     18  1.1  christos  *    substantially similar to the "NO WARRANTY" disclaimer below
     19  1.1  christos  *    ("Disclaimer") and any redistribution must be conditioned upon
     20  1.1  christos  *    including a substantially similar Disclaimer requirement for further
     21  1.1  christos  *    binary redistribution.
     22  1.1  christos  * 3. Neither the names of the above-listed copyright holders nor the names
     23  1.1  christos  *    of any contributors may be used to endorse or promote products derived
     24  1.1  christos  *    from this software without specific prior written permission.
     25  1.1  christos  *
     26  1.1  christos  * Alternatively, this software may be distributed under the terms of the
     27  1.1  christos  * GNU General Public License ("GPL") version 2 as published by the Free
     28  1.1  christos  * Software Foundation.
     29  1.1  christos  *
     30  1.1  christos  * NO WARRANTY
     31  1.1  christos  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
     32  1.1  christos  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
     33  1.1  christos  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
     34  1.1  christos  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
     35  1.1  christos  * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     36  1.1  christos  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     37  1.1  christos  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     38  1.1  christos  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
     39  1.1  christos  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
     40  1.1  christos  * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     41  1.1  christos  * POSSIBILITY OF SUCH DAMAGES.
     42  1.1  christos  */
     43  1.1  christos 
     44  1.1  christos #include "acpi.h"
     45  1.1  christos #include "accommon.h"
     46  1.1  christos #include "acdisasm.h"
     47  1.1  christos #include "actables.h"
     48  1.1  christos 
     49  1.1  christos /* This module used for application-level code only */
     50  1.1  christos 
     51  1.1  christos #define _COMPONENT          ACPI_CA_DISASSEMBLER
     52  1.1  christos         ACPI_MODULE_NAME    ("dmtbdump1")
     53  1.1  christos 
     54  1.1  christos 
     55  1.1  christos /*******************************************************************************
     56  1.1  christos  *
     57  1.1  christos  * FUNCTION:    AcpiDmDumpAsf
     58  1.1  christos  *
     59  1.1  christos  * PARAMETERS:  Table               - A ASF table
     60  1.1  christos  *
     61  1.1  christos  * RETURN:      None
     62  1.1  christos  *
     63  1.1  christos  * DESCRIPTION: Format the contents of a ASF table
     64  1.1  christos  *
     65  1.1  christos  ******************************************************************************/
     66  1.1  christos 
     67  1.1  christos void
     68  1.1  christos AcpiDmDumpAsf (
     69  1.1  christos     ACPI_TABLE_HEADER       *Table)
     70  1.1  christos {
     71  1.1  christos     ACPI_STATUS             Status;
     72  1.1  christos     UINT32                  Offset = sizeof (ACPI_TABLE_HEADER);
     73  1.1  christos     ACPI_ASF_INFO           *Subtable;
     74  1.1  christos     ACPI_DMTABLE_INFO       *InfoTable;
     75  1.1  christos     ACPI_DMTABLE_INFO       *DataInfoTable = NULL;
     76  1.1  christos     UINT8                   *DataTable = NULL;
     77  1.1  christos     UINT32                  DataCount = 0;
     78  1.1  christos     UINT32                  DataLength = 0;
     79  1.1  christos     UINT32                  DataOffset = 0;
     80  1.1  christos     UINT32                  i;
     81  1.1  christos     UINT8                   Type;
     82  1.1  christos 
     83  1.1  christos 
     84  1.1  christos     /* No main table, only subtables */
     85  1.1  christos 
     86  1.1  christos     Subtable = ACPI_ADD_PTR (ACPI_ASF_INFO, Table, Offset);
     87  1.1  christos     while (Offset < Table->Length)
     88  1.1  christos     {
     89  1.1  christos         /* Common subtable header */
     90  1.1  christos 
     91  1.1  christos         Status = AcpiDmDumpTable (Table->Length, Offset, Subtable,
     92  1.1  christos             Subtable->Header.Length, AcpiDmTableInfoAsfHdr);
     93  1.1  christos         if (ACPI_FAILURE (Status))
     94  1.1  christos         {
     95  1.1  christos             return;
     96  1.1  christos         }
     97  1.1  christos 
     98  1.1  christos         /* The actual type is the lower 7 bits of Type */
     99  1.1  christos 
    100  1.1  christos         Type = (UINT8) (Subtable->Header.Type & 0x7F);
    101  1.1  christos 
    102  1.1  christos         switch (Type)
    103  1.1  christos         {
    104  1.1  christos         case ACPI_ASF_TYPE_INFO:
    105  1.1  christos 
    106  1.1  christos             InfoTable = AcpiDmTableInfoAsf0;
    107  1.1  christos             break;
    108  1.1  christos 
    109  1.1  christos         case ACPI_ASF_TYPE_ALERT:
    110  1.1  christos 
    111  1.1  christos             InfoTable = AcpiDmTableInfoAsf1;
    112  1.1  christos             DataInfoTable = AcpiDmTableInfoAsf1a;
    113  1.1  christos             DataTable = ACPI_ADD_PTR (UINT8, Subtable, sizeof (ACPI_ASF_ALERT));
    114  1.1  christos             DataCount = ACPI_CAST_PTR (ACPI_ASF_ALERT, Subtable)->Alerts;
    115  1.1  christos             DataLength = ACPI_CAST_PTR (ACPI_ASF_ALERT, Subtable)->DataLength;
    116  1.1  christos             DataOffset = Offset + sizeof (ACPI_ASF_ALERT);
    117  1.1  christos             break;
    118  1.1  christos 
    119  1.1  christos         case ACPI_ASF_TYPE_CONTROL:
    120  1.1  christos 
    121  1.1  christos             InfoTable = AcpiDmTableInfoAsf2;
    122  1.1  christos             DataInfoTable = AcpiDmTableInfoAsf2a;
    123  1.1  christos             DataTable = ACPI_ADD_PTR (UINT8, Subtable, sizeof (ACPI_ASF_REMOTE));
    124  1.1  christos             DataCount = ACPI_CAST_PTR (ACPI_ASF_REMOTE, Subtable)->Controls;
    125  1.1  christos             DataLength = ACPI_CAST_PTR (ACPI_ASF_REMOTE, Subtable)->DataLength;
    126  1.1  christos             DataOffset = Offset + sizeof (ACPI_ASF_REMOTE);
    127  1.1  christos             break;
    128  1.1  christos 
    129  1.1  christos         case ACPI_ASF_TYPE_BOOT:
    130  1.1  christos 
    131  1.1  christos             InfoTable = AcpiDmTableInfoAsf3;
    132  1.1  christos             break;
    133  1.1  christos 
    134  1.1  christos         case ACPI_ASF_TYPE_ADDRESS:
    135  1.1  christos 
    136  1.1  christos             InfoTable = AcpiDmTableInfoAsf4;
    137  1.1  christos             DataTable = ACPI_ADD_PTR (UINT8, Subtable, sizeof (ACPI_ASF_ADDRESS));
    138  1.1  christos             DataLength = ACPI_CAST_PTR (ACPI_ASF_ADDRESS, Subtable)->Devices;
    139  1.1  christos             DataOffset = Offset + sizeof (ACPI_ASF_ADDRESS);
    140  1.1  christos             break;
    141  1.1  christos 
    142  1.1  christos         default:
    143  1.1  christos 
    144  1.1  christos             AcpiOsPrintf ("\n**** Unknown ASF subtable type 0x%X\n",
    145  1.1  christos                 Subtable->Header.Type);
    146  1.1  christos             return;
    147  1.1  christos         }
    148  1.1  christos 
    149  1.1  christos         Status = AcpiDmDumpTable (Table->Length, Offset, Subtable,
    150  1.1  christos             Subtable->Header.Length, InfoTable);
    151  1.1  christos         if (ACPI_FAILURE (Status))
    152  1.1  christos         {
    153  1.1  christos             return;
    154  1.1  christos         }
    155  1.1  christos 
    156  1.1  christos         /* Dump variable-length extra data */
    157  1.1  christos 
    158  1.1  christos         switch (Type)
    159  1.1  christos         {
    160  1.1  christos         case ACPI_ASF_TYPE_ALERT:
    161  1.1  christos         case ACPI_ASF_TYPE_CONTROL:
    162  1.1  christos 
    163  1.1  christos             for (i = 0; i < DataCount; i++)
    164  1.1  christos             {
    165  1.1  christos                 AcpiOsPrintf ("\n");
    166  1.1  christos                 Status = AcpiDmDumpTable (Table->Length, DataOffset,
    167  1.1  christos                     DataTable, DataLength, DataInfoTable);
    168  1.1  christos                 if (ACPI_FAILURE (Status))
    169  1.1  christos                 {
    170  1.1  christos                     return;
    171  1.1  christos                 }
    172  1.1  christos 
    173  1.1  christos                 DataTable = ACPI_ADD_PTR (UINT8, DataTable, DataLength);
    174  1.1  christos                 DataOffset += DataLength;
    175  1.1  christos             }
    176  1.1  christos             break;
    177  1.1  christos 
    178  1.1  christos         case ACPI_ASF_TYPE_ADDRESS:
    179  1.1  christos 
    180  1.1  christos             for (i = 0; i < DataLength; i++)
    181  1.1  christos             {
    182  1.1  christos                 if (!(i % 16))
    183  1.1  christos                 {
    184  1.1  christos                     AcpiDmLineHeader (DataOffset, 1, "Addresses");
    185  1.1  christos                 }
    186  1.1  christos 
    187  1.1  christos                 AcpiOsPrintf ("%2.2X ", *DataTable);
    188  1.1  christos                 DataTable++;
    189  1.1  christos                 DataOffset++;
    190  1.1  christos 
    191  1.1  christos                 if (DataOffset > Table->Length)
    192  1.1  christos                 {
    193  1.1  christos                     AcpiOsPrintf (
    194  1.1  christos                         "**** ACPI table terminates in the middle of a "
    195  1.1  christos                         "data structure! (ASF! table)\n");
    196  1.1  christos                     return;
    197  1.1  christos                 }
    198  1.1  christos             }
    199  1.1  christos 
    200  1.1  christos             AcpiOsPrintf ("\n");
    201  1.1  christos             break;
    202  1.1  christos 
    203  1.1  christos         default:
    204  1.1  christos 
    205  1.1  christos             break;
    206  1.1  christos         }
    207  1.1  christos 
    208  1.1  christos         AcpiOsPrintf ("\n");
    209  1.1  christos 
    210  1.1  christos         /* Point to next subtable */
    211  1.1  christos 
    212  1.1  christos         if (!Subtable->Header.Length)
    213  1.1  christos         {
    214  1.1  christos             AcpiOsPrintf ("Invalid zero subtable header length\n");
    215  1.1  christos             return;
    216  1.1  christos         }
    217  1.1  christos 
    218  1.1  christos         Offset += Subtable->Header.Length;
    219  1.1  christos         Subtable = ACPI_ADD_PTR (ACPI_ASF_INFO, Subtable,
    220  1.1  christos             Subtable->Header.Length);
    221  1.1  christos     }
    222  1.1  christos }
    223  1.1  christos 
    224  1.1  christos 
    225  1.1  christos /*******************************************************************************
    226  1.1  christos  *
    227  1.1  christos  * FUNCTION:    AcpiDmDumpCpep
    228  1.1  christos  *
    229  1.1  christos  * PARAMETERS:  Table               - A CPEP table
    230  1.1  christos  *
    231  1.1  christos  * RETURN:      None
    232  1.1  christos  *
    233  1.1  christos  * DESCRIPTION: Format the contents of a CPEP. This table type consists
    234  1.1  christos  *              of an open-ended number of subtables.
    235  1.1  christos  *
    236  1.1  christos  ******************************************************************************/
    237  1.1  christos 
    238  1.1  christos void
    239  1.1  christos AcpiDmDumpCpep (
    240  1.1  christos     ACPI_TABLE_HEADER       *Table)
    241  1.1  christos {
    242  1.1  christos     ACPI_STATUS             Status;
    243  1.1  christos     ACPI_CPEP_POLLING       *Subtable;
    244  1.1  christos     UINT32                  Length = Table->Length;
    245  1.1  christos     UINT32                  Offset = sizeof (ACPI_TABLE_CPEP);
    246  1.1  christos 
    247  1.1  christos 
    248  1.1  christos     /* Main table */
    249  1.1  christos 
    250  1.1  christos     Status = AcpiDmDumpTable (Length, 0, Table, 0, AcpiDmTableInfoCpep);
    251  1.1  christos     if (ACPI_FAILURE (Status))
    252  1.1  christos     {
    253  1.1  christos         return;
    254  1.1  christos     }
    255  1.1  christos 
    256  1.1  christos     /* Subtables */
    257  1.1  christos 
    258  1.1  christos     Subtable = ACPI_ADD_PTR (ACPI_CPEP_POLLING, Table, Offset);
    259  1.1  christos     while (Offset < Table->Length)
    260  1.1  christos     {
    261  1.1  christos         AcpiOsPrintf ("\n");
    262  1.1  christos         Status = AcpiDmDumpTable (Length, Offset, Subtable,
    263  1.1  christos             Subtable->Header.Length, AcpiDmTableInfoCpep0);
    264  1.1  christos         if (ACPI_FAILURE (Status))
    265  1.1  christos         {
    266  1.1  christos             return;
    267  1.1  christos         }
    268  1.1  christos 
    269  1.1  christos         /* Point to next subtable */
    270  1.1  christos 
    271  1.1  christos         Offset += Subtable->Header.Length;
    272  1.1  christos         Subtable = ACPI_ADD_PTR (ACPI_CPEP_POLLING, Subtable,
    273  1.1  christos             Subtable->Header.Length);
    274  1.1  christos     }
    275  1.1  christos }
    276  1.1  christos 
    277  1.1  christos 
    278  1.1  christos /*******************************************************************************
    279  1.1  christos  *
    280  1.1  christos  * FUNCTION:    AcpiDmDumpCsrt
    281  1.1  christos  *
    282  1.1  christos  * PARAMETERS:  Table               - A CSRT table
    283  1.1  christos  *
    284  1.1  christos  * RETURN:      None
    285  1.1  christos  *
    286  1.1  christos  * DESCRIPTION: Format the contents of a CSRT. This table type consists
    287  1.1  christos  *              of an open-ended number of subtables.
    288  1.1  christos  *
    289  1.1  christos  ******************************************************************************/
    290  1.1  christos 
    291  1.1  christos void
    292  1.1  christos AcpiDmDumpCsrt (
    293  1.1  christos     ACPI_TABLE_HEADER       *Table)
    294  1.1  christos {
    295  1.1  christos     ACPI_STATUS             Status;
    296  1.1  christos     ACPI_CSRT_GROUP         *Subtable;
    297  1.1  christos     ACPI_CSRT_SHARED_INFO   *SharedInfoTable;
    298  1.1  christos     ACPI_CSRT_DESCRIPTOR    *SubSubtable;
    299  1.1  christos     UINT32                  Length = Table->Length;
    300  1.1  christos     UINT32                  Offset = sizeof (ACPI_TABLE_CSRT);
    301  1.1  christos     UINT32                  SubOffset;
    302  1.1  christos     UINT32                  SubSubOffset;
    303  1.1  christos     UINT32                  InfoLength;
    304  1.1  christos 
    305  1.1  christos 
    306  1.1  christos     /* The main table only contains the ACPI header, thus already handled */
    307  1.1  christos 
    308  1.1  christos     /* Subtables (Resource Groups) */
    309  1.1  christos 
    310  1.1  christos     Subtable = ACPI_ADD_PTR (ACPI_CSRT_GROUP, Table, Offset);
    311  1.1  christos     while (Offset < Table->Length)
    312  1.1  christos     {
    313  1.1  christos         /* Resource group subtable */
    314  1.1  christos 
    315  1.1  christos         AcpiOsPrintf ("\n");
    316  1.1  christos         Status = AcpiDmDumpTable (Length, Offset, Subtable,
    317  1.1  christos             Subtable->Length, AcpiDmTableInfoCsrt0);
    318  1.1  christos         if (ACPI_FAILURE (Status))
    319  1.1  christos         {
    320  1.1  christos             return;
    321  1.1  christos         }
    322  1.1  christos 
    323  1.1  christos         /* Shared info subtable (One per resource group) */
    324  1.1  christos 
    325  1.1  christos         SubOffset = sizeof (ACPI_CSRT_GROUP);
    326  1.1  christos         SharedInfoTable = ACPI_ADD_PTR (ACPI_CSRT_SHARED_INFO, Table,
    327  1.1  christos             Offset + SubOffset);
    328  1.1  christos 
    329  1.1  christos         AcpiOsPrintf ("\n");
    330  1.1  christos         Status = AcpiDmDumpTable (Length, Offset + SubOffset, SharedInfoTable,
    331  1.1  christos             sizeof (ACPI_CSRT_SHARED_INFO), AcpiDmTableInfoCsrt1);
    332  1.1  christos         if (ACPI_FAILURE (Status))
    333  1.1  christos         {
    334  1.1  christos             return;
    335  1.1  christos         }
    336  1.1  christos 
    337  1.1  christos         SubOffset += Subtable->SharedInfoLength;
    338  1.1  christos 
    339  1.1  christos         /* Sub-Subtables (Resource Descriptors) */
    340  1.1  christos 
    341  1.1  christos         SubSubtable = ACPI_ADD_PTR (ACPI_CSRT_DESCRIPTOR, Table,
    342  1.1  christos             Offset + SubOffset);
    343  1.1  christos 
    344  1.1  christos         while ((SubOffset < Subtable->Length) &&
    345  1.1  christos               ((Offset + SubOffset) < Table->Length))
    346  1.1  christos         {
    347  1.1  christos             AcpiOsPrintf ("\n");
    348  1.1  christos             Status = AcpiDmDumpTable (Length, Offset + SubOffset, SubSubtable,
    349  1.1  christos                 SubSubtable->Length, AcpiDmTableInfoCsrt2);
    350  1.1  christos             if (ACPI_FAILURE (Status))
    351  1.1  christos             {
    352  1.1  christos                 return;
    353  1.1  christos             }
    354  1.1  christos 
    355  1.1  christos             SubSubOffset = sizeof (ACPI_CSRT_DESCRIPTOR);
    356  1.1  christos 
    357  1.1  christos             /* Resource-specific info buffer */
    358  1.1  christos 
    359  1.1  christos             InfoLength = SubSubtable->Length - SubSubOffset;
    360  1.1  christos             if (InfoLength)
    361  1.1  christos             {
    362  1.1  christos                 Status = AcpiDmDumpTable (Length,
    363  1.1  christos                     Offset + SubOffset + SubSubOffset, Table,
    364  1.1  christos                     InfoLength, AcpiDmTableInfoCsrt2a);
    365  1.1  christos                 if (ACPI_FAILURE (Status))
    366  1.1  christos                 {
    367  1.1  christos                     return;
    368  1.1  christos                 }
    369  1.1  christos                 SubSubOffset += InfoLength;
    370  1.1  christos             }
    371  1.1  christos 
    372  1.1  christos             /* Point to next sub-subtable */
    373  1.1  christos 
    374  1.1  christos             SubOffset += SubSubtable->Length;
    375  1.1  christos             SubSubtable = ACPI_ADD_PTR (ACPI_CSRT_DESCRIPTOR, SubSubtable,
    376  1.1  christos                 SubSubtable->Length);
    377  1.1  christos         }
    378  1.1  christos 
    379  1.1  christos         /* Point to next subtable */
    380  1.1  christos 
    381  1.1  christos         Offset += Subtable->Length;
    382  1.1  christos         Subtable = ACPI_ADD_PTR (ACPI_CSRT_GROUP, Subtable,
    383  1.1  christos             Subtable->Length);
    384  1.1  christos     }
    385  1.1  christos }
    386  1.1  christos 
    387  1.1  christos 
    388  1.1  christos /*******************************************************************************
    389  1.1  christos  *
    390  1.1  christos  * FUNCTION:    AcpiDmDumpDbg2
    391  1.1  christos  *
    392  1.1  christos  * PARAMETERS:  Table               - A DBG2 table
    393  1.1  christos  *
    394  1.1  christos  * RETURN:      None
    395  1.1  christos  *
    396  1.1  christos  * DESCRIPTION: Format the contents of a DBG2. This table type consists
    397  1.1  christos  *              of an open-ended number of subtables.
    398  1.1  christos  *
    399  1.1  christos  ******************************************************************************/
    400  1.1  christos 
    401  1.1  christos void
    402  1.1  christos AcpiDmDumpDbg2 (
    403  1.1  christos     ACPI_TABLE_HEADER       *Table)
    404  1.1  christos {
    405  1.1  christos     ACPI_STATUS             Status;
    406  1.1  christos     ACPI_DBG2_DEVICE        *Subtable;
    407  1.1  christos     UINT32                  Length = Table->Length;
    408  1.1  christos     UINT32                  Offset = sizeof (ACPI_TABLE_DBG2);
    409  1.1  christos     UINT32                  i;
    410  1.1  christos     UINT32                  ArrayOffset;
    411  1.1  christos     UINT32                  AbsoluteOffset;
    412  1.1  christos     UINT8                   *Array;
    413  1.1  christos 
    414  1.1  christos 
    415  1.1  christos     /* Main table */
    416  1.1  christos 
    417  1.1  christos     Status = AcpiDmDumpTable (Length, 0, Table, 0, AcpiDmTableInfoDbg2);
    418  1.1  christos     if (ACPI_FAILURE (Status))
    419  1.1  christos     {
    420  1.1  christos         return;
    421  1.1  christos     }
    422  1.1  christos 
    423  1.1  christos     /* Subtables */
    424  1.1  christos 
    425  1.1  christos     Subtable = ACPI_ADD_PTR (ACPI_DBG2_DEVICE, Table, Offset);
    426  1.1  christos     while (Offset < Table->Length)
    427  1.1  christos     {
    428  1.1  christos         AcpiOsPrintf ("\n");
    429  1.1  christos         Status = AcpiDmDumpTable (Length, Offset, Subtable,
    430  1.1  christos             Subtable->Length, AcpiDmTableInfoDbg2Device);
    431  1.1  christos         if (ACPI_FAILURE (Status))
    432  1.1  christos         {
    433  1.1  christos             return;
    434  1.1  christos         }
    435  1.1  christos 
    436  1.1  christos         /* Dump the BaseAddress array */
    437  1.1  christos 
    438  1.1  christos         for (i = 0; i < Subtable->RegisterCount; i++)
    439  1.1  christos         {
    440  1.1  christos             ArrayOffset = Subtable->BaseAddressOffset +
    441  1.1  christos                 (sizeof (ACPI_GENERIC_ADDRESS) * i);
    442  1.1  christos             AbsoluteOffset = Offset + ArrayOffset;
    443  1.1  christos             Array = (UINT8 *) Subtable + ArrayOffset;
    444  1.1  christos 
    445  1.1  christos             Status = AcpiDmDumpTable (Length, AbsoluteOffset, Array,
    446  1.1  christos                 Subtable->Length, AcpiDmTableInfoDbg2Addr);
    447  1.1  christos             if (ACPI_FAILURE (Status))
    448  1.1  christos             {
    449  1.1  christos                 return;
    450  1.1  christos             }
    451  1.1  christos         }
    452  1.1  christos 
    453  1.1  christos         /* Dump the AddressSize array */
    454  1.1  christos 
    455  1.1  christos         for (i = 0; i < Subtable->RegisterCount; i++)
    456  1.1  christos         {
    457  1.1  christos             ArrayOffset = Subtable->AddressSizeOffset +
    458  1.1  christos                 (sizeof (UINT32) * i);
    459  1.1  christos             AbsoluteOffset = Offset + ArrayOffset;
    460  1.1  christos             Array = (UINT8 *) Subtable + ArrayOffset;
    461  1.1  christos 
    462  1.1  christos             Status = AcpiDmDumpTable (Length, AbsoluteOffset, Array,
    463  1.1  christos                 Subtable->Length, AcpiDmTableInfoDbg2Size);
    464  1.1  christos             if (ACPI_FAILURE (Status))
    465  1.1  christos             {
    466  1.1  christos                 return;
    467  1.1  christos             }
    468  1.1  christos         }
    469  1.1  christos 
    470  1.1  christos         /* Dump the Namestring (required) */
    471  1.1  christos 
    472  1.1  christos         AcpiOsPrintf ("\n");
    473  1.1  christos         ArrayOffset = Subtable->NamepathOffset;
    474  1.1  christos         AbsoluteOffset = Offset + ArrayOffset;
    475  1.1  christos         Array = (UINT8 *) Subtable + ArrayOffset;
    476  1.1  christos 
    477  1.1  christos         Status = AcpiDmDumpTable (Length, AbsoluteOffset, Array,
    478  1.1  christos             Subtable->Length, AcpiDmTableInfoDbg2Name);
    479  1.1  christos         if (ACPI_FAILURE (Status))
    480  1.1  christos         {
    481  1.1  christos             return;
    482  1.1  christos         }
    483  1.1  christos 
    484  1.1  christos         /* Dump the OemData (optional) */
    485  1.1  christos 
    486  1.1  christos         if (Subtable->OemDataOffset)
    487  1.1  christos         {
    488  1.1  christos             Status = AcpiDmDumpTable (Length, Offset + Subtable->OemDataOffset,
    489  1.1  christos                 Table, Subtable->OemDataLength,
    490  1.1  christos                 AcpiDmTableInfoDbg2OemData);
    491  1.1  christos             if (ACPI_FAILURE (Status))
    492  1.1  christos             {
    493  1.1  christos                 return;
    494  1.1  christos             }
    495  1.1  christos         }
    496  1.1  christos 
    497  1.1  christos         /* Point to next subtable */
    498  1.1  christos 
    499  1.1  christos         Offset += Subtable->Length;
    500  1.1  christos         Subtable = ACPI_ADD_PTR (ACPI_DBG2_DEVICE, Subtable,
    501  1.1  christos             Subtable->Length);
    502  1.1  christos     }
    503  1.1  christos }
    504  1.1  christos 
    505  1.1  christos 
    506  1.1  christos /*******************************************************************************
    507  1.1  christos  *
    508  1.1  christos  * FUNCTION:    AcpiDmDumpDmar
    509  1.1  christos  *
    510  1.1  christos  * PARAMETERS:  Table               - A DMAR table
    511  1.1  christos  *
    512  1.1  christos  * RETURN:      None
    513  1.1  christos  *
    514  1.1  christos  * DESCRIPTION: Format the contents of a DMAR. This table type consists
    515  1.1  christos  *              of an open-ended number of subtables.
    516  1.1  christos  *
    517  1.1  christos  ******************************************************************************/
    518  1.1  christos 
    519  1.1  christos void
    520  1.1  christos AcpiDmDumpDmar (
    521  1.1  christos     ACPI_TABLE_HEADER       *Table)
    522  1.1  christos {
    523  1.1  christos     ACPI_STATUS             Status;
    524  1.1  christos     ACPI_DMAR_HEADER        *Subtable;
    525  1.1  christos     UINT32                  Length = Table->Length;
    526  1.1  christos     UINT32                  Offset = sizeof (ACPI_TABLE_DMAR);
    527  1.1  christos     ACPI_DMTABLE_INFO       *InfoTable;
    528  1.1  christos     ACPI_DMAR_DEVICE_SCOPE  *ScopeTable;
    529  1.1  christos     UINT32                  ScopeOffset;
    530  1.1  christos     UINT8                   *PciPath;
    531  1.1  christos     UINT32                  PathOffset;
    532  1.1  christos 
    533  1.1  christos 
    534  1.1  christos     /* Main table */
    535  1.1  christos 
    536  1.1  christos     Status = AcpiDmDumpTable (Length, 0, Table, 0, AcpiDmTableInfoDmar);
    537  1.1  christos     if (ACPI_FAILURE (Status))
    538  1.1  christos     {
    539  1.1  christos         return;
    540  1.1  christos     }
    541  1.1  christos 
    542  1.1  christos     /* Subtables */
    543  1.1  christos 
    544  1.1  christos     Subtable = ACPI_ADD_PTR (ACPI_DMAR_HEADER, Table, Offset);
    545  1.1  christos     while (Offset < Table->Length)
    546  1.1  christos     {
    547  1.1  christos         /* Common subtable header */
    548  1.1  christos 
    549  1.1  christos         AcpiOsPrintf ("\n");
    550  1.1  christos         Status = AcpiDmDumpTable (Length, Offset, Subtable,
    551  1.1  christos             Subtable->Length, AcpiDmTableInfoDmarHdr);
    552  1.1  christos         if (ACPI_FAILURE (Status))
    553  1.1  christos         {
    554  1.1  christos             return;
    555  1.1  christos         }
    556  1.1  christos 
    557  1.1  christos         AcpiOsPrintf ("\n");
    558  1.1  christos 
    559  1.1  christos         switch (Subtable->Type)
    560  1.1  christos         {
    561  1.1  christos         case ACPI_DMAR_TYPE_HARDWARE_UNIT:
    562  1.1  christos 
    563  1.1  christos             InfoTable = AcpiDmTableInfoDmar0;
    564  1.1  christos             ScopeOffset = sizeof (ACPI_DMAR_HARDWARE_UNIT);
    565  1.1  christos             break;
    566  1.1  christos 
    567  1.1  christos         case ACPI_DMAR_TYPE_RESERVED_MEMORY:
    568  1.1  christos 
    569  1.1  christos             InfoTable = AcpiDmTableInfoDmar1;
    570  1.1  christos             ScopeOffset = sizeof (ACPI_DMAR_RESERVED_MEMORY);
    571  1.1  christos             break;
    572  1.1  christos 
    573  1.1  christos         case ACPI_DMAR_TYPE_ROOT_ATS:
    574  1.1  christos 
    575  1.1  christos             InfoTable = AcpiDmTableInfoDmar2;
    576  1.1  christos             ScopeOffset = sizeof (ACPI_DMAR_ATSR);
    577  1.1  christos             break;
    578  1.1  christos 
    579  1.1  christos         case ACPI_DMAR_TYPE_HARDWARE_AFFINITY:
    580  1.1  christos 
    581  1.1  christos             InfoTable = AcpiDmTableInfoDmar3;
    582  1.1  christos             ScopeOffset = sizeof (ACPI_DMAR_RHSA);
    583  1.1  christos             break;
    584  1.1  christos 
    585  1.1  christos         case ACPI_DMAR_TYPE_NAMESPACE:
    586  1.1  christos 
    587  1.1  christos             InfoTable = AcpiDmTableInfoDmar4;
    588  1.1  christos             ScopeOffset = sizeof (ACPI_DMAR_ANDD);
    589  1.1  christos             break;
    590  1.1  christos 
    591  1.1  christos         default:
    592  1.1  christos 
    593  1.1  christos             AcpiOsPrintf ("\n**** Unknown DMAR subtable type 0x%X\n\n",
    594  1.1  christos                 Subtable->Type);
    595  1.1  christos             return;
    596  1.1  christos         }
    597  1.1  christos 
    598  1.1  christos         Status = AcpiDmDumpTable (Length, Offset, Subtable,
    599  1.1  christos             Subtable->Length, InfoTable);
    600  1.1  christos         if (ACPI_FAILURE (Status))
    601  1.1  christos         {
    602  1.1  christos             return;
    603  1.1  christos         }
    604  1.1  christos 
    605  1.1  christos         /*
    606  1.1  christos          * Dump the optional device scope entries
    607  1.1  christos          */
    608  1.1  christos         if ((Subtable->Type == ACPI_DMAR_TYPE_HARDWARE_AFFINITY) ||
    609  1.1  christos             (Subtable->Type == ACPI_DMAR_TYPE_NAMESPACE))
    610  1.1  christos         {
    611  1.1  christos             /* These types do not support device scopes */
    612  1.1  christos 
    613  1.1  christos             goto NextSubtable;
    614  1.1  christos         }
    615  1.1  christos 
    616  1.1  christos         ScopeTable = ACPI_ADD_PTR (ACPI_DMAR_DEVICE_SCOPE, Subtable, ScopeOffset);
    617  1.1  christos         while (ScopeOffset < Subtable->Length)
    618  1.1  christos         {
    619  1.1  christos             AcpiOsPrintf ("\n");
    620  1.1  christos             Status = AcpiDmDumpTable (Length, Offset + ScopeOffset, ScopeTable,
    621  1.1  christos                 ScopeTable->Length, AcpiDmTableInfoDmarScope);
    622  1.1  christos             if (ACPI_FAILURE (Status))
    623  1.1  christos             {
    624  1.1  christos                 return;
    625  1.1  christos             }
    626  1.1  christos             AcpiOsPrintf ("\n");
    627  1.1  christos 
    628  1.1  christos             /* Dump the PCI Path entries for this device scope */
    629  1.1  christos 
    630  1.1  christos             PathOffset = sizeof (ACPI_DMAR_DEVICE_SCOPE); /* Path entries start at this offset */
    631  1.1  christos 
    632  1.1  christos             PciPath = ACPI_ADD_PTR (UINT8, ScopeTable,
    633  1.1  christos                 sizeof (ACPI_DMAR_DEVICE_SCOPE));
    634  1.1  christos 
    635  1.1  christos             while (PathOffset < ScopeTable->Length)
    636  1.1  christos             {
    637  1.1  christos                 AcpiDmLineHeader ((PathOffset + ScopeOffset + Offset), 2,
    638  1.1  christos                     "PCI Path");
    639  1.1  christos                 AcpiOsPrintf ("%2.2X,%2.2X\n", PciPath[0], PciPath[1]);
    640  1.1  christos 
    641  1.1  christos                 /* Point to next PCI Path entry */
    642  1.1  christos 
    643  1.1  christos                 PathOffset += 2;
    644  1.1  christos                 PciPath += 2;
    645  1.1  christos                 AcpiOsPrintf ("\n");
    646  1.1  christos             }
    647  1.1  christos 
    648  1.1  christos             /* Point to next device scope entry */
    649  1.1  christos 
    650  1.1  christos             ScopeOffset += ScopeTable->Length;
    651  1.1  christos             ScopeTable = ACPI_ADD_PTR (ACPI_DMAR_DEVICE_SCOPE,
    652  1.1  christos                 ScopeTable, ScopeTable->Length);
    653  1.1  christos         }
    654  1.1  christos 
    655  1.1  christos NextSubtable:
    656  1.1  christos         /* Point to next subtable */
    657  1.1  christos 
    658  1.1  christos         Offset += Subtable->Length;
    659  1.1  christos         Subtable = ACPI_ADD_PTR (ACPI_DMAR_HEADER, Subtable,
    660  1.1  christos             Subtable->Length);
    661  1.1  christos     }
    662  1.1  christos }
    663  1.1  christos 
    664  1.1  christos 
    665  1.1  christos /*******************************************************************************
    666  1.1  christos  *
    667  1.1  christos  * FUNCTION:    AcpiDmDumpDrtm
    668  1.1  christos  *
    669  1.1  christos  * PARAMETERS:  Table               - A DRTM table
    670  1.1  christos  *
    671  1.1  christos  * RETURN:      None
    672  1.1  christos  *
    673  1.1  christos  * DESCRIPTION: Format the contents of a DRTM.
    674  1.1  christos  *
    675  1.1  christos  ******************************************************************************/
    676  1.1  christos 
    677  1.1  christos void
    678  1.1  christos AcpiDmDumpDrtm (
    679  1.1  christos     ACPI_TABLE_HEADER       *Table)
    680  1.1  christos {
    681  1.1  christos     ACPI_STATUS             Status;
    682  1.1  christos     UINT32                  Offset;
    683  1.1  christos     ACPI_DRTM_VTABLE_LIST   *DrtmVtl;
    684  1.1  christos     ACPI_DRTM_RESOURCE_LIST *DrtmRl;
    685  1.1  christos     ACPI_DRTM_DPS_ID        *DrtmDps;
    686  1.1  christos     UINT32                  Count;
    687  1.1  christos 
    688  1.1  christos 
    689  1.1  christos     /* Main table */
    690  1.1  christos 
    691  1.1  christos     Status = AcpiDmDumpTable (Table->Length, 0, Table, 0,
    692  1.1  christos         AcpiDmTableInfoDrtm);
    693  1.1  christos     if (ACPI_FAILURE (Status))
    694  1.1  christos     {
    695  1.1  christos         return;
    696  1.1  christos     }
    697  1.1  christos 
    698  1.1  christos     Offset = sizeof (ACPI_TABLE_DRTM);
    699  1.1  christos 
    700  1.1  christos     /* Sub-tables */
    701  1.1  christos 
    702  1.1  christos     /* Dump ValidatedTable length */
    703  1.1  christos 
    704  1.1  christos     DrtmVtl = ACPI_ADD_PTR (ACPI_DRTM_VTABLE_LIST, Table, Offset);
    705  1.1  christos     AcpiOsPrintf ("\n");
    706  1.1  christos     Status = AcpiDmDumpTable (Table->Length, Offset,
    707  1.1  christos         DrtmVtl, ACPI_OFFSET (ACPI_DRTM_VTABLE_LIST, ValidatedTables),
    708  1.1  christos         AcpiDmTableInfoDrtm0);
    709  1.1  christos     if (ACPI_FAILURE (Status))
    710  1.1  christos     {
    711  1.1  christos             return;
    712  1.1  christos     }
    713  1.1  christos 
    714  1.1  christos     Offset += ACPI_OFFSET (ACPI_DRTM_VTABLE_LIST, ValidatedTables);
    715  1.1  christos 
    716  1.1  christos     /* Dump Validated table addresses */
    717  1.1  christos 
    718  1.1  christos     Count = 0;
    719  1.1  christos     while ((Offset < Table->Length) &&
    720  1.1  christos             (DrtmVtl->ValidatedTableCount > Count))
    721  1.1  christos     {
    722  1.1  christos         Status = AcpiDmDumpTable (Table->Length, Offset,
    723  1.1  christos             ACPI_ADD_PTR (void, Table, Offset), sizeof (UINT64),
    724  1.1  christos             AcpiDmTableInfoDrtm0a);
    725  1.1  christos         if (ACPI_FAILURE (Status))
    726  1.1  christos         {
    727  1.1  christos             return;
    728  1.1  christos         }
    729  1.1  christos 
    730  1.1  christos         Offset += sizeof (UINT64);
    731  1.1  christos         Count++;
    732  1.1  christos     }
    733  1.1  christos 
    734  1.1  christos     /* Dump ResourceList length */
    735  1.1  christos 
    736  1.1  christos     DrtmRl = ACPI_ADD_PTR (ACPI_DRTM_RESOURCE_LIST, Table, Offset);
    737  1.1  christos     AcpiOsPrintf ("\n");
    738  1.1  christos     Status = AcpiDmDumpTable (Table->Length, Offset,
    739  1.1  christos         DrtmRl, ACPI_OFFSET (ACPI_DRTM_RESOURCE_LIST, Resources),
    740  1.1  christos         AcpiDmTableInfoDrtm1);
    741  1.1  christos     if (ACPI_FAILURE (Status))
    742  1.1  christos     {
    743  1.1  christos         return;
    744  1.1  christos     }
    745  1.1  christos 
    746  1.1  christos     Offset += ACPI_OFFSET (ACPI_DRTM_RESOURCE_LIST, Resources);
    747  1.1  christos 
    748  1.1  christos     /* Dump the Resource List */
    749  1.1  christos 
    750  1.1  christos     Count = 0;
    751  1.1  christos     while ((Offset < Table->Length) &&
    752  1.1  christos            (DrtmRl->ResourceCount > Count))
    753  1.1  christos     {
    754  1.1  christos         Status = AcpiDmDumpTable (Table->Length, Offset,
    755  1.1  christos             ACPI_ADD_PTR (void, Table, Offset),
    756  1.1  christos             sizeof (ACPI_DRTM_RESOURCE), AcpiDmTableInfoDrtm1a);
    757  1.1  christos         if (ACPI_FAILURE (Status))
    758  1.1  christos         {
    759  1.1  christos             return;
    760  1.1  christos         }
    761  1.1  christos 
    762  1.1  christos         Offset += sizeof (ACPI_DRTM_RESOURCE);
    763  1.1  christos         Count++;
    764  1.1  christos     }
    765  1.1  christos 
    766  1.1  christos     /* Dump DPS */
    767  1.1  christos 
    768  1.1  christos     DrtmDps = ACPI_ADD_PTR (ACPI_DRTM_DPS_ID, Table, Offset);
    769  1.1  christos     AcpiOsPrintf ("\n");
    770  1.1  christos     (void) AcpiDmDumpTable (Table->Length, Offset,
    771  1.1  christos         DrtmDps, sizeof (ACPI_DRTM_DPS_ID), AcpiDmTableInfoDrtm2);
    772  1.1  christos }
    773  1.1  christos 
    774  1.1  christos 
    775  1.1  christos /*******************************************************************************
    776  1.1  christos  *
    777  1.1  christos  * FUNCTION:    AcpiDmDumpEinj
    778  1.1  christos  *
    779  1.1  christos  * PARAMETERS:  Table               - A EINJ table
    780  1.1  christos  *
    781  1.1  christos  * RETURN:      None
    782  1.1  christos  *
    783  1.1  christos  * DESCRIPTION: Format the contents of a EINJ. This table type consists
    784  1.1  christos  *              of an open-ended number of subtables.
    785  1.1  christos  *
    786  1.1  christos  ******************************************************************************/
    787  1.1  christos 
    788  1.1  christos void
    789  1.1  christos AcpiDmDumpEinj (
    790  1.1  christos     ACPI_TABLE_HEADER       *Table)
    791  1.1  christos {
    792  1.1  christos     ACPI_STATUS             Status;
    793  1.1  christos     ACPI_WHEA_HEADER        *Subtable;
    794  1.1  christos     UINT32                  Length = Table->Length;
    795  1.1  christos     UINT32                  Offset = sizeof (ACPI_TABLE_EINJ);
    796  1.1  christos 
    797  1.1  christos 
    798  1.1  christos     /* Main table */
    799  1.1  christos 
    800  1.1  christos     Status = AcpiDmDumpTable (Length, 0, Table, 0, AcpiDmTableInfoEinj);
    801  1.1  christos     if (ACPI_FAILURE (Status))
    802  1.1  christos     {
    803  1.1  christos         return;
    804  1.1  christos     }
    805  1.1  christos 
    806  1.1  christos     /* Subtables */
    807  1.1  christos 
    808  1.1  christos     Subtable = ACPI_ADD_PTR (ACPI_WHEA_HEADER, Table, Offset);
    809  1.1  christos     while (Offset < Table->Length)
    810  1.1  christos     {
    811  1.1  christos         AcpiOsPrintf ("\n");
    812  1.1  christos         Status = AcpiDmDumpTable (Length, Offset, Subtable,
    813  1.1  christos             sizeof (ACPI_WHEA_HEADER), AcpiDmTableInfoEinj0);
    814  1.1  christos         if (ACPI_FAILURE (Status))
    815  1.1  christos         {
    816  1.1  christos             return;
    817  1.1  christos         }
    818  1.1  christos 
    819  1.1  christos         /* Point to next subtable (each subtable is of fixed length) */
    820  1.1  christos 
    821  1.1  christos         Offset += sizeof (ACPI_WHEA_HEADER);
    822  1.1  christos         Subtable = ACPI_ADD_PTR (ACPI_WHEA_HEADER, Subtable,
    823  1.1  christos             sizeof (ACPI_WHEA_HEADER));
    824  1.1  christos     }
    825  1.1  christos }
    826  1.1  christos 
    827  1.1  christos 
    828  1.1  christos /*******************************************************************************
    829  1.1  christos  *
    830  1.1  christos  * FUNCTION:    AcpiDmDumpErst
    831  1.1  christos  *
    832  1.1  christos  * PARAMETERS:  Table               - A ERST table
    833  1.1  christos  *
    834  1.1  christos  * RETURN:      None
    835  1.1  christos  *
    836  1.1  christos  * DESCRIPTION: Format the contents of a ERST. This table type consists
    837  1.1  christos  *              of an open-ended number of subtables.
    838  1.1  christos  *
    839  1.1  christos  ******************************************************************************/
    840  1.1  christos 
    841  1.1  christos void
    842  1.1  christos AcpiDmDumpErst (
    843  1.1  christos     ACPI_TABLE_HEADER       *Table)
    844  1.1  christos {
    845  1.1  christos     ACPI_STATUS             Status;
    846  1.1  christos     ACPI_WHEA_HEADER        *Subtable;
    847  1.1  christos     UINT32                  Length = Table->Length;
    848  1.1  christos     UINT32                  Offset = sizeof (ACPI_TABLE_ERST);
    849  1.1  christos 
    850  1.1  christos 
    851  1.1  christos     /* Main table */
    852  1.1  christos 
    853  1.1  christos     Status = AcpiDmDumpTable (Length, 0, Table, 0, AcpiDmTableInfoErst);
    854  1.1  christos     if (ACPI_FAILURE (Status))
    855  1.1  christos     {
    856  1.1  christos         return;
    857  1.1  christos     }
    858  1.1  christos 
    859  1.1  christos     /* Subtables */
    860  1.1  christos 
    861  1.1  christos     Subtable = ACPI_ADD_PTR (ACPI_WHEA_HEADER, Table, Offset);
    862  1.1  christos     while (Offset < Table->Length)
    863  1.1  christos     {
    864  1.1  christos         AcpiOsPrintf ("\n");
    865  1.1  christos         Status = AcpiDmDumpTable (Length, Offset, Subtable,
    866  1.1  christos             sizeof (ACPI_WHEA_HEADER), AcpiDmTableInfoErst0);
    867  1.1  christos         if (ACPI_FAILURE (Status))
    868  1.1  christos         {
    869  1.1  christos             return;
    870  1.1  christos         }
    871  1.1  christos 
    872  1.1  christos         /* Point to next subtable (each subtable is of fixed length) */
    873  1.1  christos 
    874  1.1  christos         Offset += sizeof (ACPI_WHEA_HEADER);
    875  1.1  christos         Subtable = ACPI_ADD_PTR (ACPI_WHEA_HEADER, Subtable,
    876  1.1  christos             sizeof (ACPI_WHEA_HEADER));
    877  1.1  christos     }
    878  1.1  christos }
    879  1.1  christos 
    880  1.1  christos 
    881  1.1  christos /*******************************************************************************
    882  1.1  christos  *
    883  1.1  christos  * FUNCTION:    AcpiDmDumpFpdt
    884  1.1  christos  *
    885  1.1  christos  * PARAMETERS:  Table               - A FPDT table
    886  1.1  christos  *
    887  1.1  christos  * RETURN:      None
    888  1.1  christos  *
    889  1.1  christos  * DESCRIPTION: Format the contents of a FPDT. This table type consists
    890  1.1  christos  *              of an open-ended number of subtables.
    891  1.1  christos  *
    892  1.1  christos  ******************************************************************************/
    893  1.1  christos 
    894  1.1  christos void
    895  1.1  christos AcpiDmDumpFpdt (
    896  1.1  christos     ACPI_TABLE_HEADER       *Table)
    897  1.1  christos {
    898  1.1  christos     ACPI_STATUS             Status;
    899  1.1  christos     ACPI_FPDT_HEADER        *Subtable;
    900  1.1  christos     UINT32                  Length = Table->Length;
    901  1.1  christos     UINT32                  Offset = sizeof (ACPI_TABLE_FPDT);
    902  1.1  christos     ACPI_DMTABLE_INFO       *InfoTable;
    903  1.1  christos 
    904  1.1  christos 
    905  1.1  christos     /* There is no main table (other than the standard ACPI header) */
    906  1.1  christos 
    907  1.1  christos     /* Subtables */
    908  1.1  christos 
    909  1.1  christos     Subtable = ACPI_ADD_PTR (ACPI_FPDT_HEADER, Table, Offset);
    910  1.1  christos     while (Offset < Table->Length)
    911  1.1  christos     {
    912  1.1  christos         /* Common subtable header */
    913  1.1  christos 
    914  1.1  christos         AcpiOsPrintf ("\n");
    915  1.1  christos         Status = AcpiDmDumpTable (Length, Offset, Subtable,
    916  1.1  christos             Subtable->Length, AcpiDmTableInfoFpdtHdr);
    917  1.1  christos         if (ACPI_FAILURE (Status))
    918  1.1  christos         {
    919  1.1  christos             return;
    920  1.1  christos         }
    921  1.1  christos 
    922  1.1  christos         switch (Subtable->Type)
    923  1.1  christos         {
    924  1.1  christos         case ACPI_FPDT_TYPE_BOOT:
    925  1.1  christos 
    926  1.1  christos             InfoTable = AcpiDmTableInfoFpdt0;
    927  1.1  christos             break;
    928  1.1  christos 
    929  1.1  christos         case ACPI_FPDT_TYPE_S3PERF:
    930  1.1  christos 
    931  1.1  christos             InfoTable = AcpiDmTableInfoFpdt1;
    932  1.1  christos             break;
    933  1.1  christos 
    934  1.1  christos         default:
    935  1.1  christos 
    936  1.1  christos             AcpiOsPrintf ("\n**** Unknown FPDT subtable type 0x%X\n\n",
    937  1.1  christos                 Subtable->Type);
    938  1.1  christos 
    939  1.1  christos             /* Attempt to continue */
    940  1.1  christos 
    941  1.1  christos             if (!Subtable->Length)
    942  1.1  christos             {
    943  1.1  christos                 AcpiOsPrintf ("Invalid zero length subtable\n");
    944  1.1  christos                 return;
    945  1.1  christos             }
    946  1.1  christos             goto NextSubtable;
    947  1.1  christos         }
    948  1.1  christos 
    949  1.1  christos         Status = AcpiDmDumpTable (Length, Offset, Subtable,
    950  1.1  christos             Subtable->Length, InfoTable);
    951  1.1  christos         if (ACPI_FAILURE (Status))
    952  1.1  christos         {
    953  1.1  christos             return;
    954  1.1  christos         }
    955  1.1  christos 
    956  1.1  christos NextSubtable:
    957  1.1  christos         /* Point to next subtable */
    958  1.1  christos 
    959  1.1  christos         Offset += Subtable->Length;
    960  1.1  christos         Subtable = ACPI_ADD_PTR (ACPI_FPDT_HEADER, Subtable,
    961  1.1  christos             Subtable->Length);
    962  1.1  christos     }
    963  1.1  christos }
    964  1.1  christos 
    965  1.1  christos 
    966  1.1  christos /*******************************************************************************
    967  1.1  christos  *
    968  1.1  christos  * FUNCTION:    AcpiDmDumpGtdt
    969  1.1  christos  *
    970  1.1  christos  * PARAMETERS:  Table               - A GTDT table
    971  1.1  christos  *
    972  1.1  christos  * RETURN:      None
    973  1.1  christos  *
    974  1.1  christos  * DESCRIPTION: Format the contents of a GTDT. This table type consists
    975  1.1  christos  *              of an open-ended number of subtables.
    976  1.1  christos  *
    977  1.1  christos  ******************************************************************************/
    978  1.1  christos 
    979  1.1  christos void
    980  1.1  christos AcpiDmDumpGtdt (
    981  1.1  christos     ACPI_TABLE_HEADER       *Table)
    982  1.1  christos {
    983  1.1  christos     ACPI_STATUS             Status;
    984  1.1  christos     ACPI_GTDT_HEADER        *Subtable;
    985  1.1  christos     UINT32                  Length = Table->Length;
    986  1.1  christos     UINT32                  Offset = sizeof (ACPI_TABLE_GTDT);
    987  1.1  christos     ACPI_DMTABLE_INFO       *InfoTable;
    988  1.1  christos     UINT32                  SubtableLength;
    989  1.1  christos     UINT32                  GtCount;
    990  1.1  christos     ACPI_GTDT_TIMER_ENTRY   *GtxTable;
    991  1.1  christos 
    992  1.1  christos 
    993  1.1  christos     /* Main table */
    994  1.1  christos 
    995  1.1  christos     Status = AcpiDmDumpTable (Length, 0, Table, 0, AcpiDmTableInfoGtdt);
    996  1.1  christos     if (ACPI_FAILURE (Status))
    997  1.1  christos     {
    998  1.1  christos         return;
    999  1.1  christos     }
   1000  1.1  christos 
   1001  1.1  christos     /* Subtables */
   1002  1.1  christos 
   1003  1.1  christos     Subtable = ACPI_ADD_PTR (ACPI_GTDT_HEADER, Table, Offset);
   1004  1.1  christos     while (Offset < Table->Length)
   1005  1.1  christos     {
   1006  1.1  christos         /* Common subtable header */
   1007  1.1  christos 
   1008  1.1  christos         AcpiOsPrintf ("\n");
   1009  1.1  christos         Status = AcpiDmDumpTable (Length, Offset, Subtable,
   1010  1.1  christos             Subtable->Length, AcpiDmTableInfoGtdtHdr);
   1011  1.1  christos         if (ACPI_FAILURE (Status))
   1012  1.1  christos         {
   1013  1.1  christos             return;
   1014  1.1  christos         }
   1015  1.1  christos 
   1016  1.1  christos         GtCount = 0;
   1017  1.1  christos         switch (Subtable->Type)
   1018  1.1  christos         {
   1019  1.1  christos         case ACPI_GTDT_TYPE_TIMER_BLOCK:
   1020  1.1  christos 
   1021  1.1  christos             SubtableLength = sizeof (ACPI_GTDT_TIMER_BLOCK);
   1022  1.1  christos             GtCount = (ACPI_CAST_PTR (ACPI_GTDT_TIMER_BLOCK,
   1023  1.1  christos                 Subtable))->TimerCount;
   1024  1.1  christos 
   1025  1.1  christos             InfoTable = AcpiDmTableInfoGtdt0;
   1026  1.1  christos             break;
   1027  1.1  christos 
   1028  1.1  christos         case ACPI_GTDT_TYPE_WATCHDOG:
   1029  1.1  christos 
   1030  1.1  christos             SubtableLength = sizeof (ACPI_GTDT_WATCHDOG);
   1031  1.1  christos 
   1032  1.1  christos             InfoTable = AcpiDmTableInfoGtdt1;
   1033  1.1  christos             break;
   1034  1.1  christos 
   1035  1.1  christos         default:
   1036  1.1  christos 
   1037  1.1  christos             /* Cannot continue on unknown type - no length */
   1038  1.1  christos 
   1039  1.1  christos             AcpiOsPrintf ("\n**** Unknown GTDT subtable type 0x%X\n",
   1040  1.1  christos                 Subtable->Type);
   1041  1.1  christos             return;
   1042  1.1  christos         }
   1043  1.1  christos 
   1044  1.1  christos         Status = AcpiDmDumpTable (Length, Offset, Subtable,
   1045  1.1  christos             Subtable->Length, InfoTable);
   1046  1.1  christos         if (ACPI_FAILURE (Status))
   1047  1.1  christos         {
   1048  1.1  christos             return;
   1049  1.1  christos         }
   1050  1.1  christos 
   1051  1.1  christos         /* Point to end of current subtable (each subtable above is of fixed length) */
   1052  1.1  christos 
   1053  1.1  christos         Offset += SubtableLength;
   1054  1.1  christos 
   1055  1.1  christos         /* If there are any Gt Timer Blocks from above, dump them now */
   1056  1.1  christos 
   1057  1.1  christos         if (GtCount)
   1058  1.1  christos         {
   1059  1.1  christos             GtxTable = ACPI_ADD_PTR (
   1060  1.1  christos                 ACPI_GTDT_TIMER_ENTRY, Subtable, SubtableLength);
   1061  1.1  christos             SubtableLength += GtCount * sizeof (ACPI_GTDT_TIMER_ENTRY);
   1062  1.1  christos 
   1063  1.1  christos             while (GtCount)
   1064  1.1  christos             {
   1065  1.1  christos                 AcpiOsPrintf ("\n");
   1066  1.1  christos                 Status = AcpiDmDumpTable (Length, Offset, GtxTable,
   1067  1.1  christos                     sizeof (ACPI_GTDT_TIMER_ENTRY), AcpiDmTableInfoGtdt0a);
   1068  1.1  christos                 if (ACPI_FAILURE (Status))
   1069  1.1  christos                 {
   1070  1.1  christos                     return;
   1071  1.1  christos                 }
   1072  1.1  christos                 Offset += sizeof (ACPI_GTDT_TIMER_ENTRY);
   1073  1.1  christos                 GtxTable++;
   1074  1.1  christos                 GtCount--;
   1075  1.1  christos             }
   1076  1.1  christos         }
   1077  1.1  christos 
   1078  1.1  christos         /* Point to next subtable */
   1079  1.1  christos 
   1080  1.1  christos         Subtable = ACPI_ADD_PTR (ACPI_GTDT_HEADER, Subtable, SubtableLength);
   1081  1.1  christos     }
   1082  1.1  christos }
   1083  1.1  christos 
   1084  1.1  christos 
   1085  1.1  christos /*******************************************************************************
   1086  1.1  christos  *
   1087  1.1  christos  * FUNCTION:    AcpiDmDumpHest
   1088  1.1  christos  *
   1089  1.1  christos  * PARAMETERS:  Table               - A HEST table
   1090  1.1  christos  *
   1091  1.1  christos  * RETURN:      None
   1092  1.1  christos  *
   1093  1.1  christos  * DESCRIPTION: Format the contents of a HEST. This table type consists
   1094  1.1  christos  *              of an open-ended number of subtables.
   1095  1.1  christos  *
   1096  1.1  christos  ******************************************************************************/
   1097  1.1  christos 
   1098  1.1  christos void
   1099  1.1  christos AcpiDmDumpHest (
   1100  1.1  christos     ACPI_TABLE_HEADER       *Table)
   1101  1.1  christos {
   1102  1.1  christos     ACPI_STATUS             Status;
   1103  1.1  christos     ACPI_HEST_HEADER        *Subtable;
   1104  1.1  christos     UINT32                  Length = Table->Length;
   1105  1.1  christos     UINT32                  Offset = sizeof (ACPI_TABLE_HEST);
   1106  1.1  christos     ACPI_DMTABLE_INFO       *InfoTable;
   1107  1.1  christos     UINT32                  SubtableLength;
   1108  1.1  christos     UINT32                  BankCount;
   1109  1.1  christos     ACPI_HEST_IA_ERROR_BANK *BankTable;
   1110  1.1  christos 
   1111  1.1  christos 
   1112  1.1  christos     /* Main table */
   1113  1.1  christos 
   1114  1.1  christos     Status = AcpiDmDumpTable (Length, 0, Table, 0, AcpiDmTableInfoHest);
   1115  1.1  christos     if (ACPI_FAILURE (Status))
   1116  1.1  christos     {
   1117  1.1  christos         return;
   1118  1.1  christos     }
   1119  1.1  christos 
   1120  1.1  christos     /* Subtables */
   1121  1.1  christos 
   1122  1.1  christos     Subtable = ACPI_ADD_PTR (ACPI_HEST_HEADER, Table, Offset);
   1123  1.1  christos     while (Offset < Table->Length)
   1124  1.1  christos     {
   1125  1.1  christos         BankCount = 0;
   1126  1.1  christos         switch (Subtable->Type)
   1127  1.1  christos         {
   1128  1.1  christos         case ACPI_HEST_TYPE_IA32_CHECK:
   1129  1.1  christos 
   1130  1.1  christos             InfoTable = AcpiDmTableInfoHest0;
   1131  1.1  christos             SubtableLength = sizeof (ACPI_HEST_IA_MACHINE_CHECK);
   1132  1.1  christos             BankCount = (ACPI_CAST_PTR (ACPI_HEST_IA_MACHINE_CHECK,
   1133  1.1  christos                 Subtable))->NumHardwareBanks;
   1134  1.1  christos             break;
   1135  1.1  christos 
   1136  1.1  christos         case ACPI_HEST_TYPE_IA32_CORRECTED_CHECK:
   1137  1.1  christos 
   1138  1.1  christos             InfoTable = AcpiDmTableInfoHest1;
   1139  1.1  christos             SubtableLength = sizeof (ACPI_HEST_IA_CORRECTED);
   1140  1.1  christos             BankCount = (ACPI_CAST_PTR (ACPI_HEST_IA_CORRECTED,
   1141  1.1  christos                 Subtable))->NumHardwareBanks;
   1142  1.1  christos             break;
   1143  1.1  christos 
   1144  1.1  christos         case ACPI_HEST_TYPE_IA32_NMI:
   1145  1.1  christos 
   1146  1.1  christos             InfoTable = AcpiDmTableInfoHest2;
   1147  1.1  christos             SubtableLength = sizeof (ACPI_HEST_IA_NMI);
   1148  1.1  christos             break;
   1149  1.1  christos 
   1150  1.1  christos         case ACPI_HEST_TYPE_AER_ROOT_PORT:
   1151  1.1  christos 
   1152  1.1  christos             InfoTable = AcpiDmTableInfoHest6;
   1153  1.1  christos             SubtableLength = sizeof (ACPI_HEST_AER_ROOT);
   1154  1.1  christos             break;
   1155  1.1  christos 
   1156  1.1  christos         case ACPI_HEST_TYPE_AER_ENDPOINT:
   1157  1.1  christos 
   1158  1.1  christos             InfoTable = AcpiDmTableInfoHest7;
   1159  1.1  christos             SubtableLength = sizeof (ACPI_HEST_AER);
   1160  1.1  christos             break;
   1161  1.1  christos 
   1162  1.1  christos         case ACPI_HEST_TYPE_AER_BRIDGE:
   1163  1.1  christos 
   1164  1.1  christos             InfoTable = AcpiDmTableInfoHest8;
   1165  1.1  christos             SubtableLength = sizeof (ACPI_HEST_AER_BRIDGE);
   1166  1.1  christos             break;
   1167  1.1  christos 
   1168  1.1  christos         case ACPI_HEST_TYPE_GENERIC_ERROR:
   1169  1.1  christos 
   1170  1.1  christos             InfoTable = AcpiDmTableInfoHest9;
   1171  1.1  christos             SubtableLength = sizeof (ACPI_HEST_GENERIC);
   1172  1.1  christos             break;
   1173  1.1  christos 
   1174  1.1  christos         case ACPI_HEST_TYPE_GENERIC_ERROR_V2:
   1175  1.1  christos 
   1176  1.1  christos             InfoTable = AcpiDmTableInfoHest10;
   1177  1.1  christos             SubtableLength = sizeof (ACPI_HEST_GENERIC_V2);
   1178  1.1  christos             break;
   1179  1.1  christos 
   1180  1.1  christos         case ACPI_HEST_TYPE_IA32_DEFERRED_CHECK:
   1181  1.1  christos 
   1182  1.1  christos             InfoTable = AcpiDmTableInfoHest11;
   1183  1.1  christos             SubtableLength = sizeof (ACPI_HEST_IA_DEFERRED_CHECK);
   1184  1.1  christos             BankCount = (ACPI_CAST_PTR (ACPI_HEST_IA_DEFERRED_CHECK,
   1185  1.1  christos                 Subtable))->NumHardwareBanks;
   1186  1.1  christos             break;
   1187  1.1  christos 
   1188  1.1  christos         default:
   1189  1.1  christos 
   1190  1.1  christos             /* Cannot continue on unknown type - no length */
   1191  1.1  christos 
   1192  1.1  christos             AcpiOsPrintf ("\n**** Unknown HEST subtable type 0x%X\n",
   1193  1.1  christos                 Subtable->Type);
   1194  1.1  christos             return;
   1195  1.1  christos         }
   1196  1.1  christos 
   1197  1.1  christos         AcpiOsPrintf ("\n");
   1198  1.1  christos         Status = AcpiDmDumpTable (Length, Offset, Subtable,
   1199  1.1  christos             SubtableLength, InfoTable);
   1200  1.1  christos         if (ACPI_FAILURE (Status))
   1201  1.1  christos         {
   1202  1.1  christos             return;
   1203  1.1  christos         }
   1204  1.1  christos 
   1205  1.1  christos         /* Point to end of current subtable (each subtable above is of fixed length) */
   1206  1.1  christos 
   1207  1.1  christos         Offset += SubtableLength;
   1208  1.1  christos 
   1209  1.1  christos         /* If there are any (fixed-length) Error Banks from above, dump them now */
   1210  1.1  christos 
   1211  1.1  christos         if (BankCount)
   1212  1.1  christos         {
   1213  1.1  christos             BankTable = ACPI_ADD_PTR (ACPI_HEST_IA_ERROR_BANK, Subtable,
   1214  1.1  christos                 SubtableLength);
   1215  1.1  christos             SubtableLength += BankCount * sizeof (ACPI_HEST_IA_ERROR_BANK);
   1216  1.1  christos 
   1217  1.1  christos             while (BankCount)
   1218  1.1  christos             {
   1219  1.1  christos                 AcpiOsPrintf ("\n");
   1220  1.1  christos                 Status = AcpiDmDumpTable (Length, Offset, BankTable,
   1221  1.1  christos                     sizeof (ACPI_HEST_IA_ERROR_BANK), AcpiDmTableInfoHestBank);
   1222  1.1  christos                 if (ACPI_FAILURE (Status))
   1223  1.1  christos                 {
   1224  1.1  christos                     return;
   1225  1.1  christos                 }
   1226  1.1  christos 
   1227  1.1  christos                 Offset += sizeof (ACPI_HEST_IA_ERROR_BANK);
   1228  1.1  christos                 BankTable++;
   1229  1.1  christos                 BankCount--;
   1230  1.1  christos             }
   1231  1.1  christos         }
   1232  1.1  christos 
   1233  1.1  christos         /* Point to next subtable */
   1234  1.1  christos 
   1235  1.1  christos         Subtable = ACPI_ADD_PTR (ACPI_HEST_HEADER, Subtable, SubtableLength);
   1236  1.1  christos     }
   1237  1.1  christos }
   1238  1.1  christos 
   1239  1.1  christos 
   1240  1.1  christos /*******************************************************************************
   1241  1.1  christos  *
   1242  1.1  christos  * FUNCTION:    AcpiDmDumpHmat
   1243  1.1  christos  *
   1244  1.1  christos  * PARAMETERS:  Table               - A HMAT table
   1245  1.1  christos  *
   1246  1.1  christos  * RETURN:      None
   1247  1.1  christos  *
   1248  1.1  christos  * DESCRIPTION: Format the contents of a HMAT.
   1249  1.1  christos  *
   1250  1.1  christos  ******************************************************************************/
   1251  1.1  christos 
   1252  1.1  christos void
   1253  1.1  christos AcpiDmDumpHmat (
   1254  1.1  christos     ACPI_TABLE_HEADER       *Table)
   1255  1.1  christos {
   1256  1.1  christos     ACPI_STATUS             Status;
   1257  1.1  christos     ACPI_HMAT_STRUCTURE     *HmatStruct;
   1258  1.1  christos     ACPI_HMAT_LOCALITY      *HmatLocality;
   1259  1.1  christos     ACPI_HMAT_CACHE         *HmatCache;
   1260  1.1  christos     UINT32                  Offset;
   1261  1.1  christos     UINT32                  SubtableOffset;
   1262  1.1  christos     UINT32                  Length;
   1263  1.1  christos     ACPI_DMTABLE_INFO       *InfoTable;
   1264  1.1  christos     UINT32                  i, j;
   1265  1.1  christos 
   1266  1.1  christos 
   1267  1.1  christos     /* Main table */
   1268  1.1  christos 
   1269  1.1  christos     Status = AcpiDmDumpTable (Table->Length, 0, Table, 0, AcpiDmTableInfoHmat);
   1270  1.1  christos     if (ACPI_FAILURE (Status))
   1271  1.1  christos     {
   1272  1.1  christos         return;
   1273  1.1  christos     }
   1274  1.1  christos     Offset = sizeof (ACPI_TABLE_HMAT);
   1275  1.1  christos 
   1276  1.1  christos     while (Offset < Table->Length)
   1277  1.1  christos     {
   1278  1.1  christos         AcpiOsPrintf ("\n");
   1279  1.1  christos         SubtableOffset = 0;
   1280  1.1  christos 
   1281  1.1  christos         /* Dump HMAT structure header */
   1282  1.1  christos 
   1283  1.1  christos         HmatStruct = ACPI_ADD_PTR (ACPI_HMAT_STRUCTURE, Table, Offset);
   1284  1.1  christos         if (HmatStruct->Length < sizeof (ACPI_HMAT_STRUCTURE))
   1285  1.1  christos         {
   1286  1.1  christos             AcpiOsPrintf ("Invalid HMAT structure length\n");
   1287  1.1  christos             return;
   1288  1.1  christos         }
   1289  1.1  christos         Status = AcpiDmDumpTable (Table->Length, Offset, HmatStruct,
   1290  1.1  christos             HmatStruct->Length, AcpiDmTableInfoHmatHdr);
   1291  1.1  christos         if (ACPI_FAILURE (Status))
   1292  1.1  christos         {
   1293  1.1  christos             return;
   1294  1.1  christos         }
   1295  1.1  christos 
   1296  1.1  christos         switch (HmatStruct->Type)
   1297  1.1  christos         {
   1298  1.1  christos         case ACPI_HMAT_TYPE_ADDRESS_RANGE:
   1299  1.1  christos 
   1300  1.1  christos             InfoTable = AcpiDmTableInfoHmat0;
   1301  1.1  christos             Length = sizeof (ACPI_HMAT_ADDRESS_RANGE);
   1302  1.1  christos             break;
   1303  1.1  christos 
   1304  1.1  christos         case ACPI_HMAT_TYPE_LOCALITY:
   1305  1.1  christos 
   1306  1.1  christos             InfoTable = AcpiDmTableInfoHmat1;
   1307  1.1  christos             Length = sizeof (ACPI_HMAT_LOCALITY);
   1308  1.1  christos             break;
   1309  1.1  christos 
   1310  1.1  christos         case ACPI_HMAT_TYPE_CACHE:
   1311  1.1  christos 
   1312  1.1  christos             InfoTable = AcpiDmTableInfoHmat2;
   1313  1.1  christos             Length = sizeof (ACPI_HMAT_CACHE);
   1314  1.1  christos             break;
   1315  1.1  christos 
   1316  1.1  christos         default:
   1317  1.1  christos 
   1318  1.1  christos             AcpiOsPrintf ("\n**** Unknown HMAT structure type 0x%X\n",
   1319  1.1  christos                 HmatStruct->Type);
   1320  1.1  christos 
   1321  1.1  christos             /* Attempt to continue */
   1322  1.1  christos 
   1323  1.1  christos             goto NextSubtable;
   1324  1.1  christos         }
   1325  1.1  christos 
   1326  1.1  christos         /* Dump HMAT structure body */
   1327  1.1  christos 
   1328  1.1  christos         if (HmatStruct->Length < Length)
   1329  1.1  christos         {
   1330  1.1  christos             AcpiOsPrintf ("Invalid HMAT structure length\n");
   1331  1.1  christos             return;
   1332  1.1  christos         }
   1333  1.1  christos         Status = AcpiDmDumpTable (Table->Length, Offset, HmatStruct,
   1334  1.1  christos             HmatStruct->Length, InfoTable);
   1335  1.1  christos         if (ACPI_FAILURE (Status))
   1336  1.1  christos         {
   1337  1.1  christos             return;
   1338  1.1  christos         }
   1339  1.1  christos 
   1340  1.1  christos         /* Dump HMAT structure additionals */
   1341  1.1  christos 
   1342  1.1  christos         switch (HmatStruct->Type)
   1343  1.1  christos         {
   1344  1.1  christos         case ACPI_HMAT_TYPE_LOCALITY:
   1345  1.1  christos 
   1346  1.1  christos             HmatLocality = ACPI_CAST_PTR (ACPI_HMAT_LOCALITY, HmatStruct);
   1347  1.1  christos             SubtableOffset = sizeof (ACPI_HMAT_LOCALITY);
   1348  1.1  christos 
   1349  1.1  christos             /* Dump initiator proximity domains */
   1350  1.1  christos 
   1351  1.1  christos             if ((UINT32)(HmatStruct->Length - SubtableOffset) <
   1352  1.1  christos                 (UINT32)(HmatLocality->NumberOfInitiatorPDs * 4))
   1353  1.1  christos             {
   1354  1.1  christos                 AcpiOsPrintf ("Invalid initiator proximity domain number\n");
   1355  1.1  christos                 return;
   1356  1.1  christos             }
   1357  1.1  christos             for (i = 0; i < HmatLocality->NumberOfInitiatorPDs; i++)
   1358  1.1  christos             {
   1359  1.1  christos                 Status = AcpiDmDumpTable (Table->Length, Offset + SubtableOffset,
   1360  1.1  christos                     ACPI_ADD_PTR (ACPI_HMAT_STRUCTURE, HmatStruct, SubtableOffset),
   1361  1.1  christos                     4, AcpiDmTableInfoHmat1a);
   1362  1.1  christos                 SubtableOffset += 4;
   1363  1.1  christos             }
   1364  1.1  christos 
   1365  1.1  christos             /* Dump target proximity domains */
   1366  1.1  christos 
   1367  1.1  christos             if ((UINT32)(HmatStruct->Length - SubtableOffset) <
   1368  1.1  christos                 (UINT32)(HmatLocality->NumberOfTargetPDs * 4))
   1369  1.1  christos             {
   1370  1.1  christos                 AcpiOsPrintf ("Invalid target proximity domain number\n");
   1371  1.1  christos                 return;
   1372  1.1  christos             }
   1373  1.1  christos             for (i = 0; i < HmatLocality->NumberOfTargetPDs; i++)
   1374  1.1  christos             {
   1375  1.1  christos                 Status = AcpiDmDumpTable (Table->Length, Offset + SubtableOffset,
   1376  1.1  christos                     ACPI_ADD_PTR (ACPI_HMAT_STRUCTURE, HmatStruct, SubtableOffset),
   1377  1.1  christos                     4, AcpiDmTableInfoHmat1b);
   1378  1.1  christos                 SubtableOffset += 4;
   1379  1.1  christos             }
   1380  1.1  christos 
   1381  1.1  christos             /* Dump latency/bandwidth entris */
   1382  1.1  christos 
   1383  1.1  christos             if ((UINT32)(HmatStruct->Length - SubtableOffset) <
   1384  1.1  christos                 (UINT32)(HmatLocality->NumberOfInitiatorPDs *
   1385  1.1  christos                          HmatLocality->NumberOfTargetPDs * 2))
   1386  1.1  christos             {
   1387  1.1  christos                 AcpiOsPrintf ("Invalid latency/bandwidth entry number\n");
   1388  1.1  christos                 return;
   1389  1.1  christos             }
   1390  1.1  christos             for (i = 0; i < HmatLocality->NumberOfInitiatorPDs; i++)
   1391  1.1  christos             {
   1392  1.1  christos                 for (j = 0; j < HmatLocality->NumberOfTargetPDs; j++)
   1393  1.1  christos                 {
   1394  1.1  christos                     Status = AcpiDmDumpTable (Table->Length, Offset + SubtableOffset,
   1395  1.1  christos                         ACPI_ADD_PTR (ACPI_HMAT_STRUCTURE, HmatStruct, SubtableOffset),
   1396  1.1  christos                         2, AcpiDmTableInfoHmat1c);
   1397  1.1  christos                     SubtableOffset += 2;
   1398  1.1  christos                 }
   1399  1.1  christos             }
   1400  1.1  christos             break;
   1401  1.1  christos 
   1402  1.1  christos         case ACPI_HMAT_TYPE_CACHE:
   1403  1.1  christos 
   1404  1.1  christos             HmatCache = ACPI_CAST_PTR (ACPI_HMAT_CACHE, HmatStruct);
   1405  1.1  christos             SubtableOffset = sizeof (ACPI_HMAT_CACHE);
   1406  1.1  christos 
   1407  1.1  christos             /* Dump SMBIOS handles */
   1408  1.1  christos 
   1409  1.1  christos             if ((UINT32)(HmatStruct->Length - SubtableOffset) <
   1410  1.1  christos                 (UINT32)(HmatCache->NumberOfSMBIOSHandles * 2))
   1411  1.1  christos             {
   1412  1.1  christos                 AcpiOsPrintf ("Invalid SMBIOS handle number\n");
   1413  1.1  christos                 return;
   1414  1.1  christos             }
   1415  1.1  christos             for (i = 0; i < HmatCache->NumberOfSMBIOSHandles; i++)
   1416  1.1  christos             {
   1417  1.1  christos                 Status = AcpiDmDumpTable (Table->Length, Offset + SubtableOffset,
   1418  1.1  christos                     ACPI_ADD_PTR (ACPI_HMAT_STRUCTURE, HmatStruct, SubtableOffset),
   1419  1.1  christos                     2, AcpiDmTableInfoHmat2a);
   1420  1.1  christos                 SubtableOffset += 2;
   1421  1.1  christos             }
   1422  1.1  christos             break;
   1423  1.1  christos 
   1424  1.1  christos         default:
   1425  1.1  christos 
   1426  1.1  christos             break;
   1427  1.1  christos         }
   1428  1.1  christos 
   1429  1.1  christos NextSubtable:
   1430  1.1  christos         /* Point to next HMAT structure subtable */
   1431  1.1  christos 
   1432  1.1  christos         Offset += (HmatStruct->Length);
   1433  1.1  christos     }
   1434  1.1  christos }
   1435