Home | History | Annotate | Line # | Download | only in disassembler
dmresrcs.c revision 1.1.1.3
      1      1.1    jruoho /*******************************************************************************
      2      1.1    jruoho  *
      3      1.1    jruoho  * Module Name: dmresrcs.c - "Small" Resource Descriptor disassembly
      4      1.1    jruoho  *
      5      1.1    jruoho  ******************************************************************************/
      6      1.1    jruoho 
      7  1.1.1.2    jruoho /*
      8  1.1.1.3  christos  * Copyright (C) 2000 - 2013, Intel Corp.
      9      1.1    jruoho  * All rights reserved.
     10      1.1    jruoho  *
     11  1.1.1.2    jruoho  * Redistribution and use in source and binary forms, with or without
     12  1.1.1.2    jruoho  * modification, are permitted provided that the following conditions
     13  1.1.1.2    jruoho  * are met:
     14  1.1.1.2    jruoho  * 1. Redistributions of source code must retain the above copyright
     15  1.1.1.2    jruoho  *    notice, this list of conditions, and the following disclaimer,
     16  1.1.1.2    jruoho  *    without modification.
     17  1.1.1.2    jruoho  * 2. Redistributions in binary form must reproduce at minimum a disclaimer
     18  1.1.1.2    jruoho  *    substantially similar to the "NO WARRANTY" disclaimer below
     19  1.1.1.2    jruoho  *    ("Disclaimer") and any redistribution must be conditioned upon
     20  1.1.1.2    jruoho  *    including a substantially similar Disclaimer requirement for further
     21  1.1.1.2    jruoho  *    binary redistribution.
     22  1.1.1.2    jruoho  * 3. Neither the names of the above-listed copyright holders nor the names
     23  1.1.1.2    jruoho  *    of any contributors may be used to endorse or promote products derived
     24  1.1.1.2    jruoho  *    from this software without specific prior written permission.
     25  1.1.1.2    jruoho  *
     26  1.1.1.2    jruoho  * Alternatively, this software may be distributed under the terms of the
     27  1.1.1.2    jruoho  * GNU General Public License ("GPL") version 2 as published by the Free
     28  1.1.1.2    jruoho  * Software Foundation.
     29  1.1.1.2    jruoho  *
     30  1.1.1.2    jruoho  * NO WARRANTY
     31  1.1.1.2    jruoho  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
     32  1.1.1.2    jruoho  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
     33  1.1.1.2    jruoho  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
     34  1.1.1.2    jruoho  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
     35  1.1.1.2    jruoho  * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     36  1.1.1.2    jruoho  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     37  1.1.1.2    jruoho  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     38  1.1.1.2    jruoho  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
     39  1.1.1.2    jruoho  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
     40  1.1.1.2    jruoho  * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     41  1.1.1.2    jruoho  * POSSIBILITY OF SUCH DAMAGES.
     42  1.1.1.2    jruoho  */
     43      1.1    jruoho 
     44      1.1    jruoho 
     45      1.1    jruoho #include "acpi.h"
     46      1.1    jruoho #include "accommon.h"
     47      1.1    jruoho #include "acdisasm.h"
     48      1.1    jruoho 
     49      1.1    jruoho 
     50      1.1    jruoho #ifdef ACPI_DISASSEMBLER
     51      1.1    jruoho 
     52      1.1    jruoho #define _COMPONENT          ACPI_CA_DEBUGGER
     53      1.1    jruoho         ACPI_MODULE_NAME    ("dbresrcs")
     54      1.1    jruoho 
     55      1.1    jruoho 
     56      1.1    jruoho /*******************************************************************************
     57      1.1    jruoho  *
     58      1.1    jruoho  * FUNCTION:    AcpiDmIrqDescriptor
     59      1.1    jruoho  *
     60      1.1    jruoho  * PARAMETERS:  Resource            - Pointer to the resource descriptor
     61      1.1    jruoho  *              Length              - Length of the descriptor in bytes
     62      1.1    jruoho  *              Level               - Current source code indentation level
     63      1.1    jruoho  *
     64      1.1    jruoho  * RETURN:      None
     65      1.1    jruoho  *
     66      1.1    jruoho  * DESCRIPTION: Decode a IRQ descriptor, either Irq() or IrqNoFlags()
     67      1.1    jruoho  *
     68      1.1    jruoho  ******************************************************************************/
     69      1.1    jruoho 
     70      1.1    jruoho void
     71      1.1    jruoho AcpiDmIrqDescriptor (
     72      1.1    jruoho     AML_RESOURCE            *Resource,
     73      1.1    jruoho     UINT32                  Length,
     74      1.1    jruoho     UINT32                  Level)
     75      1.1    jruoho {
     76      1.1    jruoho 
     77      1.1    jruoho     AcpiDmIndent (Level);
     78      1.1    jruoho     AcpiOsPrintf ("%s (",
     79  1.1.1.3  christos         AcpiGbl_IrqDecode [ACPI_GET_1BIT_FLAG (Length)]);
     80      1.1    jruoho 
     81      1.1    jruoho     /* Decode flags byte if present */
     82      1.1    jruoho 
     83      1.1    jruoho     if (Length & 1)
     84      1.1    jruoho     {
     85      1.1    jruoho         AcpiOsPrintf ("%s, %s, %s, ",
     86  1.1.1.3  christos             AcpiGbl_HeDecode [ACPI_GET_1BIT_FLAG (Resource->Irq.Flags)],
     87  1.1.1.3  christos             AcpiGbl_LlDecode [ACPI_EXTRACT_1BIT_FLAG (Resource->Irq.Flags, 3)],
     88  1.1.1.3  christos             AcpiGbl_ShrDecode [ACPI_EXTRACT_2BIT_FLAG (Resource->Irq.Flags, 4)]);
     89      1.1    jruoho     }
     90      1.1    jruoho 
     91      1.1    jruoho     /* Insert a descriptor name */
     92      1.1    jruoho 
     93      1.1    jruoho     AcpiDmDescriptorName ();
     94      1.1    jruoho     AcpiOsPrintf (")\n");
     95      1.1    jruoho 
     96      1.1    jruoho     AcpiDmIndent (Level + 1);
     97      1.1    jruoho     AcpiDmBitList (Resource->Irq.IrqMask);
     98      1.1    jruoho }
     99      1.1    jruoho 
    100      1.1    jruoho 
    101      1.1    jruoho /*******************************************************************************
    102      1.1    jruoho  *
    103      1.1    jruoho  * FUNCTION:    AcpiDmDmaDescriptor
    104      1.1    jruoho  *
    105      1.1    jruoho  * PARAMETERS:  Resource            - Pointer to the resource descriptor
    106      1.1    jruoho  *              Length              - Length of the descriptor in bytes
    107      1.1    jruoho  *              Level               - Current source code indentation level
    108      1.1    jruoho  *
    109      1.1    jruoho  * RETURN:      None
    110      1.1    jruoho  *
    111      1.1    jruoho  * DESCRIPTION: Decode a DMA descriptor
    112      1.1    jruoho  *
    113      1.1    jruoho  ******************************************************************************/
    114      1.1    jruoho 
    115      1.1    jruoho void
    116      1.1    jruoho AcpiDmDmaDescriptor (
    117      1.1    jruoho     AML_RESOURCE            *Resource,
    118      1.1    jruoho     UINT32                  Length,
    119      1.1    jruoho     UINT32                  Level)
    120      1.1    jruoho {
    121      1.1    jruoho 
    122      1.1    jruoho     AcpiDmIndent (Level);
    123      1.1    jruoho     AcpiOsPrintf ("DMA (%s, %s, %s, ",
    124  1.1.1.3  christos         AcpiGbl_TypDecode [ACPI_EXTRACT_2BIT_FLAG (Resource->Dma.Flags, 5)],
    125  1.1.1.3  christos         AcpiGbl_BmDecode  [ACPI_EXTRACT_1BIT_FLAG (Resource->Dma.Flags, 2)],
    126  1.1.1.3  christos         AcpiGbl_SizDecode [ACPI_GET_2BIT_FLAG (Resource->Dma.Flags)]);
    127      1.1    jruoho 
    128      1.1    jruoho     /* Insert a descriptor name */
    129      1.1    jruoho 
    130      1.1    jruoho     AcpiDmDescriptorName ();
    131      1.1    jruoho     AcpiOsPrintf (")\n");
    132      1.1    jruoho 
    133      1.1    jruoho     AcpiDmIndent (Level + 1);
    134      1.1    jruoho     AcpiDmBitList (Resource->Dma.DmaChannelMask);
    135      1.1    jruoho }
    136      1.1    jruoho 
    137      1.1    jruoho 
    138      1.1    jruoho /*******************************************************************************
    139      1.1    jruoho  *
    140  1.1.1.3  christos  * FUNCTION:    AcpiDmFixedDmaDescriptor
    141  1.1.1.3  christos  *
    142  1.1.1.3  christos  * PARAMETERS:  Resource            - Pointer to the resource descriptor
    143  1.1.1.3  christos  *              Length              - Length of the descriptor in bytes
    144  1.1.1.3  christos  *              Level               - Current source code indentation level
    145  1.1.1.3  christos  *
    146  1.1.1.3  christos  * RETURN:      None
    147  1.1.1.3  christos  *
    148  1.1.1.3  christos  * DESCRIPTION: Decode a FixedDMA descriptor
    149  1.1.1.3  christos  *
    150  1.1.1.3  christos  ******************************************************************************/
    151  1.1.1.3  christos 
    152  1.1.1.3  christos void
    153  1.1.1.3  christos AcpiDmFixedDmaDescriptor (
    154  1.1.1.3  christos     AML_RESOURCE            *Resource,
    155  1.1.1.3  christos     UINT32                  Length,
    156  1.1.1.3  christos     UINT32                  Level)
    157  1.1.1.3  christos {
    158  1.1.1.3  christos 
    159  1.1.1.3  christos     AcpiDmIndent (Level);
    160  1.1.1.3  christos     AcpiOsPrintf ("FixedDMA (0x%4.4X, 0x%4.4X, ",
    161  1.1.1.3  christos         Resource->FixedDma.RequestLines,
    162  1.1.1.3  christos         Resource->FixedDma.Channels);
    163  1.1.1.3  christos 
    164  1.1.1.3  christos     if (Resource->FixedDma.Width <= 5)
    165  1.1.1.3  christos     {
    166  1.1.1.3  christos         AcpiOsPrintf ("%s, ",
    167  1.1.1.3  christos             AcpiGbl_DtsDecode [Resource->FixedDma.Width]);
    168  1.1.1.3  christos     }
    169  1.1.1.3  christos     else
    170  1.1.1.3  christos     {
    171  1.1.1.3  christos         AcpiOsPrintf ("%X /* INVALID DMA WIDTH */, ", Resource->FixedDma.Width);
    172  1.1.1.3  christos     }
    173  1.1.1.3  christos 
    174  1.1.1.3  christos     /* Insert a descriptor name */
    175  1.1.1.3  christos 
    176  1.1.1.3  christos     AcpiDmDescriptorName ();
    177  1.1.1.3  christos     AcpiOsPrintf (")\n");
    178  1.1.1.3  christos }
    179  1.1.1.3  christos 
    180  1.1.1.3  christos 
    181  1.1.1.3  christos /*******************************************************************************
    182  1.1.1.3  christos  *
    183      1.1    jruoho  * FUNCTION:    AcpiDmIoDescriptor
    184      1.1    jruoho  *
    185      1.1    jruoho  * PARAMETERS:  Resource            - Pointer to the resource descriptor
    186      1.1    jruoho  *              Length              - Length of the descriptor in bytes
    187      1.1    jruoho  *              Level               - Current source code indentation level
    188      1.1    jruoho  *
    189      1.1    jruoho  * RETURN:      None
    190      1.1    jruoho  *
    191      1.1    jruoho  * DESCRIPTION: Decode an IO descriptor
    192      1.1    jruoho  *
    193      1.1    jruoho  ******************************************************************************/
    194      1.1    jruoho 
    195      1.1    jruoho void
    196      1.1    jruoho AcpiDmIoDescriptor (
    197      1.1    jruoho     AML_RESOURCE            *Resource,
    198      1.1    jruoho     UINT32                  Length,
    199      1.1    jruoho     UINT32                  Level)
    200      1.1    jruoho {
    201      1.1    jruoho 
    202      1.1    jruoho     AcpiDmIndent (Level);
    203      1.1    jruoho     AcpiOsPrintf ("IO (%s,\n",
    204  1.1.1.3  christos         AcpiGbl_IoDecode [ACPI_GET_1BIT_FLAG (Resource->Io.Flags)]);
    205      1.1    jruoho 
    206      1.1    jruoho     AcpiDmIndent (Level + 1);
    207      1.1    jruoho     AcpiDmDumpInteger16 (Resource->Io.Minimum, "Range Minimum");
    208      1.1    jruoho 
    209      1.1    jruoho     AcpiDmIndent (Level + 1);
    210      1.1    jruoho     AcpiDmDumpInteger16 (Resource->Io.Maximum, "Range Maximum");
    211      1.1    jruoho 
    212      1.1    jruoho     AcpiDmIndent (Level + 1);
    213      1.1    jruoho     AcpiDmDumpInteger8 (Resource->Io.Alignment, "Alignment");
    214      1.1    jruoho 
    215      1.1    jruoho     AcpiDmIndent (Level + 1);
    216      1.1    jruoho     AcpiDmDumpInteger8 (Resource->Io.AddressLength, "Length");
    217      1.1    jruoho 
    218      1.1    jruoho     /* Insert a descriptor name */
    219      1.1    jruoho 
    220      1.1    jruoho     AcpiDmIndent (Level + 1);
    221      1.1    jruoho     AcpiDmDescriptorName ();
    222      1.1    jruoho     AcpiOsPrintf (")\n");
    223      1.1    jruoho }
    224      1.1    jruoho 
    225      1.1    jruoho 
    226      1.1    jruoho /*******************************************************************************
    227      1.1    jruoho  *
    228      1.1    jruoho  * FUNCTION:    AcpiDmFixedIoDescriptor
    229      1.1    jruoho  *
    230      1.1    jruoho  * PARAMETERS:  Resource            - Pointer to the resource descriptor
    231      1.1    jruoho  *              Length              - Length of the descriptor in bytes
    232      1.1    jruoho  *              Level               - Current source code indentation level
    233      1.1    jruoho  *
    234      1.1    jruoho  * RETURN:      None
    235      1.1    jruoho  *
    236      1.1    jruoho  * DESCRIPTION: Decode a Fixed IO descriptor
    237      1.1    jruoho  *
    238      1.1    jruoho  ******************************************************************************/
    239      1.1    jruoho 
    240      1.1    jruoho void
    241      1.1    jruoho AcpiDmFixedIoDescriptor (
    242      1.1    jruoho     AML_RESOURCE            *Resource,
    243      1.1    jruoho     UINT32                  Length,
    244      1.1    jruoho     UINT32                  Level)
    245      1.1    jruoho {
    246      1.1    jruoho 
    247      1.1    jruoho     AcpiDmIndent (Level);
    248      1.1    jruoho     AcpiOsPrintf ("FixedIO (\n");
    249      1.1    jruoho 
    250      1.1    jruoho     AcpiDmIndent (Level + 1);
    251      1.1    jruoho     AcpiDmDumpInteger16 (Resource->FixedIo.Address, "Address");
    252      1.1    jruoho 
    253      1.1    jruoho     AcpiDmIndent (Level + 1);
    254      1.1    jruoho     AcpiDmDumpInteger8 (Resource->FixedIo.AddressLength, "Length");
    255      1.1    jruoho 
    256      1.1    jruoho     /* Insert a descriptor name */
    257      1.1    jruoho 
    258      1.1    jruoho     AcpiDmIndent (Level + 1);
    259      1.1    jruoho     AcpiDmDescriptorName ();
    260      1.1    jruoho     AcpiOsPrintf (")\n");
    261      1.1    jruoho }
    262      1.1    jruoho 
    263      1.1    jruoho 
    264      1.1    jruoho /*******************************************************************************
    265      1.1    jruoho  *
    266      1.1    jruoho  * FUNCTION:    AcpiDmStartDependentDescriptor
    267      1.1    jruoho  *
    268      1.1    jruoho  * PARAMETERS:  Resource            - Pointer to the resource descriptor
    269      1.1    jruoho  *              Length              - Length of the descriptor in bytes
    270      1.1    jruoho  *              Level               - Current source code indentation level
    271      1.1    jruoho  *
    272      1.1    jruoho  * RETURN:      None
    273      1.1    jruoho  *
    274      1.1    jruoho  * DESCRIPTION: Decode a Start Dependendent functions descriptor
    275      1.1    jruoho  *
    276      1.1    jruoho  ******************************************************************************/
    277      1.1    jruoho 
    278      1.1    jruoho void
    279      1.1    jruoho AcpiDmStartDependentDescriptor (
    280      1.1    jruoho     AML_RESOURCE            *Resource,
    281      1.1    jruoho     UINT32                  Length,
    282      1.1    jruoho     UINT32                  Level)
    283      1.1    jruoho {
    284      1.1    jruoho 
    285      1.1    jruoho     AcpiDmIndent (Level);
    286      1.1    jruoho 
    287      1.1    jruoho     if (Length & 1)
    288      1.1    jruoho     {
    289      1.1    jruoho         AcpiOsPrintf ("StartDependentFn (0x%2.2X, 0x%2.2X)\n",
    290  1.1.1.3  christos             (UINT32) ACPI_GET_2BIT_FLAG (Resource->StartDpf.Flags),
    291  1.1.1.3  christos             (UINT32) ACPI_EXTRACT_2BIT_FLAG (Resource->StartDpf.Flags, 2));
    292      1.1    jruoho     }
    293      1.1    jruoho     else
    294      1.1    jruoho     {
    295      1.1    jruoho         AcpiOsPrintf ("StartDependentFnNoPri ()\n");
    296      1.1    jruoho     }
    297      1.1    jruoho 
    298      1.1    jruoho     AcpiDmIndent (Level);
    299      1.1    jruoho     AcpiOsPrintf ("{\n");
    300      1.1    jruoho }
    301      1.1    jruoho 
    302      1.1    jruoho 
    303      1.1    jruoho /*******************************************************************************
    304      1.1    jruoho  *
    305      1.1    jruoho  * FUNCTION:    AcpiDmEndDependentDescriptor
    306      1.1    jruoho  *
    307      1.1    jruoho  * PARAMETERS:  Resource            - Pointer to the resource descriptor
    308      1.1    jruoho  *              Length              - Length of the descriptor in bytes
    309      1.1    jruoho  *              Level               - Current source code indentation level
    310      1.1    jruoho  *
    311      1.1    jruoho  * RETURN:      None
    312      1.1    jruoho  *
    313      1.1    jruoho  * DESCRIPTION: Decode an End Dependent functions descriptor
    314      1.1    jruoho  *
    315      1.1    jruoho  ******************************************************************************/
    316      1.1    jruoho 
    317      1.1    jruoho void
    318      1.1    jruoho AcpiDmEndDependentDescriptor (
    319      1.1    jruoho     AML_RESOURCE            *Resource,
    320      1.1    jruoho     UINT32                  Length,
    321      1.1    jruoho     UINT32                  Level)
    322      1.1    jruoho {
    323      1.1    jruoho 
    324      1.1    jruoho     AcpiDmIndent (Level);
    325      1.1    jruoho     AcpiOsPrintf ("}\n");
    326      1.1    jruoho     AcpiDmIndent (Level);
    327      1.1    jruoho     AcpiOsPrintf ("EndDependentFn ()\n");
    328      1.1    jruoho }
    329      1.1    jruoho 
    330      1.1    jruoho 
    331      1.1    jruoho /*******************************************************************************
    332      1.1    jruoho  *
    333      1.1    jruoho  * FUNCTION:    AcpiDmVendorSmallDescriptor
    334      1.1    jruoho  *
    335      1.1    jruoho  * PARAMETERS:  Resource            - Pointer to the resource descriptor
    336      1.1    jruoho  *              Length              - Length of the descriptor in bytes
    337      1.1    jruoho  *              Level               - Current source code indentation level
    338      1.1    jruoho  *
    339      1.1    jruoho  * RETURN:      None
    340      1.1    jruoho  *
    341      1.1    jruoho  * DESCRIPTION: Decode a Vendor Small Descriptor
    342      1.1    jruoho  *
    343      1.1    jruoho  ******************************************************************************/
    344      1.1    jruoho 
    345      1.1    jruoho void
    346      1.1    jruoho AcpiDmVendorSmallDescriptor (
    347      1.1    jruoho     AML_RESOURCE            *Resource,
    348      1.1    jruoho     UINT32                  Length,
    349      1.1    jruoho     UINT32                  Level)
    350      1.1    jruoho {
    351      1.1    jruoho 
    352      1.1    jruoho     AcpiDmVendorCommon ("Short",
    353      1.1    jruoho         ACPI_ADD_PTR (UINT8, Resource, sizeof (AML_RESOURCE_SMALL_HEADER)),
    354      1.1    jruoho         Length, Level);
    355      1.1    jruoho }
    356      1.1    jruoho 
    357      1.1    jruoho #endif
    358