2018-03-15 07:13:07 +08:00
|
|
|
// SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0
|
2005-04-17 06:20:36 +08:00
|
|
|
/******************************************************************************
|
|
|
|
*
|
|
|
|
* Module Name: dsobject - Dispatcher object management routines
|
|
|
|
*
|
2018-01-05 02:06:38 +08:00
|
|
|
* Copyright (C) 2000 - 2018, Intel Corp.
|
2005-04-17 06:20:36 +08:00
|
|
|
*
|
2018-03-15 07:13:07 +08:00
|
|
|
*****************************************************************************/
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
#include <acpi/acpi.h>
|
2009-01-09 13:30:03 +08:00
|
|
|
#include "accommon.h"
|
|
|
|
#include "acparser.h"
|
|
|
|
#include "amlcode.h"
|
|
|
|
#include "acdispat.h"
|
|
|
|
#include "acnamesp.h"
|
|
|
|
#include "acinterp.h"
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
#define _COMPONENT ACPI_DISPATCHER
|
2005-08-05 12:44:28 +08:00
|
|
|
ACPI_MODULE_NAME("dsobject")
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
#ifndef ACPI_NO_METHOD_EXECUTION
|
2005-04-19 10:49:35 +08:00
|
|
|
/*******************************************************************************
|
2005-04-17 06:20:36 +08:00
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ds_build_internal_object
|
|
|
|
*
|
|
|
|
* PARAMETERS: walk_state - Current walk state
|
2012-07-12 09:40:10 +08:00
|
|
|
* op - Parser object to be translated
|
2005-04-17 06:20:36 +08:00
|
|
|
* obj_desc_ptr - Where the ACPI internal object is returned
|
|
|
|
*
|
|
|
|
* RETURN: Status
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Translate a parser Op object to the equivalent namespace object
|
|
|
|
* Simple objects are any objects other than a package object!
|
|
|
|
*
|
2005-04-19 10:49:35 +08:00
|
|
|
******************************************************************************/
|
2017-08-03 14:27:22 +08:00
|
|
|
acpi_status
|
2005-08-05 12:44:28 +08:00
|
|
|
acpi_ds_build_internal_object(struct acpi_walk_state *walk_state,
|
|
|
|
union acpi_parse_object *op,
|
|
|
|
union acpi_operand_object **obj_desc_ptr)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2005-08-05 12:44:28 +08:00
|
|
|
union acpi_operand_object *obj_desc;
|
|
|
|
acpi_status status;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
ACPI: ACPICA 20060421
Removed a device initialization optimization introduced in
20051216 where the _STA method was not run unless an _INI
was also present for the same device. This optimization
could cause problems because it could allow _INI methods
to be run within a not-present device subtree (If a
not-present device had no _INI, _STA would not be run,
the not-present status would not be discovered, and the
children of the device would be incorrectly traversed.)
Implemented a new _STA optimization where namespace
subtrees that do not contain _INI are identified and
ignored during device initialization. Selectively running
_STA can significantly improve boot time on large machines
(with assistance from Len Brown.)
Implemented support for the device initialization case
where the returned _STA flags indicate a device not-present
but functioning. In this case, _INI is not run, but the
device children are examined for presence, as per the
ACPI specification.
Implemented an additional change to the IndexField support
in order to conform to MS behavior. The value written to
the Index Register is not simply a byte offset, it is a
byte offset in units of the access width of the parent
Index Field. (Fiodor Suietov)
Defined and deployed a new OSL interface,
acpi_os_validate_address(). This interface is called during
the creation of all AML operation regions, and allows
the host OS to exert control over what addresses it will
allow the AML code to access. Operation Regions whose
addresses are disallowed will cause a runtime exception
when they are actually accessed (will not affect or abort
table loading.)
Defined and deployed a new OSL interface,
acpi_os_validate_interface(). This interface allows the host OS
to match the various "optional" interface/behavior strings
for the _OSI predefined control method as appropriate
(with assistance from Bjorn Helgaas.)
Restructured and corrected various problems in the
exception handling code paths within DsCallControlMethod
and DsTerminateControlMethod in dsmethod (with assistance
from Takayoshi Kochi.)
Modified the Linux source converter to ignore quoted string
literals while converting identifiers from mixed to lower
case. This will correct problems with the disassembler
and other areas where such strings must not be modified.
The ACPI_FUNCTION_* macros no longer require quotes around
the function name. This allows the Linux source converter
to convert the names, now that the converter ignores
quoted strings.
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2006-04-22 05:15:00 +08:00
|
|
|
ACPI_FUNCTION_TRACE(ds_build_internal_object);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
*obj_desc_ptr = NULL;
|
|
|
|
if (op->common.aml_opcode == AML_INT_NAMEPATH_OP) {
|
|
|
|
/*
|
2005-12-17 06:05:00 +08:00
|
|
|
* This is a named object reference. If this name was
|
2017-08-03 14:27:22 +08:00
|
|
|
* previously looked up in the namespace, it was stored in
|
|
|
|
* this op. Otherwise, go ahead and look it up now
|
2005-04-17 06:20:36 +08:00
|
|
|
*/
|
|
|
|
if (!op->common.node) {
|
2008-04-10 23:06:39 +08:00
|
|
|
|
2017-08-03 14:27:22 +08:00
|
|
|
/* Check if we are resolving a named reference within a package */
|
2007-10-18 04:10:18 +08:00
|
|
|
|
2017-08-03 14:27:22 +08:00
|
|
|
if ((op->common.parent->common.aml_opcode ==
|
|
|
|
AML_PACKAGE_OP)
|
|
|
|
|| (op->common.parent->common.aml_opcode ==
|
|
|
|
AML_VARIABLE_PACKAGE_OP)) {
|
2008-04-10 23:06:39 +08:00
|
|
|
/*
|
2017-08-03 14:27:22 +08:00
|
|
|
* We won't resolve package elements here, we will do this
|
|
|
|
* after all ACPI tables are loaded into the namespace. This
|
|
|
|
* behavior supports both forward references to named objects
|
|
|
|
* and external references to objects in other tables.
|
2008-04-10 23:06:39 +08:00
|
|
|
*/
|
2017-08-03 14:27:22 +08:00
|
|
|
goto create_new_object;
|
|
|
|
} else {
|
|
|
|
status = acpi_ns_lookup(walk_state->scope_info,
|
|
|
|
op->common.value.string,
|
|
|
|
ACPI_TYPE_ANY,
|
|
|
|
ACPI_IMODE_EXECUTE,
|
|
|
|
ACPI_NS_SEARCH_PARENT |
|
|
|
|
ACPI_NS_DONT_OPEN_SCOPE,
|
|
|
|
NULL,
|
|
|
|
ACPI_CAST_INDIRECT_PTR
|
|
|
|
(struct
|
|
|
|
acpi_namespace_node,
|
|
|
|
&(op->common.node)));
|
|
|
|
if (ACPI_FAILURE(status)) {
|
2017-11-18 07:42:22 +08:00
|
|
|
ACPI_ERROR_NAMESPACE(walk_state->
|
|
|
|
scope_info,
|
|
|
|
op->common.value.
|
2017-08-03 14:27:22 +08:00
|
|
|
string, status);
|
|
|
|
return_ACPI_STATUS(status);
|
|
|
|
}
|
2007-10-18 04:10:18 +08:00
|
|
|
}
|
|
|
|
}
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
2017-08-03 14:27:22 +08:00
|
|
|
create_new_object:
|
|
|
|
|
2005-12-17 06:05:00 +08:00
|
|
|
/* Create and init a new internal ACPI object */
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
obj_desc = acpi_ut_create_internal_object((acpi_ps_get_opcode_info
|
|
|
|
(op->common.aml_opcode))->
|
|
|
|
object_type);
|
2005-04-17 06:20:36 +08:00
|
|
|
if (!obj_desc) {
|
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_ds_init_object_from_op(walk_state, op, op->common.aml_opcode,
|
|
|
|
&obj_desc);
|
|
|
|
if (ACPI_FAILURE(status)) {
|
|
|
|
acpi_ut_remove_reference(obj_desc);
|
|
|
|
return_ACPI_STATUS(status);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
2017-08-03 14:27:22 +08:00
|
|
|
/*
|
|
|
|
* Handling for unresolved package reference elements.
|
|
|
|
* These are elements that are namepaths.
|
|
|
|
*/
|
|
|
|
if ((op->common.parent->common.aml_opcode == AML_PACKAGE_OP) ||
|
|
|
|
(op->common.parent->common.aml_opcode == AML_VARIABLE_PACKAGE_OP)) {
|
|
|
|
obj_desc->reference.resolved = TRUE;
|
|
|
|
|
|
|
|
if ((op->common.aml_opcode == AML_INT_NAMEPATH_OP) &&
|
|
|
|
!obj_desc->reference.node) {
|
|
|
|
/*
|
|
|
|
* Name was unresolved above.
|
|
|
|
* Get the prefix node for later lookup
|
|
|
|
*/
|
|
|
|
obj_desc->reference.node =
|
|
|
|
walk_state->scope_info->scope.node;
|
|
|
|
obj_desc->reference.aml = op->common.aml;
|
|
|
|
obj_desc->reference.resolved = FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
*obj_desc_ptr = obj_desc;
|
2008-04-10 23:06:39 +08:00
|
|
|
return_ACPI_STATUS(status);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
2005-04-19 10:49:35 +08:00
|
|
|
/*******************************************************************************
|
2005-04-17 06:20:36 +08:00
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ds_build_internal_buffer_obj
|
|
|
|
*
|
|
|
|
* PARAMETERS: walk_state - Current walk state
|
2012-07-12 09:40:10 +08:00
|
|
|
* op - Parser object to be translated
|
2005-04-17 06:20:36 +08:00
|
|
|
* buffer_length - Length of the buffer
|
|
|
|
* obj_desc_ptr - Where the ACPI internal object is returned
|
|
|
|
*
|
|
|
|
* RETURN: Status
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Translate a parser Op package object to the equivalent
|
|
|
|
* namespace object
|
|
|
|
*
|
2005-04-19 10:49:35 +08:00
|
|
|
******************************************************************************/
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
acpi_status
|
2005-08-05 12:44:28 +08:00
|
|
|
acpi_ds_build_internal_buffer_obj(struct acpi_walk_state *walk_state,
|
|
|
|
union acpi_parse_object *op,
|
|
|
|
u32 buffer_length,
|
|
|
|
union acpi_operand_object **obj_desc_ptr)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2005-08-05 12:44:28 +08:00
|
|
|
union acpi_parse_object *arg;
|
|
|
|
union acpi_operand_object *obj_desc;
|
|
|
|
union acpi_parse_object *byte_list;
|
|
|
|
u32 byte_list_length = 0;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
ACPI: ACPICA 20060421
Removed a device initialization optimization introduced in
20051216 where the _STA method was not run unless an _INI
was also present for the same device. This optimization
could cause problems because it could allow _INI methods
to be run within a not-present device subtree (If a
not-present device had no _INI, _STA would not be run,
the not-present status would not be discovered, and the
children of the device would be incorrectly traversed.)
Implemented a new _STA optimization where namespace
subtrees that do not contain _INI are identified and
ignored during device initialization. Selectively running
_STA can significantly improve boot time on large machines
(with assistance from Len Brown.)
Implemented support for the device initialization case
where the returned _STA flags indicate a device not-present
but functioning. In this case, _INI is not run, but the
device children are examined for presence, as per the
ACPI specification.
Implemented an additional change to the IndexField support
in order to conform to MS behavior. The value written to
the Index Register is not simply a byte offset, it is a
byte offset in units of the access width of the parent
Index Field. (Fiodor Suietov)
Defined and deployed a new OSL interface,
acpi_os_validate_address(). This interface is called during
the creation of all AML operation regions, and allows
the host OS to exert control over what addresses it will
allow the AML code to access. Operation Regions whose
addresses are disallowed will cause a runtime exception
when they are actually accessed (will not affect or abort
table loading.)
Defined and deployed a new OSL interface,
acpi_os_validate_interface(). This interface allows the host OS
to match the various "optional" interface/behavior strings
for the _OSI predefined control method as appropriate
(with assistance from Bjorn Helgaas.)
Restructured and corrected various problems in the
exception handling code paths within DsCallControlMethod
and DsTerminateControlMethod in dsmethod (with assistance
from Takayoshi Kochi.)
Modified the Linux source converter to ignore quoted string
literals while converting identifiers from mixed to lower
case. This will correct problems with the disassembler
and other areas where such strings must not be modified.
The ACPI_FUNCTION_* macros no longer require quotes around
the function name. This allows the Linux source converter
to convert the names, now that the converter ignores
quoted strings.
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2006-04-22 05:15:00 +08:00
|
|
|
ACPI_FUNCTION_TRACE(ds_build_internal_buffer_obj);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-12-17 06:05:00 +08:00
|
|
|
/*
|
|
|
|
* If we are evaluating a Named buffer object "Name (xxxx, Buffer)".
|
|
|
|
* The buffer object already exists (from the NS node), otherwise it must
|
|
|
|
* be created.
|
|
|
|
*/
|
2005-04-17 06:20:36 +08:00
|
|
|
obj_desc = *obj_desc_ptr;
|
2005-12-17 06:05:00 +08:00
|
|
|
if (!obj_desc) {
|
2006-10-02 12:00:00 +08:00
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
/* Create a new buffer object */
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
obj_desc = acpi_ut_create_internal_object(ACPI_TYPE_BUFFER);
|
2005-04-17 06:20:36 +08:00
|
|
|
*obj_desc_ptr = obj_desc;
|
|
|
|
if (!obj_desc) {
|
2005-08-05 12:44:28 +08:00
|
|
|
return_ACPI_STATUS(AE_NO_MEMORY);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Second arg is the buffer data (optional) byte_list can be either
|
2012-10-31 10:26:55 +08:00
|
|
|
* individual bytes or a string initializer. In either case, a
|
2005-04-17 06:20:36 +08:00
|
|
|
* byte_list appears in the AML.
|
|
|
|
*/
|
2005-08-05 12:44:28 +08:00
|
|
|
arg = op->common.value.arg; /* skip first arg */
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
byte_list = arg->named.next;
|
|
|
|
if (byte_list) {
|
|
|
|
if (byte_list->common.aml_opcode != AML_INT_BYTELIST_OP) {
|
2006-01-28 05:43:00 +08:00
|
|
|
ACPI_ERROR((AE_INFO,
|
2010-03-05 17:56:40 +08:00
|
|
|
"Expecting bytelist, found AML opcode 0x%X in op %p",
|
2006-01-28 05:43:00 +08:00
|
|
|
byte_list->common.aml_opcode, byte_list));
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
acpi_ut_remove_reference(obj_desc);
|
2005-04-17 06:20:36 +08:00
|
|
|
return (AE_TYPE);
|
|
|
|
}
|
|
|
|
|
|
|
|
byte_list_length = (u32) byte_list->common.value.integer;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The buffer length (number of bytes) will be the larger of:
|
|
|
|
* 1) The specified buffer length and
|
|
|
|
* 2) The length of the initializer byte list
|
|
|
|
*/
|
|
|
|
obj_desc->buffer.length = buffer_length;
|
|
|
|
if (byte_list_length > buffer_length) {
|
|
|
|
obj_desc->buffer.length = byte_list_length;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Allocate the buffer */
|
|
|
|
|
|
|
|
if (obj_desc->buffer.length == 0) {
|
|
|
|
obj_desc->buffer.pointer = NULL;
|
2005-08-05 12:44:28 +08:00
|
|
|
ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
|
|
|
|
"Buffer defined with zero length in AML, creating\n"));
|
|
|
|
} else {
|
|
|
|
obj_desc->buffer.pointer =
|
2006-10-03 12:00:00 +08:00
|
|
|
ACPI_ALLOCATE_ZEROED(obj_desc->buffer.length);
|
2005-04-17 06:20:36 +08:00
|
|
|
if (!obj_desc->buffer.pointer) {
|
2005-08-05 12:44:28 +08:00
|
|
|
acpi_ut_delete_object_desc(obj_desc);
|
|
|
|
return_ACPI_STATUS(AE_NO_MEMORY);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Initialize buffer from the byte_list (if present) */
|
|
|
|
|
|
|
|
if (byte_list) {
|
2015-07-01 14:45:11 +08:00
|
|
|
memcpy(obj_desc->buffer.pointer, byte_list->named.data,
|
|
|
|
byte_list_length);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
obj_desc->buffer.flags |= AOPOBJ_DATA_VALID;
|
2007-02-03 00:48:18 +08:00
|
|
|
op->common.node = ACPI_CAST_PTR(struct acpi_namespace_node, obj_desc);
|
2005-08-05 12:44:28 +08:00
|
|
|
return_ACPI_STATUS(AE_OK);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
2005-04-19 10:49:35 +08:00
|
|
|
/*******************************************************************************
|
2005-04-17 06:20:36 +08:00
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ds_create_node
|
|
|
|
*
|
|
|
|
* PARAMETERS: walk_state - Current walk state
|
2012-07-12 09:40:10 +08:00
|
|
|
* node - NS Node to be initialized
|
|
|
|
* op - Parser object to be translated
|
2005-04-17 06:20:36 +08:00
|
|
|
*
|
|
|
|
* RETURN: Status
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Create the object to be associated with a namespace node
|
|
|
|
*
|
2005-04-19 10:49:35 +08:00
|
|
|
******************************************************************************/
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
acpi_status
|
2005-08-05 12:44:28 +08:00
|
|
|
acpi_ds_create_node(struct acpi_walk_state *walk_state,
|
|
|
|
struct acpi_namespace_node *node,
|
|
|
|
union acpi_parse_object *op)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2005-08-05 12:44:28 +08:00
|
|
|
acpi_status status;
|
|
|
|
union acpi_operand_object *obj_desc;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
ACPI: ACPICA 20060421
Removed a device initialization optimization introduced in
20051216 where the _STA method was not run unless an _INI
was also present for the same device. This optimization
could cause problems because it could allow _INI methods
to be run within a not-present device subtree (If a
not-present device had no _INI, _STA would not be run,
the not-present status would not be discovered, and the
children of the device would be incorrectly traversed.)
Implemented a new _STA optimization where namespace
subtrees that do not contain _INI are identified and
ignored during device initialization. Selectively running
_STA can significantly improve boot time on large machines
(with assistance from Len Brown.)
Implemented support for the device initialization case
where the returned _STA flags indicate a device not-present
but functioning. In this case, _INI is not run, but the
device children are examined for presence, as per the
ACPI specification.
Implemented an additional change to the IndexField support
in order to conform to MS behavior. The value written to
the Index Register is not simply a byte offset, it is a
byte offset in units of the access width of the parent
Index Field. (Fiodor Suietov)
Defined and deployed a new OSL interface,
acpi_os_validate_address(). This interface is called during
the creation of all AML operation regions, and allows
the host OS to exert control over what addresses it will
allow the AML code to access. Operation Regions whose
addresses are disallowed will cause a runtime exception
when they are actually accessed (will not affect or abort
table loading.)
Defined and deployed a new OSL interface,
acpi_os_validate_interface(). This interface allows the host OS
to match the various "optional" interface/behavior strings
for the _OSI predefined control method as appropriate
(with assistance from Bjorn Helgaas.)
Restructured and corrected various problems in the
exception handling code paths within DsCallControlMethod
and DsTerminateControlMethod in dsmethod (with assistance
from Takayoshi Kochi.)
Modified the Linux source converter to ignore quoted string
literals while converting identifiers from mixed to lower
case. This will correct problems with the disassembler
and other areas where such strings must not be modified.
The ACPI_FUNCTION_* macros no longer require quotes around
the function name. This allows the Linux source converter
to convert the names, now that the converter ignores
quoted strings.
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2006-04-22 05:15:00 +08:00
|
|
|
ACPI_FUNCTION_TRACE_PTR(ds_create_node, op);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Because of the execution pass through the non-control-method
|
2012-10-31 10:26:55 +08:00
|
|
|
* parts of the table, we can arrive here twice. Only init
|
2005-04-17 06:20:36 +08:00
|
|
|
* the named object node the first time through
|
|
|
|
*/
|
2005-08-05 12:44:28 +08:00
|
|
|
if (acpi_ns_get_attached_object(node)) {
|
|
|
|
return_ACPI_STATUS(AE_OK);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!op->common.value.arg) {
|
2006-10-02 12:00:00 +08:00
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
/* No arguments, there is nothing to do */
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
return_ACPI_STATUS(AE_OK);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Build an internal object for the argument(s) */
|
|
|
|
|
2015-12-29 13:54:36 +08:00
|
|
|
status =
|
|
|
|
acpi_ds_build_internal_object(walk_state, op->common.value.arg,
|
|
|
|
&obj_desc);
|
2005-08-05 12:44:28 +08:00
|
|
|
if (ACPI_FAILURE(status)) {
|
|
|
|
return_ACPI_STATUS(status);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Re-type the object according to its argument */
|
|
|
|
|
2009-02-18 14:44:03 +08:00
|
|
|
node->type = obj_desc->common.type;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/* Attach obj to node */
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
status = acpi_ns_attach_object(node, obj_desc, node->type);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/* Remove local reference to the object */
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
acpi_ut_remove_reference(obj_desc);
|
|
|
|
return_ACPI_STATUS(status);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
#endif /* ACPI_NO_METHOD_EXECUTION */
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-04-19 10:49:35 +08:00
|
|
|
/*******************************************************************************
|
2005-04-17 06:20:36 +08:00
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ds_init_object_from_op
|
|
|
|
*
|
|
|
|
* PARAMETERS: walk_state - Current walk state
|
2012-07-12 09:40:10 +08:00
|
|
|
* op - Parser op used to init the internal object
|
|
|
|
* opcode - AML opcode associated with the object
|
2005-04-17 06:20:36 +08:00
|
|
|
* ret_obj_desc - Namespace object to be initialized
|
|
|
|
*
|
|
|
|
* RETURN: Status
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Initialize a namespace object from a parser Op and its
|
2012-10-31 10:26:55 +08:00
|
|
|
* associated arguments. The namespace object is a more compact
|
2005-04-17 06:20:36 +08:00
|
|
|
* representation of the Op and its arguments.
|
|
|
|
*
|
2005-04-19 10:49:35 +08:00
|
|
|
******************************************************************************/
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
acpi_status
|
2005-08-05 12:44:28 +08:00
|
|
|
acpi_ds_init_object_from_op(struct acpi_walk_state *walk_state,
|
|
|
|
union acpi_parse_object *op,
|
|
|
|
u16 opcode,
|
|
|
|
union acpi_operand_object **ret_obj_desc)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2005-08-05 12:44:28 +08:00
|
|
|
const struct acpi_opcode_info *op_info;
|
|
|
|
union acpi_operand_object *obj_desc;
|
|
|
|
acpi_status status = AE_OK;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
ACPI: ACPICA 20060421
Removed a device initialization optimization introduced in
20051216 where the _STA method was not run unless an _INI
was also present for the same device. This optimization
could cause problems because it could allow _INI methods
to be run within a not-present device subtree (If a
not-present device had no _INI, _STA would not be run,
the not-present status would not be discovered, and the
children of the device would be incorrectly traversed.)
Implemented a new _STA optimization where namespace
subtrees that do not contain _INI are identified and
ignored during device initialization. Selectively running
_STA can significantly improve boot time on large machines
(with assistance from Len Brown.)
Implemented support for the device initialization case
where the returned _STA flags indicate a device not-present
but functioning. In this case, _INI is not run, but the
device children are examined for presence, as per the
ACPI specification.
Implemented an additional change to the IndexField support
in order to conform to MS behavior. The value written to
the Index Register is not simply a byte offset, it is a
byte offset in units of the access width of the parent
Index Field. (Fiodor Suietov)
Defined and deployed a new OSL interface,
acpi_os_validate_address(). This interface is called during
the creation of all AML operation regions, and allows
the host OS to exert control over what addresses it will
allow the AML code to access. Operation Regions whose
addresses are disallowed will cause a runtime exception
when they are actually accessed (will not affect or abort
table loading.)
Defined and deployed a new OSL interface,
acpi_os_validate_interface(). This interface allows the host OS
to match the various "optional" interface/behavior strings
for the _OSI predefined control method as appropriate
(with assistance from Bjorn Helgaas.)
Restructured and corrected various problems in the
exception handling code paths within DsCallControlMethod
and DsTerminateControlMethod in dsmethod (with assistance
from Takayoshi Kochi.)
Modified the Linux source converter to ignore quoted string
literals while converting identifiers from mixed to lower
case. This will correct problems with the disassembler
and other areas where such strings must not be modified.
The ACPI_FUNCTION_* macros no longer require quotes around
the function name. This allows the Linux source converter
to convert the names, now that the converter ignores
quoted strings.
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2006-04-22 05:15:00 +08:00
|
|
|
ACPI_FUNCTION_TRACE(ds_init_object_from_op);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
obj_desc = *ret_obj_desc;
|
2005-08-05 12:44:28 +08:00
|
|
|
op_info = acpi_ps_get_opcode_info(opcode);
|
2005-04-17 06:20:36 +08:00
|
|
|
if (op_info->class == AML_CLASS_UNKNOWN) {
|
2006-10-02 12:00:00 +08:00
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
/* Unknown opcode */
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
return_ACPI_STATUS(AE_TYPE);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Perform per-object initialization */
|
|
|
|
|
2009-02-18 14:44:03 +08:00
|
|
|
switch (obj_desc->common.type) {
|
2005-04-17 06:20:36 +08:00
|
|
|
case ACPI_TYPE_BUFFER:
|
|
|
|
/*
|
|
|
|
* Defer evaluation of Buffer term_arg operand
|
|
|
|
*/
|
2007-02-03 00:48:18 +08:00
|
|
|
obj_desc->buffer.node =
|
|
|
|
ACPI_CAST_PTR(struct acpi_namespace_node,
|
|
|
|
walk_state->operands[0]);
|
2005-04-17 06:20:36 +08:00
|
|
|
obj_desc->buffer.aml_start = op->named.data;
|
|
|
|
obj_desc->buffer.aml_length = op->named.length;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_TYPE_PACKAGE:
|
|
|
|
/*
|
2017-08-03 14:27:22 +08:00
|
|
|
* Defer evaluation of Package term_arg operand and all
|
|
|
|
* package elements. (01/2017): We defer the element
|
|
|
|
* resolution to allow forward references from the package
|
|
|
|
* in order to provide compatibility with other ACPI
|
|
|
|
* implementations.
|
2005-04-17 06:20:36 +08:00
|
|
|
*/
|
2007-02-03 00:48:18 +08:00
|
|
|
obj_desc->package.node =
|
|
|
|
ACPI_CAST_PTR(struct acpi_namespace_node,
|
|
|
|
walk_state->operands[0]);
|
2017-08-03 14:27:22 +08:00
|
|
|
|
|
|
|
if (!op->named.data) {
|
|
|
|
return_ACPI_STATUS(AE_OK);
|
|
|
|
}
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
obj_desc->package.aml_start = op->named.data;
|
|
|
|
obj_desc->package.aml_length = op->named.length;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_TYPE_INTEGER:
|
|
|
|
|
|
|
|
switch (op_info->type) {
|
|
|
|
case AML_TYPE_CONSTANT:
|
|
|
|
/*
|
|
|
|
* Resolve AML Constants here - AND ONLY HERE!
|
|
|
|
* All constants are integers.
|
2005-04-19 10:49:35 +08:00
|
|
|
* We mark the integer with a flag that indicates that it started
|
|
|
|
* life as a constant -- so that stores to constants will perform
|
|
|
|
* as expected (noop). zero_op is used as a placeholder for optional
|
|
|
|
* target operands.
|
2005-04-17 06:20:36 +08:00
|
|
|
*/
|
|
|
|
obj_desc->common.flags = AOPOBJ_AML_CONSTANT;
|
|
|
|
|
|
|
|
switch (opcode) {
|
|
|
|
case AML_ZERO_OP:
|
|
|
|
|
|
|
|
obj_desc->integer.value = 0;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case AML_ONE_OP:
|
|
|
|
|
|
|
|
obj_desc->integer.value = 1;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case AML_ONES_OP:
|
|
|
|
|
2010-01-21 10:06:32 +08:00
|
|
|
obj_desc->integer.value = ACPI_UINT64_MAX;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/* Truncate value if we are executing from a 32-bit ACPI table */
|
|
|
|
|
|
|
|
#ifndef ACPI_NO_METHOD_EXECUTION
|
2012-12-31 08:07:18 +08:00
|
|
|
(void)acpi_ex_truncate_for32bit_table(obj_desc);
|
2005-04-17 06:20:36 +08:00
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
|
|
|
|
case AML_REVISION_OP:
|
|
|
|
|
|
|
|
obj_desc->integer.value = ACPI_CA_VERSION;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
2006-01-28 05:43:00 +08:00
|
|
|
ACPI_ERROR((AE_INFO,
|
2010-03-05 17:56:40 +08:00
|
|
|
"Unknown constant opcode 0x%X",
|
2006-01-28 05:43:00 +08:00
|
|
|
opcode));
|
2005-04-17 06:20:36 +08:00
|
|
|
status = AE_AML_OPERAND_TYPE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case AML_TYPE_LITERAL:
|
|
|
|
|
|
|
|
obj_desc->integer.value = op->common.value.integer;
|
2012-12-31 08:07:18 +08:00
|
|
|
|
2005-05-13 12:00:00 +08:00
|
|
|
#ifndef ACPI_NO_METHOD_EXECUTION
|
2012-12-31 08:07:18 +08:00
|
|
|
if (acpi_ex_truncate_for32bit_table(obj_desc)) {
|
|
|
|
|
|
|
|
/* Warn if we found a 64-bit constant in a 32-bit table */
|
|
|
|
|
|
|
|
ACPI_WARNING((AE_INFO,
|
|
|
|
"Truncated 64-bit constant found in 32-bit table: %8.8X%8.8X => %8.8X",
|
|
|
|
ACPI_FORMAT_UINT64(op->common.
|
|
|
|
value.integer),
|
|
|
|
(u32)obj_desc->integer.value));
|
|
|
|
}
|
2005-05-13 12:00:00 +08:00
|
|
|
#endif
|
2005-04-17 06:20:36 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2013-06-08 08:58:14 +08:00
|
|
|
|
2010-03-05 17:56:40 +08:00
|
|
|
ACPI_ERROR((AE_INFO, "Unknown Integer type 0x%X",
|
2006-01-28 05:43:00 +08:00
|
|
|
op_info->type));
|
2005-04-17 06:20:36 +08:00
|
|
|
status = AE_AML_OPERAND_TYPE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_TYPE_STRING:
|
|
|
|
|
|
|
|
obj_desc->string.pointer = op->common.value.string;
|
2015-07-01 14:45:11 +08:00
|
|
|
obj_desc->string.length = (u32)strlen(op->common.value.string);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* The string is contained in the ACPI table, don't ever try
|
|
|
|
* to delete it
|
|
|
|
*/
|
|
|
|
obj_desc->common.flags |= AOPOBJ_STATIC_POINTER;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_TYPE_METHOD:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_TYPE_LOCAL_REFERENCE:
|
|
|
|
|
|
|
|
switch (op_info->type) {
|
|
|
|
case AML_TYPE_LOCAL_VARIABLE:
|
|
|
|
|
2017-04-26 16:18:40 +08:00
|
|
|
/* Local ID (0-7) is (AML opcode - base AML_FIRST_LOCAL_OP) */
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2009-04-22 13:13:48 +08:00
|
|
|
obj_desc->reference.value =
|
2017-04-26 16:18:40 +08:00
|
|
|
((u32)opcode) - AML_FIRST_LOCAL_OP;
|
2008-09-27 11:08:41 +08:00
|
|
|
obj_desc->reference.class = ACPI_REFCLASS_LOCAL;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
#ifndef ACPI_NO_METHOD_EXECUTION
|
2008-09-27 11:08:41 +08:00
|
|
|
status =
|
|
|
|
acpi_ds_method_data_get_node(ACPI_REFCLASS_LOCAL,
|
|
|
|
obj_desc->reference.
|
|
|
|
value, walk_state,
|
|
|
|
ACPI_CAST_INDIRECT_PTR
|
|
|
|
(struct
|
|
|
|
acpi_namespace_node,
|
|
|
|
&obj_desc->reference.
|
|
|
|
object));
|
2005-04-17 06:20:36 +08:00
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
|
|
|
|
case AML_TYPE_METHOD_ARGUMENT:
|
|
|
|
|
2017-04-26 16:18:40 +08:00
|
|
|
/* Arg ID (0-6) is (AML opcode - base AML_FIRST_ARG_OP) */
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2017-04-26 16:18:40 +08:00
|
|
|
obj_desc->reference.value =
|
|
|
|
((u32)opcode) - AML_FIRST_ARG_OP;
|
2008-09-27 11:08:41 +08:00
|
|
|
obj_desc->reference.class = ACPI_REFCLASS_ARG;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
#ifndef ACPI_NO_METHOD_EXECUTION
|
2008-09-27 11:08:41 +08:00
|
|
|
status = acpi_ds_method_data_get_node(ACPI_REFCLASS_ARG,
|
2005-08-05 12:44:28 +08:00
|
|
|
obj_desc->
|
2008-09-27 11:08:41 +08:00
|
|
|
reference.value,
|
2005-08-05 12:44:28 +08:00
|
|
|
walk_state,
|
2008-09-27 10:40:39 +08:00
|
|
|
ACPI_CAST_INDIRECT_PTR
|
2005-08-05 12:44:28 +08:00
|
|
|
(struct
|
2008-09-27 10:40:39 +08:00
|
|
|
acpi_namespace_node,
|
|
|
|
&obj_desc->
|
|
|
|
reference.
|
|
|
|
object));
|
2005-04-17 06:20:36 +08:00
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
|
2008-09-27 11:08:41 +08:00
|
|
|
default: /* Object name or Debug object */
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2008-09-27 11:08:41 +08:00
|
|
|
switch (op->common.aml_opcode) {
|
|
|
|
case AML_INT_NAMEPATH_OP:
|
2006-10-02 12:00:00 +08:00
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
/* Node was saved in Op */
|
|
|
|
|
|
|
|
obj_desc->reference.node = op->common.node;
|
2008-09-27 11:08:41 +08:00
|
|
|
obj_desc->reference.class = ACPI_REFCLASS_NAME;
|
2017-08-03 14:27:22 +08:00
|
|
|
if (op->common.node) {
|
|
|
|
obj_desc->reference.object =
|
|
|
|
op->common.node->object;
|
|
|
|
}
|
2008-09-27 11:08:41 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
case AML_DEBUG_OP:
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2008-09-27 11:08:41 +08:00
|
|
|
obj_desc->reference.class = ACPI_REFCLASS_DEBUG;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
|
|
|
ACPI_ERROR((AE_INFO,
|
2010-03-05 17:56:40 +08:00
|
|
|
"Unimplemented reference type for AML opcode: 0x%4.4X",
|
2008-09-27 11:08:41 +08:00
|
|
|
opcode));
|
|
|
|
return_ACPI_STATUS(AE_AML_OPERAND_TYPE);
|
|
|
|
}
|
2005-04-17 06:20:36 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
2010-03-05 17:56:40 +08:00
|
|
|
ACPI_ERROR((AE_INFO, "Unimplemented data type: 0x%X",
|
2009-02-18 14:44:03 +08:00
|
|
|
obj_desc->common.type));
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
status = AE_AML_OPERAND_TYPE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
return_ACPI_STATUS(status);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|