ACPI: ACPICA 20060421
[linux-2.6/btrfs-unstable.git] / drivers / acpi / tables / tbutils.c
blob5f14403765140a4affad0235162eacbc337c6be5
1 /******************************************************************************
3 * Module Name: tbutils - Table manipulation utilities
5 *****************************************************************************/
7 /*
8 * Copyright (C) 2000 - 2006, R. Byron Moore
9 * All rights reserved.
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.
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.
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.
44 #include <acpi/acpi.h>
45 #include <acpi/actables.h>
47 #define _COMPONENT ACPI_TABLES
48 ACPI_MODULE_NAME("tbutils")
50 /* Local prototypes */
51 #ifdef ACPI_OBSOLETE_FUNCTIONS
52 acpi_status
53 acpi_tb_handle_to_object(u16 table_id, struct acpi_table_desc **table_desc);
54 #endif
56 /*******************************************************************************
58 * FUNCTION: acpi_tb_is_table_installed
60 * PARAMETERS: new_table_desc - Descriptor for new table being installed
62 * RETURN: Status - AE_ALREADY_EXISTS if the table is already installed
64 * DESCRIPTION: Determine if an ACPI table is already installed
66 * MUTEX: Table data structures should be locked
68 ******************************************************************************/
70 acpi_status acpi_tb_is_table_installed(struct acpi_table_desc *new_table_desc)
72 struct acpi_table_desc *table_desc;
74 ACPI_FUNCTION_TRACE(tb_is_table_installed);
76 /* Get the list descriptor and first table descriptor */
78 table_desc = acpi_gbl_table_lists[new_table_desc->type].next;
80 /* Examine all installed tables of this type */
82 while (table_desc) {
84 * If the table lengths match, perform a full bytewise compare. This
85 * means that we will allow tables with duplicate oem_table_id(s), as
86 * long as the tables are different in some way.
88 * Checking if the table has been loaded into the namespace means that
89 * we don't check for duplicate tables during the initial installation
90 * of tables within the RSDT/XSDT.
92 if ((table_desc->loaded_into_namespace) &&
93 (table_desc->pointer->length ==
94 new_table_desc->pointer->length)
96 (!ACPI_MEMCMP
97 (table_desc->pointer, new_table_desc->pointer,
98 new_table_desc->pointer->length))) {
100 /* Match: this table is already installed */
102 ACPI_DEBUG_PRINT((ACPI_DB_TABLES,
103 "Table [%4.4s] already installed: Rev %X OemTableId [%8.8s]\n",
104 new_table_desc->pointer->signature,
105 new_table_desc->pointer->revision,
106 new_table_desc->pointer->
107 oem_table_id));
109 new_table_desc->owner_id = table_desc->owner_id;
110 new_table_desc->installed_desc = table_desc;
112 return_ACPI_STATUS(AE_ALREADY_EXISTS);
115 /* Get next table on the list */
117 table_desc = table_desc->next;
120 return_ACPI_STATUS(AE_OK);
123 /*******************************************************************************
125 * FUNCTION: acpi_tb_validate_table_header
127 * PARAMETERS: table_header - Logical pointer to the table
129 * RETURN: Status
131 * DESCRIPTION: Check an ACPI table header for validity
133 * NOTE: Table pointers are validated as follows:
134 * 1) Table pointer must point to valid physical memory
135 * 2) Signature must be 4 ASCII chars, even if we don't recognize the
136 * name
137 * 3) Table must be readable for length specified in the header
138 * 4) Table checksum must be valid (with the exception of the FACS
139 * which has no checksum because it contains variable fields)
141 ******************************************************************************/
143 acpi_status
144 acpi_tb_validate_table_header(struct acpi_table_header *table_header)
146 acpi_name signature;
148 ACPI_FUNCTION_ENTRY();
150 /* Verify that this is a valid address */
152 if (!acpi_os_readable(table_header, sizeof(struct acpi_table_header))) {
153 ACPI_ERROR((AE_INFO,
154 "Cannot read table header at %p", table_header));
156 return (AE_BAD_ADDRESS);
159 /* Ensure that the signature is 4 ASCII characters */
161 ACPI_MOVE_32_TO_32(&signature, table_header->signature);
162 if (!acpi_ut_valid_acpi_name(signature)) {
163 ACPI_ERROR((AE_INFO,
164 "Table signature at %p [%p] has invalid characters",
165 table_header, &signature));
167 ACPI_WARNING((AE_INFO, "Invalid table signature found: [%4.4s]",
168 ACPI_CAST_PTR(char, &signature)));
170 ACPI_DUMP_BUFFER(table_header,
171 sizeof(struct acpi_table_header));
172 return (AE_BAD_SIGNATURE);
175 /* Validate the table length */
177 if (table_header->length < sizeof(struct acpi_table_header)) {
178 ACPI_ERROR((AE_INFO,
179 "Invalid length in table header %p name %4.4s",
180 table_header, (char *)&signature));
182 ACPI_WARNING((AE_INFO,
183 "Invalid table header length (0x%X) found",
184 (u32) table_header->length));
186 ACPI_DUMP_BUFFER(table_header,
187 sizeof(struct acpi_table_header));
188 return (AE_BAD_HEADER);
191 return (AE_OK);
194 /*******************************************************************************
196 * FUNCTION: acpi_tb_sum_table
198 * PARAMETERS: Buffer - Buffer to sum
199 * Length - Size of the buffer
201 * RETURN: 8 bit sum of buffer
203 * DESCRIPTION: Computes an 8 bit sum of the buffer(length) and returns it.
205 ******************************************************************************/
207 u8 acpi_tb_sum_table(void *buffer, u32 length)
209 acpi_native_uint i;
210 u8 sum = 0;
212 if (!buffer || !length) {
213 return (0);
216 for (i = 0; i < length; i++) {
217 sum = (u8) (sum + ((u8 *) buffer)[i]);
219 return (sum);
222 /*******************************************************************************
224 * FUNCTION: acpi_tb_generate_checksum
226 * PARAMETERS: Table - Pointer to a valid ACPI table (with a
227 * standard ACPI header)
229 * RETURN: 8 bit checksum of buffer
231 * DESCRIPTION: Computes an 8 bit checksum of the table.
233 ******************************************************************************/
235 u8 acpi_tb_generate_checksum(struct acpi_table_header * table)
237 u8 checksum;
239 /* Sum the entire table as-is */
241 checksum = acpi_tb_sum_table(table, table->length);
243 /* Subtract off the existing checksum value in the table */
245 checksum = (u8) (checksum - table->checksum);
247 /* Compute the final checksum */
249 checksum = (u8) (0 - checksum);
250 return (checksum);
253 /*******************************************************************************
255 * FUNCTION: acpi_tb_set_checksum
257 * PARAMETERS: Table - Pointer to a valid ACPI table (with a
258 * standard ACPI header)
260 * RETURN: None. Sets the table checksum field
262 * DESCRIPTION: Computes an 8 bit checksum of the table and inserts the
263 * checksum into the table header.
265 ******************************************************************************/
267 void acpi_tb_set_checksum(struct acpi_table_header *table)
270 table->checksum = acpi_tb_generate_checksum(table);
273 /*******************************************************************************
275 * FUNCTION: acpi_tb_verify_table_checksum
277 * PARAMETERS: *table_header - ACPI table to verify
279 * RETURN: 8 bit checksum of table
281 * DESCRIPTION: Generates an 8 bit checksum of table and returns and compares
282 * it to the existing checksum value.
284 ******************************************************************************/
286 acpi_status
287 acpi_tb_verify_table_checksum(struct acpi_table_header *table_header)
289 u8 checksum;
291 ACPI_FUNCTION_TRACE(tb_verify_table_checksum);
293 /* Compute the checksum on the table */
295 checksum = acpi_tb_generate_checksum(table_header);
297 /* Checksum ok? */
299 if (checksum == table_header->checksum) {
300 return_ACPI_STATUS(AE_OK);
303 ACPI_WARNING((AE_INFO,
304 "Incorrect checksum in table [%4.4s] - is %2.2X, should be %2.2X",
305 table_header->signature, table_header->checksum,
306 checksum));
308 return_ACPI_STATUS(AE_BAD_CHECKSUM);
311 #ifdef ACPI_OBSOLETE_FUNCTIONS
312 /*******************************************************************************
314 * FUNCTION: acpi_tb_handle_to_object
316 * PARAMETERS: table_id - Id for which the function is searching
317 * table_desc - Pointer to return the matching table
318 * descriptor.
320 * RETURN: Search the tables to find one with a matching table_id and
321 * return a pointer to that table descriptor.
323 ******************************************************************************/
325 acpi_status
326 acpi_tb_handle_to_object(u16 table_id,
327 struct acpi_table_desc **return_table_desc)
329 u32 i;
330 struct acpi_table_desc *table_desc;
332 ACPI_FUNCTION_NAME(tb_handle_to_object);
334 for (i = 0; i < ACPI_TABLE_MAX; i++) {
335 table_desc = acpi_gbl_table_lists[i].next;
336 while (table_desc) {
337 if (table_desc->table_id == table_id) {
338 *return_table_desc = table_desc;
339 return (AE_OK);
342 table_desc = table_desc->next;
346 ACPI_ERROR((AE_INFO, "TableId=%X does not exist", table_id));
347 return (AE_BAD_PARAMETER);
349 #endif