| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /****************************************************************************** | 
|  | 2 | * | 
|  | 3 | * Module Name: tbxfroot - Find the root ACPI table (RSDT) | 
|  | 4 | * | 
|  | 5 | *****************************************************************************/ | 
|  | 6 |  | 
|  | 7 | /* | 
| Len Brown | 75a44ce | 2008-04-23 23:00:13 -0400 | [diff] [blame] | 8 | * Copyright (C) 2000 - 2008, Intel Corp. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | * All rights reserved. | 
|  | 10 | * | 
|  | 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. | 
|  | 25 | * | 
|  | 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. | 
|  | 29 | * | 
|  | 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. | 
|  | 42 | */ | 
|  | 43 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | #include <acpi/acpi.h> | 
|  | 45 | #include <acpi/actables.h> | 
|  | 46 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | #define _COMPONENT          ACPI_TABLES | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 48 | ACPI_MODULE_NAME("tbxfroot") | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 |  | 
| Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 50 | /* Local prototypes */ | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 51 | static u8 *acpi_tb_scan_memory_for_rsdp(u8 * start_address, u32 length); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 |  | 
| Bob Moore | f3d2e78 | 2007-02-02 19:48:18 +0300 | [diff] [blame] | 53 | static acpi_status acpi_tb_validate_rsdp(struct acpi_table_rsdp *rsdp); | 
|  | 54 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | /******************************************************************************* | 
|  | 56 | * | 
| Robert Moore | f9f4601 | 2005-07-08 00:00:00 -0400 | [diff] [blame] | 57 | * FUNCTION:    acpi_tb_validate_rsdp | 
|  | 58 | * | 
| Bob Moore | f3d2e78 | 2007-02-02 19:48:18 +0300 | [diff] [blame] | 59 | * PARAMETERS:  Rsdp                - Pointer to unvalidated RSDP | 
| Robert Moore | f9f4601 | 2005-07-08 00:00:00 -0400 | [diff] [blame] | 60 | * | 
|  | 61 | * RETURN:      Status | 
|  | 62 | * | 
|  | 63 | * DESCRIPTION: Validate the RSDP (ptr) | 
|  | 64 | * | 
|  | 65 | ******************************************************************************/ | 
|  | 66 |  | 
| Bob Moore | f3d2e78 | 2007-02-02 19:48:18 +0300 | [diff] [blame] | 67 | static acpi_status acpi_tb_validate_rsdp(struct acpi_table_rsdp *rsdp) | 
| Robert Moore | f9f4601 | 2005-07-08 00:00:00 -0400 | [diff] [blame] | 68 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 69 | ACPI_FUNCTION_ENTRY(); | 
| Robert Moore | f9f4601 | 2005-07-08 00:00:00 -0400 | [diff] [blame] | 70 |  | 
|  | 71 | /* | 
| Bob Moore | f3d2e78 | 2007-02-02 19:48:18 +0300 | [diff] [blame] | 72 | * The signature and checksum must both be correct | 
|  | 73 | * | 
|  | 74 | * Note: Sometimes there exists more than one RSDP in memory; the valid | 
|  | 75 | * RSDP has a valid checksum, all others have an invalid checksum. | 
| Robert Moore | f9f4601 | 2005-07-08 00:00:00 -0400 | [diff] [blame] | 76 | */ | 
| Bob Moore | f3d2e78 | 2007-02-02 19:48:18 +0300 | [diff] [blame] | 77 | if (ACPI_STRNCMP((char *)rsdp, ACPI_SIG_RSDP, sizeof(ACPI_SIG_RSDP) - 1) | 
|  | 78 | != 0) { | 
| Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 79 |  | 
| Robert Moore | f9f4601 | 2005-07-08 00:00:00 -0400 | [diff] [blame] | 80 | /* Nope, BAD Signature */ | 
|  | 81 |  | 
|  | 82 | return (AE_BAD_SIGNATURE); | 
|  | 83 | } | 
|  | 84 |  | 
|  | 85 | /* Check the standard checksum */ | 
|  | 86 |  | 
| Bob Moore | f3d2e78 | 2007-02-02 19:48:18 +0300 | [diff] [blame] | 87 | if (acpi_tb_checksum((u8 *) rsdp, ACPI_RSDP_CHECKSUM_LENGTH) != 0) { | 
| Robert Moore | f9f4601 | 2005-07-08 00:00:00 -0400 | [diff] [blame] | 88 | return (AE_BAD_CHECKSUM); | 
|  | 89 | } | 
|  | 90 |  | 
|  | 91 | /* Check extended checksum if table version >= 2 */ | 
|  | 92 |  | 
|  | 93 | if ((rsdp->revision >= 2) && | 
| Bob Moore | f3d2e78 | 2007-02-02 19:48:18 +0300 | [diff] [blame] | 94 | (acpi_tb_checksum((u8 *) rsdp, ACPI_RSDP_XCHECKSUM_LENGTH) != 0)) { | 
| Robert Moore | f9f4601 | 2005-07-08 00:00:00 -0400 | [diff] [blame] | 95 | return (AE_BAD_CHECKSUM); | 
|  | 96 | } | 
|  | 97 |  | 
|  | 98 | return (AE_OK); | 
|  | 99 | } | 
|  | 100 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | /******************************************************************************* | 
|  | 102 | * | 
| Len Brown | 239665a | 2007-11-23 20:08:02 -0500 | [diff] [blame] | 103 | * FUNCTION:    acpi_find_root_pointer | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | * | 
| Bob Moore | f3d2e78 | 2007-02-02 19:48:18 +0300 | [diff] [blame] | 105 | * PARAMETERS:  table_address           - Where the table pointer is returned | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | * | 
| Bob Moore | f3d2e78 | 2007-02-02 19:48:18 +0300 | [diff] [blame] | 107 | * RETURN:      Status, RSDP physical address | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | * | 
| Bob Moore | f3d2e78 | 2007-02-02 19:48:18 +0300 | [diff] [blame] | 109 | * DESCRIPTION: Search lower 1_mbyte of memory for the root system descriptor | 
|  | 110 | *              pointer structure.  If it is found, set *RSDP to point to it. | 
|  | 111 | * | 
|  | 112 | * NOTE1:       The RSDP must be either in the first 1_k of the Extended | 
|  | 113 | *              BIOS Data Area or between E0000 and FFFFF (From ACPI Spec.) | 
|  | 114 | *              Only a 32-bit physical address is necessary. | 
|  | 115 | * | 
|  | 116 | * NOTE2:       This function is always available, regardless of the | 
|  | 117 | *              initialization state of the rest of ACPI. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | * | 
|  | 119 | ******************************************************************************/ | 
| Bob Moore | f3d2e78 | 2007-02-02 19:48:18 +0300 | [diff] [blame] | 120 |  | 
| Bob Moore | 67a119f | 2008-06-10 13:42:13 +0800 | [diff] [blame] | 121 | acpi_status acpi_find_root_pointer(acpi_size *table_address) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | { | 
| Bob Moore | f3d2e78 | 2007-02-02 19:48:18 +0300 | [diff] [blame] | 123 | u8 *table_ptr; | 
|  | 124 | u8 *mem_rover; | 
|  | 125 | u32 physical_address; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 |  | 
| Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 127 | ACPI_FUNCTION_TRACE(acpi_find_root_pointer); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 |  | 
| Bob Moore | f3d2e78 | 2007-02-02 19:48:18 +0300 | [diff] [blame] | 129 | /* 1a) Get the location of the Extended BIOS Data Area (EBDA) */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 |  | 
| Bob Moore | f3d2e78 | 2007-02-02 19:48:18 +0300 | [diff] [blame] | 131 | table_ptr = acpi_os_map_memory((acpi_physical_address) | 
|  | 132 | ACPI_EBDA_PTR_LOCATION, | 
|  | 133 | ACPI_EBDA_PTR_LENGTH); | 
|  | 134 | if (!table_ptr) { | 
|  | 135 | ACPI_ERROR((AE_INFO, | 
|  | 136 | "Could not map memory at %8.8X for length %X", | 
|  | 137 | ACPI_EBDA_PTR_LOCATION, ACPI_EBDA_PTR_LENGTH)); | 
| Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 138 |  | 
| Bob Moore | f3d2e78 | 2007-02-02 19:48:18 +0300 | [diff] [blame] | 139 | return_ACPI_STATUS(AE_NO_MEMORY); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | } | 
|  | 141 |  | 
| Bob Moore | f3d2e78 | 2007-02-02 19:48:18 +0300 | [diff] [blame] | 142 | ACPI_MOVE_16_TO_32(&physical_address, table_ptr); | 
|  | 143 |  | 
|  | 144 | /* Convert segment part to physical address */ | 
|  | 145 |  | 
|  | 146 | physical_address <<= 4; | 
|  | 147 | acpi_os_unmap_memory(table_ptr, ACPI_EBDA_PTR_LENGTH); | 
|  | 148 |  | 
|  | 149 | /* EBDA present? */ | 
|  | 150 |  | 
|  | 151 | if (physical_address > 0x400) { | 
|  | 152 | /* | 
|  | 153 | * 1b) Search EBDA paragraphs (EBDA is required to be a | 
|  | 154 | *     minimum of 1_k length) | 
|  | 155 | */ | 
| Bob Moore | 67a119f | 2008-06-10 13:42:13 +0800 | [diff] [blame] | 156 | table_ptr = acpi_os_map_memory((acpi_physical_address) | 
| Bob Moore | f3d2e78 | 2007-02-02 19:48:18 +0300 | [diff] [blame] | 157 | physical_address, | 
|  | 158 | ACPI_EBDA_WINDOW_SIZE); | 
|  | 159 | if (!table_ptr) { | 
|  | 160 | ACPI_ERROR((AE_INFO, | 
|  | 161 | "Could not map memory at %8.8X for length %X", | 
|  | 162 | physical_address, ACPI_EBDA_WINDOW_SIZE)); | 
|  | 163 |  | 
|  | 164 | return_ACPI_STATUS(AE_NO_MEMORY); | 
|  | 165 | } | 
|  | 166 |  | 
|  | 167 | mem_rover = | 
|  | 168 | acpi_tb_scan_memory_for_rsdp(table_ptr, | 
|  | 169 | ACPI_EBDA_WINDOW_SIZE); | 
|  | 170 | acpi_os_unmap_memory(table_ptr, ACPI_EBDA_WINDOW_SIZE); | 
|  | 171 |  | 
|  | 172 | if (mem_rover) { | 
|  | 173 |  | 
|  | 174 | /* Return the physical address */ | 
|  | 175 |  | 
|  | 176 | physical_address += | 
|  | 177 | (u32) ACPI_PTR_DIFF(mem_rover, table_ptr); | 
|  | 178 |  | 
|  | 179 | *table_address = physical_address; | 
|  | 180 | return_ACPI_STATUS(AE_OK); | 
|  | 181 | } | 
|  | 182 | } | 
|  | 183 |  | 
|  | 184 | /* | 
|  | 185 | * 2) Search upper memory: 16-byte boundaries in E0000h-FFFFFh | 
|  | 186 | */ | 
|  | 187 | table_ptr = acpi_os_map_memory((acpi_physical_address) | 
|  | 188 | ACPI_HI_RSDP_WINDOW_BASE, | 
|  | 189 | ACPI_HI_RSDP_WINDOW_SIZE); | 
|  | 190 |  | 
|  | 191 | if (!table_ptr) { | 
|  | 192 | ACPI_ERROR((AE_INFO, | 
|  | 193 | "Could not map memory at %8.8X for length %X", | 
|  | 194 | ACPI_HI_RSDP_WINDOW_BASE, | 
|  | 195 | ACPI_HI_RSDP_WINDOW_SIZE)); | 
|  | 196 |  | 
|  | 197 | return_ACPI_STATUS(AE_NO_MEMORY); | 
|  | 198 | } | 
|  | 199 |  | 
|  | 200 | mem_rover = | 
|  | 201 | acpi_tb_scan_memory_for_rsdp(table_ptr, ACPI_HI_RSDP_WINDOW_SIZE); | 
|  | 202 | acpi_os_unmap_memory(table_ptr, ACPI_HI_RSDP_WINDOW_SIZE); | 
|  | 203 |  | 
|  | 204 | if (mem_rover) { | 
|  | 205 |  | 
|  | 206 | /* Return the physical address */ | 
|  | 207 |  | 
|  | 208 | physical_address = (u32) | 
|  | 209 | (ACPI_HI_RSDP_WINDOW_BASE + | 
|  | 210 | ACPI_PTR_DIFF(mem_rover, table_ptr)); | 
|  | 211 |  | 
|  | 212 | *table_address = physical_address; | 
|  | 213 | return_ACPI_STATUS(AE_OK); | 
|  | 214 | } | 
|  | 215 |  | 
|  | 216 | /* A valid RSDP was not found */ | 
|  | 217 |  | 
|  | 218 | ACPI_ERROR((AE_INFO, "A valid RSDP was not found")); | 
|  | 219 | return_ACPI_STATUS(AE_NOT_FOUND); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 | } | 
|  | 221 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | /******************************************************************************* | 
|  | 223 | * | 
|  | 224 | * FUNCTION:    acpi_tb_scan_memory_for_rsdp | 
|  | 225 | * | 
|  | 226 | * PARAMETERS:  start_address       - Starting pointer for search | 
|  | 227 | *              Length              - Maximum length to search | 
|  | 228 | * | 
|  | 229 | * RETURN:      Pointer to the RSDP if found, otherwise NULL. | 
|  | 230 | * | 
|  | 231 | * DESCRIPTION: Search a block of memory for the RSDP signature | 
|  | 232 | * | 
|  | 233 | ******************************************************************************/ | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 234 | static u8 *acpi_tb_scan_memory_for_rsdp(u8 * start_address, u32 length) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 236 | acpi_status status; | 
|  | 237 | u8 *mem_rover; | 
|  | 238 | u8 *end_address; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 |  | 
| Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 240 | ACPI_FUNCTION_TRACE(tb_scan_memory_for_rsdp); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 |  | 
|  | 242 | end_address = start_address + length; | 
|  | 243 |  | 
|  | 244 | /* Search from given start address for the requested length */ | 
|  | 245 |  | 
|  | 246 | for (mem_rover = start_address; mem_rover < end_address; | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 247 | mem_rover += ACPI_RSDP_SCAN_STEP) { | 
| Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 248 |  | 
| Robert Moore | f9f4601 | 2005-07-08 00:00:00 -0400 | [diff] [blame] | 249 | /* The RSDP signature and checksum must both be correct */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 251 | status = | 
|  | 252 | acpi_tb_validate_rsdp(ACPI_CAST_PTR | 
| Bob Moore | f3d2e78 | 2007-02-02 19:48:18 +0300 | [diff] [blame] | 253 | (struct acpi_table_rsdp, mem_rover)); | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 254 | if (ACPI_SUCCESS(status)) { | 
| Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 255 |  | 
| Robert Moore | f9f4601 | 2005-07-08 00:00:00 -0400 | [diff] [blame] | 256 | /* Sig and checksum valid, we have found a real RSDP */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 258 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, | 
|  | 259 | "RSDP located at physical address %p\n", | 
|  | 260 | mem_rover)); | 
|  | 261 | return_PTR(mem_rover); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | } | 
|  | 263 |  | 
| Robert Moore | f9f4601 | 2005-07-08 00:00:00 -0400 | [diff] [blame] | 264 | /* No sig match or bad checksum, keep searching */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | } | 
|  | 266 |  | 
|  | 267 | /* Searched entire block, no RSDP was found */ | 
|  | 268 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 269 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, | 
|  | 270 | "Searched entire block from %p, valid RSDP was not found\n", | 
|  | 271 | start_address)); | 
|  | 272 | return_PTR(NULL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | } |