2000-10-28 05:01:06 +00:00
|
|
|
/******************************************************************************
|
|
|
|
*
|
|
|
|
* Module Name: psargs - Parse AML opcode arguments
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
|
2011-01-13 16:12:34 +00:00
|
|
|
/*
|
2013-01-17 21:32:03 +00:00
|
|
|
* Copyright (C) 2000 - 2013, Intel Corp.
|
2000-12-21 06:56:46 +00:00
|
|
|
* All rights reserved.
|
2000-10-28 05:01:06 +00:00
|
|
|
*
|
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.
|
|
|
|
*/
|
2000-10-28 05:01:06 +00:00
|
|
|
|
|
|
|
#define __PSARGS_C__
|
|
|
|
|
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 "acnamesp.h"
|
|
|
|
#include "acdispat.h"
|
2000-10-28 05:01:06 +00:00
|
|
|
|
2001-05-29 19:52:40 +00:00
|
|
|
#define _COMPONENT ACPI_PARSER
|
2002-02-23 05:10:40 +00:00
|
|
|
ACPI_MODULE_NAME ("psargs")
|
2000-10-28 05:01:06 +00:00
|
|
|
|
2005-11-01 22:11:18 +00:00
|
|
|
/* Local prototypes */
|
|
|
|
|
|
|
|
static UINT32
|
|
|
|
AcpiPsGetNextPackageLength (
|
|
|
|
ACPI_PARSE_STATE *ParserState);
|
|
|
|
|
|
|
|
static ACPI_PARSE_OBJECT *
|
|
|
|
AcpiPsGetNextField (
|
|
|
|
ACPI_PARSE_STATE *ParserState);
|
|
|
|
|
2000-10-28 05:01:06 +00:00
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: AcpiPsGetNextPackageLength
|
|
|
|
*
|
|
|
|
* PARAMETERS: ParserState - Current parser state object
|
|
|
|
*
|
2007-03-22 17:24:05 +00:00
|
|
|
* RETURN: Decoded package length. On completion, the AML pointer points
|
2000-10-28 05:01:06 +00:00
|
|
|
* past the length byte or bytes.
|
|
|
|
*
|
2007-03-22 17:24:05 +00:00
|
|
|
* DESCRIPTION: Decode and return a package length field.
|
|
|
|
* Note: Largest package length is 28 bits, from ACPI specification
|
2000-10-28 05:01:06 +00:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2005-11-01 22:11:18 +00:00
|
|
|
static UINT32
|
2000-10-28 05:01:06 +00:00
|
|
|
AcpiPsGetNextPackageLength (
|
|
|
|
ACPI_PARSE_STATE *ParserState)
|
|
|
|
{
|
2007-03-22 17:24:05 +00:00
|
|
|
UINT8 *Aml = ParserState->Aml;
|
|
|
|
UINT32 PackageLength = 0;
|
2009-06-01 21:02:40 +00:00
|
|
|
UINT32 ByteCount;
|
2007-03-22 17:24:05 +00:00
|
|
|
UINT8 ByteZeroMask = 0x3F; /* Default [0:5] */
|
2000-10-28 05:01:06 +00:00
|
|
|
|
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
ACPI_FUNCTION_TRACE (PsGetNextPackageLength);
|
2000-10-28 05:01:06 +00:00
|
|
|
|
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
/*
|
|
|
|
* Byte 0 bits [6:7] contain the number of additional bytes
|
|
|
|
* used to encode the package length, either 0,1,2, or 3
|
|
|
|
*/
|
|
|
|
ByteCount = (Aml[0] >> 6);
|
2009-06-01 21:02:40 +00:00
|
|
|
ParserState->Aml += ((ACPI_SIZE) ByteCount + 1);
|
2000-10-28 05:01:06 +00:00
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
/* Get bytes 3, 2, 1 as needed */
|
2002-07-09 17:51:31 +00:00
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
while (ByteCount)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Final bit positions for the package length bytes:
|
|
|
|
* Byte3->[20:27]
|
|
|
|
* Byte2->[12:19]
|
|
|
|
* Byte1->[04:11]
|
|
|
|
* Byte0->[00:03]
|
|
|
|
*/
|
|
|
|
PackageLength |= (Aml[ByteCount] << ((ByteCount << 3) - 4));
|
2002-11-27 18:07:48 +00:00
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
ByteZeroMask = 0x0F; /* Use bits [0:3] of byte 0 */
|
|
|
|
ByteCount--;
|
2000-10-28 05:01:06 +00:00
|
|
|
}
|
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
/* Byte 0 is a special case, either bits [0:3] or [0:5] are used */
|
|
|
|
|
|
|
|
PackageLength |= (Aml[0] & ByteZeroMask);
|
2013-02-15 19:12:35 +00:00
|
|
|
return_UINT32 (PackageLength);
|
2000-10-28 05:01:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: AcpiPsGetNextPackageEnd
|
|
|
|
*
|
|
|
|
* PARAMETERS: ParserState - Current parser state object
|
|
|
|
*
|
|
|
|
* RETURN: Pointer to end-of-package +1
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Get next package length and return a pointer past the end of
|
2012-10-19 18:47:57 +00:00
|
|
|
* the package. Consumes the package length field
|
2000-10-28 05:01:06 +00:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
UINT8 *
|
|
|
|
AcpiPsGetNextPackageEnd (
|
|
|
|
ACPI_PARSE_STATE *ParserState)
|
|
|
|
{
|
|
|
|
UINT8 *Start = ParserState->Aml;
|
2007-03-22 17:24:05 +00:00
|
|
|
UINT32 PackageLength;
|
2000-10-28 05:01:06 +00:00
|
|
|
|
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
ACPI_FUNCTION_TRACE (PsGetNextPackageEnd);
|
2000-10-28 05:01:06 +00:00
|
|
|
|
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
/* Function below updates ParserState->Aml */
|
2002-11-27 18:07:48 +00:00
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
PackageLength = AcpiPsGetNextPackageLength (ParserState);
|
2000-10-28 05:01:06 +00:00
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
return_PTR (Start + PackageLength); /* end of package */
|
2000-10-28 05:01:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: AcpiPsGetNextNamestring
|
|
|
|
*
|
|
|
|
* PARAMETERS: ParserState - Current parser state object
|
|
|
|
*
|
|
|
|
* RETURN: Pointer to the start of the name string (pointer points into
|
|
|
|
* the AML.
|
|
|
|
*
|
2012-10-19 18:47:57 +00:00
|
|
|
* DESCRIPTION: Get next raw namestring within the AML stream. Handles all name
|
|
|
|
* prefix characters. Set parser state to point past the string.
|
2000-10-28 05:01:06 +00:00
|
|
|
* (Name is consumed from the AML.)
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2003-04-29 18:39:29 +00:00
|
|
|
char *
|
2000-10-28 05:01:06 +00:00
|
|
|
AcpiPsGetNextNamestring (
|
|
|
|
ACPI_PARSE_STATE *ParserState)
|
|
|
|
{
|
2002-07-09 17:51:31 +00:00
|
|
|
UINT8 *Start = ParserState->Aml;
|
|
|
|
UINT8 *End = ParserState->Aml;
|
2000-10-28 05:01:06 +00:00
|
|
|
|
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
ACPI_FUNCTION_TRACE (PsGetNextNamestring);
|
2000-10-28 05:01:06 +00:00
|
|
|
|
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
/* Point past any namestring prefix characters (backslash or carat) */
|
2000-10-28 05:01:06 +00:00
|
|
|
|
2013-01-02 19:01:21 +00:00
|
|
|
while (ACPI_IS_ROOT_PREFIX (*End) ||
|
|
|
|
ACPI_IS_PARENT_PREFIX (*End))
|
2000-10-28 05:01:06 +00:00
|
|
|
{
|
|
|
|
End++;
|
|
|
|
}
|
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
/* Decode the path prefix character */
|
2000-10-28 05:01:06 +00:00
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
switch (*End)
|
2000-10-28 05:01:06 +00:00
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
|
|
|
|
/* NullName */
|
|
|
|
|
|
|
|
if (End == Start)
|
|
|
|
{
|
|
|
|
Start = NULL;
|
|
|
|
}
|
|
|
|
End++;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case AML_DUAL_NAME_PREFIX:
|
|
|
|
|
2002-07-09 17:51:31 +00:00
|
|
|
/* Two name segments */
|
2000-10-28 05:01:06 +00:00
|
|
|
|
2002-11-27 18:07:48 +00:00
|
|
|
End += 1 + (2 * ACPI_NAME_SIZE);
|
2000-10-28 05:01:06 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case AML_MULTI_NAME_PREFIX_OP:
|
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
/* Multiple name segments, 4 chars each, count in next byte */
|
2000-10-28 05:01:06 +00:00
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
End += 2 + (*(End + 1) * ACPI_NAME_SIZE);
|
2000-10-28 05:01:06 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
2002-07-09 17:51:31 +00:00
|
|
|
/* Single name segment */
|
2000-10-28 05:01:06 +00:00
|
|
|
|
2002-11-27 18:07:48 +00:00
|
|
|
End += ACPI_NAME_SIZE;
|
2000-10-28 05:01:06 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
ParserState->Aml = End;
|
2003-04-29 18:39:29 +00:00
|
|
|
return_PTR ((char *) Start);
|
2000-10-28 05:01:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: AcpiPsGetNextNamepath
|
|
|
|
*
|
|
|
|
* PARAMETERS: ParserState - Current parser state object
|
|
|
|
* Arg - Where the namepath will be stored
|
|
|
|
* ArgCount - If the namepath points to a control method
|
|
|
|
* the method's argument is returned here.
|
2007-03-22 17:24:05 +00:00
|
|
|
* PossibleMethodCall - Whether the namepath can possibly be the
|
2002-11-27 18:07:48 +00:00
|
|
|
* start of a method call
|
2000-10-28 05:01:06 +00:00
|
|
|
*
|
2002-08-29 01:51:24 +00:00
|
|
|
* RETURN: Status
|
2000-10-28 05:01:06 +00:00
|
|
|
*
|
2002-08-29 01:51:24 +00:00
|
|
|
* DESCRIPTION: Get next name (if method call, return # of required args).
|
|
|
|
* Names are looked up in the internal namespace to determine
|
2012-10-19 18:47:57 +00:00
|
|
|
* if the name represents a control method. If a method
|
2000-10-28 05:01:06 +00:00
|
|
|
* is found, the number of arguments to the method is returned.
|
|
|
|
* This information is critical for parsing to continue correctly.
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2002-08-29 01:51:24 +00:00
|
|
|
ACPI_STATUS
|
2000-10-28 05:01:06 +00:00
|
|
|
AcpiPsGetNextNamepath (
|
2002-11-27 18:07:48 +00:00
|
|
|
ACPI_WALK_STATE *WalkState,
|
2000-10-28 05:01:06 +00:00
|
|
|
ACPI_PARSE_STATE *ParserState,
|
|
|
|
ACPI_PARSE_OBJECT *Arg,
|
2007-03-22 17:24:05 +00:00
|
|
|
BOOLEAN PossibleMethodCall)
|
2000-10-28 05:01:06 +00:00
|
|
|
{
|
2009-06-01 21:02:40 +00:00
|
|
|
ACPI_STATUS Status;
|
2003-04-29 18:39:29 +00:00
|
|
|
char *Path;
|
2000-10-28 05:01:06 +00:00
|
|
|
ACPI_PARSE_OBJECT *NameOp;
|
2002-08-29 01:51:24 +00:00
|
|
|
ACPI_OPERAND_OBJECT *MethodDesc;
|
|
|
|
ACPI_NAMESPACE_NODE *Node;
|
2009-06-01 21:02:40 +00:00
|
|
|
UINT8 *Start = ParserState->Aml;
|
2000-10-28 05:01:06 +00:00
|
|
|
|
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
ACPI_FUNCTION_TRACE (PsGetNextNamepath);
|
2000-10-28 05:01:06 +00:00
|
|
|
|
|
|
|
|
|
|
|
Path = AcpiPsGetNextNamestring (ParserState);
|
2007-03-22 17:24:05 +00:00
|
|
|
AcpiPsInitOp (Arg, AML_INT_NAMEPATH_OP);
|
2000-10-28 05:01:06 +00:00
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
/* Null path case is allowed, just exit */
|
2000-10-28 05:01:06 +00:00
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
if (!Path)
|
2000-10-28 05:01:06 +00:00
|
|
|
{
|
2007-03-22 17:24:05 +00:00
|
|
|
Arg->Common.Value.Name = Path;
|
|
|
|
return_ACPI_STATUS (AE_OK);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2009-06-01 21:02:40 +00:00
|
|
|
* Lookup the name in the internal namespace, starting with the current
|
|
|
|
* scope. We don't want to add anything new to the namespace here,
|
|
|
|
* however, so we use MODE_EXECUTE.
|
2007-03-22 17:24:05 +00:00
|
|
|
* Allow searching of the parent tree, but don't open a new scope -
|
|
|
|
* we just want to lookup the object (must be mode EXECUTE to perform
|
|
|
|
* the upsearch)
|
|
|
|
*/
|
2009-06-01 21:02:40 +00:00
|
|
|
Status = AcpiNsLookup (WalkState->ScopeInfo, Path,
|
|
|
|
ACPI_TYPE_ANY, ACPI_IMODE_EXECUTE,
|
2007-03-22 17:24:05 +00:00
|
|
|
ACPI_NS_SEARCH_PARENT | ACPI_NS_DONT_OPEN_SCOPE, NULL, &Node);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If this name is a control method invocation, we must
|
|
|
|
* setup the method call
|
|
|
|
*/
|
|
|
|
if (ACPI_SUCCESS (Status) &&
|
|
|
|
PossibleMethodCall &&
|
|
|
|
(Node->Type == ACPI_TYPE_METHOD))
|
|
|
|
{
|
2009-06-01 21:02:40 +00:00
|
|
|
if (WalkState->Opcode == AML_UNLOAD_OP)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* AcpiPsGetNextNamestring has increased the AML pointer,
|
|
|
|
* so we need to restore the saved AML pointer for method call.
|
|
|
|
*/
|
|
|
|
WalkState->ParserState.Aml = Start;
|
|
|
|
WalkState->ArgCount = 1;
|
|
|
|
AcpiPsInitOp (Arg, AML_INT_METHODCALL_OP);
|
|
|
|
return_ACPI_STATUS (AE_OK);
|
|
|
|
}
|
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
/* This name is actually a control method invocation */
|
|
|
|
|
|
|
|
MethodDesc = AcpiNsGetAttachedObject (Node);
|
|
|
|
ACPI_DEBUG_PRINT ((ACPI_DB_PARSE,
|
|
|
|
"Control Method - %p Desc %p Path=%p\n", Node, MethodDesc, Path));
|
|
|
|
|
|
|
|
NameOp = AcpiPsAllocOp (AML_INT_NAMEPATH_OP);
|
|
|
|
if (!NameOp)
|
2000-10-28 05:01:06 +00:00
|
|
|
{
|
2007-03-22 17:24:05 +00:00
|
|
|
return_ACPI_STATUS (AE_NO_MEMORY);
|
2000-10-28 05:01:06 +00:00
|
|
|
}
|
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
/* Change Arg into a METHOD CALL and attach name to it */
|
2005-11-01 22:11:18 +00:00
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
AcpiPsInitOp (Arg, AML_INT_METHODCALL_OP);
|
|
|
|
NameOp->Common.Value.Name = Path;
|
2002-08-29 01:51:24 +00:00
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
/* Point METHODCALL/NAME to the METHOD Node */
|
2002-08-29 01:51:24 +00:00
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
NameOp->Common.Node = Node;
|
|
|
|
AcpiPsAppendArg (Arg, NameOp);
|
2000-10-28 05:01:06 +00:00
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
if (!MethodDesc)
|
|
|
|
{
|
|
|
|
ACPI_ERROR ((AE_INFO,
|
|
|
|
"Control Method %p has no attached object",
|
|
|
|
Node));
|
|
|
|
return_ACPI_STATUS (AE_AML_INTERNAL);
|
|
|
|
}
|
2000-10-28 05:01:06 +00:00
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
ACPI_DEBUG_PRINT ((ACPI_DB_PARSE,
|
|
|
|
"Control Method - %p Args %X\n",
|
|
|
|
Node, MethodDesc->Method.ParamCount));
|
2000-10-28 05:01:06 +00:00
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
/* Get the number of arguments to expect */
|
2000-10-28 05:01:06 +00:00
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
WalkState->ArgCount = MethodDesc->Method.ParamCount;
|
|
|
|
return_ACPI_STATUS (AE_OK);
|
|
|
|
}
|
2000-10-28 05:01:06 +00:00
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
/*
|
|
|
|
* Special handling if the name was not found during the lookup -
|
|
|
|
* some NotFound cases are allowed
|
|
|
|
*/
|
|
|
|
if (Status == AE_NOT_FOUND)
|
|
|
|
{
|
|
|
|
/* 1) NotFound is ok during load pass 1/2 (allow forward references) */
|
2002-08-29 01:51:24 +00:00
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
if ((WalkState->ParseFlags & ACPI_PARSE_MODE_MASK) !=
|
|
|
|
ACPI_PARSE_EXECUTE)
|
|
|
|
{
|
|
|
|
Status = AE_OK;
|
|
|
|
}
|
2002-11-27 18:07:48 +00:00
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
/* 2) NotFound during a CondRefOf(x) is ok by definition */
|
2000-10-28 05:01:06 +00:00
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
else if (WalkState->Op->Common.AmlOpcode == AML_COND_REF_OF_OP)
|
|
|
|
{
|
|
|
|
Status = AE_OK;
|
2000-10-28 05:01:06 +00:00
|
|
|
}
|
2002-11-27 18:07:48 +00:00
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
/*
|
|
|
|
* 3) NotFound while building a Package is ok at this point, we
|
|
|
|
* may flag as an error later if slack mode is not enabled.
|
|
|
|
* (Some ASL code depends on allowing this behavior)
|
|
|
|
*/
|
|
|
|
else if ((Arg->Common.Parent) &&
|
|
|
|
((Arg->Common.Parent->Common.AmlOpcode == AML_PACKAGE_OP) ||
|
|
|
|
(Arg->Common.Parent->Common.AmlOpcode == AML_VAR_PACKAGE_OP)))
|
2002-11-27 18:07:48 +00:00
|
|
|
{
|
2007-03-22 17:24:05 +00:00
|
|
|
Status = AE_OK;
|
|
|
|
}
|
|
|
|
}
|
2003-07-13 22:44:13 +00:00
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
/* Final exception check (may have been changed from code above) */
|
2003-07-13 22:44:13 +00:00
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
if (ACPI_FAILURE (Status))
|
|
|
|
{
|
|
|
|
ACPI_ERROR_NAMESPACE (Path, Status);
|
2003-07-13 22:44:13 +00:00
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
if ((WalkState->ParseFlags & ACPI_PARSE_MODE_MASK) ==
|
|
|
|
ACPI_PARSE_EXECUTE)
|
|
|
|
{
|
|
|
|
/* Report a control method execution error */
|
|
|
|
|
|
|
|
Status = AcpiDsMethodError (Status, WalkState);
|
2002-11-27 18:07:48 +00:00
|
|
|
}
|
2000-10-28 05:01:06 +00:00
|
|
|
}
|
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
/* Save the namepath */
|
2000-10-28 05:01:06 +00:00
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
Arg->Common.Value.Name = Path;
|
2002-08-29 01:51:24 +00:00
|
|
|
return_ACPI_STATUS (Status);
|
2000-10-28 05:01:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: AcpiPsGetNextSimpleArg
|
|
|
|
*
|
|
|
|
* PARAMETERS: ParserState - Current parser state object
|
|
|
|
* ArgType - The argument type (AML_*_ARG)
|
|
|
|
* Arg - Where the argument is returned
|
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Get the next simple argument (constant, string, or namestring)
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
void
|
|
|
|
AcpiPsGetNextSimpleArg (
|
|
|
|
ACPI_PARSE_STATE *ParserState,
|
|
|
|
UINT32 ArgType,
|
|
|
|
ACPI_PARSE_OBJECT *Arg)
|
|
|
|
{
|
2007-03-22 17:24:05 +00:00
|
|
|
UINT32 Length;
|
|
|
|
UINT16 Opcode;
|
|
|
|
UINT8 *Aml = ParserState->Aml;
|
2000-10-28 05:01:06 +00:00
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
|
|
|
|
ACPI_FUNCTION_TRACE_U32 (PsGetNextSimpleArg, ArgType);
|
2000-10-28 05:01:06 +00:00
|
|
|
|
|
|
|
|
|
|
|
switch (ArgType)
|
|
|
|
{
|
|
|
|
case ARGP_BYTEDATA:
|
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
/* Get 1 byte from the AML stream */
|
|
|
|
|
|
|
|
Opcode = AML_BYTE_OP;
|
2010-01-21 20:56:18 +00:00
|
|
|
Arg->Common.Value.Integer = (UINT64) *Aml;
|
2007-03-22 17:24:05 +00:00
|
|
|
Length = 1;
|
2000-10-28 05:01:06 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ARGP_WORDDATA:
|
|
|
|
|
|
|
|
/* Get 2 bytes from the AML stream */
|
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
Opcode = AML_WORD_OP;
|
|
|
|
ACPI_MOVE_16_TO_64 (&Arg->Common.Value.Integer, Aml);
|
|
|
|
Length = 2;
|
2000-10-28 05:01:06 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ARGP_DWORDDATA:
|
|
|
|
|
|
|
|
/* Get 4 bytes from the AML stream */
|
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
Opcode = AML_DWORD_OP;
|
|
|
|
ACPI_MOVE_32_TO_64 (&Arg->Common.Value.Integer, Aml);
|
|
|
|
Length = 4;
|
2000-10-28 05:01:06 +00:00
|
|
|
break;
|
|
|
|
|
2001-08-26 22:28:18 +00:00
|
|
|
case ARGP_QWORDDATA:
|
|
|
|
|
|
|
|
/* Get 8 bytes from the AML stream */
|
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
Opcode = AML_QWORD_OP;
|
|
|
|
ACPI_MOVE_64_TO_64 (&Arg->Common.Value.Integer, Aml);
|
|
|
|
Length = 8;
|
2001-08-26 22:28:18 +00:00
|
|
|
break;
|
|
|
|
|
2000-10-28 05:01:06 +00:00
|
|
|
case ARGP_CHARLIST:
|
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
/* Get a pointer to the string, point past the string */
|
2000-10-28 05:01:06 +00:00
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
Opcode = AML_STRING_OP;
|
|
|
|
Arg->Common.Value.String = ACPI_CAST_PTR (char, Aml);
|
|
|
|
|
|
|
|
/* Find the null terminator */
|
|
|
|
|
|
|
|
Length = 0;
|
|
|
|
while (Aml[Length])
|
2000-10-28 05:01:06 +00:00
|
|
|
{
|
2007-03-22 17:24:05 +00:00
|
|
|
Length++;
|
2000-10-28 05:01:06 +00:00
|
|
|
}
|
2007-03-22 17:24:05 +00:00
|
|
|
Length++;
|
2000-10-28 05:01:06 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ARGP_NAME:
|
|
|
|
case ARGP_NAMESTRING:
|
|
|
|
|
2001-05-29 19:52:40 +00:00
|
|
|
AcpiPsInitOp (Arg, AML_INT_NAMEPATH_OP);
|
2002-07-09 17:51:31 +00:00
|
|
|
Arg->Common.Value.Name = AcpiPsGetNextNamestring (ParserState);
|
2007-03-22 17:24:05 +00:00
|
|
|
return_VOID;
|
2002-07-09 17:51:31 +00:00
|
|
|
|
|
|
|
default:
|
2002-11-27 18:07:48 +00:00
|
|
|
|
2010-03-05 19:58:45 +00:00
|
|
|
ACPI_ERROR ((AE_INFO, "Invalid ArgType 0x%X", ArgType));
|
2007-03-22 17:24:05 +00:00
|
|
|
return_VOID;
|
2000-10-28 05:01:06 +00:00
|
|
|
}
|
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
AcpiPsInitOp (Arg, Opcode);
|
|
|
|
ParserState->Aml += Length;
|
2000-10-28 05:01:06 +00:00
|
|
|
return_VOID;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: AcpiPsGetNextField
|
|
|
|
*
|
|
|
|
* PARAMETERS: ParserState - Current parser state object
|
|
|
|
*
|
|
|
|
* RETURN: A newly allocated FIELD op
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Get next field (NamedField, ReservedField, or AccessField)
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2005-11-01 22:11:18 +00:00
|
|
|
static ACPI_PARSE_OBJECT *
|
2000-10-28 05:01:06 +00:00
|
|
|
AcpiPsGetNextField (
|
|
|
|
ACPI_PARSE_STATE *ParserState)
|
|
|
|
{
|
2011-11-23 18:05:37 +00:00
|
|
|
UINT32 AmlOffset;
|
2000-10-28 05:01:06 +00:00
|
|
|
ACPI_PARSE_OBJECT *Field;
|
2011-11-23 18:05:37 +00:00
|
|
|
ACPI_PARSE_OBJECT *Arg = NULL;
|
2000-10-28 05:01:06 +00:00
|
|
|
UINT16 Opcode;
|
|
|
|
UINT32 Name;
|
2011-11-23 18:05:37 +00:00
|
|
|
UINT8 AccessType;
|
|
|
|
UINT8 AccessAttribute;
|
|
|
|
UINT8 AccessLength;
|
|
|
|
UINT32 PkgLength;
|
|
|
|
UINT8 *PkgEnd;
|
|
|
|
UINT32 BufferLength;
|
2000-10-28 05:01:06 +00:00
|
|
|
|
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
ACPI_FUNCTION_TRACE (PsGetNextField);
|
2000-10-28 05:01:06 +00:00
|
|
|
|
|
|
|
|
2011-11-23 18:05:37 +00:00
|
|
|
AmlOffset = (UINT32) ACPI_PTR_DIFF (
|
|
|
|
ParserState->Aml, ParserState->AmlStart);
|
|
|
|
|
2005-11-01 22:11:18 +00:00
|
|
|
/* Determine field type */
|
2000-10-28 05:01:06 +00:00
|
|
|
|
2002-02-23 05:10:40 +00:00
|
|
|
switch (ACPI_GET8 (ParserState->Aml))
|
2000-10-28 05:01:06 +00:00
|
|
|
{
|
2011-11-23 18:05:37 +00:00
|
|
|
case AML_FIELD_OFFSET_OP:
|
2000-10-28 05:01:06 +00:00
|
|
|
|
2011-11-23 18:05:37 +00:00
|
|
|
Opcode = AML_INT_RESERVEDFIELD_OP;
|
|
|
|
ParserState->Aml++;
|
2000-10-28 05:01:06 +00:00
|
|
|
break;
|
|
|
|
|
2011-11-23 18:05:37 +00:00
|
|
|
case AML_FIELD_ACCESS_OP:
|
2000-10-28 05:01:06 +00:00
|
|
|
|
2011-11-23 18:05:37 +00:00
|
|
|
Opcode = AML_INT_ACCESSFIELD_OP;
|
2000-10-28 05:01:06 +00:00
|
|
|
ParserState->Aml++;
|
|
|
|
break;
|
|
|
|
|
2011-11-23 18:05:37 +00:00
|
|
|
case AML_FIELD_CONNECTION_OP:
|
2000-10-28 05:01:06 +00:00
|
|
|
|
2011-11-23 18:05:37 +00:00
|
|
|
Opcode = AML_INT_CONNECTION_OP;
|
2000-10-28 05:01:06 +00:00
|
|
|
ParserState->Aml++;
|
|
|
|
break;
|
2011-11-23 18:05:37 +00:00
|
|
|
|
|
|
|
case AML_FIELD_EXT_ACCESS_OP:
|
|
|
|
|
|
|
|
Opcode = AML_INT_EXTACCESSFIELD_OP;
|
|
|
|
ParserState->Aml++;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
|
|
|
Opcode = AML_INT_NAMEDFIELD_OP;
|
|
|
|
break;
|
2000-10-28 05:01:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Allocate a new field op */
|
|
|
|
|
|
|
|
Field = AcpiPsAllocOp (Opcode);
|
2002-07-09 17:51:31 +00:00
|
|
|
if (!Field)
|
2000-10-28 05:01:06 +00:00
|
|
|
{
|
2002-07-09 17:51:31 +00:00
|
|
|
return_PTR (NULL);
|
|
|
|
}
|
2000-10-28 05:01:06 +00:00
|
|
|
|
2002-07-09 17:51:31 +00:00
|
|
|
Field->Common.AmlOffset = AmlOffset;
|
2000-10-28 05:01:06 +00:00
|
|
|
|
2002-07-09 17:51:31 +00:00
|
|
|
/* Decode the field type */
|
2000-10-28 05:01:06 +00:00
|
|
|
|
2002-07-09 17:51:31 +00:00
|
|
|
switch (Opcode)
|
|
|
|
{
|
|
|
|
case AML_INT_NAMEDFIELD_OP:
|
2000-10-28 05:01:06 +00:00
|
|
|
|
2002-07-09 17:51:31 +00:00
|
|
|
/* Get the 4-character name */
|
2000-10-28 05:01:06 +00:00
|
|
|
|
2003-07-13 22:44:13 +00:00
|
|
|
ACPI_MOVE_32_TO_32 (&Name, ParserState->Aml);
|
2002-07-09 17:51:31 +00:00
|
|
|
AcpiPsSetName (Field, Name);
|
2002-11-27 18:07:48 +00:00
|
|
|
ParserState->Aml += ACPI_NAME_SIZE;
|
2000-10-28 05:01:06 +00:00
|
|
|
|
2002-07-09 17:51:31 +00:00
|
|
|
/* Get the length which is encoded as a package length */
|
2000-10-28 05:01:06 +00:00
|
|
|
|
2002-07-09 17:51:31 +00:00
|
|
|
Field->Common.Value.Size = AcpiPsGetNextPackageLength (ParserState);
|
|
|
|
break;
|
2000-10-28 05:01:06 +00:00
|
|
|
|
|
|
|
|
2002-07-09 17:51:31 +00:00
|
|
|
case AML_INT_RESERVEDFIELD_OP:
|
2000-10-28 05:01:06 +00:00
|
|
|
|
2002-07-09 17:51:31 +00:00
|
|
|
/* Get the length which is encoded as a package length */
|
2000-10-28 05:01:06 +00:00
|
|
|
|
2002-07-09 17:51:31 +00:00
|
|
|
Field->Common.Value.Size = AcpiPsGetNextPackageLength (ParserState);
|
|
|
|
break;
|
2000-10-28 05:01:06 +00:00
|
|
|
|
|
|
|
|
2002-07-09 17:51:31 +00:00
|
|
|
case AML_INT_ACCESSFIELD_OP:
|
2011-11-23 18:05:37 +00:00
|
|
|
case AML_INT_EXTACCESSFIELD_OP:
|
2002-07-09 17:51:31 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Get AccessType and AccessAttrib and merge into the field Op
|
2011-11-23 18:05:37 +00:00
|
|
|
* AccessType is first operand, AccessAttribute is second. stuff
|
|
|
|
* these bytes into the node integer value for convenience.
|
2002-07-09 17:51:31 +00:00
|
|
|
*/
|
2011-11-23 18:05:37 +00:00
|
|
|
|
|
|
|
/* Get the two bytes (Type/Attribute) */
|
|
|
|
|
|
|
|
AccessType = ACPI_GET8 (ParserState->Aml);
|
2002-07-09 17:51:31 +00:00
|
|
|
ParserState->Aml++;
|
2011-11-23 18:05:37 +00:00
|
|
|
AccessAttribute = ACPI_GET8 (ParserState->Aml);
|
2002-07-09 17:51:31 +00:00
|
|
|
ParserState->Aml++;
|
2011-11-23 18:05:37 +00:00
|
|
|
|
|
|
|
Field->Common.Value.Integer = (UINT8) AccessType;
|
|
|
|
Field->Common.Value.Integer |= (UINT16) (AccessAttribute << 8);
|
|
|
|
|
|
|
|
/* This opcode has a third byte, AccessLength */
|
|
|
|
|
|
|
|
if (Opcode == AML_INT_EXTACCESSFIELD_OP)
|
|
|
|
{
|
|
|
|
AccessLength = ACPI_GET8 (ParserState->Aml);
|
|
|
|
ParserState->Aml++;
|
|
|
|
|
|
|
|
Field->Common.Value.Integer |= (UINT32) (AccessLength << 16);
|
|
|
|
}
|
2002-07-09 17:51:31 +00:00
|
|
|
break;
|
|
|
|
|
2011-11-23 18:05:37 +00:00
|
|
|
|
|
|
|
case AML_INT_CONNECTION_OP:
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Argument for Connection operator can be either a Buffer
|
|
|
|
* (resource descriptor), or a NameString.
|
|
|
|
*/
|
|
|
|
if (ACPI_GET8 (ParserState->Aml) == AML_BUFFER_OP)
|
|
|
|
{
|
|
|
|
ParserState->Aml++;
|
|
|
|
|
|
|
|
PkgEnd = ParserState->Aml;
|
|
|
|
PkgLength = AcpiPsGetNextPackageLength (ParserState);
|
|
|
|
PkgEnd += PkgLength;
|
|
|
|
|
|
|
|
if (ParserState->Aml < PkgEnd)
|
|
|
|
{
|
|
|
|
/* Non-empty list */
|
|
|
|
|
|
|
|
Arg = AcpiPsAllocOp (AML_INT_BYTELIST_OP);
|
|
|
|
if (!Arg)
|
|
|
|
{
|
2012-03-27 15:07:35 +00:00
|
|
|
AcpiPsFreeOp (Field);
|
2011-11-23 18:05:37 +00:00
|
|
|
return_PTR (NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Get the actual buffer length argument */
|
|
|
|
|
|
|
|
Opcode = ACPI_GET8 (ParserState->Aml);
|
|
|
|
ParserState->Aml++;
|
|
|
|
|
|
|
|
switch (Opcode)
|
|
|
|
{
|
|
|
|
case AML_BYTE_OP: /* AML_BYTEDATA_ARG */
|
2013-05-17 23:13:40 +00:00
|
|
|
|
2011-11-23 18:05:37 +00:00
|
|
|
BufferLength = ACPI_GET8 (ParserState->Aml);
|
|
|
|
ParserState->Aml += 1;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case AML_WORD_OP: /* AML_WORDDATA_ARG */
|
2013-05-17 23:13:40 +00:00
|
|
|
|
2011-11-23 18:05:37 +00:00
|
|
|
BufferLength = ACPI_GET16 (ParserState->Aml);
|
|
|
|
ParserState->Aml += 2;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case AML_DWORD_OP: /* AML_DWORDATA_ARG */
|
2013-05-17 23:13:40 +00:00
|
|
|
|
2011-11-23 18:05:37 +00:00
|
|
|
BufferLength = ACPI_GET32 (ParserState->Aml);
|
|
|
|
ParserState->Aml += 4;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2013-05-17 23:13:40 +00:00
|
|
|
|
2011-11-23 18:05:37 +00:00
|
|
|
BufferLength = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Fill in bytelist data */
|
|
|
|
|
|
|
|
Arg->Named.Value.Size = BufferLength;
|
|
|
|
Arg->Named.Data = ParserState->Aml;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Skip to End of byte data */
|
|
|
|
|
|
|
|
ParserState->Aml = PkgEnd;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Arg = AcpiPsAllocOp (AML_INT_NAMEPATH_OP);
|
|
|
|
if (!Arg)
|
|
|
|
{
|
2012-03-27 15:07:35 +00:00
|
|
|
AcpiPsFreeOp (Field);
|
2011-11-23 18:05:37 +00:00
|
|
|
return_PTR (NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Get the Namestring argument */
|
|
|
|
|
|
|
|
Arg->Common.Value.Name = AcpiPsGetNextNamestring (ParserState);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Link the buffer/namestring to parent (CONNECTION_OP) */
|
|
|
|
|
|
|
|
AcpiPsAppendArg (Field, Arg);
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
2002-07-09 17:51:31 +00:00
|
|
|
default:
|
2002-11-27 18:07:48 +00:00
|
|
|
|
2002-07-09 17:51:31 +00:00
|
|
|
/* Opcode was set in previous switch */
|
|
|
|
break;
|
2000-10-28 05:01:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return_PTR (Field);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: AcpiPsGetNextArg
|
|
|
|
*
|
2005-11-01 22:11:18 +00:00
|
|
|
* PARAMETERS: WalkState - Current state
|
|
|
|
* ParserState - Current parser state object
|
2000-10-28 05:01:06 +00:00
|
|
|
* ArgType - The argument type (AML_*_ARG)
|
2005-11-01 22:11:18 +00:00
|
|
|
* ReturnArg - Where the next arg is returned
|
2000-10-28 05:01:06 +00:00
|
|
|
*
|
2002-08-29 01:51:24 +00:00
|
|
|
* RETURN: Status, and an op object containing the next argument.
|
2000-10-28 05:01:06 +00:00
|
|
|
*
|
|
|
|
* DESCRIPTION: Get next argument (including complex list arguments that require
|
|
|
|
* pushing the parser stack)
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2002-08-29 01:51:24 +00:00
|
|
|
ACPI_STATUS
|
2000-10-28 05:01:06 +00:00
|
|
|
AcpiPsGetNextArg (
|
2002-11-27 18:07:48 +00:00
|
|
|
ACPI_WALK_STATE *WalkState,
|
2000-10-28 05:01:06 +00:00
|
|
|
ACPI_PARSE_STATE *ParserState,
|
|
|
|
UINT32 ArgType,
|
2002-08-29 01:51:24 +00:00
|
|
|
ACPI_PARSE_OBJECT **ReturnArg)
|
2000-10-28 05:01:06 +00:00
|
|
|
{
|
|
|
|
ACPI_PARSE_OBJECT *Arg = NULL;
|
|
|
|
ACPI_PARSE_OBJECT *Prev = NULL;
|
|
|
|
ACPI_PARSE_OBJECT *Field;
|
|
|
|
UINT32 Subop;
|
2002-08-29 01:51:24 +00:00
|
|
|
ACPI_STATUS Status = AE_OK;
|
2000-10-28 05:01:06 +00:00
|
|
|
|
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
ACPI_FUNCTION_TRACE_PTR (PsGetNextArg, ParserState);
|
2000-10-28 05:01:06 +00:00
|
|
|
|
|
|
|
|
|
|
|
switch (ArgType)
|
|
|
|
{
|
|
|
|
case ARGP_BYTEDATA:
|
|
|
|
case ARGP_WORDDATA:
|
|
|
|
case ARGP_DWORDDATA:
|
|
|
|
case ARGP_CHARLIST:
|
|
|
|
case ARGP_NAME:
|
|
|
|
case ARGP_NAMESTRING:
|
|
|
|
|
2005-11-01 22:11:18 +00:00
|
|
|
/* Constants, strings, and namestrings are all the same size */
|
2000-10-28 05:01:06 +00:00
|
|
|
|
|
|
|
Arg = AcpiPsAllocOp (AML_BYTE_OP);
|
2002-08-29 01:51:24 +00:00
|
|
|
if (!Arg)
|
2000-10-28 05:01:06 +00:00
|
|
|
{
|
2002-08-29 01:51:24 +00:00
|
|
|
return_ACPI_STATUS (AE_NO_MEMORY);
|
2000-10-28 05:01:06 +00:00
|
|
|
}
|
2002-08-29 01:51:24 +00:00
|
|
|
AcpiPsGetNextSimpleArg (ParserState, ArgType, Arg);
|
2000-10-28 05:01:06 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ARGP_PKGLENGTH:
|
|
|
|
|
2002-08-29 01:51:24 +00:00
|
|
|
/* Package length, nothing returned */
|
2000-10-28 05:01:06 +00:00
|
|
|
|
|
|
|
ParserState->PkgEnd = AcpiPsGetNextPackageEnd (ParserState);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ARGP_FIELDLIST:
|
|
|
|
|
|
|
|
if (ParserState->Aml < ParserState->PkgEnd)
|
|
|
|
{
|
2002-08-29 01:51:24 +00:00
|
|
|
/* Non-empty list */
|
2000-10-28 05:01:06 +00:00
|
|
|
|
|
|
|
while (ParserState->Aml < ParserState->PkgEnd)
|
|
|
|
{
|
|
|
|
Field = AcpiPsGetNextField (ParserState);
|
|
|
|
if (!Field)
|
|
|
|
{
|
2002-08-29 01:51:24 +00:00
|
|
|
return_ACPI_STATUS (AE_NO_MEMORY);
|
2000-10-28 05:01:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (Prev)
|
|
|
|
{
|
2002-07-09 17:51:31 +00:00
|
|
|
Prev->Common.Next = Field;
|
2000-10-28 05:01:06 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Arg = Field;
|
|
|
|
}
|
|
|
|
Prev = Field;
|
|
|
|
}
|
|
|
|
|
2002-08-29 01:51:24 +00:00
|
|
|
/* Skip to End of byte data */
|
2000-10-28 05:01:06 +00:00
|
|
|
|
|
|
|
ParserState->Aml = ParserState->PkgEnd;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ARGP_BYTELIST:
|
|
|
|
|
|
|
|
if (ParserState->Aml < ParserState->PkgEnd)
|
|
|
|
{
|
2002-08-29 01:51:24 +00:00
|
|
|
/* Non-empty list */
|
2000-10-28 05:01:06 +00:00
|
|
|
|
2001-05-29 19:52:40 +00:00
|
|
|
Arg = AcpiPsAllocOp (AML_INT_BYTELIST_OP);
|
2002-08-29 01:51:24 +00:00
|
|
|
if (!Arg)
|
2000-10-28 05:01:06 +00:00
|
|
|
{
|
2002-08-29 01:51:24 +00:00
|
|
|
return_ACPI_STATUS (AE_NO_MEMORY);
|
2000-10-28 05:01:06 +00:00
|
|
|
}
|
|
|
|
|
2002-08-29 01:51:24 +00:00
|
|
|
/* Fill in bytelist data */
|
|
|
|
|
2005-11-01 22:11:18 +00:00
|
|
|
Arg->Common.Value.Size = (UINT32)
|
|
|
|
ACPI_PTR_DIFF (ParserState->PkgEnd, ParserState->Aml);
|
2002-08-29 01:51:24 +00:00
|
|
|
Arg->Named.Data = ParserState->Aml;
|
|
|
|
|
|
|
|
/* Skip to End of byte data */
|
2000-10-28 05:01:06 +00:00
|
|
|
|
|
|
|
ParserState->Aml = ParserState->PkgEnd;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ARGP_TARGET:
|
|
|
|
case ARGP_SUPERNAME:
|
2002-02-23 05:10:40 +00:00
|
|
|
case ARGP_SIMPLENAME:
|
2002-08-29 01:51:24 +00:00
|
|
|
|
|
|
|
Subop = AcpiPsPeekOpcode (ParserState);
|
|
|
|
if (Subop == 0 ||
|
|
|
|
AcpiPsIsLeadingChar (Subop) ||
|
2013-01-02 19:01:21 +00:00
|
|
|
ACPI_IS_ROOT_PREFIX (Subop) ||
|
|
|
|
ACPI_IS_PARENT_PREFIX (Subop))
|
2000-10-28 05:01:06 +00:00
|
|
|
{
|
2002-08-29 01:51:24 +00:00
|
|
|
/* NullName or NameString */
|
2000-10-28 05:01:06 +00:00
|
|
|
|
2002-08-29 01:51:24 +00:00
|
|
|
Arg = AcpiPsAllocOp (AML_INT_NAMEPATH_OP);
|
|
|
|
if (!Arg)
|
|
|
|
{
|
|
|
|
return_ACPI_STATUS (AE_NO_MEMORY);
|
2000-10-28 05:01:06 +00:00
|
|
|
}
|
|
|
|
|
2009-06-01 21:02:40 +00:00
|
|
|
/* To support SuperName arg of Unload */
|
|
|
|
|
|
|
|
if (WalkState->Opcode == AML_UNLOAD_OP)
|
|
|
|
{
|
|
|
|
Status = AcpiPsGetNextNamepath (WalkState, ParserState, Arg, 1);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If the SuperName arg of Unload is a method call,
|
|
|
|
* we have restored the AML pointer, just free this Arg
|
|
|
|
*/
|
|
|
|
if (Arg->Common.AmlOpcode == AML_INT_METHODCALL_OP)
|
|
|
|
{
|
|
|
|
AcpiPsFreeOp (Arg);
|
|
|
|
Arg = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Status = AcpiPsGetNextNamepath (WalkState, ParserState, Arg, 0);
|
|
|
|
}
|
2002-08-29 01:51:24 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2005-11-01 22:11:18 +00:00
|
|
|
/* Single complex argument, nothing returned */
|
2000-10-28 05:01:06 +00:00
|
|
|
|
2002-11-27 18:07:48 +00:00
|
|
|
WalkState->ArgCount = 1;
|
2000-10-28 05:01:06 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ARGP_DATAOBJ:
|
|
|
|
case ARGP_TERMARG:
|
|
|
|
|
2005-11-01 22:11:18 +00:00
|
|
|
/* Single complex argument, nothing returned */
|
2000-10-28 05:01:06 +00:00
|
|
|
|
2002-11-27 18:07:48 +00:00
|
|
|
WalkState->ArgCount = 1;
|
2000-10-28 05:01:06 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ARGP_DATAOBJLIST:
|
|
|
|
case ARGP_TERMLIST:
|
|
|
|
case ARGP_OBJLIST:
|
|
|
|
|
|
|
|
if (ParserState->Aml < ParserState->PkgEnd)
|
|
|
|
{
|
2005-11-01 22:11:18 +00:00
|
|
|
/* Non-empty list of variable arguments, nothing returned */
|
2000-10-28 05:01:06 +00:00
|
|
|
|
2002-11-27 18:07:48 +00:00
|
|
|
WalkState->ArgCount = ACPI_VAR_ARGS;
|
2000-10-28 05:01:06 +00:00
|
|
|
}
|
|
|
|
break;
|
2002-07-09 17:51:31 +00:00
|
|
|
|
|
|
|
default:
|
2002-08-29 01:51:24 +00:00
|
|
|
|
2010-03-05 19:58:45 +00:00
|
|
|
ACPI_ERROR ((AE_INFO, "Invalid ArgType: 0x%X", ArgType));
|
2002-08-29 01:51:24 +00:00
|
|
|
Status = AE_AML_OPERAND_TYPE;
|
2002-07-09 17:51:31 +00:00
|
|
|
break;
|
2000-10-28 05:01:06 +00:00
|
|
|
}
|
|
|
|
|
2002-08-29 01:51:24 +00:00
|
|
|
*ReturnArg = Arg;
|
|
|
|
return_ACPI_STATUS (Status);
|
2000-10-28 05:01:06 +00:00
|
|
|
}
|