/*******************************************************************************
*
* Module Name: utresrc - Resource management utilities
*
******************************************************************************/
/*
* Copyright (C) 2000 - 2016, Intel Corp.
* All rights reserved.
*
* 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.
*/
#include "acpi.h"
#include "accommon.h"
#include "acresrc.h"
ACPI_MODULE_NAME ("utresrc")
/*
* Strings used to decode resource descriptors.
* Used by both the disassembler and the debugger resource dump routines
*/
const char *AcpiGbl_BmDecode[] =
{
"NotBusMaster",
"BusMaster"
};
const char *AcpiGbl_ConfigDecode[] =
{
"0 - Good Configuration",
"1 - Acceptable Configuration",
"2 - Suboptimal Configuration",
"3 - ***Invalid Configuration***",
};
const char *AcpiGbl_ConsumeDecode[] =
{
"ResourceProducer",
"ResourceConsumer"
};
const char *AcpiGbl_DecDecode[] =
{
"PosDecode",
"SubDecode"
};
const char *AcpiGbl_HeDecode[] =
{
"Level",
"Edge"
};
const char *AcpiGbl_IoDecode[] =
{
"Decode10",
"Decode16"
};
const char *AcpiGbl_LlDecode[] =
{
"ActiveHigh",
"ActiveLow",
"ActiveBoth",
"Reserved"
};
const char *AcpiGbl_MaxDecode[] =
{
"MaxNotFixed",
"MaxFixed"
};
const char *AcpiGbl_MemDecode[] =
{
"NonCacheable",
"Cacheable",
"WriteCombining",
"Prefetchable"
};
const char *AcpiGbl_MinDecode[] =
{
"MinNotFixed",
"MinFixed"
};
const char *AcpiGbl_MtpDecode[] =
{
"AddressRangeMemory",
"AddressRangeReserved",
"AddressRangeACPI",
"AddressRangeNVS"
};
const char *AcpiGbl_RngDecode[] =
{
"InvalidRanges",
"NonISAOnlyRanges",
"ISAOnlyRanges",
"EntireRange"
};
const char *AcpiGbl_RwDecode[] =
{
"ReadOnly",
"ReadWrite"
};
const char *AcpiGbl_ShrDecode[] =
{
"Exclusive",
"Shared",
"ExclusiveAndWake", /* ACPI 5.0 */
"SharedAndWake" /* ACPI 5.0 */
};
const char *AcpiGbl_SizDecode[] =
{
"Transfer8",
"Transfer8_16",
"Transfer16",
"InvalidSize"
};
const char *AcpiGbl_TrsDecode[] =
{
"DenseTranslation",
"SparseTranslation"
};
const char *AcpiGbl_TtpDecode[] =
{
"TypeStatic",
"TypeTranslation"
};
const char *AcpiGbl_TypDecode[] =
{
"Compatibility",
"TypeA",
"TypeB",
"TypeF"
};
const char *AcpiGbl_PpcDecode[] =
{
"PullDefault",
"PullUp",
"PullDown",
"PullNone"
};
const char *AcpiGbl_IorDecode[] =
{
"IoRestrictionNone",
"IoRestrictionInputOnly",
"IoRestrictionOutputOnly",
"IoRestrictionNoneAndPreserve"
};
const char *AcpiGbl_DtsDecode[] =
{
"Width8bit",
"Width16bit",
"Width32bit",
"Width64bit",
"Width128bit",
"Width256bit",
};
/* GPIO connection type */
const char *AcpiGbl_CtDecode[] =
{
"Interrupt",
"I/O"
};
/* Serial bus type */
const char *AcpiGbl_SbtDecode[] =
{
"/* UNKNOWN serial bus type */",
"I2C",
"SPI",
"UART"
};
/* I2C serial bus access mode */
const char *AcpiGbl_AmDecode[] =
{
"AddressingMode7Bit",
"AddressingMode10Bit"
};
/* I2C serial bus slave mode */
const char *AcpiGbl_SmDecode[] =
{
"ControllerInitiated",
"DeviceInitiated"
};
/* SPI serial bus wire mode */
const char *AcpiGbl_WmDecode[] =
{
"FourWireMode",
"ThreeWireMode"
};
/* SPI serial clock phase */
const char *AcpiGbl_CphDecode[] =
{
"ClockPhaseFirst",
"ClockPhaseSecond"
};
/* SPI serial bus clock polarity */
const char *AcpiGbl_CpoDecode[] =
{
"ClockPolarityLow",
"ClockPolarityHigh"
};
/* SPI serial bus device polarity */
const char *AcpiGbl_DpDecode[] =
{
"PolarityLow",
"PolarityHigh"
};
/* UART serial bus endian */
const char *AcpiGbl_EdDecode[] =
{
"LittleEndian",
"BigEndian"
};
/* UART serial bus bits per byte */
const char *AcpiGbl_BpbDecode[] =
{
"DataBitsFive",
"DataBitsSix",
"DataBitsSeven",
"DataBitsEight",
"DataBitsNine",
"/* UNKNOWN Bits per byte */",
"/* UNKNOWN Bits per byte */",
"/* UNKNOWN Bits per byte */"
};
/* UART serial bus stop bits */
const char *AcpiGbl_SbDecode[] =
{
"StopBitsZero",
"StopBitsOne",
"StopBitsOnePlusHalf",
"StopBitsTwo"
};
/* UART serial bus flow control */
const char *AcpiGbl_FcDecode[] =
{
"FlowControlNone",
"FlowControlHardware",
"FlowControlXON",
"/* UNKNOWN flow control keyword */"
};
/* UART serial bus parity type */
const char *AcpiGbl_PtDecode[] =
{
"ParityTypeNone",
"ParityTypeEven",
"ParityTypeOdd",
"ParityTypeMark",
"ParityTypeSpace",
"/* UNKNOWN parity keyword */",
"/* UNKNOWN parity keyword */",
"/* UNKNOWN parity keyword */"
};
#endif
/*
* Base sizes of the raw AML resource descriptors, indexed by resource type.
* Zero indicates a reserved (and therefore invalid) resource type.
*/
{
/* Small descriptors */
0,
0,
0,
0,
0,
0,
0,
/* Large descriptors */
0,
0,
0,
};
{
0,
};
/*
* Resource types, used to validate the resource length field.
* The length of fixed-length types must match exactly, variable
* lengths must meet the minimum required length, etc.
* Zero indicates a reserved (and therefore invalid) resource type.
*/
{
/* Small descriptors */
0,
0,
0,
0,
ACPI_SMALL_VARIABLE_LENGTH, /* 04 IRQ */
ACPI_FIXED_LENGTH, /* 05 DMA */
ACPI_SMALL_VARIABLE_LENGTH, /* 06 StartDependentFunctions */
ACPI_FIXED_LENGTH, /* 07 EndDependentFunctions */
ACPI_FIXED_LENGTH, /* 08 IO */
ACPI_FIXED_LENGTH, /* 09 FixedIO */
ACPI_FIXED_LENGTH, /* 0A FixedDMA */
0,
0,
0,
ACPI_VARIABLE_LENGTH, /* 0E VendorShort */
ACPI_FIXED_LENGTH, /* 0F EndTag */
/* Large descriptors */
0,
ACPI_FIXED_LENGTH, /* 01 Memory24 */
ACPI_FIXED_LENGTH, /* 02 GenericRegister */
0,
ACPI_VARIABLE_LENGTH, /* 04 VendorLong */
ACPI_FIXED_LENGTH, /* 05 Memory32 */
ACPI_FIXED_LENGTH, /* 06 Memory32Fixed */
ACPI_VARIABLE_LENGTH, /* 07 Dword* address */
ACPI_VARIABLE_LENGTH, /* 08 Word* address */
ACPI_VARIABLE_LENGTH, /* 09 ExtendedIRQ */
ACPI_VARIABLE_LENGTH, /* 0A Qword* address */
ACPI_FIXED_LENGTH, /* 0B Extended* address */
ACPI_VARIABLE_LENGTH, /* 0C Gpio* */
0,
ACPI_VARIABLE_LENGTH /* 0E *SerialBus */
};
/*******************************************************************************
*
* FUNCTION: AcpiUtWalkAmlResources
*
* PARAMETERS: WalkState - Current walk info
* PARAMETERS: Aml - Pointer to the raw AML resource template
* AmlLength - Length of the entire template
* UserFunction - Called once for each descriptor found. If
* NULL, a pointer to the EndTag is returned
* Context - Passed to UserFunction
*
* RETURN: Status
*
* DESCRIPTION: Walk a raw AML resource list(buffer). User function called
* once for each resource found.
*
******************************************************************************/
void **Context)
{
/* The absolute minimum resource template is one EndTag descriptor */
if (AmlLength < sizeof (AML_RESOURCE_END_TAG))
{
}
/* Point to the end of the resource template buffer */
/* Walk the byte list, abort on any invalid descriptor type or length */
{
/* Validate the Resource Type and Resource Length */
if (ACPI_FAILURE (Status))
{
/*
* Exit on failure. Cannot continue because the descriptor
* length may be bogus also.
*/
}
/* Get the length of this descriptor */
/* Invoke the user function */
if (UserFunction)
{
Status = UserFunction (
if (ACPI_FAILURE (Status))
{
}
}
/* An EndTag descriptor terminates this resource template */
{
/*
* There must be at least one more byte in the buffer for
* the 2nd byte of the EndTag
*/
{
}
/* Return the pointer to the EndTag if requested */
if (!UserFunction)
{
}
/* Normal exit */
}
}
/* Did not find an EndTag descriptor */
if (UserFunction)
{
/* Insert an EndTag anyway. AcpiRsGetListLength always leaves room */
if (ACPI_FAILURE (Status))
{
}
}
}
/*******************************************************************************
*
* FUNCTION: AcpiUtValidateResource
*
* PARAMETERS: WalkState - Current walk info
* Aml - Pointer to the raw AML resource descriptor
* ReturnIndex - Where the resource index is returned. NULL
* if the index is not required.
*
* RETURN: Status, and optionally the Index into the global resource tables
*
* DESCRIPTION: Validate an AML resource descriptor by checking the Resource
* Type and Resource Length. Returns an index into the global
* resource information/dispatch tables for later use.
*
******************************************************************************/
void *Aml,
{
/*
* 1) Validate the ResourceType field (Byte 0)
*/
/*
* Byte 0 contains the descriptor name (Resource Type)
*/
{
/* Verify the large resource type (name) against the max */
{
goto InvalidResource;
}
/*
* Large Resource Type -- bits 6:0 contain the name
* Translate range 0x80-0x8B to index range 0x10-0x1B
*/
}
else
{
/*
* Small Resource Type -- bits 6:3 contain the name
* Shift range to index range 0x00-0x0F
*/
ResourceIndex = (UINT8)
}
/*
* Check validity of the resource type, via AcpiGbl_ResourceTypes.
* Zero indicates an invalid resource.
*/
{
goto InvalidResource;
}
/*
* Validate the ResourceLength field. This ensures that the length
* is at least reasonable, and guarantees that it is non-zero.
*/
/* Validate based upon the type of resource - fixed length or variable */
switch (AcpiGbl_ResourceTypes[ResourceIndex])
{
case ACPI_FIXED_LENGTH:
/* Fixed length resource, length must match exactly */
if (ResourceLength != MinimumResourceLength)
{
goto BadResourceLength;
}
break;
case ACPI_VARIABLE_LENGTH:
/* Variable length resource, length must be at least the minimum */
{
goto BadResourceLength;
}
break;
/* Small variable length resource, length can be (Min) or (Min-1) */
if ((ResourceLength > MinimumResourceLength) ||
{
goto BadResourceLength;
}
break;
default:
/* Shouldn't happen (because of validation earlier), but be sure */
goto InvalidResource;
}
{
/* Validate the BusType field */
{
if (WalkState)
{
"Invalid/unsupported SerialBus resource descriptor: BusType 0x%2.2X",
}
return (AE_AML_INVALID_RESOURCE_TYPE);
}
}
/* Optionally return the resource table index */
if (ReturnIndex)
{
}
return (AE_OK);
if (WalkState)
{
"Invalid/unsupported resource descriptor: Type 0x%2.2X",
ResourceType));
}
return (AE_AML_INVALID_RESOURCE_TYPE);
if (WalkState)
{
"Invalid resource descriptor length: Type "
"0x%2.2X, Length 0x%4.4X, MinLength 0x%4.4X",
}
return (AE_AML_BAD_RESOURCE_LENGTH);
}
/*******************************************************************************
*
* FUNCTION: AcpiUtGetResourceType
*
* PARAMETERS: Aml - Pointer to the raw AML resource descriptor
*
* RETURN: The Resource Type with no extraneous bits (except the
*
* a resource descriptor.
*
******************************************************************************/
void *Aml)
{
/*
* Byte 0 contains the descriptor name (Resource Type)
*/
{
/* Large Resource Type -- bits 6:0 contain the name */
}
else
{
/* Small Resource Type -- bits 6:3 contain the name */
}
}
/*******************************************************************************
*
* FUNCTION: AcpiUtGetResourceLength
*
* PARAMETERS: Aml - Pointer to the raw AML resource descriptor
*
* RETURN: Byte Length
*
* DESCRIPTION: Get the "Resource Length" of a raw AML descriptor. By
* definition, this does not include the size of the descriptor
* header or the length field itself.
*
******************************************************************************/
void *Aml)
{
/*
* Byte 0 contains the descriptor name (Resource Type)
*/
{
/* Large Resource type -- bytes 1-2 contain the 16-bit length */
}
else
{
/* Small Resource type -- bits 2:0 of byte 0 contain the length */
}
return (ResourceLength);
}
/*******************************************************************************
*
* FUNCTION: AcpiUtGetResourceHeaderLength
*
* PARAMETERS: Aml - Pointer to the raw AML resource descriptor
*
*
* DESCRIPTION: Get the length of the header for this resource.
*
******************************************************************************/
void *Aml)
{
{
return (sizeof (AML_RESOURCE_LARGE_HEADER));
}
else
{
return (sizeof (AML_RESOURCE_SMALL_HEADER));
}
}
/*******************************************************************************
*
* FUNCTION: AcpiUtGetDescriptorLength
*
* PARAMETERS: Aml - Pointer to the raw AML resource descriptor
*
* RETURN: Byte length
*
* DESCRIPTION: Get the total byte length of a raw AML descriptor, including the
* length of the descriptor header and the length field itself.
* Used to walk descriptor lists.
*
******************************************************************************/
void *Aml)
{
/*
* Get the Resource Length (does not include header length) and add
* the header length (depends on if this is a small or large resource)
*/
return (AcpiUtGetResourceLength (Aml) +
}
/*******************************************************************************
*
* FUNCTION: AcpiUtGetResourceEndTag
*
* PARAMETERS: ObjDesc - The resource template buffer object
* EndTag - Where the pointer to the EndTag is returned
*
* RETURN: Status, pointer to the end tag
*
* DESCRIPTION: Find the EndTag resource descriptor in an AML resource template
* Note: allows a buffer length of zero.
*
******************************************************************************/
{
/* Allow a buffer length of zero */
{
}
/* Validate the template and get a pointer to the EndTag */
}