blob: 334d3c5ba617dc23a46198bdd3ccaafe9b12223f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/******************************************************************************
2 *
3 * Module Name: nsload - namespace loading/expanding/contracting procedures
4 *
5 *****************************************************************************/
6
7/*
Bob Moorec8100dc2016-01-15 08:17:03 +08008 * Copyright (C) 2000 - 2016, Intel Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * All rights reserved.
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions, and the following disclaimer,
16 * without modification.
17 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
18 * substantially similar to the "NO WARRANTY" disclaimer below
19 * ("Disclaimer") and any redistribution must be conditioned upon
20 * including a substantially similar Disclaimer requirement for further
21 * binary redistribution.
22 * 3. Neither the names of the above-listed copyright holders nor the names
23 * of any contributors may be used to endorse or promote products derived
24 * from this software without specific prior written permission.
25 *
26 * Alternatively, this software may be distributed under the terms of the
27 * GNU General Public License ("GPL") version 2 as published by the Free
28 * Software Foundation.
29 *
30 * NO WARRANTY
31 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
32 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
33 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
34 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
35 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
36 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
37 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
38 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
39 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
40 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
41 * POSSIBILITY OF SUCH DAMAGES.
42 */
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <acpi/acpi.h>
Len Browne2f7a772009-01-09 00:30:03 -050045#include "accommon.h"
46#include "acnamesp.h"
47#include "acdispat.h"
48#include "actables.h"
Lv Zheng74f51b82016-09-07 14:07:10 +080049#include "acinterp.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#define _COMPONENT ACPI_NAMESPACE
Len Brown4be44fc2005-08-05 00:44:28 -040052ACPI_MODULE_NAME("nsload")
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Robert Moore44f6c012005-04-18 22:49:35 -040054/* Local prototypes */
Robert Moore44f6c012005-04-18 22:49:35 -040055#ifdef ACPI_FUTURE_IMPLEMENTATION
Len Brown4be44fc2005-08-05 00:44:28 -040056acpi_status acpi_ns_unload_namespace(acpi_handle handle);
Robert Moore44f6c012005-04-18 22:49:35 -040057
Len Brown4be44fc2005-08-05 00:44:28 -040058static acpi_status acpi_ns_delete_subtree(acpi_handle start_handle);
Robert Moore44f6c012005-04-18 22:49:35 -040059#endif
60
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#ifndef ACPI_NO_METHOD_EXECUTION
Linus Torvalds1da177e2005-04-16 15:20:36 -070062/*******************************************************************************
63 *
64 * FUNCTION: acpi_ns_load_table
65 *
Bob Mooref3d2e782007-02-02 19:48:18 +030066 * PARAMETERS: table_index - Index for table to be loaded
Bob Mooreba494be2012-07-12 09:40:10 +080067 * node - Owning NS node
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 *
69 * RETURN: Status
70 *
71 * DESCRIPTION: Load one ACPI table into the namespace
72 *
73 ******************************************************************************/
74
75acpi_status
Bob Moore67a119f2008-06-10 13:42:13 +080076acpi_ns_load_table(u32 table_index, struct acpi_namespace_node *node)
Linus Torvalds1da177e2005-04-16 15:20:36 -070077{
Len Brown4be44fc2005-08-05 00:44:28 -040078 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
Bob Mooreb229cf92006-04-21 17:15:00 -040080 ACPI_FUNCTION_TRACE(ns_load_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
Bob Mooref3d2e782007-02-02 19:48:18 +030082 /* If table already loaded into namespace, just return */
83
84 if (acpi_tb_is_table_loaded(table_index)) {
85 status = AE_ALREADY_EXISTS;
86 goto unlock;
87 }
88
89 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
90 "**** Loading table into namespace ****\n"));
91
92 status = acpi_tb_allocate_owner_id(table_index);
93 if (ACPI_FAILURE(status)) {
94 goto unlock;
95 }
96
Lv Zheng74f51b82016-09-07 14:07:10 +080097 /*
98 * Parse the table and load the namespace with all named
99 * objects found within. Control methods are NOT parsed
100 * at this time. In fact, the control methods cannot be
101 * parsed until the entire namespace is loaded, because
102 * if a control method makes a forward reference (call)
103 * to another control method, we can't continue parsing
104 * because we don't know how many arguments to parse next!
105 */
Bob Moore7f4ac9f2008-04-10 19:06:39 +0400106 status = acpi_ns_parse_table(table_index, node);
Bob Mooref3d2e782007-02-02 19:48:18 +0300107 if (ACPI_SUCCESS(status)) {
108 acpi_tb_set_table_loaded_flag(table_index, TRUE);
109 } else {
Bob Moore4712f712015-08-25 10:28:26 +0800110 /*
111 * On error, delete any namespace objects created by this table.
112 * We cannot initialize these objects, so delete them. There are
113 * a couple of expecially bad cases:
114 * AE_ALREADY_EXISTS - namespace collision.
115 * AE_NOT_FOUND - the target of a Scope operator does not
116 * exist. This target of Scope must already exist in the
117 * namespace, as per the ACPI specification.
118 */
Bob Moore4712f712015-08-25 10:28:26 +0800119 acpi_ns_delete_namespace_by_owner(acpi_gbl_root_table_list.
120 tables[table_index].owner_id);
Bob Moore4712f712015-08-25 10:28:26 +0800121
Lv Zheng80b28812016-03-24 09:38:28 +0800122 acpi_tb_release_owner_id(table_index);
Bob Moore4712f712015-08-25 10:28:26 +0800123 return_ACPI_STATUS(status);
Bob Mooref3d2e782007-02-02 19:48:18 +0300124 }
125
Lv Zheng10622bf2013-10-29 09:30:02 +0800126unlock:
Len Brown4be44fc2005-08-05 00:44:28 -0400127 if (ACPI_FAILURE(status)) {
128 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 }
130
131 /*
Bob Moore73a30902012-10-31 02:26:55 +0000132 * Now we can parse the control methods. We always parse
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 * them here for a sanity check, and if configured for
134 * just-in-time parsing, we delete the control method
135 * parse trees.
136 */
Len Brown4be44fc2005-08-05 00:44:28 -0400137 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Bob Moore22b5afc2014-03-24 14:49:00 +0800138 "**** Begin Table Object Initialization\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
Bob Mooref3d2e782007-02-02 19:48:18 +0300140 status = acpi_ds_initialize_objects(table_index, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
Len Brown4be44fc2005-08-05 00:44:28 -0400142 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Bob Moore22b5afc2014-03-24 14:49:00 +0800143 "**** Completed Table Object Initialization\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
Bob Moore2785ce82015-12-29 14:04:19 +0800145 /*
146 * Execute any module-level code that was detected during the table load
147 * phase. Although illegal since ACPI 2.0, there are many machines that
148 * contain this type of code. Each block of detected executable AML code
149 * outside of any control method is wrapped with a temporary control
150 * method object and placed on a global list. The methods on this list
151 * are executed below.
152 *
153 * This case executes the module-level code for each table immediately
154 * after the table has been loaded. This provides compatibility with
155 * other ACPI implementations. Optionally, the execution can be deferred
156 * until later, see acpi_initialize_objects.
157 */
Lv Zhengde56ba92016-09-07 14:06:54 +0800158 if (!acpi_gbl_parse_table_as_term_list
159 && !acpi_gbl_group_module_level_code) {
Bob Moore2785ce82015-12-29 14:04:19 +0800160 acpi_ns_exec_module_code_list();
161 }
162
Len Brown4be44fc2005-08-05 00:44:28 -0400163 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164}
165
Bob Mooref3d2e782007-02-02 19:48:18 +0300166#ifdef ACPI_OBSOLETE_FUNCTIONS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167/*******************************************************************************
168 *
169 * FUNCTION: acpi_load_namespace
170 *
171 * PARAMETERS: None
172 *
173 * RETURN: Status
174 *
175 * DESCRIPTION: Load the name space from what ever is pointed to by DSDT.
176 * (DSDT points to either the BIOS or a buffer.)
177 *
178 ******************************************************************************/
179
Len Brown4be44fc2005-08-05 00:44:28 -0400180acpi_status acpi_ns_load_namespace(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181{
Len Brown4be44fc2005-08-05 00:44:28 -0400182 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
Bob Mooreb229cf92006-04-21 17:15:00 -0400184 ACPI_FUNCTION_TRACE(acpi_load_name_space);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
186 /* There must be at least a DSDT installed */
187
188 if (acpi_gbl_DSDT == NULL) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500189 ACPI_ERROR((AE_INFO, "DSDT is not in memory"));
Len Brown4be44fc2005-08-05 00:44:28 -0400190 return_ACPI_STATUS(AE_NO_ACPI_TABLES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 }
192
193 /*
Bob Moore73a30902012-10-31 02:26:55 +0000194 * Load the namespace. The DSDT is required,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 * but the SSDT and PSDT tables are optional.
196 */
Bob Mooreb229cf92006-04-21 17:15:00 -0400197 status = acpi_ns_load_table_by_type(ACPI_TABLE_ID_DSDT);
Len Brown4be44fc2005-08-05 00:44:28 -0400198 if (ACPI_FAILURE(status)) {
199 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 }
201
202 /* Ignore exceptions from these */
203
Bob Mooreb229cf92006-04-21 17:15:00 -0400204 (void)acpi_ns_load_table_by_type(ACPI_TABLE_ID_SSDT);
205 (void)acpi_ns_load_table_by_type(ACPI_TABLE_ID_PSDT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
Len Brown4be44fc2005-08-05 00:44:28 -0400207 ACPI_DEBUG_PRINT_RAW((ACPI_DB_INIT,
208 "ACPI Namespace successfully loaded at root %p\n",
209 acpi_gbl_root_node));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
Len Brown4be44fc2005-08-05 00:44:28 -0400211 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212}
Bob Mooref3d2e782007-02-02 19:48:18 +0300213#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
Robert Moore44f6c012005-04-18 22:49:35 -0400215#ifdef ACPI_FUTURE_IMPLEMENTATION
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216/*******************************************************************************
217 *
218 * FUNCTION: acpi_ns_delete_subtree
219 *
220 * PARAMETERS: start_handle - Handle in namespace where search begins
221 *
222 * RETURNS Status
223 *
224 * DESCRIPTION: Walks the namespace starting at the given handle and deletes
225 * all objects, entries, and scopes in the entire subtree.
226 *
227 * Namespace/Interpreter should be locked or the subsystem should
228 * be in shutdown before this routine is called.
229 *
230 ******************************************************************************/
231
Len Brown4be44fc2005-08-05 00:44:28 -0400232static acpi_status acpi_ns_delete_subtree(acpi_handle start_handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233{
Len Brown4be44fc2005-08-05 00:44:28 -0400234 acpi_status status;
235 acpi_handle child_handle;
236 acpi_handle parent_handle;
237 acpi_handle next_child_handle;
238 acpi_handle dummy;
239 u32 level;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
Bob Mooreb229cf92006-04-21 17:15:00 -0400241 ACPI_FUNCTION_TRACE(ns_delete_subtree);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
243 parent_handle = start_handle;
244 child_handle = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400245 level = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
247 /*
248 * Traverse the tree of objects until we bubble back up
249 * to where we started.
250 */
251 while (level > 0) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400252
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 /* Attempt to get the next object in this scope */
254
Len Brown4be44fc2005-08-05 00:44:28 -0400255 status = acpi_get_next_object(ACPI_TYPE_ANY, parent_handle,
256 child_handle, &next_child_handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
258 child_handle = next_child_handle;
259
260 /* Did we get a new object? */
261
Len Brown4be44fc2005-08-05 00:44:28 -0400262 if (ACPI_SUCCESS(status)) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400263
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 /* Check if this object has any children */
265
Len Brown4be44fc2005-08-05 00:44:28 -0400266 if (ACPI_SUCCESS
267 (acpi_get_next_object
268 (ACPI_TYPE_ANY, child_handle, NULL, &dummy))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 /*
270 * There is at least one child of this object,
271 * visit the object
272 */
273 level++;
274 parent_handle = child_handle;
275 child_handle = NULL;
276 }
Len Brown4be44fc2005-08-05 00:44:28 -0400277 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 /*
279 * No more children in this object, go back up to
280 * the object's parent
281 */
282 level--;
283
284 /* Delete all children now */
285
Len Brown4be44fc2005-08-05 00:44:28 -0400286 acpi_ns_delete_children(child_handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
288 child_handle = parent_handle;
Len Brown4be44fc2005-08-05 00:44:28 -0400289 status = acpi_get_parent(parent_handle, &parent_handle);
290 if (ACPI_FAILURE(status)) {
291 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 }
293 }
294 }
295
296 /* Now delete the starting object, and we are done */
297
Bob Moore8e4319c2009-06-29 13:43:27 +0800298 acpi_ns_remove_node(child_handle);
Len Brown4be44fc2005-08-05 00:44:28 -0400299 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300}
301
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302/*******************************************************************************
303 *
304 * FUNCTION: acpi_ns_unload_name_space
305 *
Bob Mooreba494be2012-07-12 09:40:10 +0800306 * PARAMETERS: handle - Root of namespace subtree to be deleted
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 *
308 * RETURN: Status
309 *
310 * DESCRIPTION: Shrinks the namespace, typically in response to an undocking
Bob Moore73a30902012-10-31 02:26:55 +0000311 * event. Deletes an entire subtree starting from (and
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 * including) the given handle.
313 *
314 ******************************************************************************/
315
Len Brown4be44fc2005-08-05 00:44:28 -0400316acpi_status acpi_ns_unload_namespace(acpi_handle handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317{
Len Brown4be44fc2005-08-05 00:44:28 -0400318 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
Bob Mooreb229cf92006-04-21 17:15:00 -0400320 ACPI_FUNCTION_TRACE(ns_unload_name_space);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
322 /* Parameter validation */
323
324 if (!acpi_gbl_root_node) {
Len Brown4be44fc2005-08-05 00:44:28 -0400325 return_ACPI_STATUS(AE_NO_NAMESPACE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 }
327
328 if (!handle) {
Len Brown4be44fc2005-08-05 00:44:28 -0400329 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 }
331
332 /* This function does the real work */
333
Len Brown4be44fc2005-08-05 00:44:28 -0400334 status = acpi_ns_delete_subtree(handle);
Len Brown4be44fc2005-08-05 00:44:28 -0400335 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336}
Robert Moore44f6c012005-04-18 22:49:35 -0400337#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338#endif