1 // SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0
2 /******************************************************************************
4 * Module Name: tbxfroot - Find the root ACPI table (RSDT)
6 * Copyright (C) 2000 - 2019, Intel Corp.
8 *****************************************************************************/
10 #include <acpi/acpi.h>
14 #define _COMPONENT ACPI_TABLES
15 ACPI_MODULE_NAME("tbxfroot")
17 /*******************************************************************************
19 * FUNCTION: acpi_tb_get_rsdp_length
21 * PARAMETERS: rsdp - Pointer to RSDP
23 * RETURN: Table length
25 * DESCRIPTION: Get the length of the RSDP
27 ******************************************************************************/
28 u32
acpi_tb_get_rsdp_length(struct acpi_table_rsdp
*rsdp
)
31 if (!ACPI_VALIDATE_RSDP_SIG(rsdp
->signature
)) {
38 /* "Length" field is available if table version >= 2 */
40 if (rsdp
->revision
>= 2) {
41 return (rsdp
->length
);
43 return (ACPI_RSDP_CHECKSUM_LENGTH
);
47 /*******************************************************************************
49 * FUNCTION: acpi_tb_validate_rsdp
51 * PARAMETERS: rsdp - Pointer to unvalidated RSDP
55 * DESCRIPTION: Validate the RSDP (ptr)
57 ******************************************************************************/
59 acpi_status
acpi_tb_validate_rsdp(struct acpi_table_rsdp
*rsdp
)
63 * The signature and checksum must both be correct
65 * Note: Sometimes there exists more than one RSDP in memory; the valid
66 * RSDP has a valid checksum, all others have an invalid checksum.
68 if (!ACPI_VALIDATE_RSDP_SIG(rsdp
->signature
)) {
70 /* Nope, BAD Signature */
72 return (AE_BAD_SIGNATURE
);
75 /* Check the standard checksum */
77 if (acpi_tb_checksum((u8
*) rsdp
, ACPI_RSDP_CHECKSUM_LENGTH
) != 0) {
78 return (AE_BAD_CHECKSUM
);
81 /* Check extended checksum if table version >= 2 */
83 if ((rsdp
->revision
>= 2) &&
84 (acpi_tb_checksum((u8
*) rsdp
, ACPI_RSDP_XCHECKSUM_LENGTH
) != 0)) {
85 return (AE_BAD_CHECKSUM
);
91 /*******************************************************************************
93 * FUNCTION: acpi_find_root_pointer
95 * PARAMETERS: table_address - Where the table pointer is returned
97 * RETURN: Status, RSDP physical address
99 * DESCRIPTION: Search lower 1Mbyte of memory for the root system descriptor
100 * pointer structure. If it is found, set *RSDP to point to it.
102 * NOTE1: The RSDP must be either in the first 1K of the Extended
103 * BIOS Data Area or between E0000 and FFFFF (From ACPI Spec.)
104 * Only a 32-bit physical address is necessary.
106 * NOTE2: This function is always available, regardless of the
107 * initialization state of the rest of ACPI.
109 ******************************************************************************/
111 acpi_status ACPI_INIT_FUNCTION
112 acpi_find_root_pointer(acpi_physical_address
*table_address
)
116 u32 physical_address
;
118 ACPI_FUNCTION_TRACE(acpi_find_root_pointer
);
120 /* 1a) Get the location of the Extended BIOS Data Area (EBDA) */
122 table_ptr
= acpi_os_map_memory((acpi_physical_address
)
123 ACPI_EBDA_PTR_LOCATION
,
124 ACPI_EBDA_PTR_LENGTH
);
127 "Could not map memory at 0x%8.8X for length %u",
128 ACPI_EBDA_PTR_LOCATION
, ACPI_EBDA_PTR_LENGTH
));
130 return_ACPI_STATUS(AE_NO_MEMORY
);
133 ACPI_MOVE_16_TO_32(&physical_address
, table_ptr
);
135 /* Convert segment part to physical address */
137 physical_address
<<= 4;
138 acpi_os_unmap_memory(table_ptr
, ACPI_EBDA_PTR_LENGTH
);
142 if (physical_address
> 0x400) {
144 * 1b) Search EBDA paragraphs (EBDA is required to be a
145 * minimum of 1K length)
147 table_ptr
= acpi_os_map_memory((acpi_physical_address
)
149 ACPI_EBDA_WINDOW_SIZE
);
152 "Could not map memory at 0x%8.8X for length %u",
153 physical_address
, ACPI_EBDA_WINDOW_SIZE
));
155 return_ACPI_STATUS(AE_NO_MEMORY
);
159 acpi_tb_scan_memory_for_rsdp(table_ptr
,
160 ACPI_EBDA_WINDOW_SIZE
);
161 acpi_os_unmap_memory(table_ptr
, ACPI_EBDA_WINDOW_SIZE
);
165 /* Return the physical address */
168 (u32
) ACPI_PTR_DIFF(mem_rover
, table_ptr
);
171 (acpi_physical_address
)physical_address
;
172 return_ACPI_STATUS(AE_OK
);
177 * 2) Search upper memory: 16-byte boundaries in E0000h-FFFFFh
179 table_ptr
= acpi_os_map_memory((acpi_physical_address
)
180 ACPI_HI_RSDP_WINDOW_BASE
,
181 ACPI_HI_RSDP_WINDOW_SIZE
);
185 "Could not map memory at 0x%8.8X for length %u",
186 ACPI_HI_RSDP_WINDOW_BASE
,
187 ACPI_HI_RSDP_WINDOW_SIZE
));
189 return_ACPI_STATUS(AE_NO_MEMORY
);
193 acpi_tb_scan_memory_for_rsdp(table_ptr
, ACPI_HI_RSDP_WINDOW_SIZE
);
194 acpi_os_unmap_memory(table_ptr
, ACPI_HI_RSDP_WINDOW_SIZE
);
198 /* Return the physical address */
200 physical_address
= (u32
)
201 (ACPI_HI_RSDP_WINDOW_BASE
+
202 ACPI_PTR_DIFF(mem_rover
, table_ptr
));
204 *table_address
= (acpi_physical_address
)physical_address
;
205 return_ACPI_STATUS(AE_OK
);
208 /* A valid RSDP was not found */
210 ACPI_BIOS_ERROR((AE_INFO
, "A valid RSDP was not found"));
211 return_ACPI_STATUS(AE_NOT_FOUND
);
214 ACPI_EXPORT_SYMBOL_INIT(acpi_find_root_pointer
)
216 /*******************************************************************************
218 * FUNCTION: acpi_tb_scan_memory_for_rsdp
220 * PARAMETERS: start_address - Starting pointer for search
221 * length - Maximum length to search
223 * RETURN: Pointer to the RSDP if found, otherwise NULL.
225 * DESCRIPTION: Search a block of memory for the RSDP signature
227 ******************************************************************************/
228 u8
*acpi_tb_scan_memory_for_rsdp(u8
*start_address
, u32 length
)
234 ACPI_FUNCTION_TRACE(tb_scan_memory_for_rsdp
);
236 end_address
= start_address
+ length
;
238 /* Search from given start address for the requested length */
240 for (mem_rover
= start_address
; mem_rover
< end_address
;
241 mem_rover
+= ACPI_RSDP_SCAN_STEP
) {
243 /* The RSDP signature and checksum must both be correct */
246 acpi_tb_validate_rsdp(ACPI_CAST_PTR
247 (struct acpi_table_rsdp
, mem_rover
));
248 if (ACPI_SUCCESS(status
)) {
250 /* Sig and checksum valid, we have found a real RSDP */
252 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
253 "RSDP located at physical address %p\n",
255 return_PTR(mem_rover
);
258 /* No sig match or bad checksum, keep searching */
261 /* Searched entire block, no RSDP was found */
263 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
264 "Searched entire block from %p, valid RSDP was not found\n",