2005-04-17 06:20:36 +08:00
|
|
|
/******************************************************************************
|
|
|
|
*
|
|
|
|
* Module Name: psxface - Parser external interfaces
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
/*
|
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 "acdispat.h"
|
|
|
|
#include "acinterp.h"
|
2010-04-01 11:14:12 +08:00
|
|
|
#include "actables.h"
|
2015-07-23 12:52:59 +08:00
|
|
|
#include "acnamesp.h"
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
#define _COMPONENT ACPI_PARSER
|
2005-08-05 12:44:28 +08:00
|
|
|
ACPI_MODULE_NAME("psxface")
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-07-30 06:15:00 +08:00
|
|
|
/* Local Prototypes */
|
|
|
|
static void
|
2006-05-27 04:36:00 +08:00
|
|
|
acpi_ps_update_parameter_list(struct acpi_evaluate_info *info, u16 action);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
[ACPI] ACPICA 20050930
Completed a major overhaul of the Resource Manager code -
specifically, optimizations in the area of the AML/internal
resource conversion code. The code has been optimized to
simplify and eliminate duplicated code, CPU stack use has
been decreased by optimizing function parameters and local
variables, and naming conventions across the manager have
been standardized for clarity and ease of maintenance (this
includes function, parameter, variable, and struct/typedef
names.)
All Resource Manager dispatch and information tables have
been moved to a single location for clarity and ease of
maintenance. One new file was created, named "rsinfo.c".
The ACPI return macros (return_ACPI_STATUS, etc.) have
been modified to guarantee that the argument is
not evaluated twice, making them less prone to macro
side-effects. However, since there exists the possibility
of additional stack use if a particular compiler cannot
optimize them (such as in the debug generation case),
the original macros are optionally available. Note that
some invocations of the return_VALUE macro may now cause
size mismatch warnings; the return_UINT8 and return_UINT32
macros are provided to eliminate these. (From Randy Dunlap)
Implemented a new mechanism to enable debug tracing for
individual control methods. A new external interface,
acpi_debug_trace(), is provided to enable this mechanism. The
intent is to allow the host OS to easily enable and disable
tracing for problematic control methods. This interface
can be easily exposed to a user or debugger interface if
desired. See the file psxface.c for details.
acpi_ut_callocate() will now return a valid pointer if a
length of zero is specified - a length of one is used
and a warning is issued. This matches the behavior of
acpi_ut_allocate().
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2005-10-01 07:03:00 +08:00
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_debug_trace
|
|
|
|
*
|
|
|
|
* PARAMETERS: method_name - Valid ACPI name string
|
|
|
|
* debug_level - Optional level mask. 0 to use default
|
|
|
|
* debug_layer - Optional layer mask. 0 to use default
|
2012-07-12 09:40:10 +08:00
|
|
|
* flags - bit 1: one shot(1) or persistent(0)
|
[ACPI] ACPICA 20050930
Completed a major overhaul of the Resource Manager code -
specifically, optimizations in the area of the AML/internal
resource conversion code. The code has been optimized to
simplify and eliminate duplicated code, CPU stack use has
been decreased by optimizing function parameters and local
variables, and naming conventions across the manager have
been standardized for clarity and ease of maintenance (this
includes function, parameter, variable, and struct/typedef
names.)
All Resource Manager dispatch and information tables have
been moved to a single location for clarity and ease of
maintenance. One new file was created, named "rsinfo.c".
The ACPI return macros (return_ACPI_STATUS, etc.) have
been modified to guarantee that the argument is
not evaluated twice, making them less prone to macro
side-effects. However, since there exists the possibility
of additional stack use if a particular compiler cannot
optimize them (such as in the debug generation case),
the original macros are optionally available. Note that
some invocations of the return_VALUE macro may now cause
size mismatch warnings; the return_UINT8 and return_UINT32
macros are provided to eliminate these. (From Randy Dunlap)
Implemented a new mechanism to enable debug tracing for
individual control methods. A new external interface,
acpi_debug_trace(), is provided to enable this mechanism. The
intent is to allow the host OS to easily enable and disable
tracing for problematic control methods. This interface
can be easily exposed to a user or debugger interface if
desired. See the file psxface.c for details.
acpi_ut_callocate() will now return a valid pointer if a
length of zero is specified - a length of one is used
and a warning is issued. This matches the behavior of
acpi_ut_allocate().
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2005-10-01 07:03:00 +08:00
|
|
|
*
|
|
|
|
* RETURN: Status
|
|
|
|
*
|
|
|
|
* DESCRIPTION: External interface to enable debug tracing during control
|
|
|
|
* method execution
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
acpi_status
|
2015-07-23 12:52:59 +08:00
|
|
|
acpi_debug_trace(const char *name, u32 debug_level, u32 debug_layer, u32 flags)
|
[ACPI] ACPICA 20050930
Completed a major overhaul of the Resource Manager code -
specifically, optimizations in the area of the AML/internal
resource conversion code. The code has been optimized to
simplify and eliminate duplicated code, CPU stack use has
been decreased by optimizing function parameters and local
variables, and naming conventions across the manager have
been standardized for clarity and ease of maintenance (this
includes function, parameter, variable, and struct/typedef
names.)
All Resource Manager dispatch and information tables have
been moved to a single location for clarity and ease of
maintenance. One new file was created, named "rsinfo.c".
The ACPI return macros (return_ACPI_STATUS, etc.) have
been modified to guarantee that the argument is
not evaluated twice, making them less prone to macro
side-effects. However, since there exists the possibility
of additional stack use if a particular compiler cannot
optimize them (such as in the debug generation case),
the original macros are optionally available. Note that
some invocations of the return_VALUE macro may now cause
size mismatch warnings; the return_UINT8 and return_UINT32
macros are provided to eliminate these. (From Randy Dunlap)
Implemented a new mechanism to enable debug tracing for
individual control methods. A new external interface,
acpi_debug_trace(), is provided to enable this mechanism. The
intent is to allow the host OS to easily enable and disable
tracing for problematic control methods. This interface
can be easily exposed to a user or debugger interface if
desired. See the file psxface.c for details.
acpi_ut_callocate() will now return a valid pointer if a
length of zero is specified - a length of one is used
and a warning is issued. This matches the behavior of
acpi_ut_allocate().
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2005-10-01 07:03:00 +08:00
|
|
|
{
|
|
|
|
acpi_status status;
|
|
|
|
|
|
|
|
status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE);
|
|
|
|
if (ACPI_FAILURE(status)) {
|
|
|
|
return (status);
|
|
|
|
}
|
|
|
|
|
2015-07-23 12:52:59 +08:00
|
|
|
acpi_gbl_trace_method_name = name;
|
[ACPI] ACPICA 20050930
Completed a major overhaul of the Resource Manager code -
specifically, optimizations in the area of the AML/internal
resource conversion code. The code has been optimized to
simplify and eliminate duplicated code, CPU stack use has
been decreased by optimizing function parameters and local
variables, and naming conventions across the manager have
been standardized for clarity and ease of maintenance (this
includes function, parameter, variable, and struct/typedef
names.)
All Resource Manager dispatch and information tables have
been moved to a single location for clarity and ease of
maintenance. One new file was created, named "rsinfo.c".
The ACPI return macros (return_ACPI_STATUS, etc.) have
been modified to guarantee that the argument is
not evaluated twice, making them less prone to macro
side-effects. However, since there exists the possibility
of additional stack use if a particular compiler cannot
optimize them (such as in the debug generation case),
the original macros are optionally available. Note that
some invocations of the return_VALUE macro may now cause
size mismatch warnings; the return_UINT8 and return_UINT32
macros are provided to eliminate these. (From Randy Dunlap)
Implemented a new mechanism to enable debug tracing for
individual control methods. A new external interface,
acpi_debug_trace(), is provided to enable this mechanism. The
intent is to allow the host OS to easily enable and disable
tracing for problematic control methods. This interface
can be easily exposed to a user or debugger interface if
desired. See the file psxface.c for details.
acpi_ut_callocate() will now return a valid pointer if a
length of zero is specified - a length of one is used
and a warning is issued. This matches the behavior of
acpi_ut_allocate().
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2005-10-01 07:03:00 +08:00
|
|
|
acpi_gbl_trace_flags = flags;
|
2015-07-23 12:52:59 +08:00
|
|
|
acpi_gbl_trace_dbg_level = debug_level;
|
|
|
|
acpi_gbl_trace_dbg_layer = debug_layer;
|
|
|
|
status = AE_OK;
|
[ACPI] ACPICA 20050930
Completed a major overhaul of the Resource Manager code -
specifically, optimizations in the area of the AML/internal
resource conversion code. The code has been optimized to
simplify and eliminate duplicated code, CPU stack use has
been decreased by optimizing function parameters and local
variables, and naming conventions across the manager have
been standardized for clarity and ease of maintenance (this
includes function, parameter, variable, and struct/typedef
names.)
All Resource Manager dispatch and information tables have
been moved to a single location for clarity and ease of
maintenance. One new file was created, named "rsinfo.c".
The ACPI return macros (return_ACPI_STATUS, etc.) have
been modified to guarantee that the argument is
not evaluated twice, making them less prone to macro
side-effects. However, since there exists the possibility
of additional stack use if a particular compiler cannot
optimize them (such as in the debug generation case),
the original macros are optionally available. Note that
some invocations of the return_VALUE macro may now cause
size mismatch warnings; the return_UINT8 and return_UINT32
macros are provided to eliminate these. (From Randy Dunlap)
Implemented a new mechanism to enable debug tracing for
individual control methods. A new external interface,
acpi_debug_trace(), is provided to enable this mechanism. The
intent is to allow the host OS to easily enable and disable
tracing for problematic control methods. This interface
can be easily exposed to a user or debugger interface if
desired. See the file psxface.c for details.
acpi_ut_callocate() will now return a valid pointer if a
length of zero is specified - a length of one is used
and a warning is issued. This matches the behavior of
acpi_ut_allocate().
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2005-10-01 07:03:00 +08:00
|
|
|
|
|
|
|
(void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
|
2015-07-23 12:52:59 +08:00
|
|
|
return (status);
|
[ACPI] ACPICA 20050930
Completed a major overhaul of the Resource Manager code -
specifically, optimizations in the area of the AML/internal
resource conversion code. The code has been optimized to
simplify and eliminate duplicated code, CPU stack use has
been decreased by optimizing function parameters and local
variables, and naming conventions across the manager have
been standardized for clarity and ease of maintenance (this
includes function, parameter, variable, and struct/typedef
names.)
All Resource Manager dispatch and information tables have
been moved to a single location for clarity and ease of
maintenance. One new file was created, named "rsinfo.c".
The ACPI return macros (return_ACPI_STATUS, etc.) have
been modified to guarantee that the argument is
not evaluated twice, making them less prone to macro
side-effects. However, since there exists the possibility
of additional stack use if a particular compiler cannot
optimize them (such as in the debug generation case),
the original macros are optionally available. Note that
some invocations of the return_VALUE macro may now cause
size mismatch warnings; the return_UINT8 and return_UINT32
macros are provided to eliminate these. (From Randy Dunlap)
Implemented a new mechanism to enable debug tracing for
individual control methods. A new external interface,
acpi_debug_trace(), is provided to enable this mechanism. The
intent is to allow the host OS to easily enable and disable
tracing for problematic control methods. This interface
can be easily exposed to a user or debugger interface if
desired. See the file psxface.c for details.
acpi_ut_callocate() will now return a valid pointer if a
length of zero is specified - a length of one is used
and a warning is issued. This matches the behavior of
acpi_ut_allocate().
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2005-10-01 07:03:00 +08:00
|
|
|
}
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
/*******************************************************************************
|
|
|
|
*
|
2005-07-30 06:15:00 +08:00
|
|
|
* FUNCTION: acpi_ps_execute_method
|
2005-04-17 06:20:36 +08:00
|
|
|
*
|
2012-07-12 09:40:10 +08:00
|
|
|
* PARAMETERS: info - Method info block, contains:
|
|
|
|
* node - Method Node to execute
|
2005-07-30 06:15:00 +08:00
|
|
|
* obj_desc - Method object
|
2012-07-12 09:40:10 +08:00
|
|
|
* parameters - List of parameters to pass to the method,
|
2005-04-17 06:20:36 +08:00
|
|
|
* terminated by NULL. Params itself may be
|
|
|
|
* NULL if no parameters are being passed.
|
2005-04-19 10:49:35 +08:00
|
|
|
* return_object - Where to put method's return value (if
|
|
|
|
* any). If NULL, no value is returned.
|
|
|
|
* parameter_type - Type of Parameter list
|
|
|
|
* return_object - Where to put method's return value (if
|
|
|
|
* any). If NULL, no value is returned.
|
2005-07-30 06:15:00 +08:00
|
|
|
* pass_number - Parse or execute pass
|
2005-04-17 06:20:36 +08:00
|
|
|
*
|
|
|
|
* RETURN: Status
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Execute a control method
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2016-05-05 12:57:53 +08:00
|
|
|
acpi_status acpi_ps_execute_method(struct acpi_evaluate_info *info)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2005-08-05 12:44:28 +08:00
|
|
|
acpi_status status;
|
2007-02-03 00:48:21 +08:00
|
|
|
union acpi_parse_object *op;
|
|
|
|
struct acpi_walk_state *walk_state;
|
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(ps_execute_method);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2010-04-01 10:47:56 +08:00
|
|
|
/* Quick validation of DSDT header */
|
|
|
|
|
|
|
|
acpi_tb_check_dsdt_header();
|
|
|
|
|
2005-07-30 06:15:00 +08:00
|
|
|
/* Validate the Info and method Node */
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2013-05-30 10:00:01 +08:00
|
|
|
if (!info || !info->node) {
|
2005-08-05 12:44:28 +08:00
|
|
|
return_ACPI_STATUS(AE_NULL_ENTRY);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Init for new method, wait on concurrency semaphore */
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
status =
|
2013-05-30 10:00:01 +08:00
|
|
|
acpi_ds_begin_method_execution(info->node, info->obj_desc, NULL);
|
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-07-30 06:15:00 +08:00
|
|
|
/*
|
2007-02-03 00:48:21 +08:00
|
|
|
* The caller "owns" the parameters, so give each one an extra reference
|
2005-07-30 06:15:00 +08:00
|
|
|
*/
|
2005-08-05 12:44:28 +08:00
|
|
|
acpi_ps_update_parameter_list(info, REF_INCREMENT);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-07-30 06:15:00 +08:00
|
|
|
/*
|
2007-02-03 00:48:21 +08:00
|
|
|
* Execute the method. Performs parse simultaneously
|
2005-07-30 06:15:00 +08:00
|
|
|
*/
|
2005-08-05 12:44:28 +08:00
|
|
|
ACPI_DEBUG_PRINT((ACPI_DB_PARSE,
|
2007-02-03 00:48:21 +08:00
|
|
|
"**** Begin Method Parse/Execute [%4.4s] **** Node=%p Obj=%p\n",
|
2013-05-30 10:00:01 +08:00
|
|
|
info->node->name.ascii, info->node, info->obj_desc));
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2007-02-03 00:48:21 +08:00
|
|
|
/* Create and init a Root Node */
|
|
|
|
|
2015-07-23 12:52:24 +08:00
|
|
|
op = acpi_ps_create_scope_op(info->obj_desc->method.aml_start);
|
2007-02-03 00:48:21 +08:00
|
|
|
if (!op) {
|
|
|
|
status = AE_NO_MEMORY;
|
2005-07-30 06:15:00 +08:00
|
|
|
goto cleanup;
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
2007-02-03 00:48:21 +08:00
|
|
|
/* Create and initialize a new walk state */
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2007-02-03 00:48:21 +08:00
|
|
|
info->pass_number = ACPI_IMODE_EXECUTE;
|
2007-02-03 00:48:21 +08:00
|
|
|
walk_state =
|
|
|
|
acpi_ds_create_walk_state(info->obj_desc->method.owner_id, NULL,
|
|
|
|
NULL, NULL);
|
|
|
|
if (!walk_state) {
|
|
|
|
status = AE_NO_MEMORY;
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
2013-05-30 10:00:01 +08:00
|
|
|
status = acpi_ds_init_aml_walk(walk_state, op, info->node,
|
2007-02-03 00:48:21 +08:00
|
|
|
info->obj_desc->method.aml_start,
|
|
|
|
info->obj_desc->method.aml_length, info,
|
|
|
|
info->pass_number);
|
|
|
|
if (ACPI_FAILURE(status)) {
|
|
|
|
acpi_ds_delete_walk_state(walk_state);
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
2011-01-12 09:19:43 +08:00
|
|
|
if (info->obj_desc->method.info_flags & ACPI_METHOD_MODULE_LEVEL) {
|
2009-08-13 14:03:15 +08:00
|
|
|
walk_state->parse_flags |= ACPI_PARSE_MODULE_LEVEL;
|
|
|
|
}
|
|
|
|
|
2008-11-13 09:45:35 +08:00
|
|
|
/* Invoke an internal method if necessary */
|
|
|
|
|
2011-01-12 09:19:43 +08:00
|
|
|
if (info->obj_desc->method.info_flags & ACPI_METHOD_INTERNAL_ONLY) {
|
2009-12-11 15:28:27 +08:00
|
|
|
status =
|
2011-01-12 09:19:43 +08:00
|
|
|
info->obj_desc->method.dispatch.implementation(walk_state);
|
2008-11-13 09:45:35 +08:00
|
|
|
info->return_object = walk_state->return_desc;
|
|
|
|
|
|
|
|
/* Cleanup states */
|
|
|
|
|
|
|
|
acpi_ds_scope_stack_clear(walk_state);
|
|
|
|
acpi_ps_cleanup_scope(&walk_state->parser_state);
|
|
|
|
acpi_ds_terminate_control_method(walk_state->method_desc,
|
|
|
|
walk_state);
|
|
|
|
acpi_ds_delete_walk_state(walk_state);
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
2008-11-13 11:25:22 +08:00
|
|
|
/*
|
|
|
|
* Start method evaluation with an implicit return of zero.
|
|
|
|
* This is done for Windows compatibility.
|
|
|
|
*/
|
|
|
|
if (acpi_gbl_enable_interpreter_slack) {
|
|
|
|
walk_state->implicit_return_obj =
|
2009-11-12 09:52:45 +08:00
|
|
|
acpi_ut_create_integer_object((u64) 0);
|
2008-11-13 11:25:22 +08:00
|
|
|
if (!walk_state->implicit_return_obj) {
|
|
|
|
status = AE_NO_MEMORY;
|
|
|
|
acpi_ds_delete_walk_state(walk_state);
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-02-03 00:48:21 +08:00
|
|
|
/* Parse the AML */
|
|
|
|
|
|
|
|
status = acpi_ps_parse_aml(walk_state);
|
|
|
|
|
|
|
|
/* walk_state was deleted by parse_aml */
|
2005-07-30 06:15:00 +08:00
|
|
|
|
2013-10-29 09:30:02 +08:00
|
|
|
cleanup:
|
2007-02-03 00:48:21 +08:00
|
|
|
acpi_ps_delete_parse_tree(op);
|
|
|
|
|
2005-07-30 06:15:00 +08:00
|
|
|
/* Take away the extra reference that we gave the parameters above */
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
acpi_ps_update_parameter_list(info, REF_DECREMENT);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-07-30 06:15:00 +08:00
|
|
|
/* Exit now if error above */
|
2005-04-17 06:20:36 +08:00
|
|
|
|
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-07-30 06:15:00 +08:00
|
|
|
/*
|
|
|
|
* If the method has returned an object, signal this to the caller with
|
|
|
|
* a control exception code
|
|
|
|
*/
|
|
|
|
if (info->return_object) {
|
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_PARSE, "Method returned ObjDesc=%p\n",
|
2005-08-05 12:44:28 +08:00
|
|
|
info->return_object));
|
|
|
|
ACPI_DUMP_STACK_ENTRY(info->return_object);
|
2005-07-30 06:15:00 +08:00
|
|
|
|
|
|
|
status = AE_CTRL_RETURN_VALUE;
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
return_ACPI_STATUS(status);
|
2005-07-30 06:15:00 +08:00
|
|
|
}
|
2005-04-19 10:49:35 +08:00
|
|
|
|
ACPICA: Interpreter: Fix MLC issues by switching to new term_list grammar for table loading
ACPICA commit 0e24fb67cde08d7df7671d7d7b183490dc79707e
The MLC (Module Level Code) is an ACPICA terminology describing the AML
code out of any control method, its support is an indication of the
interpreter behavior during the table loading.
The original implementation of MLC in ACPICA had several issues:
1. Out of any control method, besides of the object creating opcodes, only
the code blocks wrapped by "If/Else/While" opcodes were supported.
2. The supported MLC code blocks were executed after loading the table
rather than being executed right in place.
============================================================
The demo of this order issue is as follows:
Name (OBJ1, 1)
If (CND1 == 1)
{
Name (OBJ2, 2)
}
Name (OBJ3, 3)
The original MLC support created OBJ2 after OBJ3's creation.
============================================================
Other than these limitations, MLC support in ACPICA looks correct. And
supporting this should be easy/natural for ACPICA, but enabling of this was
blocked by some ACPICA internal and OSPM specific initialization order
issues we've fixed recently. The wrong support started from the following
false bug fixing commit:
Commit: 7f0c826a437157d2b19662977e9cf3b472cf24a6
Subject: ACPICA: Add support for module-level executable AML code
Commit: 9a884ab64a4d092b4c3bf24fd9a30f7fbd4591e7
Subject: ACPICA: Add additional module-level code support
...
We can confirm Windows interpreter behavior via reverse engineering means.
It can be proven that not only If/Else/While wrapped code blocks, all
opcodes can be executed at the module level, including operation region
accesses. And it can be proven that the MLC should be executed right in
place, not in such a deferred way executed after loading the table.
And the above facts indeed reflect the spec words around ACPI definition
block tables (DSDT/SSDT/...), the entire table and the Scope object is
defined by the AML specification in BNF style as:
AMLCode := def_block_header term_list
def_scope := scope_op pkg_length name_string term_list
The bodies of the scope opening terms (AMLCode/Scope) are all term_list,
thus the table loading should be no difference than the control method
evaluations as the body of the Method is also defined by the AML
specification as term_list:
def_method := method_op pkg_length name_string method_flags term_list
The only difference is: after evaluating control method, created named
objects may be freed due to no reference, while named objects created by
the table loading should only be freed after unloading the table.
So this patch follows the spec and the de-facto standard behavior, enables
the new grammar (term_list) for the table loading.
By doing so, beyond the fixes to the above issues, we can see additional
differences comparing to the old grammar based table loading:
1. Originally, beyond the scope opening terms (AMLCode/Scope),
If/Else/While wrapped code blocks under the scope creating terms
(Device/power_resource/Processor/thermal_zone) are also supported as
deferred MLC, which violates the spec defined grammar where object_list
is enforced. With MLC support improved as non-deferred, the interpreter
parses such scope creating terms as term_list rather object_list like the
scope opening terms.
After probing the Windows behavior and proving that it also parses these
terms as term_list, we submitted an ECR (Engineering Change Request) to
the ASWG (ACPI Specification Working Group) to clarify this. The ECR is
titled as "ASL Grammar Clarification for Executable AML Opcodes" and has
been accepted by the ASWG. The new grammar will appear in ACPI
specification 6.2.
2. Originally, Buffer/Package/operation_region/create_XXXField/bank_field
arguments are evaluated in a deferred way after loading the table. With
MLC support improved, they are also parsed right in place during the
table loading.
This is also Windows compliant and the only difference is the removal
of the debugging messages implemented before acpi_ds_execute_arguments(),
see Link # [1] for the details. A previous commit should have ensured
that acpi_check_address_range() won't regress.
Note that enabling this feature may cause regressions due to long term
Linux ACPI support on top of the wrong grammar. So this patch also prepares
a global option to be used to roll back to the old grammar during the
period between a regression is reported and the regression is
root-cause-fixed. Lv Zheng.
Link: https://bugzilla.kernel.org/show_bug.cgi?id=112911 # [1]
Link: https://bugzilla.kernel.org/show_bug.cgi?id=117671 # [1]
Link: https://bugzilla.kernel.org/show_bug.cgi?id=153541 # [1]
Link: https://github.com/acpica/acpica/issues/122
Link: https://bugs.acpica.org/show_bug.cgi?id=963
Link: https://github.com/acpica/acpica/commit/0e24fb67
Reported-and-tested-by: Chris Bainbridge <chris.bainbridge@gmail.com>
Reported-by: Ehsan <dashesy@gmail.com>
Reported-and-tested-by: Dutch Guy <lucht_piloot@gmx.net>
Tested-by: Mika Westerberg <mika.westerberg@linux.intel.com>
Signed-off-by: Lv Zheng <lv.zheng@intel.com>
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
2016-09-07 14:06:54 +08:00
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ps_execute_table
|
|
|
|
*
|
|
|
|
* PARAMETERS: info - Method info block, contains:
|
|
|
|
* node - Node to where the is entered into the
|
|
|
|
* namespace
|
|
|
|
* obj_desc - Pseudo method object describing the AML
|
|
|
|
* code of the entire table
|
|
|
|
* pass_number - Parse or execute pass
|
|
|
|
*
|
|
|
|
* RETURN: Status
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Execute a table
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
acpi_status acpi_ps_execute_table(struct acpi_evaluate_info *info)
|
|
|
|
{
|
|
|
|
acpi_status status;
|
|
|
|
union acpi_parse_object *op = NULL;
|
|
|
|
struct acpi_walk_state *walk_state = NULL;
|
|
|
|
|
|
|
|
ACPI_FUNCTION_TRACE(ps_execute_table);
|
|
|
|
|
|
|
|
/* Create and init a Root Node */
|
|
|
|
|
|
|
|
op = acpi_ps_create_scope_op(info->obj_desc->method.aml_start);
|
|
|
|
if (!op) {
|
|
|
|
status = AE_NO_MEMORY;
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Create and initialize a new walk state */
|
|
|
|
|
|
|
|
walk_state =
|
|
|
|
acpi_ds_create_walk_state(info->obj_desc->method.owner_id, NULL,
|
|
|
|
NULL, NULL);
|
|
|
|
if (!walk_state) {
|
|
|
|
status = AE_NO_MEMORY;
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
status = acpi_ds_init_aml_walk(walk_state, op, info->node,
|
|
|
|
info->obj_desc->method.aml_start,
|
|
|
|
info->obj_desc->method.aml_length, info,
|
|
|
|
info->pass_number);
|
|
|
|
if (ACPI_FAILURE(status)) {
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (info->obj_desc->method.info_flags & ACPI_METHOD_MODULE_LEVEL) {
|
|
|
|
walk_state->parse_flags |= ACPI_PARSE_MODULE_LEVEL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Parse the AML, walk_state will be deleted by parse_aml
|
|
|
|
*/
|
|
|
|
status = acpi_ps_parse_aml(walk_state);
|
|
|
|
walk_state = NULL;
|
|
|
|
|
|
|
|
cleanup:
|
|
|
|
if (walk_state) {
|
|
|
|
acpi_ds_delete_walk_state(walk_state);
|
|
|
|
}
|
|
|
|
if (op) {
|
|
|
|
acpi_ps_delete_parse_tree(op);
|
|
|
|
}
|
|
|
|
return_ACPI_STATUS(status);
|
|
|
|
}
|
|
|
|
|
2005-07-30 06:15:00 +08:00
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ps_update_parameter_list
|
|
|
|
*
|
2012-07-12 09:40:10 +08:00
|
|
|
* PARAMETERS: info - See struct acpi_evaluate_info
|
2005-07-30 06:15:00 +08:00
|
|
|
* (Used: parameter_type and Parameters)
|
2012-07-12 09:40:10 +08:00
|
|
|
* action - Add or Remove reference
|
2005-07-30 06:15:00 +08:00
|
|
|
*
|
|
|
|
* RETURN: Status
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Update reference count on all method parameter objects
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-07-30 06:15:00 +08:00
|
|
|
static void
|
2006-05-27 04:36:00 +08:00
|
|
|
acpi_ps_update_parameter_list(struct acpi_evaluate_info *info, u16 action)
|
2005-07-30 06:15:00 +08:00
|
|
|
{
|
2008-06-10 13:42:13 +08:00
|
|
|
u32 i;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2008-06-10 12:38:10 +08:00
|
|
|
if (info->parameters) {
|
2006-10-02 12:00:00 +08:00
|
|
|
|
2005-07-30 06:15:00 +08:00
|
|
|
/* Update reference count for each parameter */
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
for (i = 0; info->parameters[i]; i++) {
|
2006-10-02 12:00:00 +08:00
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
/* Ignore errors, just do them all */
|
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
(void)acpi_ut_update_object_reference(info->
|
|
|
|
parameters[i],
|
|
|
|
action);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
}
|
2005-07-30 06:15:00 +08:00
|
|
|
}
|