blob: 9ae3cb55979b37c6136c61dd9298c99fa1a592af [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/******************************************************************************
2 *
3 * Module Name: exconfig - Namespace reconfiguration (Load/Unload opcodes)
4 *
5 *****************************************************************************/
6
7/*
Bob Moore4a90c7e2006-01-13 16:22:00 -05008 * Copyright (C) 2000 - 2006, R. Byron Moore
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>
45#include <acpi/acinterp.h>
46#include <acpi/amlcode.h>
47#include <acpi/acnamesp.h>
48#include <acpi/acevents.h>
49#include <acpi/actables.h>
50#include <acpi/acdispat.h>
51
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#define _COMPONENT ACPI_EXECUTER
Len Brown4be44fc2005-08-05 00:44:28 -040053ACPI_MODULE_NAME("exconfig")
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Robert Moore44f6c012005-04-18 22:49:35 -040055/* Local prototypes */
Robert Moore44f6c012005-04-18 22:49:35 -040056static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -040057acpi_ex_add_table(struct acpi_table_header *table,
58 struct acpi_namespace_node *parent_node,
59 union acpi_operand_object **ddb_handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
61/*******************************************************************************
62 *
63 * FUNCTION: acpi_ex_add_table
64 *
65 * PARAMETERS: Table - Pointer to raw table
66 * parent_node - Where to load the table (scope)
67 * ddb_handle - Where to return the table handle.
68 *
69 * RETURN: Status
70 *
71 * DESCRIPTION: Common function to Install and Load an ACPI table with a
72 * returned table handle.
73 *
74 ******************************************************************************/
75
Robert Moore44f6c012005-04-18 22:49:35 -040076static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -040077acpi_ex_add_table(struct acpi_table_header *table,
78 struct acpi_namespace_node *parent_node,
79 union acpi_operand_object **ddb_handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -070080{
Len Brown4be44fc2005-08-05 00:44:28 -040081 acpi_status status;
82 struct acpi_table_desc table_info;
83 union acpi_operand_object *obj_desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
Bob Mooreb229cf92006-04-21 17:15:00 -040085 ACPI_FUNCTION_TRACE(ex_add_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
87 /* Create an object to be the table handle */
88
Len Brown4be44fc2005-08-05 00:44:28 -040089 obj_desc = acpi_ut_create_internal_object(ACPI_TYPE_LOCAL_REFERENCE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 if (!obj_desc) {
Len Brown4be44fc2005-08-05 00:44:28 -040091 return_ACPI_STATUS(AE_NO_MEMORY);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 }
93
Robert Moore0c9938c2005-07-29 15:15:00 -070094 /* Init the table handle */
95
96 obj_desc->reference.opcode = AML_LOAD_OP;
97 *ddb_handle = obj_desc;
98
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 /* Install the new table into the local data structures */
100
Len Brown4be44fc2005-08-05 00:44:28 -0400101 ACPI_MEMSET(&table_info, 0, sizeof(struct acpi_table_desc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Bob Mooreb229cf92006-04-21 17:15:00 -0400103 table_info.type = ACPI_TABLE_ID_SSDT;
Len Brown4be44fc2005-08-05 00:44:28 -0400104 table_info.pointer = table;
105 table_info.length = (acpi_size) table->length;
Robert Moore44f6c012005-04-18 22:49:35 -0400106 table_info.allocation = ACPI_MEM_ALLOCATED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
Len Brown4be44fc2005-08-05 00:44:28 -0400108 status = acpi_tb_install_table(&table_info);
Robert Moore0c9938c2005-07-29 15:15:00 -0700109 obj_desc->reference.object = table_info.installed_desc;
110
Len Brown4be44fc2005-08-05 00:44:28 -0400111 if (ACPI_FAILURE(status)) {
Robert Moore0c9938c2005-07-29 15:15:00 -0700112 if (status == AE_ALREADY_EXISTS) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400113
Robert Moore0c9938c2005-07-29 15:15:00 -0700114 /* Table already exists, just return the handle */
115
Len Brown4be44fc2005-08-05 00:44:28 -0400116 return_ACPI_STATUS(AE_OK);
Robert Moore0c9938c2005-07-29 15:15:00 -0700117 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 goto cleanup;
119 }
120
121 /* Add the table to the namespace */
122
Len Brown4be44fc2005-08-05 00:44:28 -0400123 status = acpi_ns_load_table(table_info.installed_desc, parent_node);
124 if (ACPI_FAILURE(status)) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400125
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 /* Uninstall table on error */
127
Len Brown4be44fc2005-08-05 00:44:28 -0400128 (void)acpi_tb_uninstall_table(table_info.installed_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 goto cleanup;
130 }
131
Len Brown4be44fc2005-08-05 00:44:28 -0400132 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
Len Brown4be44fc2005-08-05 00:44:28 -0400134 cleanup:
135 acpi_ut_remove_reference(obj_desc);
Robert Moore0c9938c2005-07-29 15:15:00 -0700136 *ddb_handle = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400137 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138}
139
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140/*******************************************************************************
141 *
142 * FUNCTION: acpi_ex_load_table_op
143 *
144 * PARAMETERS: walk_state - Current state with operands
145 * return_desc - Where to store the return object
146 *
147 * RETURN: Status
148 *
149 * DESCRIPTION: Load an ACPI table
150 *
151 ******************************************************************************/
152
153acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400154acpi_ex_load_table_op(struct acpi_walk_state *walk_state,
155 union acpi_operand_object **return_desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156{
Len Brown4be44fc2005-08-05 00:44:28 -0400157 acpi_status status;
158 union acpi_operand_object **operand = &walk_state->operands[0];
159 struct acpi_table_header *table;
160 struct acpi_namespace_node *parent_node;
161 struct acpi_namespace_node *start_node;
162 struct acpi_namespace_node *parameter_node = NULL;
163 union acpi_operand_object *ddb_handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
Bob Mooreb229cf92006-04-21 17:15:00 -0400165 ACPI_FUNCTION_TRACE(ex_load_table_op);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
167#if 0
168 /*
169 * Make sure that the signature does not match one of the tables that
170 * is already loaded.
171 */
Len Brown4be44fc2005-08-05 00:44:28 -0400172 status = acpi_tb_match_signature(operand[0]->string.pointer, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 if (status == AE_OK) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400174
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 /* Signature matched -- don't allow override */
176
Len Brown4be44fc2005-08-05 00:44:28 -0400177 return_ACPI_STATUS(AE_ALREADY_EXISTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 }
179#endif
180
181 /* Find the ACPI table */
182
Len Brown4be44fc2005-08-05 00:44:28 -0400183 status = acpi_tb_find_table(operand[0]->string.pointer,
184 operand[1]->string.pointer,
185 operand[2]->string.pointer, &table);
186 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 if (status != AE_NOT_FOUND) {
Len Brown4be44fc2005-08-05 00:44:28 -0400188 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 }
190
191 /* Table not found, return an Integer=0 and AE_OK */
192
Len Brown4be44fc2005-08-05 00:44:28 -0400193 ddb_handle = acpi_ut_create_internal_object(ACPI_TYPE_INTEGER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 if (!ddb_handle) {
Len Brown4be44fc2005-08-05 00:44:28 -0400195 return_ACPI_STATUS(AE_NO_MEMORY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 }
197
198 ddb_handle->integer.value = 0;
199 *return_desc = ddb_handle;
200
Len Brown4be44fc2005-08-05 00:44:28 -0400201 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 }
203
204 /* Default nodes */
205
206 start_node = walk_state->scope_info->scope.node;
207 parent_node = acpi_gbl_root_node;
208
209 /* root_path (optional parameter) */
210
211 if (operand[3]->string.length > 0) {
212 /*
213 * Find the node referenced by the root_path_string. This is the
214 * location within the namespace where the table will be loaded.
215 */
Len Brown4be44fc2005-08-05 00:44:28 -0400216 status =
217 acpi_ns_get_node_by_path(operand[3]->string.pointer,
218 start_node, ACPI_NS_SEARCH_PARENT,
219 &parent_node);
220 if (ACPI_FAILURE(status)) {
221 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 }
223 }
224
225 /* parameter_path (optional parameter) */
226
227 if (operand[4]->string.length > 0) {
228 if ((operand[4]->string.pointer[0] != '\\') &&
Len Brown4be44fc2005-08-05 00:44:28 -0400229 (operand[4]->string.pointer[0] != '^')) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 /*
231 * Path is not absolute, so it will be relative to the node
232 * referenced by the root_path_string (or the NS root if omitted)
233 */
234 start_node = parent_node;
235 }
236
Robert Moore44f6c012005-04-18 22:49:35 -0400237 /* Find the node referenced by the parameter_path_string */
238
Len Brown4be44fc2005-08-05 00:44:28 -0400239 status =
240 acpi_ns_get_node_by_path(operand[4]->string.pointer,
241 start_node, ACPI_NS_SEARCH_PARENT,
242 &parameter_node);
243 if (ACPI_FAILURE(status)) {
244 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 }
246 }
247
248 /* Load the table into the namespace */
249
Len Brown4be44fc2005-08-05 00:44:28 -0400250 status = acpi_ex_add_table(table, parent_node, &ddb_handle);
251 if (ACPI_FAILURE(status)) {
252 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 }
254
255 /* Parameter Data (optional) */
256
257 if (parameter_node) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400258
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 /* Store the parameter data into the optional parameter object */
260
Len Brown4be44fc2005-08-05 00:44:28 -0400261 status = acpi_ex_store(operand[5],
262 ACPI_CAST_PTR(union acpi_operand_object,
263 parameter_node),
264 walk_state);
265 if (ACPI_FAILURE(status)) {
266 (void)acpi_ex_unload_table(ddb_handle);
267 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 }
269 }
270
271 *return_desc = ddb_handle;
Len Brown4be44fc2005-08-05 00:44:28 -0400272 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273}
274
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275/*******************************************************************************
276 *
277 * FUNCTION: acpi_ex_load_op
278 *
279 * PARAMETERS: obj_desc - Region or Field where the table will be
280 * obtained
281 * Target - Where a handle to the table will be stored
282 * walk_state - Current state
283 *
284 * RETURN: Status
285 *
286 * DESCRIPTION: Load an ACPI table from a field or operation region
287 *
288 ******************************************************************************/
289
290acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400291acpi_ex_load_op(union acpi_operand_object *obj_desc,
292 union acpi_operand_object *target,
293 struct acpi_walk_state *walk_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294{
Len Brown4be44fc2005-08-05 00:44:28 -0400295 acpi_status status;
296 union acpi_operand_object *ddb_handle;
297 union acpi_operand_object *buffer_desc = NULL;
298 struct acpi_table_header *table_ptr = NULL;
299 acpi_physical_address address;
300 struct acpi_table_header table_header;
Bob Moore958dd242006-05-12 17:12:00 -0400301 acpi_integer temp;
Len Brown4be44fc2005-08-05 00:44:28 -0400302 u32 i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
Bob Mooreb229cf92006-04-21 17:15:00 -0400304 ACPI_FUNCTION_TRACE(ex_load_op);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
306 /* Object can be either an op_region or a Field */
307
Len Brown4be44fc2005-08-05 00:44:28 -0400308 switch (ACPI_GET_OBJECT_TYPE(obj_desc)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 case ACPI_TYPE_REGION:
310
Len Brown4be44fc2005-08-05 00:44:28 -0400311 ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "Load from Region %p %s\n",
312 obj_desc,
313 acpi_ut_get_object_type_name(obj_desc)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
315 /*
316 * If the Region Address and Length have not been previously evaluated,
317 * evaluate them now and save the results.
318 */
319 if (!(obj_desc->common.flags & AOPOBJ_DATA_VALID)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400320 status = acpi_ds_get_region_arguments(obj_desc);
321 if (ACPI_FAILURE(status)) {
322 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 }
324 }
325
326 /* Get the base physical address of the region */
327
328 address = obj_desc->region.address;
329
Bob Moore958dd242006-05-12 17:12:00 -0400330 /* Get part of the table header to get the table length */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
332 table_header.length = 0;
333 for (i = 0; i < 8; i++) {
Len Brown4be44fc2005-08-05 00:44:28 -0400334 status =
335 acpi_ev_address_space_dispatch(obj_desc, ACPI_READ,
336 (acpi_physical_address)
337 (i + address), 8,
Bob Moore958dd242006-05-12 17:12:00 -0400338 &temp);
Len Brown4be44fc2005-08-05 00:44:28 -0400339 if (ACPI_FAILURE(status)) {
340 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 }
Bob Moore958dd242006-05-12 17:12:00 -0400342
343 /* Get the one valid byte of the returned 64-bit value */
344
345 ACPI_CAST_PTR(u8, &table_header)[i] = (u8) temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 }
347
348 /* Sanity check the table length */
349
Len Brown4be44fc2005-08-05 00:44:28 -0400350 if (table_header.length < sizeof(struct acpi_table_header)) {
351 return_ACPI_STATUS(AE_BAD_HEADER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 }
353
354 /* Allocate a buffer for the entire table */
355
Bob Moore83135242006-10-03 00:00:00 -0400356 table_ptr = ACPI_ALLOCATE(table_header.length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 if (!table_ptr) {
Len Brown4be44fc2005-08-05 00:44:28 -0400358 return_ACPI_STATUS(AE_NO_MEMORY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 }
360
361 /* Get the entire table from the op region */
362
363 for (i = 0; i < table_header.length; i++) {
Len Brown4be44fc2005-08-05 00:44:28 -0400364 status =
365 acpi_ev_address_space_dispatch(obj_desc, ACPI_READ,
366 (acpi_physical_address)
367 (i + address), 8,
Bob Moore958dd242006-05-12 17:12:00 -0400368 &temp);
Len Brown4be44fc2005-08-05 00:44:28 -0400369 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 goto cleanup;
371 }
Bob Moore958dd242006-05-12 17:12:00 -0400372
373 /* Get the one valid byte of the returned 64-bit value */
374
375 ACPI_CAST_PTR(u8, table_ptr)[i] = (u8) temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 }
377 break;
378
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 case ACPI_TYPE_LOCAL_REGION_FIELD:
380 case ACPI_TYPE_LOCAL_BANK_FIELD:
381 case ACPI_TYPE_LOCAL_INDEX_FIELD:
382
Len Brown4be44fc2005-08-05 00:44:28 -0400383 ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "Load from Field %p %s\n",
384 obj_desc,
385 acpi_ut_get_object_type_name(obj_desc)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
387 /*
388 * The length of the field must be at least as large as the table.
389 * Read the entire field and thus the entire table. Buffer is
390 * allocated during the read.
391 */
Len Brown4be44fc2005-08-05 00:44:28 -0400392 status =
393 acpi_ex_read_data_from_field(walk_state, obj_desc,
394 &buffer_desc);
395 if (ACPI_FAILURE(status)) {
396 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 }
398
Len Brown4be44fc2005-08-05 00:44:28 -0400399 table_ptr = ACPI_CAST_PTR(struct acpi_table_header,
400 buffer_desc->buffer.pointer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
Robert Moore88ac00f2005-05-26 00:00:00 -0400402 /* All done with the buffer_desc, delete it */
403
404 buffer_desc->buffer.pointer = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400405 acpi_ut_remove_reference(buffer_desc);
Robert Moore88ac00f2005-05-26 00:00:00 -0400406
407 /* Sanity check the table length */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
Len Brown4be44fc2005-08-05 00:44:28 -0400409 if (table_ptr->length < sizeof(struct acpi_table_header)) {
Robert Moore88ac00f2005-05-26 00:00:00 -0400410 status = AE_BAD_HEADER;
411 goto cleanup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 }
413 break;
414
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 default:
Len Brown4be44fc2005-08-05 00:44:28 -0400416 return_ACPI_STATUS(AE_AML_OPERAND_TYPE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 }
418
419 /* The table must be either an SSDT or a PSDT */
420
Bob Mooreb229cf92006-04-21 17:15:00 -0400421 if ((!ACPI_COMPARE_NAME(table_ptr->signature, PSDT_SIG)) &&
422 (!ACPI_COMPARE_NAME(table_ptr->signature, SSDT_SIG))) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500423 ACPI_ERROR((AE_INFO,
424 "Table has invalid signature [%4.4s], must be SSDT or PSDT",
425 table_ptr->signature));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 status = AE_BAD_SIGNATURE;
427 goto cleanup;
428 }
429
430 /* Install the new table into the local data structures */
431
Len Brown4be44fc2005-08-05 00:44:28 -0400432 status = acpi_ex_add_table(table_ptr, acpi_gbl_root_node, &ddb_handle);
433 if (ACPI_FAILURE(status)) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400434
Robert Moore88ac00f2005-05-26 00:00:00 -0400435 /* On error, table_ptr was deallocated above */
436
Len Brown4be44fc2005-08-05 00:44:28 -0400437 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 }
439
440 /* Store the ddb_handle into the Target operand */
441
Len Brown4be44fc2005-08-05 00:44:28 -0400442 status = acpi_ex_store(ddb_handle, target, walk_state);
443 if (ACPI_FAILURE(status)) {
444 (void)acpi_ex_unload_table(ddb_handle);
Robert Moore88ac00f2005-05-26 00:00:00 -0400445
446 /* table_ptr was deallocated above */
447
Len Brown4be44fc2005-08-05 00:44:28 -0400448 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 }
450
Len Brown4be44fc2005-08-05 00:44:28 -0400451 cleanup:
452 if (ACPI_FAILURE(status)) {
Bob Moore83135242006-10-03 00:00:00 -0400453 ACPI_FREE(table_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 }
Len Brown4be44fc2005-08-05 00:44:28 -0400455 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456}
457
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458/*******************************************************************************
459 *
460 * FUNCTION: acpi_ex_unload_table
461 *
462 * PARAMETERS: ddb_handle - Handle to a previously loaded table
463 *
464 * RETURN: Status
465 *
466 * DESCRIPTION: Unload an ACPI table
467 *
468 ******************************************************************************/
469
Len Brown4be44fc2005-08-05 00:44:28 -0400470acpi_status acpi_ex_unload_table(union acpi_operand_object *ddb_handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471{
Len Brown4be44fc2005-08-05 00:44:28 -0400472 acpi_status status = AE_OK;
473 union acpi_operand_object *table_desc = ddb_handle;
474 struct acpi_table_desc *table_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
Bob Mooreb229cf92006-04-21 17:15:00 -0400476 ACPI_FUNCTION_TRACE(ex_unload_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
478 /*
479 * Validate the handle
480 * Although the handle is partially validated in acpi_ex_reconfiguration(),
481 * when it calls acpi_ex_resolve_operands(), the handle is more completely
482 * validated here.
483 */
484 if ((!ddb_handle) ||
Len Brown4be44fc2005-08-05 00:44:28 -0400485 (ACPI_GET_DESCRIPTOR_TYPE(ddb_handle) != ACPI_DESC_TYPE_OPERAND) ||
486 (ACPI_GET_OBJECT_TYPE(ddb_handle) != ACPI_TYPE_LOCAL_REFERENCE)) {
487 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 }
489
490 /* Get the actual table descriptor from the ddb_handle */
491
Len Brown4be44fc2005-08-05 00:44:28 -0400492 table_info = (struct acpi_table_desc *)table_desc->reference.object;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
494 /*
495 * Delete the entire namespace under this table Node
496 * (Offset contains the table_id)
497 */
Len Brown4be44fc2005-08-05 00:44:28 -0400498 acpi_ns_delete_namespace_by_owner(table_info->owner_id);
499 acpi_ut_release_owner_id(&table_info->owner_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
501 /* Delete the table itself */
502
Len Brown4be44fc2005-08-05 00:44:28 -0400503 (void)acpi_tb_uninstall_table(table_info->installed_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
505 /* Delete the table descriptor (ddb_handle) */
506
Len Brown4be44fc2005-08-05 00:44:28 -0400507 acpi_ut_remove_reference(table_desc);
508 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509}