Merge remote-tracking branch 'lightnvm/for-next'
[deliverable/linux.git] / drivers / acpi / acpica / tbxfroot.c
CommitLineData
1da177e4
LT
1/******************************************************************************
2 *
3 * Module Name: tbxfroot - Find the root ACPI table (RSDT)
4 *
5 *****************************************************************************/
6
7/*
c8100dc4 8 * Copyright (C) 2000 - 2016, Intel Corp.
1da177e4
LT
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
1da177e4 44#include <acpi/acpi.h>
e2f7a777
LB
45#include "accommon.h"
46#include "actables.h"
1da177e4 47
1da177e4 48#define _COMPONENT ACPI_TABLES
4be44fcd 49ACPI_MODULE_NAME("tbxfroot")
1da177e4 50
f1b69752
LZ
51/*******************************************************************************
52 *
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 ******************************************************************************/
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
f9f4601f
RM
81/*******************************************************************************
82 *
83 * FUNCTION: acpi_tb_validate_rsdp
84 *
ba494bee 85 * PARAMETERS: rsdp - Pointer to unvalidated RSDP
f9f4601f
RM
86 *
87 * RETURN: Status
88 *
89 * DESCRIPTION: Validate the RSDP (ptr)
90 *
91 ******************************************************************************/
f1b69752 92
f5c1e1c5 93acpi_status acpi_tb_validate_rsdp(struct acpi_table_rsdp *rsdp)
f9f4601f 94{
f9f4601f
RM
95
96 /*
f3d2e786
BM
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.
f9f4601f 101 */
cacba865 102 if (!ACPI_VALIDATE_RSDP_SIG(rsdp->signature)) {
52fc0b02 103
f9f4601f
RM
104 /* Nope, BAD Signature */
105
106 return (AE_BAD_SIGNATURE);
107 }
108
109 /* Check the standard checksum */
110
f3d2e786 111 if (acpi_tb_checksum((u8 *) rsdp, ACPI_RSDP_CHECKSUM_LENGTH) != 0) {
f9f4601f
RM
112 return (AE_BAD_CHECKSUM);
113 }
114
115 /* Check extended checksum if table version >= 2 */
116
117 if ((rsdp->revision >= 2) &&
f3d2e786 118 (acpi_tb_checksum((u8 *) rsdp, ACPI_RSDP_XCHECKSUM_LENGTH) != 0)) {
f9f4601f
RM
119 return (AE_BAD_CHECKSUM);
120 }
121
122 return (AE_OK);
123}
124
1da177e4
LT
125/*******************************************************************************
126 *
239665a3 127 * FUNCTION: acpi_find_root_pointer
1da177e4 128 *
f3d2e786 129 * PARAMETERS: table_address - Where the table pointer is returned
1da177e4 130 *
f3d2e786 131 * RETURN: Status, RSDP physical address
1da177e4 132 *
ba494bee 133 * DESCRIPTION: Search lower 1Mbyte of memory for the root system descriptor
73a3090a 134 * pointer structure. If it is found, set *RSDP to point to it.
1da177e4 135 *
ba494bee 136 * NOTE1: The RSDP must be either in the first 1K of the Extended
f3d2e786
BM
137 * BIOS Data Area or between E0000 and FFFFF (From ACPI Spec.)
138 * Only a 32-bit physical address is necessary.
1da177e4 139 *
f3d2e786
BM
140 * NOTE2: This function is always available, regardless of the
141 * initialization state of the rest of ACPI.
1da177e4
LT
142 *
143 ******************************************************************************/
144
2368b1a1
LZ
145acpi_status ACPI_INIT_FUNCTION
146acpi_find_root_pointer(acpi_physical_address *table_address)
1da177e4 147{
f3d2e786
BM
148 u8 *table_ptr;
149 u8 *mem_rover;
150 u32 physical_address;
1da177e4 151
f3d2e786 152 ACPI_FUNCTION_TRACE(acpi_find_root_pointer);
1da177e4 153
f3d2e786 154 /* 1a) Get the location of the Extended BIOS Data Area (EBDA) */
1da177e4 155
f3d2e786
BM
156 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,
f6a22b0b 161 "Could not map memory at 0x%8.8X for length %u",
f3d2e786 162 ACPI_EBDA_PTR_LOCATION, ACPI_EBDA_PTR_LENGTH));
1da177e4 163
4be44fcd 164 return_ACPI_STATUS(AE_NO_MEMORY);
1da177e4
LT
165 }
166
f3d2e786 167 ACPI_MOVE_16_TO_32(&physical_address, table_ptr);
1da177e4 168
f3d2e786 169 /* Convert segment part to physical address */
1da177e4 170
f3d2e786
BM
171 physical_address <<= 4;
172 acpi_os_unmap_memory(table_ptr, ACPI_EBDA_PTR_LENGTH);
1da177e4 173
f3d2e786 174 /* EBDA present? */
1da177e4 175
f3d2e786 176 if (physical_address > 0x400) {
73459f73 177 /*
f3d2e786 178 * 1b) Search EBDA paragraphs (EBDA is required to be a
ba494bee 179 * minimum of 1K length)
73459f73 180 */
67a119f9 181 table_ptr = acpi_os_map_memory((acpi_physical_address)
f3d2e786
BM
182 physical_address,
183 ACPI_EBDA_WINDOW_SIZE);
184 if (!table_ptr) {
185 ACPI_ERROR((AE_INFO,
f6a22b0b 186 "Could not map memory at 0x%8.8X for length %u",
f3d2e786 187 physical_address, ACPI_EBDA_WINDOW_SIZE));
1da177e4 188
f3d2e786 189 return_ACPI_STATUS(AE_NO_MEMORY);
1da177e4
LT
190 }
191
f3d2e786
BM
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);
1da177e4 196
f3d2e786 197 if (mem_rover) {
52fc0b02 198
f3d2e786 199 /* Return the physical address */
1da177e4 200
f3d2e786
BM
201 physical_address +=
202 (u32) ACPI_PTR_DIFF(mem_rover, table_ptr);
1da177e4 203
f254e3c5 204 *table_address =
f5c1e1c5 205 (acpi_physical_address)physical_address;
f3d2e786 206 return_ACPI_STATUS(AE_OK);
1da177e4
LT
207 }
208 }
209
f3d2e786
BM
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);
1da177e4 216
f3d2e786
BM
217 if (!table_ptr) {
218 ACPI_ERROR((AE_INFO,
f6a22b0b 219 "Could not map memory at 0x%8.8X for length %u",
f3d2e786
BM
220 ACPI_HI_RSDP_WINDOW_BASE,
221 ACPI_HI_RSDP_WINDOW_SIZE));
1da177e4 222
f3d2e786 223 return_ACPI_STATUS(AE_NO_MEMORY);
88ac00f5 224 }
1da177e4 225
f3d2e786
BM
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);
1da177e4 229
f3d2e786 230 if (mem_rover) {
1da177e4 231
f3d2e786 232 /* Return the physical address */
1da177e4 233
f3d2e786
BM
234 physical_address = (u32)
235 (ACPI_HI_RSDP_WINDOW_BASE +
236 ACPI_PTR_DIFF(mem_rover, table_ptr));
1da177e4 237
f5c1e1c5 238 *table_address = (acpi_physical_address)physical_address;
f3d2e786 239 return_ACPI_STATUS(AE_OK);
1da177e4
LT
240 }
241
f3d2e786
BM
242 /* A valid RSDP was not found */
243
3b3ea775 244 ACPI_BIOS_ERROR((AE_INFO, "A valid RSDP was not found"));
f3d2e786 245 return_ACPI_STATUS(AE_NOT_FOUND);
1da177e4
LT
246}
247
2368b1a1
LZ
248ACPI_EXPORT_SYMBOL_INIT(acpi_find_root_pointer)
249
1da177e4
LT
250/*******************************************************************************
251 *
252 * FUNCTION: acpi_tb_scan_memory_for_rsdp
253 *
254 * PARAMETERS: start_address - Starting pointer for search
ba494bee 255 * length - Maximum length to search
1da177e4
LT
256 *
257 * RETURN: Pointer to the RSDP if found, otherwise NULL.
258 *
259 * DESCRIPTION: Search a block of memory for the RSDP signature
260 *
261 ******************************************************************************/
57987ca2 262u8 *acpi_tb_scan_memory_for_rsdp(u8 *start_address, u32 length)
1da177e4 263{
4be44fcd
LB
264 acpi_status status;
265 u8 *mem_rover;
266 u8 *end_address;
1da177e4 267
b229cf92 268 ACPI_FUNCTION_TRACE(tb_scan_memory_for_rsdp);
1da177e4
LT
269
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;
4be44fcd 275 mem_rover += ACPI_RSDP_SCAN_STEP) {
52fc0b02 276
f9f4601f 277 /* The RSDP signature and checksum must both be correct */
1da177e4 278
4be44fcd
LB
279 status =
280 acpi_tb_validate_rsdp(ACPI_CAST_PTR
f3d2e786 281 (struct acpi_table_rsdp, mem_rover));
4be44fcd 282 if (ACPI_SUCCESS(status)) {
52fc0b02 283
f9f4601f 284 /* Sig and checksum valid, we have found a real RSDP */
1da177e4 285
4be44fcd
LB
286 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
287 "RSDP located at physical address %p\n",
288 mem_rover));
289 return_PTR(mem_rover);
1da177e4
LT
290 }
291
f9f4601f 292 /* No sig match or bad checksum, keep searching */
1da177e4
LT
293 }
294
295 /* Searched entire block, no RSDP was found */
296
4be44fcd
LB
297 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);
1da177e4 301}
This page took 0.697993 seconds and 5 git commands to generate.