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: exstoren - AML Interpreter object store support,
|
|
|
|
* Store to Node (namespace object)
|
|
|
|
*
|
2023-04-05 21:38:21 +08:00
|
|
|
* Copyright (C) 2000 - 2023, 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 "acinterp.h"
|
|
|
|
#include "amlcode.h"
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
#define _COMPONENT ACPI_EXECUTER
|
2005-08-05 12:44:28 +08:00
|
|
|
ACPI_MODULE_NAME("exstoren")
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ex_resolve_object
|
|
|
|
*
|
|
|
|
* PARAMETERS: source_desc_ptr - Pointer to the source object
|
|
|
|
* target_type - Current type of the target
|
|
|
|
* walk_state - Current walk state
|
|
|
|
*
|
|
|
|
* RETURN: Status, resolved object in source_desc_ptr.
|
|
|
|
*
|
2012-10-31 10:26:55 +08:00
|
|
|
* DESCRIPTION: Resolve an object. If the object is a reference, dereference
|
2005-04-17 06:20:36 +08:00
|
|
|
* it and return the actual object in the source_desc_ptr.
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
acpi_status
|
2005-08-05 12:44:28 +08:00
|
|
|
acpi_ex_resolve_object(union acpi_operand_object **source_desc_ptr,
|
|
|
|
acpi_object_type target_type,
|
|
|
|
struct acpi_walk_state *walk_state)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2005-08-05 12:44:28 +08:00
|
|
|
union acpi_operand_object *source_desc = *source_desc_ptr;
|
|
|
|
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(ex_resolve_object);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-04-19 10:49:35 +08:00
|
|
|
/* Ensure we have a Target that can be stored to */
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
switch (target_type) {
|
|
|
|
case ACPI_TYPE_BUFFER_FIELD:
|
|
|
|
case ACPI_TYPE_LOCAL_REGION_FIELD:
|
|
|
|
case ACPI_TYPE_LOCAL_BANK_FIELD:
|
|
|
|
case ACPI_TYPE_LOCAL_INDEX_FIELD:
|
|
|
|
/*
|
|
|
|
* These cases all require only Integers or values that
|
|
|
|
* can be converted to Integers (Strings or Buffers)
|
|
|
|
*/
|
|
|
|
case ACPI_TYPE_INTEGER:
|
|
|
|
case ACPI_TYPE_STRING:
|
|
|
|
case ACPI_TYPE_BUFFER:
|
|
|
|
/*
|
|
|
|
* Stores into a Field/Region or into a Integer/Buffer/String
|
2012-10-31 10:26:55 +08:00
|
|
|
* are all essentially the same. This case handles the
|
2005-04-17 06:20:36 +08:00
|
|
|
* "interchangeable" types Integer, String, and Buffer.
|
|
|
|
*/
|
2009-02-18 14:44:03 +08:00
|
|
|
if (source_desc->common.type == ACPI_TYPE_LOCAL_REFERENCE) {
|
2006-10-02 12:00:00 +08:00
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
/* Resolve a reference object first */
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
status =
|
|
|
|
acpi_ex_resolve_to_value(source_desc_ptr,
|
|
|
|
walk_state);
|
|
|
|
if (ACPI_FAILURE(status)) {
|
2005-04-17 06:20:36 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* For copy_object, no further validation necessary */
|
|
|
|
|
2017-04-26 16:18:40 +08:00
|
|
|
if (walk_state->opcode == AML_COPY_OBJECT_OP) {
|
2005-04-17 06:20:36 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2005-04-19 10:49:35 +08:00
|
|
|
/* Must have a Integer, Buffer, or String */
|
|
|
|
|
2009-02-18 14:44:03 +08:00
|
|
|
if ((source_desc->common.type != ACPI_TYPE_INTEGER) &&
|
|
|
|
(source_desc->common.type != ACPI_TYPE_BUFFER) &&
|
|
|
|
(source_desc->common.type != ACPI_TYPE_STRING) &&
|
|
|
|
!((source_desc->common.type == ACPI_TYPE_LOCAL_REFERENCE) &&
|
|
|
|
(source_desc->reference.class == ACPI_REFCLASS_TABLE))) {
|
2006-10-02 12:00:00 +08:00
|
|
|
|
2005-04-19 10:49:35 +08:00
|
|
|
/* Conversion successful but still not a valid type */
|
|
|
|
|
2006-01-28 05:43:00 +08:00
|
|
|
ACPI_ERROR((AE_INFO,
|
2015-10-19 10:24:58 +08:00
|
|
|
"Cannot assign type [%s] to [%s] (must be type Int/Str/Buf)",
|
2006-01-28 05:43:00 +08:00
|
|
|
acpi_ut_get_object_type_name(source_desc),
|
|
|
|
acpi_ut_get_type_name(target_type)));
|
2015-10-19 10:24:58 +08:00
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
status = AE_AML_OPERAND_TYPE;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_TYPE_LOCAL_ALIAS:
|
|
|
|
case ACPI_TYPE_LOCAL_METHOD_ALIAS:
|
2006-01-28 05:43:00 +08:00
|
|
|
/*
|
|
|
|
* All aliases should have been resolved earlier, during the
|
|
|
|
* operand resolution phase.
|
|
|
|
*/
|
|
|
|
ACPI_ERROR((AE_INFO, "Store into an unresolved Alias object"));
|
2005-04-17 06:20:36 +08:00
|
|
|
status = AE_AML_INTERNAL;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_TYPE_PACKAGE:
|
|
|
|
default:
|
|
|
|
/*
|
|
|
|
* All other types than Alias and the various Fields come here,
|
|
|
|
* including the untyped case - ACPI_TYPE_ANY.
|
|
|
|
*/
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
return_ACPI_STATUS(status);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ex_store_object_to_object
|
|
|
|
*
|
|
|
|
* PARAMETERS: source_desc - Object to store
|
|
|
|
* dest_desc - Object to receive a copy of the source
|
|
|
|
* new_desc - New object if dest_desc is obsoleted
|
|
|
|
* walk_state - Current walk state
|
|
|
|
*
|
|
|
|
* RETURN: Status
|
|
|
|
*
|
2012-10-31 10:26:55 +08:00
|
|
|
* DESCRIPTION: "Store" an object to another object. This may include
|
2005-04-17 06:20:36 +08:00
|
|
|
* converting the source type to the target type (implicit
|
|
|
|
* conversion), and a copy of the value of the source to
|
|
|
|
* the target.
|
|
|
|
*
|
|
|
|
* The Assignment of an object to another (not named) object
|
|
|
|
* is handled here.
|
|
|
|
* The Source passed in will replace the current value (if any)
|
|
|
|
* with the input value.
|
|
|
|
*
|
|
|
|
* When storing into an object the data is converted to the
|
2012-10-31 10:26:55 +08:00
|
|
|
* target object type then stored in the object. This means
|
2005-04-17 06:20:36 +08:00
|
|
|
* that the target object type (for an initialized target) will
|
|
|
|
* not be changed by a store operation.
|
|
|
|
*
|
|
|
|
* This module allows destination types of Number, String,
|
|
|
|
* Buffer, and Package.
|
|
|
|
*
|
2012-10-31 10:26:55 +08:00
|
|
|
* Assumes parameters are already validated. NOTE: source_desc
|
2005-04-17 06:20:36 +08:00
|
|
|
* resolution (from a reference object) must be performed by
|
|
|
|
* the caller if necessary.
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
acpi_status
|
2005-08-05 12:44:28 +08:00
|
|
|
acpi_ex_store_object_to_object(union acpi_operand_object *source_desc,
|
|
|
|
union acpi_operand_object *dest_desc,
|
|
|
|
union acpi_operand_object **new_desc,
|
|
|
|
struct acpi_walk_state *walk_state)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2005-08-05 12:44:28 +08:00
|
|
|
union acpi_operand_object *actual_src_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_PTR(ex_store_object_to_object, source_desc);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
actual_src_desc = source_desc;
|
|
|
|
if (!dest_desc) {
|
|
|
|
/*
|
|
|
|
* There is no destination object (An uninitialized node or
|
|
|
|
* package element), so we can simply copy the source object
|
|
|
|
* creating a new destination object
|
|
|
|
*/
|
2005-08-05 12:44:28 +08:00
|
|
|
status =
|
|
|
|
acpi_ut_copy_iobject_to_iobject(actual_src_desc, new_desc,
|
|
|
|
walk_state);
|
|
|
|
return_ACPI_STATUS(status);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
2009-02-18 14:44:03 +08:00
|
|
|
if (source_desc->common.type != dest_desc->common.type) {
|
2005-04-17 06:20:36 +08:00
|
|
|
/*
|
|
|
|
* The source type does not match the type of the destination.
|
|
|
|
* Perform the "implicit conversion" of the source to the current type
|
|
|
|
* of the target as per the ACPI specification.
|
|
|
|
*
|
|
|
|
* If no conversion performed, actual_src_desc = source_desc.
|
|
|
|
* Otherwise, actual_src_desc is a temporary object to hold the
|
|
|
|
* converted object.
|
|
|
|
*/
|
2009-02-18 14:44:03 +08:00
|
|
|
status = acpi_ex_convert_to_target_type(dest_desc->common.type,
|
|
|
|
source_desc,
|
|
|
|
&actual_src_desc,
|
|
|
|
walk_state);
|
2005-08-05 12:44:28 +08:00
|
|
|
if (ACPI_FAILURE(status)) {
|
|
|
|
return_ACPI_STATUS(status);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (source_desc == actual_src_desc) {
|
|
|
|
/*
|
|
|
|
* No conversion was performed. Return the source_desc as the
|
|
|
|
* new object.
|
|
|
|
*/
|
|
|
|
*new_desc = source_desc;
|
2005-08-05 12:44:28 +08:00
|
|
|
return_ACPI_STATUS(AE_OK);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* We now have two objects of identical types, and we can perform a
|
|
|
|
* copy of the *value* of the source object.
|
|
|
|
*/
|
2009-02-18 14:44:03 +08:00
|
|
|
switch (dest_desc->common.type) {
|
2005-04-17 06:20:36 +08:00
|
|
|
case ACPI_TYPE_INTEGER:
|
|
|
|
|
|
|
|
dest_desc->integer.value = actual_src_desc->integer.value;
|
|
|
|
|
|
|
|
/* Truncate value if we are executing from a 32-bit ACPI table */
|
|
|
|
|
2012-12-31 08:07:18 +08:00
|
|
|
(void)acpi_ex_truncate_for32bit_table(dest_desc);
|
2005-04-17 06:20:36 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_TYPE_STRING:
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
status =
|
|
|
|
acpi_ex_store_string_to_string(actual_src_desc, dest_desc);
|
2005-04-17 06:20:36 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_TYPE_BUFFER:
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
status =
|
|
|
|
acpi_ex_store_buffer_to_buffer(actual_src_desc, dest_desc);
|
2005-04-17 06:20:36 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_TYPE_PACKAGE:
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
status =
|
|
|
|
acpi_ut_copy_iobject_to_iobject(actual_src_desc, &dest_desc,
|
|
|
|
walk_state);
|
2005-04-17 06:20:36 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
/*
|
|
|
|
* All other types come here.
|
|
|
|
*/
|
2015-10-19 10:24:58 +08:00
|
|
|
ACPI_WARNING((AE_INFO, "Store into type [%s] not implemented",
|
2006-01-28 05:43:00 +08:00
|
|
|
acpi_ut_get_object_type_name(dest_desc)));
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
status = AE_NOT_IMPLEMENTED;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (actual_src_desc != source_desc) {
|
2006-10-02 12:00:00 +08:00
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
/* Delete the intermediate (temporary) source object */
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
acpi_ut_remove_reference(actual_src_desc);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
*new_desc = dest_desc;
|
2005-08-05 12:44:28 +08:00
|
|
|
return_ACPI_STATUS(status);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|