2005-04-17 06:20:36 +08:00
|
|
|
/******************************************************************************
|
|
|
|
*
|
|
|
|
* Module Name: psargs - Parse AML opcode arguments
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2000 - 2005, R. Byron Moore
|
|
|
|
* 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/acpi.h>
|
|
|
|
#include <acpi/acparser.h>
|
|
|
|
#include <acpi/amlcode.h>
|
|
|
|
#include <acpi/acnamesp.h>
|
|
|
|
|
|
|
|
#define _COMPONENT ACPI_PARSER
|
2005-08-05 12:44:28 +08:00
|
|
|
ACPI_MODULE_NAME("psargs")
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-04-19 10:49:35 +08:00
|
|
|
/* Local prototypes */
|
|
|
|
static u32
|
2005-08-05 12:44:28 +08:00
|
|
|
acpi_ps_get_next_package_length(struct acpi_parse_state *parser_state);
|
2005-04-19 10:49:35 +08:00
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
static union acpi_parse_object *acpi_ps_get_next_field(struct acpi_parse_state
|
|
|
|
*parser_state);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ps_get_next_package_length
|
|
|
|
*
|
|
|
|
* PARAMETERS: parser_state - Current parser state object
|
|
|
|
*
|
|
|
|
* RETURN: Decoded package length. On completion, the AML pointer points
|
|
|
|
* past the length byte or bytes.
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Decode and return a package length field
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2005-04-19 10:49:35 +08:00
|
|
|
static u32
|
2005-08-05 12:44:28 +08:00
|
|
|
acpi_ps_get_next_package_length(struct acpi_parse_state *parser_state)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2005-08-05 12:44:28 +08:00
|
|
|
u32 encoded_length;
|
|
|
|
u32 length = 0;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
ACPI_FUNCTION_TRACE("ps_get_next_package_length");
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
encoded_length = (u32) ACPI_GET8(parser_state->aml);
|
2005-04-17 06:20:36 +08:00
|
|
|
parser_state->aml++;
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
switch (encoded_length >> 6) { /* bits 6-7 contain encoding scheme */
|
|
|
|
case 0: /* 1-byte encoding (bits 0-5) */
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
length = (encoded_length & 0x3F);
|
|
|
|
break;
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
case 1: /* 2-byte encoding (next byte + bits 0-3) */
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
length = ((ACPI_GET8(parser_state->aml) << 04) |
|
|
|
|
(encoded_length & 0x0F));
|
2005-04-17 06:20:36 +08:00
|
|
|
parser_state->aml++;
|
|
|
|
break;
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
case 2: /* 3-byte encoding (next 2 bytes + bits 0-3) */
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
length = ((ACPI_GET8(parser_state->aml + 1) << 12) |
|
|
|
|
(ACPI_GET8(parser_state->aml) << 04) |
|
|
|
|
(encoded_length & 0x0F));
|
2005-04-17 06:20:36 +08:00
|
|
|
parser_state->aml += 2;
|
|
|
|
break;
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
case 3: /* 4-byte encoding (next 3 bytes + bits 0-3) */
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
length = ((ACPI_GET8(parser_state->aml + 2) << 20) |
|
|
|
|
(ACPI_GET8(parser_state->aml + 1) << 12) |
|
|
|
|
(ACPI_GET8(parser_state->aml) << 04) |
|
|
|
|
(encoded_length & 0x0F));
|
2005-04-17 06:20:36 +08:00
|
|
|
parser_state->aml += 3;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
|
|
|
/* Can't get here, only 2 bits / 4 cases */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
[ACPI] ACPICA 20050930
Completed a major overhaul of the Resource Manager code -
specifically, optimizations in the area of the AML/internal
resource conversion code. The code has been optimized to
simplify and eliminate duplicated code, CPU stack use has
been decreased by optimizing function parameters and local
variables, and naming conventions across the manager have
been standardized for clarity and ease of maintenance (this
includes function, parameter, variable, and struct/typedef
names.)
All Resource Manager dispatch and information tables have
been moved to a single location for clarity and ease of
maintenance. One new file was created, named "rsinfo.c".
The ACPI return macros (return_ACPI_STATUS, etc.) have
been modified to guarantee that the argument is
not evaluated twice, making them less prone to macro
side-effects. However, since there exists the possibility
of additional stack use if a particular compiler cannot
optimize them (such as in the debug generation case),
the original macros are optionally available. Note that
some invocations of the return_VALUE macro may now cause
size mismatch warnings; the return_UINT8 and return_UINT32
macros are provided to eliminate these. (From Randy Dunlap)
Implemented a new mechanism to enable debug tracing for
individual control methods. A new external interface,
acpi_debug_trace(), is provided to enable this mechanism. The
intent is to allow the host OS to easily enable and disable
tracing for problematic control methods. This interface
can be easily exposed to a user or debugger interface if
desired. See the file psxface.c for details.
acpi_ut_callocate() will now return a valid pointer if a
length of zero is specified - a length of one is used
and a warning is issued. This matches the behavior of
acpi_ut_allocate().
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2005-10-01 07:03:00 +08:00
|
|
|
return_UINT32(length);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ps_get_next_package_end
|
|
|
|
*
|
|
|
|
* PARAMETERS: parser_state - Current parser state object
|
|
|
|
*
|
|
|
|
* RETURN: Pointer to end-of-package +1
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Get next package length and return a pointer past the end of
|
|
|
|
* the package. Consumes the package length field
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
u8 *acpi_ps_get_next_package_end(struct acpi_parse_state *parser_state)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2005-08-05 12:44:28 +08:00
|
|
|
u8 *start = parser_state->aml;
|
|
|
|
acpi_native_uint length;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
ACPI_FUNCTION_TRACE("ps_get_next_package_end");
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/* Function below changes parser_state->Aml */
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
length =
|
|
|
|
(acpi_native_uint) acpi_ps_get_next_package_length(parser_state);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
return_PTR(start + length); /* end of package */
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ps_get_next_namestring
|
|
|
|
*
|
|
|
|
* PARAMETERS: parser_state - Current parser state object
|
|
|
|
*
|
|
|
|
* RETURN: Pointer to the start of the name string (pointer points into
|
|
|
|
* the AML.
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Get next raw namestring within the AML stream. Handles all name
|
|
|
|
* prefix characters. Set parser state to point past the string.
|
|
|
|
* (Name is consumed from the AML.)
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
char *acpi_ps_get_next_namestring(struct acpi_parse_state *parser_state)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2005-08-05 12:44:28 +08:00
|
|
|
u8 *start = parser_state->aml;
|
|
|
|
u8 *end = parser_state->aml;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
ACPI_FUNCTION_TRACE("ps_get_next_namestring");
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/* Handle multiple prefix characters */
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
while (acpi_ps_is_prefix_char(ACPI_GET8(end))) {
|
2005-04-17 06:20:36 +08:00
|
|
|
/* Include prefix '\\' or '^' */
|
|
|
|
|
|
|
|
end++;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Decode the path */
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
switch (ACPI_GET8(end)) {
|
2005-04-17 06:20:36 +08:00
|
|
|
case 0:
|
|
|
|
|
|
|
|
/* null_name */
|
|
|
|
|
|
|
|
if (end == start) {
|
|
|
|
start = NULL;
|
|
|
|
}
|
|
|
|
end++;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case AML_DUAL_NAME_PREFIX:
|
|
|
|
|
|
|
|
/* Two name segments */
|
|
|
|
|
|
|
|
end += 1 + (2 * ACPI_NAME_SIZE);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case AML_MULTI_NAME_PREFIX_OP:
|
|
|
|
|
|
|
|
/* Multiple name segments, 4 chars each */
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
end += 2 + ((acpi_size) ACPI_GET8(end + 1) * ACPI_NAME_SIZE);
|
2005-04-17 06:20:36 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
|
|
|
/* Single name segment */
|
|
|
|
|
|
|
|
end += ACPI_NAME_SIZE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
parser_state->aml = (u8 *) end;
|
|
|
|
return_PTR((char *)start);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ps_get_next_namepath
|
|
|
|
*
|
|
|
|
* PARAMETERS: parser_state - Current parser state object
|
|
|
|
* Arg - Where the namepath will be stored
|
|
|
|
* arg_count - If the namepath points to a control method
|
|
|
|
* the method's argument is returned here.
|
|
|
|
* method_call - Whether the namepath can possibly be the
|
|
|
|
* start of a method call
|
|
|
|
*
|
|
|
|
* RETURN: Status
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Get next name (if method call, return # of required args).
|
|
|
|
* Names are looked up in the internal namespace to determine
|
|
|
|
* if the name represents a control method. If a method
|
|
|
|
* is found, the number of arguments to the method is returned.
|
|
|
|
* This information is critical for parsing to continue correctly.
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
acpi_status
|
2005-08-05 12:44:28 +08:00
|
|
|
acpi_ps_get_next_namepath(struct acpi_walk_state *walk_state,
|
|
|
|
struct acpi_parse_state *parser_state,
|
|
|
|
union acpi_parse_object *arg, u8 method_call)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2005-08-05 12:44:28 +08:00
|
|
|
char *path;
|
|
|
|
union acpi_parse_object *name_op;
|
|
|
|
acpi_status status = AE_OK;
|
|
|
|
union acpi_operand_object *method_desc;
|
|
|
|
struct acpi_namespace_node *node;
|
|
|
|
union acpi_generic_state scope_info;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
ACPI_FUNCTION_TRACE("ps_get_next_namepath");
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
path = acpi_ps_get_next_namestring(parser_state);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/* Null path case is allowed */
|
|
|
|
|
|
|
|
if (path) {
|
|
|
|
/*
|
|
|
|
* Lookup the name in the internal namespace
|
|
|
|
*/
|
|
|
|
scope_info.scope.node = NULL;
|
|
|
|
node = parser_state->start_node;
|
|
|
|
if (node) {
|
|
|
|
scope_info.scope.node = node;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Lookup object. We don't want to add anything new to the namespace
|
|
|
|
* here, however. So we use MODE_EXECUTE. 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 upsearch)
|
|
|
|
*/
|
2005-08-05 12:44:28 +08:00
|
|
|
status = acpi_ns_lookup(&scope_info, path, ACPI_TYPE_ANY,
|
|
|
|
ACPI_IMODE_EXECUTE,
|
|
|
|
ACPI_NS_SEARCH_PARENT |
|
|
|
|
ACPI_NS_DONT_OPEN_SCOPE, NULL, &node);
|
|
|
|
if (ACPI_SUCCESS(status) && method_call) {
|
2005-04-17 06:20:36 +08:00
|
|
|
if (node->type == ACPI_TYPE_METHOD) {
|
2005-04-19 10:49:35 +08:00
|
|
|
/* This name is actually a control method invocation */
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
method_desc = acpi_ns_get_attached_object(node);
|
|
|
|
ACPI_DEBUG_PRINT((ACPI_DB_PARSE,
|
|
|
|
"Control Method - %p Desc %p Path=%p\n",
|
|
|
|
node, method_desc, path));
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
name_op = acpi_ps_alloc_op(AML_INT_NAMEPATH_OP);
|
2005-04-17 06:20:36 +08:00
|
|
|
if (!name_op) {
|
2005-08-05 12:44:28 +08:00
|
|
|
return_ACPI_STATUS(AE_NO_MEMORY);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Change arg into a METHOD CALL and attach name to it */
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
acpi_ps_init_op(arg, AML_INT_METHODCALL_OP);
|
2005-04-17 06:20:36 +08:00
|
|
|
name_op->common.value.name = path;
|
|
|
|
|
|
|
|
/* Point METHODCALL/NAME to the METHOD Node */
|
|
|
|
|
|
|
|
name_op->common.node = node;
|
2005-08-05 12:44:28 +08:00
|
|
|
acpi_ps_append_arg(arg, name_op);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
if (!method_desc) {
|
2005-08-05 12:44:28 +08:00
|
|
|
ACPI_REPORT_ERROR(("ps_get_next_namepath: Control Method %p has no attached object\n", node));
|
|
|
|
return_ACPI_STATUS(AE_AML_INTERNAL);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
ACPI_DEBUG_PRINT((ACPI_DB_PARSE,
|
|
|
|
"Control Method - %p Args %X\n",
|
|
|
|
node,
|
|
|
|
method_desc->method.
|
|
|
|
param_count));
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/* Get the number of arguments to expect */
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
walk_state->arg_count =
|
|
|
|
method_desc->method.param_count;
|
|
|
|
return_ACPI_STATUS(AE_OK);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Else this is normal named object reference.
|
|
|
|
* Just init the NAMEPATH object with the pathname.
|
|
|
|
* (See code below)
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
if (ACPI_FAILURE(status)) {
|
2005-04-17 06:20:36 +08:00
|
|
|
/*
|
|
|
|
* 1) Any error other than NOT_FOUND is always severe
|
|
|
|
* 2) NOT_FOUND is only important if we are executing a method.
|
|
|
|
* 3) If executing a cond_ref_of opcode, NOT_FOUND is ok.
|
|
|
|
*/
|
2005-08-05 12:44:28 +08:00
|
|
|
if ((((walk_state->
|
|
|
|
parse_flags & ACPI_PARSE_MODE_MASK) ==
|
|
|
|
ACPI_PARSE_EXECUTE) && (status == AE_NOT_FOUND)
|
|
|
|
&& (walk_state->op->common.aml_opcode !=
|
|
|
|
AML_COND_REF_OF_OP))
|
|
|
|
|| (status != AE_NOT_FOUND)) {
|
|
|
|
ACPI_REPORT_NSERROR(path, status);
|
|
|
|
|
|
|
|
acpi_os_printf
|
|
|
|
("search_node %p start_node %p return_node %p\n",
|
|
|
|
scope_info.scope.node,
|
|
|
|
parser_state->start_node, node);
|
|
|
|
|
|
|
|
} else {
|
2005-04-17 06:20:36 +08:00
|
|
|
/*
|
|
|
|
* We got a NOT_FOUND during table load or we encountered
|
|
|
|
* a cond_ref_of(x) where the target does not exist.
|
2005-04-19 10:49:35 +08:00
|
|
|
* Either case is ok
|
2005-04-17 06:20:36 +08:00
|
|
|
*/
|
|
|
|
status = AE_OK;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Regardless of success/failure above,
|
|
|
|
* Just initialize the Op with the pathname.
|
|
|
|
*/
|
2005-08-05 12:44:28 +08:00
|
|
|
acpi_ps_init_op(arg, AML_INT_NAMEPATH_OP);
|
2005-04-17 06:20:36 +08:00
|
|
|
arg->common.value.name = path;
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
return_ACPI_STATUS(status);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ps_get_next_simple_arg
|
|
|
|
*
|
|
|
|
* PARAMETERS: parser_state - Current parser state object
|
|
|
|
* arg_type - The argument type (AML_*_ARG)
|
|
|
|
* Arg - Where the argument is returned
|
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Get the next simple argument (constant, string, or namestring)
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
void
|
2005-08-05 12:44:28 +08:00
|
|
|
acpi_ps_get_next_simple_arg(struct acpi_parse_state *parser_state,
|
|
|
|
u32 arg_type, union acpi_parse_object *arg)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
ACPI_FUNCTION_TRACE_U32("ps_get_next_simple_arg", arg_type);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
switch (arg_type) {
|
|
|
|
case ARGP_BYTEDATA:
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
acpi_ps_init_op(arg, AML_BYTE_OP);
|
|
|
|
arg->common.value.integer = (u32) ACPI_GET8(parser_state->aml);
|
2005-04-17 06:20:36 +08:00
|
|
|
parser_state->aml++;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ARGP_WORDDATA:
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
acpi_ps_init_op(arg, AML_WORD_OP);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/* Get 2 bytes from the AML stream */
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
ACPI_MOVE_16_TO_32(&arg->common.value.integer,
|
|
|
|
parser_state->aml);
|
2005-04-17 06:20:36 +08:00
|
|
|
parser_state->aml += 2;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ARGP_DWORDDATA:
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
acpi_ps_init_op(arg, AML_DWORD_OP);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/* Get 4 bytes from the AML stream */
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
ACPI_MOVE_32_TO_32(&arg->common.value.integer,
|
|
|
|
parser_state->aml);
|
2005-04-17 06:20:36 +08:00
|
|
|
parser_state->aml += 4;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ARGP_QWORDDATA:
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
acpi_ps_init_op(arg, AML_QWORD_OP);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/* Get 8 bytes from the AML stream */
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
ACPI_MOVE_64_TO_64(&arg->common.value.integer,
|
|
|
|
parser_state->aml);
|
2005-04-17 06:20:36 +08:00
|
|
|
parser_state->aml += 8;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ARGP_CHARLIST:
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
acpi_ps_init_op(arg, AML_STRING_OP);
|
|
|
|
arg->common.value.string = (char *)parser_state->aml;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
while (ACPI_GET8(parser_state->aml) != '\0') {
|
2005-04-17 06:20:36 +08:00
|
|
|
parser_state->aml++;
|
|
|
|
}
|
|
|
|
parser_state->aml++;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ARGP_NAME:
|
|
|
|
case ARGP_NAMESTRING:
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
acpi_ps_init_op(arg, AML_INT_NAMEPATH_OP);
|
|
|
|
arg->common.value.name =
|
|
|
|
acpi_ps_get_next_namestring(parser_state);
|
2005-04-17 06:20:36 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
ACPI_REPORT_ERROR(("Invalid arg_type %X\n", arg_type));
|
2005-04-17 06:20:36 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return_VOID;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ps_get_next_field
|
|
|
|
*
|
|
|
|
* PARAMETERS: parser_state - Current parser state object
|
|
|
|
*
|
|
|
|
* RETURN: A newly allocated FIELD op
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Get next field (named_field, reserved_field, or access_field)
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
static union acpi_parse_object *acpi_ps_get_next_field(struct acpi_parse_state
|
|
|
|
*parser_state)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2005-08-05 12:44:28 +08:00
|
|
|
u32 aml_offset = (u32)
|
|
|
|
ACPI_PTR_DIFF(parser_state->aml,
|
|
|
|
parser_state->aml_start);
|
|
|
|
union acpi_parse_object *field;
|
|
|
|
u16 opcode;
|
|
|
|
u32 name;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
ACPI_FUNCTION_TRACE("ps_get_next_field");
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-04-19 10:49:35 +08:00
|
|
|
/* Determine field type */
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
switch (ACPI_GET8(parser_state->aml)) {
|
2005-04-17 06:20:36 +08:00
|
|
|
default:
|
|
|
|
|
|
|
|
opcode = AML_INT_NAMEDFIELD_OP;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 0x00:
|
|
|
|
|
|
|
|
opcode = AML_INT_RESERVEDFIELD_OP;
|
|
|
|
parser_state->aml++;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 0x01:
|
|
|
|
|
|
|
|
opcode = AML_INT_ACCESSFIELD_OP;
|
|
|
|
parser_state->aml++;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Allocate a new field op */
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
field = acpi_ps_alloc_op(opcode);
|
2005-04-17 06:20:36 +08:00
|
|
|
if (!field) {
|
2005-08-05 12:44:28 +08:00
|
|
|
return_PTR(NULL);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
field->common.aml_offset = aml_offset;
|
|
|
|
|
|
|
|
/* Decode the field type */
|
|
|
|
|
|
|
|
switch (opcode) {
|
|
|
|
case AML_INT_NAMEDFIELD_OP:
|
|
|
|
|
|
|
|
/* Get the 4-character name */
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
ACPI_MOVE_32_TO_32(&name, parser_state->aml);
|
|
|
|
acpi_ps_set_name(field, name);
|
2005-04-17 06:20:36 +08:00
|
|
|
parser_state->aml += ACPI_NAME_SIZE;
|
|
|
|
|
|
|
|
/* Get the length which is encoded as a package length */
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
field->common.value.size =
|
|
|
|
acpi_ps_get_next_package_length(parser_state);
|
2005-04-17 06:20:36 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
case AML_INT_RESERVEDFIELD_OP:
|
|
|
|
|
|
|
|
/* Get the length which is encoded as a package length */
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
field->common.value.size =
|
|
|
|
acpi_ps_get_next_package_length(parser_state);
|
2005-04-17 06:20:36 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
case AML_INT_ACCESSFIELD_OP:
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Get access_type and access_attrib and merge into the field Op
|
|
|
|
* access_type is first operand, access_attribute is second
|
|
|
|
*/
|
2005-08-05 12:44:28 +08:00
|
|
|
field->common.value.integer =
|
|
|
|
(ACPI_GET8(parser_state->aml) << 8);
|
2005-04-17 06:20:36 +08:00
|
|
|
parser_state->aml++;
|
2005-08-05 12:44:28 +08:00
|
|
|
field->common.value.integer |= ACPI_GET8(parser_state->aml);
|
2005-04-17 06:20:36 +08:00
|
|
|
parser_state->aml++;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
|
|
|
/* Opcode was set in previous switch */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
return_PTR(field);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ps_get_next_arg
|
|
|
|
*
|
2005-04-19 10:49:35 +08:00
|
|
|
* PARAMETERS: walk_state - Current state
|
|
|
|
* parser_state - Current parser state object
|
2005-04-17 06:20:36 +08:00
|
|
|
* arg_type - The argument type (AML_*_ARG)
|
2005-04-19 10:49:35 +08:00
|
|
|
* return_arg - Where the next arg is returned
|
2005-04-17 06:20:36 +08:00
|
|
|
*
|
|
|
|
* RETURN: Status, and an op object containing the next argument.
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Get next argument (including complex list arguments that require
|
|
|
|
* pushing the parser stack)
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
acpi_status
|
2005-08-05 12:44:28 +08:00
|
|
|
acpi_ps_get_next_arg(struct acpi_walk_state *walk_state,
|
|
|
|
struct acpi_parse_state *parser_state,
|
|
|
|
u32 arg_type, union acpi_parse_object **return_arg)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2005-08-05 12:44:28 +08:00
|
|
|
union acpi_parse_object *arg = NULL;
|
|
|
|
union acpi_parse_object *prev = NULL;
|
|
|
|
union acpi_parse_object *field;
|
|
|
|
u32 subop;
|
|
|
|
acpi_status status = AE_OK;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
ACPI_FUNCTION_TRACE_PTR("ps_get_next_arg", parser_state);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
switch (arg_type) {
|
|
|
|
case ARGP_BYTEDATA:
|
|
|
|
case ARGP_WORDDATA:
|
|
|
|
case ARGP_DWORDDATA:
|
|
|
|
case ARGP_CHARLIST:
|
|
|
|
case ARGP_NAME:
|
|
|
|
case ARGP_NAMESTRING:
|
|
|
|
|
2005-04-19 10:49:35 +08:00
|
|
|
/* Constants, strings, and namestrings are all the same size */
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
arg = acpi_ps_alloc_op(AML_BYTE_OP);
|
2005-04-17 06:20:36 +08:00
|
|
|
if (!arg) {
|
2005-08-05 12:44:28 +08:00
|
|
|
return_ACPI_STATUS(AE_NO_MEMORY);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
2005-08-05 12:44:28 +08:00
|
|
|
acpi_ps_get_next_simple_arg(parser_state, arg_type, arg);
|
2005-04-17 06:20:36 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ARGP_PKGLENGTH:
|
|
|
|
|
|
|
|
/* Package length, nothing returned */
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
parser_state->pkg_end =
|
|
|
|
acpi_ps_get_next_package_end(parser_state);
|
2005-04-17 06:20:36 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ARGP_FIELDLIST:
|
|
|
|
|
|
|
|
if (parser_state->aml < parser_state->pkg_end) {
|
|
|
|
/* Non-empty list */
|
|
|
|
|
|
|
|
while (parser_state->aml < parser_state->pkg_end) {
|
2005-08-05 12:44:28 +08:00
|
|
|
field = acpi_ps_get_next_field(parser_state);
|
2005-04-17 06:20:36 +08:00
|
|
|
if (!field) {
|
2005-08-05 12:44:28 +08:00
|
|
|
return_ACPI_STATUS(AE_NO_MEMORY);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (prev) {
|
|
|
|
prev->common.next = field;
|
2005-08-05 12:44:28 +08:00
|
|
|
} else {
|
2005-04-17 06:20:36 +08:00
|
|
|
arg = field;
|
|
|
|
}
|
|
|
|
prev = field;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Skip to End of byte data */
|
|
|
|
|
|
|
|
parser_state->aml = parser_state->pkg_end;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ARGP_BYTELIST:
|
|
|
|
|
|
|
|
if (parser_state->aml < parser_state->pkg_end) {
|
|
|
|
/* Non-empty list */
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
arg = acpi_ps_alloc_op(AML_INT_BYTELIST_OP);
|
2005-04-17 06:20:36 +08:00
|
|
|
if (!arg) {
|
2005-08-05 12:44:28 +08:00
|
|
|
return_ACPI_STATUS(AE_NO_MEMORY);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Fill in bytelist data */
|
|
|
|
|
2005-04-19 10:49:35 +08:00
|
|
|
arg->common.value.size = (u32)
|
2005-08-05 12:44:28 +08:00
|
|
|
ACPI_PTR_DIFF(parser_state->pkg_end,
|
|
|
|
parser_state->aml);
|
2005-04-17 06:20:36 +08:00
|
|
|
arg->named.data = parser_state->aml;
|
|
|
|
|
|
|
|
/* Skip to End of byte data */
|
|
|
|
|
|
|
|
parser_state->aml = parser_state->pkg_end;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ARGP_TARGET:
|
|
|
|
case ARGP_SUPERNAME:
|
|
|
|
case ARGP_SIMPLENAME:
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
subop = acpi_ps_peek_opcode(parser_state);
|
|
|
|
if (subop == 0 ||
|
|
|
|
acpi_ps_is_leading_char(subop) ||
|
|
|
|
acpi_ps_is_prefix_char(subop)) {
|
2005-04-17 06:20:36 +08:00
|
|
|
/* null_name or name_string */
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
arg = acpi_ps_alloc_op(AML_INT_NAMEPATH_OP);
|
2005-04-17 06:20:36 +08:00
|
|
|
if (!arg) {
|
2005-08-05 12:44:28 +08:00
|
|
|
return_ACPI_STATUS(AE_NO_MEMORY);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
status =
|
|
|
|
acpi_ps_get_next_namepath(walk_state, parser_state,
|
|
|
|
arg, 0);
|
|
|
|
} else {
|
2005-04-19 10:49:35 +08:00
|
|
|
/* Single complex argument, nothing returned */
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
walk_state->arg_count = 1;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ARGP_DATAOBJ:
|
|
|
|
case ARGP_TERMARG:
|
|
|
|
|
2005-04-19 10:49:35 +08:00
|
|
|
/* Single complex argument, nothing returned */
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
walk_state->arg_count = 1;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ARGP_DATAOBJLIST:
|
|
|
|
case ARGP_TERMLIST:
|
|
|
|
case ARGP_OBJLIST:
|
|
|
|
|
|
|
|
if (parser_state->aml < parser_state->pkg_end) {
|
2005-04-19 10:49:35 +08:00
|
|
|
/* Non-empty list of variable arguments, nothing returned */
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
walk_state->arg_count = ACPI_VAR_ARGS;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
ACPI_REPORT_ERROR(("Invalid arg_type: %X\n", arg_type));
|
2005-04-17 06:20:36 +08:00
|
|
|
status = AE_AML_OPERAND_TYPE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
*return_arg = arg;
|
2005-08-05 12:44:28 +08:00
|
|
|
return_ACPI_STATUS(status);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|