blob: b22185f55a16acf80e9814059acff89a4a1e508b [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;
113 u32 length;
Bob Mooref3d2e782007-02-02 19:48:18 +0300114 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
Bob Mooref3d2e782007-02-02 19:48:18 +0300116 ACPI_FUNCTION_TRACE(tb_add_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Alexey Starikovskiy428f2112007-02-02 19:48:22 +0300118 if (!table_desc->pointer) {
119 status = acpi_tb_verify_table(table_desc);
120 if (ACPI_FAILURE(status) || !table_desc->pointer) {
121 return_ACPI_STATUS(status);
122 }
123 }
124
Bob Moorebc45b1d2008-06-10 14:12:50 +0800125 /*
126 * Originally, we checked the table signature for "SSDT" or "PSDT" here.
127 * Next, we added support for OEMx tables, signature "OEM".
128 * Valid tables were encountered with a null signature, so we've just
129 * given up on validating the signature, since it seems to be a waste
130 * of code. The original code was removed (05/2008).
131 */
Alexey Starikovskiy428f2112007-02-02 19:48:22 +0300132
Bob Mooref3d2e782007-02-02 19:48:18 +0300133 (void)acpi_ut_acquire_mutex(ACPI_MTX_TABLES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
Bob Mooref3d2e782007-02-02 19:48:18 +0300135 /* Check if table is already registered */
136
137 for (i = 0; i < acpi_gbl_root_table_list.count; ++i) {
138 if (!acpi_gbl_root_table_list.tables[i].pointer) {
139 status =
140 acpi_tb_verify_table(&acpi_gbl_root_table_list.
141 tables[i]);
142 if (ACPI_FAILURE(status)
143 || !acpi_gbl_root_table_list.tables[i].pointer) {
144 continue;
145 }
146 }
147
Alexey Starikovskiy428f2112007-02-02 19:48:22 +0300148 length = ACPI_MIN(table_desc->length,
149 acpi_gbl_root_table_list.tables[i].length);
150 if (ACPI_MEMCMP(table_desc->pointer,
151 acpi_gbl_root_table_list.tables[i].pointer,
152 length)) {
Bob Mooref3d2e782007-02-02 19:48:18 +0300153 continue;
154 }
155
156 /* Table is already registered */
157
Alexey Starikovskiy428f2112007-02-02 19:48:22 +0300158 acpi_tb_delete_table(table_desc);
Bob Mooref3d2e782007-02-02 19:48:18 +0300159 *table_index = i;
Lin Ming200cce62008-04-10 19:06:42 +0400160 status = AE_ALREADY_EXISTS;
Bob Mooref3d2e782007-02-02 19:48:18 +0300161 goto release;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 }
163
Robert Moore0c9938c2005-07-29 15:15:00 -0700164 /*
Bob Mooref3d2e782007-02-02 19:48:18 +0300165 * Add the table to the global table list
Robert Moore0c9938c2005-07-29 15:15:00 -0700166 */
Alexey Starikovskiy428f2112007-02-02 19:48:22 +0300167 status = acpi_tb_store_table(table_desc->address, table_desc->pointer,
168 table_desc->length, table_desc->flags,
169 table_index);
Len Brown4be44fc2005-08-05 00:44:28 -0400170 if (ACPI_FAILURE(status)) {
Bob Mooref3d2e782007-02-02 19:48:18 +0300171 goto release;
Robert Moore0c9938c2005-07-29 15:15:00 -0700172 }
173
Alexey Starikovskiy428f2112007-02-02 19:48:22 +0300174 acpi_tb_print_table_header(table_desc->address, table_desc->pointer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
Bob Mooref3d2e782007-02-02 19:48:18 +0300176 release:
Len Brown4be44fc2005-08-05 00:44:28 -0400177 (void)acpi_ut_release_mutex(ACPI_MTX_TABLES);
178 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179}
180
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181/*******************************************************************************
182 *
Bob Mooref3d2e782007-02-02 19:48:18 +0300183 * FUNCTION: acpi_tb_resize_root_table_list
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 *
Bob Mooref3d2e782007-02-02 19:48:18 +0300185 * PARAMETERS: None
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 *
187 * RETURN: Status
188 *
Bob Mooref3d2e782007-02-02 19:48:18 +0300189 * DESCRIPTION: Expand the size of global table array
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 *
191 ******************************************************************************/
192
Bob Mooref3d2e782007-02-02 19:48:18 +0300193acpi_status acpi_tb_resize_root_table_list(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194{
Bob Mooref3d2e782007-02-02 19:48:18 +0300195 struct acpi_table_desc *tables;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
Bob Mooref3d2e782007-02-02 19:48:18 +0300197 ACPI_FUNCTION_TRACE(tb_resize_root_table_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
Bob Mooref3d2e782007-02-02 19:48:18 +0300199 /* allow_resize flag is a parameter to acpi_initialize_tables */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
Bob Moorec5fc42a2007-02-02 19:48:19 +0300201 if (!(acpi_gbl_root_table_list.flags & ACPI_ROOT_ALLOW_RESIZE)) {
Bob Mooref3d2e782007-02-02 19:48:18 +0300202 ACPI_ERROR((AE_INFO,
203 "Resize of Root Table Array is not allowed"));
204 return_ACPI_STATUS(AE_SUPPORT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 }
206
Bob Mooref3d2e782007-02-02 19:48:18 +0300207 /* Increase the Table Array size */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
Bob Moore67a119f2008-06-10 13:42:13 +0800209 tables = ACPI_ALLOCATE_ZEROED(((acpi_size) acpi_gbl_root_table_list.
210 size + ACPI_ROOT_TABLE_SIZE_INCREMENT)
Bob Mooref3d2e782007-02-02 19:48:18 +0300211 * sizeof(struct acpi_table_desc));
212 if (!tables) {
213 ACPI_ERROR((AE_INFO,
214 "Could not allocate new root table array"));
Len Brown4be44fc2005-08-05 00:44:28 -0400215 return_ACPI_STATUS(AE_NO_MEMORY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 }
217
Bob Mooref3d2e782007-02-02 19:48:18 +0300218 /* Copy and free the previous table array */
Robert Mooref9f46012005-07-08 00:00:00 -0400219
Bob Mooref3d2e782007-02-02 19:48:18 +0300220 if (acpi_gbl_root_table_list.tables) {
221 ACPI_MEMCPY(tables, acpi_gbl_root_table_list.tables,
Bob Moore67a119f2008-06-10 13:42:13 +0800222 (acpi_size) acpi_gbl_root_table_list.size *
Bob Mooref3d2e782007-02-02 19:48:18 +0300223 sizeof(struct acpi_table_desc));
Robert Mooref9f46012005-07-08 00:00:00 -0400224
Bob Moorec5fc42a2007-02-02 19:48:19 +0300225 if (acpi_gbl_root_table_list.flags & ACPI_ROOT_ORIGIN_ALLOCATED) {
Bob Mooref3d2e782007-02-02 19:48:18 +0300226 ACPI_FREE(acpi_gbl_root_table_list.tables);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 }
228 }
229
Bob Mooref3d2e782007-02-02 19:48:18 +0300230 acpi_gbl_root_table_list.tables = tables;
231 acpi_gbl_root_table_list.size += ACPI_ROOT_TABLE_SIZE_INCREMENT;
Bob Moorec5fc42a2007-02-02 19:48:19 +0300232 acpi_gbl_root_table_list.flags |= (u8) ACPI_ROOT_ORIGIN_ALLOCATED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
Len Brown4be44fc2005-08-05 00:44:28 -0400234 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235}
236
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237/*******************************************************************************
238 *
Bob Mooref3d2e782007-02-02 19:48:18 +0300239 * FUNCTION: acpi_tb_store_table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 *
Bob Mooref3d2e782007-02-02 19:48:18 +0300241 * PARAMETERS: Address - Table address
242 * Table - Table header
243 * Length - Table length
244 * Flags - flags
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 *
Bob Mooref3d2e782007-02-02 19:48:18 +0300246 * RETURN: Status and table index.
247 *
248 * DESCRIPTION: Add an ACPI table to the global table list
249 *
250 ******************************************************************************/
251
252acpi_status
253acpi_tb_store_table(acpi_physical_address address,
254 struct acpi_table_header *table,
Bob Moore67a119f2008-06-10 13:42:13 +0800255 u32 length, u8 flags, u32 *table_index)
Bob Mooref3d2e782007-02-02 19:48:18 +0300256{
257 acpi_status status = AE_OK;
258
259 /* Ensure that there is room for the table in the Root Table List */
260
261 if (acpi_gbl_root_table_list.count >= acpi_gbl_root_table_list.size) {
262 status = acpi_tb_resize_root_table_list();
263 if (ACPI_FAILURE(status)) {
264 return (status);
265 }
266 }
267
268 /* Initialize added table */
269
270 acpi_gbl_root_table_list.tables[acpi_gbl_root_table_list.count].
271 address = address;
272 acpi_gbl_root_table_list.tables[acpi_gbl_root_table_list.count].
273 pointer = table;
274 acpi_gbl_root_table_list.tables[acpi_gbl_root_table_list.count].length =
275 length;
276 acpi_gbl_root_table_list.tables[acpi_gbl_root_table_list.count].
277 owner_id = 0;
278 acpi_gbl_root_table_list.tables[acpi_gbl_root_table_list.count].flags =
279 flags;
280
281 ACPI_MOVE_32_TO_32(&
282 (acpi_gbl_root_table_list.
283 tables[acpi_gbl_root_table_list.count].signature),
284 table->signature);
285
286 *table_index = acpi_gbl_root_table_list.count;
287 acpi_gbl_root_table_list.count++;
288 return (status);
289}
290
291/*******************************************************************************
292 *
293 * FUNCTION: acpi_tb_delete_table
294 *
295 * PARAMETERS: table_index - Table index
296 *
297 * RETURN: None
298 *
299 * DESCRIPTION: Delete one internal ACPI table
300 *
301 ******************************************************************************/
302
Alexey Starikovskiy428f2112007-02-02 19:48:22 +0300303void acpi_tb_delete_table(struct acpi_table_desc *table_desc)
Bob Mooref3d2e782007-02-02 19:48:18 +0300304{
Bob Mooref3d2e782007-02-02 19:48:18 +0300305 /* Table must be mapped or allocated */
Bob Mooref3d2e782007-02-02 19:48:18 +0300306 if (!table_desc->pointer) {
307 return;
308 }
Alexey Starikovskiy428f2112007-02-02 19:48:22 +0300309 switch (table_desc->flags & ACPI_TABLE_ORIGIN_MASK) {
310 case ACPI_TABLE_ORIGIN_MAPPED:
311 acpi_os_unmap_memory(table_desc->pointer, table_desc->length);
312 break;
313 case ACPI_TABLE_ORIGIN_ALLOCATED:
Bob Mooref3d2e782007-02-02 19:48:18 +0300314 ACPI_FREE(table_desc->pointer);
Alexey Starikovskiy428f2112007-02-02 19:48:22 +0300315 break;
316 default:;
Bob Mooref3d2e782007-02-02 19:48:18 +0300317 }
318
319 table_desc->pointer = NULL;
320}
321
322/*******************************************************************************
323 *
324 * FUNCTION: acpi_tb_terminate
325 *
326 * PARAMETERS: None
327 *
328 * RETURN: None
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 *
330 * DESCRIPTION: Delete all internal ACPI tables
331 *
332 ******************************************************************************/
333
Bob Mooref3d2e782007-02-02 19:48:18 +0300334void acpi_tb_terminate(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335{
Bob Moore67a119f2008-06-10 13:42:13 +0800336 u32 i;
Bob Mooref3d2e782007-02-02 19:48:18 +0300337
338 ACPI_FUNCTION_TRACE(tb_terminate);
339
340 (void)acpi_ut_acquire_mutex(ACPI_MTX_TABLES);
341
342 /* Delete the individual tables */
343
344 for (i = 0; i < acpi_gbl_root_table_list.count; ++i) {
Alexey Starikovskiy428f2112007-02-02 19:48:22 +0300345 acpi_tb_delete_table(&acpi_gbl_root_table_list.tables[i]);
Bob Mooref3d2e782007-02-02 19:48:18 +0300346 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
348 /*
Bob Mooref3d2e782007-02-02 19:48:18 +0300349 * Delete the root table array if allocated locally. Array cannot be
350 * mapped, so we don't need to check for that flag.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 */
Bob Moorec5fc42a2007-02-02 19:48:19 +0300352 if (acpi_gbl_root_table_list.flags & ACPI_ROOT_ORIGIN_ALLOCATED) {
Bob Mooref3d2e782007-02-02 19:48:18 +0300353 ACPI_FREE(acpi_gbl_root_table_list.tables);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 }
Bob Mooref3d2e782007-02-02 19:48:18 +0300355
356 acpi_gbl_root_table_list.tables = NULL;
357 acpi_gbl_root_table_list.flags = 0;
358 acpi_gbl_root_table_list.count = 0;
359
360 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "ACPI Tables freed\n"));
361 (void)acpi_ut_release_mutex(ACPI_MTX_TABLES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362}
363
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364/*******************************************************************************
365 *
Bob Mooref3d2e782007-02-02 19:48:18 +0300366 * FUNCTION: acpi_tb_delete_namespace_by_owner
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 *
Bob Mooref3d2e782007-02-02 19:48:18 +0300368 * PARAMETERS: table_index - Table index
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 *
Bob Mooref3d2e782007-02-02 19:48:18 +0300370 * RETURN: None
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 *
Bob Mooref3d2e782007-02-02 19:48:18 +0300372 * DESCRIPTION: Delete all namespace objects created when this table was loaded.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 *
374 ******************************************************************************/
375
Bob Moore67a119f2008-06-10 13:42:13 +0800376void acpi_tb_delete_namespace_by_owner(u32 table_index)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377{
Bob Mooref3d2e782007-02-02 19:48:18 +0300378 acpi_owner_id owner_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
Bob Mooref3d2e782007-02-02 19:48:18 +0300380 (void)acpi_ut_acquire_mutex(ACPI_MTX_TABLES);
381 if (table_index < acpi_gbl_root_table_list.count) {
382 owner_id =
383 acpi_gbl_root_table_list.tables[table_index].owner_id;
384 } else {
385 (void)acpi_ut_release_mutex(ACPI_MTX_TABLES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 return;
387 }
388
Len Brown4be44fc2005-08-05 00:44:28 -0400389 (void)acpi_ut_release_mutex(ACPI_MTX_TABLES);
Bob Mooref3d2e782007-02-02 19:48:18 +0300390 acpi_ns_delete_namespace_by_owner(owner_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391}
392
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393/*******************************************************************************
394 *
Bob Mooref3d2e782007-02-02 19:48:18 +0300395 * FUNCTION: acpi_tb_allocate_owner_id
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 *
Bob Mooref3d2e782007-02-02 19:48:18 +0300397 * PARAMETERS: table_index - Table index
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 *
Bob Mooref3d2e782007-02-02 19:48:18 +0300399 * RETURN: Status
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 *
Bob Mooref3d2e782007-02-02 19:48:18 +0300401 * DESCRIPTION: Allocates owner_id in table_desc
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 *
403 ******************************************************************************/
404
Bob Moore67a119f2008-06-10 13:42:13 +0800405acpi_status acpi_tb_allocate_owner_id(u32 table_index)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406{
Bob Mooref3d2e782007-02-02 19:48:18 +0300407 acpi_status status = AE_BAD_PARAMETER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
Bob Mooref3d2e782007-02-02 19:48:18 +0300409 ACPI_FUNCTION_TRACE(tb_allocate_owner_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
Bob Mooref3d2e782007-02-02 19:48:18 +0300411 (void)acpi_ut_acquire_mutex(ACPI_MTX_TABLES);
412 if (table_index < acpi_gbl_root_table_list.count) {
413 status = acpi_ut_allocate_owner_id
414 (&(acpi_gbl_root_table_list.tables[table_index].owner_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 }
416
Bob Mooref3d2e782007-02-02 19:48:18 +0300417 (void)acpi_ut_release_mutex(ACPI_MTX_TABLES);
418 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419}
420
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421/*******************************************************************************
422 *
Bob Mooref3d2e782007-02-02 19:48:18 +0300423 * FUNCTION: acpi_tb_release_owner_id
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 *
Bob Mooref3d2e782007-02-02 19:48:18 +0300425 * PARAMETERS: table_index - Table index
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 *
Bob Mooref3d2e782007-02-02 19:48:18 +0300427 * RETURN: Status
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 *
Bob Mooref3d2e782007-02-02 19:48:18 +0300429 * DESCRIPTION: Releases owner_id in table_desc
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 *
431 ******************************************************************************/
432
Bob Moore67a119f2008-06-10 13:42:13 +0800433acpi_status acpi_tb_release_owner_id(u32 table_index)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434{
Bob Mooref3d2e782007-02-02 19:48:18 +0300435 acpi_status status = AE_BAD_PARAMETER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436
Bob Mooref3d2e782007-02-02 19:48:18 +0300437 ACPI_FUNCTION_TRACE(tb_release_owner_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
Bob Mooref3d2e782007-02-02 19:48:18 +0300439 (void)acpi_ut_acquire_mutex(ACPI_MTX_TABLES);
440 if (table_index < acpi_gbl_root_table_list.count) {
441 acpi_ut_release_owner_id(&
442 (acpi_gbl_root_table_list.
443 tables[table_index].owner_id));
444 status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 }
446
Bob Mooref3d2e782007-02-02 19:48:18 +0300447 (void)acpi_ut_release_mutex(ACPI_MTX_TABLES);
448 return_ACPI_STATUS(status);
449}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
Bob Mooref3d2e782007-02-02 19:48:18 +0300451/*******************************************************************************
452 *
453 * FUNCTION: acpi_tb_get_owner_id
454 *
455 * PARAMETERS: table_index - Table index
456 * owner_id - Where the table owner_id is returned
457 *
458 * RETURN: Status
459 *
460 * DESCRIPTION: returns owner_id for the ACPI table
461 *
462 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
Bob Moore67a119f2008-06-10 13:42:13 +0800464acpi_status acpi_tb_get_owner_id(u32 table_index, acpi_owner_id *owner_id)
Bob Mooref3d2e782007-02-02 19:48:18 +0300465{
466 acpi_status status = AE_BAD_PARAMETER;
467
468 ACPI_FUNCTION_TRACE(tb_get_owner_id);
469
470 (void)acpi_ut_acquire_mutex(ACPI_MTX_TABLES);
471 if (table_index < acpi_gbl_root_table_list.count) {
472 *owner_id =
473 acpi_gbl_root_table_list.tables[table_index].owner_id;
474 status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 }
476
Bob Mooref3d2e782007-02-02 19:48:18 +0300477 (void)acpi_ut_release_mutex(ACPI_MTX_TABLES);
478 return_ACPI_STATUS(status);
479}
480
481/*******************************************************************************
482 *
483 * FUNCTION: acpi_tb_is_table_loaded
484 *
485 * PARAMETERS: table_index - Table index
486 *
487 * RETURN: Table Loaded Flag
488 *
489 ******************************************************************************/
490
Bob Moore67a119f2008-06-10 13:42:13 +0800491u8 acpi_tb_is_table_loaded(u32 table_index)
Bob Mooref3d2e782007-02-02 19:48:18 +0300492{
493 u8 is_loaded = FALSE;
494
495 (void)acpi_ut_acquire_mutex(ACPI_MTX_TABLES);
496 if (table_index < acpi_gbl_root_table_list.count) {
497 is_loaded = (u8)
498 (acpi_gbl_root_table_list.tables[table_index].
Bob Moorec5fc42a2007-02-02 19:48:19 +0300499 flags & ACPI_TABLE_IS_LOADED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 }
501
Bob Mooref3d2e782007-02-02 19:48:18 +0300502 (void)acpi_ut_release_mutex(ACPI_MTX_TABLES);
503 return (is_loaded);
504}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
Bob Mooref3d2e782007-02-02 19:48:18 +0300506/*******************************************************************************
507 *
508 * FUNCTION: acpi_tb_set_table_loaded_flag
509 *
510 * PARAMETERS: table_index - Table index
511 * is_loaded - TRUE if table is loaded, FALSE otherwise
512 *
513 * RETURN: None
514 *
515 * DESCRIPTION: Sets the table loaded flag to either TRUE or FALSE.
516 *
517 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
Bob Moore67a119f2008-06-10 13:42:13 +0800519void acpi_tb_set_table_loaded_flag(u32 table_index, u8 is_loaded)
Bob Mooref3d2e782007-02-02 19:48:18 +0300520{
Bob Mooref6dd9222006-07-07 20:44:38 -0400521
Bob Mooref3d2e782007-02-02 19:48:18 +0300522 (void)acpi_ut_acquire_mutex(ACPI_MTX_TABLES);
523 if (table_index < acpi_gbl_root_table_list.count) {
524 if (is_loaded) {
525 acpi_gbl_root_table_list.tables[table_index].flags |=
Bob Moorec5fc42a2007-02-02 19:48:19 +0300526 ACPI_TABLE_IS_LOADED;
Bob Mooref3d2e782007-02-02 19:48:18 +0300527 } else {
528 acpi_gbl_root_table_list.tables[table_index].flags &=
Bob Moorec5fc42a2007-02-02 19:48:19 +0300529 ~ACPI_TABLE_IS_LOADED;
Bob Mooref3d2e782007-02-02 19:48:18 +0300530 }
531 }
Bob Mooref6dd9222006-07-07 20:44:38 -0400532
Bob Mooref3d2e782007-02-02 19:48:18 +0300533 (void)acpi_ut_release_mutex(ACPI_MTX_TABLES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534}