2002-07-30 19:33:39 +00:00
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* Module Name: dmopcode - AML disassembler, specific AML opcodes
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2011-01-13 16:12:34 +00:00
|
|
|
/*
|
2012-01-11 21:25:42 +00:00
|
|
|
* Copyright (C) 2000 - 2012, Intel Corp.
|
2002-07-30 19:33:39 +00:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
2011-01-13 16:12:34 +00:00
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions, and the following disclaimer,
|
|
|
|
* without modification.
|
|
|
|
* 2. Redistributions in binary form must reproduce at minimum a disclaimer
|
|
|
|
* substantially similar to the "NO WARRANTY" disclaimer below
|
|
|
|
* ("Disclaimer") and any redistribution must be conditioned upon
|
|
|
|
* including a substantially similar Disclaimer requirement for further
|
|
|
|
* binary redistribution.
|
|
|
|
* 3. Neither the names of the above-listed copyright holders nor the names
|
|
|
|
* of any contributors may be used to endorse or promote products derived
|
|
|
|
* from this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* Alternatively, this software may be distributed under the terms of the
|
|
|
|
* GNU General Public License ("GPL") version 2 as published by the Free
|
|
|
|
* Software Foundation.
|
|
|
|
*
|
|
|
|
* NO WARRANTY
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
|
|
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
* HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
|
|
|
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
|
|
|
|
* IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGES.
|
|
|
|
*/
|
2002-07-30 19:33:39 +00:00
|
|
|
|
2009-06-01 19:24:26 +00:00
|
|
|
#include "acpi.h"
|
2009-06-01 21:02:40 +00:00
|
|
|
#include "accommon.h"
|
2009-06-01 19:24:26 +00:00
|
|
|
#include "acparser.h"
|
|
|
|
#include "amlcode.h"
|
|
|
|
#include "acdisasm.h"
|
2012-06-20 17:51:04 +00:00
|
|
|
#include "acnamesp.h"
|
2002-07-30 19:33:39 +00:00
|
|
|
|
|
|
|
#ifdef ACPI_DISASSEMBLER
|
|
|
|
|
2002-08-29 01:51:24 +00:00
|
|
|
#define _COMPONENT ACPI_CA_DEBUGGER
|
2002-07-30 19:33:39 +00:00
|
|
|
ACPI_MODULE_NAME ("dmopcode")
|
|
|
|
|
2005-11-01 22:11:18 +00:00
|
|
|
/* Local prototypes */
|
|
|
|
|
|
|
|
static void
|
|
|
|
AcpiDmMatchKeyword (
|
|
|
|
ACPI_PARSE_OBJECT *Op);
|
|
|
|
|
2002-07-30 19:33:39 +00:00
|
|
|
|
2012-06-20 17:51:04 +00:00
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: AcpiDmPredefinedDescription
|
|
|
|
*
|
|
|
|
* PARAMETERS: Op - Name() parse object
|
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Emit a description comment for a predefined ACPI name.
|
|
|
|
* Used for iASL compiler only.
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
void
|
|
|
|
AcpiDmPredefinedDescription (
|
|
|
|
ACPI_PARSE_OBJECT *Op)
|
|
|
|
{
|
|
|
|
#ifdef ACPI_ASL_COMPILER
|
|
|
|
const AH_PREDEFINED_NAME *Info;
|
|
|
|
char *NameString;
|
|
|
|
int LastCharIsDigit;
|
|
|
|
int LastCharsAreHex;
|
|
|
|
|
|
|
|
|
|
|
|
if (!Op)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Ensure that the comment field is emitted only once */
|
|
|
|
|
|
|
|
if (Op->Common.DisasmFlags & ACPI_PARSEOP_PREDEF_CHECKED)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
Op->Common.DisasmFlags |= ACPI_PARSEOP_PREDEF_CHECKED;
|
|
|
|
|
|
|
|
/* Predefined name must start with an underscore */
|
|
|
|
|
|
|
|
NameString = ACPI_CAST_PTR (char, &Op->Named.Name);
|
|
|
|
if (NameString[0] != '_')
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Check for the special ACPI names:
|
|
|
|
* _ACd, _ALd, _EJd, _Exx, _Lxx, _Qxx, _Wxx, _T_a
|
|
|
|
* (where d=decimal_digit, x=hex_digit, a=anything)
|
|
|
|
*
|
|
|
|
* Convert these to the generic name for table lookup.
|
|
|
|
* Note: NameString is guaranteed to be upper case here.
|
|
|
|
*/
|
|
|
|
LastCharIsDigit =
|
|
|
|
(ACPI_IS_DIGIT (NameString[3])); /* d */
|
|
|
|
LastCharsAreHex =
|
|
|
|
(ACPI_IS_XDIGIT (NameString[2]) && /* xx */
|
|
|
|
ACPI_IS_XDIGIT (NameString[3]));
|
|
|
|
|
|
|
|
switch (NameString[1])
|
|
|
|
{
|
|
|
|
case 'A':
|
|
|
|
if ((NameString[2] == 'C') && (LastCharIsDigit))
|
|
|
|
{
|
|
|
|
NameString = "_ACx";
|
|
|
|
}
|
|
|
|
else if ((NameString[2] == 'L') && (LastCharIsDigit))
|
|
|
|
{
|
|
|
|
NameString = "_ALx";
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'E':
|
|
|
|
if ((NameString[2] == 'J') && (LastCharIsDigit))
|
|
|
|
{
|
|
|
|
NameString = "_EJx";
|
|
|
|
}
|
|
|
|
else if (LastCharsAreHex)
|
|
|
|
{
|
|
|
|
NameString = "_Exx";
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'L':
|
|
|
|
if (LastCharsAreHex)
|
|
|
|
{
|
|
|
|
NameString = "_Lxx";
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'Q':
|
|
|
|
if (LastCharsAreHex)
|
|
|
|
{
|
|
|
|
NameString = "_Qxx";
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'T':
|
|
|
|
if (NameString[2] == '_')
|
|
|
|
{
|
|
|
|
NameString = "_T_x";
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'W':
|
|
|
|
if (LastCharsAreHex)
|
|
|
|
{
|
|
|
|
NameString = "_Wxx";
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Match the name in the info table */
|
|
|
|
|
|
|
|
for (Info = AslPredefinedInfo; Info->Name; Info++)
|
|
|
|
{
|
|
|
|
if (ACPI_COMPARE_NAME (NameString, Info->Name))
|
|
|
|
{
|
|
|
|
AcpiOsPrintf (" // %4.4s: %s",
|
|
|
|
NameString, ACPI_CAST_PTR (char, Info->Description));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: AcpiDmFieldPredefinedDescription
|
|
|
|
*
|
|
|
|
* PARAMETERS: Op - Parse object
|
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Emit a description comment for a resource descriptor tag
|
|
|
|
* (which is a predefined ACPI name.) Used for iASL compiler only.
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
void
|
|
|
|
AcpiDmFieldPredefinedDescription (
|
|
|
|
ACPI_PARSE_OBJECT *Op)
|
|
|
|
{
|
|
|
|
#ifdef ACPI_ASL_COMPILER
|
|
|
|
ACPI_PARSE_OBJECT *IndexOp;
|
|
|
|
char *Tag;
|
|
|
|
const ACPI_OPCODE_INFO *OpInfo;
|
|
|
|
const AH_PREDEFINED_NAME *Info;
|
|
|
|
|
|
|
|
|
|
|
|
if (!Op)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Ensure that the comment field is emitted only once */
|
|
|
|
|
|
|
|
if (Op->Common.DisasmFlags & ACPI_PARSEOP_PREDEF_CHECKED)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
Op->Common.DisasmFlags |= ACPI_PARSEOP_PREDEF_CHECKED;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Op must be one of the Create* operators: CreateField, CreateBitField,
|
|
|
|
* CreateByteField, CreateWordField, CreateDwordField, CreateQwordField
|
|
|
|
*/
|
|
|
|
OpInfo = AcpiPsGetOpcodeInfo (Op->Common.AmlOpcode);
|
|
|
|
if (!(OpInfo->Flags & AML_CREATE))
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Second argument is the Index argument */
|
|
|
|
|
|
|
|
IndexOp = Op->Common.Value.Arg;
|
|
|
|
IndexOp = IndexOp->Common.Next;
|
|
|
|
|
|
|
|
/* Index argument must be a namepath */
|
|
|
|
|
|
|
|
if (IndexOp->Common.AmlOpcode != AML_INT_NAMEPATH_OP)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Major cheat: We previously put the Tag ptr in the Node field */
|
|
|
|
|
|
|
|
Tag = ACPI_CAST_PTR (char, IndexOp->Common.Node);
|
|
|
|
|
|
|
|
/* Match the name in the info table */
|
|
|
|
|
|
|
|
for (Info = AslPredefinedInfo; Info->Name; Info++)
|
|
|
|
{
|
|
|
|
if (ACPI_COMPARE_NAME (Tag, Info->Name))
|
|
|
|
{
|
|
|
|
AcpiOsPrintf (" // %4.4s: %s", Tag,
|
|
|
|
ACPI_CAST_PTR (char, Info->Description));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-07-30 19:33:39 +00:00
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: AcpiDmMethodFlags
|
|
|
|
*
|
|
|
|
* PARAMETERS: Op - Method Object to be examined
|
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Decode control method flags
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
void
|
|
|
|
AcpiDmMethodFlags (
|
|
|
|
ACPI_PARSE_OBJECT *Op)
|
|
|
|
{
|
|
|
|
UINT32 Flags;
|
|
|
|
UINT32 Args;
|
|
|
|
|
|
|
|
|
|
|
|
/* The next Op contains the flags */
|
|
|
|
|
|
|
|
Op = AcpiPsGetDepthNext (NULL, Op);
|
2003-07-13 22:44:13 +00:00
|
|
|
Flags = (UINT8) Op->Common.Value.Integer;
|
2002-07-30 19:33:39 +00:00
|
|
|
Args = Flags & 0x07;
|
|
|
|
|
|
|
|
/* Mark the Op as completed */
|
|
|
|
|
|
|
|
Op->Common.DisasmFlags |= ACPI_PARSEOP_IGNORE;
|
|
|
|
|
|
|
|
/* 1) Method argument count */
|
|
|
|
|
2010-05-28 18:46:48 +00:00
|
|
|
AcpiOsPrintf (", %u, ", Args);
|
2002-07-30 19:33:39 +00:00
|
|
|
|
|
|
|
/* 2) Serialize rule */
|
|
|
|
|
|
|
|
if (!(Flags & 0x08))
|
|
|
|
{
|
|
|
|
AcpiOsPrintf ("Not");
|
|
|
|
}
|
|
|
|
|
|
|
|
AcpiOsPrintf ("Serialized");
|
|
|
|
|
|
|
|
/* 3) SyncLevel */
|
|
|
|
|
|
|
|
if (Flags & 0xF0)
|
|
|
|
{
|
2010-05-28 18:46:48 +00:00
|
|
|
AcpiOsPrintf (", %u", Flags >> 4);
|
2002-07-30 19:33:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: AcpiDmFieldFlags
|
|
|
|
*
|
|
|
|
* PARAMETERS: Op - Field Object to be examined
|
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Decode Field definition flags
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
void
|
|
|
|
AcpiDmFieldFlags (
|
|
|
|
ACPI_PARSE_OBJECT *Op)
|
|
|
|
{
|
|
|
|
UINT32 Flags;
|
|
|
|
|
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
Op = Op->Common.Next;
|
2003-07-13 22:44:13 +00:00
|
|
|
Flags = (UINT8) Op->Common.Value.Integer;
|
2002-07-30 19:33:39 +00:00
|
|
|
|
|
|
|
/* Mark the Op as completed */
|
|
|
|
|
|
|
|
Op->Common.DisasmFlags |= ACPI_PARSEOP_IGNORE;
|
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
AcpiOsPrintf ("%s, ", AcpiGbl_AccessTypes [Flags & 0x07]);
|
2002-07-30 19:33:39 +00:00
|
|
|
AcpiOsPrintf ("%s, ", AcpiGbl_LockRule [(Flags & 0x10) >> 4]);
|
|
|
|
AcpiOsPrintf ("%s)", AcpiGbl_UpdateRules [(Flags & 0x60) >> 5]);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: AcpiDmAddressSpace
|
|
|
|
*
|
|
|
|
* PARAMETERS: SpaceId - ID to be translated
|
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Decode a SpaceId to an AddressSpaceKeyword
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
void
|
|
|
|
AcpiDmAddressSpace (
|
|
|
|
UINT8 SpaceId)
|
|
|
|
{
|
|
|
|
|
|
|
|
if (SpaceId >= ACPI_NUM_PREDEFINED_REGIONS)
|
|
|
|
{
|
|
|
|
if (SpaceId == 0x7F)
|
|
|
|
{
|
|
|
|
AcpiOsPrintf ("FFixedHW, ");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
AcpiOsPrintf ("0x%.2X, ", SpaceId);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
AcpiOsPrintf ("%s, ", AcpiGbl_RegionTypes [SpaceId]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: AcpiDmRegionFlags
|
|
|
|
*
|
|
|
|
* PARAMETERS: Op - Object to be examined
|
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Decode OperationRegion flags
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
void
|
|
|
|
AcpiDmRegionFlags (
|
|
|
|
ACPI_PARSE_OBJECT *Op)
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
/* The next Op contains the SpaceId */
|
|
|
|
|
|
|
|
Op = AcpiPsGetDepthNext (NULL, Op);
|
|
|
|
|
|
|
|
/* Mark the Op as completed */
|
|
|
|
|
|
|
|
Op->Common.DisasmFlags |= ACPI_PARSEOP_IGNORE;
|
|
|
|
|
|
|
|
AcpiOsPrintf (", ");
|
2003-07-13 22:44:13 +00:00
|
|
|
AcpiDmAddressSpace ((UINT8) Op->Common.Value.Integer);
|
2002-07-30 19:33:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: AcpiDmMatchOp
|
|
|
|
*
|
|
|
|
* PARAMETERS: Op - Match Object to be examined
|
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Decode Match opcode operands
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
void
|
|
|
|
AcpiDmMatchOp (
|
|
|
|
ACPI_PARSE_OBJECT *Op)
|
|
|
|
{
|
|
|
|
ACPI_PARSE_OBJECT *NextOp;
|
|
|
|
|
|
|
|
|
|
|
|
NextOp = AcpiPsGetDepthNext (NULL, Op);
|
|
|
|
NextOp = NextOp->Common.Next;
|
|
|
|
|
|
|
|
if (!NextOp)
|
|
|
|
{
|
|
|
|
/* Handle partial tree during single-step */
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Mark the two nodes that contain the encoding for the match keywords */
|
|
|
|
|
|
|
|
NextOp->Common.DisasmOpcode = ACPI_DASM_MATCHOP;
|
|
|
|
|
|
|
|
NextOp = NextOp->Common.Next;
|
|
|
|
NextOp = NextOp->Common.Next;
|
|
|
|
NextOp->Common.DisasmOpcode = ACPI_DASM_MATCHOP;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: AcpiDmMatchKeyword
|
|
|
|
*
|
|
|
|
* PARAMETERS: Op - Match Object to be examined
|
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Decode Match opcode operands
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2005-11-01 22:11:18 +00:00
|
|
|
static void
|
2002-07-30 19:33:39 +00:00
|
|
|
AcpiDmMatchKeyword (
|
|
|
|
ACPI_PARSE_OBJECT *Op)
|
|
|
|
{
|
|
|
|
|
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
if (((UINT32) Op->Common.Value.Integer) > ACPI_MAX_MATCH_OPCODE)
|
2002-07-30 19:33:39 +00:00
|
|
|
{
|
|
|
|
AcpiOsPrintf ("/* Unknown Match Keyword encoding */");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2007-03-22 17:24:05 +00:00
|
|
|
AcpiOsPrintf ("%s", ACPI_CAST_PTR (char,
|
|
|
|
AcpiGbl_MatchOps[(ACPI_SIZE) Op->Common.Value.Integer]));
|
2002-07-30 19:33:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: AcpiDmDisassembleOneOp
|
|
|
|
*
|
|
|
|
* PARAMETERS: WalkState - Current walk info
|
|
|
|
* Info - Parse tree walk info
|
|
|
|
* Op - Op that is to be printed
|
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Disassemble a single AML opcode
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
void
|
|
|
|
AcpiDmDisassembleOneOp (
|
|
|
|
ACPI_WALK_STATE *WalkState,
|
|
|
|
ACPI_OP_WALK_INFO *Info,
|
|
|
|
ACPI_PARSE_OBJECT *Op)
|
|
|
|
{
|
|
|
|
const ACPI_OPCODE_INFO *OpInfo = NULL;
|
|
|
|
UINT32 Offset;
|
|
|
|
UINT32 Length;
|
2007-03-22 17:24:05 +00:00
|
|
|
ACPI_PARSE_OBJECT *Child;
|
|
|
|
ACPI_STATUS Status;
|
2011-11-23 18:05:37 +00:00
|
|
|
UINT8 *Aml;
|
2002-07-30 19:33:39 +00:00
|
|
|
|
|
|
|
|
|
|
|
if (!Op)
|
|
|
|
{
|
|
|
|
AcpiOsPrintf ("<NULL OP PTR>");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (Op->Common.DisasmOpcode)
|
|
|
|
{
|
|
|
|
case ACPI_DASM_MATCHOP:
|
|
|
|
|
|
|
|
AcpiDmMatchKeyword (Op);
|
|
|
|
return;
|
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
case ACPI_DASM_LNOT_SUFFIX:
|
|
|
|
switch (Op->Common.AmlOpcode)
|
|
|
|
{
|
|
|
|
case AML_LEQUAL_OP:
|
|
|
|
AcpiOsPrintf ("LNotEqual");
|
|
|
|
break;
|
2002-07-30 19:33:39 +00:00
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
case AML_LGREATER_OP:
|
|
|
|
AcpiOsPrintf ("LLessEqual");
|
|
|
|
break;
|
2002-07-30 19:33:39 +00:00
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
case AML_LLESS_OP:
|
|
|
|
AcpiOsPrintf ("LGreaterEqual");
|
|
|
|
break;
|
2009-06-01 21:02:40 +00:00
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
2007-03-22 17:24:05 +00:00
|
|
|
}
|
|
|
|
Op->Common.DisasmOpcode = 0;
|
|
|
|
Op->Common.DisasmFlags |= ACPI_PARSEOP_IGNORE;
|
|
|
|
return;
|
2002-07-30 19:33:39 +00:00
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
default:
|
2002-07-30 19:33:39 +00:00
|
|
|
break;
|
2007-03-22 17:24:05 +00:00
|
|
|
}
|
2002-07-30 19:33:39 +00:00
|
|
|
|
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
OpInfo = AcpiPsGetOpcodeInfo (Op->Common.AmlOpcode);
|
2002-07-30 19:33:39 +00:00
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
/* The op and arguments */
|
2002-07-30 19:33:39 +00:00
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
switch (Op->Common.AmlOpcode)
|
|
|
|
{
|
|
|
|
case AML_LNOT_OP:
|
2002-07-30 19:33:39 +00:00
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
Child = Op->Common.Value.Arg;
|
|
|
|
if ((Child->Common.AmlOpcode == AML_LEQUAL_OP) ||
|
|
|
|
(Child->Common.AmlOpcode == AML_LGREATER_OP) ||
|
|
|
|
(Child->Common.AmlOpcode == AML_LLESS_OP))
|
|
|
|
{
|
|
|
|
Child->Common.DisasmOpcode = ACPI_DASM_LNOT_SUFFIX;
|
|
|
|
Op->Common.DisasmOpcode = ACPI_DASM_LNOT_PREFIX;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
AcpiOsPrintf ("%s", OpInfo->Name);
|
|
|
|
}
|
2002-07-30 19:33:39 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case AML_BYTE_OP:
|
|
|
|
|
2003-07-13 22:44:13 +00:00
|
|
|
AcpiOsPrintf ("0x%2.2X", (UINT32) Op->Common.Value.Integer);
|
2002-07-30 19:33:39 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
case AML_WORD_OP:
|
|
|
|
|
|
|
|
if (Op->Common.DisasmOpcode == ACPI_DASM_EISAID)
|
|
|
|
{
|
2003-07-13 22:44:13 +00:00
|
|
|
AcpiDmEisaId ((UINT32) Op->Common.Value.Integer);
|
2002-07-30 19:33:39 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2003-07-13 22:44:13 +00:00
|
|
|
AcpiOsPrintf ("0x%4.4X", (UINT32) Op->Common.Value.Integer);
|
2002-07-30 19:33:39 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
case AML_DWORD_OP:
|
|
|
|
|
|
|
|
if (Op->Common.DisasmOpcode == ACPI_DASM_EISAID)
|
|
|
|
{
|
2003-07-13 22:44:13 +00:00
|
|
|
AcpiDmEisaId ((UINT32) Op->Common.Value.Integer);
|
2002-07-30 19:33:39 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2003-07-13 22:44:13 +00:00
|
|
|
AcpiOsPrintf ("0x%8.8X", (UINT32) Op->Common.Value.Integer);
|
2002-07-30 19:33:39 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
case AML_QWORD_OP:
|
|
|
|
|
2010-01-21 20:56:18 +00:00
|
|
|
AcpiOsPrintf ("0x%8.8X%8.8X",
|
|
|
|
ACPI_FORMAT_UINT64 (Op->Common.Value.Integer));
|
2002-07-30 19:33:39 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
case AML_STRING_OP:
|
|
|
|
|
2002-11-27 18:07:48 +00:00
|
|
|
AcpiUtPrintString (Op->Common.Value.String, ACPI_UINT8_MAX);
|
2002-07-30 19:33:39 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
case AML_BUFFER_OP:
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Determine the type of buffer. We can have one of the following:
|
|
|
|
*
|
|
|
|
* 1) ResourceTemplate containing Resource Descriptors.
|
|
|
|
* 2) Unicode String buffer
|
|
|
|
* 3) ASCII String buffer
|
|
|
|
* 4) Raw data buffer (if none of the above)
|
|
|
|
*
|
|
|
|
* Since there are no special AML opcodes to differentiate these
|
|
|
|
* types of buffers, we have to closely look at the data in the
|
|
|
|
* buffer to determine the type.
|
|
|
|
*/
|
2011-11-23 18:05:37 +00:00
|
|
|
if (!AcpiGbl_NoResourceDisassembly)
|
2002-07-30 19:33:39 +00:00
|
|
|
{
|
2011-11-23 18:05:37 +00:00
|
|
|
Status = AcpiDmIsResourceTemplate (Op);
|
|
|
|
if (ACPI_SUCCESS (Status))
|
|
|
|
{
|
|
|
|
Op->Common.DisasmOpcode = ACPI_DASM_RESOURCE;
|
|
|
|
AcpiOsPrintf ("ResourceTemplate");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else if (Status == AE_AML_NO_RESOURCE_END_TAG)
|
|
|
|
{
|
|
|
|
AcpiOsPrintf ("/**** Is ResourceTemplate, but EndTag not at buffer end ****/ ");
|
|
|
|
}
|
2007-03-22 17:24:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (AcpiDmIsUnicodeBuffer (Op))
|
2002-07-30 19:33:39 +00:00
|
|
|
{
|
|
|
|
Op->Common.DisasmOpcode = ACPI_DASM_UNICODE;
|
|
|
|
AcpiOsPrintf ("Unicode (");
|
|
|
|
}
|
|
|
|
else if (AcpiDmIsStringBuffer (Op))
|
|
|
|
{
|
|
|
|
Op->Common.DisasmOpcode = ACPI_DASM_STRING;
|
|
|
|
AcpiOsPrintf ("Buffer");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Op->Common.DisasmOpcode = ACPI_DASM_BUFFER;
|
|
|
|
AcpiOsPrintf ("Buffer");
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
case AML_INT_STATICSTRING_OP:
|
|
|
|
|
|
|
|
if (Op->Common.Value.String)
|
|
|
|
{
|
|
|
|
AcpiOsPrintf ("%s", Op->Common.Value.String);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
AcpiOsPrintf ("\"<NULL STATIC STRING PTR>\"");
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
case AML_INT_NAMEPATH_OP:
|
|
|
|
|
|
|
|
AcpiDmNamestring (Op->Common.Value.Name);
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
case AML_INT_NAMEDFIELD_OP:
|
|
|
|
|
2009-06-01 21:02:40 +00:00
|
|
|
Length = AcpiDmDumpName (Op->Named.Name);
|
2010-05-28 18:46:48 +00:00
|
|
|
AcpiOsPrintf (",%*.s %u", (unsigned) (5 - Length), " ",
|
2005-11-01 22:11:18 +00:00
|
|
|
(UINT32) Op->Common.Value.Integer);
|
2002-07-30 19:33:39 +00:00
|
|
|
AcpiDmCommaIfFieldMember (Op);
|
|
|
|
|
2003-07-13 22:44:13 +00:00
|
|
|
Info->BitOffset += (UINT32) Op->Common.Value.Integer;
|
2002-07-30 19:33:39 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
case AML_INT_RESERVEDFIELD_OP:
|
|
|
|
|
|
|
|
/* Offset() -- Must account for previous offsets */
|
|
|
|
|
2003-07-13 22:44:13 +00:00
|
|
|
Offset = (UINT32) Op->Common.Value.Integer;
|
2002-07-30 19:33:39 +00:00
|
|
|
Info->BitOffset += Offset;
|
|
|
|
|
|
|
|
if (Info->BitOffset % 8 == 0)
|
|
|
|
{
|
2011-11-23 18:05:37 +00:00
|
|
|
AcpiOsPrintf ("Offset (0x%.2X)", ACPI_DIV_8 (Info->BitOffset));
|
2002-07-30 19:33:39 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-05-28 18:46:48 +00:00
|
|
|
AcpiOsPrintf (" , %u", Offset);
|
2002-07-30 19:33:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
AcpiDmCommaIfFieldMember (Op);
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
case AML_INT_ACCESSFIELD_OP:
|
2011-11-23 18:05:37 +00:00
|
|
|
case AML_INT_EXTACCESSFIELD_OP:
|
2002-07-30 19:33:39 +00:00
|
|
|
|
2011-11-23 18:05:37 +00:00
|
|
|
AcpiOsPrintf ("AccessAs (%s, ",
|
|
|
|
AcpiGbl_AccessTypes [(UINT32) (Op->Common.Value.Integer & 0x7)]);
|
|
|
|
|
|
|
|
AcpiDmDecodeAttribute ((UINT8) (Op->Common.Value.Integer >> 8));
|
|
|
|
|
|
|
|
if (Op->Common.AmlOpcode == AML_INT_EXTACCESSFIELD_OP)
|
|
|
|
{
|
|
|
|
AcpiOsPrintf (" (0x%2.2X)", (unsigned) ((Op->Common.Value.Integer >> 16) & 0xFF));
|
|
|
|
}
|
2002-07-30 19:33:39 +00:00
|
|
|
|
2002-11-27 18:07:48 +00:00
|
|
|
AcpiOsPrintf (")");
|
2002-07-30 19:33:39 +00:00
|
|
|
AcpiDmCommaIfFieldMember (Op);
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
2011-11-23 18:05:37 +00:00
|
|
|
case AML_INT_CONNECTION_OP:
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Two types of Connection() - one with a buffer object, the
|
|
|
|
* other with a namestring that points to a buffer object.
|
|
|
|
*/
|
|
|
|
AcpiOsPrintf ("Connection (");
|
|
|
|
Child = Op->Common.Value.Arg;
|
|
|
|
|
|
|
|
if (Child->Common.AmlOpcode == AML_INT_BYTELIST_OP)
|
|
|
|
{
|
|
|
|
AcpiOsPrintf ("\n");
|
|
|
|
|
|
|
|
Aml = Child->Named.Data;
|
|
|
|
Length = (UINT32) Child->Common.Value.Integer;
|
|
|
|
|
|
|
|
Info->Level += 1;
|
|
|
|
Op->Common.DisasmOpcode = ACPI_DASM_RESOURCE;
|
|
|
|
AcpiDmResourceTemplate (Info, Op->Common.Parent, Aml, Length);
|
|
|
|
|
|
|
|
Info->Level -= 1;
|
|
|
|
AcpiDmIndent (Info->Level);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
AcpiDmNamestring (Child->Common.Value.Name);
|
|
|
|
}
|
|
|
|
|
|
|
|
AcpiOsPrintf (")");
|
|
|
|
AcpiDmCommaIfFieldMember (Op);
|
|
|
|
AcpiOsPrintf ("\n");
|
|
|
|
|
|
|
|
Op->Common.DisasmFlags |= ACPI_PARSEOP_IGNORE; /* for now, ignore in AcpiDmAscendingOp */
|
|
|
|
Child->Common.DisasmFlags |= ACPI_PARSEOP_IGNORE;
|
|
|
|
break;
|
|
|
|
|
2002-07-30 19:33:39 +00:00
|
|
|
case AML_INT_BYTELIST_OP:
|
|
|
|
|
|
|
|
AcpiDmByteList (Info, Op);
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
case AML_INT_METHODCALL_OP:
|
|
|
|
|
|
|
|
Op = AcpiPsGetDepthNext (NULL, Op);
|
|
|
|
Op->Common.DisasmFlags |= ACPI_PARSEOP_IGNORE;
|
|
|
|
|
|
|
|
AcpiDmNamestring (Op->Common.Value.Name);
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
|
|
|
/* Just get the opcode name and print it */
|
|
|
|
|
|
|
|
AcpiOsPrintf ("%s", OpInfo->Name);
|
|
|
|
|
|
|
|
|
2002-08-29 01:51:24 +00:00
|
|
|
#ifdef ACPI_DEBUGGER
|
2002-07-30 19:33:39 +00:00
|
|
|
|
|
|
|
if ((Op->Common.AmlOpcode == AML_INT_RETURN_VALUE_OP) &&
|
|
|
|
(WalkState) &&
|
|
|
|
(WalkState->Results) &&
|
2007-03-22 17:24:05 +00:00
|
|
|
(WalkState->ResultCount))
|
2002-07-30 19:33:39 +00:00
|
|
|
{
|
2003-07-13 22:44:13 +00:00
|
|
|
AcpiDmDecodeInternalObject (
|
2005-11-01 22:11:18 +00:00
|
|
|
WalkState->Results->Results.ObjDesc [
|
2007-03-22 17:24:05 +00:00
|
|
|
(WalkState->ResultCount - 1) %
|
|
|
|
ACPI_RESULTS_FRAME_OBJ_NUM]);
|
2002-07-30 19:33:39 +00:00
|
|
|
}
|
|
|
|
#endif
|
2007-03-22 17:24:05 +00:00
|
|
|
|
2002-07-30 19:33:39 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* ACPI_DISASSEMBLER */
|