blob: 0adb1c78d863d30a80cf9cc4726bb92d8ecd81c6 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/******************************************************************************
2 *
3 * Module Name: tbxfroot - Find the root ACPI table (RSDT)
4 *
5 *****************************************************************************/
6
7/*
Bob Moorec8100dc2016-01-15 08:17:03 +08008 * Copyright (C) 2000 - 2016, Intel Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * 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 Torvalds1da177e2005-04-16 15:20:36 -070044#include <acpi/acpi.h>
Len Browne2f7a772009-01-09 00:30:03 -050045#include "accommon.h"
46#include "actables.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#define _COMPONENT ACPI_TABLES
Len Brown4be44fc2005-08-05 00:44:28 -040049ACPI_MODULE_NAME("tbxfroot")
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Linus Torvalds1da177e2005-04-16 15:20:36 -070051/*******************************************************************************
52 *
Lv Zhengf1b69752014-10-10 10:39:32 +080053 * 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 ******************************************************************************/
62u32 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 Mooref9f46012005-07-08 00:00:00 -040083 * FUNCTION: acpi_tb_validate_rsdp
84 *
Bob Mooreba494be2012-07-12 09:40:10 +080085 * PARAMETERS: rsdp - Pointer to unvalidated RSDP
Robert Mooref9f46012005-07-08 00:00:00 -040086 *
87 * RETURN: Status
88 *
89 * DESCRIPTION: Validate the RSDP (ptr)
90 *
91 ******************************************************************************/
Lv Zhengf1b69752014-10-10 10:39:32 +080092
Lv Zhengf5c1e1c2016-05-05 12:57:53 +080093acpi_status acpi_tb_validate_rsdp(struct acpi_table_rsdp *rsdp)
Robert Mooref9f46012005-07-08 00:00:00 -040094{
Robert Mooref9f46012005-07-08 00:00:00 -040095
96 /*
Bob Mooref3d2e782007-02-02 19:48:18 +030097 * 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 Mooref9f46012005-07-08 00:00:00 -0400101 */
Lv Zhengcacba862013-09-23 09:52:34 +0800102 if (!ACPI_VALIDATE_RSDP_SIG(rsdp->signature)) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400103
Robert Mooref9f46012005-07-08 00:00:00 -0400104 /* Nope, BAD Signature */
105
106 return (AE_BAD_SIGNATURE);
107 }
108
109 /* Check the standard checksum */
110
Bob Mooref3d2e782007-02-02 19:48:18 +0300111 if (acpi_tb_checksum((u8 *) rsdp, ACPI_RSDP_CHECKSUM_LENGTH) != 0) {
Robert Mooref9f46012005-07-08 00:00:00 -0400112 return (AE_BAD_CHECKSUM);
113 }
114
115 /* Check extended checksum if table version >= 2 */
116
117 if ((rsdp->revision >= 2) &&
Bob Mooref3d2e782007-02-02 19:48:18 +0300118 (acpi_tb_checksum((u8 *) rsdp, ACPI_RSDP_XCHECKSUM_LENGTH) != 0)) {
Robert Mooref9f46012005-07-08 00:00:00 -0400119 return (AE_BAD_CHECKSUM);
120 }
121
122 return (AE_OK);
123}
124
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125/*******************************************************************************
126 *
Len Brown239665a2007-11-23 20:08:02 -0500127 * FUNCTION: acpi_find_root_pointer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 *
Bob Mooref3d2e782007-02-02 19:48:18 +0300129 * PARAMETERS: table_address - Where the table pointer is returned
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 *
Bob Mooref3d2e782007-02-02 19:48:18 +0300131 * RETURN: Status, RSDP physical address
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 *
Bob Mooreba494be2012-07-12 09:40:10 +0800133 * DESCRIPTION: Search lower 1Mbyte of memory for the root system descriptor
Bob Moore73a30902012-10-31 02:26:55 +0000134 * pointer structure. If it is found, set *RSDP to point to it.
Bob Mooref3d2e782007-02-02 19:48:18 +0300135 *
Bob Mooreba494be2012-07-12 09:40:10 +0800136 * NOTE1: The RSDP must be either in the first 1K of the Extended
Bob Mooref3d2e782007-02-02 19:48:18 +0300137 * 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 Torvalds1da177e2005-04-16 15:20:36 -0700142 *
143 ******************************************************************************/
Bob Mooref3d2e782007-02-02 19:48:18 +0300144
Lv Zheng2368b1a2016-08-04 16:43:19 +0800145acpi_status ACPI_INIT_FUNCTION
146acpi_find_root_pointer(acpi_physical_address *table_address)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147{
Bob Mooref3d2e782007-02-02 19:48:18 +0300148 u8 *table_ptr;
149 u8 *mem_rover;
150 u32 physical_address;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
Bob Mooreb229cf92006-04-21 17:15:00 -0400152 ACPI_FUNCTION_TRACE(acpi_find_root_pointer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
Bob Mooref3d2e782007-02-02 19:48:18 +0300154 /* 1a) Get the location of the Extended BIOS Data Area (EBDA) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
Bob Mooref3d2e782007-02-02 19:48:18 +0300156 table_ptr = acpi_os_map_memory((acpi_physical_address)
157 ACPI_EBDA_PTR_LOCATION,
158 ACPI_EBDA_PTR_LENGTH);
159 if (!table_ptr) {
160 ACPI_ERROR((AE_INFO,
Bob Mooref6a22b02010-03-05 17:56:40 +0800161 "Could not map memory at 0x%8.8X for length %u",
Bob Mooref3d2e782007-02-02 19:48:18 +0300162 ACPI_EBDA_PTR_LOCATION, ACPI_EBDA_PTR_LENGTH));
Robert Moore44f6c012005-04-18 22:49:35 -0400163
Bob Mooref3d2e782007-02-02 19:48:18 +0300164 return_ACPI_STATUS(AE_NO_MEMORY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 }
166
Bob Mooref3d2e782007-02-02 19:48:18 +0300167 ACPI_MOVE_16_TO_32(&physical_address, table_ptr);
168
169 /* Convert segment part to physical address */
170
171 physical_address <<= 4;
172 acpi_os_unmap_memory(table_ptr, ACPI_EBDA_PTR_LENGTH);
173
174 /* EBDA present? */
175
176 if (physical_address > 0x400) {
177 /*
178 * 1b) Search EBDA paragraphs (EBDA is required to be a
Bob Mooreba494be2012-07-12 09:40:10 +0800179 * minimum of 1K length)
Bob Mooref3d2e782007-02-02 19:48:18 +0300180 */
Bob Moore67a119f2008-06-10 13:42:13 +0800181 table_ptr = acpi_os_map_memory((acpi_physical_address)
Bob Mooref3d2e782007-02-02 19:48:18 +0300182 physical_address,
183 ACPI_EBDA_WINDOW_SIZE);
184 if (!table_ptr) {
185 ACPI_ERROR((AE_INFO,
Bob Mooref6a22b02010-03-05 17:56:40 +0800186 "Could not map memory at 0x%8.8X for length %u",
Bob Mooref3d2e782007-02-02 19:48:18 +0300187 physical_address, ACPI_EBDA_WINDOW_SIZE));
188
189 return_ACPI_STATUS(AE_NO_MEMORY);
190 }
191
192 mem_rover =
193 acpi_tb_scan_memory_for_rsdp(table_ptr,
194 ACPI_EBDA_WINDOW_SIZE);
195 acpi_os_unmap_memory(table_ptr, ACPI_EBDA_WINDOW_SIZE);
196
197 if (mem_rover) {
198
199 /* Return the physical address */
200
201 physical_address +=
202 (u32) ACPI_PTR_DIFF(mem_rover, table_ptr);
203
Lv Zhengf254e3c2015-04-13 11:48:18 +0800204 *table_address =
Lv Zhengf5c1e1c2016-05-05 12:57:53 +0800205 (acpi_physical_address)physical_address;
Bob Mooref3d2e782007-02-02 19:48:18 +0300206 return_ACPI_STATUS(AE_OK);
207 }
208 }
209
210 /*
211 * 2) Search upper memory: 16-byte boundaries in E0000h-FFFFFh
212 */
213 table_ptr = acpi_os_map_memory((acpi_physical_address)
214 ACPI_HI_RSDP_WINDOW_BASE,
215 ACPI_HI_RSDP_WINDOW_SIZE);
216
217 if (!table_ptr) {
218 ACPI_ERROR((AE_INFO,
Bob Mooref6a22b02010-03-05 17:56:40 +0800219 "Could not map memory at 0x%8.8X for length %u",
Bob Mooref3d2e782007-02-02 19:48:18 +0300220 ACPI_HI_RSDP_WINDOW_BASE,
221 ACPI_HI_RSDP_WINDOW_SIZE));
222
223 return_ACPI_STATUS(AE_NO_MEMORY);
224 }
225
226 mem_rover =
227 acpi_tb_scan_memory_for_rsdp(table_ptr, ACPI_HI_RSDP_WINDOW_SIZE);
228 acpi_os_unmap_memory(table_ptr, ACPI_HI_RSDP_WINDOW_SIZE);
229
230 if (mem_rover) {
231
232 /* Return the physical address */
233
234 physical_address = (u32)
235 (ACPI_HI_RSDP_WINDOW_BASE +
236 ACPI_PTR_DIFF(mem_rover, table_ptr));
237
Lv Zhengf5c1e1c2016-05-05 12:57:53 +0800238 *table_address = (acpi_physical_address)physical_address;
Bob Mooref3d2e782007-02-02 19:48:18 +0300239 return_ACPI_STATUS(AE_OK);
240 }
241
242 /* A valid RSDP was not found */
243
Bob Moore3b3ea772012-07-16 09:39:54 +0800244 ACPI_BIOS_ERROR((AE_INFO, "A valid RSDP was not found"));
Bob Mooref3d2e782007-02-02 19:48:18 +0300245 return_ACPI_STATUS(AE_NOT_FOUND);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246}
247
Lv Zheng2368b1a2016-08-04 16:43:19 +0800248ACPI_EXPORT_SYMBOL_INIT(acpi_find_root_pointer)
249
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250/*******************************************************************************
251 *
252 * FUNCTION: acpi_tb_scan_memory_for_rsdp
253 *
254 * PARAMETERS: start_address - Starting pointer for search
Bob Mooreba494be2012-07-12 09:40:10 +0800255 * length - Maximum length to search
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 *
257 * RETURN: Pointer to the RSDP if found, otherwise NULL.
258 *
259 * DESCRIPTION: Search a block of memory for the RSDP signature
260 *
261 ******************************************************************************/
Bob Moore57987ca2013-07-17 09:48:27 +0800262u8 *acpi_tb_scan_memory_for_rsdp(u8 *start_address, u32 length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263{
Len Brown4be44fc2005-08-05 00:44:28 -0400264 acpi_status status;
265 u8 *mem_rover;
266 u8 *end_address;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
Bob Mooreb229cf92006-04-21 17:15:00 -0400268 ACPI_FUNCTION_TRACE(tb_scan_memory_for_rsdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
270 end_address = start_address + length;
271
272 /* Search from given start address for the requested length */
273
274 for (mem_rover = start_address; mem_rover < end_address;
Len Brown4be44fc2005-08-05 00:44:28 -0400275 mem_rover += ACPI_RSDP_SCAN_STEP) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400276
Robert Mooref9f46012005-07-08 00:00:00 -0400277 /* The RSDP signature and checksum must both be correct */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
Len Brown4be44fc2005-08-05 00:44:28 -0400279 status =
280 acpi_tb_validate_rsdp(ACPI_CAST_PTR
Bob Mooref3d2e782007-02-02 19:48:18 +0300281 (struct acpi_table_rsdp, mem_rover));
Len Brown4be44fc2005-08-05 00:44:28 -0400282 if (ACPI_SUCCESS(status)) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400283
Robert Mooref9f46012005-07-08 00:00:00 -0400284 /* Sig and checksum valid, we have found a real RSDP */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
Len Brown4be44fc2005-08-05 00:44:28 -0400286 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
287 "RSDP located at physical address %p\n",
288 mem_rover));
289 return_PTR(mem_rover);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 }
291
Robert Mooref9f46012005-07-08 00:00:00 -0400292 /* No sig match or bad checksum, keep searching */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 }
294
295 /* Searched entire block, no RSDP was found */
296
Len Brown4be44fc2005-08-05 00:44:28 -0400297 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
298 "Searched entire block from %p, valid RSDP was not found\n",
299 start_address));
300 return_PTR(NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301}