blob: 3bc0c67a9283e395943ee0e42c5db83b3c43f134 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/******************************************************************************
2 *
3 * Module Name: tbinstal - ACPI table installation and removal
4 *
5 *****************************************************************************/
6
7/*
Bob Moore6c9deb72007-02-02 19:48:24 +03008 * Copyright (C) 2000 - 2007, 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>
Bob Mooref3d2e782007-02-02 19:48:18 +030045#include <acpi/acnamesp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <acpi/actables.h>
47
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#define _COMPONENT ACPI_TABLES
Len Brown4be44fc2005-08-05 00:44:28 -040049ACPI_MODULE_NAME("tbinstal")
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Bob Mooref3d2e782007-02-02 19:48:18 +030051/******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 *
Bob Mooref3d2e782007-02-02 19:48:18 +030053 * FUNCTION: acpi_tb_verify_table
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 *
Bob Mooref3d2e782007-02-02 19:48:18 +030055 * PARAMETERS: table_desc - table
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 *
57 * RETURN: Status
58 *
Bob Mooref3d2e782007-02-02 19:48:18 +030059 * DESCRIPTION: this function is called to verify and map table
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 *
Bob Mooref3d2e782007-02-02 19:48:18 +030061 *****************************************************************************/
62acpi_status acpi_tb_verify_table(struct acpi_table_desc *table_desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -070063{
Alexey Starikovskiy428f2112007-02-02 19:48:22 +030064 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
Bob Mooref3d2e782007-02-02 19:48:18 +030066 ACPI_FUNCTION_TRACE(tb_verify_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Bob Mooref3d2e782007-02-02 19:48:18 +030068 /* Map the table if necessary */
Robert Moore44f6c012005-04-18 22:49:35 -040069
Bob Mooref3d2e782007-02-02 19:48:18 +030070 if (!table_desc->pointer) {
Alexey Starikovskiy428f2112007-02-02 19:48:22 +030071 if ((table_desc->flags & ACPI_TABLE_ORIGIN_MASK) ==
72 ACPI_TABLE_ORIGIN_MAPPED) {
73 table_desc->pointer =
74 acpi_os_map_memory(table_desc->address,
75 table_desc->length);
76 }
Bob Mooref3d2e782007-02-02 19:48:18 +030077 if (!table_desc->pointer) {
78 return_ACPI_STATUS(AE_NO_MEMORY);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 }
80 }
81
Bob Mooref3d2e782007-02-02 19:48:18 +030082 /* FACS is the odd table, has no standard ACPI header and no checksum */
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
Alexey Starikovskiy428f2112007-02-02 19:48:22 +030084 if (!ACPI_COMPARE_NAME(&table_desc->signature, ACPI_SIG_FACS)) {
85
86 /* Always calculate checksum, ignore bad checksum if requested */
87
88 status =
89 acpi_tb_verify_checksum(table_desc->pointer,
90 table_desc->length);
Bob Mooref3d2e782007-02-02 19:48:18 +030091 }
92
Bob Moorec5fc42a2007-02-02 19:48:19 +030093 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094}
95
Linus Torvalds1da177e2005-04-16 15:20:36 -070096/*******************************************************************************
97 *
Bob Mooref3d2e782007-02-02 19:48:18 +030098 * FUNCTION: acpi_tb_add_table
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 *
Alexey Starikovskiy428f2112007-02-02 19:48:22 +0300100 * PARAMETERS: table_desc - Table descriptor
Bob Mooref3d2e782007-02-02 19:48:18 +0300101 * table_index - Where the table index is returned
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 *
103 * RETURN: Status
104 *
Bob Mooref3d2e782007-02-02 19:48:18 +0300105 * DESCRIPTION: This function is called to add the ACPI table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 *
107 ******************************************************************************/
108
Bob Mooref3d2e782007-02-02 19:48:18 +0300109acpi_status
Alexey Starikovskiy428f2112007-02-02 19:48:22 +0300110acpi_tb_add_table(struct acpi_table_desc *table_desc,
Bob Mooref3d2e782007-02-02 19:48:18 +0300111 acpi_native_uint * table_index)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112{
Bob Mooref3d2e782007-02-02 19:48:18 +0300113 acpi_native_uint i;
114 acpi_native_uint length;
115 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Bob Mooref3d2e782007-02-02 19:48:18 +0300117 ACPI_FUNCTION_TRACE(tb_add_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
Alexey Starikovskiy428f2112007-02-02 19:48:22 +0300119 if (!table_desc->pointer) {
120 status = acpi_tb_verify_table(table_desc);
121 if (ACPI_FAILURE(status) || !table_desc->pointer) {
122 return_ACPI_STATUS(status);
123 }
124 }
125
Len Brown0efabac2007-05-24 02:25:00 -0400126 /* The table must be either an SSDT or a PSDT or an OEMx */
Alexey Starikovskiy428f2112007-02-02 19:48:22 +0300127
128 if ((!ACPI_COMPARE_NAME(table_desc->pointer->signature, ACPI_SIG_PSDT))
129 &&
Len Brown0efabac2007-05-24 02:25:00 -0400130 (!ACPI_COMPARE_NAME(table_desc->pointer->signature, ACPI_SIG_SSDT))
131 && (strncmp(table_desc->pointer->signature, "OEM", 3))) {
Alexey Starikovskiy428f2112007-02-02 19:48:22 +0300132 ACPI_ERROR((AE_INFO,
Len Brown0efabac2007-05-24 02:25:00 -0400133 "Table has invalid signature [%4.4s], must be SSDT, PSDT or OEMx",
Alexey Starikovskiy428f2112007-02-02 19:48:22 +0300134 table_desc->pointer->signature));
135 return_ACPI_STATUS(AE_BAD_SIGNATURE);
136 }
137
Bob Mooref3d2e782007-02-02 19:48:18 +0300138 (void)acpi_ut_acquire_mutex(ACPI_MTX_TABLES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
Bob Mooref3d2e782007-02-02 19:48:18 +0300140 /* Check if table is already registered */
141
142 for (i = 0; i < acpi_gbl_root_table_list.count; ++i) {
143 if (!acpi_gbl_root_table_list.tables[i].pointer) {
144 status =
145 acpi_tb_verify_table(&acpi_gbl_root_table_list.
146 tables[i]);
147 if (ACPI_FAILURE(status)
148 || !acpi_gbl_root_table_list.tables[i].pointer) {
149 continue;
150 }
151 }
152
Alexey Starikovskiy428f2112007-02-02 19:48:22 +0300153 length = ACPI_MIN(table_desc->length,
154 acpi_gbl_root_table_list.tables[i].length);
155 if (ACPI_MEMCMP(table_desc->pointer,
156 acpi_gbl_root_table_list.tables[i].pointer,
157 length)) {
Bob Mooref3d2e782007-02-02 19:48:18 +0300158 continue;
159 }
160
161 /* Table is already registered */
162
Alexey Starikovskiy428f2112007-02-02 19:48:22 +0300163 acpi_tb_delete_table(table_desc);
Bob Mooref3d2e782007-02-02 19:48:18 +0300164 *table_index = i;
165 goto release;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 }
167
Robert Moore0c9938c2005-07-29 15:15:00 -0700168 /*
Bob Mooref3d2e782007-02-02 19:48:18 +0300169 * Add the table to the global table list
Robert Moore0c9938c2005-07-29 15:15:00 -0700170 */
Alexey Starikovskiy428f2112007-02-02 19:48:22 +0300171 status = acpi_tb_store_table(table_desc->address, table_desc->pointer,
172 table_desc->length, table_desc->flags,
173 table_index);
Len Brown4be44fc2005-08-05 00:44:28 -0400174 if (ACPI_FAILURE(status)) {
Bob Mooref3d2e782007-02-02 19:48:18 +0300175 goto release;
Robert Moore0c9938c2005-07-29 15:15:00 -0700176 }
177
Alexey Starikovskiy428f2112007-02-02 19:48:22 +0300178 acpi_tb_print_table_header(table_desc->address, table_desc->pointer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
Bob Mooref3d2e782007-02-02 19:48:18 +0300180 release:
Len Brown4be44fc2005-08-05 00:44:28 -0400181 (void)acpi_ut_release_mutex(ACPI_MTX_TABLES);
182 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183}
184
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185/*******************************************************************************
186 *
Bob Mooref3d2e782007-02-02 19:48:18 +0300187 * FUNCTION: acpi_tb_resize_root_table_list
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 *
Bob Mooref3d2e782007-02-02 19:48:18 +0300189 * PARAMETERS: None
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 *
191 * RETURN: Status
192 *
Bob Mooref3d2e782007-02-02 19:48:18 +0300193 * DESCRIPTION: Expand the size of global table array
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 *
195 ******************************************************************************/
196
Bob Mooref3d2e782007-02-02 19:48:18 +0300197acpi_status acpi_tb_resize_root_table_list(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198{
Bob Mooref3d2e782007-02-02 19:48:18 +0300199 struct acpi_table_desc *tables;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
Bob Mooref3d2e782007-02-02 19:48:18 +0300201 ACPI_FUNCTION_TRACE(tb_resize_root_table_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
Bob Mooref3d2e782007-02-02 19:48:18 +0300203 /* allow_resize flag is a parameter to acpi_initialize_tables */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Bob Moorec5fc42a2007-02-02 19:48:19 +0300205 if (!(acpi_gbl_root_table_list.flags & ACPI_ROOT_ALLOW_RESIZE)) {
Bob Mooref3d2e782007-02-02 19:48:18 +0300206 ACPI_ERROR((AE_INFO,
207 "Resize of Root Table Array is not allowed"));
208 return_ACPI_STATUS(AE_SUPPORT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 }
210
Bob Mooref3d2e782007-02-02 19:48:18 +0300211 /* Increase the Table Array size */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
Bob Mooref3d2e782007-02-02 19:48:18 +0300213 tables = ACPI_ALLOCATE_ZEROED((acpi_gbl_root_table_list.size +
214 ACPI_ROOT_TABLE_SIZE_INCREMENT)
215 * sizeof(struct acpi_table_desc));
216 if (!tables) {
217 ACPI_ERROR((AE_INFO,
218 "Could not allocate new root table array"));
Len Brown4be44fc2005-08-05 00:44:28 -0400219 return_ACPI_STATUS(AE_NO_MEMORY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 }
221
Bob Mooref3d2e782007-02-02 19:48:18 +0300222 /* Copy and free the previous table array */
Robert Mooref9f46012005-07-08 00:00:00 -0400223
Bob Mooref3d2e782007-02-02 19:48:18 +0300224 if (acpi_gbl_root_table_list.tables) {
225 ACPI_MEMCPY(tables, acpi_gbl_root_table_list.tables,
226 acpi_gbl_root_table_list.size *
227 sizeof(struct acpi_table_desc));
Robert Mooref9f46012005-07-08 00:00:00 -0400228
Bob Moorec5fc42a2007-02-02 19:48:19 +0300229 if (acpi_gbl_root_table_list.flags & ACPI_ROOT_ORIGIN_ALLOCATED) {
Bob Mooref3d2e782007-02-02 19:48:18 +0300230 ACPI_FREE(acpi_gbl_root_table_list.tables);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 }
232 }
233
Bob Mooref3d2e782007-02-02 19:48:18 +0300234 acpi_gbl_root_table_list.tables = tables;
235 acpi_gbl_root_table_list.size += ACPI_ROOT_TABLE_SIZE_INCREMENT;
Bob Moorec5fc42a2007-02-02 19:48:19 +0300236 acpi_gbl_root_table_list.flags |= (u8) ACPI_ROOT_ORIGIN_ALLOCATED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Len Brown4be44fc2005-08-05 00:44:28 -0400238 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239}
240
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241/*******************************************************************************
242 *
Bob Mooref3d2e782007-02-02 19:48:18 +0300243 * FUNCTION: acpi_tb_store_table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 *
Bob Mooref3d2e782007-02-02 19:48:18 +0300245 * PARAMETERS: Address - Table address
246 * Table - Table header
247 * Length - Table length
248 * Flags - flags
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 *
Bob Mooref3d2e782007-02-02 19:48:18 +0300250 * RETURN: Status and table index.
251 *
252 * DESCRIPTION: Add an ACPI table to the global table list
253 *
254 ******************************************************************************/
255
256acpi_status
257acpi_tb_store_table(acpi_physical_address address,
258 struct acpi_table_header *table,
259 u32 length, u8 flags, acpi_native_uint * table_index)
260{
261 acpi_status status = AE_OK;
262
263 /* Ensure that there is room for the table in the Root Table List */
264
265 if (acpi_gbl_root_table_list.count >= acpi_gbl_root_table_list.size) {
266 status = acpi_tb_resize_root_table_list();
267 if (ACPI_FAILURE(status)) {
268 return (status);
269 }
270 }
271
272 /* Initialize added table */
273
274 acpi_gbl_root_table_list.tables[acpi_gbl_root_table_list.count].
275 address = address;
276 acpi_gbl_root_table_list.tables[acpi_gbl_root_table_list.count].
277 pointer = table;
278 acpi_gbl_root_table_list.tables[acpi_gbl_root_table_list.count].length =
279 length;
280 acpi_gbl_root_table_list.tables[acpi_gbl_root_table_list.count].
281 owner_id = 0;
282 acpi_gbl_root_table_list.tables[acpi_gbl_root_table_list.count].flags =
283 flags;
284
285 ACPI_MOVE_32_TO_32(&
286 (acpi_gbl_root_table_list.
287 tables[acpi_gbl_root_table_list.count].signature),
288 table->signature);
289
290 *table_index = acpi_gbl_root_table_list.count;
291 acpi_gbl_root_table_list.count++;
292 return (status);
293}
294
295/*******************************************************************************
296 *
297 * FUNCTION: acpi_tb_delete_table
298 *
299 * PARAMETERS: table_index - Table index
300 *
301 * RETURN: None
302 *
303 * DESCRIPTION: Delete one internal ACPI table
304 *
305 ******************************************************************************/
306
Alexey Starikovskiy428f2112007-02-02 19:48:22 +0300307void acpi_tb_delete_table(struct acpi_table_desc *table_desc)
Bob Mooref3d2e782007-02-02 19:48:18 +0300308{
Bob Mooref3d2e782007-02-02 19:48:18 +0300309 /* Table must be mapped or allocated */
Bob Mooref3d2e782007-02-02 19:48:18 +0300310 if (!table_desc->pointer) {
311 return;
312 }
Alexey Starikovskiy428f2112007-02-02 19:48:22 +0300313 switch (table_desc->flags & ACPI_TABLE_ORIGIN_MASK) {
314 case ACPI_TABLE_ORIGIN_MAPPED:
315 acpi_os_unmap_memory(table_desc->pointer, table_desc->length);
316 break;
317 case ACPI_TABLE_ORIGIN_ALLOCATED:
Bob Mooref3d2e782007-02-02 19:48:18 +0300318 ACPI_FREE(table_desc->pointer);
Alexey Starikovskiy428f2112007-02-02 19:48:22 +0300319 break;
320 default:;
Bob Mooref3d2e782007-02-02 19:48:18 +0300321 }
322
323 table_desc->pointer = NULL;
324}
325
326/*******************************************************************************
327 *
328 * FUNCTION: acpi_tb_terminate
329 *
330 * PARAMETERS: None
331 *
332 * RETURN: None
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 *
334 * DESCRIPTION: Delete all internal ACPI tables
335 *
336 ******************************************************************************/
337
Bob Mooref3d2e782007-02-02 19:48:18 +0300338void acpi_tb_terminate(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339{
Bob Mooref3d2e782007-02-02 19:48:18 +0300340 acpi_native_uint i;
341
342 ACPI_FUNCTION_TRACE(tb_terminate);
343
344 (void)acpi_ut_acquire_mutex(ACPI_MTX_TABLES);
345
346 /* Delete the individual tables */
347
348 for (i = 0; i < acpi_gbl_root_table_list.count; ++i) {
Alexey Starikovskiy428f2112007-02-02 19:48:22 +0300349 acpi_tb_delete_table(&acpi_gbl_root_table_list.tables[i]);
Bob Mooref3d2e782007-02-02 19:48:18 +0300350 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
352 /*
Bob Mooref3d2e782007-02-02 19:48:18 +0300353 * Delete the root table array if allocated locally. Array cannot be
354 * mapped, so we don't need to check for that flag.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 */
Bob Moorec5fc42a2007-02-02 19:48:19 +0300356 if (acpi_gbl_root_table_list.flags & ACPI_ROOT_ORIGIN_ALLOCATED) {
Bob Mooref3d2e782007-02-02 19:48:18 +0300357 ACPI_FREE(acpi_gbl_root_table_list.tables);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 }
Bob Mooref3d2e782007-02-02 19:48:18 +0300359
360 acpi_gbl_root_table_list.tables = NULL;
361 acpi_gbl_root_table_list.flags = 0;
362 acpi_gbl_root_table_list.count = 0;
363
364 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "ACPI Tables freed\n"));
365 (void)acpi_ut_release_mutex(ACPI_MTX_TABLES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366}
367
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368/*******************************************************************************
369 *
Bob Mooref3d2e782007-02-02 19:48:18 +0300370 * FUNCTION: acpi_tb_delete_namespace_by_owner
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 *
Bob Mooref3d2e782007-02-02 19:48:18 +0300372 * PARAMETERS: table_index - Table index
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 *
Bob Mooref3d2e782007-02-02 19:48:18 +0300374 * RETURN: None
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 *
Bob Mooref3d2e782007-02-02 19:48:18 +0300376 * DESCRIPTION: Delete all namespace objects created when this table was loaded.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 *
378 ******************************************************************************/
379
Bob Mooref3d2e782007-02-02 19:48:18 +0300380void acpi_tb_delete_namespace_by_owner(acpi_native_uint table_index)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381{
Bob Mooref3d2e782007-02-02 19:48:18 +0300382 acpi_owner_id owner_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
Bob Mooref3d2e782007-02-02 19:48:18 +0300384 (void)acpi_ut_acquire_mutex(ACPI_MTX_TABLES);
385 if (table_index < acpi_gbl_root_table_list.count) {
386 owner_id =
387 acpi_gbl_root_table_list.tables[table_index].owner_id;
388 } else {
389 (void)acpi_ut_release_mutex(ACPI_MTX_TABLES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 return;
391 }
392
Len Brown4be44fc2005-08-05 00:44:28 -0400393 (void)acpi_ut_release_mutex(ACPI_MTX_TABLES);
Bob Mooref3d2e782007-02-02 19:48:18 +0300394 acpi_ns_delete_namespace_by_owner(owner_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395}
396
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397/*******************************************************************************
398 *
Bob Mooref3d2e782007-02-02 19:48:18 +0300399 * FUNCTION: acpi_tb_allocate_owner_id
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 *
Bob Mooref3d2e782007-02-02 19:48:18 +0300401 * PARAMETERS: table_index - Table index
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 *
Bob Mooref3d2e782007-02-02 19:48:18 +0300403 * RETURN: Status
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 *
Bob Mooref3d2e782007-02-02 19:48:18 +0300405 * DESCRIPTION: Allocates owner_id in table_desc
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 *
407 ******************************************************************************/
408
Bob Mooref3d2e782007-02-02 19:48:18 +0300409acpi_status acpi_tb_allocate_owner_id(acpi_native_uint table_index)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410{
Bob Mooref3d2e782007-02-02 19:48:18 +0300411 acpi_status status = AE_BAD_PARAMETER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412
Bob Mooref3d2e782007-02-02 19:48:18 +0300413 ACPI_FUNCTION_TRACE(tb_allocate_owner_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
Bob Mooref3d2e782007-02-02 19:48:18 +0300415 (void)acpi_ut_acquire_mutex(ACPI_MTX_TABLES);
416 if (table_index < acpi_gbl_root_table_list.count) {
417 status = acpi_ut_allocate_owner_id
418 (&(acpi_gbl_root_table_list.tables[table_index].owner_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 }
420
Bob Mooref3d2e782007-02-02 19:48:18 +0300421 (void)acpi_ut_release_mutex(ACPI_MTX_TABLES);
422 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423}
424
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425/*******************************************************************************
426 *
Bob Mooref3d2e782007-02-02 19:48:18 +0300427 * FUNCTION: acpi_tb_release_owner_id
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 *
Bob Mooref3d2e782007-02-02 19:48:18 +0300429 * PARAMETERS: table_index - Table index
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 *
Bob Mooref3d2e782007-02-02 19:48:18 +0300431 * RETURN: Status
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 *
Bob Mooref3d2e782007-02-02 19:48:18 +0300433 * DESCRIPTION: Releases owner_id in table_desc
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 *
435 ******************************************************************************/
436
Bob Mooref3d2e782007-02-02 19:48:18 +0300437acpi_status acpi_tb_release_owner_id(acpi_native_uint table_index)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438{
Bob Mooref3d2e782007-02-02 19:48:18 +0300439 acpi_status status = AE_BAD_PARAMETER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
Bob Mooref3d2e782007-02-02 19:48:18 +0300441 ACPI_FUNCTION_TRACE(tb_release_owner_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
Bob Mooref3d2e782007-02-02 19:48:18 +0300443 (void)acpi_ut_acquire_mutex(ACPI_MTX_TABLES);
444 if (table_index < acpi_gbl_root_table_list.count) {
445 acpi_ut_release_owner_id(&
446 (acpi_gbl_root_table_list.
447 tables[table_index].owner_id));
448 status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 }
450
Bob Mooref3d2e782007-02-02 19:48:18 +0300451 (void)acpi_ut_release_mutex(ACPI_MTX_TABLES);
452 return_ACPI_STATUS(status);
453}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
Bob Mooref3d2e782007-02-02 19:48:18 +0300455/*******************************************************************************
456 *
457 * FUNCTION: acpi_tb_get_owner_id
458 *
459 * PARAMETERS: table_index - Table index
460 * owner_id - Where the table owner_id is returned
461 *
462 * RETURN: Status
463 *
464 * DESCRIPTION: returns owner_id for the ACPI table
465 *
466 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
Bob Mooref3d2e782007-02-02 19:48:18 +0300468acpi_status
469acpi_tb_get_owner_id(acpi_native_uint table_index, acpi_owner_id * owner_id)
470{
471 acpi_status status = AE_BAD_PARAMETER;
472
473 ACPI_FUNCTION_TRACE(tb_get_owner_id);
474
475 (void)acpi_ut_acquire_mutex(ACPI_MTX_TABLES);
476 if (table_index < acpi_gbl_root_table_list.count) {
477 *owner_id =
478 acpi_gbl_root_table_list.tables[table_index].owner_id;
479 status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 }
481
Bob Mooref3d2e782007-02-02 19:48:18 +0300482 (void)acpi_ut_release_mutex(ACPI_MTX_TABLES);
483 return_ACPI_STATUS(status);
484}
485
486/*******************************************************************************
487 *
488 * FUNCTION: acpi_tb_is_table_loaded
489 *
490 * PARAMETERS: table_index - Table index
491 *
492 * RETURN: Table Loaded Flag
493 *
494 ******************************************************************************/
495
496u8 acpi_tb_is_table_loaded(acpi_native_uint table_index)
497{
498 u8 is_loaded = FALSE;
499
500 (void)acpi_ut_acquire_mutex(ACPI_MTX_TABLES);
501 if (table_index < acpi_gbl_root_table_list.count) {
502 is_loaded = (u8)
503 (acpi_gbl_root_table_list.tables[table_index].
Bob Moorec5fc42a2007-02-02 19:48:19 +0300504 flags & ACPI_TABLE_IS_LOADED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 }
506
Bob Mooref3d2e782007-02-02 19:48:18 +0300507 (void)acpi_ut_release_mutex(ACPI_MTX_TABLES);
508 return (is_loaded);
509}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
Bob Mooref3d2e782007-02-02 19:48:18 +0300511/*******************************************************************************
512 *
513 * FUNCTION: acpi_tb_set_table_loaded_flag
514 *
515 * PARAMETERS: table_index - Table index
516 * is_loaded - TRUE if table is loaded, FALSE otherwise
517 *
518 * RETURN: None
519 *
520 * DESCRIPTION: Sets the table loaded flag to either TRUE or FALSE.
521 *
522 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
Bob Mooref3d2e782007-02-02 19:48:18 +0300524void acpi_tb_set_table_loaded_flag(acpi_native_uint table_index, u8 is_loaded)
525{
Bob Mooref6dd9222006-07-07 20:44:38 -0400526
Bob Mooref3d2e782007-02-02 19:48:18 +0300527 (void)acpi_ut_acquire_mutex(ACPI_MTX_TABLES);
528 if (table_index < acpi_gbl_root_table_list.count) {
529 if (is_loaded) {
530 acpi_gbl_root_table_list.tables[table_index].flags |=
Bob Moorec5fc42a2007-02-02 19:48:19 +0300531 ACPI_TABLE_IS_LOADED;
Bob Mooref3d2e782007-02-02 19:48:18 +0300532 } else {
533 acpi_gbl_root_table_list.tables[table_index].flags &=
Bob Moorec5fc42a2007-02-02 19:48:19 +0300534 ~ACPI_TABLE_IS_LOADED;
Bob Mooref3d2e782007-02-02 19:48:18 +0300535 }
536 }
Bob Mooref6dd9222006-07-07 20:44:38 -0400537
Bob Mooref3d2e782007-02-02 19:48:18 +0300538 (void)acpi_ut_release_mutex(ACPI_MTX_TABLES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539}