[ACPI] ACPICA 20060113
[pandora-kernel.git] / drivers / acpi / tables / tbxface.c
1 /******************************************************************************
2  *
3  * Module Name: tbxface - Public interfaces to the ACPI subsystem
4  *                         ACPI table oriented interfaces
5  *
6  *****************************************************************************/
7
8 /*
9  * Copyright (C) 2000 - 2006, R. Byron Moore
10  * 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
45 #include <linux/module.h>
46
47 #include <acpi/acpi.h>
48 #include <acpi/acnamesp.h>
49 #include <acpi/actables.h>
50
51 #define _COMPONENT          ACPI_TABLES
52 ACPI_MODULE_NAME("tbxface")
53
54 /*******************************************************************************
55  *
56  * FUNCTION:    acpi_load_tables
57  *
58  * PARAMETERS:  None
59  *
60  * RETURN:      Status
61  *
62  * DESCRIPTION: This function is called to load the ACPI tables from the
63  *              provided RSDT
64  *
65  ******************************************************************************/
66 acpi_status acpi_load_tables(void)
67 {
68         struct acpi_pointer rsdp_address;
69         acpi_status status;
70
71         ACPI_FUNCTION_TRACE("acpi_load_tables");
72
73         /* Get the RSDP */
74
75         status = acpi_os_get_root_pointer(ACPI_LOGICAL_ADDRESSING,
76                                           &rsdp_address);
77         if (ACPI_FAILURE(status)) {
78                 ACPI_REPORT_ERROR(("Could not get RSDP, %s\n",
79                                    acpi_format_exception(status)));
80                 goto error_exit;
81         }
82
83         /* Map and validate the RSDP */
84
85         acpi_gbl_table_flags = rsdp_address.pointer_type;
86
87         status = acpi_tb_verify_rsdp(&rsdp_address);
88         if (ACPI_FAILURE(status)) {
89                 ACPI_REPORT_ERROR(("RSDP Failed validation: %s\n",
90                                    acpi_format_exception(status)));
91                 goto error_exit;
92         }
93
94         /* Get the RSDT via the RSDP */
95
96         status = acpi_tb_get_table_rsdt();
97         if (ACPI_FAILURE(status)) {
98                 ACPI_REPORT_ERROR(("Could not load RSDT: %s\n",
99                                    acpi_format_exception(status)));
100                 goto error_exit;
101         }
102
103         /* Now get the tables needed by this subsystem (FADT, DSDT, etc.) */
104
105         status = acpi_tb_get_required_tables();
106         if (ACPI_FAILURE(status)) {
107                 ACPI_REPORT_ERROR(("Could not get all required tables (DSDT/FADT/FACS): %s\n", acpi_format_exception(status)));
108                 goto error_exit;
109         }
110
111         ACPI_DEBUG_PRINT((ACPI_DB_INIT, "ACPI Tables successfully acquired\n"));
112
113         /* Load the namespace from the tables */
114
115         status = acpi_ns_load_namespace();
116         if (ACPI_FAILURE(status)) {
117                 ACPI_REPORT_ERROR(("Could not load namespace: %s\n",
118                                    acpi_format_exception(status)));
119                 goto error_exit;
120         }
121
122         return_ACPI_STATUS(AE_OK);
123
124       error_exit:
125         ACPI_REPORT_ERROR(("Could not load tables: %s\n",
126                            acpi_format_exception(status)));
127
128         return_ACPI_STATUS(status);
129 }
130
131 #ifdef ACPI_FUTURE_USAGE
132 /*******************************************************************************
133  *
134  * FUNCTION:    acpi_load_table
135  *
136  * PARAMETERS:  table_ptr       - pointer to a buffer containing the entire
137  *                                table to be loaded
138  *
139  * RETURN:      Status
140  *
141  * DESCRIPTION: This function is called to load a table from the caller's
142  *              buffer.  The buffer must contain an entire ACPI Table including
143  *              a valid header.  The header fields will be verified, and if it
144  *              is determined that the table is invalid, the call will fail.
145  *
146  ******************************************************************************/
147
148 acpi_status acpi_load_table(struct acpi_table_header *table_ptr)
149 {
150         acpi_status status;
151         struct acpi_table_desc table_info;
152         struct acpi_pointer address;
153
154         ACPI_FUNCTION_TRACE("acpi_load_table");
155
156         if (!table_ptr) {
157                 return_ACPI_STATUS(AE_BAD_PARAMETER);
158         }
159
160         /* Copy the table to a local buffer */
161
162         address.pointer_type = ACPI_LOGICAL_POINTER | ACPI_LOGICAL_ADDRESSING;
163         address.pointer.logical = table_ptr;
164
165         status = acpi_tb_get_table_body(&address, table_ptr, &table_info);
166         if (ACPI_FAILURE(status)) {
167                 return_ACPI_STATUS(status);
168         }
169
170         /* Check signature for a valid table type */
171
172         status = acpi_tb_recognize_table(&table_info, ACPI_TABLE_ALL);
173         if (ACPI_FAILURE(status)) {
174                 return_ACPI_STATUS(status);
175         }
176
177         /* Install the new table into the local data structures */
178
179         status = acpi_tb_install_table(&table_info);
180         if (ACPI_FAILURE(status)) {
181                 if (status == AE_ALREADY_EXISTS) {
182                         /* Table already exists, no error */
183
184                         status = AE_OK;
185                 }
186
187                 /* Free table allocated by acpi_tb_get_table_body */
188
189                 acpi_tb_delete_single_table(&table_info);
190                 return_ACPI_STATUS(status);
191         }
192
193         /* Convert the table to common format if necessary */
194
195         switch (table_info.type) {
196         case ACPI_TABLE_FADT:
197
198                 status = acpi_tb_convert_table_fadt();
199                 break;
200
201         case ACPI_TABLE_FACS:
202
203                 status = acpi_tb_build_common_facs(&table_info);
204                 break;
205
206         default:
207                 /* Load table into namespace if it contains executable AML */
208
209                 status =
210                     acpi_ns_load_table(table_info.installed_desc,
211                                        acpi_gbl_root_node);
212                 break;
213         }
214
215         if (ACPI_FAILURE(status)) {
216                 /* Uninstall table and free the buffer */
217
218                 (void)acpi_tb_uninstall_table(table_info.installed_desc);
219         }
220
221         return_ACPI_STATUS(status);
222 }
223
224 /*******************************************************************************
225  *
226  * FUNCTION:    acpi_unload_table
227  *
228  * PARAMETERS:  table_type    - Type of table to be unloaded
229  *
230  * RETURN:      Status
231  *
232  * DESCRIPTION: This routine is used to force the unload of a table
233  *
234  ******************************************************************************/
235
236 acpi_status acpi_unload_table(acpi_table_type table_type)
237 {
238         struct acpi_table_desc *table_desc;
239
240         ACPI_FUNCTION_TRACE("acpi_unload_table");
241
242         /* Parameter validation */
243
244         if (table_type > ACPI_TABLE_MAX) {
245                 return_ACPI_STATUS(AE_BAD_PARAMETER);
246         }
247
248         /* Find all tables of the requested type */
249
250         table_desc = acpi_gbl_table_lists[table_type].next;
251         while (table_desc) {
252                 /*
253                  * Delete all namespace entries owned by this table.  Note that these
254                  * entries can appear anywhere in the namespace by virtue of the AML
255                  * "Scope" operator.  Thus, we need to track ownership by an ID, not
256                  * simply a position within the hierarchy
257                  */
258                 acpi_ns_delete_namespace_by_owner(table_desc->owner_id);
259                 acpi_ut_release_owner_id(&table_desc->owner_id);
260                 table_desc = table_desc->next;
261         }
262
263         /* Delete (or unmap) all tables of this type */
264
265         acpi_tb_delete_tables_by_type(table_type);
266         return_ACPI_STATUS(AE_OK);
267 }
268
269 /*******************************************************************************
270  *
271  * FUNCTION:    acpi_get_table_header
272  *
273  * PARAMETERS:  table_type      - one of the defined table types
274  *              Instance        - the non zero instance of the table, allows
275  *                                support for multiple tables of the same type
276  *                                see acpi_gbl_acpi_table_flag
277  *              out_table_header - pointer to the struct acpi_table_header if successful
278  *
279  * DESCRIPTION: This function is called to get an ACPI table header.  The caller
280  *              supplies an pointer to a data area sufficient to contain an ACPI
281  *              struct acpi_table_header structure.
282  *
283  *              The header contains a length field that can be used to determine
284  *              the size of the buffer needed to contain the entire table.  This
285  *              function is not valid for the RSD PTR table since it does not
286  *              have a standard header and is fixed length.
287  *
288  ******************************************************************************/
289
290 acpi_status
291 acpi_get_table_header(acpi_table_type table_type,
292                       u32 instance, struct acpi_table_header *out_table_header)
293 {
294         struct acpi_table_header *tbl_ptr;
295         acpi_status status;
296
297         ACPI_FUNCTION_TRACE("acpi_get_table_header");
298
299         if ((instance == 0) ||
300             (table_type == ACPI_TABLE_RSDP) || (!out_table_header)) {
301                 return_ACPI_STATUS(AE_BAD_PARAMETER);
302         }
303
304         /* Check the table type and instance */
305
306         if ((table_type > ACPI_TABLE_MAX) ||
307             (ACPI_IS_SINGLE_TABLE(acpi_gbl_table_data[table_type].flags) &&
308              instance > 1)) {
309                 return_ACPI_STATUS(AE_BAD_PARAMETER);
310         }
311
312         /* Get a pointer to the entire table */
313
314         status = acpi_tb_get_table_ptr(table_type, instance, &tbl_ptr);
315         if (ACPI_FAILURE(status)) {
316                 return_ACPI_STATUS(status);
317         }
318
319         /* The function will return a NULL pointer if the table is not loaded */
320
321         if (tbl_ptr == NULL) {
322                 return_ACPI_STATUS(AE_NOT_EXIST);
323         }
324
325         /* Copy the header to the caller's buffer */
326
327         ACPI_MEMCPY((void *)out_table_header, (void *)tbl_ptr,
328                     sizeof(struct acpi_table_header));
329
330         return_ACPI_STATUS(status);
331 }
332
333 #endif                          /*  ACPI_FUTURE_USAGE  */
334
335 /*******************************************************************************
336  *
337  * FUNCTION:    acpi_get_table
338  *
339  * PARAMETERS:  table_type      - one of the defined table types
340  *              Instance        - the non zero instance of the table, allows
341  *                                support for multiple tables of the same type
342  *                                see acpi_gbl_acpi_table_flag
343  *              ret_buffer      - pointer to a structure containing a buffer to
344  *                                receive the table
345  *
346  * RETURN:      Status
347  *
348  * DESCRIPTION: This function is called to get an ACPI table.  The caller
349  *              supplies an out_buffer large enough to contain the entire ACPI
350  *              table.  The caller should call the acpi_get_table_header function
351  *              first to determine the buffer size needed.  Upon completion
352  *              the out_buffer->Length field will indicate the number of bytes
353  *              copied into the out_buffer->buf_ptr buffer. This table will be
354  *              a complete table including the header.
355  *
356  ******************************************************************************/
357
358 acpi_status
359 acpi_get_table(acpi_table_type table_type,
360                u32 instance, struct acpi_buffer *ret_buffer)
361 {
362         struct acpi_table_header *tbl_ptr;
363         acpi_status status;
364         acpi_size table_length;
365
366         ACPI_FUNCTION_TRACE("acpi_get_table");
367
368         /* Parameter validation */
369
370         if (instance == 0) {
371                 return_ACPI_STATUS(AE_BAD_PARAMETER);
372         }
373
374         status = acpi_ut_validate_buffer(ret_buffer);
375         if (ACPI_FAILURE(status)) {
376                 return_ACPI_STATUS(status);
377         }
378
379         /* Check the table type and instance */
380
381         if ((table_type > ACPI_TABLE_MAX) ||
382             (ACPI_IS_SINGLE_TABLE(acpi_gbl_table_data[table_type].flags) &&
383              instance > 1)) {
384                 return_ACPI_STATUS(AE_BAD_PARAMETER);
385         }
386
387         /* Get a pointer to the entire table */
388
389         status = acpi_tb_get_table_ptr(table_type, instance, &tbl_ptr);
390         if (ACPI_FAILURE(status)) {
391                 return_ACPI_STATUS(status);
392         }
393
394         /*
395          * acpi_tb_get_table_ptr will return a NULL pointer if the
396          * table is not loaded.
397          */
398         if (tbl_ptr == NULL) {
399                 return_ACPI_STATUS(AE_NOT_EXIST);
400         }
401
402         /* Get the table length */
403
404         if (table_type == ACPI_TABLE_RSDP) {
405                 /* RSD PTR is the only "table" without a header */
406
407                 table_length = sizeof(struct rsdp_descriptor);
408         } else {
409                 table_length = (acpi_size) tbl_ptr->length;
410         }
411
412         /* Validate/Allocate/Clear caller buffer */
413
414         status = acpi_ut_initialize_buffer(ret_buffer, table_length);
415         if (ACPI_FAILURE(status)) {
416                 return_ACPI_STATUS(status);
417         }
418
419         /* Copy the table to the buffer */
420
421         ACPI_MEMCPY((void *)ret_buffer->pointer, (void *)tbl_ptr, table_length);
422         return_ACPI_STATUS(AE_OK);
423 }
424
425 EXPORT_SYMBOL(acpi_get_table);