Home | History | Annotate | Line # | Download | only in disassembler
dmresrcl2.c revision 1.1.1.3
      1      1.1  christos /*******************************************************************************
      2      1.1  christos  *
      3      1.1  christos  * Module Name: dmresrcl2.c - "Large" Resource Descriptor disassembly (#2)
      4      1.1  christos  *
      5      1.1  christos  ******************************************************************************/
      6      1.1  christos 
      7      1.1  christos /*
      8  1.1.1.3  christos  * Copyright (C) 2000 - 2015, 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 
     48      1.1  christos 
     49      1.1  christos #ifdef ACPI_DISASSEMBLER
     50      1.1  christos 
     51      1.1  christos #define _COMPONENT          ACPI_CA_DEBUGGER
     52      1.1  christos         ACPI_MODULE_NAME    ("dbresrcl2")
     53      1.1  christos 
     54      1.1  christos /* Local prototypes */
     55      1.1  christos 
     56      1.1  christos static void
     57      1.1  christos AcpiDmI2cSerialBusDescriptor (
     58  1.1.1.2  christos     ACPI_OP_WALK_INFO       *Info,
     59      1.1  christos     AML_RESOURCE            *Resource,
     60      1.1  christos     UINT32                  Length,
     61      1.1  christos     UINT32                  Level);
     62      1.1  christos 
     63      1.1  christos static void
     64      1.1  christos AcpiDmSpiSerialBusDescriptor (
     65  1.1.1.2  christos     ACPI_OP_WALK_INFO       *Info,
     66      1.1  christos     AML_RESOURCE            *Resource,
     67      1.1  christos     UINT32                  Length,
     68      1.1  christos     UINT32                  Level);
     69      1.1  christos 
     70      1.1  christos static void
     71      1.1  christos AcpiDmUartSerialBusDescriptor (
     72  1.1.1.2  christos     ACPI_OP_WALK_INFO       *Info,
     73      1.1  christos     AML_RESOURCE            *Resource,
     74      1.1  christos     UINT32                  Length,
     75      1.1  christos     UINT32                  Level);
     76      1.1  christos 
     77      1.1  christos static void
     78      1.1  christos AcpiDmGpioCommon (
     79  1.1.1.2  christos     ACPI_OP_WALK_INFO       *Info,
     80      1.1  christos     AML_RESOURCE            *Resource,
     81      1.1  christos     UINT32                  Level);
     82      1.1  christos 
     83      1.1  christos static void
     84      1.1  christos AcpiDmDumpRawDataBuffer (
     85      1.1  christos     UINT8                   *Buffer,
     86      1.1  christos     UINT32                  Length,
     87      1.1  christos     UINT32                  Level);
     88      1.1  christos 
     89      1.1  christos 
     90      1.1  christos /* Dispatch table for the serial bus descriptors */
     91      1.1  christos 
     92      1.1  christos static ACPI_RESOURCE_HANDLER        SerialBusResourceDispatch [] =
     93      1.1  christos {
     94      1.1  christos     NULL,
     95      1.1  christos     AcpiDmI2cSerialBusDescriptor,
     96      1.1  christos     AcpiDmSpiSerialBusDescriptor,
     97      1.1  christos     AcpiDmUartSerialBusDescriptor
     98      1.1  christos };
     99      1.1  christos 
    100      1.1  christos 
    101      1.1  christos /*******************************************************************************
    102      1.1  christos  *
    103      1.1  christos  * FUNCTION:    AcpiDmDumpRawDataBuffer
    104      1.1  christos  *
    105      1.1  christos  * PARAMETERS:  Buffer              - Pointer to the data bytes
    106      1.1  christos  *              Length              - Length of the descriptor in bytes
    107      1.1  christos  *              Level               - Current source code indentation level
    108      1.1  christos  *
    109      1.1  christos  * RETURN:      None
    110      1.1  christos  *
    111      1.1  christos  * DESCRIPTION: Dump a data buffer as a RawDataBuffer() object. Used for
    112      1.1  christos  *              vendor data bytes.
    113      1.1  christos  *
    114      1.1  christos  ******************************************************************************/
    115      1.1  christos 
    116      1.1  christos static void
    117      1.1  christos AcpiDmDumpRawDataBuffer (
    118      1.1  christos     UINT8                   *Buffer,
    119      1.1  christos     UINT32                  Length,
    120      1.1  christos     UINT32                  Level)
    121      1.1  christos {
    122      1.1  christos     UINT32                  Index;
    123      1.1  christos     UINT32                  i;
    124      1.1  christos     UINT32                  j;
    125      1.1  christos 
    126      1.1  christos 
    127      1.1  christos     if (!Length)
    128      1.1  christos     {
    129      1.1  christos         return;
    130      1.1  christos     }
    131      1.1  christos 
    132      1.1  christos     AcpiOsPrintf ("RawDataBuffer (0x%.2X)  // Vendor Data", Length);
    133      1.1  christos 
    134      1.1  christos     AcpiOsPrintf ("\n");
    135      1.1  christos     AcpiDmIndent (Level + 1);
    136      1.1  christos     AcpiOsPrintf ("{\n");
    137      1.1  christos     AcpiDmIndent (Level + 2);
    138      1.1  christos 
    139      1.1  christos     for (i = 0; i < Length;)
    140      1.1  christos     {
    141      1.1  christos         for (j = 0; j < 8; j++)
    142      1.1  christos         {
    143      1.1  christos             Index = i + j;
    144      1.1  christos             if (Index >= Length)
    145      1.1  christos             {
    146      1.1  christos                 goto Finish;
    147      1.1  christos             }
    148      1.1  christos 
    149      1.1  christos             AcpiOsPrintf ("0x%2.2X", Buffer[Index]);
    150      1.1  christos             if ((Index + 1) >= Length)
    151      1.1  christos             {
    152      1.1  christos                 goto Finish;
    153      1.1  christos             }
    154      1.1  christos 
    155      1.1  christos             AcpiOsPrintf (", ");
    156      1.1  christos         }
    157      1.1  christos         AcpiOsPrintf ("\n");
    158      1.1  christos         AcpiDmIndent (Level + 2);
    159      1.1  christos 
    160      1.1  christos         i += 8;
    161      1.1  christos     }
    162      1.1  christos 
    163      1.1  christos Finish:
    164      1.1  christos     AcpiOsPrintf ("\n");
    165      1.1  christos     AcpiDmIndent (Level + 1);
    166      1.1  christos     AcpiOsPrintf ("}");
    167      1.1  christos }
    168      1.1  christos 
    169      1.1  christos 
    170      1.1  christos /*******************************************************************************
    171      1.1  christos  *
    172      1.1  christos  * FUNCTION:    AcpiDmGpioCommon
    173      1.1  christos  *
    174  1.1.1.2  christos  * PARAMETERS:  Info                - Extra resource info
    175  1.1.1.2  christos  *              Resource            - Pointer to the resource descriptor
    176      1.1  christos  *              Level               - Current source code indentation level
    177      1.1  christos  *
    178      1.1  christos  * RETURN:      None
    179      1.1  christos  *
    180      1.1  christos  * DESCRIPTION: Decode common parts of a GPIO Interrupt descriptor
    181      1.1  christos  *
    182      1.1  christos  ******************************************************************************/
    183      1.1  christos 
    184      1.1  christos static void
    185      1.1  christos AcpiDmGpioCommon (
    186  1.1.1.2  christos     ACPI_OP_WALK_INFO       *Info,
    187      1.1  christos     AML_RESOURCE            *Resource,
    188      1.1  christos     UINT32                  Level)
    189      1.1  christos {
    190      1.1  christos     UINT16                  *PinList;
    191      1.1  christos     UINT8                   *VendorData;
    192  1.1.1.2  christos     char                    *DeviceName = NULL;
    193  1.1.1.2  christos     UINT32                  PinCount;
    194      1.1  christos     UINT32                  i;
    195      1.1  christos 
    196      1.1  christos 
    197      1.1  christos     /* ResourceSource, ResourceSourceIndex, ResourceType */
    198      1.1  christos 
    199      1.1  christos     AcpiDmIndent (Level + 1);
    200      1.1  christos     if (Resource->Gpio.ResSourceOffset)
    201      1.1  christos     {
    202  1.1.1.2  christos         DeviceName = ACPI_ADD_PTR (char, Resource, Resource->Gpio.ResSourceOffset),
    203  1.1.1.2  christos         AcpiUtPrintString (DeviceName, ACPI_UINT16_MAX);
    204      1.1  christos     }
    205      1.1  christos 
    206      1.1  christos     AcpiOsPrintf (", ");
    207      1.1  christos     AcpiOsPrintf ("0x%2.2X, ", Resource->Gpio.ResSourceIndex);
    208      1.1  christos     AcpiOsPrintf ("%s, ",
    209      1.1  christos         AcpiGbl_ConsumeDecode [ACPI_GET_1BIT_FLAG (Resource->Gpio.Flags)]);
    210      1.1  christos 
    211      1.1  christos     /* Insert a descriptor name */
    212      1.1  christos 
    213      1.1  christos     AcpiDmDescriptorName ();
    214      1.1  christos     AcpiOsPrintf (",");
    215      1.1  christos 
    216      1.1  christos     /* Dump the vendor data */
    217      1.1  christos 
    218      1.1  christos     if (Resource->Gpio.VendorOffset)
    219      1.1  christos     {
    220      1.1  christos         AcpiOsPrintf ("\n");
    221      1.1  christos         AcpiDmIndent (Level + 1);
    222      1.1  christos         VendorData = ACPI_ADD_PTR (UINT8, Resource,
    223      1.1  christos             Resource->Gpio.VendorOffset);
    224      1.1  christos 
    225      1.1  christos         AcpiDmDumpRawDataBuffer (VendorData,
    226      1.1  christos             Resource->Gpio.VendorLength, Level);
    227      1.1  christos     }
    228      1.1  christos 
    229      1.1  christos     AcpiOsPrintf (")\n");
    230      1.1  christos 
    231      1.1  christos     /* Dump the interrupt list */
    232      1.1  christos 
    233      1.1  christos     AcpiDmIndent (Level + 1);
    234      1.1  christos     AcpiOsPrintf ("{   // Pin list\n");
    235      1.1  christos 
    236      1.1  christos     PinCount = ((UINT32) (Resource->Gpio.ResSourceOffset -
    237      1.1  christos         Resource->Gpio.PinTableOffset)) /
    238      1.1  christos         sizeof (UINT16);
    239      1.1  christos 
    240      1.1  christos     PinList = (UINT16 *) ACPI_ADD_PTR (char, Resource,
    241      1.1  christos         Resource->Gpio.PinTableOffset);
    242      1.1  christos 
    243      1.1  christos     for (i = 0; i < PinCount; i++)
    244      1.1  christos     {
    245      1.1  christos         AcpiDmIndent (Level + 2);
    246      1.1  christos         AcpiOsPrintf ("0x%4.4X%s\n", PinList[i], ((i + 1) < PinCount) ? "," : "");
    247      1.1  christos     }
    248      1.1  christos 
    249      1.1  christos     AcpiDmIndent (Level + 1);
    250      1.1  christos     AcpiOsPrintf ("}\n");
    251  1.1.1.2  christos 
    252  1.1.1.2  christos     MpSaveGpioInfo (Info->MappingOp, Resource, PinCount, PinList, DeviceName);
    253      1.1  christos }
    254      1.1  christos 
    255      1.1  christos 
    256      1.1  christos /*******************************************************************************
    257      1.1  christos  *
    258      1.1  christos  * FUNCTION:    AcpiDmGpioIntDescriptor
    259      1.1  christos  *
    260  1.1.1.2  christos  * PARAMETERS:  Info                - Extra resource info
    261  1.1.1.2  christos  *              Resource            - Pointer to the resource descriptor
    262      1.1  christos  *              Length              - Length of the descriptor in bytes
    263      1.1  christos  *              Level               - Current source code indentation level
    264      1.1  christos  *
    265      1.1  christos  * RETURN:      None
    266      1.1  christos  *
    267      1.1  christos  * DESCRIPTION: Decode a GPIO Interrupt descriptor
    268      1.1  christos  *
    269      1.1  christos  ******************************************************************************/
    270      1.1  christos 
    271      1.1  christos static void
    272      1.1  christos AcpiDmGpioIntDescriptor (
    273  1.1.1.2  christos     ACPI_OP_WALK_INFO       *Info,
    274      1.1  christos     AML_RESOURCE            *Resource,
    275      1.1  christos     UINT32                  Length,
    276      1.1  christos     UINT32                  Level)
    277      1.1  christos {
    278      1.1  christos 
    279      1.1  christos     /* Dump the GpioInt-specific portion of the descriptor */
    280      1.1  christos 
    281      1.1  christos     /* EdgeLevel, ActiveLevel, Shared */
    282      1.1  christos 
    283      1.1  christos     AcpiDmIndent (Level);
    284      1.1  christos     AcpiOsPrintf ("GpioInt (%s, %s, %s, ",
    285      1.1  christos         AcpiGbl_HeDecode [ACPI_GET_1BIT_FLAG (Resource->Gpio.IntFlags)],
    286  1.1.1.2  christos         AcpiGbl_LlDecode [ACPI_EXTRACT_2BIT_FLAG (Resource->Gpio.IntFlags, 1)],
    287      1.1  christos         AcpiGbl_ShrDecode [ACPI_EXTRACT_2BIT_FLAG (Resource->Gpio.IntFlags, 3)]);
    288      1.1  christos 
    289      1.1  christos     /* PinConfig, DebounceTimeout */
    290      1.1  christos 
    291      1.1  christos     if (Resource->Gpio.PinConfig <= 3)
    292      1.1  christos     {
    293      1.1  christos         AcpiOsPrintf ("%s, ",
    294      1.1  christos             AcpiGbl_PpcDecode[Resource->Gpio.PinConfig]);
    295      1.1  christos     }
    296      1.1  christos     else
    297      1.1  christos     {
    298      1.1  christos         AcpiOsPrintf ("0x%2.2X, ", Resource->Gpio.PinConfig);
    299      1.1  christos     }
    300      1.1  christos     AcpiOsPrintf ("0x%4.4X,\n", Resource->Gpio.DebounceTimeout);
    301      1.1  christos 
    302      1.1  christos     /* Dump the GpioInt/GpioIo common portion of the descriptor */
    303      1.1  christos 
    304  1.1.1.2  christos     AcpiDmGpioCommon (Info, Resource, Level);
    305      1.1  christos }
    306      1.1  christos 
    307      1.1  christos 
    308      1.1  christos /*******************************************************************************
    309      1.1  christos  *
    310      1.1  christos  * FUNCTION:    AcpiDmGpioIoDescriptor
    311      1.1  christos  *
    312  1.1.1.2  christos  * PARAMETERS:  Info                - Extra resource info
    313  1.1.1.2  christos  *              Resource            - Pointer to the resource descriptor
    314      1.1  christos  *              Length              - Length of the descriptor in bytes
    315      1.1  christos  *              Level               - Current source code indentation level
    316      1.1  christos  *
    317      1.1  christos  * RETURN:      None
    318      1.1  christos  *
    319      1.1  christos  * DESCRIPTION: Decode a GPIO I/O descriptor
    320      1.1  christos  *
    321      1.1  christos  ******************************************************************************/
    322      1.1  christos 
    323      1.1  christos static void
    324      1.1  christos AcpiDmGpioIoDescriptor (
    325  1.1.1.2  christos     ACPI_OP_WALK_INFO       *Info,
    326      1.1  christos     AML_RESOURCE            *Resource,
    327      1.1  christos     UINT32                  Length,
    328      1.1  christos     UINT32                  Level)
    329      1.1  christos {
    330      1.1  christos 
    331      1.1  christos     /* Dump the GpioIo-specific portion of the descriptor */
    332      1.1  christos 
    333      1.1  christos     /* Shared, PinConfig */
    334      1.1  christos 
    335      1.1  christos     AcpiDmIndent (Level);
    336      1.1  christos     AcpiOsPrintf ("GpioIo (%s, ",
    337      1.1  christos         AcpiGbl_ShrDecode [ACPI_EXTRACT_2BIT_FLAG (Resource->Gpio.IntFlags, 3)]);
    338      1.1  christos 
    339      1.1  christos     if (Resource->Gpio.PinConfig <= 3)
    340      1.1  christos     {
    341      1.1  christos         AcpiOsPrintf ("%s, ",
    342      1.1  christos             AcpiGbl_PpcDecode[Resource->Gpio.PinConfig]);
    343      1.1  christos     }
    344      1.1  christos     else
    345      1.1  christos     {
    346      1.1  christos         AcpiOsPrintf ("0x%2.2X, ", Resource->Gpio.PinConfig);
    347      1.1  christos     }
    348      1.1  christos 
    349      1.1  christos     /* DebounceTimeout, DriveStrength, IoRestriction */
    350      1.1  christos 
    351      1.1  christos     AcpiOsPrintf ("0x%4.4X, ", Resource->Gpio.DebounceTimeout);
    352      1.1  christos     AcpiOsPrintf ("0x%4.4X, ", Resource->Gpio.DriveStrength);
    353      1.1  christos     AcpiOsPrintf ("%s,\n",
    354      1.1  christos         AcpiGbl_IorDecode [ACPI_GET_2BIT_FLAG (Resource->Gpio.IntFlags)]);
    355      1.1  christos 
    356      1.1  christos     /* Dump the GpioInt/GpioIo common portion of the descriptor */
    357      1.1  christos 
    358  1.1.1.2  christos     AcpiDmGpioCommon (Info, Resource, Level);
    359      1.1  christos }
    360      1.1  christos 
    361      1.1  christos 
    362      1.1  christos /*******************************************************************************
    363      1.1  christos  *
    364      1.1  christos  * FUNCTION:    AcpiDmGpioDescriptor
    365      1.1  christos  *
    366  1.1.1.2  christos  * PARAMETERS:  Info                - Extra resource info
    367  1.1.1.2  christos  *              Resource            - Pointer to the resource descriptor
    368      1.1  christos  *              Length              - Length of the descriptor in bytes
    369      1.1  christos  *              Level               - Current source code indentation level
    370      1.1  christos  *
    371      1.1  christos  * RETURN:      None
    372      1.1  christos  *
    373      1.1  christos  * DESCRIPTION: Decode a GpioInt/GpioIo GPIO Interrupt/IO descriptor
    374      1.1  christos  *
    375      1.1  christos  ******************************************************************************/
    376      1.1  christos 
    377      1.1  christos void
    378      1.1  christos AcpiDmGpioDescriptor (
    379  1.1.1.2  christos     ACPI_OP_WALK_INFO       *Info,
    380      1.1  christos     AML_RESOURCE            *Resource,
    381      1.1  christos     UINT32                  Length,
    382      1.1  christos     UINT32                  Level)
    383      1.1  christos {
    384      1.1  christos     UINT8                   ConnectionType;
    385      1.1  christos 
    386      1.1  christos 
    387      1.1  christos     ConnectionType = Resource->Gpio.ConnectionType;
    388      1.1  christos 
    389      1.1  christos     switch (ConnectionType)
    390      1.1  christos     {
    391      1.1  christos     case AML_RESOURCE_GPIO_TYPE_INT:
    392      1.1  christos 
    393  1.1.1.2  christos         AcpiDmGpioIntDescriptor (Info, Resource, Length, Level);
    394      1.1  christos         break;
    395      1.1  christos 
    396      1.1  christos     case AML_RESOURCE_GPIO_TYPE_IO:
    397      1.1  christos 
    398  1.1.1.2  christos         AcpiDmGpioIoDescriptor (Info, Resource, Length, Level);
    399      1.1  christos         break;
    400      1.1  christos 
    401      1.1  christos     default:
    402      1.1  christos 
    403      1.1  christos         AcpiOsPrintf ("Unknown GPIO type\n");
    404      1.1  christos         break;
    405      1.1  christos     }
    406      1.1  christos }
    407      1.1  christos 
    408      1.1  christos 
    409      1.1  christos /*******************************************************************************
    410      1.1  christos  *
    411      1.1  christos  * FUNCTION:    AcpiDmDumpSerialBusVendorData
    412      1.1  christos  *
    413      1.1  christos  * PARAMETERS:  Resource            - Pointer to the resource descriptor
    414      1.1  christos  *
    415      1.1  christos  * RETURN:      None
    416      1.1  christos  *
    417      1.1  christos  * DESCRIPTION: Dump optional serial bus vendor data
    418      1.1  christos  *
    419      1.1  christos  ******************************************************************************/
    420      1.1  christos 
    421      1.1  christos static void
    422      1.1  christos AcpiDmDumpSerialBusVendorData (
    423      1.1  christos     AML_RESOURCE            *Resource,
    424      1.1  christos     UINT32                  Level)
    425      1.1  christos {
    426      1.1  christos     UINT8                   *VendorData;
    427      1.1  christos     UINT32                  VendorLength;
    428      1.1  christos 
    429      1.1  christos 
    430      1.1  christos     /* Get the (optional) vendor data and length */
    431      1.1  christos 
    432      1.1  christos     switch (Resource->CommonSerialBus.Type)
    433      1.1  christos     {
    434      1.1  christos     case AML_RESOURCE_I2C_SERIALBUSTYPE:
    435      1.1  christos 
    436      1.1  christos         VendorLength = Resource->CommonSerialBus.TypeDataLength -
    437      1.1  christos             AML_RESOURCE_I2C_MIN_DATA_LEN;
    438      1.1  christos 
    439      1.1  christos         VendorData = ACPI_ADD_PTR (UINT8, Resource,
    440      1.1  christos             sizeof (AML_RESOURCE_I2C_SERIALBUS));
    441      1.1  christos         break;
    442      1.1  christos 
    443      1.1  christos     case AML_RESOURCE_SPI_SERIALBUSTYPE:
    444      1.1  christos 
    445      1.1  christos         VendorLength = Resource->CommonSerialBus.TypeDataLength -
    446      1.1  christos             AML_RESOURCE_SPI_MIN_DATA_LEN;
    447      1.1  christos 
    448      1.1  christos         VendorData = ACPI_ADD_PTR (UINT8, Resource,
    449      1.1  christos             sizeof (AML_RESOURCE_SPI_SERIALBUS));
    450      1.1  christos         break;
    451      1.1  christos 
    452      1.1  christos     case AML_RESOURCE_UART_SERIALBUSTYPE:
    453      1.1  christos 
    454      1.1  christos         VendorLength = Resource->CommonSerialBus.TypeDataLength -
    455      1.1  christos             AML_RESOURCE_UART_MIN_DATA_LEN;
    456      1.1  christos 
    457      1.1  christos         VendorData = ACPI_ADD_PTR (UINT8, Resource,
    458      1.1  christos             sizeof (AML_RESOURCE_UART_SERIALBUS));
    459      1.1  christos         break;
    460      1.1  christos 
    461      1.1  christos     default:
    462      1.1  christos 
    463      1.1  christos         return;
    464      1.1  christos     }
    465      1.1  christos 
    466      1.1  christos     /* Dump the vendor bytes as a RawDataBuffer object */
    467      1.1  christos 
    468      1.1  christos     AcpiDmDumpRawDataBuffer (VendorData, VendorLength, Level);
    469      1.1  christos }
    470      1.1  christos 
    471      1.1  christos 
    472      1.1  christos /*******************************************************************************
    473      1.1  christos  *
    474      1.1  christos  * FUNCTION:    AcpiDmI2cSerialBusDescriptor
    475      1.1  christos  *
    476  1.1.1.2  christos  * PARAMETERS:  Info                - Extra resource info
    477  1.1.1.2  christos  *              Resource            - Pointer to the resource descriptor
    478      1.1  christos  *              Length              - Length of the descriptor in bytes
    479      1.1  christos  *              Level               - Current source code indentation level
    480      1.1  christos  *
    481      1.1  christos  * RETURN:      None
    482      1.1  christos  *
    483      1.1  christos  * DESCRIPTION: Decode a I2C serial bus descriptor
    484      1.1  christos  *
    485      1.1  christos  ******************************************************************************/
    486      1.1  christos 
    487      1.1  christos static void
    488      1.1  christos AcpiDmI2cSerialBusDescriptor (
    489  1.1.1.2  christos     ACPI_OP_WALK_INFO       *Info,
    490      1.1  christos     AML_RESOURCE            *Resource,
    491      1.1  christos     UINT32                  Length,
    492      1.1  christos     UINT32                  Level)
    493      1.1  christos {
    494      1.1  christos     UINT32                  ResourceSourceOffset;
    495  1.1.1.2  christos     char                    *DeviceName;
    496      1.1  christos 
    497      1.1  christos 
    498      1.1  christos     /* SlaveAddress, SlaveMode, ConnectionSpeed, AddressingMode */
    499      1.1  christos 
    500      1.1  christos     AcpiDmIndent (Level);
    501      1.1  christos     AcpiOsPrintf ("I2cSerialBus (0x%4.4X, %s, 0x%8.8X,\n",
    502      1.1  christos         Resource->I2cSerialBus.SlaveAddress,
    503      1.1  christos         AcpiGbl_SmDecode [ACPI_GET_1BIT_FLAG (Resource->I2cSerialBus.Flags)],
    504      1.1  christos         Resource->I2cSerialBus.ConnectionSpeed);
    505      1.1  christos 
    506      1.1  christos     AcpiDmIndent (Level + 1);
    507      1.1  christos     AcpiOsPrintf ("%s, ",
    508      1.1  christos         AcpiGbl_AmDecode [ACPI_GET_1BIT_FLAG (Resource->I2cSerialBus.TypeSpecificFlags)]);
    509      1.1  christos 
    510      1.1  christos     /* ResourceSource is a required field */
    511      1.1  christos 
    512      1.1  christos     ResourceSourceOffset = sizeof (AML_RESOURCE_COMMON_SERIALBUS) +
    513      1.1  christos         Resource->CommonSerialBus.TypeDataLength;
    514      1.1  christos 
    515  1.1.1.2  christos     DeviceName = ACPI_ADD_PTR (char, Resource, ResourceSourceOffset),
    516  1.1.1.2  christos     AcpiUtPrintString (DeviceName, ACPI_UINT16_MAX);
    517      1.1  christos 
    518      1.1  christos     /* ResourceSourceIndex, ResourceUsage */
    519      1.1  christos 
    520      1.1  christos     AcpiOsPrintf (",\n");
    521      1.1  christos     AcpiDmIndent (Level + 1);
    522      1.1  christos     AcpiOsPrintf ("0x%2.2X, ", Resource->I2cSerialBus.ResSourceIndex);
    523      1.1  christos 
    524      1.1  christos     AcpiOsPrintf ("%s, ",
    525      1.1  christos         AcpiGbl_ConsumeDecode [ACPI_EXTRACT_1BIT_FLAG (Resource->I2cSerialBus.Flags, 1)]);
    526      1.1  christos 
    527      1.1  christos     /* Insert a descriptor name */
    528      1.1  christos 
    529      1.1  christos     AcpiDmDescriptorName ();
    530      1.1  christos     AcpiOsPrintf (",\n");
    531      1.1  christos 
    532      1.1  christos     /* Dump the vendor data */
    533      1.1  christos 
    534      1.1  christos     AcpiDmIndent (Level + 1);
    535      1.1  christos     AcpiDmDumpSerialBusVendorData (Resource, Level);
    536      1.1  christos     AcpiOsPrintf (")\n");
    537  1.1.1.2  christos 
    538  1.1.1.2  christos     MpSaveSerialInfo (Info->MappingOp, Resource, DeviceName);
    539      1.1  christos }
    540      1.1  christos 
    541      1.1  christos 
    542      1.1  christos /*******************************************************************************
    543      1.1  christos  *
    544      1.1  christos  * FUNCTION:    AcpiDmSpiSerialBusDescriptor
    545      1.1  christos  *
    546  1.1.1.2  christos  * PARAMETERS:  Info                - Extra resource info
    547  1.1.1.2  christos  *              Resource            - Pointer to the resource descriptor
    548      1.1  christos  *              Length              - Length of the descriptor in bytes
    549      1.1  christos  *              Level               - Current source code indentation level
    550      1.1  christos  *
    551      1.1  christos  * RETURN:      None
    552      1.1  christos  *
    553      1.1  christos  * DESCRIPTION: Decode a SPI serial bus descriptor
    554      1.1  christos  *
    555      1.1  christos  ******************************************************************************/
    556      1.1  christos 
    557      1.1  christos static void
    558      1.1  christos AcpiDmSpiSerialBusDescriptor (
    559  1.1.1.2  christos     ACPI_OP_WALK_INFO       *Info,
    560      1.1  christos     AML_RESOURCE            *Resource,
    561      1.1  christos     UINT32                  Length,
    562      1.1  christos     UINT32                  Level)
    563      1.1  christos {
    564      1.1  christos     UINT32                  ResourceSourceOffset;
    565  1.1.1.2  christos     char                    *DeviceName;
    566      1.1  christos 
    567      1.1  christos 
    568      1.1  christos     /* DeviceSelection, DeviceSelectionPolarity, WireMode, DataBitLength */
    569      1.1  christos 
    570      1.1  christos     AcpiDmIndent (Level);
    571      1.1  christos     AcpiOsPrintf ("SpiSerialBus (0x%4.4X, %s, %s, 0x%2.2X,\n",
    572      1.1  christos         Resource->SpiSerialBus.DeviceSelection,
    573      1.1  christos         AcpiGbl_DpDecode [ACPI_EXTRACT_1BIT_FLAG (Resource->SpiSerialBus.TypeSpecificFlags, 1)],
    574      1.1  christos         AcpiGbl_WmDecode [ACPI_GET_1BIT_FLAG (Resource->SpiSerialBus.TypeSpecificFlags)],
    575      1.1  christos         Resource->SpiSerialBus.DataBitLength);
    576      1.1  christos 
    577      1.1  christos     /* SlaveMode, ConnectionSpeed, ClockPolarity, ClockPhase */
    578      1.1  christos 
    579      1.1  christos     AcpiDmIndent (Level + 1);
    580      1.1  christos     AcpiOsPrintf ("%s, 0x%8.8X, %s,\n",
    581      1.1  christos         AcpiGbl_SmDecode [ACPI_GET_1BIT_FLAG (Resource->SpiSerialBus.Flags)],
    582      1.1  christos         Resource->SpiSerialBus.ConnectionSpeed,
    583      1.1  christos         AcpiGbl_CpoDecode [ACPI_GET_1BIT_FLAG (Resource->SpiSerialBus.ClockPolarity)]);
    584      1.1  christos 
    585      1.1  christos     AcpiDmIndent (Level + 1);
    586      1.1  christos     AcpiOsPrintf ("%s, ",
    587      1.1  christos         AcpiGbl_CphDecode [ACPI_GET_1BIT_FLAG (Resource->SpiSerialBus.ClockPhase)]);
    588      1.1  christos 
    589      1.1  christos     /* ResourceSource is a required field */
    590      1.1  christos 
    591      1.1  christos     ResourceSourceOffset = sizeof (AML_RESOURCE_COMMON_SERIALBUS) +
    592      1.1  christos         Resource->CommonSerialBus.TypeDataLength;
    593      1.1  christos 
    594  1.1.1.2  christos     DeviceName = ACPI_ADD_PTR (char, Resource, ResourceSourceOffset),
    595  1.1.1.2  christos     AcpiUtPrintString (DeviceName, ACPI_UINT16_MAX);
    596      1.1  christos 
    597      1.1  christos     /* ResourceSourceIndex, ResourceUsage */
    598      1.1  christos 
    599      1.1  christos     AcpiOsPrintf (",\n");
    600      1.1  christos     AcpiDmIndent (Level + 1);
    601      1.1  christos     AcpiOsPrintf ("0x%2.2X, ", Resource->SpiSerialBus.ResSourceIndex);
    602      1.1  christos 
    603      1.1  christos     AcpiOsPrintf ("%s, ",
    604      1.1  christos         AcpiGbl_ConsumeDecode [ACPI_EXTRACT_1BIT_FLAG (Resource->SpiSerialBus.Flags, 1)]);
    605      1.1  christos 
    606      1.1  christos     /* Insert a descriptor name */
    607      1.1  christos 
    608      1.1  christos     AcpiDmDescriptorName ();
    609      1.1  christos     AcpiOsPrintf (",\n");
    610      1.1  christos 
    611      1.1  christos     /* Dump the vendor data */
    612      1.1  christos 
    613      1.1  christos     AcpiDmIndent (Level + 1);
    614      1.1  christos     AcpiDmDumpSerialBusVendorData (Resource, Level);
    615      1.1  christos     AcpiOsPrintf (")\n");
    616  1.1.1.2  christos 
    617  1.1.1.2  christos     MpSaveSerialInfo (Info->MappingOp, Resource, DeviceName);
    618      1.1  christos }
    619      1.1  christos 
    620      1.1  christos 
    621      1.1  christos /*******************************************************************************
    622      1.1  christos  *
    623      1.1  christos  * FUNCTION:    AcpiDmUartSerialBusDescriptor
    624      1.1  christos  *
    625  1.1.1.2  christos  * PARAMETERS:  Info                - Extra resource info
    626  1.1.1.2  christos  *              Resource            - Pointer to the resource descriptor
    627      1.1  christos  *              Length              - Length of the descriptor in bytes
    628      1.1  christos  *              Level               - Current source code indentation level
    629      1.1  christos  *
    630      1.1  christos  * RETURN:      None
    631      1.1  christos  *
    632      1.1  christos  * DESCRIPTION: Decode a UART serial bus descriptor
    633      1.1  christos  *
    634      1.1  christos  ******************************************************************************/
    635      1.1  christos 
    636      1.1  christos static void
    637      1.1  christos AcpiDmUartSerialBusDescriptor (
    638  1.1.1.2  christos     ACPI_OP_WALK_INFO       *Info,
    639      1.1  christos     AML_RESOURCE            *Resource,
    640      1.1  christos     UINT32                  Length,
    641      1.1  christos     UINT32                  Level)
    642      1.1  christos {
    643      1.1  christos     UINT32                  ResourceSourceOffset;
    644  1.1.1.2  christos     char                    *DeviceName;
    645      1.1  christos 
    646      1.1  christos 
    647      1.1  christos     /* ConnectionSpeed, BitsPerByte, StopBits */
    648      1.1  christos 
    649      1.1  christos     AcpiDmIndent (Level);
    650      1.1  christos     AcpiOsPrintf ("UartSerialBus (0x%8.8X, %s, %s,\n",
    651      1.1  christos         Resource->UartSerialBus.DefaultBaudRate,
    652      1.1  christos         AcpiGbl_BpbDecode [ACPI_EXTRACT_3BIT_FLAG (Resource->UartSerialBus.TypeSpecificFlags, 4)],
    653      1.1  christos         AcpiGbl_SbDecode [ACPI_EXTRACT_2BIT_FLAG (Resource->UartSerialBus.TypeSpecificFlags, 2)]);
    654      1.1  christos 
    655      1.1  christos     /* LinesInUse, IsBigEndian, Parity, FlowControl */
    656      1.1  christos 
    657      1.1  christos     AcpiDmIndent (Level + 1);
    658      1.1  christos     AcpiOsPrintf ("0x%2.2X, %s, %s, %s,\n",
    659      1.1  christos         Resource->UartSerialBus.LinesEnabled,
    660      1.1  christos         AcpiGbl_EdDecode [ACPI_EXTRACT_1BIT_FLAG (Resource->UartSerialBus.TypeSpecificFlags, 7)],
    661      1.1  christos         AcpiGbl_PtDecode [ACPI_GET_3BIT_FLAG (Resource->UartSerialBus.Parity)],
    662      1.1  christos         AcpiGbl_FcDecode [ACPI_GET_2BIT_FLAG (Resource->UartSerialBus.TypeSpecificFlags)]);
    663      1.1  christos 
    664      1.1  christos     /* ReceiveBufferSize, TransmitBufferSize */
    665      1.1  christos 
    666      1.1  christos     AcpiDmIndent (Level + 1);
    667      1.1  christos     AcpiOsPrintf ("0x%4.4X, 0x%4.4X, ",
    668      1.1  christos         Resource->UartSerialBus.RxFifoSize,
    669      1.1  christos         Resource->UartSerialBus.TxFifoSize);
    670      1.1  christos 
    671      1.1  christos     /* ResourceSource is a required field */
    672      1.1  christos 
    673      1.1  christos     ResourceSourceOffset = sizeof (AML_RESOURCE_COMMON_SERIALBUS) +
    674      1.1  christos         Resource->CommonSerialBus.TypeDataLength;
    675      1.1  christos 
    676  1.1.1.2  christos     DeviceName = ACPI_ADD_PTR (char, Resource, ResourceSourceOffset),
    677  1.1.1.2  christos     AcpiUtPrintString (DeviceName, ACPI_UINT16_MAX);
    678      1.1  christos 
    679      1.1  christos     /* ResourceSourceIndex, ResourceUsage */
    680      1.1  christos 
    681      1.1  christos     AcpiOsPrintf (",\n");
    682      1.1  christos     AcpiDmIndent (Level + 1);
    683      1.1  christos     AcpiOsPrintf ("0x%2.2X, ", Resource->UartSerialBus.ResSourceIndex);
    684      1.1  christos 
    685      1.1  christos     AcpiOsPrintf ("%s, ",
    686      1.1  christos         AcpiGbl_ConsumeDecode [ACPI_EXTRACT_1BIT_FLAG (Resource->UartSerialBus.Flags, 1)]);
    687      1.1  christos 
    688      1.1  christos     /* Insert a descriptor name */
    689      1.1  christos 
    690      1.1  christos     AcpiDmDescriptorName ();
    691      1.1  christos     AcpiOsPrintf (",\n");
    692      1.1  christos 
    693      1.1  christos     /* Dump the vendor data */
    694      1.1  christos 
    695      1.1  christos     AcpiDmIndent (Level + 1);
    696      1.1  christos     AcpiDmDumpSerialBusVendorData (Resource, Level);
    697      1.1  christos     AcpiOsPrintf (")\n");
    698  1.1.1.2  christos 
    699  1.1.1.2  christos     MpSaveSerialInfo (Info->MappingOp, Resource, DeviceName);
    700      1.1  christos }
    701      1.1  christos 
    702      1.1  christos 
    703      1.1  christos /*******************************************************************************
    704      1.1  christos  *
    705      1.1  christos  * FUNCTION:    AcpiDmSerialBusDescriptor
    706      1.1  christos  *
    707  1.1.1.2  christos  * PARAMETERS:  Info                - Extra resource info
    708  1.1.1.2  christos  *              Resource            - Pointer to the resource descriptor
    709      1.1  christos  *              Length              - Length of the descriptor in bytes
    710      1.1  christos  *              Level               - Current source code indentation level
    711      1.1  christos  *
    712      1.1  christos  * RETURN:      None
    713      1.1  christos  *
    714      1.1  christos  * DESCRIPTION: Decode a I2C/SPI/UART serial bus descriptor
    715      1.1  christos  *
    716      1.1  christos  ******************************************************************************/
    717      1.1  christos 
    718      1.1  christos void
    719      1.1  christos AcpiDmSerialBusDescriptor (
    720  1.1.1.2  christos     ACPI_OP_WALK_INFO       *Info,
    721      1.1  christos     AML_RESOURCE            *Resource,
    722      1.1  christos     UINT32                  Length,
    723      1.1  christos     UINT32                  Level)
    724      1.1  christos {
    725      1.1  christos 
    726      1.1  christos     SerialBusResourceDispatch [Resource->CommonSerialBus.Type] (
    727  1.1.1.2  christos         Info, Resource, Length, Level);
    728      1.1  christos }
    729      1.1  christos 
    730      1.1  christos #endif
    731