blob: 14ab83668207eb389b7edfe6860a472c5a6007ad [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/*
David E. Box82a80942015-02-05 15:20:45 +08008 * Copyright (C) 2000 - 2015, 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"
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#define _COMPONENT ACPI_NAMESPACE
Len Brown4be44fc2005-08-05 00:44:28 -040051ACPI_MODULE_NAME("nsload")
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Robert Moore44f6c012005-04-18 22:49:35 -040053/* Local prototypes */
Robert Moore44f6c012005-04-18 22:49:35 -040054#ifdef ACPI_FUTURE_IMPLEMENTATION
Len Brown4be44fc2005-08-05 00:44:28 -040055acpi_status acpi_ns_unload_namespace(acpi_handle handle);
Robert Moore44f6c012005-04-18 22:49:35 -040056
Len Brown4be44fc2005-08-05 00:44:28 -040057static acpi_status acpi_ns_delete_subtree(acpi_handle start_handle);
Robert Moore44f6c012005-04-18 22:49:35 -040058#endif
59
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#ifndef ACPI_NO_METHOD_EXECUTION
Linus Torvalds1da177e2005-04-16 15:20:36 -070061/*******************************************************************************
62 *
63 * FUNCTION: acpi_ns_load_table
64 *
Bob Mooref3d2e782007-02-02 19:48:18 +030065 * PARAMETERS: table_index - Index for table to be loaded
Bob Mooreba494be2012-07-12 09:40:10 +080066 * node - Owning NS node
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 *
68 * RETURN: Status
69 *
70 * DESCRIPTION: Load one ACPI table into the namespace
71 *
72 ******************************************************************************/
73
74acpi_status
Bob Moore67a119f2008-06-10 13:42:13 +080075acpi_ns_load_table(u32 table_index, struct acpi_namespace_node *node)
Linus Torvalds1da177e2005-04-16 15:20:36 -070076{
Len Brown4be44fc2005-08-05 00:44:28 -040077 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
Bob Mooreb229cf92006-04-21 17:15:00 -040079 ACPI_FUNCTION_TRACE(ns_load_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 /*
82 * Parse the table and load the namespace with all named
Bob Moore73a30902012-10-31 02:26:55 +000083 * objects found within. Control methods are NOT parsed
84 * at this time. In fact, the control methods cannot be
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 * parsed until the entire namespace is loaded, because
86 * if a control method makes a forward reference (call)
87 * to another control method, we can't continue parsing
88 * because we don't know how many arguments to parse next!
89 */
Len Brown4be44fc2005-08-05 00:44:28 -040090 status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE);
91 if (ACPI_FAILURE(status)) {
92 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 }
94
Bob Mooref3d2e782007-02-02 19:48:18 +030095 /* If table already loaded into namespace, just return */
96
97 if (acpi_tb_is_table_loaded(table_index)) {
98 status = AE_ALREADY_EXISTS;
99 goto unlock;
100 }
101
102 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
103 "**** Loading table into namespace ****\n"));
104
105 status = acpi_tb_allocate_owner_id(table_index);
106 if (ACPI_FAILURE(status)) {
107 goto unlock;
108 }
109
Bob Moore7f4ac9f2008-04-10 19:06:39 +0400110 status = acpi_ns_parse_table(table_index, node);
Bob Mooref3d2e782007-02-02 19:48:18 +0300111 if (ACPI_SUCCESS(status)) {
112 acpi_tb_set_table_loaded_flag(table_index, TRUE);
113 } else {
Bob Moore4712f712015-08-25 10:28:26 +0800114 /*
115 * On error, delete any namespace objects created by this table.
116 * We cannot initialize these objects, so delete them. There are
117 * a couple of expecially bad cases:
118 * AE_ALREADY_EXISTS - namespace collision.
119 * AE_NOT_FOUND - the target of a Scope operator does not
120 * exist. This target of Scope must already exist in the
121 * namespace, as per the ACPI specification.
122 */
123 (void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
124 acpi_ns_delete_namespace_by_owner(acpi_gbl_root_table_list.
125 tables[table_index].owner_id);
126 acpi_tb_release_owner_id(table_index);
127
128 return_ACPI_STATUS(status);
Bob Mooref3d2e782007-02-02 19:48:18 +0300129 }
130
Lv Zheng10622bf2013-10-29 09:30:02 +0800131unlock:
Len Brown4be44fc2005-08-05 00:44:28 -0400132 (void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
Len Brown4be44fc2005-08-05 00:44:28 -0400134 if (ACPI_FAILURE(status)) {
135 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 }
137
138 /*
Bob Moore73a30902012-10-31 02:26:55 +0000139 * Now we can parse the control methods. We always parse
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 * them here for a sanity check, and if configured for
141 * just-in-time parsing, we delete the control method
142 * parse trees.
143 */
Len Brown4be44fc2005-08-05 00:44:28 -0400144 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Bob Moore22b5afc2014-03-24 14:49:00 +0800145 "**** Begin Table Object Initialization\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
Bob Mooref3d2e782007-02-02 19:48:18 +0300147 status = acpi_ds_initialize_objects(table_index, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Len Brown4be44fc2005-08-05 00:44:28 -0400149 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Bob Moore22b5afc2014-03-24 14:49:00 +0800150 "**** Completed Table Object Initialization\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
Len Brown4be44fc2005-08-05 00:44:28 -0400152 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153}
154
Bob Mooref3d2e782007-02-02 19:48:18 +0300155#ifdef ACPI_OBSOLETE_FUNCTIONS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156/*******************************************************************************
157 *
158 * FUNCTION: acpi_load_namespace
159 *
160 * PARAMETERS: None
161 *
162 * RETURN: Status
163 *
164 * DESCRIPTION: Load the name space from what ever is pointed to by DSDT.
165 * (DSDT points to either the BIOS or a buffer.)
166 *
167 ******************************************************************************/
168
Len Brown4be44fc2005-08-05 00:44:28 -0400169acpi_status acpi_ns_load_namespace(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170{
Len Brown4be44fc2005-08-05 00:44:28 -0400171 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
Bob Mooreb229cf92006-04-21 17:15:00 -0400173 ACPI_FUNCTION_TRACE(acpi_load_name_space);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
175 /* There must be at least a DSDT installed */
176
177 if (acpi_gbl_DSDT == NULL) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500178 ACPI_ERROR((AE_INFO, "DSDT is not in memory"));
Len Brown4be44fc2005-08-05 00:44:28 -0400179 return_ACPI_STATUS(AE_NO_ACPI_TABLES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 }
181
182 /*
Bob Moore73a30902012-10-31 02:26:55 +0000183 * Load the namespace. The DSDT is required,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 * but the SSDT and PSDT tables are optional.
185 */
Bob Mooreb229cf92006-04-21 17:15:00 -0400186 status = acpi_ns_load_table_by_type(ACPI_TABLE_ID_DSDT);
Len Brown4be44fc2005-08-05 00:44:28 -0400187 if (ACPI_FAILURE(status)) {
188 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 }
190
191 /* Ignore exceptions from these */
192
Bob Mooreb229cf92006-04-21 17:15:00 -0400193 (void)acpi_ns_load_table_by_type(ACPI_TABLE_ID_SSDT);
194 (void)acpi_ns_load_table_by_type(ACPI_TABLE_ID_PSDT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
Len Brown4be44fc2005-08-05 00:44:28 -0400196 ACPI_DEBUG_PRINT_RAW((ACPI_DB_INIT,
197 "ACPI Namespace successfully loaded at root %p\n",
198 acpi_gbl_root_node));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
Len Brown4be44fc2005-08-05 00:44:28 -0400200 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201}
Bob Mooref3d2e782007-02-02 19:48:18 +0300202#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
Robert Moore44f6c012005-04-18 22:49:35 -0400204#ifdef ACPI_FUTURE_IMPLEMENTATION
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205/*******************************************************************************
206 *
207 * FUNCTION: acpi_ns_delete_subtree
208 *
209 * PARAMETERS: start_handle - Handle in namespace where search begins
210 *
211 * RETURNS Status
212 *
213 * DESCRIPTION: Walks the namespace starting at the given handle and deletes
214 * all objects, entries, and scopes in the entire subtree.
215 *
216 * Namespace/Interpreter should be locked or the subsystem should
217 * be in shutdown before this routine is called.
218 *
219 ******************************************************************************/
220
Len Brown4be44fc2005-08-05 00:44:28 -0400221static acpi_status acpi_ns_delete_subtree(acpi_handle start_handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222{
Len Brown4be44fc2005-08-05 00:44:28 -0400223 acpi_status status;
224 acpi_handle child_handle;
225 acpi_handle parent_handle;
226 acpi_handle next_child_handle;
227 acpi_handle dummy;
228 u32 level;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
Bob Mooreb229cf92006-04-21 17:15:00 -0400230 ACPI_FUNCTION_TRACE(ns_delete_subtree);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
232 parent_handle = start_handle;
233 child_handle = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400234 level = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
236 /*
237 * Traverse the tree of objects until we bubble back up
238 * to where we started.
239 */
240 while (level > 0) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400241
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 /* Attempt to get the next object in this scope */
243
Len Brown4be44fc2005-08-05 00:44:28 -0400244 status = acpi_get_next_object(ACPI_TYPE_ANY, parent_handle,
245 child_handle, &next_child_handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
247 child_handle = next_child_handle;
248
249 /* Did we get a new object? */
250
Len Brown4be44fc2005-08-05 00:44:28 -0400251 if (ACPI_SUCCESS(status)) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400252
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 /* Check if this object has any children */
254
Len Brown4be44fc2005-08-05 00:44:28 -0400255 if (ACPI_SUCCESS
256 (acpi_get_next_object
257 (ACPI_TYPE_ANY, child_handle, NULL, &dummy))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 /*
259 * There is at least one child of this object,
260 * visit the object
261 */
262 level++;
263 parent_handle = child_handle;
264 child_handle = NULL;
265 }
Len Brown4be44fc2005-08-05 00:44:28 -0400266 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 /*
268 * No more children in this object, go back up to
269 * the object's parent
270 */
271 level--;
272
273 /* Delete all children now */
274
Len Brown4be44fc2005-08-05 00:44:28 -0400275 acpi_ns_delete_children(child_handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
277 child_handle = parent_handle;
Len Brown4be44fc2005-08-05 00:44:28 -0400278 status = acpi_get_parent(parent_handle, &parent_handle);
279 if (ACPI_FAILURE(status)) {
280 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 }
282 }
283 }
284
285 /* Now delete the starting object, and we are done */
286
Bob Moore8e4319c2009-06-29 13:43:27 +0800287 acpi_ns_remove_node(child_handle);
Len Brown4be44fc2005-08-05 00:44:28 -0400288 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289}
290
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291/*******************************************************************************
292 *
293 * FUNCTION: acpi_ns_unload_name_space
294 *
Bob Mooreba494be2012-07-12 09:40:10 +0800295 * PARAMETERS: handle - Root of namespace subtree to be deleted
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 *
297 * RETURN: Status
298 *
299 * DESCRIPTION: Shrinks the namespace, typically in response to an undocking
Bob Moore73a30902012-10-31 02:26:55 +0000300 * event. Deletes an entire subtree starting from (and
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 * including) the given handle.
302 *
303 ******************************************************************************/
304
Len Brown4be44fc2005-08-05 00:44:28 -0400305acpi_status acpi_ns_unload_namespace(acpi_handle handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306{
Len Brown4be44fc2005-08-05 00:44:28 -0400307 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
Bob Mooreb229cf92006-04-21 17:15:00 -0400309 ACPI_FUNCTION_TRACE(ns_unload_name_space);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
311 /* Parameter validation */
312
313 if (!acpi_gbl_root_node) {
Len Brown4be44fc2005-08-05 00:44:28 -0400314 return_ACPI_STATUS(AE_NO_NAMESPACE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 }
316
317 if (!handle) {
Len Brown4be44fc2005-08-05 00:44:28 -0400318 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 }
320
321 /* This function does the real work */
322
Len Brown4be44fc2005-08-05 00:44:28 -0400323 status = acpi_ns_delete_subtree(handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
Len Brown4be44fc2005-08-05 00:44:28 -0400325 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326}
Robert Moore44f6c012005-04-18 22:49:35 -0400327#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328#endif