ACPI: ACPICA 20060331
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / acpi / tables / tbxfroot.c
blob550284f5d1ed46415236afa3b93455a65668aa69
1 /******************************************************************************
3 * Module Name: tbxfroot - Find the root ACPI table (RSDT)
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("tbxfroot")
50 /* Local prototypes */
51 static acpi_status
52 acpi_tb_find_rsdp(struct acpi_table_desc *table_info, u32 flags);
54 static u8 *acpi_tb_scan_memory_for_rsdp(u8 * start_address, u32 length);
56 /*******************************************************************************
58 * FUNCTION: acpi_tb_validate_rsdp
60 * PARAMETERS: Rsdp - Pointer to unvalidated RSDP
62 * RETURN: Status
64 * DESCRIPTION: Validate the RSDP (ptr)
66 ******************************************************************************/
68 acpi_status acpi_tb_validate_rsdp(struct rsdp_descriptor *rsdp)
70 ACPI_FUNCTION_ENTRY();
73 * The signature and checksum must both be correct
75 if (ACPI_STRNCMP((char *)rsdp, RSDP_SIG, sizeof(RSDP_SIG) - 1) != 0) {
77 /* Nope, BAD Signature */
79 return (AE_BAD_SIGNATURE);
82 /* Check the standard checksum */
84 if (acpi_tb_sum_table(rsdp, ACPI_RSDP_CHECKSUM_LENGTH) != 0) {
85 return (AE_BAD_CHECKSUM);
88 /* Check extended checksum if table version >= 2 */
90 if ((rsdp->revision >= 2) &&
91 (acpi_tb_sum_table(rsdp, ACPI_RSDP_XCHECKSUM_LENGTH) != 0)) {
92 return (AE_BAD_CHECKSUM);
95 return (AE_OK);
98 /*******************************************************************************
100 * FUNCTION: acpi_tb_find_table
102 * PARAMETERS: Signature - String with ACPI table signature
103 * oem_id - String with the table OEM ID
104 * oem_table_id - String with the OEM Table ID
105 * table_ptr - Where the table pointer is returned
107 * RETURN: Status
109 * DESCRIPTION: Find an ACPI table (in the RSDT/XSDT) that matches the
110 * Signature, OEM ID and OEM Table ID.
112 ******************************************************************************/
114 acpi_status
115 acpi_tb_find_table(char *signature,
116 char *oem_id,
117 char *oem_table_id, struct acpi_table_header ** table_ptr)
119 acpi_status status;
120 struct acpi_table_header *table;
122 ACPI_FUNCTION_TRACE("tb_find_table");
124 /* Validate string lengths */
126 if ((ACPI_STRLEN(signature) > ACPI_NAME_SIZE) ||
127 (ACPI_STRLEN(oem_id) > sizeof(table->oem_id)) ||
128 (ACPI_STRLEN(oem_table_id) > sizeof(table->oem_table_id))) {
129 return_ACPI_STATUS(AE_AML_STRING_LIMIT);
132 if (!ACPI_STRNCMP(signature, DSDT_SIG, ACPI_NAME_SIZE)) {
134 * The DSDT pointer is contained in the FADT, not the RSDT.
135 * This code should suffice, because the only code that would perform
136 * a "find" on the DSDT is the data_table_region() AML opcode -- in
137 * which case, the DSDT is guaranteed to be already loaded.
138 * If this becomes insufficient, the FADT will have to be found first.
140 if (!acpi_gbl_DSDT) {
141 return_ACPI_STATUS(AE_NO_ACPI_TABLES);
143 table = acpi_gbl_DSDT;
144 } else {
145 /* Find the table */
147 status = acpi_get_firmware_table(signature, 1,
148 ACPI_LOGICAL_ADDRESSING,
149 &table);
150 if (ACPI_FAILURE(status)) {
151 return_ACPI_STATUS(status);
155 /* Check oem_id and oem_table_id */
157 if ((oem_id[0] && ACPI_STRNCMP(oem_id, table->oem_id,
158 sizeof(table->oem_id))) ||
159 (oem_table_id[0] && ACPI_STRNCMP(oem_table_id, table->oem_table_id,
160 sizeof(table->oem_table_id)))) {
161 return_ACPI_STATUS(AE_AML_NAME_NOT_FOUND);
164 ACPI_DEBUG_PRINT((ACPI_DB_TABLES, "Found table [%4.4s]\n",
165 table->signature));
167 *table_ptr = table;
168 return_ACPI_STATUS(AE_OK);
171 /*******************************************************************************
173 * FUNCTION: acpi_get_firmware_table
175 * PARAMETERS: Signature - Any ACPI table signature
176 * Instance - the non zero instance of the table, allows
177 * support for multiple tables of the same type
178 * Flags - Physical/Virtual support
179 * table_pointer - Where a buffer containing the table is
180 * returned
182 * RETURN: Status
184 * DESCRIPTION: This function is called to get an ACPI table. A buffer is
185 * allocated for the table and returned in table_pointer.
186 * This table will be a complete table including the header.
188 ******************************************************************************/
190 acpi_status
191 acpi_get_firmware_table(acpi_string signature,
192 u32 instance,
193 u32 flags, struct acpi_table_header **table_pointer)
195 acpi_status status;
196 struct acpi_pointer address;
197 struct acpi_table_header *header = NULL;
198 struct acpi_table_desc *table_info = NULL;
199 struct acpi_table_desc *rsdt_info;
200 u32 table_count;
201 u32 i;
202 u32 j;
204 ACPI_FUNCTION_TRACE("acpi_get_firmware_table");
207 * Ensure that at least the table manager is initialized. We don't
208 * require that the entire ACPI subsystem is up for this interface.
209 * If we have a buffer, we must have a length too
211 if ((instance == 0) || (!signature) || (!table_pointer)) {
212 return_ACPI_STATUS(AE_BAD_PARAMETER);
215 /* Ensure that we have a RSDP */
217 if (!acpi_gbl_RSDP) {
219 /* Get the RSDP */
221 status = acpi_os_get_root_pointer(flags, &address);
222 if (ACPI_FAILURE(status)) {
223 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "RSDP not found\n"));
224 return_ACPI_STATUS(AE_NO_ACPI_TABLES);
227 /* Map and validate the RSDP */
229 if ((flags & ACPI_MEMORY_MODE) == ACPI_LOGICAL_ADDRESSING) {
230 status = acpi_os_map_memory(address.pointer.physical,
231 sizeof(struct
232 rsdp_descriptor),
233 (void *)&acpi_gbl_RSDP);
234 if (ACPI_FAILURE(status)) {
235 return_ACPI_STATUS(status);
237 } else {
238 acpi_gbl_RSDP = address.pointer.logical;
241 /* The RDSP signature and checksum must both be correct */
243 status = acpi_tb_validate_rsdp(acpi_gbl_RSDP);
244 if (ACPI_FAILURE(status)) {
245 return_ACPI_STATUS(status);
249 /* Get the RSDT address via the RSDP */
251 acpi_tb_get_rsdt_address(&address);
252 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
253 "RSDP located at %p, RSDT physical=%8.8X%8.8X\n",
254 acpi_gbl_RSDP,
255 ACPI_FORMAT_UINT64(address.pointer.value)));
257 /* Insert processor_mode flags */
259 address.pointer_type |= flags;
261 /* Get and validate the RSDT */
263 rsdt_info = ACPI_ALLOCATE_ZEROED(sizeof(struct acpi_table_desc));
264 if (!rsdt_info) {
265 return_ACPI_STATUS(AE_NO_MEMORY);
268 status = acpi_tb_get_table(&address, rsdt_info);
269 if (ACPI_FAILURE(status)) {
270 goto cleanup;
273 status = acpi_tb_validate_rsdt(rsdt_info->pointer);
274 if (ACPI_FAILURE(status)) {
275 goto cleanup;
278 /* Allocate a scratch table header and table descriptor */
280 header = ACPI_ALLOCATE(sizeof(struct acpi_table_header));
281 if (!header) {
282 status = AE_NO_MEMORY;
283 goto cleanup;
286 table_info = ACPI_ALLOCATE(sizeof(struct acpi_table_desc));
287 if (!table_info) {
288 status = AE_NO_MEMORY;
289 goto cleanup;
292 /* Get the number of table pointers within the RSDT */
294 table_count =
295 acpi_tb_get_table_count(acpi_gbl_RSDP, rsdt_info->pointer);
296 address.pointer_type = acpi_gbl_table_flags | flags;
299 * Search the RSDT/XSDT for the correct instance of the
300 * requested table
302 for (i = 0, j = 0; i < table_count; i++) {
304 * Get the next table pointer, handle RSDT vs. XSDT
305 * RSDT pointers are 32 bits, XSDT pointers are 64 bits
307 if (acpi_gbl_root_table_type == ACPI_TABLE_TYPE_RSDT) {
308 address.pointer.value =
309 (ACPI_CAST_PTR
310 (struct rsdt_descriptor,
311 rsdt_info->pointer))->table_offset_entry[i];
312 } else {
313 address.pointer.value =
314 (ACPI_CAST_PTR
315 (struct xsdt_descriptor,
316 rsdt_info->pointer))->table_offset_entry[i];
319 /* Get the table header */
321 status = acpi_tb_get_table_header(&address, header);
322 if (ACPI_FAILURE(status)) {
323 goto cleanup;
326 /* Compare table signatures and table instance */
328 if (!ACPI_STRNCMP(header->signature, signature, ACPI_NAME_SIZE)) {
330 /* An instance of the table was found */
332 j++;
333 if (j >= instance) {
335 /* Found the correct instance, get the entire table */
337 status =
338 acpi_tb_get_table_body(&address, header,
339 table_info);
340 if (ACPI_FAILURE(status)) {
341 goto cleanup;
344 *table_pointer = table_info->pointer;
345 goto cleanup;
350 /* Did not find the table */
352 status = AE_NOT_EXIST;
354 cleanup:
355 if (rsdt_info->pointer) {
356 acpi_os_unmap_memory(rsdt_info->pointer,
357 (acpi_size) rsdt_info->pointer->length);
359 ACPI_FREE(rsdt_info);
361 if (header) {
362 ACPI_FREE(header);
364 if (table_info) {
365 ACPI_FREE(table_info);
367 return_ACPI_STATUS(status);
370 ACPI_EXPORT_SYMBOL(acpi_get_firmware_table)
372 /* TBD: Move to a new file */
373 #if ACPI_MACHINE_WIDTH != 16
374 /*******************************************************************************
376 * FUNCTION: acpi_find_root_pointer
378 * PARAMETERS: Flags - Logical/Physical addressing
379 * rsdp_address - Where to place the RSDP address
381 * RETURN: Status, Physical address of the RSDP
383 * DESCRIPTION: Find the RSDP
385 ******************************************************************************/
386 acpi_status acpi_find_root_pointer(u32 flags, struct acpi_pointer *rsdp_address)
388 struct acpi_table_desc table_info;
389 acpi_status status;
391 ACPI_FUNCTION_TRACE("acpi_find_root_pointer");
393 /* Get the RSDP */
395 status = acpi_tb_find_rsdp(&table_info, flags);
396 if (ACPI_FAILURE(status)) {
397 ACPI_EXCEPTION((AE_INFO, status,
398 "RSDP structure not found - Flags=%X", flags));
400 return_ACPI_STATUS(AE_NO_ACPI_TABLES);
403 rsdp_address->pointer_type = ACPI_PHYSICAL_POINTER;
404 rsdp_address->pointer.physical = table_info.physical_address;
405 return_ACPI_STATUS(AE_OK);
408 ACPI_EXPORT_SYMBOL(acpi_find_root_pointer)
410 /*******************************************************************************
412 * FUNCTION: acpi_tb_scan_memory_for_rsdp
414 * PARAMETERS: start_address - Starting pointer for search
415 * Length - Maximum length to search
417 * RETURN: Pointer to the RSDP if found, otherwise NULL.
419 * DESCRIPTION: Search a block of memory for the RSDP signature
421 ******************************************************************************/
422 static u8 *acpi_tb_scan_memory_for_rsdp(u8 * start_address, u32 length)
424 acpi_status status;
425 u8 *mem_rover;
426 u8 *end_address;
428 ACPI_FUNCTION_TRACE("tb_scan_memory_for_rsdp");
430 end_address = start_address + length;
432 /* Search from given start address for the requested length */
434 for (mem_rover = start_address; mem_rover < end_address;
435 mem_rover += ACPI_RSDP_SCAN_STEP) {
437 /* The RSDP signature and checksum must both be correct */
439 status =
440 acpi_tb_validate_rsdp(ACPI_CAST_PTR
441 (struct rsdp_descriptor, mem_rover));
442 if (ACPI_SUCCESS(status)) {
444 /* Sig and checksum valid, we have found a real RSDP */
446 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
447 "RSDP located at physical address %p\n",
448 mem_rover));
449 return_PTR(mem_rover);
452 /* No sig match or bad checksum, keep searching */
455 /* Searched entire block, no RSDP was found */
457 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
458 "Searched entire block from %p, valid RSDP was not found\n",
459 start_address));
460 return_PTR(NULL);
463 /*******************************************************************************
465 * FUNCTION: acpi_tb_find_rsdp
467 * PARAMETERS: table_info - Where the table info is returned
468 * Flags - Current memory mode (logical vs.
469 * physical addressing)
471 * RETURN: Status, RSDP physical address
473 * DESCRIPTION: search lower 1_mbyte of memory for the root system descriptor
474 * pointer structure. If it is found, set *RSDP to point to it.
476 * NOTE1: The RSDp must be either in the first 1_k of the Extended
477 * BIOS Data Area or between E0000 and FFFFF (From ACPI Spec.)
478 * Only a 32-bit physical address is necessary.
480 * NOTE2: This function is always available, regardless of the
481 * initialization state of the rest of ACPI.
483 ******************************************************************************/
485 static acpi_status
486 acpi_tb_find_rsdp(struct acpi_table_desc *table_info, u32 flags)
488 u8 *table_ptr;
489 u8 *mem_rover;
490 u32 physical_address;
491 acpi_status status;
493 ACPI_FUNCTION_TRACE("tb_find_rsdp");
496 * Scan supports either logical addressing or physical addressing
498 if ((flags & ACPI_MEMORY_MODE) == ACPI_LOGICAL_ADDRESSING) {
500 /* 1a) Get the location of the Extended BIOS Data Area (EBDA) */
502 status = acpi_os_map_memory((acpi_physical_address)
503 ACPI_EBDA_PTR_LOCATION,
504 ACPI_EBDA_PTR_LENGTH,
505 (void *)&table_ptr);
506 if (ACPI_FAILURE(status)) {
507 ACPI_ERROR((AE_INFO,
508 "Could not map memory at %8.8X for length %X",
509 ACPI_EBDA_PTR_LOCATION,
510 ACPI_EBDA_PTR_LENGTH));
512 return_ACPI_STATUS(status);
515 ACPI_MOVE_16_TO_32(&physical_address, table_ptr);
517 /* Convert segment part to physical address */
519 physical_address <<= 4;
520 acpi_os_unmap_memory(table_ptr, ACPI_EBDA_PTR_LENGTH);
522 /* EBDA present? */
524 if (physical_address > 0x400) {
526 * 1b) Search EBDA paragraphs (EBDa is required to be a
527 * minimum of 1_k length)
529 status = acpi_os_map_memory((acpi_physical_address)
530 physical_address,
531 ACPI_EBDA_WINDOW_SIZE,
532 (void *)&table_ptr);
533 if (ACPI_FAILURE(status)) {
534 ACPI_ERROR((AE_INFO,
535 "Could not map memory at %8.8X for length %X",
536 physical_address,
537 ACPI_EBDA_WINDOW_SIZE));
539 return_ACPI_STATUS(status);
542 mem_rover = acpi_tb_scan_memory_for_rsdp(table_ptr,
543 ACPI_EBDA_WINDOW_SIZE);
544 acpi_os_unmap_memory(table_ptr, ACPI_EBDA_WINDOW_SIZE);
546 if (mem_rover) {
548 /* Return the physical address */
550 physical_address +=
551 ACPI_PTR_DIFF(mem_rover, table_ptr);
553 table_info->physical_address =
554 (acpi_physical_address) physical_address;
555 return_ACPI_STATUS(AE_OK);
560 * 2) Search upper memory: 16-byte boundaries in E0000h-FFFFFh
562 status = acpi_os_map_memory((acpi_physical_address)
563 ACPI_HI_RSDP_WINDOW_BASE,
564 ACPI_HI_RSDP_WINDOW_SIZE,
565 (void *)&table_ptr);
567 if (ACPI_FAILURE(status)) {
568 ACPI_ERROR((AE_INFO,
569 "Could not map memory at %8.8X for length %X",
570 ACPI_HI_RSDP_WINDOW_BASE,
571 ACPI_HI_RSDP_WINDOW_SIZE));
573 return_ACPI_STATUS(status);
576 mem_rover =
577 acpi_tb_scan_memory_for_rsdp(table_ptr,
578 ACPI_HI_RSDP_WINDOW_SIZE);
579 acpi_os_unmap_memory(table_ptr, ACPI_HI_RSDP_WINDOW_SIZE);
581 if (mem_rover) {
583 /* Return the physical address */
585 physical_address =
586 ACPI_HI_RSDP_WINDOW_BASE + ACPI_PTR_DIFF(mem_rover,
587 table_ptr);
589 table_info->physical_address =
590 (acpi_physical_address) physical_address;
591 return_ACPI_STATUS(AE_OK);
596 * Physical addressing
598 else {
599 /* 1a) Get the location of the EBDA */
601 ACPI_MOVE_16_TO_32(&physical_address, ACPI_EBDA_PTR_LOCATION);
602 physical_address <<= 4; /* Convert segment to physical address */
604 /* EBDA present? */
606 if (physical_address > 0x400) {
608 * 1b) Search EBDA paragraphs (EBDa is required to be a minimum of
609 * 1_k length)
611 mem_rover =
612 acpi_tb_scan_memory_for_rsdp(ACPI_PHYSADDR_TO_PTR
613 (physical_address),
614 ACPI_EBDA_WINDOW_SIZE);
615 if (mem_rover) {
617 /* Return the physical address */
619 table_info->physical_address =
620 ACPI_TO_INTEGER(mem_rover);
621 return_ACPI_STATUS(AE_OK);
625 /* 2) Search upper memory: 16-byte boundaries in E0000h-FFFFFh */
627 mem_rover =
628 acpi_tb_scan_memory_for_rsdp(ACPI_PHYSADDR_TO_PTR
629 (ACPI_HI_RSDP_WINDOW_BASE),
630 ACPI_HI_RSDP_WINDOW_SIZE);
631 if (mem_rover) {
633 /* Found it, return the physical address */
635 table_info->physical_address =
636 ACPI_TO_INTEGER(mem_rover);
637 return_ACPI_STATUS(AE_OK);
641 /* A valid RSDP was not found */
643 ACPI_ERROR((AE_INFO, "No valid RSDP was found"));
644 return_ACPI_STATUS(AE_NOT_FOUND);
647 #endif