2000-10-28 05:01:06 +00:00
|
|
|
/*******************************************************************************
|
|
|
|
*
|
2001-05-29 19:52:40 +00:00
|
|
|
* Module Name: rslist - Linked list utilities
|
2004-02-28 20:23:30 +00:00
|
|
|
* $Revision: 34 $
|
2000-10-28 05:01:06 +00:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
*
|
|
|
|
* 1. Copyright Notice
|
|
|
|
*
|
2004-02-28 20:23:30 +00:00
|
|
|
* Some or all of this work - Copyright (c) 1999 - 2004, Intel Corp.
|
2000-12-21 06:56:46 +00:00
|
|
|
* All rights reserved.
|
2000-10-28 05:01:06 +00:00
|
|
|
*
|
|
|
|
* 2. License
|
|
|
|
*
|
|
|
|
* 2.1. This is your license from Intel Corp. under its intellectual property
|
|
|
|
* rights. You may have additional license terms from the party that provided
|
|
|
|
* you this software, covering your right to use that party's intellectual
|
|
|
|
* property rights.
|
|
|
|
*
|
|
|
|
* 2.2. Intel grants, free of charge, to any person ("Licensee") obtaining a
|
|
|
|
* copy of the source code appearing in this file ("Covered Code") an
|
|
|
|
* irrevocable, perpetual, worldwide license under Intel's copyrights in the
|
|
|
|
* base code distributed originally by Intel ("Original Intel Code") to copy,
|
|
|
|
* make derivatives, distribute, use and display any portion of the Covered
|
|
|
|
* Code in any form, with the right to sublicense such rights; and
|
|
|
|
*
|
|
|
|
* 2.3. Intel grants Licensee a non-exclusive and non-transferable patent
|
|
|
|
* license (with the right to sublicense), under only those claims of Intel
|
|
|
|
* patents that are infringed by the Original Intel Code, to make, use, sell,
|
|
|
|
* offer to sell, and import the Covered Code and derivative works thereof
|
|
|
|
* solely to the minimum extent necessary to exercise the above copyright
|
|
|
|
* license, and in no event shall the patent license extend to any additions
|
|
|
|
* to or modifications of the Original Intel Code. No other license or right
|
|
|
|
* is granted directly or by implication, estoppel or otherwise;
|
|
|
|
*
|
|
|
|
* The above copyright and patent license is granted only if the following
|
|
|
|
* conditions are met:
|
|
|
|
*
|
|
|
|
* 3. Conditions
|
|
|
|
*
|
|
|
|
* 3.1. Redistribution of Source with Rights to Further Distribute Source.
|
|
|
|
* Redistribution of source code of any substantial portion of the Covered
|
|
|
|
* Code or modification with rights to further distribute source must include
|
|
|
|
* the above Copyright Notice, the above License, this list of Conditions,
|
|
|
|
* and the following Disclaimer and Export Compliance provision. In addition,
|
|
|
|
* Licensee must cause all Covered Code to which Licensee contributes to
|
|
|
|
* contain a file documenting the changes Licensee made to create that Covered
|
|
|
|
* Code and the date of any change. Licensee must include in that file the
|
|
|
|
* documentation of any changes made by any predecessor Licensee. Licensee
|
|
|
|
* must include a prominent statement that the modification is derived,
|
|
|
|
* directly or indirectly, from Original Intel Code.
|
|
|
|
*
|
|
|
|
* 3.2. Redistribution of Source with no Rights to Further Distribute Source.
|
|
|
|
* Redistribution of source code of any substantial portion of the Covered
|
|
|
|
* Code or modification without rights to further distribute source must
|
|
|
|
* include the following Disclaimer and Export Compliance provision in the
|
|
|
|
* documentation and/or other materials provided with distribution. In
|
|
|
|
* addition, Licensee may not authorize further sublicense of source of any
|
|
|
|
* portion of the Covered Code, and must include terms to the effect that the
|
|
|
|
* license from Licensee to its licensee is limited to the intellectual
|
|
|
|
* property embodied in the software Licensee provides to its licensee, and
|
|
|
|
* not to intellectual property embodied in modifications its licensee may
|
|
|
|
* make.
|
|
|
|
*
|
|
|
|
* 3.3. Redistribution of Executable. Redistribution in executable form of any
|
|
|
|
* substantial portion of the Covered Code or modification must reproduce the
|
|
|
|
* above Copyright Notice, and the following Disclaimer and Export Compliance
|
|
|
|
* provision in the documentation and/or other materials provided with the
|
|
|
|
* distribution.
|
|
|
|
*
|
|
|
|
* 3.4. Intel retains all right, title, and interest in and to the Original
|
|
|
|
* Intel Code.
|
|
|
|
*
|
|
|
|
* 3.5. Neither the name Intel nor any other trademark owned or controlled by
|
|
|
|
* Intel shall be used in advertising or otherwise to promote the sale, use or
|
|
|
|
* other dealings in products derived from or relating to the Covered Code
|
|
|
|
* without prior written authorization from Intel.
|
|
|
|
*
|
|
|
|
* 4. Disclaimer and Export Compliance
|
|
|
|
*
|
|
|
|
* 4.1. INTEL MAKES NO WARRANTY OF ANY KIND REGARDING ANY SOFTWARE PROVIDED
|
|
|
|
* HERE. ANY SOFTWARE ORIGINATING FROM INTEL OR DERIVED FROM INTEL SOFTWARE
|
|
|
|
* IS PROVIDED "AS IS," AND INTEL WILL NOT PROVIDE ANY SUPPORT, ASSISTANCE,
|
|
|
|
* INSTALLATION, TRAINING OR OTHER SERVICES. INTEL WILL NOT PROVIDE ANY
|
|
|
|
* UPDATES, ENHANCEMENTS OR EXTENSIONS. INTEL SPECIFICALLY DISCLAIMS ANY
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY, NONINFRINGEMENT AND FITNESS FOR A
|
|
|
|
* PARTICULAR PURPOSE.
|
|
|
|
*
|
|
|
|
* 4.2. IN NO EVENT SHALL INTEL HAVE ANY LIABILITY TO LICENSEE, ITS LICENSEES
|
|
|
|
* OR ANY OTHER THIRD PARTY, FOR ANY LOST PROFITS, LOST DATA, LOSS OF USE OR
|
|
|
|
* COSTS OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, OR FOR ANY INDIRECT,
|
|
|
|
* SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THIS AGREEMENT, UNDER ANY
|
|
|
|
* CAUSE OF ACTION OR THEORY OF LIABILITY, AND IRRESPECTIVE OF WHETHER INTEL
|
|
|
|
* HAS ADVANCE NOTICE OF THE POSSIBILITY OF SUCH DAMAGES. THESE LIMITATIONS
|
|
|
|
* SHALL APPLY NOTWITHSTANDING THE FAILURE OF THE ESSENTIAL PURPOSE OF ANY
|
|
|
|
* LIMITED REMEDY.
|
|
|
|
*
|
|
|
|
* 4.3. Licensee shall not export, either directly or indirectly, any of this
|
|
|
|
* software or system incorporating such software without first obtaining any
|
|
|
|
* required license or other approval from the U. S. Department of Commerce or
|
|
|
|
* any other agency or department of the United States Government. In the
|
|
|
|
* event Licensee exports any such software from the United States or
|
|
|
|
* re-exports any such software from a foreign destination, Licensee shall
|
|
|
|
* ensure that the distribution and export/re-export of the software is in
|
|
|
|
* compliance with all laws, regulations, orders, or other restrictions of the
|
|
|
|
* U.S. Export Administration Regulations. Licensee agrees that neither it nor
|
|
|
|
* any of its subsidiaries will export/re-export any technical data, process,
|
|
|
|
* software, or service, directly or indirectly, to any country for which the
|
|
|
|
* United States government or any agency thereof requires an export license,
|
|
|
|
* other governmental approval, or letter of assurance, without first obtaining
|
|
|
|
* such license, approval or letter.
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
#define __RSLIST_C__
|
|
|
|
|
2005-10-24 04:31:06 +00:00
|
|
|
#include <contrib/dev/acpica/acpi.h>
|
|
|
|
#include <contrib/dev/acpica/acresrc.h>
|
2000-10-28 05:01:06 +00:00
|
|
|
|
2001-05-29 19:52:40 +00:00
|
|
|
#define _COMPONENT ACPI_RESOURCES
|
2002-02-23 05:10:40 +00:00
|
|
|
ACPI_MODULE_NAME ("rslist")
|
2000-10-28 05:01:06 +00:00
|
|
|
|
|
|
|
|
2001-05-29 19:52:40 +00:00
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: AcpiRsGetResourceType
|
|
|
|
*
|
|
|
|
* PARAMETERS: ResourceStartByte - Byte 0 of a resource descriptor
|
|
|
|
*
|
|
|
|
* RETURN: The Resource Type (Name) with no extraneous bits
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Extract the Resource Type/Name from the first byte of
|
|
|
|
* a resource descriptor.
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
UINT8
|
|
|
|
AcpiRsGetResourceType (
|
|
|
|
UINT8 ResourceStartByte)
|
|
|
|
{
|
|
|
|
|
2002-02-23 05:10:40 +00:00
|
|
|
ACPI_FUNCTION_ENTRY ();
|
2001-09-07 01:22:25 +00:00
|
|
|
|
|
|
|
|
2001-05-29 19:52:40 +00:00
|
|
|
/*
|
|
|
|
* Determine if this is a small or large resource
|
|
|
|
*/
|
2002-02-23 05:10:40 +00:00
|
|
|
switch (ResourceStartByte & ACPI_RDESC_TYPE_MASK)
|
2001-05-29 19:52:40 +00:00
|
|
|
{
|
2002-02-23 05:10:40 +00:00
|
|
|
case ACPI_RDESC_TYPE_SMALL:
|
2001-05-29 19:52:40 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Small Resource Type -- Only bits 6:3 are valid
|
|
|
|
*/
|
2002-02-23 05:10:40 +00:00
|
|
|
return ((UINT8) (ResourceStartByte & ACPI_RDESC_SMALL_MASK));
|
2001-05-29 19:52:40 +00:00
|
|
|
|
|
|
|
|
2002-02-23 05:10:40 +00:00
|
|
|
case ACPI_RDESC_TYPE_LARGE:
|
2001-05-29 19:52:40 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Large Resource Type -- All bits are valid
|
|
|
|
*/
|
|
|
|
return (ResourceStartByte);
|
2002-07-09 17:51:31 +00:00
|
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
/* No other types of resource descriptor */
|
|
|
|
break;
|
2001-05-29 19:52:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return (0xFF);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-10-28 05:01:06 +00:00
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: AcpiRsByteStreamToList
|
|
|
|
*
|
|
|
|
* PARAMETERS: ByteStreamBuffer - Pointer to the resource byte stream
|
|
|
|
* ByteStreamBufferLength - Length of ByteStreamBuffer
|
|
|
|
* OutputBuffer - Pointer to the buffer that will
|
2001-05-29 19:52:40 +00:00
|
|
|
* contain the output structures
|
2000-10-28 05:01:06 +00:00
|
|
|
*
|
2001-05-29 19:52:40 +00:00
|
|
|
* RETURN: Status
|
2000-10-28 05:01:06 +00:00
|
|
|
*
|
|
|
|
* DESCRIPTION: Takes the resource byte stream and parses it, creating a
|
|
|
|
* linked list of resources in the caller's output buffer
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
ACPI_STATUS
|
|
|
|
AcpiRsByteStreamToList (
|
|
|
|
UINT8 *ByteStreamBuffer,
|
|
|
|
UINT32 ByteStreamBufferLength,
|
2002-02-23 05:10:40 +00:00
|
|
|
UINT8 *OutputBuffer)
|
2000-10-28 05:01:06 +00:00
|
|
|
{
|
|
|
|
ACPI_STATUS Status;
|
2002-07-09 17:51:31 +00:00
|
|
|
ACPI_SIZE BytesParsed = 0;
|
2000-10-28 05:01:06 +00:00
|
|
|
UINT8 ResourceType = 0;
|
2002-02-23 05:10:40 +00:00
|
|
|
ACPI_SIZE BytesConsumed = 0;
|
|
|
|
UINT8 *Buffer = OutputBuffer;
|
|
|
|
ACPI_SIZE StructureSize = 0;
|
2000-10-28 05:01:06 +00:00
|
|
|
BOOLEAN EndTagProcessed = FALSE;
|
2002-02-23 05:10:40 +00:00
|
|
|
ACPI_RESOURCE *Resource;
|
2000-10-28 05:01:06 +00:00
|
|
|
|
2002-02-23 05:10:40 +00:00
|
|
|
ACPI_FUNCTION_TRACE ("RsByteStreamToList");
|
2000-10-28 05:01:06 +00:00
|
|
|
|
|
|
|
|
|
|
|
while (BytesParsed < ByteStreamBufferLength &&
|
2002-07-09 17:51:31 +00:00
|
|
|
!EndTagProcessed)
|
2000-10-28 05:01:06 +00:00
|
|
|
{
|
|
|
|
/*
|
2001-05-29 19:52:40 +00:00
|
|
|
* The next byte in the stream is the resource type
|
2000-10-28 05:01:06 +00:00
|
|
|
*/
|
2001-05-29 19:52:40 +00:00
|
|
|
ResourceType = AcpiRsGetResourceType (*ByteStreamBuffer);
|
2000-10-28 05:01:06 +00:00
|
|
|
|
2001-05-29 19:52:40 +00:00
|
|
|
switch (ResourceType)
|
2000-10-28 05:01:06 +00:00
|
|
|
{
|
2002-02-23 05:10:40 +00:00
|
|
|
case ACPI_RDESC_TYPE_MEMORY_24:
|
2001-05-29 19:52:40 +00:00
|
|
|
/*
|
|
|
|
* 24-Bit Memory Resource
|
|
|
|
*/
|
2001-09-07 01:22:25 +00:00
|
|
|
Status = AcpiRsMemory24Resource (ByteStreamBuffer,
|
2002-02-23 05:10:40 +00:00
|
|
|
&BytesConsumed, &Buffer, &StructureSize);
|
2001-05-29 19:52:40 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
2002-02-23 05:10:40 +00:00
|
|
|
case ACPI_RDESC_TYPE_LARGE_VENDOR:
|
2001-05-29 19:52:40 +00:00
|
|
|
/*
|
|
|
|
* Vendor Defined Resource
|
|
|
|
*/
|
|
|
|
Status = AcpiRsVendorResource (ByteStreamBuffer,
|
2002-02-23 05:10:40 +00:00
|
|
|
&BytesConsumed, &Buffer, &StructureSize);
|
2001-05-29 19:52:40 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
2002-02-23 05:10:40 +00:00
|
|
|
case ACPI_RDESC_TYPE_MEMORY_32:
|
2001-05-29 19:52:40 +00:00
|
|
|
/*
|
|
|
|
* 32-Bit Memory Range Resource
|
|
|
|
*/
|
|
|
|
Status = AcpiRsMemory32RangeResource (ByteStreamBuffer,
|
2002-02-23 05:10:40 +00:00
|
|
|
&BytesConsumed, &Buffer, &StructureSize);
|
2001-05-29 19:52:40 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
2002-02-23 05:10:40 +00:00
|
|
|
case ACPI_RDESC_TYPE_FIXED_MEMORY_32:
|
2001-05-29 19:52:40 +00:00
|
|
|
/*
|
|
|
|
* 32-Bit Fixed Memory Resource
|
|
|
|
*/
|
|
|
|
Status = AcpiRsFixedMemory32Resource (ByteStreamBuffer,
|
2002-02-23 05:10:40 +00:00
|
|
|
&BytesConsumed, &Buffer, &StructureSize);
|
2001-05-29 19:52:40 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
2002-02-23 05:10:40 +00:00
|
|
|
case ACPI_RDESC_TYPE_QWORD_ADDRESS_SPACE:
|
2001-05-29 19:52:40 +00:00
|
|
|
/*
|
|
|
|
* 64-Bit Address Resource
|
|
|
|
*/
|
|
|
|
Status = AcpiRsAddress64Resource (ByteStreamBuffer,
|
2002-02-23 05:10:40 +00:00
|
|
|
&BytesConsumed, &Buffer, &StructureSize);
|
2001-05-29 19:52:40 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
2002-02-23 05:10:40 +00:00
|
|
|
case ACPI_RDESC_TYPE_DWORD_ADDRESS_SPACE:
|
2001-05-29 19:52:40 +00:00
|
|
|
/*
|
|
|
|
* 32-Bit Address Resource
|
|
|
|
*/
|
|
|
|
Status = AcpiRsAddress32Resource (ByteStreamBuffer,
|
2002-02-23 05:10:40 +00:00
|
|
|
&BytesConsumed, &Buffer, &StructureSize);
|
2001-05-29 19:52:40 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
2002-02-23 05:10:40 +00:00
|
|
|
case ACPI_RDESC_TYPE_WORD_ADDRESS_SPACE:
|
2001-05-29 19:52:40 +00:00
|
|
|
/*
|
|
|
|
* 16-Bit Address Resource
|
|
|
|
*/
|
|
|
|
Status = AcpiRsAddress16Resource (ByteStreamBuffer,
|
2002-02-23 05:10:40 +00:00
|
|
|
&BytesConsumed, &Buffer, &StructureSize);
|
2001-05-29 19:52:40 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
2002-02-23 05:10:40 +00:00
|
|
|
case ACPI_RDESC_TYPE_EXTENDED_XRUPT:
|
2000-10-28 05:01:06 +00:00
|
|
|
/*
|
2001-05-29 19:52:40 +00:00
|
|
|
* Extended IRQ
|
|
|
|
*/
|
|
|
|
Status = AcpiRsExtendedIrqResource (ByteStreamBuffer,
|
2002-02-23 05:10:40 +00:00
|
|
|
&BytesConsumed, &Buffer, &StructureSize);
|
2001-05-29 19:52:40 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
2002-02-23 05:10:40 +00:00
|
|
|
case ACPI_RDESC_TYPE_IRQ_FORMAT:
|
2001-05-29 19:52:40 +00:00
|
|
|
/*
|
|
|
|
* IRQ Resource
|
|
|
|
*/
|
|
|
|
Status = AcpiRsIrqResource (ByteStreamBuffer,
|
2002-02-23 05:10:40 +00:00
|
|
|
&BytesConsumed, &Buffer, &StructureSize);
|
2001-05-29 19:52:40 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
2002-02-23 05:10:40 +00:00
|
|
|
case ACPI_RDESC_TYPE_DMA_FORMAT:
|
2001-05-29 19:52:40 +00:00
|
|
|
/*
|
|
|
|
* DMA Resource
|
|
|
|
*/
|
|
|
|
Status = AcpiRsDmaResource (ByteStreamBuffer,
|
2002-02-23 05:10:40 +00:00
|
|
|
&BytesConsumed, &Buffer, &StructureSize);
|
2001-05-29 19:52:40 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
2002-02-23 05:10:40 +00:00
|
|
|
case ACPI_RDESC_TYPE_START_DEPENDENT:
|
2001-05-29 19:52:40 +00:00
|
|
|
/*
|
|
|
|
* Start Dependent Functions Resource
|
|
|
|
*/
|
2002-02-23 05:10:40 +00:00
|
|
|
Status = AcpiRsStartDependFnsResource (ByteStreamBuffer,
|
|
|
|
&BytesConsumed, &Buffer, &StructureSize);
|
2001-05-29 19:52:40 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
2002-02-23 05:10:40 +00:00
|
|
|
case ACPI_RDESC_TYPE_END_DEPENDENT:
|
2001-05-29 19:52:40 +00:00
|
|
|
/*
|
|
|
|
* End Dependent Functions Resource
|
|
|
|
*/
|
2002-02-23 05:10:40 +00:00
|
|
|
Status = AcpiRsEndDependFnsResource (ByteStreamBuffer,
|
|
|
|
&BytesConsumed, &Buffer, &StructureSize);
|
2001-05-29 19:52:40 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
2002-02-23 05:10:40 +00:00
|
|
|
case ACPI_RDESC_TYPE_IO_PORT:
|
2001-05-29 19:52:40 +00:00
|
|
|
/*
|
|
|
|
* IO Port Resource
|
|
|
|
*/
|
|
|
|
Status = AcpiRsIoResource (ByteStreamBuffer,
|
2002-02-23 05:10:40 +00:00
|
|
|
&BytesConsumed, &Buffer, &StructureSize);
|
2001-05-29 19:52:40 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
2002-02-23 05:10:40 +00:00
|
|
|
case ACPI_RDESC_TYPE_FIXED_IO_PORT:
|
2001-05-29 19:52:40 +00:00
|
|
|
/*
|
|
|
|
* Fixed IO Port Resource
|
|
|
|
*/
|
|
|
|
Status = AcpiRsFixedIoResource (ByteStreamBuffer,
|
2002-02-23 05:10:40 +00:00
|
|
|
&BytesConsumed, &Buffer, &StructureSize);
|
2001-05-29 19:52:40 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
2002-02-23 05:10:40 +00:00
|
|
|
case ACPI_RDESC_TYPE_SMALL_VENDOR:
|
2001-05-29 19:52:40 +00:00
|
|
|
/*
|
|
|
|
* Vendor Specific Resource
|
|
|
|
*/
|
|
|
|
Status = AcpiRsVendorResource (ByteStreamBuffer,
|
2002-02-23 05:10:40 +00:00
|
|
|
&BytesConsumed, &Buffer, &StructureSize);
|
2001-05-29 19:52:40 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
2002-02-23 05:10:40 +00:00
|
|
|
case ACPI_RDESC_TYPE_END_TAG:
|
2001-05-29 19:52:40 +00:00
|
|
|
/*
|
|
|
|
* End Tag
|
|
|
|
*/
|
|
|
|
EndTagProcessed = TRUE;
|
|
|
|
Status = AcpiRsEndTagResource (ByteStreamBuffer,
|
2002-02-23 05:10:40 +00:00
|
|
|
&BytesConsumed, &Buffer, &StructureSize);
|
2001-05-29 19:52:40 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
/*
|
2002-07-09 17:51:31 +00:00
|
|
|
* Invalid/Unknown resource type
|
2001-05-29 19:52:40 +00:00
|
|
|
*/
|
2002-07-09 17:51:31 +00:00
|
|
|
Status = AE_AML_INVALID_RESOURCE_TYPE;
|
2001-05-29 19:52:40 +00:00
|
|
|
break;
|
2000-10-28 05:01:06 +00:00
|
|
|
}
|
|
|
|
|
2002-02-23 05:10:40 +00:00
|
|
|
if (ACPI_FAILURE (Status))
|
2000-10-28 05:01:06 +00:00
|
|
|
{
|
2001-05-29 19:52:40 +00:00
|
|
|
return_ACPI_STATUS (Status);
|
|
|
|
}
|
2000-10-28 05:01:06 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Update the return value and counter
|
|
|
|
*/
|
|
|
|
BytesParsed += BytesConsumed;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Set the byte stream to point to the next resource
|
|
|
|
*/
|
|
|
|
ByteStreamBuffer += BytesConsumed;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Set the Buffer to the next structure
|
|
|
|
*/
|
2002-07-09 17:51:31 +00:00
|
|
|
Resource = ACPI_CAST_PTR (ACPI_RESOURCE, Buffer);
|
2003-12-09 02:45:16 +00:00
|
|
|
Resource->Length = (UINT32) ACPI_ALIGN_RESOURCE_SIZE (Resource->Length);
|
|
|
|
Buffer += ACPI_ALIGN_RESOURCE_SIZE (StructureSize);
|
2000-10-28 05:01:06 +00:00
|
|
|
|
|
|
|
} /* end while */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Check the reason for exiting the while loop
|
|
|
|
*/
|
2002-07-09 17:51:31 +00:00
|
|
|
if (!EndTagProcessed)
|
2000-10-28 05:01:06 +00:00
|
|
|
{
|
2002-07-09 17:51:31 +00:00
|
|
|
return_ACPI_STATUS (AE_AML_NO_RESOURCE_END_TAG);
|
2000-10-28 05:01:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return_ACPI_STATUS (AE_OK);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: AcpiRsListToByteStream
|
|
|
|
*
|
|
|
|
* PARAMETERS: LinkedList - Pointer to the resource linked list
|
|
|
|
* ByteSteamSizeNeeded - Calculated size of the byte stream
|
2001-05-29 19:52:40 +00:00
|
|
|
* needed from calling
|
2002-07-09 17:51:31 +00:00
|
|
|
* AcpiRsGetByteStreamLength()
|
2001-05-29 19:52:40 +00:00
|
|
|
* The size of the OutputBuffer is
|
|
|
|
* guaranteed to be >=
|
|
|
|
* ByteStreamSizeNeeded
|
2000-10-28 05:01:06 +00:00
|
|
|
* OutputBuffer - Pointer to the buffer that will
|
2001-05-29 19:52:40 +00:00
|
|
|
* contain the byte stream
|
2000-10-28 05:01:06 +00:00
|
|
|
*
|
2001-05-29 19:52:40 +00:00
|
|
|
* RETURN: Status
|
2000-10-28 05:01:06 +00:00
|
|
|
*
|
|
|
|
* DESCRIPTION: Takes the resource linked list and parses it, creating a
|
|
|
|
* byte stream of resources in the caller's output buffer
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
ACPI_STATUS
|
|
|
|
AcpiRsListToByteStream (
|
2001-05-29 19:52:40 +00:00
|
|
|
ACPI_RESOURCE *LinkedList,
|
2002-07-09 17:51:31 +00:00
|
|
|
ACPI_SIZE ByteStreamSizeNeeded,
|
2002-02-23 05:10:40 +00:00
|
|
|
UINT8 *OutputBuffer)
|
2000-10-28 05:01:06 +00:00
|
|
|
{
|
|
|
|
ACPI_STATUS Status;
|
2002-02-23 05:10:40 +00:00
|
|
|
UINT8 *Buffer = OutputBuffer;
|
|
|
|
ACPI_SIZE BytesConsumed = 0;
|
2000-10-28 05:01:06 +00:00
|
|
|
BOOLEAN Done = FALSE;
|
|
|
|
|
|
|
|
|
2002-02-23 05:10:40 +00:00
|
|
|
ACPI_FUNCTION_TRACE ("RsListToByteStream");
|
2000-10-28 05:01:06 +00:00
|
|
|
|
2001-09-07 01:22:25 +00:00
|
|
|
|
2000-10-28 05:01:06 +00:00
|
|
|
while (!Done)
|
|
|
|
{
|
|
|
|
switch (LinkedList->Id)
|
|
|
|
{
|
2001-05-29 19:52:40 +00:00
|
|
|
case ACPI_RSTYPE_IRQ:
|
2000-10-28 05:01:06 +00:00
|
|
|
/*
|
|
|
|
* IRQ Resource
|
|
|
|
*/
|
2001-05-29 19:52:40 +00:00
|
|
|
Status = AcpiRsIrqStream (LinkedList, &Buffer, &BytesConsumed);
|
2000-10-28 05:01:06 +00:00
|
|
|
break;
|
|
|
|
|
2001-05-29 19:52:40 +00:00
|
|
|
case ACPI_RSTYPE_DMA:
|
2000-10-28 05:01:06 +00:00
|
|
|
/*
|
|
|
|
* DMA Resource
|
|
|
|
*/
|
2001-05-29 19:52:40 +00:00
|
|
|
Status = AcpiRsDmaStream (LinkedList, &Buffer, &BytesConsumed);
|
2000-10-28 05:01:06 +00:00
|
|
|
break;
|
|
|
|
|
2001-05-29 19:52:40 +00:00
|
|
|
case ACPI_RSTYPE_START_DPF:
|
2000-10-28 05:01:06 +00:00
|
|
|
/*
|
|
|
|
* Start Dependent Functions Resource
|
|
|
|
*/
|
2002-02-23 05:10:40 +00:00
|
|
|
Status = AcpiRsStartDependFnsStream (LinkedList,
|
2001-05-29 19:52:40 +00:00
|
|
|
&Buffer, &BytesConsumed);
|
2000-10-28 05:01:06 +00:00
|
|
|
break;
|
|
|
|
|
2001-05-29 19:52:40 +00:00
|
|
|
case ACPI_RSTYPE_END_DPF:
|
2000-10-28 05:01:06 +00:00
|
|
|
/*
|
|
|
|
* End Dependent Functions Resource
|
|
|
|
*/
|
2002-02-23 05:10:40 +00:00
|
|
|
Status = AcpiRsEndDependFnsStream (LinkedList,
|
2001-05-29 19:52:40 +00:00
|
|
|
&Buffer, &BytesConsumed);
|
2000-10-28 05:01:06 +00:00
|
|
|
break;
|
|
|
|
|
2001-05-29 19:52:40 +00:00
|
|
|
case ACPI_RSTYPE_IO:
|
2000-10-28 05:01:06 +00:00
|
|
|
/*
|
|
|
|
* IO Port Resource
|
|
|
|
*/
|
2001-05-29 19:52:40 +00:00
|
|
|
Status = AcpiRsIoStream (LinkedList, &Buffer, &BytesConsumed);
|
2000-10-28 05:01:06 +00:00
|
|
|
break;
|
|
|
|
|
2001-05-29 19:52:40 +00:00
|
|
|
case ACPI_RSTYPE_FIXED_IO:
|
2000-10-28 05:01:06 +00:00
|
|
|
/*
|
|
|
|
* Fixed IO Port Resource
|
|
|
|
*/
|
2001-05-29 19:52:40 +00:00
|
|
|
Status = AcpiRsFixedIoStream (LinkedList, &Buffer, &BytesConsumed);
|
2000-10-28 05:01:06 +00:00
|
|
|
break;
|
|
|
|
|
2001-05-29 19:52:40 +00:00
|
|
|
case ACPI_RSTYPE_VENDOR:
|
2000-10-28 05:01:06 +00:00
|
|
|
/*
|
|
|
|
* Vendor Defined Resource
|
|
|
|
*/
|
2001-05-29 19:52:40 +00:00
|
|
|
Status = AcpiRsVendorStream (LinkedList, &Buffer, &BytesConsumed);
|
2000-10-28 05:01:06 +00:00
|
|
|
break;
|
|
|
|
|
2001-05-29 19:52:40 +00:00
|
|
|
case ACPI_RSTYPE_END_TAG:
|
2000-10-28 05:01:06 +00:00
|
|
|
/*
|
|
|
|
* End Tag
|
|
|
|
*/
|
2001-05-29 19:52:40 +00:00
|
|
|
Status = AcpiRsEndTagStream (LinkedList, &Buffer, &BytesConsumed);
|
2000-10-28 05:01:06 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* An End Tag indicates the end of the Resource Template
|
|
|
|
*/
|
|
|
|
Done = TRUE;
|
|
|
|
break;
|
|
|
|
|
2001-05-29 19:52:40 +00:00
|
|
|
case ACPI_RSTYPE_MEM24:
|
2000-10-28 05:01:06 +00:00
|
|
|
/*
|
|
|
|
* 24-Bit Memory Resource
|
|
|
|
*/
|
2001-05-29 19:52:40 +00:00
|
|
|
Status = AcpiRsMemory24Stream (LinkedList, &Buffer, &BytesConsumed);
|
2000-10-28 05:01:06 +00:00
|
|
|
break;
|
|
|
|
|
2001-05-29 19:52:40 +00:00
|
|
|
case ACPI_RSTYPE_MEM32:
|
2000-10-28 05:01:06 +00:00
|
|
|
/*
|
|
|
|
* 32-Bit Memory Range Resource
|
|
|
|
*/
|
2001-05-29 19:52:40 +00:00
|
|
|
Status = AcpiRsMemory32RangeStream (LinkedList, &Buffer,
|
|
|
|
&BytesConsumed);
|
2000-10-28 05:01:06 +00:00
|
|
|
break;
|
|
|
|
|
2001-05-29 19:52:40 +00:00
|
|
|
case ACPI_RSTYPE_FIXED_MEM32:
|
2000-10-28 05:01:06 +00:00
|
|
|
/*
|
|
|
|
* 32-Bit Fixed Memory Resource
|
|
|
|
*/
|
2001-05-29 19:52:40 +00:00
|
|
|
Status = AcpiRsFixedMemory32Stream (LinkedList, &Buffer,
|
|
|
|
&BytesConsumed);
|
2000-10-28 05:01:06 +00:00
|
|
|
break;
|
|
|
|
|
2001-05-29 19:52:40 +00:00
|
|
|
case ACPI_RSTYPE_ADDRESS16:
|
2000-10-28 05:01:06 +00:00
|
|
|
/*
|
|
|
|
* 16-Bit Address Descriptor Resource
|
|
|
|
*/
|
2001-09-07 01:22:25 +00:00
|
|
|
Status = AcpiRsAddress16Stream (LinkedList, &Buffer,
|
2001-05-29 19:52:40 +00:00
|
|
|
&BytesConsumed);
|
2000-10-28 05:01:06 +00:00
|
|
|
break;
|
|
|
|
|
2001-05-29 19:52:40 +00:00
|
|
|
case ACPI_RSTYPE_ADDRESS32:
|
2000-10-28 05:01:06 +00:00
|
|
|
/*
|
|
|
|
* 32-Bit Address Descriptor Resource
|
|
|
|
*/
|
2001-05-29 19:52:40 +00:00
|
|
|
Status = AcpiRsAddress32Stream (LinkedList, &Buffer,
|
|
|
|
&BytesConsumed);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_RSTYPE_ADDRESS64:
|
|
|
|
/*
|
|
|
|
* 64-Bit Address Descriptor Resource
|
|
|
|
*/
|
|
|
|
Status = AcpiRsAddress64Stream (LinkedList, &Buffer,
|
|
|
|
&BytesConsumed);
|
2000-10-28 05:01:06 +00:00
|
|
|
break;
|
|
|
|
|
2001-05-29 19:52:40 +00:00
|
|
|
case ACPI_RSTYPE_EXT_IRQ:
|
2000-10-28 05:01:06 +00:00
|
|
|
/*
|
|
|
|
* Extended IRQ Resource
|
|
|
|
*/
|
2001-05-29 19:52:40 +00:00
|
|
|
Status = AcpiRsExtendedIrqStream (LinkedList, &Buffer,
|
|
|
|
&BytesConsumed);
|
2000-10-28 05:01:06 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
/*
|
|
|
|
* If we get here, everything is out of sync,
|
|
|
|
* so exit with an error
|
|
|
|
*/
|
2002-07-30 19:33:39 +00:00
|
|
|
ACPI_DEBUG_PRINT ((ACPI_DB_ERROR, "Invalid descriptor type (%X) in resource list\n",
|
|
|
|
LinkedList->Id));
|
2001-05-29 19:52:40 +00:00
|
|
|
Status = AE_BAD_DATA;
|
2000-10-28 05:01:06 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
} /* switch (LinkedList->Id) */
|
|
|
|
|
2002-02-23 05:10:40 +00:00
|
|
|
if (ACPI_FAILURE (Status))
|
2001-05-29 19:52:40 +00:00
|
|
|
{
|
|
|
|
return_ACPI_STATUS (Status);
|
|
|
|
}
|
|
|
|
|
2000-10-28 05:01:06 +00:00
|
|
|
/*
|
|
|
|
* Set the Buffer to point to the open byte
|
|
|
|
*/
|
|
|
|
Buffer += BytesConsumed;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Point to the next object
|
|
|
|
*/
|
2002-02-23 05:10:40 +00:00
|
|
|
LinkedList = ACPI_PTR_ADD (ACPI_RESOURCE,
|
2001-05-29 19:52:40 +00:00
|
|
|
LinkedList, LinkedList->Length);
|
2000-10-28 05:01:06 +00:00
|
|
|
}
|
|
|
|
|
2001-05-29 19:52:40 +00:00
|
|
|
return_ACPI_STATUS (AE_OK);
|
2000-10-28 05:01:06 +00:00
|
|
|
}
|
|
|
|
|