2005-04-16 22:20:36 +00:00
|
|
|
/******************************************************************************
|
|
|
|
*
|
|
|
|
* Module Name: uteval - Object evaluation
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
/*
|
2013-01-25 05:38:56 +00:00
|
|
|
* Copyright (C) 2000 - 2013, Intel Corp.
|
2005-04-16 22:20:36 +00: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 05:30:03 +00:00
|
|
|
#include "accommon.h"
|
|
|
|
#include "acnamesp.h"
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
#define _COMPONENT ACPI_UTILITIES
|
2005-08-05 04:44:28 +00:00
|
|
|
ACPI_MODULE_NAME("uteval")
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ut_evaluate_object
|
|
|
|
*
|
|
|
|
* PARAMETERS: prefix_node - Starting node
|
2012-07-12 01:40:10 +00:00
|
|
|
* path - Path to object from starting node
|
2005-04-16 22:20:36 +00:00
|
|
|
* expected_return_types - Bitmap of allowed return types
|
|
|
|
* return_desc - Where a return value is stored
|
|
|
|
*
|
|
|
|
* RETURN: Status
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Evaluates a namespace object and verifies the type of the
|
2009-06-29 05:39:29 +00:00
|
|
|
* return object. Common code that simplifies accessing objects
|
2005-04-16 22:20:36 +00:00
|
|
|
* that have required return objects of fixed types.
|
|
|
|
*
|
|
|
|
* NOTE: Internal function, no parameter validation
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
acpi_status
|
2012-12-19 05:37:15 +00:00
|
|
|
acpi_ut_evaluate_object(struct acpi_namespace_node * prefix_node,
|
2005-08-05 04:44:28 +00:00
|
|
|
char *path,
|
|
|
|
u32 expected_return_btypes,
|
|
|
|
union acpi_operand_object **return_desc)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2006-05-26 20:36:00 +00:00
|
|
|
struct acpi_evaluate_info *info;
|
2005-08-05 04:44:28 +00:00
|
|
|
acpi_status status;
|
|
|
|
u32 return_btype;
|
2005-04-16 22:20:36 +00: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-21 21:15:00 +00:00
|
|
|
ACPI_FUNCTION_TRACE(ut_evaluate_object);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2006-05-26 20:36:00 +00:00
|
|
|
/* Allocate the evaluation information block */
|
|
|
|
|
|
|
|
info = ACPI_ALLOCATE_ZEROED(sizeof(struct acpi_evaluate_info));
|
|
|
|
if (!info) {
|
|
|
|
return_ACPI_STATUS(AE_NO_MEMORY);
|
|
|
|
}
|
|
|
|
|
|
|
|
info->prefix_node = prefix_node;
|
2013-05-30 02:00:01 +00:00
|
|
|
info->relative_pathname = path;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/* Evaluate the object/method */
|
|
|
|
|
2006-05-26 20:36:00 +00:00
|
|
|
status = acpi_ns_evaluate(info);
|
2005-08-05 04:44:28 +00:00
|
|
|
if (ACPI_FAILURE(status)) {
|
2005-04-16 22:20:36 +00:00
|
|
|
if (status == AE_NOT_FOUND) {
|
2005-08-05 04:44:28 +00:00
|
|
|
ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
|
|
|
|
"[%4.4s.%s] was not found\n",
|
|
|
|
acpi_ut_get_node_name(prefix_node),
|
|
|
|
path));
|
|
|
|
} else {
|
2006-01-27 21:43:00 +00:00
|
|
|
ACPI_ERROR_METHOD("Method execution failed",
|
|
|
|
prefix_node, path, status);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2006-05-26 20:36:00 +00:00
|
|
|
goto cleanup;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Did we get a return object? */
|
|
|
|
|
2006-05-26 20:36:00 +00:00
|
|
|
if (!info->return_object) {
|
2005-04-16 22:20:36 +00:00
|
|
|
if (expected_return_btypes) {
|
2006-01-27 21:43:00 +00:00
|
|
|
ACPI_ERROR_METHOD("No object was returned from",
|
|
|
|
prefix_node, path, AE_NOT_EXIST);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2006-05-26 20:36:00 +00:00
|
|
|
status = AE_NOT_EXIST;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2006-05-26 20:36:00 +00:00
|
|
|
goto cleanup;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Map the return object type to the bitmapped type */
|
|
|
|
|
2009-02-18 06:44:03 +00:00
|
|
|
switch ((info->return_object)->common.type) {
|
2005-04-16 22:20:36 +00:00
|
|
|
case ACPI_TYPE_INTEGER:
|
|
|
|
return_btype = ACPI_BTYPE_INTEGER;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_TYPE_BUFFER:
|
|
|
|
return_btype = ACPI_BTYPE_BUFFER;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_TYPE_STRING:
|
|
|
|
return_btype = ACPI_BTYPE_STRING;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_TYPE_PACKAGE:
|
|
|
|
return_btype = ACPI_BTYPE_PACKAGE;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
return_btype = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2005-08-05 04:44:28 +00:00
|
|
|
if ((acpi_gbl_enable_interpreter_slack) && (!expected_return_btypes)) {
|
2005-04-16 22:20:36 +00:00
|
|
|
/*
|
2009-06-29 05:39:29 +00:00
|
|
|
* We received a return object, but one was not expected. This can
|
2005-04-16 22:20:36 +00:00
|
|
|
* happen frequently if the "implicit return" feature is enabled.
|
|
|
|
* Just delete the return object and return AE_OK.
|
|
|
|
*/
|
2006-05-26 20:36:00 +00:00
|
|
|
acpi_ut_remove_reference(info->return_object);
|
|
|
|
goto cleanup;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Is the return object one of the expected types? */
|
|
|
|
|
|
|
|
if (!(expected_return_btypes & return_btype)) {
|
2006-01-27 21:43:00 +00:00
|
|
|
ACPI_ERROR_METHOD("Return object type is incorrect",
|
|
|
|
prefix_node, path, AE_TYPE);
|
|
|
|
|
|
|
|
ACPI_ERROR((AE_INFO,
|
2010-03-05 09:56:40 +00:00
|
|
|
"Type returned from %s was incorrect: %s, expected Btypes: 0x%X",
|
2006-01-27 21:43:00 +00:00
|
|
|
path,
|
2006-05-26 20:36:00 +00:00
|
|
|
acpi_ut_get_object_type_name(info->return_object),
|
2006-01-27 21:43:00 +00:00
|
|
|
expected_return_btypes));
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/* On error exit, we must delete the return object */
|
|
|
|
|
2006-05-26 20:36:00 +00:00
|
|
|
acpi_ut_remove_reference(info->return_object);
|
|
|
|
status = AE_TYPE;
|
|
|
|
goto cleanup;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Object type is OK, return it */
|
|
|
|
|
2006-05-26 20:36:00 +00:00
|
|
|
*return_desc = info->return_object;
|
|
|
|
|
|
|
|
cleanup:
|
|
|
|
ACPI_FREE(info);
|
|
|
|
return_ACPI_STATUS(status);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ut_evaluate_numeric_object
|
|
|
|
*
|
2005-04-19 02:49:35 +00:00
|
|
|
* PARAMETERS: object_name - Object name to be evaluated
|
2005-04-16 22:20:36 +00:00
|
|
|
* device_node - Node for the device
|
2012-07-12 01:40:10 +00:00
|
|
|
* value - Where the value is returned
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
|
|
|
* RETURN: Status
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Evaluates a numeric namespace object for a selected device
|
2009-06-29 05:39:29 +00:00
|
|
|
* and stores result in *Value.
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
|
|
|
* NOTE: Internal function, no parameter validation
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
acpi_status
|
2005-08-05 04:44:28 +00:00
|
|
|
acpi_ut_evaluate_numeric_object(char *object_name,
|
|
|
|
struct acpi_namespace_node *device_node,
|
2010-01-21 02:06:32 +00:00
|
|
|
u64 *value)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2005-08-05 04:44:28 +00:00
|
|
|
union acpi_operand_object *obj_desc;
|
|
|
|
acpi_status status;
|
2005-04-16 22:20:36 +00: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-21 21:15:00 +00:00
|
|
|
ACPI_FUNCTION_TRACE(ut_evaluate_numeric_object);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-08-05 04:44:28 +00:00
|
|
|
status = acpi_ut_evaluate_object(device_node, object_name,
|
|
|
|
ACPI_BTYPE_INTEGER, &obj_desc);
|
|
|
|
if (ACPI_FAILURE(status)) {
|
|
|
|
return_ACPI_STATUS(status);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Get the returned Integer */
|
|
|
|
|
2009-06-29 05:39:29 +00:00
|
|
|
*value = obj_desc->integer.value;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/* On exit, we must delete the return object */
|
|
|
|
|
2005-08-05 04:44:28 +00:00
|
|
|
acpi_ut_remove_reference(obj_desc);
|
|
|
|
return_ACPI_STATUS(status);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ut_execute_STA
|
|
|
|
*
|
|
|
|
* PARAMETERS: device_node - Node for the device
|
2012-07-12 01:40:10 +00:00
|
|
|
* flags - Where the status flags are returned
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
|
|
|
* RETURN: Status
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Executes _STA for selected device and stores results in
|
|
|
|
* *Flags.
|
|
|
|
*
|
|
|
|
* NOTE: Internal function, no parameter validation
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
acpi_status
|
2005-08-05 04:44:28 +00:00
|
|
|
acpi_ut_execute_STA(struct acpi_namespace_node *device_node, u32 * flags)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2005-08-05 04:44:28 +00:00
|
|
|
union acpi_operand_object *obj_desc;
|
|
|
|
acpi_status status;
|
2005-04-16 22:20:36 +00: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-21 21:15:00 +00:00
|
|
|
ACPI_FUNCTION_TRACE(ut_execute_STA);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-08-05 04:44:28 +00:00
|
|
|
status = acpi_ut_evaluate_object(device_node, METHOD_NAME__STA,
|
|
|
|
ACPI_BTYPE_INTEGER, &obj_desc);
|
|
|
|
if (ACPI_FAILURE(status)) {
|
2005-04-16 22:20:36 +00:00
|
|
|
if (AE_NOT_FOUND == status) {
|
2005-08-05 04:44:28 +00:00
|
|
|
ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
|
|
|
|
"_STA on %4.4s was not found, assuming device is present\n",
|
|
|
|
acpi_ut_get_node_name(device_node)));
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-12-16 22:05:00 +00:00
|
|
|
*flags = ACPI_UINT32_MAX;
|
2005-04-16 22:20:36 +00:00
|
|
|
status = AE_OK;
|
|
|
|
}
|
|
|
|
|
2005-08-05 04:44:28 +00:00
|
|
|
return_ACPI_STATUS(status);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Extract the status flags */
|
|
|
|
|
|
|
|
*flags = (u32) obj_desc->integer.value;
|
|
|
|
|
|
|
|
/* On exit, we must delete the return object */
|
|
|
|
|
2005-08-05 04:44:28 +00:00
|
|
|
acpi_ut_remove_reference(obj_desc);
|
|
|
|
return_ACPI_STATUS(status);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
2009-06-29 05:39:29 +00:00
|
|
|
* FUNCTION: acpi_ut_execute_power_methods
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
|
|
|
* PARAMETERS: device_node - Node for the device
|
2009-06-29 05:39:29 +00:00
|
|
|
* method_names - Array of power method names
|
|
|
|
* method_count - Number of methods to execute
|
|
|
|
* out_values - Where the power method values are returned
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
2009-06-29 05:39:29 +00:00
|
|
|
* RETURN: Status, out_values
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
2009-06-29 05:39:29 +00:00
|
|
|
* DESCRIPTION: Executes the specified power methods for the device and returns
|
|
|
|
* the result(s).
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
|
|
|
* NOTE: Internal function, no parameter validation
|
|
|
|
*
|
2009-06-29 05:39:29 +00:00
|
|
|
******************************************************************************/
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
acpi_status
|
2009-06-29 05:39:29 +00:00
|
|
|
acpi_ut_execute_power_methods(struct acpi_namespace_node *device_node,
|
|
|
|
const char **method_names,
|
|
|
|
u8 method_count, u8 *out_values)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2005-08-05 04:44:28 +00:00
|
|
|
union acpi_operand_object *obj_desc;
|
|
|
|
acpi_status status;
|
2009-06-29 05:39:29 +00:00
|
|
|
acpi_status final_status = AE_NOT_FOUND;
|
2005-08-05 04:44:28 +00:00
|
|
|
u32 i;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2009-06-29 05:39:29 +00:00
|
|
|
ACPI_FUNCTION_TRACE(ut_execute_power_methods);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2009-06-29 05:39:29 +00:00
|
|
|
for (i = 0; i < method_count; i++) {
|
|
|
|
/*
|
|
|
|
* Execute the power method (_sx_d or _sx_w). The only allowable
|
|
|
|
* return type is an Integer.
|
|
|
|
*/
|
2005-08-05 04:44:28 +00:00
|
|
|
status = acpi_ut_evaluate_object(device_node,
|
2005-12-16 22:05:00 +00:00
|
|
|
ACPI_CAST_PTR(char,
|
2009-06-29 05:39:29 +00:00
|
|
|
method_names[i]),
|
2005-12-16 22:05:00 +00:00
|
|
|
ACPI_BTYPE_INTEGER, &obj_desc);
|
2009-06-29 05:39:29 +00:00
|
|
|
if (ACPI_SUCCESS(status)) {
|
|
|
|
out_values[i] = (u8)obj_desc->integer.value;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/* Delete the return object */
|
|
|
|
|
2005-08-05 04:44:28 +00:00
|
|
|
acpi_ut_remove_reference(obj_desc);
|
2009-06-29 05:39:29 +00:00
|
|
|
final_status = AE_OK; /* At least one value is valid */
|
|
|
|
continue;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
2009-06-29 05:39:29 +00:00
|
|
|
|
|
|
|
out_values[i] = ACPI_UINT8_MAX;
|
|
|
|
if (status == AE_NOT_FOUND) {
|
|
|
|
continue; /* Ignore if not found */
|
|
|
|
}
|
|
|
|
|
|
|
|
ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
|
|
|
|
"Failed %s on Device %4.4s, %s\n",
|
|
|
|
ACPI_CAST_PTR(char, method_names[i]),
|
|
|
|
acpi_ut_get_node_name(device_node),
|
|
|
|
acpi_format_exception(status)));
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2009-06-29 05:39:29 +00:00
|
|
|
return_ACPI_STATUS(final_status);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|