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