Home | History | Annotate | Line # | Download | only in executer
exdebug.c revision 1.1.1.13
      1       1.1    jruoho /******************************************************************************
      2       1.1    jruoho  *
      3       1.1    jruoho  * Module Name: exdebug - Support for stores to the AML Debug Object
      4       1.1    jruoho  *
      5       1.1    jruoho  *****************************************************************************/
      6       1.1    jruoho 
      7   1.1.1.2    jruoho /*
      8  1.1.1.13  christos  * Copyright (C) 2000 - 2021, 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.13  christos  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY 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 #include "acpi.h"
     45       1.1    jruoho #include "accommon.h"
     46       1.1    jruoho #include "acinterp.h"
     47       1.1    jruoho 
     48       1.1    jruoho 
     49       1.1    jruoho #define _COMPONENT          ACPI_EXECUTER
     50       1.1    jruoho         ACPI_MODULE_NAME    ("exdebug")
     51       1.1    jruoho 
     52       1.1    jruoho 
     53       1.1    jruoho #ifndef ACPI_NO_ERROR_MESSAGES
     54       1.1    jruoho /*******************************************************************************
     55       1.1    jruoho  *
     56       1.1    jruoho  * FUNCTION:    AcpiExDoDebugObject
     57       1.1    jruoho  *
     58       1.1    jruoho  * PARAMETERS:  SourceDesc          - Object to be output to "Debug Object"
     59       1.1    jruoho  *              Level               - Indentation level (used for packages)
     60       1.1    jruoho  *              Index               - Current package element, zero if not pkg
     61       1.1    jruoho  *
     62       1.1    jruoho  * RETURN:      None
     63       1.1    jruoho  *
     64       1.1    jruoho  * DESCRIPTION: Handles stores to the AML Debug Object. For example:
     65       1.1    jruoho  *              Store(INT1, Debug)
     66       1.1    jruoho  *
     67       1.1    jruoho  * This function is not compiled if ACPI_NO_ERROR_MESSAGES is set.
     68       1.1    jruoho  *
     69       1.1    jruoho  * This function is only enabled if AcpiGbl_EnableAmlDebugObject is set, or
     70       1.1    jruoho  * if ACPI_LV_DEBUG_OBJECT is set in the AcpiDbgLevel. Thus, in the normal
     71       1.1    jruoho  * operational case, stores to the debug object are ignored but can be easily
     72       1.1    jruoho  * enabled if necessary.
     73       1.1    jruoho  *
     74       1.1    jruoho  ******************************************************************************/
     75       1.1    jruoho 
     76       1.1    jruoho void
     77       1.1    jruoho AcpiExDoDebugObject (
     78       1.1    jruoho     ACPI_OPERAND_OBJECT     *SourceDesc,
     79       1.1    jruoho     UINT32                  Level,
     80       1.1    jruoho     UINT32                  Index)
     81       1.1    jruoho {
     82       1.1    jruoho     UINT32                  i;
     83   1.1.1.4  christos     UINT32                  Timer;
     84   1.1.1.6  christos     ACPI_OPERAND_OBJECT     *ObjectDesc;
     85   1.1.1.6  christos     UINT32                  Value;
     86       1.1    jruoho 
     87       1.1    jruoho 
     88       1.1    jruoho     ACPI_FUNCTION_TRACE_PTR (ExDoDebugObject, SourceDesc);
     89       1.1    jruoho 
     90       1.1    jruoho 
     91       1.1    jruoho     /* Output must be enabled via the DebugObject global or the DbgLevel */
     92       1.1    jruoho 
     93       1.1    jruoho     if (!AcpiGbl_EnableAmlDebugObject &&
     94       1.1    jruoho         !(AcpiDbgLevel & ACPI_LV_DEBUG_OBJECT))
     95       1.1    jruoho     {
     96       1.1    jruoho         return_VOID;
     97       1.1    jruoho     }
     98       1.1    jruoho 
     99  1.1.1.10  christos     /* Newline -- don't emit the line header */
    100   1.1.1.7  christos 
    101   1.1.1.7  christos     if (SourceDesc &&
    102   1.1.1.7  christos         (ACPI_GET_DESCRIPTOR_TYPE (SourceDesc) == ACPI_DESC_TYPE_OPERAND) &&
    103   1.1.1.7  christos         (SourceDesc->Common.Type == ACPI_TYPE_STRING))
    104   1.1.1.7  christos     {
    105  1.1.1.10  christos         if ((SourceDesc->String.Length == 1) &&
    106  1.1.1.10  christos             (*SourceDesc->String.Pointer == '\n'))
    107   1.1.1.7  christos         {
    108   1.1.1.7  christos             AcpiOsPrintf ("\n");
    109   1.1.1.7  christos             return_VOID;
    110   1.1.1.7  christos         }
    111   1.1.1.7  christos     }
    112   1.1.1.4  christos 
    113   1.1.1.4  christos     /*
    114       1.1    jruoho      * Print line header as long as we are not in the middle of an
    115       1.1    jruoho      * object display
    116       1.1    jruoho      */
    117       1.1    jruoho     if (!((Level > 0) && Index == 0))
    118       1.1    jruoho     {
    119   1.1.1.7  christos         if (AcpiGbl_DisplayDebugTimer)
    120   1.1.1.7  christos         {
    121   1.1.1.7  christos             /*
    122   1.1.1.7  christos              * We will emit the current timer value (in microseconds) with each
    123   1.1.1.7  christos              * debug output. Only need the lower 26 bits. This allows for 67
    124   1.1.1.7  christos              * million microseconds or 67 seconds before rollover.
    125   1.1.1.7  christos              *
    126   1.1.1.7  christos              * Convert 100 nanosecond units to microseconds
    127   1.1.1.7  christos              */
    128   1.1.1.7  christos             Timer = ((UINT32) AcpiOsGetTimer () / 10);
    129   1.1.1.7  christos             Timer &= 0x03FFFFFF;
    130   1.1.1.7  christos 
    131   1.1.1.9  christos             AcpiOsPrintf ("ACPI Debug: T=0x%8.8X %*s", Timer, Level, " ");
    132   1.1.1.7  christos         }
    133   1.1.1.7  christos         else
    134   1.1.1.7  christos         {
    135   1.1.1.9  christos             AcpiOsPrintf ("ACPI Debug: %*s", Level, " ");
    136   1.1.1.7  christos         }
    137       1.1    jruoho     }
    138       1.1    jruoho 
    139       1.1    jruoho     /* Display the index for package output only */
    140       1.1    jruoho 
    141       1.1    jruoho     if (Index > 0)
    142       1.1    jruoho     {
    143   1.1.1.7  christos        AcpiOsPrintf ("(%.2u) ", Index - 1);
    144       1.1    jruoho     }
    145       1.1    jruoho 
    146       1.1    jruoho     if (!SourceDesc)
    147       1.1    jruoho     {
    148       1.1    jruoho         AcpiOsPrintf ("[Null Object]\n");
    149       1.1    jruoho         return_VOID;
    150       1.1    jruoho     }
    151       1.1    jruoho 
    152       1.1    jruoho     if (ACPI_GET_DESCRIPTOR_TYPE (SourceDesc) == ACPI_DESC_TYPE_OPERAND)
    153       1.1    jruoho     {
    154   1.1.1.7  christos         /* No object type prefix needed for integers and strings */
    155   1.1.1.7  christos 
    156   1.1.1.7  christos         if ((SourceDesc->Common.Type != ACPI_TYPE_INTEGER) &&
    157   1.1.1.7  christos             (SourceDesc->Common.Type != ACPI_TYPE_STRING))
    158   1.1.1.7  christos         {
    159   1.1.1.7  christos             AcpiOsPrintf ("%s  ", AcpiUtGetObjectTypeName (SourceDesc));
    160   1.1.1.7  christos         }
    161       1.1    jruoho 
    162       1.1    jruoho         if (!AcpiUtValidInternalObject (SourceDesc))
    163       1.1    jruoho         {
    164       1.1    jruoho            AcpiOsPrintf ("%p, Invalid Internal Object!\n", SourceDesc);
    165       1.1    jruoho            return_VOID;
    166       1.1    jruoho         }
    167       1.1    jruoho     }
    168       1.1    jruoho     else if (ACPI_GET_DESCRIPTOR_TYPE (SourceDesc) == ACPI_DESC_TYPE_NAMED)
    169       1.1    jruoho     {
    170   1.1.1.7  christos         AcpiOsPrintf ("%s  (Node %p)\n",
    171       1.1    jruoho             AcpiUtGetTypeName (((ACPI_NAMESPACE_NODE *) SourceDesc)->Type),
    172   1.1.1.7  christos                 SourceDesc);
    173       1.1    jruoho         return_VOID;
    174       1.1    jruoho     }
    175       1.1    jruoho     else
    176       1.1    jruoho     {
    177       1.1    jruoho         return_VOID;
    178       1.1    jruoho     }
    179       1.1    jruoho 
    180       1.1    jruoho     /* SourceDesc is of type ACPI_DESC_TYPE_OPERAND */
    181       1.1    jruoho 
    182       1.1    jruoho     switch (SourceDesc->Common.Type)
    183       1.1    jruoho     {
    184       1.1    jruoho     case ACPI_TYPE_INTEGER:
    185       1.1    jruoho 
    186       1.1    jruoho         /* Output correct integer width */
    187       1.1    jruoho 
    188       1.1    jruoho         if (AcpiGbl_IntegerByteWidth == 4)
    189       1.1    jruoho         {
    190       1.1    jruoho             AcpiOsPrintf ("0x%8.8X\n",
    191       1.1    jruoho                 (UINT32) SourceDesc->Integer.Value);
    192       1.1    jruoho         }
    193       1.1    jruoho         else
    194       1.1    jruoho         {
    195       1.1    jruoho             AcpiOsPrintf ("0x%8.8X%8.8X\n",
    196       1.1    jruoho                 ACPI_FORMAT_UINT64 (SourceDesc->Integer.Value));
    197       1.1    jruoho         }
    198       1.1    jruoho         break;
    199       1.1    jruoho 
    200       1.1    jruoho     case ACPI_TYPE_BUFFER:
    201       1.1    jruoho 
    202       1.1    jruoho         AcpiOsPrintf ("[0x%.2X]\n", (UINT32) SourceDesc->Buffer.Length);
    203   1.1.1.3  christos         AcpiUtDumpBuffer (SourceDesc->Buffer.Pointer,
    204       1.1    jruoho             (SourceDesc->Buffer.Length < 256) ?
    205   1.1.1.3  christos                 SourceDesc->Buffer.Length : 256, DB_BYTE_DISPLAY, 0);
    206       1.1    jruoho         break;
    207       1.1    jruoho 
    208       1.1    jruoho     case ACPI_TYPE_STRING:
    209       1.1    jruoho 
    210   1.1.1.7  christos         AcpiOsPrintf ("\"%s\"\n", SourceDesc->String.Pointer);
    211       1.1    jruoho         break;
    212       1.1    jruoho 
    213       1.1    jruoho     case ACPI_TYPE_PACKAGE:
    214       1.1    jruoho 
    215   1.1.1.7  christos         AcpiOsPrintf ("(Contains 0x%.2X Elements):\n",
    216       1.1    jruoho             SourceDesc->Package.Count);
    217       1.1    jruoho 
    218       1.1    jruoho         /* Output the entire contents of the package */
    219       1.1    jruoho 
    220       1.1    jruoho         for (i = 0; i < SourceDesc->Package.Count; i++)
    221       1.1    jruoho         {
    222       1.1    jruoho             AcpiExDoDebugObject (SourceDesc->Package.Elements[i],
    223   1.1.1.7  christos                 Level + 4, i + 1);
    224       1.1    jruoho         }
    225       1.1    jruoho         break;
    226       1.1    jruoho 
    227       1.1    jruoho     case ACPI_TYPE_LOCAL_REFERENCE:
    228       1.1    jruoho 
    229       1.1    jruoho         AcpiOsPrintf ("[%s] ", AcpiUtGetReferenceName (SourceDesc));
    230       1.1    jruoho 
    231       1.1    jruoho         /* Decode the reference */
    232       1.1    jruoho 
    233       1.1    jruoho         switch (SourceDesc->Reference.Class)
    234       1.1    jruoho         {
    235       1.1    jruoho         case ACPI_REFCLASS_INDEX:
    236       1.1    jruoho 
    237       1.1    jruoho             AcpiOsPrintf ("0x%X\n", SourceDesc->Reference.Value);
    238       1.1    jruoho             break;
    239       1.1    jruoho 
    240       1.1    jruoho         case ACPI_REFCLASS_TABLE:
    241       1.1    jruoho 
    242       1.1    jruoho             /* Case for DdbHandle */
    243       1.1    jruoho 
    244       1.1    jruoho             AcpiOsPrintf ("Table Index 0x%X\n", SourceDesc->Reference.Value);
    245   1.1.1.3  christos             return_VOID;
    246       1.1    jruoho 
    247       1.1    jruoho         default:
    248   1.1.1.3  christos 
    249       1.1    jruoho             break;
    250       1.1    jruoho         }
    251       1.1    jruoho 
    252       1.1    jruoho         AcpiOsPrintf ("  ");
    253       1.1    jruoho 
    254       1.1    jruoho         /* Check for valid node first, then valid object */
    255       1.1    jruoho 
    256       1.1    jruoho         if (SourceDesc->Reference.Node)
    257       1.1    jruoho         {
    258       1.1    jruoho             if (ACPI_GET_DESCRIPTOR_TYPE (SourceDesc->Reference.Node) !=
    259   1.1.1.7  christos                 ACPI_DESC_TYPE_NAMED)
    260       1.1    jruoho             {
    261       1.1    jruoho                 AcpiOsPrintf (" %p - Not a valid namespace node\n",
    262       1.1    jruoho                     SourceDesc->Reference.Node);
    263       1.1    jruoho             }
    264       1.1    jruoho             else
    265       1.1    jruoho             {
    266       1.1    jruoho                 AcpiOsPrintf ("Node %p [%4.4s] ", SourceDesc->Reference.Node,
    267       1.1    jruoho                     (SourceDesc->Reference.Node)->Name.Ascii);
    268       1.1    jruoho 
    269       1.1    jruoho                 switch ((SourceDesc->Reference.Node)->Type)
    270       1.1    jruoho                 {
    271       1.1    jruoho                 /* These types have no attached object */
    272       1.1    jruoho 
    273       1.1    jruoho                 case ACPI_TYPE_DEVICE:
    274       1.1    jruoho                     AcpiOsPrintf ("Device\n");
    275       1.1    jruoho                     break;
    276       1.1    jruoho 
    277       1.1    jruoho                 case ACPI_TYPE_THERMAL:
    278       1.1    jruoho                     AcpiOsPrintf ("Thermal Zone\n");
    279       1.1    jruoho                     break;
    280       1.1    jruoho 
    281       1.1    jruoho                 default:
    282   1.1.1.3  christos 
    283       1.1    jruoho                     AcpiExDoDebugObject ((SourceDesc->Reference.Node)->Object,
    284   1.1.1.7  christos                         Level + 4, 0);
    285       1.1    jruoho                     break;
    286       1.1    jruoho                 }
    287       1.1    jruoho             }
    288       1.1    jruoho         }
    289       1.1    jruoho         else if (SourceDesc->Reference.Object)
    290       1.1    jruoho         {
    291       1.1    jruoho             if (ACPI_GET_DESCRIPTOR_TYPE (SourceDesc->Reference.Object) ==
    292   1.1.1.7  christos                 ACPI_DESC_TYPE_NAMED)
    293       1.1    jruoho             {
    294   1.1.1.7  christos                 /* Reference object is a namespace node */
    295   1.1.1.7  christos 
    296   1.1.1.7  christos                 AcpiExDoDebugObject (ACPI_CAST_PTR (ACPI_OPERAND_OBJECT,
    297   1.1.1.7  christos                     SourceDesc->Reference.Object),
    298   1.1.1.7  christos                     Level + 4, 0);
    299       1.1    jruoho             }
    300       1.1    jruoho             else
    301       1.1    jruoho             {
    302   1.1.1.6  christos                 ObjectDesc = SourceDesc->Reference.Object;
    303   1.1.1.6  christos                 Value = SourceDesc->Reference.Value;
    304   1.1.1.6  christos 
    305   1.1.1.6  christos                 switch (ObjectDesc->Common.Type)
    306   1.1.1.6  christos                 {
    307   1.1.1.6  christos                 case ACPI_TYPE_BUFFER:
    308   1.1.1.6  christos 
    309   1.1.1.6  christos                     AcpiOsPrintf ("Buffer[%u] = 0x%2.2X\n",
    310   1.1.1.6  christos                         Value, *SourceDesc->Reference.IndexPointer);
    311   1.1.1.6  christos                     break;
    312   1.1.1.6  christos 
    313   1.1.1.6  christos                 case ACPI_TYPE_STRING:
    314   1.1.1.6  christos 
    315   1.1.1.6  christos                     AcpiOsPrintf ("String[%u] = \"%c\" (0x%2.2X)\n",
    316   1.1.1.6  christos                         Value, *SourceDesc->Reference.IndexPointer,
    317   1.1.1.6  christos                         *SourceDesc->Reference.IndexPointer);
    318   1.1.1.6  christos                     break;
    319   1.1.1.6  christos 
    320   1.1.1.6  christos                 case ACPI_TYPE_PACKAGE:
    321   1.1.1.6  christos 
    322   1.1.1.6  christos                     AcpiOsPrintf ("Package[%u] = ", Value);
    323   1.1.1.7  christos                     if (!(*SourceDesc->Reference.Where))
    324   1.1.1.7  christos                     {
    325   1.1.1.7  christos                         AcpiOsPrintf ("[Uninitialized Package Element]\n");
    326   1.1.1.7  christos                     }
    327   1.1.1.7  christos                     else
    328   1.1.1.7  christos                     {
    329   1.1.1.7  christos                         AcpiExDoDebugObject (*SourceDesc->Reference.Where,
    330   1.1.1.7  christos                             Level+4, 0);
    331   1.1.1.7  christos                     }
    332   1.1.1.6  christos                     break;
    333   1.1.1.6  christos 
    334   1.1.1.6  christos                 default:
    335   1.1.1.6  christos 
    336   1.1.1.6  christos                     AcpiOsPrintf ("Unknown Reference object type %X\n",
    337   1.1.1.6  christos                         ObjectDesc->Common.Type);
    338   1.1.1.6  christos                     break;
    339   1.1.1.6  christos                 }
    340       1.1    jruoho             }
    341       1.1    jruoho         }
    342       1.1    jruoho         break;
    343       1.1    jruoho 
    344       1.1    jruoho     default:
    345       1.1    jruoho 
    346   1.1.1.7  christos         AcpiOsPrintf ("(Descriptor %p)\n", SourceDesc);
    347       1.1    jruoho         break;
    348       1.1    jruoho     }
    349       1.1    jruoho 
    350       1.1    jruoho     ACPI_DEBUG_PRINT_RAW ((ACPI_DB_EXEC, "\n"));
    351       1.1    jruoho     return_VOID;
    352       1.1    jruoho }
    353       1.1    jruoho #endif
    354