1 // SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0
2 /******************************************************************************
4 * Module Name: nsload - namespace loading/expanding/contracting procedures
6 * Copyright (C) 2000 - 2020, Intel Corp.
8 *****************************************************************************/
10 #include <acpi/acpi.h>
17 #define _COMPONENT ACPI_NAMESPACE
18 ACPI_MODULE_NAME("nsload")
20 /* Local prototypes */
21 #ifdef ACPI_FUTURE_IMPLEMENTATION
22 acpi_status
acpi_ns_unload_namespace(acpi_handle handle
);
24 static acpi_status
acpi_ns_delete_subtree(acpi_handle start_handle
);
27 /*******************************************************************************
29 * FUNCTION: acpi_ns_load_table
31 * PARAMETERS: table_index - Index for table to be loaded
32 * node - Owning NS node
36 * DESCRIPTION: Load one ACPI table into the namespace
38 ******************************************************************************/
41 acpi_ns_load_table(u32 table_index
, struct acpi_namespace_node
*node
)
45 ACPI_FUNCTION_TRACE(ns_load_table
);
47 /* If table already loaded into namespace, just return */
49 if (acpi_tb_is_table_loaded(table_index
)) {
50 status
= AE_ALREADY_EXISTS
;
54 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
55 "**** Loading table into namespace ****\n"));
57 status
= acpi_tb_allocate_owner_id(table_index
);
58 if (ACPI_FAILURE(status
)) {
63 * Parse the table and load the namespace with all named
64 * objects found within. Control methods are NOT parsed
65 * at this time. In fact, the control methods cannot be
66 * parsed until the entire namespace is loaded, because
67 * if a control method makes a forward reference (call)
68 * to another control method, we can't continue parsing
69 * because we don't know how many arguments to parse next!
71 status
= acpi_ns_parse_table(table_index
, node
);
72 if (ACPI_SUCCESS(status
)) {
73 acpi_tb_set_table_loaded_flag(table_index
, TRUE
);
76 * On error, delete any namespace objects created by this table.
77 * We cannot initialize these objects, so delete them. There are
78 * a couple of especially bad cases:
79 * AE_ALREADY_EXISTS - namespace collision.
80 * AE_NOT_FOUND - the target of a Scope operator does not
81 * exist. This target of Scope must already exist in the
82 * namespace, as per the ACPI specification.
84 acpi_ns_delete_namespace_by_owner(acpi_gbl_root_table_list
.
85 tables
[table_index
].owner_id
);
87 acpi_tb_release_owner_id(table_index
);
88 return_ACPI_STATUS(status
);
92 if (ACPI_FAILURE(status
)) {
93 return_ACPI_STATUS(status
);
97 * Now we can parse the control methods. We always parse
98 * them here for a sanity check, and if configured for
99 * just-in-time parsing, we delete the control method
102 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
103 "**** Begin Table Object Initialization\n"));
105 acpi_ex_enter_interpreter();
106 status
= acpi_ds_initialize_objects(table_index
, node
);
107 acpi_ex_exit_interpreter();
109 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
110 "**** Completed Table Object Initialization\n"));
112 return_ACPI_STATUS(status
);
115 #ifdef ACPI_OBSOLETE_FUNCTIONS
116 /*******************************************************************************
118 * FUNCTION: acpi_load_namespace
124 * DESCRIPTION: Load the name space from what ever is pointed to by DSDT.
125 * (DSDT points to either the BIOS or a buffer.)
127 ******************************************************************************/
129 acpi_status
acpi_ns_load_namespace(void)
133 ACPI_FUNCTION_TRACE(acpi_load_name_space
);
135 /* There must be at least a DSDT installed */
137 if (acpi_gbl_DSDT
== NULL
) {
138 ACPI_ERROR((AE_INFO
, "DSDT is not in memory"));
139 return_ACPI_STATUS(AE_NO_ACPI_TABLES
);
143 * Load the namespace. The DSDT is required,
144 * but the SSDT and PSDT tables are optional.
146 status
= acpi_ns_load_table_by_type(ACPI_TABLE_ID_DSDT
);
147 if (ACPI_FAILURE(status
)) {
148 return_ACPI_STATUS(status
);
151 /* Ignore exceptions from these */
153 (void)acpi_ns_load_table_by_type(ACPI_TABLE_ID_SSDT
);
154 (void)acpi_ns_load_table_by_type(ACPI_TABLE_ID_PSDT
);
156 ACPI_DEBUG_PRINT_RAW((ACPI_DB_INIT
,
157 "ACPI Namespace successfully loaded at root %p\n",
158 acpi_gbl_root_node
));
160 return_ACPI_STATUS(status
);
164 #ifdef ACPI_FUTURE_IMPLEMENTATION
165 /*******************************************************************************
167 * FUNCTION: acpi_ns_delete_subtree
169 * PARAMETERS: start_handle - Handle in namespace where search begins
173 * DESCRIPTION: Walks the namespace starting at the given handle and deletes
174 * all objects, entries, and scopes in the entire subtree.
176 * Namespace/Interpreter should be locked or the subsystem should
177 * be in shutdown before this routine is called.
179 ******************************************************************************/
181 static acpi_status
acpi_ns_delete_subtree(acpi_handle start_handle
)
184 acpi_handle child_handle
;
185 acpi_handle parent_handle
;
186 acpi_handle next_child_handle
;
190 ACPI_FUNCTION_TRACE(ns_delete_subtree
);
192 parent_handle
= start_handle
;
197 * Traverse the tree of objects until we bubble back up
198 * to where we started.
202 /* Attempt to get the next object in this scope */
204 status
= acpi_get_next_object(ACPI_TYPE_ANY
, parent_handle
,
205 child_handle
, &next_child_handle
);
207 child_handle
= next_child_handle
;
209 /* Did we get a new object? */
211 if (ACPI_SUCCESS(status
)) {
213 /* Check if this object has any children */
216 (acpi_get_next_object
217 (ACPI_TYPE_ANY
, child_handle
, NULL
, &dummy
))) {
219 * There is at least one child of this object,
223 parent_handle
= child_handle
;
228 * No more children in this object, go back up to
229 * the object's parent
233 /* Delete all children now */
235 acpi_ns_delete_children(child_handle
);
237 child_handle
= parent_handle
;
238 status
= acpi_get_parent(parent_handle
, &parent_handle
);
239 if (ACPI_FAILURE(status
)) {
240 return_ACPI_STATUS(status
);
245 /* Now delete the starting object, and we are done */
247 acpi_ns_remove_node(child_handle
);
248 return_ACPI_STATUS(AE_OK
);
251 /*******************************************************************************
253 * FUNCTION: acpi_ns_unload_name_space
255 * PARAMETERS: handle - Root of namespace subtree to be deleted
259 * DESCRIPTION: Shrinks the namespace, typically in response to an undocking
260 * event. Deletes an entire subtree starting from (and
261 * including) the given handle.
263 ******************************************************************************/
265 acpi_status
acpi_ns_unload_namespace(acpi_handle handle
)
269 ACPI_FUNCTION_TRACE(ns_unload_name_space
);
271 /* Parameter validation */
273 if (!acpi_gbl_root_node
) {
274 return_ACPI_STATUS(AE_NO_NAMESPACE
);
278 return_ACPI_STATUS(AE_BAD_PARAMETER
);
281 /* This function does the real work */
283 status
= acpi_ns_delete_subtree(handle
);
284 return_ACPI_STATUS(status
);