V4L/DVB (4361): Cx88: add support for Norwood PCI TV Tuner (non-pro)
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / acpi / tables / tbxface.c
blob7767987be15a0d517acf10fa5b6327b203e08f23
1 /******************************************************************************
3 * Module Name: tbxface - Public interfaces to the ACPI subsystem
4 * ACPI table oriented interfaces
6 *****************************************************************************/
8 /*
9 * Copyright (C) 2000 - 2006, R. Byron Moore
10 * All rights reserved.
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.
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.
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.
45 #include <acpi/acpi.h>
46 #include <acpi/acnamesp.h>
47 #include <acpi/actables.h>
49 #define _COMPONENT ACPI_TABLES
50 ACPI_MODULE_NAME("tbxface")
52 /*******************************************************************************
54 * FUNCTION: acpi_load_tables
56 * PARAMETERS: None
58 * RETURN: Status
60 * DESCRIPTION: This function is called to load the ACPI tables from the
61 * provided RSDT
63 ******************************************************************************/
64 acpi_status acpi_load_tables(void)
66 struct acpi_pointer rsdp_address;
67 acpi_status status;
69 ACPI_FUNCTION_TRACE(acpi_load_tables);
71 /* Get the RSDP */
73 status = acpi_os_get_root_pointer(ACPI_LOGICAL_ADDRESSING,
74 &rsdp_address);
75 if (ACPI_FAILURE(status)) {
76 ACPI_EXCEPTION((AE_INFO, status, "Could not get the RSDP"));
77 goto error_exit;
80 /* Map and validate the RSDP */
82 acpi_gbl_table_flags = rsdp_address.pointer_type;
84 status = acpi_tb_verify_rsdp(&rsdp_address);
85 if (ACPI_FAILURE(status)) {
86 ACPI_EXCEPTION((AE_INFO, status, "During RSDP validation"));
87 goto error_exit;
90 /* Get the RSDT via the RSDP */
92 status = acpi_tb_get_table_rsdt();
93 if (ACPI_FAILURE(status)) {
94 ACPI_EXCEPTION((AE_INFO, status, "Could not load RSDT"));
95 goto error_exit;
98 /* Now get the tables needed by this subsystem (FADT, DSDT, etc.) */
100 status = acpi_tb_get_required_tables();
101 if (ACPI_FAILURE(status)) {
102 ACPI_EXCEPTION((AE_INFO, status,
103 "Could not get all required tables (DSDT/FADT/FACS)"));
104 goto error_exit;
107 ACPI_DEBUG_PRINT((ACPI_DB_INIT, "ACPI Tables successfully acquired\n"));
109 /* Load the namespace from the tables */
111 status = acpi_ns_load_namespace();
112 if (ACPI_FAILURE(status)) {
113 ACPI_EXCEPTION((AE_INFO, status, "Could not load namespace"));
114 goto error_exit;
117 return_ACPI_STATUS(AE_OK);
119 error_exit:
120 ACPI_EXCEPTION((AE_INFO, status, "Could not load tables"));
121 return_ACPI_STATUS(status);
124 ACPI_EXPORT_SYMBOL(acpi_load_tables)
126 #ifdef ACPI_FUTURE_USAGE
127 /*******************************************************************************
129 * FUNCTION: acpi_load_table
131 * PARAMETERS: table_ptr - pointer to a buffer containing the entire
132 * table to be loaded
134 * RETURN: Status
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.
141 ******************************************************************************/
142 acpi_status acpi_load_table(struct acpi_table_header *table_ptr)
144 acpi_status status;
145 struct acpi_table_desc table_info;
146 struct acpi_pointer address;
148 ACPI_FUNCTION_TRACE(acpi_load_table);
150 if (!table_ptr) {
151 return_ACPI_STATUS(AE_BAD_PARAMETER);
154 /* Copy the table to a local buffer */
156 address.pointer_type = ACPI_LOGICAL_POINTER | ACPI_LOGICAL_ADDRESSING;
157 address.pointer.logical = table_ptr;
159 status = acpi_tb_get_table_body(&address, table_ptr, &table_info);
160 if (ACPI_FAILURE(status)) {
161 return_ACPI_STATUS(status);
164 /* Check signature for a valid table type */
166 status = acpi_tb_recognize_table(&table_info, ACPI_TABLE_ALL);
167 if (ACPI_FAILURE(status)) {
168 return_ACPI_STATUS(status);
171 /* Install the new table into the local data structures */
173 status = acpi_tb_install_table(&table_info);
174 if (ACPI_FAILURE(status)) {
175 if (status == AE_ALREADY_EXISTS) {
177 /* Table already exists, no error */
179 status = AE_OK;
182 /* Free table allocated by acpi_tb_get_table_body */
184 acpi_tb_delete_single_table(&table_info);
185 return_ACPI_STATUS(status);
188 /* Convert the table to common format if necessary */
190 switch (table_info.type) {
191 case ACPI_TABLE_ID_FADT:
193 status = acpi_tb_convert_table_fadt();
194 break;
196 case ACPI_TABLE_ID_FACS:
198 status = acpi_tb_build_common_facs(&table_info);
199 break;
201 default:
202 /* Load table into namespace if it contains executable AML */
204 status =
205 acpi_ns_load_table(table_info.installed_desc,
206 acpi_gbl_root_node);
207 break;
210 if (ACPI_FAILURE(status)) {
212 /* Uninstall table and free the buffer */
214 (void)acpi_tb_uninstall_table(table_info.installed_desc);
217 return_ACPI_STATUS(status);
220 ACPI_EXPORT_SYMBOL(acpi_load_table)
222 /*******************************************************************************
224 * FUNCTION: acpi_unload_table
226 * PARAMETERS: table_type - Type of table to be unloaded
228 * RETURN: Status
230 * DESCRIPTION: This routine is used to force the unload of a table
232 ******************************************************************************/
233 acpi_status acpi_unload_table(acpi_table_type table_type)
235 struct acpi_table_desc *table_desc;
237 ACPI_FUNCTION_TRACE(acpi_unload_table);
239 /* Parameter validation */
241 if (table_type > ACPI_TABLE_ID_MAX) {
242 return_ACPI_STATUS(AE_BAD_PARAMETER);
245 /* Find all tables of the requested type */
247 table_desc = acpi_gbl_table_lists[table_type].next;
248 if (!table_desc) {
249 return_ACPI_STATUS(AE_NOT_EXIST);
252 while (table_desc) {
254 * 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
257 * simply a position within the hierarchy
259 acpi_ns_delete_namespace_by_owner(table_desc->owner_id);
260 table_desc = table_desc->next;
263 /* Delete (or unmap) all tables of this type */
265 acpi_tb_delete_tables_by_type(table_type);
266 return_ACPI_STATUS(AE_OK);
269 ACPI_EXPORT_SYMBOL(acpi_unload_table)
271 /*******************************************************************************
273 * FUNCTION: acpi_get_table_header
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
281 * DESCRIPTION: This function is called to get an ACPI table header. The caller
282 * supplies an pointer to a data area sufficient to contain an ACPI
283 * struct acpi_table_header structure.
285 * The header contains a length field that can be used to determine
286 * the size of the buffer needed to contain the entire table. This
287 * function is not valid for the RSD PTR table since it does not
288 * have a standard header and is fixed length.
290 ******************************************************************************/
291 acpi_status
292 acpi_get_table_header(acpi_table_type table_type,
293 u32 instance, struct acpi_table_header *out_table_header)
295 struct acpi_table_header *tbl_ptr;
296 acpi_status status;
298 ACPI_FUNCTION_TRACE(acpi_get_table_header);
300 if ((instance == 0) ||
301 (table_type == ACPI_TABLE_ID_RSDP) || (!out_table_header)) {
302 return_ACPI_STATUS(AE_BAD_PARAMETER);
305 /* Check the table type and instance */
307 if ((table_type > ACPI_TABLE_ID_MAX) ||
308 (ACPI_IS_SINGLE_TABLE(acpi_gbl_table_data[table_type].flags) &&
309 instance > 1)) {
310 return_ACPI_STATUS(AE_BAD_PARAMETER);
313 /* Get a pointer to the entire table */
315 status = acpi_tb_get_table_ptr(table_type, instance, &tbl_ptr);
316 if (ACPI_FAILURE(status)) {
317 return_ACPI_STATUS(status);
320 /* The function will return a NULL pointer if the table is not loaded */
322 if (tbl_ptr == NULL) {
323 return_ACPI_STATUS(AE_NOT_EXIST);
326 /* Copy the header to the caller's buffer */
328 ACPI_MEMCPY(ACPI_CAST_PTR(void, out_table_header),
329 ACPI_CAST_PTR(void, tbl_ptr),
330 sizeof(struct acpi_table_header));
332 return_ACPI_STATUS(status);
335 ACPI_EXPORT_SYMBOL(acpi_get_table_header)
336 #endif /* ACPI_FUTURE_USAGE */
338 /*******************************************************************************
340 * FUNCTION: acpi_get_table
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
349 * RETURN: Status
351 * DESCRIPTION: This function is called to get an ACPI table. The caller
352 * supplies an out_buffer large enough to contain the entire ACPI
353 * table. The caller should call the acpi_get_table_header function
354 * first to determine the buffer size needed. Upon completion
355 * 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.
359 ******************************************************************************/
360 acpi_status
361 acpi_get_table(acpi_table_type table_type,
362 u32 instance, struct acpi_buffer *ret_buffer)
364 struct acpi_table_header *tbl_ptr;
365 acpi_status status;
366 acpi_size table_length;
368 ACPI_FUNCTION_TRACE(acpi_get_table);
370 /* Parameter validation */
372 if (instance == 0) {
373 return_ACPI_STATUS(AE_BAD_PARAMETER);
376 status = acpi_ut_validate_buffer(ret_buffer);
377 if (ACPI_FAILURE(status)) {
378 return_ACPI_STATUS(status);
381 /* Check the table type and instance */
383 if ((table_type > ACPI_TABLE_ID_MAX) ||
384 (ACPI_IS_SINGLE_TABLE(acpi_gbl_table_data[table_type].flags) &&
385 instance > 1)) {
386 return_ACPI_STATUS(AE_BAD_PARAMETER);
389 /* Get a pointer to the entire table */
391 status = acpi_tb_get_table_ptr(table_type, instance, &tbl_ptr);
392 if (ACPI_FAILURE(status)) {
393 return_ACPI_STATUS(status);
397 * acpi_tb_get_table_ptr will return a NULL pointer if the
398 * table is not loaded.
400 if (tbl_ptr == NULL) {
401 return_ACPI_STATUS(AE_NOT_EXIST);
404 /* Get the table length */
406 if (table_type == ACPI_TABLE_ID_RSDP) {
408 /* RSD PTR is the only "table" without a header */
410 table_length = sizeof(struct rsdp_descriptor);
411 } else {
412 table_length = (acpi_size) tbl_ptr->length;
415 /* Validate/Allocate/Clear caller buffer */
417 status = acpi_ut_initialize_buffer(ret_buffer, table_length);
418 if (ACPI_FAILURE(status)) {
419 return_ACPI_STATUS(status);
422 /* Copy the table to the buffer */
424 ACPI_MEMCPY(ACPI_CAST_PTR(void, ret_buffer->pointer),
425 ACPI_CAST_PTR(void, tbl_ptr), table_length);
427 return_ACPI_STATUS(AE_OK);
430 ACPI_EXPORT_SYMBOL(acpi_get_table)