2018-03-15 02:13:07 +03:00
|
|
|
// SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0
|
2005-04-17 02:20:36 +04:00
|
|
|
/******************************************************************************
|
|
|
|
*
|
|
|
|
* Module Name: dsinit - Object initialization namespace walk
|
|
|
|
*
|
2021-01-15 21:48:25 +03:00
|
|
|
* Copyright (C) 2000 - 2021, Intel Corp.
|
2005-04-17 02:20:36 +04:00
|
|
|
*
|
2018-03-15 02:13:07 +03:00
|
|
|
*****************************************************************************/
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
#include <acpi/acpi.h>
|
2009-01-09 08:30:03 +03:00
|
|
|
#include "accommon.h"
|
|
|
|
#include "acdispat.h"
|
|
|
|
#include "acnamesp.h"
|
|
|
|
#include "actables.h"
|
2016-10-26 10:42:01 +03:00
|
|
|
#include "acinterp.h"
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
#define _COMPONENT ACPI_DISPATCHER
|
2005-08-05 08:44:28 +04:00
|
|
|
ACPI_MODULE_NAME("dsinit")
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2005-04-19 06:49:35 +04:00
|
|
|
/* Local prototypes */
|
|
|
|
static acpi_status
|
2005-08-05 08:44:28 +04:00
|
|
|
acpi_ds_init_one_object(acpi_handle obj_handle,
|
|
|
|
u32 level, void *context, void **return_value);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ds_init_one_object
|
|
|
|
*
|
2005-04-19 06:49:35 +04:00
|
|
|
* PARAMETERS: obj_handle - Node for the object
|
2012-07-12 05:40:10 +04:00
|
|
|
* level - Current nesting level
|
|
|
|
* context - Points to a init info struct
|
2005-04-17 02:20:36 +04:00
|
|
|
* return_value - Not used
|
|
|
|
*
|
|
|
|
* RETURN: Status
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Callback from acpi_walk_namespace. Invoked for every object
|
|
|
|
* within the namespace.
|
|
|
|
*
|
|
|
|
* Currently, the only objects that require initialization are:
|
|
|
|
* 1) Methods
|
|
|
|
* 2) Operation Regions
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2005-04-19 06:49:35 +04:00
|
|
|
static acpi_status
|
2005-08-05 08:44:28 +04:00
|
|
|
acpi_ds_init_one_object(acpi_handle obj_handle,
|
|
|
|
u32 level, void *context, void **return_value)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
2005-08-05 08:44:28 +04:00
|
|
|
struct acpi_init_walk_info *info =
|
|
|
|
(struct acpi_init_walk_info *)context;
|
|
|
|
struct acpi_namespace_node *node =
|
|
|
|
(struct acpi_namespace_node *)obj_handle;
|
|
|
|
acpi_status status;
|
2014-03-24 10:49:00 +04:00
|
|
|
union acpi_operand_object *obj_desc;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2006-01-14 00:22:00 +03:00
|
|
|
ACPI_FUNCTION_ENTRY();
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
/*
|
2005-07-30 02:15:00 +04:00
|
|
|
* We are only interested in NS nodes owned by the table that
|
2005-04-17 02:20:36 +04:00
|
|
|
* was just loaded
|
|
|
|
*/
|
2007-02-02 19:48:18 +03:00
|
|
|
if (node->owner_id != info->owner_id) {
|
2005-04-17 02:20:36 +04:00
|
|
|
return (AE_OK);
|
|
|
|
}
|
|
|
|
|
|
|
|
info->object_count++;
|
|
|
|
|
|
|
|
/* And even then, we are only interested in a few object types */
|
|
|
|
|
2014-03-24 10:49:00 +04:00
|
|
|
switch (acpi_ns_get_type(obj_handle)) {
|
2005-04-17 02:20:36 +04:00
|
|
|
case ACPI_TYPE_REGION:
|
|
|
|
|
2005-08-05 08:44:28 +04:00
|
|
|
status = acpi_ds_initialize_region(obj_handle);
|
|
|
|
if (ACPI_FAILURE(status)) {
|
2006-01-28 00:43:00 +03:00
|
|
|
ACPI_EXCEPTION((AE_INFO, status,
|
|
|
|
"During Region initialization %p [%4.4s]",
|
|
|
|
obj_handle,
|
|
|
|
acpi_ut_get_node_name(obj_handle)));
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
info->op_region_count++;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_TYPE_METHOD:
|
2014-03-24 10:49:00 +04:00
|
|
|
/*
|
|
|
|
* Auto-serialization support. We will examine each method that is
|
|
|
|
* not_serialized to determine if it creates any Named objects. If
|
|
|
|
* it does, it will be marked serialized to prevent problems if
|
|
|
|
* the method is entered by two or more threads and an attempt is
|
|
|
|
* made to create the same named object twice -- which results in
|
|
|
|
* an AE_ALREADY_EXISTS exception and method abort.
|
|
|
|
*/
|
2005-07-30 02:15:00 +04:00
|
|
|
info->method_count++;
|
2014-03-24 10:49:00 +04:00
|
|
|
obj_desc = acpi_ns_get_attached_object(node);
|
|
|
|
if (!obj_desc) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Ignore if already serialized */
|
|
|
|
|
|
|
|
if (obj_desc->method.info_flags & ACPI_METHOD_SERIALIZED) {
|
|
|
|
info->serial_method_count++;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (acpi_gbl_auto_serialize_methods) {
|
|
|
|
|
|
|
|
/* Parse/scan method and serialize it if necessary */
|
|
|
|
|
|
|
|
acpi_ds_auto_serialize_method(node, obj_desc);
|
|
|
|
if (obj_desc->method.
|
|
|
|
info_flags & ACPI_METHOD_SERIALIZED) {
|
|
|
|
|
|
|
|
/* Method was just converted to Serialized */
|
|
|
|
|
|
|
|
info->serial_method_count++;
|
|
|
|
info->serialized_method_count++;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
info->non_serial_method_count++;
|
2005-04-17 02:20:36 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_TYPE_DEVICE:
|
|
|
|
|
|
|
|
info->device_count++;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2013-06-08 04:58:14 +04:00
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* We ignore errors from above, and always return OK, since
|
|
|
|
* we don't want to abort the walk on a single error.
|
|
|
|
*/
|
|
|
|
return (AE_OK);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ds_initialize_objects
|
|
|
|
*
|
|
|
|
* PARAMETERS: table_desc - Descriptor for parent ACPI table
|
|
|
|
* start_node - Root of subtree to be initialized.
|
|
|
|
*
|
|
|
|
* RETURN: Status
|
|
|
|
*
|
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 01:15:00 +04:00
|
|
|
* DESCRIPTION: Walk the namespace starting at "StartNode" and perform any
|
2005-04-17 02:20:36 +04:00
|
|
|
* necessary initialization on the objects found therein
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
acpi_status
|
2008-06-10 09:42:13 +04:00
|
|
|
acpi_ds_initialize_objects(u32 table_index,
|
2016-05-05 07:57:53 +03:00
|
|
|
struct acpi_namespace_node *start_node)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
2005-08-05 08:44:28 +04:00
|
|
|
acpi_status status;
|
|
|
|
struct acpi_init_walk_info info;
|
2007-02-02 19:48:18 +03:00
|
|
|
struct acpi_table_header *table;
|
|
|
|
acpi_owner_id owner_id;
|
2005-04-17 02:20:36 +04: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 01:15:00 +04:00
|
|
|
ACPI_FUNCTION_TRACE(ds_initialize_objects);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2007-02-02 19:48:18 +03:00
|
|
|
status = acpi_tb_get_owner_id(table_index, &owner_id);
|
|
|
|
if (ACPI_FAILURE(status)) {
|
|
|
|
return_ACPI_STATUS(status);
|
|
|
|
}
|
|
|
|
|
2005-08-05 08:44:28 +04:00
|
|
|
ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
|
|
|
|
"**** Starting initialization of namespace objects ****\n"));
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2010-05-26 07:20:47 +04:00
|
|
|
/* Set all init info to zero */
|
|
|
|
|
2015-07-01 09:45:11 +03:00
|
|
|
memset(&info, 0, sizeof(struct acpi_init_walk_info));
|
2010-05-26 07:20:47 +04:00
|
|
|
|
2007-02-02 19:48:18 +03:00
|
|
|
info.owner_id = owner_id;
|
2010-05-26 07:20:47 +04:00
|
|
|
info.table_index = table_index;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
/* Walk entire namespace from the supplied root */
|
|
|
|
|
2009-03-09 11:31:04 +03:00
|
|
|
/*
|
|
|
|
* We don't use acpi_walk_namespace since we do not want to acquire
|
|
|
|
* the namespace reader lock.
|
|
|
|
*/
|
|
|
|
status =
|
|
|
|
acpi_ns_walk_namespace(ACPI_TYPE_ANY, start_node, ACPI_UINT32_MAX,
|
2016-11-30 10:20:59 +03:00
|
|
|
ACPI_NS_WALK_NO_UNLOCK,
|
|
|
|
acpi_ds_init_one_object, NULL, &info, NULL);
|
2005-08-05 08:44:28 +04:00
|
|
|
if (ACPI_FAILURE(status)) {
|
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 01:15:00 +04:00
|
|
|
ACPI_EXCEPTION((AE_INFO, status, "During WalkNamespace"));
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
|
2007-02-02 19:48:18 +03:00
|
|
|
status = acpi_get_table_by_index(table_index, &table);
|
|
|
|
if (ACPI_FAILURE(status)) {
|
|
|
|
return_ACPI_STATUS(status);
|
|
|
|
}
|
|
|
|
|
2015-08-25 05:28:54 +03:00
|
|
|
/* DSDT is always the first AML table */
|
|
|
|
|
2019-04-08 23:42:24 +03:00
|
|
|
if (ACPI_COMPARE_NAMESEG(table->signature, ACPI_SIG_DSDT)) {
|
2015-08-25 05:28:54 +03:00
|
|
|
ACPI_DEBUG_PRINT_RAW((ACPI_DB_INIT,
|
2019-07-03 23:15:38 +03:00
|
|
|
"\nACPI table initialization:\n"));
|
2015-08-25 05:28:54 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Summary of objects initialized */
|
|
|
|
|
2005-08-05 08:44:28 +04:00
|
|
|
ACPI_DEBUG_PRINT_RAW((ACPI_DB_INIT,
|
2015-12-29 08:54:36 +03:00
|
|
|
"Table [%4.4s: %-8.8s] (id %.2X) - %4u Objects with %3u Devices, "
|
2015-08-25 05:29:39 +03:00
|
|
|
"%3u Regions, %4u Methods (%u/%u/%u Serial/Non/Cvt)\n",
|
|
|
|
table->signature, table->oem_table_id, owner_id,
|
|
|
|
info.object_count, info.device_count,
|
|
|
|
info.op_region_count, info.method_count,
|
|
|
|
info.serial_method_count,
|
2014-03-24 10:49:00 +04:00
|
|
|
info.non_serial_method_count,
|
|
|
|
info.serialized_method_count));
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2014-03-24 10:49:00 +04:00
|
|
|
ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH, "%u Methods, %u Regions\n",
|
|
|
|
info.method_count, info.op_region_count));
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2005-08-05 08:44:28 +04:00
|
|
|
return_ACPI_STATUS(AE_OK);
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|