blob: e12486031d9716eefdc920826644656404e1dd81 [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 Moore25f044e2013-01-25 05:38:56 +00008 * Copyright (C) 2000 - 2013, 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
Robert Moore44f6c012005-04-18 22:49:35 -040051/* Local prototypes */
Len Brown4be44fc2005-08-05 00:44:28 -040052static u8 *acpi_tb_scan_memory_for_rsdp(u8 * start_address, u32 length);
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Bob Mooref3d2e782007-02-02 19:48:18 +030054static acpi_status acpi_tb_validate_rsdp(struct acpi_table_rsdp *rsdp);
55
Linus Torvalds1da177e2005-04-16 15:20:36 -070056/*******************************************************************************
57 *
Robert Mooref9f46012005-07-08 00:00:00 -040058 * FUNCTION: acpi_tb_validate_rsdp
59 *
Bob Mooreba494be2012-07-12 09:40:10 +080060 * PARAMETERS: rsdp - Pointer to unvalidated RSDP
Robert Mooref9f46012005-07-08 00:00:00 -040061 *
62 * RETURN: Status
63 *
64 * DESCRIPTION: Validate the RSDP (ptr)
65 *
66 ******************************************************************************/
67
Bob Mooref3d2e782007-02-02 19:48:18 +030068static acpi_status acpi_tb_validate_rsdp(struct acpi_table_rsdp *rsdp)
Robert Mooref9f46012005-07-08 00:00:00 -040069{
Robert Mooref9f46012005-07-08 00:00:00 -040070
71 /*
Bob Mooref3d2e782007-02-02 19:48:18 +030072 * 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 Mooref9f46012005-07-08 00:00:00 -040076 */
Bob Mooreec41f192009-02-18 15:03:30 +080077 if (ACPI_STRNCMP((char *)rsdp, ACPI_SIG_RSDP,
78 sizeof(ACPI_SIG_RSDP) - 1) != 0) {
Bob Moore52fc0b02006-10-02 00:00:00 -040079
Robert Mooref9f46012005-07-08 00:00:00 -040080 /* Nope, BAD Signature */
81
82 return (AE_BAD_SIGNATURE);
83 }
84
85 /* Check the standard checksum */
86
Bob Mooref3d2e782007-02-02 19:48:18 +030087 if (acpi_tb_checksum((u8 *) rsdp, ACPI_RSDP_CHECKSUM_LENGTH) != 0) {
Robert Mooref9f46012005-07-08 00:00:00 -040088 return (AE_BAD_CHECKSUM);
89 }
90
91 /* Check extended checksum if table version >= 2 */
92
93 if ((rsdp->revision >= 2) &&
Bob Mooref3d2e782007-02-02 19:48:18 +030094 (acpi_tb_checksum((u8 *) rsdp, ACPI_RSDP_XCHECKSUM_LENGTH) != 0)) {
Robert Mooref9f46012005-07-08 00:00:00 -040095 return (AE_BAD_CHECKSUM);
96 }
97
98 return (AE_OK);
99}
100
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101/*******************************************************************************
102 *
Len Brown239665a2007-11-23 20:08:02 -0500103 * FUNCTION: acpi_find_root_pointer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 *
Bob Mooref3d2e782007-02-02 19:48:18 +0300105 * PARAMETERS: table_address - Where the table pointer is returned
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 *
Bob Mooref3d2e782007-02-02 19:48:18 +0300107 * RETURN: Status, RSDP physical address
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 *
Bob Mooreba494be2012-07-12 09:40:10 +0800109 * DESCRIPTION: Search lower 1Mbyte of memory for the root system descriptor
Bob Moore73a30902012-10-31 02:26:55 +0000110 * pointer structure. If it is found, set *RSDP to point to it.
Bob Mooref3d2e782007-02-02 19:48:18 +0300111 *
Bob Mooreba494be2012-07-12 09:40:10 +0800112 * NOTE1: The RSDP must be either in the first 1K of the Extended
Bob Mooref3d2e782007-02-02 19:48:18 +0300113 * 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 Torvalds1da177e2005-04-16 15:20:36 -0700118 *
119 ******************************************************************************/
Bob Mooref3d2e782007-02-02 19:48:18 +0300120
Lv Zheng85e014b2015-04-13 11:48:18 +0800121acpi_status acpi_find_root_pointer(acpi_physical_address * table_address)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122{
Bob Mooref3d2e782007-02-02 19:48:18 +0300123 u8 *table_ptr;
124 u8 *mem_rover;
125 u32 physical_address;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
Bob Mooreb229cf92006-04-21 17:15:00 -0400127 ACPI_FUNCTION_TRACE(acpi_find_root_pointer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
Bob Mooref3d2e782007-02-02 19:48:18 +0300129 /* 1a) Get the location of the Extended BIOS Data Area (EBDA) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
Bob Mooref3d2e782007-02-02 19:48:18 +0300131 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,
Bob Mooref6a22b02010-03-05 17:56:40 +0800136 "Could not map memory at 0x%8.8X for length %u",
Bob Mooref3d2e782007-02-02 19:48:18 +0300137 ACPI_EBDA_PTR_LOCATION, ACPI_EBDA_PTR_LENGTH));
Robert Moore44f6c012005-04-18 22:49:35 -0400138
Bob Mooref3d2e782007-02-02 19:48:18 +0300139 return_ACPI_STATUS(AE_NO_MEMORY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 }
141
Bob Mooref3d2e782007-02-02 19:48:18 +0300142 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
Bob Mooreba494be2012-07-12 09:40:10 +0800154 * minimum of 1K length)
Bob Mooref3d2e782007-02-02 19:48:18 +0300155 */
Bob Moore67a119f2008-06-10 13:42:13 +0800156 table_ptr = acpi_os_map_memory((acpi_physical_address)
Bob Mooref3d2e782007-02-02 19:48:18 +0300157 physical_address,
158 ACPI_EBDA_WINDOW_SIZE);
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 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
Lv Zheng85e014b2015-04-13 11:48:18 +0800179 *table_address =
180 (acpi_physical_address) physical_address;
Bob Mooref3d2e782007-02-02 19:48:18 +0300181 return_ACPI_STATUS(AE_OK);
182 }
183 }
184
185 /*
186 * 2) Search upper memory: 16-byte boundaries in E0000h-FFFFFh
187 */
188 table_ptr = acpi_os_map_memory((acpi_physical_address)
189 ACPI_HI_RSDP_WINDOW_BASE,
190 ACPI_HI_RSDP_WINDOW_SIZE);
191
192 if (!table_ptr) {
193 ACPI_ERROR((AE_INFO,
Bob Mooref6a22b02010-03-05 17:56:40 +0800194 "Could not map memory at 0x%8.8X for length %u",
Bob Mooref3d2e782007-02-02 19:48:18 +0300195 ACPI_HI_RSDP_WINDOW_BASE,
196 ACPI_HI_RSDP_WINDOW_SIZE));
197
198 return_ACPI_STATUS(AE_NO_MEMORY);
199 }
200
201 mem_rover =
202 acpi_tb_scan_memory_for_rsdp(table_ptr, ACPI_HI_RSDP_WINDOW_SIZE);
203 acpi_os_unmap_memory(table_ptr, ACPI_HI_RSDP_WINDOW_SIZE);
204
205 if (mem_rover) {
206
207 /* Return the physical address */
208
209 physical_address = (u32)
210 (ACPI_HI_RSDP_WINDOW_BASE +
211 ACPI_PTR_DIFF(mem_rover, table_ptr));
212
Lv Zheng85e014b2015-04-13 11:48:18 +0800213 *table_address = (acpi_physical_address) physical_address;
Bob Mooref3d2e782007-02-02 19:48:18 +0300214 return_ACPI_STATUS(AE_OK);
215 }
216
217 /* A valid RSDP was not found */
218
Bob Moore3b3ea772012-07-16 09:39:54 +0800219 ACPI_BIOS_ERROR((AE_INFO, "A valid RSDP was not found"));
Bob Mooref3d2e782007-02-02 19:48:18 +0300220 return_ACPI_STATUS(AE_NOT_FOUND);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221}
222
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223/*******************************************************************************
224 *
225 * FUNCTION: acpi_tb_scan_memory_for_rsdp
226 *
227 * PARAMETERS: start_address - Starting pointer for search
Bob Mooreba494be2012-07-12 09:40:10 +0800228 * length - Maximum length to search
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 *
230 * RETURN: Pointer to the RSDP if found, otherwise NULL.
231 *
232 * DESCRIPTION: Search a block of memory for the RSDP signature
233 *
234 ******************************************************************************/
Len Brown4be44fc2005-08-05 00:44:28 -0400235static u8 *acpi_tb_scan_memory_for_rsdp(u8 * start_address, u32 length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236{
Len Brown4be44fc2005-08-05 00:44:28 -0400237 acpi_status status;
238 u8 *mem_rover;
239 u8 *end_address;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
Bob Mooreb229cf92006-04-21 17:15:00 -0400241 ACPI_FUNCTION_TRACE(tb_scan_memory_for_rsdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
243 end_address = start_address + length;
244
245 /* Search from given start address for the requested length */
246
247 for (mem_rover = start_address; mem_rover < end_address;
Len Brown4be44fc2005-08-05 00:44:28 -0400248 mem_rover += ACPI_RSDP_SCAN_STEP) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400249
Robert Mooref9f46012005-07-08 00:00:00 -0400250 /* The RSDP signature and checksum must both be correct */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
Len Brown4be44fc2005-08-05 00:44:28 -0400252 status =
253 acpi_tb_validate_rsdp(ACPI_CAST_PTR
Bob Mooref3d2e782007-02-02 19:48:18 +0300254 (struct acpi_table_rsdp, mem_rover));
Len Brown4be44fc2005-08-05 00:44:28 -0400255 if (ACPI_SUCCESS(status)) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400256
Robert Mooref9f46012005-07-08 00:00:00 -0400257 /* Sig and checksum valid, we have found a real RSDP */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
Len Brown4be44fc2005-08-05 00:44:28 -0400259 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
260 "RSDP located at physical address %p\n",
261 mem_rover));
262 return_PTR(mem_rover);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 }
264
Robert Mooref9f46012005-07-08 00:00:00 -0400265 /* No sig match or bad checksum, keep searching */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 }
267
268 /* Searched entire block, no RSDP was found */
269
Len Brown4be44fc2005-08-05 00:44:28 -0400270 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
271 "Searched entire block from %p, valid RSDP was not found\n",
272 start_address));
273 return_PTR(NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274}