2005-04-17 06:20:36 +08:00
|
|
|
/******************************************************************************
|
|
|
|
*
|
2012-08-22 18:11:26 +08:00
|
|
|
* Module Name: dsopcode - Dispatcher support for regions and fields
|
2005-04-17 06:20:36 +08:00
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
/*
|
2016-01-15 08:17:03 +08:00
|
|
|
* Copyright (C) 2000 - 2016, Intel Corp.
|
2005-04-17 06:20:36 +08:00
|
|
|
* 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>
|
2009-01-09 13:30:03 +08:00
|
|
|
#include "accommon.h"
|
|
|
|
#include "acparser.h"
|
|
|
|
#include "amlcode.h"
|
|
|
|
#include "acdispat.h"
|
|
|
|
#include "acinterp.h"
|
|
|
|
#include "acnamesp.h"
|
|
|
|
#include "acevents.h"
|
|
|
|
#include "actables.h"
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
#define _COMPONENT ACPI_DISPATCHER
|
2005-08-05 12:44:28 +08:00
|
|
|
ACPI_MODULE_NAME("dsopcode")
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-04-19 10:49:35 +08:00
|
|
|
/* Local prototypes */
|
|
|
|
static acpi_status
|
2005-08-05 12:44:28 +08:00
|
|
|
acpi_ds_init_buffer_field(u16 aml_opcode,
|
|
|
|
union acpi_operand_object *obj_desc,
|
|
|
|
union acpi_operand_object *buffer_desc,
|
|
|
|
union acpi_operand_object *offset_desc,
|
|
|
|
union acpi_operand_object *length_desc,
|
|
|
|
union acpi_operand_object *result_desc);
|
2005-04-19 10:49:35 +08:00
|
|
|
|
|
|
|
/*******************************************************************************
|
2005-04-17 06:20:36 +08:00
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ds_initialize_region
|
|
|
|
*
|
2005-04-19 10:49:35 +08:00
|
|
|
* PARAMETERS: obj_handle - Region namespace node
|
2005-04-17 06:20:36 +08:00
|
|
|
*
|
|
|
|
* RETURN: Status
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Front end to ev_initialize_region
|
|
|
|
*
|
2005-04-19 10:49:35 +08:00
|
|
|
******************************************************************************/
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
acpi_status acpi_ds_initialize_region(acpi_handle obj_handle)
|
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
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
obj_desc = acpi_ns_get_attached_object(obj_handle);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/* Namespace is NOT locked */
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
status = acpi_ev_initialize_region(obj_desc, FALSE);
|
2005-04-17 06:20:36 +08:00
|
|
|
return (status);
|
|
|
|
}
|
|
|
|
|
2005-04-19 10:49:35 +08:00
|
|
|
/*******************************************************************************
|
2005-04-17 06:20:36 +08:00
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ds_init_buffer_field
|
|
|
|
*
|
|
|
|
* PARAMETERS: aml_opcode - create_xxx_field
|
|
|
|
* obj_desc - buffer_field object
|
|
|
|
* buffer_desc - Host Buffer
|
|
|
|
* offset_desc - Offset into buffer
|
2005-04-19 10:49:35 +08:00
|
|
|
* length_desc - Length of field (CREATE_FIELD_OP only)
|
|
|
|
* result_desc - Where to store the result
|
2005-04-17 06:20:36 +08:00
|
|
|
*
|
|
|
|
* RETURN: Status
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Perform actual initialization of a buffer field
|
|
|
|
*
|
2005-04-19 10:49:35 +08:00
|
|
|
******************************************************************************/
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-04-19 10:49:35 +08:00
|
|
|
static acpi_status
|
2005-08-05 12:44:28 +08:00
|
|
|
acpi_ds_init_buffer_field(u16 aml_opcode,
|
|
|
|
union acpi_operand_object *obj_desc,
|
|
|
|
union acpi_operand_object *buffer_desc,
|
|
|
|
union acpi_operand_object *offset_desc,
|
|
|
|
union acpi_operand_object *length_desc,
|
|
|
|
union acpi_operand_object *result_desc)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2005-08-05 12:44:28 +08:00
|
|
|
u32 offset;
|
|
|
|
u32 bit_offset;
|
|
|
|
u32 bit_count;
|
|
|
|
u8 field_flags;
|
|
|
|
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_PTR(ds_init_buffer_field, obj_desc);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/* Host object must be a Buffer */
|
|
|
|
|
2009-02-18 14:44:03 +08:00
|
|
|
if (buffer_desc->common.type != ACPI_TYPE_BUFFER) {
|
2006-01-28 05:43:00 +08:00
|
|
|
ACPI_ERROR((AE_INFO,
|
|
|
|
"Target of Create Field is not a Buffer object - %s",
|
|
|
|
acpi_ut_get_object_type_name(buffer_desc)));
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
status = AE_AML_OPERAND_TYPE;
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The last parameter to all of these opcodes (result_desc) started
|
|
|
|
* out as a name_string, and should therefore now be a NS node
|
|
|
|
* after resolution in acpi_ex_resolve_operands().
|
|
|
|
*/
|
2005-08-05 12:44:28 +08:00
|
|
|
if (ACPI_GET_DESCRIPTOR_TYPE(result_desc) != ACPI_DESC_TYPE_NAMED) {
|
2006-01-28 05:43:00 +08:00
|
|
|
ACPI_ERROR((AE_INFO,
|
|
|
|
"(%s) destination not a NS Node [%s]",
|
|
|
|
acpi_ps_get_opcode_name(aml_opcode),
|
|
|
|
acpi_ut_get_descriptor_name(result_desc)));
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
status = AE_AML_OPERAND_TYPE;
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
offset = (u32) offset_desc->integer.value;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Setup the Bit offsets and counts, according to the opcode
|
|
|
|
*/
|
|
|
|
switch (aml_opcode) {
|
|
|
|
case AML_CREATE_FIELD_OP:
|
|
|
|
|
|
|
|
/* Offset is in bits, count is in bits */
|
|
|
|
|
2005-04-19 10:49:35 +08:00
|
|
|
field_flags = AML_FIELD_ACCESS_BYTE;
|
2005-04-17 06:20:36 +08:00
|
|
|
bit_offset = offset;
|
2005-08-05 12:44:28 +08:00
|
|
|
bit_count = (u32) length_desc->integer.value;
|
2005-04-19 10:49:35 +08:00
|
|
|
|
|
|
|
/* Must have a valid (>0) bit count */
|
|
|
|
|
|
|
|
if (bit_count == 0) {
|
2006-01-28 05:43:00 +08:00
|
|
|
ACPI_ERROR((AE_INFO,
|
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
|
|
|
"Attempt to CreateField of length zero"));
|
2005-04-19 10:49:35 +08:00
|
|
|
status = AE_AML_OPERAND_VALUE;
|
|
|
|
goto cleanup;
|
|
|
|
}
|
2005-04-17 06:20:36 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
case AML_CREATE_BIT_FIELD_OP:
|
|
|
|
|
|
|
|
/* Offset is in bits, Field is one bit */
|
|
|
|
|
|
|
|
bit_offset = offset;
|
2005-08-05 12:44:28 +08:00
|
|
|
bit_count = 1;
|
2005-04-17 06:20:36 +08:00
|
|
|
field_flags = AML_FIELD_ACCESS_BYTE;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case AML_CREATE_BYTE_FIELD_OP:
|
|
|
|
|
|
|
|
/* Offset is in bytes, field is one byte */
|
|
|
|
|
|
|
|
bit_offset = 8 * offset;
|
2005-08-05 12:44:28 +08:00
|
|
|
bit_count = 8;
|
2005-04-17 06:20:36 +08:00
|
|
|
field_flags = AML_FIELD_ACCESS_BYTE;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case AML_CREATE_WORD_FIELD_OP:
|
|
|
|
|
|
|
|
/* Offset is in bytes, field is one word */
|
|
|
|
|
|
|
|
bit_offset = 8 * offset;
|
2005-08-05 12:44:28 +08:00
|
|
|
bit_count = 16;
|
2005-04-17 06:20:36 +08:00
|
|
|
field_flags = AML_FIELD_ACCESS_WORD;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case AML_CREATE_DWORD_FIELD_OP:
|
|
|
|
|
|
|
|
/* Offset is in bytes, field is one dword */
|
|
|
|
|
|
|
|
bit_offset = 8 * offset;
|
2005-08-05 12:44:28 +08:00
|
|
|
bit_count = 32;
|
2005-04-17 06:20:36 +08:00
|
|
|
field_flags = AML_FIELD_ACCESS_DWORD;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case AML_CREATE_QWORD_FIELD_OP:
|
|
|
|
|
|
|
|
/* Offset is in bytes, field is one qword */
|
|
|
|
|
|
|
|
bit_offset = 8 * offset;
|
2005-08-05 12:44:28 +08:00
|
|
|
bit_count = 64;
|
2005-04-17 06:20:36 +08:00
|
|
|
field_flags = AML_FIELD_ACCESS_QWORD;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
2006-01-28 05:43:00 +08:00
|
|
|
ACPI_ERROR((AE_INFO,
|
2010-03-05 17:56:40 +08:00
|
|
|
"Unknown field creation opcode 0x%02X",
|
|
|
|
aml_opcode));
|
2005-04-17 06:20:36 +08:00
|
|
|
status = AE_AML_BAD_OPCODE;
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Entire field must fit within the current length of the buffer */
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
if ((bit_offset + bit_count) > (8 * (u32) buffer_desc->buffer.length)) {
|
2006-01-28 05:43:00 +08:00
|
|
|
ACPI_ERROR((AE_INFO,
|
2010-03-05 17:56:40 +08:00
|
|
|
"Field [%4.4s] at %u exceeds Buffer [%4.4s] size %u (bits)",
|
2006-01-28 05:43:00 +08:00
|
|
|
acpi_ut_get_node_name(result_desc),
|
|
|
|
bit_offset + bit_count,
|
|
|
|
acpi_ut_get_node_name(buffer_desc->buffer.node),
|
|
|
|
8 * (u32) buffer_desc->buffer.length));
|
2005-04-17 06:20:36 +08:00
|
|
|
status = AE_AML_BUFFER_LIMIT;
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Initialize areas of the field object that are common to all fields
|
2005-04-19 10:49:35 +08:00
|
|
|
* For field_flags, use LOCK_RULE = 0 (NO_LOCK),
|
|
|
|
* UPDATE_RULE = 0 (UPDATE_PRESERVE)
|
2005-04-17 06:20:36 +08:00
|
|
|
*/
|
2015-12-29 13:54:36 +08:00
|
|
|
status =
|
|
|
|
acpi_ex_prep_common_field_object(obj_desc, field_flags, 0,
|
|
|
|
bit_offset, bit_count);
|
2005-08-05 12:44:28 +08:00
|
|
|
if (ACPI_FAILURE(status)) {
|
2005-04-17 06:20:36 +08:00
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
obj_desc->buffer_field.buffer_obj = buffer_desc;
|
|
|
|
|
|
|
|
/* Reference count for buffer_desc inherits obj_desc count */
|
|
|
|
|
2005-04-19 10:49:35 +08:00
|
|
|
buffer_desc->common.reference_count = (u16)
|
2005-08-05 12:44:28 +08:00
|
|
|
(buffer_desc->common.reference_count +
|
|
|
|
obj_desc->common.reference_count);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2013-10-29 09:30:02 +08:00
|
|
|
cleanup:
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/* Always delete the operands */
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
acpi_ut_remove_reference(offset_desc);
|
|
|
|
acpi_ut_remove_reference(buffer_desc);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
if (aml_opcode == AML_CREATE_FIELD_OP) {
|
2005-08-05 12:44:28 +08:00
|
|
|
acpi_ut_remove_reference(length_desc);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* On failure, delete the result descriptor */
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
if (ACPI_FAILURE(status)) {
|
|
|
|
acpi_ut_remove_reference(result_desc); /* Result descriptor */
|
|
|
|
} else {
|
2005-04-17 06:20:36 +08:00
|
|
|
/* Now the address and length are valid for this buffer_field */
|
|
|
|
|
|
|
|
obj_desc->buffer_field.flags |= AOPOBJ_DATA_VALID;
|
|
|
|
}
|
|
|
|
|
2005-08-05 12:44:28 +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_eval_buffer_field_operands
|
|
|
|
*
|
|
|
|
* PARAMETERS: walk_state - Current walk
|
2012-07-12 09:40:10 +08:00
|
|
|
* op - A valid buffer_field Op object
|
2005-04-17 06:20:36 +08:00
|
|
|
*
|
|
|
|
* RETURN: Status
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Get buffer_field Buffer and Index
|
|
|
|
* Called from acpi_ds_exec_end_op during buffer_field parse tree walk
|
|
|
|
*
|
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_eval_buffer_field_operands(struct acpi_walk_state *walk_state,
|
|
|
|
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;
|
|
|
|
struct acpi_namespace_node *node;
|
|
|
|
union acpi_parse_object *next_op;
|
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_eval_buffer_field_operands, op);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* This is where we evaluate the address and length fields of the
|
|
|
|
* create_xxx_field declaration
|
|
|
|
*/
|
2005-08-05 12:44:28 +08:00
|
|
|
node = op->common.node;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/* next_op points to the op that holds the Buffer */
|
|
|
|
|
|
|
|
next_op = op->common.value.arg;
|
|
|
|
|
|
|
|
/* Evaluate/create the address and length operands */
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
status = acpi_ds_create_operands(walk_state, next_op);
|
|
|
|
if (ACPI_FAILURE(status)) {
|
|
|
|
return_ACPI_STATUS(status);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
obj_desc = acpi_ns_get_attached_object(node);
|
2005-04-17 06:20:36 +08:00
|
|
|
if (!obj_desc) {
|
2005-08-05 12:44:28 +08:00
|
|
|
return_ACPI_STATUS(AE_NOT_EXIST);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Resolve the operands */
|
|
|
|
|
2015-12-29 13:54:36 +08:00
|
|
|
status =
|
|
|
|
acpi_ex_resolve_operands(op->common.aml_opcode, ACPI_WALK_OPERANDS,
|
|
|
|
walk_state);
|
2005-08-05 12:44:28 +08:00
|
|
|
if (ACPI_FAILURE(status)) {
|
2010-03-05 17:56:40 +08:00
|
|
|
ACPI_ERROR((AE_INFO, "(%s) bad operand(s), status 0x%X",
|
2006-01-28 05:43:00 +08:00
|
|
|
acpi_ps_get_opcode_name(op->common.aml_opcode),
|
|
|
|
status));
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
return_ACPI_STATUS(status);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Initialize the Buffer Field */
|
|
|
|
|
|
|
|
if (op->common.aml_opcode == AML_CREATE_FIELD_OP) {
|
2006-10-02 12:00:00 +08:00
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
/* NOTE: Slightly different operands for this opcode */
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
status =
|
|
|
|
acpi_ds_init_buffer_field(op->common.aml_opcode, obj_desc,
|
|
|
|
walk_state->operands[0],
|
|
|
|
walk_state->operands[1],
|
|
|
|
walk_state->operands[2],
|
|
|
|
walk_state->operands[3]);
|
|
|
|
} else {
|
2005-04-17 06:20:36 +08:00
|
|
|
/* All other, create_xxx_field opcodes */
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
status =
|
|
|
|
acpi_ds_init_buffer_field(op->common.aml_opcode, obj_desc,
|
|
|
|
walk_state->operands[0],
|
|
|
|
walk_state->operands[1], NULL,
|
|
|
|
walk_state->operands[2]);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
2005-08-05 12:44:28 +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_eval_region_operands
|
|
|
|
*
|
|
|
|
* PARAMETERS: walk_state - Current walk
|
2012-07-12 09:40:10 +08:00
|
|
|
* op - A valid region Op object
|
2005-04-17 06:20:36 +08:00
|
|
|
*
|
|
|
|
* RETURN: Status
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Get region address and length
|
|
|
|
* Called from acpi_ds_exec_end_op during op_region parse tree walk
|
|
|
|
*
|
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_eval_region_operands(struct acpi_walk_state *walk_state,
|
|
|
|
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;
|
|
|
|
union acpi_operand_object *operand_desc;
|
|
|
|
struct acpi_namespace_node *node;
|
|
|
|
union acpi_parse_object *next_op;
|
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_eval_region_operands, op);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/*
|
2005-04-19 10:49:35 +08:00
|
|
|
* This is where we evaluate the address and length fields of the
|
|
|
|
* op_region declaration
|
2005-04-17 06:20:36 +08:00
|
|
|
*/
|
2005-08-05 12:44:28 +08:00
|
|
|
node = op->common.node;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2012-07-12 09:40:10 +08:00
|
|
|
/* next_op points to the op that holds the space_ID */
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
next_op = op->common.value.arg;
|
|
|
|
|
|
|
|
/* next_op points to address op */
|
|
|
|
|
|
|
|
next_op = next_op->common.next;
|
|
|
|
|
|
|
|
/* Evaluate/create the address and length operands */
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
status = acpi_ds_create_operands(walk_state, next_op);
|
|
|
|
if (ACPI_FAILURE(status)) {
|
|
|
|
return_ACPI_STATUS(status);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Resolve the length and address operands to numbers */
|
|
|
|
|
2015-12-29 13:54:36 +08:00
|
|
|
status =
|
|
|
|
acpi_ex_resolve_operands(op->common.aml_opcode, ACPI_WALK_OPERANDS,
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
obj_desc = acpi_ns_get_attached_object(node);
|
2005-04-17 06:20:36 +08:00
|
|
|
if (!obj_desc) {
|
2005-08-05 12:44:28 +08:00
|
|
|
return_ACPI_STATUS(AE_NOT_EXIST);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Get the length operand and save it
|
|
|
|
* (at Top of stack)
|
|
|
|
*/
|
|
|
|
operand_desc = walk_state->operands[walk_state->num_operands - 1];
|
|
|
|
|
|
|
|
obj_desc->region.length = (u32) operand_desc->integer.value;
|
2005-08-05 12:44:28 +08:00
|
|
|
acpi_ut_remove_reference(operand_desc);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Get the address and save it
|
|
|
|
* (at top of stack - 1)
|
|
|
|
*/
|
|
|
|
operand_desc = walk_state->operands[walk_state->num_operands - 2];
|
|
|
|
|
2005-04-19 10:49:35 +08:00
|
|
|
obj_desc->region.address = (acpi_physical_address)
|
2005-08-05 12:44:28 +08:00
|
|
|
operand_desc->integer.value;
|
|
|
|
acpi_ut_remove_reference(operand_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_DEBUG_PRINT((ACPI_DB_EXEC, "RgnObj %p Addr %8.8X%8.8X Len %X\n",
|
2005-08-05 12:44:28 +08:00
|
|
|
obj_desc,
|
2015-04-13 11:48:52 +08:00
|
|
|
ACPI_FORMAT_UINT64(obj_desc->region.address),
|
2005-08-05 12:44:28 +08:00
|
|
|
obj_desc->region.length));
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/* Now the address and length are valid for this opregion */
|
|
|
|
|
|
|
|
obj_desc->region.flags |= AOPOBJ_DATA_VALID;
|
2005-08-05 12:44:28 +08:00
|
|
|
return_ACPI_STATUS(status);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
2008-04-10 23:06:41 +08:00
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ds_eval_table_region_operands
|
|
|
|
*
|
|
|
|
* PARAMETERS: walk_state - Current walk
|
2012-07-12 09:40:10 +08:00
|
|
|
* op - A valid region Op object
|
2008-04-10 23:06:41 +08:00
|
|
|
*
|
|
|
|
* RETURN: Status
|
|
|
|
*
|
2011-02-14 16:09:40 +08:00
|
|
|
* DESCRIPTION: Get region address and length.
|
|
|
|
* Called from acpi_ds_exec_end_op during data_table_region parse
|
|
|
|
* tree walk.
|
2008-04-10 23:06:41 +08:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
acpi_status
|
|
|
|
acpi_ds_eval_table_region_operands(struct acpi_walk_state *walk_state,
|
|
|
|
union acpi_parse_object *op)
|
|
|
|
{
|
|
|
|
acpi_status status;
|
|
|
|
union acpi_operand_object *obj_desc;
|
|
|
|
union acpi_operand_object **operand;
|
|
|
|
struct acpi_namespace_node *node;
|
|
|
|
union acpi_parse_object *next_op;
|
|
|
|
struct acpi_table_header *table;
|
2015-08-25 10:28:39 +08:00
|
|
|
u32 table_index;
|
2008-04-10 23:06:41 +08:00
|
|
|
|
|
|
|
ACPI_FUNCTION_TRACE_PTR(ds_eval_table_region_operands, op);
|
|
|
|
|
|
|
|
/*
|
2012-12-19 13:36:49 +08:00
|
|
|
* This is where we evaluate the Signature string, oem_id string,
|
|
|
|
* and oem_table_id string of the Data Table Region declaration
|
2008-04-10 23:06:41 +08:00
|
|
|
*/
|
|
|
|
node = op->common.node;
|
|
|
|
|
2012-12-19 13:36:49 +08:00
|
|
|
/* next_op points to Signature string op */
|
2008-04-10 23:06:41 +08:00
|
|
|
|
|
|
|
next_op = op->common.value.arg;
|
|
|
|
|
|
|
|
/*
|
2012-12-19 13:36:49 +08:00
|
|
|
* Evaluate/create the Signature string, oem_id string,
|
|
|
|
* and oem_table_id string operands
|
2008-04-10 23:06:41 +08:00
|
|
|
*/
|
|
|
|
status = acpi_ds_create_operands(walk_state, next_op);
|
|
|
|
if (ACPI_FAILURE(status)) {
|
|
|
|
return_ACPI_STATUS(status);
|
|
|
|
}
|
|
|
|
|
2015-08-25 10:28:39 +08:00
|
|
|
operand = &walk_state->operands[0];
|
|
|
|
|
2008-04-10 23:06:41 +08:00
|
|
|
/*
|
2012-12-19 13:36:49 +08:00
|
|
|
* Resolve the Signature string, oem_id string,
|
|
|
|
* and oem_table_id string operands
|
2008-04-10 23:06:41 +08:00
|
|
|
*/
|
2015-12-29 13:54:36 +08:00
|
|
|
status =
|
|
|
|
acpi_ex_resolve_operands(op->common.aml_opcode, ACPI_WALK_OPERANDS,
|
|
|
|
walk_state);
|
2008-04-10 23:06:41 +08:00
|
|
|
if (ACPI_FAILURE(status)) {
|
2015-08-25 10:28:39 +08:00
|
|
|
goto cleanup;
|
2008-04-10 23:06:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Find the ACPI table */
|
|
|
|
|
|
|
|
status = acpi_tb_find_table(operand[0]->string.pointer,
|
|
|
|
operand[1]->string.pointer,
|
|
|
|
operand[2]->string.pointer, &table_index);
|
|
|
|
if (ACPI_FAILURE(status)) {
|
2015-08-25 10:28:39 +08:00
|
|
|
if (status == AE_NOT_FOUND) {
|
|
|
|
ACPI_ERROR((AE_INFO,
|
|
|
|
"ACPI Table [%4.4s] OEM:(%s, %s) not found in RSDT/XSDT",
|
|
|
|
operand[0]->string.pointer,
|
|
|
|
operand[1]->string.pointer,
|
|
|
|
operand[2]->string.pointer));
|
|
|
|
}
|
|
|
|
goto cleanup;
|
2008-04-10 23:06:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
status = acpi_get_table_by_index(table_index, &table);
|
|
|
|
if (ACPI_FAILURE(status)) {
|
2015-08-25 10:28:39 +08:00
|
|
|
goto cleanup;
|
2008-04-10 23:06:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
obj_desc = acpi_ns_get_attached_object(node);
|
|
|
|
if (!obj_desc) {
|
2015-08-25 10:28:39 +08:00
|
|
|
status = AE_NOT_EXIST;
|
|
|
|
goto cleanup;
|
2008-04-10 23:06:41 +08:00
|
|
|
}
|
|
|
|
|
2015-04-13 11:48:37 +08:00
|
|
|
obj_desc->region.address = ACPI_PTR_TO_PHYSADDR(table);
|
2008-04-10 23:06:41 +08:00
|
|
|
obj_desc->region.length = table->length;
|
|
|
|
|
|
|
|
ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "RgnObj %p Addr %8.8X%8.8X Len %X\n",
|
|
|
|
obj_desc,
|
2015-04-13 11:48:52 +08:00
|
|
|
ACPI_FORMAT_UINT64(obj_desc->region.address),
|
2008-04-10 23:06:41 +08:00
|
|
|
obj_desc->region.length));
|
|
|
|
|
|
|
|
/* Now the address and length are valid for this opregion */
|
|
|
|
|
|
|
|
obj_desc->region.flags |= AOPOBJ_DATA_VALID;
|
|
|
|
|
2015-08-25 10:28:39 +08:00
|
|
|
cleanup:
|
|
|
|
acpi_ut_remove_reference(operand[0]);
|
|
|
|
acpi_ut_remove_reference(operand[1]);
|
|
|
|
acpi_ut_remove_reference(operand[2]);
|
|
|
|
|
2008-04-10 23:06:41 +08:00
|
|
|
return_ACPI_STATUS(status);
|
|
|
|
}
|
|
|
|
|
2005-04-19 10:49:35 +08:00
|
|
|
/*******************************************************************************
|
2005-04-17 06:20:36 +08:00
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ds_eval_data_object_operands
|
|
|
|
*
|
|
|
|
* PARAMETERS: walk_state - Current walk
|
2012-07-12 09:40:10 +08:00
|
|
|
* op - A valid data_object Op object
|
2005-04-17 06:20:36 +08:00
|
|
|
* obj_desc - data_object
|
|
|
|
*
|
|
|
|
* RETURN: Status
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Get the operands and complete the following data object types:
|
|
|
|
* Buffer, Package.
|
|
|
|
*
|
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_eval_data_object_operands(struct acpi_walk_state *walk_state,
|
|
|
|
union acpi_parse_object *op,
|
|
|
|
union acpi_operand_object *obj_desc)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2005-08-05 12:44:28 +08:00
|
|
|
acpi_status status;
|
|
|
|
union acpi_operand_object *arg_desc;
|
|
|
|
u32 length;
|
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_eval_data_object_operands);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/* The first operand (for all of these data objects) is the length */
|
|
|
|
|
2008-04-10 23:06:36 +08:00
|
|
|
/*
|
|
|
|
* Set proper index into operand stack for acpi_ds_obj_stack_push
|
|
|
|
* invoked inside acpi_ds_create_operand.
|
|
|
|
*/
|
|
|
|
walk_state->operand_index = walk_state->num_operands;
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
status = acpi_ds_create_operand(walk_state, op->common.value.arg, 1);
|
|
|
|
if (ACPI_FAILURE(status)) {
|
|
|
|
return_ACPI_STATUS(status);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
status = acpi_ex_resolve_operands(walk_state->opcode,
|
|
|
|
&(walk_state->
|
|
|
|
operands[walk_state->num_operands -
|
|
|
|
1]), walk_state);
|
|
|
|
if (ACPI_FAILURE(status)) {
|
|
|
|
return_ACPI_STATUS(status);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Extract length operand */
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
arg_desc = walk_state->operands[walk_state->num_operands - 1];
|
2005-04-17 06:20:36 +08:00
|
|
|
length = (u32) arg_desc->integer.value;
|
|
|
|
|
|
|
|
/* Cleanup for length operand */
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
status = acpi_ds_obj_stack_pop(1, walk_state);
|
|
|
|
if (ACPI_FAILURE(status)) {
|
|
|
|
return_ACPI_STATUS(status);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
acpi_ut_remove_reference(arg_desc);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Create the actual data object
|
|
|
|
*/
|
|
|
|
switch (op->common.aml_opcode) {
|
|
|
|
case AML_BUFFER_OP:
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
status =
|
|
|
|
acpi_ds_build_internal_buffer_obj(walk_state, op, length,
|
|
|
|
&obj_desc);
|
2005-04-17 06:20:36 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
case AML_PACKAGE_OP:
|
|
|
|
case AML_VAR_PACKAGE_OP:
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
status =
|
|
|
|
acpi_ds_build_internal_package_obj(walk_state, op, length,
|
|
|
|
&obj_desc);
|
2005-04-17 06:20:36 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2013-06-08 08:58:14 +08:00
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
return_ACPI_STATUS(AE_AML_BAD_OPCODE);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
if (ACPI_SUCCESS(status)) {
|
2005-04-17 06:20:36 +08:00
|
|
|
/*
|
2005-04-19 10:49:35 +08:00
|
|
|
* Return the object in the walk_state, unless the parent is a package -
|
2005-04-17 06:20:36 +08:00
|
|
|
* in this case, the return object will be stored in the parse tree
|
|
|
|
* for the package.
|
|
|
|
*/
|
|
|
|
if ((!op->common.parent) ||
|
2005-08-05 12:44:28 +08:00
|
|
|
((op->common.parent->common.aml_opcode != AML_PACKAGE_OP) &&
|
|
|
|
(op->common.parent->common.aml_opcode !=
|
|
|
|
AML_VAR_PACKAGE_OP)
|
2012-10-31 10:25:45 +08:00
|
|
|
&& (op->common.parent->common.aml_opcode !=
|
|
|
|
AML_NAME_OP))) {
|
2005-04-17 06:20:36 +08:00
|
|
|
walk_state->result_obj = obj_desc;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
return_ACPI_STATUS(status);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
2008-04-10 23:06:41 +08:00
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ds_eval_bank_field_operands
|
|
|
|
*
|
|
|
|
* PARAMETERS: walk_state - Current walk
|
2012-07-12 09:40:10 +08:00
|
|
|
* op - A valid bank_field Op object
|
2008-04-10 23:06:41 +08:00
|
|
|
*
|
|
|
|
* RETURN: Status
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Get bank_field bank_value
|
|
|
|
* Called from acpi_ds_exec_end_op during bank_field parse tree walk
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
acpi_status
|
|
|
|
acpi_ds_eval_bank_field_operands(struct acpi_walk_state *walk_state,
|
|
|
|
union acpi_parse_object *op)
|
|
|
|
{
|
|
|
|
acpi_status status;
|
|
|
|
union acpi_operand_object *obj_desc;
|
|
|
|
union acpi_operand_object *operand_desc;
|
|
|
|
struct acpi_namespace_node *node;
|
|
|
|
union acpi_parse_object *next_op;
|
|
|
|
union acpi_parse_object *arg;
|
|
|
|
|
|
|
|
ACPI_FUNCTION_TRACE_PTR(ds_eval_bank_field_operands, op);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This is where we evaluate the bank_value field of the
|
|
|
|
* bank_field declaration
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* next_op points to the op that holds the Region */
|
|
|
|
|
|
|
|
next_op = op->common.value.arg;
|
|
|
|
|
|
|
|
/* next_op points to the op that holds the Bank Register */
|
|
|
|
|
|
|
|
next_op = next_op->common.next;
|
|
|
|
|
|
|
|
/* next_op points to the op that holds the Bank Value */
|
|
|
|
|
|
|
|
next_op = next_op->common.next;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Set proper index into operand stack for acpi_ds_obj_stack_push
|
|
|
|
* invoked inside acpi_ds_create_operand.
|
|
|
|
*
|
|
|
|
* We use walk_state->Operands[0] to store the evaluated bank_value
|
|
|
|
*/
|
|
|
|
walk_state->operand_index = 0;
|
|
|
|
|
|
|
|
status = acpi_ds_create_operand(walk_state, next_op, 0);
|
|
|
|
if (ACPI_FAILURE(status)) {
|
|
|
|
return_ACPI_STATUS(status);
|
|
|
|
}
|
|
|
|
|
|
|
|
status = acpi_ex_resolve_to_value(&walk_state->operands[0], walk_state);
|
|
|
|
if (ACPI_FAILURE(status)) {
|
|
|
|
return_ACPI_STATUS(status);
|
|
|
|
}
|
|
|
|
|
2008-06-10 14:25:05 +08:00
|
|
|
ACPI_DUMP_OPERANDS(ACPI_WALK_OPERANDS,
|
|
|
|
acpi_ps_get_opcode_name(op->common.aml_opcode), 1);
|
2008-04-10 23:06:41 +08:00
|
|
|
/*
|
|
|
|
* Get the bank_value operand and save it
|
|
|
|
* (at Top of stack)
|
|
|
|
*/
|
|
|
|
operand_desc = walk_state->operands[0];
|
|
|
|
|
|
|
|
/* Arg points to the start Bank Field */
|
|
|
|
|
|
|
|
arg = acpi_ps_get_arg(op, 4);
|
|
|
|
while (arg) {
|
|
|
|
|
|
|
|
/* Ignore OFFSET and ACCESSAS terms here */
|
|
|
|
|
|
|
|
if (arg->common.aml_opcode == AML_INT_NAMEDFIELD_OP) {
|
|
|
|
node = arg->common.node;
|
|
|
|
|
|
|
|
obj_desc = acpi_ns_get_attached_object(node);
|
|
|
|
if (!obj_desc) {
|
|
|
|
return_ACPI_STATUS(AE_NOT_EXIST);
|
|
|
|
}
|
|
|
|
|
|
|
|
obj_desc->bank_field.value =
|
|
|
|
(u32) operand_desc->integer.value;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Move to next field in the list */
|
|
|
|
|
|
|
|
arg = arg->common.next;
|
|
|
|
}
|
|
|
|
|
|
|
|
acpi_ut_remove_reference(operand_desc);
|
|
|
|
return_ACPI_STATUS(status);
|
|
|
|
}
|