blob: 7767987be15a0d517acf10fa5b6327b203e08f23 [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
Bob Mooreb229cf92006-04-21 17:15:00 -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
Bob Mooref6dd9222006-07-07 20:44:38 -0400137 * buffer. The buffer must contain an entire ACPI Table including
138 * a valid header. The header fields will be verified, and if it
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 * 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
Bob Mooreb229cf92006-04-21 17:15:00 -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) {
Bob Mooreb229cf92006-04-21 17:15:00 -0400191 case ACPI_TABLE_ID_FADT:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
Len Brown4be44fc2005-08-05 00:44:28 -0400193 status = acpi_tb_convert_table_fadt();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 break;
195
Bob Mooreb229cf92006-04-21 17:15:00 -0400196 case ACPI_TABLE_ID_FACS:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
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
Bob Mooreb229cf92006-04-21 17:15:00 -0400237 ACPI_FUNCTION_TRACE(acpi_unload_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
239 /* Parameter validation */
240
Bob Mooreb229cf92006-04-21 17:15:00 -0400241 if (table_type > ACPI_TABLE_ID_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;
Bob Mooref6dd9222006-07-07 20:44:38 -0400248 if (!table_desc) {
249 return_ACPI_STATUS(AE_NOT_EXIST);
250 }
251
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 while (table_desc) {
253 /*
Bob Mooref6dd9222006-07-07 20:44:38 -0400254 * Delete all namespace objects owned by this table. Note that these
255 * objects can appear anywhere in the namespace by virtue of the AML
256 * "Scope" operator. Thus, we need to track ownership by an ID, not
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 * simply a position within the hierarchy
258 */
Len Brown4be44fc2005-08-05 00:44:28 -0400259 acpi_ns_delete_namespace_by_owner(table_desc->owner_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 table_desc = table_desc->next;
261 }
262
263 /* Delete (or unmap) all tables of this type */
264
Len Brown4be44fc2005-08-05 00:44:28 -0400265 acpi_tb_delete_tables_by_type(table_type);
266 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267}
268
Bob Moore83135242006-10-03 00:00:00 -0400269ACPI_EXPORT_SYMBOL(acpi_unload_table)
270
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271/*******************************************************************************
272 *
273 * FUNCTION: acpi_get_table_header
274 *
275 * PARAMETERS: table_type - one of the defined table types
276 * Instance - the non zero instance of the table, allows
277 * support for multiple tables of the same type
278 * see acpi_gbl_acpi_table_flag
279 * out_table_header - pointer to the struct acpi_table_header if successful
280 *
Bob Mooref6dd9222006-07-07 20:44:38 -0400281 * DESCRIPTION: This function is called to get an ACPI table header. The caller
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 * supplies an pointer to a data area sufficient to contain an ACPI
283 * struct acpi_table_header structure.
284 *
285 * The header contains a length field that can be used to determine
Bob Mooref6dd9222006-07-07 20:44:38 -0400286 * the size of the buffer needed to contain the entire table. This
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 * function is not valid for the RSD PTR table since it does not
288 * have a standard header and is fixed length.
289 *
290 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400292acpi_get_table_header(acpi_table_type table_type,
293 u32 instance, struct acpi_table_header *out_table_header)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294{
Len Brown4be44fc2005-08-05 00:44:28 -0400295 struct acpi_table_header *tbl_ptr;
296 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
Bob Mooreb229cf92006-04-21 17:15:00 -0400298 ACPI_FUNCTION_TRACE(acpi_get_table_header);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
Len Brown4be44fc2005-08-05 00:44:28 -0400300 if ((instance == 0) ||
Bob Mooreb229cf92006-04-21 17:15:00 -0400301 (table_type == ACPI_TABLE_ID_RSDP) || (!out_table_header)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400302 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 }
304
305 /* Check the table type and instance */
306
Bob Mooreb229cf92006-04-21 17:15:00 -0400307 if ((table_type > ACPI_TABLE_ID_MAX) ||
Len Brown4be44fc2005-08-05 00:44:28 -0400308 (ACPI_IS_SINGLE_TABLE(acpi_gbl_table_data[table_type].flags) &&
309 instance > 1)) {
310 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 }
312
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 /* Get a pointer to the entire table */
314
Len Brown4be44fc2005-08-05 00:44:28 -0400315 status = acpi_tb_get_table_ptr(table_type, instance, &tbl_ptr);
316 if (ACPI_FAILURE(status)) {
317 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 }
319
Robert Moore44f6c012005-04-18 22:49:35 -0400320 /* The function will return a NULL pointer if the table is not loaded */
321
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 if (tbl_ptr == NULL) {
Len Brown4be44fc2005-08-05 00:44:28 -0400323 return_ACPI_STATUS(AE_NOT_EXIST);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 }
325
Robert Moore44f6c012005-04-18 22:49:35 -0400326 /* Copy the header to the caller's buffer */
327
Bob Mooref6dd9222006-07-07 20:44:38 -0400328 ACPI_MEMCPY(ACPI_CAST_PTR(void, out_table_header),
329 ACPI_CAST_PTR(void, tbl_ptr),
Len Brown4be44fc2005-08-05 00:44:28 -0400330 sizeof(struct acpi_table_header));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
Len Brown4be44fc2005-08-05 00:44:28 -0400332 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333}
334
Bob Moore83135242006-10-03 00:00:00 -0400335ACPI_EXPORT_SYMBOL(acpi_get_table_header)
Len Brown4be44fc2005-08-05 00:44:28 -0400336#endif /* ACPI_FUTURE_USAGE */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
338/*******************************************************************************
339 *
340 * FUNCTION: acpi_get_table
341 *
342 * PARAMETERS: table_type - one of the defined table types
343 * Instance - the non zero instance of the table, allows
344 * support for multiple tables of the same type
345 * see acpi_gbl_acpi_table_flag
346 * ret_buffer - pointer to a structure containing a buffer to
347 * receive the table
348 *
349 * RETURN: Status
350 *
Bob Mooref6dd9222006-07-07 20:44:38 -0400351 * DESCRIPTION: This function is called to get an ACPI table. The caller
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 * supplies an out_buffer large enough to contain the entire ACPI
Bob Mooref6dd9222006-07-07 20:44:38 -0400353 * table. The caller should call the acpi_get_table_header function
354 * first to determine the buffer size needed. Upon completion
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 * the out_buffer->Length field will indicate the number of bytes
356 * copied into the out_buffer->buf_ptr buffer. This table will be
357 * a complete table including the header.
358 *
359 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400361acpi_get_table(acpi_table_type table_type,
362 u32 instance, struct acpi_buffer *ret_buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363{
Len Brown4be44fc2005-08-05 00:44:28 -0400364 struct acpi_table_header *tbl_ptr;
365 acpi_status status;
366 acpi_size table_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
Bob Mooreb229cf92006-04-21 17:15:00 -0400368 ACPI_FUNCTION_TRACE(acpi_get_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
370 /* Parameter validation */
371
372 if (instance == 0) {
Len Brown4be44fc2005-08-05 00:44:28 -0400373 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 }
375
Len Brown4be44fc2005-08-05 00:44:28 -0400376 status = acpi_ut_validate_buffer(ret_buffer);
377 if (ACPI_FAILURE(status)) {
378 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 }
380
381 /* Check the table type and instance */
382
Bob Mooreb229cf92006-04-21 17:15:00 -0400383 if ((table_type > ACPI_TABLE_ID_MAX) ||
Len Brown4be44fc2005-08-05 00:44:28 -0400384 (ACPI_IS_SINGLE_TABLE(acpi_gbl_table_data[table_type].flags) &&
385 instance > 1)) {
386 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 }
388
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 /* Get a pointer to the entire table */
390
Len Brown4be44fc2005-08-05 00:44:28 -0400391 status = acpi_tb_get_table_ptr(table_type, instance, &tbl_ptr);
392 if (ACPI_FAILURE(status)) {
393 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 }
395
396 /*
397 * acpi_tb_get_table_ptr will return a NULL pointer if the
398 * table is not loaded.
399 */
400 if (tbl_ptr == NULL) {
Len Brown4be44fc2005-08-05 00:44:28 -0400401 return_ACPI_STATUS(AE_NOT_EXIST);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 }
403
404 /* Get the table length */
405
Bob Mooreb229cf92006-04-21 17:15:00 -0400406 if (table_type == ACPI_TABLE_ID_RSDP) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400407
Robert Moore44f6c012005-04-18 22:49:35 -0400408 /* RSD PTR is the only "table" without a header */
409
Len Brown4be44fc2005-08-05 00:44:28 -0400410 table_length = sizeof(struct rsdp_descriptor);
411 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 table_length = (acpi_size) tbl_ptr->length;
413 }
414
415 /* Validate/Allocate/Clear caller buffer */
416
Len Brown4be44fc2005-08-05 00:44:28 -0400417 status = acpi_ut_initialize_buffer(ret_buffer, table_length);
418 if (ACPI_FAILURE(status)) {
419 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 }
421
422 /* Copy the table to the buffer */
423
Bob Mooref6dd9222006-07-07 20:44:38 -0400424 ACPI_MEMCPY(ACPI_CAST_PTR(void, ret_buffer->pointer),
425 ACPI_CAST_PTR(void, tbl_ptr), table_length);
426
Len Brown4be44fc2005-08-05 00:44:28 -0400427 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
Bob Moore83135242006-10-03 00:00:00 -0400430ACPI_EXPORT_SYMBOL(acpi_get_table)