blob: 53c627e401bff42fba43da37a4dd1ec02c891d7a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/******************************************************************************
2 *
3 * Module Name: tbxface - Public interfaces to the ACPI subsystem
4 * ACPI table oriented interfaces
5 *
6 *****************************************************************************/
7
8/*
Bob Moore4a90c7e2006-01-13 16:22:00 -05009 * Copyright (C) 2000 - 2006, R. Byron Moore
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 * All rights reserved.
11 *
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
14 * are met:
15 * 1. Redistributions of source code must retain the above copyright
16 * notice, this list of conditions, and the following disclaimer,
17 * without modification.
18 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
19 * substantially similar to the "NO WARRANTY" disclaimer below
20 * ("Disclaimer") and any redistribution must be conditioned upon
21 * including a substantially similar Disclaimer requirement for further
22 * binary redistribution.
23 * 3. Neither the names of the above-listed copyright holders nor the names
24 * of any contributors may be used to endorse or promote products derived
25 * from this software without specific prior written permission.
26 *
27 * Alternatively, this software may be distributed under the terms of the
28 * GNU General Public License ("GPL") version 2 as published by the Free
29 * Software Foundation.
30 *
31 * NO WARRANTY
32 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
33 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
34 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
35 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
36 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
37 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
38 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
39 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
40 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
41 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
42 * POSSIBILITY OF SUCH DAMAGES.
43 */
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <acpi/acpi.h>
46#include <acpi/acnamesp.h>
47#include <acpi/actables.h>
48
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#define _COMPONENT ACPI_TABLES
Len Brown4be44fc2005-08-05 00:44:28 -040050ACPI_MODULE_NAME("tbxface")
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52/*******************************************************************************
53 *
54 * FUNCTION: acpi_load_tables
55 *
56 * PARAMETERS: None
57 *
58 * RETURN: Status
59 *
60 * DESCRIPTION: This function is called to load the ACPI tables from the
61 * provided RSDT
62 *
63 ******************************************************************************/
Len Brown4be44fc2005-08-05 00:44:28 -040064acpi_status acpi_load_tables(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070065{
Len Brown4be44fc2005-08-05 00:44:28 -040066 struct acpi_pointer rsdp_address;
67 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Len Brown4be44fc2005-08-05 00:44:28 -040069 ACPI_FUNCTION_TRACE("acpi_load_tables");
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
71 /* Get the RSDP */
72
Len Brown4be44fc2005-08-05 00:44:28 -040073 status = acpi_os_get_root_pointer(ACPI_LOGICAL_ADDRESSING,
74 &rsdp_address);
75 if (ACPI_FAILURE(status)) {
Bob Mooreb8e4d892006-01-27 16:43:00 -050076 ACPI_EXCEPTION((AE_INFO, status, "Could not get the RSDP"));
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 goto error_exit;
78 }
79
80 /* Map and validate the RSDP */
81
82 acpi_gbl_table_flags = rsdp_address.pointer_type;
83
Len Brown4be44fc2005-08-05 00:44:28 -040084 status = acpi_tb_verify_rsdp(&rsdp_address);
85 if (ACPI_FAILURE(status)) {
Bob Mooreb8e4d892006-01-27 16:43:00 -050086 ACPI_EXCEPTION((AE_INFO, status, "During RSDP validation"));
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 goto error_exit;
88 }
89
90 /* Get the RSDT via the RSDP */
91
Len Brown4be44fc2005-08-05 00:44:28 -040092 status = acpi_tb_get_table_rsdt();
93 if (ACPI_FAILURE(status)) {
Bob Mooreb8e4d892006-01-27 16:43:00 -050094 ACPI_EXCEPTION((AE_INFO, status, "Could not load RSDT"));
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 goto error_exit;
96 }
97
98 /* Now get the tables needed by this subsystem (FADT, DSDT, etc.) */
99
Len Brown4be44fc2005-08-05 00:44:28 -0400100 status = acpi_tb_get_required_tables();
101 if (ACPI_FAILURE(status)) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500102 ACPI_EXCEPTION((AE_INFO, status,
103 "Could not get all required tables (DSDT/FADT/FACS)"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 goto error_exit;
105 }
106
Len Brown4be44fc2005-08-05 00:44:28 -0400107 ACPI_DEBUG_PRINT((ACPI_DB_INIT, "ACPI Tables successfully acquired\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 /* Load the namespace from the tables */
110
Len Brown4be44fc2005-08-05 00:44:28 -0400111 status = acpi_ns_load_namespace();
112 if (ACPI_FAILURE(status)) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500113 ACPI_EXCEPTION((AE_INFO, status, "Could not load namespace"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 goto error_exit;
115 }
116
Len Brown4be44fc2005-08-05 00:44:28 -0400117 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
Len Brown4be44fc2005-08-05 00:44:28 -0400119 error_exit:
Bob Mooreb8e4d892006-01-27 16:43:00 -0500120 ACPI_EXCEPTION((AE_INFO, status, "Could not load tables"));
Len Brown4be44fc2005-08-05 00:44:28 -0400121 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122}
123
Bob Moore83135242006-10-03 00:00:00 -0400124ACPI_EXPORT_SYMBOL(acpi_load_tables)
125
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126#ifdef ACPI_FUTURE_USAGE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127/*******************************************************************************
128 *
129 * FUNCTION: acpi_load_table
130 *
131 * PARAMETERS: table_ptr - pointer to a buffer containing the entire
132 * table to be loaded
133 *
134 * RETURN: Status
135 *
136 * DESCRIPTION: This function is called to load a table from the caller's
137 * buffer. The buffer must contain an entire ACPI Table including
138 * a valid header. The header fields will be verified, and if it
139 * is determined that the table is invalid, the call will fail.
140 *
141 ******************************************************************************/
Len Brown4be44fc2005-08-05 00:44:28 -0400142acpi_status acpi_load_table(struct acpi_table_header *table_ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143{
Len Brown4be44fc2005-08-05 00:44:28 -0400144 acpi_status status;
145 struct acpi_table_desc table_info;
146 struct acpi_pointer address;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
Len Brown4be44fc2005-08-05 00:44:28 -0400148 ACPI_FUNCTION_TRACE("acpi_load_table");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
150 if (!table_ptr) {
Len Brown4be44fc2005-08-05 00:44:28 -0400151 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 }
153
154 /* Copy the table to a local buffer */
155
Len Brown4be44fc2005-08-05 00:44:28 -0400156 address.pointer_type = ACPI_LOGICAL_POINTER | ACPI_LOGICAL_ADDRESSING;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 address.pointer.logical = table_ptr;
158
Len Brown4be44fc2005-08-05 00:44:28 -0400159 status = acpi_tb_get_table_body(&address, table_ptr, &table_info);
160 if (ACPI_FAILURE(status)) {
161 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 }
163
Robert Moore0c9938c2005-07-29 15:15:00 -0700164 /* Check signature for a valid table type */
165
Len Brown4be44fc2005-08-05 00:44:28 -0400166 status = acpi_tb_recognize_table(&table_info, ACPI_TABLE_ALL);
167 if (ACPI_FAILURE(status)) {
168 return_ACPI_STATUS(status);
Robert Moore0c9938c2005-07-29 15:15:00 -0700169 }
170
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 /* Install the new table into the local data structures */
172
Len Brown4be44fc2005-08-05 00:44:28 -0400173 status = acpi_tb_install_table(&table_info);
174 if (ACPI_FAILURE(status)) {
Robert Moore0c9938c2005-07-29 15:15:00 -0700175 if (status == AE_ALREADY_EXISTS) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400176
Robert Moore0c9938c2005-07-29 15:15:00 -0700177 /* Table already exists, no error */
178
179 status = AE_OK;
180 }
181
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 /* Free table allocated by acpi_tb_get_table_body */
183
Len Brown4be44fc2005-08-05 00:44:28 -0400184 acpi_tb_delete_single_table(&table_info);
185 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 }
187
188 /* Convert the table to common format if necessary */
189
190 switch (table_info.type) {
191 case ACPI_TABLE_FADT:
192
Len Brown4be44fc2005-08-05 00:44:28 -0400193 status = acpi_tb_convert_table_fadt();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 break;
195
196 case ACPI_TABLE_FACS:
197
Len Brown4be44fc2005-08-05 00:44:28 -0400198 status = acpi_tb_build_common_facs(&table_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 break;
200
201 default:
202 /* Load table into namespace if it contains executable AML */
203
Len Brown4be44fc2005-08-05 00:44:28 -0400204 status =
205 acpi_ns_load_table(table_info.installed_desc,
206 acpi_gbl_root_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 break;
208 }
209
Len Brown4be44fc2005-08-05 00:44:28 -0400210 if (ACPI_FAILURE(status)) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400211
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 /* Uninstall table and free the buffer */
213
Len Brown4be44fc2005-08-05 00:44:28 -0400214 (void)acpi_tb_uninstall_table(table_info.installed_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 }
216
Len Brown4be44fc2005-08-05 00:44:28 -0400217 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218}
219
Bob Moore83135242006-10-03 00:00:00 -0400220ACPI_EXPORT_SYMBOL(acpi_load_table)
221
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222/*******************************************************************************
223 *
224 * FUNCTION: acpi_unload_table
225 *
226 * PARAMETERS: table_type - Type of table to be unloaded
227 *
228 * RETURN: Status
229 *
230 * DESCRIPTION: This routine is used to force the unload of a table
231 *
232 ******************************************************************************/
Len Brown4be44fc2005-08-05 00:44:28 -0400233acpi_status acpi_unload_table(acpi_table_type table_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234{
Len Brown4be44fc2005-08-05 00:44:28 -0400235 struct acpi_table_desc *table_desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
Len Brown4be44fc2005-08-05 00:44:28 -0400237 ACPI_FUNCTION_TRACE("acpi_unload_table");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
239 /* Parameter validation */
240
241 if (table_type > ACPI_TABLE_MAX) {
Len Brown4be44fc2005-08-05 00:44:28 -0400242 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 }
244
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 /* Find all tables of the requested type */
246
247 table_desc = acpi_gbl_table_lists[table_type].next;
248 while (table_desc) {
249 /*
250 * Delete all namespace entries owned by this table. Note that these
251 * entries can appear anywhere in the namespace by virtue of the AML
252 * "Scope" operator. Thus, we need to track ownership by an ID, not
253 * simply a position within the hierarchy
254 */
Len Brown4be44fc2005-08-05 00:44:28 -0400255 acpi_ns_delete_namespace_by_owner(table_desc->owner_id);
256 acpi_ut_release_owner_id(&table_desc->owner_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 table_desc = table_desc->next;
258 }
259
260 /* Delete (or unmap) all tables of this type */
261
Len Brown4be44fc2005-08-05 00:44:28 -0400262 acpi_tb_delete_tables_by_type(table_type);
263 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264}
265
Bob Moore83135242006-10-03 00:00:00 -0400266ACPI_EXPORT_SYMBOL(acpi_unload_table)
267
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268/*******************************************************************************
269 *
270 * FUNCTION: acpi_get_table_header
271 *
272 * PARAMETERS: table_type - one of the defined table types
273 * Instance - the non zero instance of the table, allows
274 * support for multiple tables of the same type
275 * see acpi_gbl_acpi_table_flag
276 * out_table_header - pointer to the struct acpi_table_header if successful
277 *
278 * DESCRIPTION: This function is called to get an ACPI table header. The caller
279 * supplies an pointer to a data area sufficient to contain an ACPI
280 * struct acpi_table_header structure.
281 *
282 * The header contains a length field that can be used to determine
283 * the size of the buffer needed to contain the entire table. This
284 * function is not valid for the RSD PTR table since it does not
285 * have a standard header and is fixed length.
286 *
287 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400289acpi_get_table_header(acpi_table_type table_type,
290 u32 instance, struct acpi_table_header *out_table_header)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291{
Len Brown4be44fc2005-08-05 00:44:28 -0400292 struct acpi_table_header *tbl_ptr;
293 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
Len Brown4be44fc2005-08-05 00:44:28 -0400295 ACPI_FUNCTION_TRACE("acpi_get_table_header");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
Len Brown4be44fc2005-08-05 00:44:28 -0400297 if ((instance == 0) ||
298 (table_type == ACPI_TABLE_RSDP) || (!out_table_header)) {
299 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 }
301
302 /* Check the table type and instance */
303
Len Brown4be44fc2005-08-05 00:44:28 -0400304 if ((table_type > ACPI_TABLE_MAX) ||
305 (ACPI_IS_SINGLE_TABLE(acpi_gbl_table_data[table_type].flags) &&
306 instance > 1)) {
307 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 }
309
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 /* Get a pointer to the entire table */
311
Len Brown4be44fc2005-08-05 00:44:28 -0400312 status = acpi_tb_get_table_ptr(table_type, instance, &tbl_ptr);
313 if (ACPI_FAILURE(status)) {
314 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 }
316
Robert Moore44f6c012005-04-18 22:49:35 -0400317 /* The function will return a NULL pointer if the table is not loaded */
318
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 if (tbl_ptr == NULL) {
Len Brown4be44fc2005-08-05 00:44:28 -0400320 return_ACPI_STATUS(AE_NOT_EXIST);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 }
322
Robert Moore44f6c012005-04-18 22:49:35 -0400323 /* Copy the header to the caller's buffer */
324
Len Brown4be44fc2005-08-05 00:44:28 -0400325 ACPI_MEMCPY((void *)out_table_header, (void *)tbl_ptr,
326 sizeof(struct acpi_table_header));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
Len Brown4be44fc2005-08-05 00:44:28 -0400328 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329}
330
Bob Moore83135242006-10-03 00:00:00 -0400331ACPI_EXPORT_SYMBOL(acpi_get_table_header)
Len Brown4be44fc2005-08-05 00:44:28 -0400332#endif /* ACPI_FUTURE_USAGE */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
334/*******************************************************************************
335 *
336 * FUNCTION: acpi_get_table
337 *
338 * PARAMETERS: table_type - one of the defined table types
339 * Instance - the non zero instance of the table, allows
340 * support for multiple tables of the same type
341 * see acpi_gbl_acpi_table_flag
342 * ret_buffer - pointer to a structure containing a buffer to
343 * receive the table
344 *
345 * RETURN: Status
346 *
347 * DESCRIPTION: This function is called to get an ACPI table. The caller
348 * supplies an out_buffer large enough to contain the entire ACPI
349 * table. The caller should call the acpi_get_table_header function
350 * first to determine the buffer size needed. Upon completion
351 * the out_buffer->Length field will indicate the number of bytes
352 * copied into the out_buffer->buf_ptr buffer. This table will be
353 * a complete table including the header.
354 *
355 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400357acpi_get_table(acpi_table_type table_type,
358 u32 instance, struct acpi_buffer *ret_buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359{
Len Brown4be44fc2005-08-05 00:44:28 -0400360 struct acpi_table_header *tbl_ptr;
361 acpi_status status;
362 acpi_size table_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
Len Brown4be44fc2005-08-05 00:44:28 -0400364 ACPI_FUNCTION_TRACE("acpi_get_table");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
366 /* Parameter validation */
367
368 if (instance == 0) {
Len Brown4be44fc2005-08-05 00:44:28 -0400369 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 }
371
Len Brown4be44fc2005-08-05 00:44:28 -0400372 status = acpi_ut_validate_buffer(ret_buffer);
373 if (ACPI_FAILURE(status)) {
374 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 }
376
377 /* Check the table type and instance */
378
Len Brown4be44fc2005-08-05 00:44:28 -0400379 if ((table_type > ACPI_TABLE_MAX) ||
380 (ACPI_IS_SINGLE_TABLE(acpi_gbl_table_data[table_type].flags) &&
381 instance > 1)) {
382 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 }
384
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 /* Get a pointer to the entire table */
386
Len Brown4be44fc2005-08-05 00:44:28 -0400387 status = acpi_tb_get_table_ptr(table_type, instance, &tbl_ptr);
388 if (ACPI_FAILURE(status)) {
389 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 }
391
392 /*
393 * acpi_tb_get_table_ptr will return a NULL pointer if the
394 * table is not loaded.
395 */
396 if (tbl_ptr == NULL) {
Len Brown4be44fc2005-08-05 00:44:28 -0400397 return_ACPI_STATUS(AE_NOT_EXIST);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 }
399
400 /* Get the table length */
401
402 if (table_type == ACPI_TABLE_RSDP) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400403
Robert Moore44f6c012005-04-18 22:49:35 -0400404 /* RSD PTR is the only "table" without a header */
405
Len Brown4be44fc2005-08-05 00:44:28 -0400406 table_length = sizeof(struct rsdp_descriptor);
407 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 table_length = (acpi_size) tbl_ptr->length;
409 }
410
411 /* Validate/Allocate/Clear caller buffer */
412
Len Brown4be44fc2005-08-05 00:44:28 -0400413 status = acpi_ut_initialize_buffer(ret_buffer, table_length);
414 if (ACPI_FAILURE(status)) {
415 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 }
417
418 /* Copy the table to the buffer */
419
Len Brown4be44fc2005-08-05 00:44:28 -0400420 ACPI_MEMCPY((void *)ret_buffer->pointer, (void *)tbl_ptr, table_length);
421 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
Bob Moore83135242006-10-03 00:00:00 -0400424ACPI_EXPORT_SYMBOL(acpi_get_table)