blob: 18747ce8dd2f2b15b83e6e5465fc8b34c8118258 [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/*
Len Brown75a44ce2008-04-23 23:00:13 -04008 * Copyright (C) 2000 - 2008, 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>
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
Bob Moore67a119f2008-06-10 13:42:13 +0800110acpi_tb_add_table(struct acpi_table_desc *table_desc, u32 *table_index)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111{
Bob Moore67a119f2008-06-10 13:42:13 +0800112 u32 i;
Bob Mooref3d2e782007-02-02 19:48:18 +0300113 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
Bob Mooref3d2e782007-02-02 19:48:18 +0300115 ACPI_FUNCTION_TRACE(tb_add_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Alexey Starikovskiy428f2112007-02-02 19:48:22 +0300117 if (!table_desc->pointer) {
118 status = acpi_tb_verify_table(table_desc);
119 if (ACPI_FAILURE(status) || !table_desc->pointer) {
120 return_ACPI_STATUS(status);
121 }
122 }
123
Bob Moorebc45b1d2008-06-10 14:12:50 +0800124 /*
125 * Originally, we checked the table signature for "SSDT" or "PSDT" here.
126 * Next, we added support for OEMx tables, signature "OEM".
127 * Valid tables were encountered with a null signature, so we've just
128 * given up on validating the signature, since it seems to be a waste
129 * of code. The original code was removed (05/2008).
130 */
Alexey Starikovskiy428f2112007-02-02 19:48:22 +0300131
Bob Mooref3d2e782007-02-02 19:48:18 +0300132 (void)acpi_ut_acquire_mutex(ACPI_MTX_TABLES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
Bob Mooref3d2e782007-02-02 19:48:18 +0300134 /* Check if table is already registered */
135
136 for (i = 0; i < acpi_gbl_root_table_list.count; ++i) {
137 if (!acpi_gbl_root_table_list.tables[i].pointer) {
138 status =
139 acpi_tb_verify_table(&acpi_gbl_root_table_list.
140 tables[i]);
141 if (ACPI_FAILURE(status)
142 || !acpi_gbl_root_table_list.tables[i].pointer) {
143 continue;
144 }
145 }
146
Bob Moorea6f30532008-07-04 10:57:51 +0800147 /*
148 * Check for a table match on the entire table length,
149 * not just the header.
150 */
151 if (table_desc->length !=
152 acpi_gbl_root_table_list.tables[i].length) {
153 continue;
154 }
Bob Mooree56f5612008-07-04 10:48:43 +0800155
Alexey Starikovskiy428f2112007-02-02 19:48:22 +0300156 if (ACPI_MEMCMP(table_desc->pointer,
157 acpi_gbl_root_table_list.tables[i].pointer,
Bob Moorea6f30532008-07-04 10:57:51 +0800158 acpi_gbl_root_table_list.tables[i].length)) {
Bob Mooref3d2e782007-02-02 19:48:18 +0300159 continue;
160 }
161
Bob Mooree56f5612008-07-04 10:48:43 +0800162 /*
163 * Note: the current mechanism does not unregister a table if it is
164 * dynamically unloaded. The related namespace entries are deleted,
165 * but the table remains in the root table list.
166 *
167 * The assumption here is that the number of different tables that
168 * will be loaded is actually small, and there is minimal overhead
169 * in just keeping the table in case it is needed again.
170 *
171 * If this assumption changes in the future (perhaps on large
172 * machines with many table load/unload operations), tables will
173 * need to be unregistered when they are unloaded, and slots in the
174 * root table list should be reused when empty.
175 */
Bob Mooref3d2e782007-02-02 19:48:18 +0300176
Bob Mooree56f5612008-07-04 10:48:43 +0800177 /*
178 * Table is already registered.
179 * We can delete the table that was passed as a parameter.
180 */
Alexey Starikovskiy428f2112007-02-02 19:48:22 +0300181 acpi_tb_delete_table(table_desc);
Bob Mooref3d2e782007-02-02 19:48:18 +0300182 *table_index = i;
Bob Mooree56f5612008-07-04 10:48:43 +0800183
184 if (acpi_gbl_root_table_list.tables[i].
185 flags & ACPI_TABLE_IS_LOADED) {
186
187 /* Table is still loaded, this is an error */
188
189 status = AE_ALREADY_EXISTS;
190 goto release;
191 } else {
192 /* Table was unloaded, allow it to be reloaded */
193
194 table_desc->pointer =
195 acpi_gbl_root_table_list.tables[i].pointer;
196 table_desc->address =
197 acpi_gbl_root_table_list.tables[i].address;
198 status = AE_OK;
199 goto print_header;
200 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 }
202
Bob Mooree56f5612008-07-04 10:48:43 +0800203 /* Add the table to the global root table list */
204
Alexey Starikovskiy428f2112007-02-02 19:48:22 +0300205 status = acpi_tb_store_table(table_desc->address, table_desc->pointer,
206 table_desc->length, table_desc->flags,
207 table_index);
Len Brown4be44fc2005-08-05 00:44:28 -0400208 if (ACPI_FAILURE(status)) {
Bob Mooref3d2e782007-02-02 19:48:18 +0300209 goto release;
Robert Moore0c9938c2005-07-29 15:15:00 -0700210 }
211
Bob Mooree56f5612008-07-04 10:48:43 +0800212 print_header:
Alexey Starikovskiy428f2112007-02-02 19:48:22 +0300213 acpi_tb_print_table_header(table_desc->address, table_desc->pointer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
Bob Mooref3d2e782007-02-02 19:48:18 +0300215 release:
Len Brown4be44fc2005-08-05 00:44:28 -0400216 (void)acpi_ut_release_mutex(ACPI_MTX_TABLES);
217 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218}
219
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220/*******************************************************************************
221 *
Bob Mooref3d2e782007-02-02 19:48:18 +0300222 * FUNCTION: acpi_tb_resize_root_table_list
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 *
Bob Mooref3d2e782007-02-02 19:48:18 +0300224 * PARAMETERS: None
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 *
226 * RETURN: Status
227 *
Bob Mooref3d2e782007-02-02 19:48:18 +0300228 * DESCRIPTION: Expand the size of global table array
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 *
230 ******************************************************************************/
231
Bob Mooref3d2e782007-02-02 19:48:18 +0300232acpi_status acpi_tb_resize_root_table_list(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233{
Bob Mooref3d2e782007-02-02 19:48:18 +0300234 struct acpi_table_desc *tables;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
Bob Mooref3d2e782007-02-02 19:48:18 +0300236 ACPI_FUNCTION_TRACE(tb_resize_root_table_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Bob Mooref3d2e782007-02-02 19:48:18 +0300238 /* allow_resize flag is a parameter to acpi_initialize_tables */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
Bob Moorec5fc42a2007-02-02 19:48:19 +0300240 if (!(acpi_gbl_root_table_list.flags & ACPI_ROOT_ALLOW_RESIZE)) {
Bob Mooref3d2e782007-02-02 19:48:18 +0300241 ACPI_ERROR((AE_INFO,
242 "Resize of Root Table Array is not allowed"));
243 return_ACPI_STATUS(AE_SUPPORT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 }
245
Bob Mooref3d2e782007-02-02 19:48:18 +0300246 /* Increase the Table Array size */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
Bob Moore67a119f2008-06-10 13:42:13 +0800248 tables = ACPI_ALLOCATE_ZEROED(((acpi_size) acpi_gbl_root_table_list.
249 size + ACPI_ROOT_TABLE_SIZE_INCREMENT)
Bob Mooref3d2e782007-02-02 19:48:18 +0300250 * sizeof(struct acpi_table_desc));
251 if (!tables) {
252 ACPI_ERROR((AE_INFO,
253 "Could not allocate new root table array"));
Len Brown4be44fc2005-08-05 00:44:28 -0400254 return_ACPI_STATUS(AE_NO_MEMORY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 }
256
Bob Mooref3d2e782007-02-02 19:48:18 +0300257 /* Copy and free the previous table array */
Robert Mooref9f46012005-07-08 00:00:00 -0400258
Bob Mooref3d2e782007-02-02 19:48:18 +0300259 if (acpi_gbl_root_table_list.tables) {
260 ACPI_MEMCPY(tables, acpi_gbl_root_table_list.tables,
Bob Moore67a119f2008-06-10 13:42:13 +0800261 (acpi_size) acpi_gbl_root_table_list.size *
Bob Mooref3d2e782007-02-02 19:48:18 +0300262 sizeof(struct acpi_table_desc));
Robert Mooref9f46012005-07-08 00:00:00 -0400263
Bob Moorec5fc42a2007-02-02 19:48:19 +0300264 if (acpi_gbl_root_table_list.flags & ACPI_ROOT_ORIGIN_ALLOCATED) {
Bob Mooref3d2e782007-02-02 19:48:18 +0300265 ACPI_FREE(acpi_gbl_root_table_list.tables);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 }
267 }
268
Bob Mooref3d2e782007-02-02 19:48:18 +0300269 acpi_gbl_root_table_list.tables = tables;
270 acpi_gbl_root_table_list.size += ACPI_ROOT_TABLE_SIZE_INCREMENT;
Bob Moorec5fc42a2007-02-02 19:48:19 +0300271 acpi_gbl_root_table_list.flags |= (u8) ACPI_ROOT_ORIGIN_ALLOCATED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
Len Brown4be44fc2005-08-05 00:44:28 -0400273 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274}
275
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276/*******************************************************************************
277 *
Bob Mooref3d2e782007-02-02 19:48:18 +0300278 * FUNCTION: acpi_tb_store_table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 *
Bob Mooref3d2e782007-02-02 19:48:18 +0300280 * PARAMETERS: Address - Table address
281 * Table - Table header
282 * Length - Table length
283 * Flags - flags
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 *
Bob Mooref3d2e782007-02-02 19:48:18 +0300285 * RETURN: Status and table index.
286 *
287 * DESCRIPTION: Add an ACPI table to the global table list
288 *
289 ******************************************************************************/
290
291acpi_status
292acpi_tb_store_table(acpi_physical_address address,
293 struct acpi_table_header *table,
Bob Moore67a119f2008-06-10 13:42:13 +0800294 u32 length, u8 flags, u32 *table_index)
Bob Mooref3d2e782007-02-02 19:48:18 +0300295{
296 acpi_status status = AE_OK;
297
298 /* Ensure that there is room for the table in the Root Table List */
299
300 if (acpi_gbl_root_table_list.count >= acpi_gbl_root_table_list.size) {
301 status = acpi_tb_resize_root_table_list();
302 if (ACPI_FAILURE(status)) {
303 return (status);
304 }
305 }
306
307 /* Initialize added table */
308
309 acpi_gbl_root_table_list.tables[acpi_gbl_root_table_list.count].
310 address = address;
311 acpi_gbl_root_table_list.tables[acpi_gbl_root_table_list.count].
312 pointer = table;
313 acpi_gbl_root_table_list.tables[acpi_gbl_root_table_list.count].length =
314 length;
315 acpi_gbl_root_table_list.tables[acpi_gbl_root_table_list.count].
316 owner_id = 0;
317 acpi_gbl_root_table_list.tables[acpi_gbl_root_table_list.count].flags =
318 flags;
319
320 ACPI_MOVE_32_TO_32(&
321 (acpi_gbl_root_table_list.
322 tables[acpi_gbl_root_table_list.count].signature),
323 table->signature);
324
325 *table_index = acpi_gbl_root_table_list.count;
326 acpi_gbl_root_table_list.count++;
327 return (status);
328}
329
330/*******************************************************************************
331 *
332 * FUNCTION: acpi_tb_delete_table
333 *
334 * PARAMETERS: table_index - Table index
335 *
336 * RETURN: None
337 *
338 * DESCRIPTION: Delete one internal ACPI table
339 *
340 ******************************************************************************/
341
Alexey Starikovskiy428f2112007-02-02 19:48:22 +0300342void acpi_tb_delete_table(struct acpi_table_desc *table_desc)
Bob Mooref3d2e782007-02-02 19:48:18 +0300343{
Bob Mooref3d2e782007-02-02 19:48:18 +0300344 /* Table must be mapped or allocated */
Bob Mooref3d2e782007-02-02 19:48:18 +0300345 if (!table_desc->pointer) {
346 return;
347 }
Alexey Starikovskiy428f2112007-02-02 19:48:22 +0300348 switch (table_desc->flags & ACPI_TABLE_ORIGIN_MASK) {
349 case ACPI_TABLE_ORIGIN_MAPPED:
350 acpi_os_unmap_memory(table_desc->pointer, table_desc->length);
351 break;
352 case ACPI_TABLE_ORIGIN_ALLOCATED:
Bob Mooref3d2e782007-02-02 19:48:18 +0300353 ACPI_FREE(table_desc->pointer);
Alexey Starikovskiy428f2112007-02-02 19:48:22 +0300354 break;
355 default:;
Bob Mooref3d2e782007-02-02 19:48:18 +0300356 }
357
358 table_desc->pointer = NULL;
359}
360
361/*******************************************************************************
362 *
363 * FUNCTION: acpi_tb_terminate
364 *
365 * PARAMETERS: None
366 *
367 * RETURN: None
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 *
369 * DESCRIPTION: Delete all internal ACPI tables
370 *
371 ******************************************************************************/
372
Bob Mooref3d2e782007-02-02 19:48:18 +0300373void acpi_tb_terminate(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374{
Bob Moore67a119f2008-06-10 13:42:13 +0800375 u32 i;
Bob Mooref3d2e782007-02-02 19:48:18 +0300376
377 ACPI_FUNCTION_TRACE(tb_terminate);
378
379 (void)acpi_ut_acquire_mutex(ACPI_MTX_TABLES);
380
381 /* Delete the individual tables */
382
383 for (i = 0; i < acpi_gbl_root_table_list.count; ++i) {
Alexey Starikovskiy428f2112007-02-02 19:48:22 +0300384 acpi_tb_delete_table(&acpi_gbl_root_table_list.tables[i]);
Bob Mooref3d2e782007-02-02 19:48:18 +0300385 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
387 /*
Bob Mooref3d2e782007-02-02 19:48:18 +0300388 * Delete the root table array if allocated locally. Array cannot be
389 * mapped, so we don't need to check for that flag.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 */
Bob Moorec5fc42a2007-02-02 19:48:19 +0300391 if (acpi_gbl_root_table_list.flags & ACPI_ROOT_ORIGIN_ALLOCATED) {
Bob Mooref3d2e782007-02-02 19:48:18 +0300392 ACPI_FREE(acpi_gbl_root_table_list.tables);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 }
Bob Mooref3d2e782007-02-02 19:48:18 +0300394
395 acpi_gbl_root_table_list.tables = NULL;
396 acpi_gbl_root_table_list.flags = 0;
397 acpi_gbl_root_table_list.count = 0;
398
399 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "ACPI Tables freed\n"));
400 (void)acpi_ut_release_mutex(ACPI_MTX_TABLES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401}
402
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403/*******************************************************************************
404 *
Bob Mooref3d2e782007-02-02 19:48:18 +0300405 * FUNCTION: acpi_tb_delete_namespace_by_owner
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 *
Bob Mooref3d2e782007-02-02 19:48:18 +0300407 * PARAMETERS: table_index - Table index
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 *
Bob Mooref3d2e782007-02-02 19:48:18 +0300409 * RETURN: None
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 *
Bob Mooref3d2e782007-02-02 19:48:18 +0300411 * DESCRIPTION: Delete all namespace objects created when this table was loaded.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 *
413 ******************************************************************************/
414
Bob Moore67a119f2008-06-10 13:42:13 +0800415void acpi_tb_delete_namespace_by_owner(u32 table_index)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416{
Bob Mooref3d2e782007-02-02 19:48:18 +0300417 acpi_owner_id owner_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
Bob Mooref3d2e782007-02-02 19:48:18 +0300419 (void)acpi_ut_acquire_mutex(ACPI_MTX_TABLES);
420 if (table_index < acpi_gbl_root_table_list.count) {
421 owner_id =
422 acpi_gbl_root_table_list.tables[table_index].owner_id;
423 } else {
424 (void)acpi_ut_release_mutex(ACPI_MTX_TABLES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 return;
426 }
427
Len Brown4be44fc2005-08-05 00:44:28 -0400428 (void)acpi_ut_release_mutex(ACPI_MTX_TABLES);
Bob Mooref3d2e782007-02-02 19:48:18 +0300429 acpi_ns_delete_namespace_by_owner(owner_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430}
431
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432/*******************************************************************************
433 *
Bob Mooref3d2e782007-02-02 19:48:18 +0300434 * FUNCTION: acpi_tb_allocate_owner_id
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 *
Bob Mooref3d2e782007-02-02 19:48:18 +0300436 * PARAMETERS: table_index - Table index
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 *
Bob Mooref3d2e782007-02-02 19:48:18 +0300438 * RETURN: Status
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 *
Bob Mooref3d2e782007-02-02 19:48:18 +0300440 * DESCRIPTION: Allocates owner_id in table_desc
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 *
442 ******************************************************************************/
443
Bob Moore67a119f2008-06-10 13:42:13 +0800444acpi_status acpi_tb_allocate_owner_id(u32 table_index)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445{
Bob Mooref3d2e782007-02-02 19:48:18 +0300446 acpi_status status = AE_BAD_PARAMETER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
Bob Mooref3d2e782007-02-02 19:48:18 +0300448 ACPI_FUNCTION_TRACE(tb_allocate_owner_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
Bob Mooref3d2e782007-02-02 19:48:18 +0300450 (void)acpi_ut_acquire_mutex(ACPI_MTX_TABLES);
451 if (table_index < acpi_gbl_root_table_list.count) {
452 status = acpi_ut_allocate_owner_id
453 (&(acpi_gbl_root_table_list.tables[table_index].owner_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 }
455
Bob Mooref3d2e782007-02-02 19:48:18 +0300456 (void)acpi_ut_release_mutex(ACPI_MTX_TABLES);
457 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458}
459
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460/*******************************************************************************
461 *
Bob Mooref3d2e782007-02-02 19:48:18 +0300462 * FUNCTION: acpi_tb_release_owner_id
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 *
Bob Mooref3d2e782007-02-02 19:48:18 +0300464 * PARAMETERS: table_index - Table index
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 *
Bob Mooref3d2e782007-02-02 19:48:18 +0300466 * RETURN: Status
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 *
Bob Mooref3d2e782007-02-02 19:48:18 +0300468 * DESCRIPTION: Releases owner_id in table_desc
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 *
470 ******************************************************************************/
471
Bob Moore67a119f2008-06-10 13:42:13 +0800472acpi_status acpi_tb_release_owner_id(u32 table_index)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473{
Bob Mooref3d2e782007-02-02 19:48:18 +0300474 acpi_status status = AE_BAD_PARAMETER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
Bob Mooref3d2e782007-02-02 19:48:18 +0300476 ACPI_FUNCTION_TRACE(tb_release_owner_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
Bob Mooref3d2e782007-02-02 19:48:18 +0300478 (void)acpi_ut_acquire_mutex(ACPI_MTX_TABLES);
479 if (table_index < acpi_gbl_root_table_list.count) {
480 acpi_ut_release_owner_id(&
481 (acpi_gbl_root_table_list.
482 tables[table_index].owner_id));
483 status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 }
485
Bob Mooref3d2e782007-02-02 19:48:18 +0300486 (void)acpi_ut_release_mutex(ACPI_MTX_TABLES);
487 return_ACPI_STATUS(status);
488}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
Bob Mooref3d2e782007-02-02 19:48:18 +0300490/*******************************************************************************
491 *
492 * FUNCTION: acpi_tb_get_owner_id
493 *
494 * PARAMETERS: table_index - Table index
495 * owner_id - Where the table owner_id is returned
496 *
497 * RETURN: Status
498 *
499 * DESCRIPTION: returns owner_id for the ACPI table
500 *
501 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
Bob Moore67a119f2008-06-10 13:42:13 +0800503acpi_status acpi_tb_get_owner_id(u32 table_index, acpi_owner_id *owner_id)
Bob Mooref3d2e782007-02-02 19:48:18 +0300504{
505 acpi_status status = AE_BAD_PARAMETER;
506
507 ACPI_FUNCTION_TRACE(tb_get_owner_id);
508
509 (void)acpi_ut_acquire_mutex(ACPI_MTX_TABLES);
510 if (table_index < acpi_gbl_root_table_list.count) {
511 *owner_id =
512 acpi_gbl_root_table_list.tables[table_index].owner_id;
513 status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 }
515
Bob Mooref3d2e782007-02-02 19:48:18 +0300516 (void)acpi_ut_release_mutex(ACPI_MTX_TABLES);
517 return_ACPI_STATUS(status);
518}
519
520/*******************************************************************************
521 *
522 * FUNCTION: acpi_tb_is_table_loaded
523 *
524 * PARAMETERS: table_index - Table index
525 *
526 * RETURN: Table Loaded Flag
527 *
528 ******************************************************************************/
529
Bob Moore67a119f2008-06-10 13:42:13 +0800530u8 acpi_tb_is_table_loaded(u32 table_index)
Bob Mooref3d2e782007-02-02 19:48:18 +0300531{
532 u8 is_loaded = FALSE;
533
534 (void)acpi_ut_acquire_mutex(ACPI_MTX_TABLES);
535 if (table_index < acpi_gbl_root_table_list.count) {
536 is_loaded = (u8)
537 (acpi_gbl_root_table_list.tables[table_index].
Bob Moorec5fc42a2007-02-02 19:48:19 +0300538 flags & ACPI_TABLE_IS_LOADED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 }
540
Bob Mooref3d2e782007-02-02 19:48:18 +0300541 (void)acpi_ut_release_mutex(ACPI_MTX_TABLES);
542 return (is_loaded);
543}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
Bob Mooref3d2e782007-02-02 19:48:18 +0300545/*******************************************************************************
546 *
547 * FUNCTION: acpi_tb_set_table_loaded_flag
548 *
549 * PARAMETERS: table_index - Table index
550 * is_loaded - TRUE if table is loaded, FALSE otherwise
551 *
552 * RETURN: None
553 *
554 * DESCRIPTION: Sets the table loaded flag to either TRUE or FALSE.
555 *
556 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
Bob Moore67a119f2008-06-10 13:42:13 +0800558void acpi_tb_set_table_loaded_flag(u32 table_index, u8 is_loaded)
Bob Mooref3d2e782007-02-02 19:48:18 +0300559{
Bob Mooref6dd9222006-07-07 20:44:38 -0400560
Bob Mooref3d2e782007-02-02 19:48:18 +0300561 (void)acpi_ut_acquire_mutex(ACPI_MTX_TABLES);
562 if (table_index < acpi_gbl_root_table_list.count) {
563 if (is_loaded) {
564 acpi_gbl_root_table_list.tables[table_index].flags |=
Bob Moorec5fc42a2007-02-02 19:48:19 +0300565 ACPI_TABLE_IS_LOADED;
Bob Mooref3d2e782007-02-02 19:48:18 +0300566 } else {
567 acpi_gbl_root_table_list.tables[table_index].flags &=
Bob Moorec5fc42a2007-02-02 19:48:19 +0300568 ~ACPI_TABLE_IS_LOADED;
Bob Mooref3d2e782007-02-02 19:48:18 +0300569 }
570 }
Bob Mooref6dd9222006-07-07 20:44:38 -0400571
Bob Mooref3d2e782007-02-02 19:48:18 +0300572 (void)acpi_ut_release_mutex(ACPI_MTX_TABLES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573}