ACPI: ACPICA 20060331
[linux-2.6-block.git] / drivers / acpi / tables / tbxfroot.c
CommitLineData
1da177e4
LT
1/******************************************************************************
2 *
3 * Module Name: tbxfroot - Find the root ACPI table (RSDT)
4 *
5 *****************************************************************************/
6
7/*
4a90c7e8 8 * Copyright (C) 2000 - 2006, R. Byron Moore
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
LT
44#include <acpi/acpi.h>
45#include <acpi/actables.h>
46
1da177e4 47#define _COMPONENT ACPI_TABLES
4be44fcd 48ACPI_MODULE_NAME("tbxfroot")
1da177e4 49
44f6c012 50/* Local prototypes */
44f6c012 51static acpi_status
4be44fcd 52acpi_tb_find_rsdp(struct acpi_table_desc *table_info, u32 flags);
44f6c012 53
4be44fcd 54static u8 *acpi_tb_scan_memory_for_rsdp(u8 * start_address, u32 length);
1da177e4 55
f9f4601f
RM
56/*******************************************************************************
57 *
58 * FUNCTION: acpi_tb_validate_rsdp
59 *
60 * PARAMETERS: Rsdp - Pointer to unvalidated RSDP
61 *
62 * RETURN: Status
63 *
64 * DESCRIPTION: Validate the RSDP (ptr)
65 *
66 ******************************************************************************/
67
4be44fcd 68acpi_status acpi_tb_validate_rsdp(struct rsdp_descriptor *rsdp)
f9f4601f 69{
4be44fcd 70 ACPI_FUNCTION_ENTRY();
f9f4601f
RM
71
72 /*
73 * The signature and checksum must both be correct
74 */
4be44fcd 75 if (ACPI_STRNCMP((char *)rsdp, RSDP_SIG, sizeof(RSDP_SIG) - 1) != 0) {
52fc0b02 76
f9f4601f
RM
77 /* Nope, BAD Signature */
78
79 return (AE_BAD_SIGNATURE);
80 }
81
82 /* Check the standard checksum */
83
793c2388 84 if (acpi_tb_sum_table(rsdp, ACPI_RSDP_CHECKSUM_LENGTH) != 0) {
f9f4601f
RM
85 return (AE_BAD_CHECKSUM);
86 }
87
88 /* Check extended checksum if table version >= 2 */
89
90 if ((rsdp->revision >= 2) &&
793c2388 91 (acpi_tb_sum_table(rsdp, ACPI_RSDP_XCHECKSUM_LENGTH) != 0)) {
f9f4601f
RM
92 return (AE_BAD_CHECKSUM);
93 }
94
95 return (AE_OK);
96}
97
1da177e4
LT
98/*******************************************************************************
99 *
100 * FUNCTION: acpi_tb_find_table
101 *
102 * PARAMETERS: Signature - String with ACPI table signature
103 * oem_id - String with the table OEM ID
44f6c012
RM
104 * oem_table_id - String with the OEM Table ID
105 * table_ptr - Where the table pointer is returned
1da177e4
LT
106 *
107 * RETURN: Status
108 *
109 * DESCRIPTION: Find an ACPI table (in the RSDT/XSDT) that matches the
110 * Signature, OEM ID and OEM Table ID.
111 *
112 ******************************************************************************/
113
114acpi_status
4be44fcd
LB
115acpi_tb_find_table(char *signature,
116 char *oem_id,
117 char *oem_table_id, struct acpi_table_header ** table_ptr)
1da177e4 118{
4be44fcd
LB
119 acpi_status status;
120 struct acpi_table_header *table;
1da177e4 121
4be44fcd 122 ACPI_FUNCTION_TRACE("tb_find_table");
1da177e4
LT
123
124 /* Validate string lengths */
125
4be44fcd
LB
126 if ((ACPI_STRLEN(signature) > ACPI_NAME_SIZE) ||
127 (ACPI_STRLEN(oem_id) > sizeof(table->oem_id)) ||
128 (ACPI_STRLEN(oem_table_id) > sizeof(table->oem_table_id))) {
129 return_ACPI_STATUS(AE_AML_STRING_LIMIT);
1da177e4
LT
130 }
131
4be44fcd 132 if (!ACPI_STRNCMP(signature, DSDT_SIG, ACPI_NAME_SIZE)) {
1da177e4
LT
133 /*
134 * The DSDT pointer is contained in the FADT, not the RSDT.
135 * This code should suffice, because the only code that would perform
136 * a "find" on the DSDT is the data_table_region() AML opcode -- in
137 * which case, the DSDT is guaranteed to be already loaded.
138 * If this becomes insufficient, the FADT will have to be found first.
139 */
140 if (!acpi_gbl_DSDT) {
4be44fcd 141 return_ACPI_STATUS(AE_NO_ACPI_TABLES);
1da177e4 142 }
1da177e4 143 table = acpi_gbl_DSDT;
4be44fcd 144 } else {
1da177e4
LT
145 /* Find the table */
146
4be44fcd
LB
147 status = acpi_get_firmware_table(signature, 1,
148 ACPI_LOGICAL_ADDRESSING,
149 &table);
150 if (ACPI_FAILURE(status)) {
151 return_ACPI_STATUS(status);
1da177e4
LT
152 }
153 }
154
155 /* Check oem_id and oem_table_id */
156
4be44fcd
LB
157 if ((oem_id[0] && ACPI_STRNCMP(oem_id, table->oem_id,
158 sizeof(table->oem_id))) ||
159 (oem_table_id[0] && ACPI_STRNCMP(oem_table_id, table->oem_table_id,
160 sizeof(table->oem_table_id)))) {
161 return_ACPI_STATUS(AE_AML_NAME_NOT_FOUND);
1da177e4
LT
162 }
163
4be44fcd
LB
164 ACPI_DEBUG_PRINT((ACPI_DB_TABLES, "Found table [%4.4s]\n",
165 table->signature));
44f6c012 166
1da177e4 167 *table_ptr = table;
4be44fcd 168 return_ACPI_STATUS(AE_OK);
1da177e4
LT
169}
170
1da177e4
LT
171/*******************************************************************************
172 *
173 * FUNCTION: acpi_get_firmware_table
174 *
175 * PARAMETERS: Signature - Any ACPI table signature
176 * Instance - the non zero instance of the table, allows
177 * support for multiple tables of the same type
178 * Flags - Physical/Virtual support
179 * table_pointer - Where a buffer containing the table is
180 * returned
181 *
182 * RETURN: Status
183 *
184 * DESCRIPTION: This function is called to get an ACPI table. A buffer is
185 * allocated for the table and returned in table_pointer.
186 * This table will be a complete table including the header.
187 *
188 ******************************************************************************/
189
190acpi_status
4be44fcd
LB
191acpi_get_firmware_table(acpi_string signature,
192 u32 instance,
193 u32 flags, struct acpi_table_header **table_pointer)
1da177e4 194{
4be44fcd
LB
195 acpi_status status;
196 struct acpi_pointer address;
197 struct acpi_table_header *header = NULL;
198 struct acpi_table_desc *table_info = NULL;
199 struct acpi_table_desc *rsdt_info;
200 u32 table_count;
201 u32 i;
202 u32 j;
1da177e4 203
4be44fcd 204 ACPI_FUNCTION_TRACE("acpi_get_firmware_table");
1da177e4
LT
205
206 /*
207 * Ensure that at least the table manager is initialized. We don't
208 * require that the entire ACPI subsystem is up for this interface.
209 * If we have a buffer, we must have a length too
210 */
4be44fcd
LB
211 if ((instance == 0) || (!signature) || (!table_pointer)) {
212 return_ACPI_STATUS(AE_BAD_PARAMETER);
1da177e4
LT
213 }
214
215 /* Ensure that we have a RSDP */
216
217 if (!acpi_gbl_RSDP) {
52fc0b02 218
1da177e4
LT
219 /* Get the RSDP */
220
4be44fcd
LB
221 status = acpi_os_get_root_pointer(flags, &address);
222 if (ACPI_FAILURE(status)) {
223 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "RSDP not found\n"));
224 return_ACPI_STATUS(AE_NO_ACPI_TABLES);
1da177e4
LT
225 }
226
227 /* Map and validate the RSDP */
228
229 if ((flags & ACPI_MEMORY_MODE) == ACPI_LOGICAL_ADDRESSING) {
4be44fcd
LB
230 status = acpi_os_map_memory(address.pointer.physical,
231 sizeof(struct
232 rsdp_descriptor),
233 (void *)&acpi_gbl_RSDP);
234 if (ACPI_FAILURE(status)) {
235 return_ACPI_STATUS(status);
1da177e4 236 }
4be44fcd 237 } else {
1da177e4
LT
238 acpi_gbl_RSDP = address.pointer.logical;
239 }
240
f9f4601f 241 /* The RDSP signature and checksum must both be correct */
1da177e4 242
4be44fcd
LB
243 status = acpi_tb_validate_rsdp(acpi_gbl_RSDP);
244 if (ACPI_FAILURE(status)) {
245 return_ACPI_STATUS(status);
1da177e4
LT
246 }
247 }
248
249 /* Get the RSDT address via the RSDP */
250
4be44fcd
LB
251 acpi_tb_get_rsdt_address(&address);
252 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
50eca3eb 253 "RSDP located at %p, RSDT physical=%8.8X%8.8X\n",
4be44fcd
LB
254 acpi_gbl_RSDP,
255 ACPI_FORMAT_UINT64(address.pointer.value)));
1da177e4
LT
256
257 /* Insert processor_mode flags */
258
259 address.pointer_type |= flags;
260
261 /* Get and validate the RSDT */
262
8313524a 263 rsdt_info = ACPI_ALLOCATE_ZEROED(sizeof(struct acpi_table_desc));
1da177e4 264 if (!rsdt_info) {
4be44fcd 265 return_ACPI_STATUS(AE_NO_MEMORY);
1da177e4
LT
266 }
267
4be44fcd
LB
268 status = acpi_tb_get_table(&address, rsdt_info);
269 if (ACPI_FAILURE(status)) {
1da177e4
LT
270 goto cleanup;
271 }
272
4be44fcd
LB
273 status = acpi_tb_validate_rsdt(rsdt_info->pointer);
274 if (ACPI_FAILURE(status)) {
1da177e4
LT
275 goto cleanup;
276 }
277
278 /* Allocate a scratch table header and table descriptor */
279
8313524a 280 header = ACPI_ALLOCATE(sizeof(struct acpi_table_header));
1da177e4
LT
281 if (!header) {
282 status = AE_NO_MEMORY;
283 goto cleanup;
284 }
285
8313524a 286 table_info = ACPI_ALLOCATE(sizeof(struct acpi_table_desc));
1da177e4
LT
287 if (!table_info) {
288 status = AE_NO_MEMORY;
289 goto cleanup;
290 }
291
292 /* Get the number of table pointers within the RSDT */
293
4be44fcd
LB
294 table_count =
295 acpi_tb_get_table_count(acpi_gbl_RSDP, rsdt_info->pointer);
1da177e4
LT
296 address.pointer_type = acpi_gbl_table_flags | flags;
297
298 /*
299 * Search the RSDT/XSDT for the correct instance of the
300 * requested table
301 */
302 for (i = 0, j = 0; i < table_count; i++) {
73459f73
RM
303 /*
304 * Get the next table pointer, handle RSDT vs. XSDT
305 * RSDT pointers are 32 bits, XSDT pointers are 64 bits
306 */
307 if (acpi_gbl_root_table_type == ACPI_TABLE_TYPE_RSDT) {
4be44fcd
LB
308 address.pointer.value =
309 (ACPI_CAST_PTR
793c2388 310 (struct rsdt_descriptor,
4be44fcd
LB
311 rsdt_info->pointer))->table_offset_entry[i];
312 } else {
313 address.pointer.value =
314 (ACPI_CAST_PTR
793c2388 315 (struct xsdt_descriptor,
4be44fcd 316 rsdt_info->pointer))->table_offset_entry[i];
1da177e4
LT
317 }
318
319 /* Get the table header */
320
4be44fcd
LB
321 status = acpi_tb_get_table_header(&address, header);
322 if (ACPI_FAILURE(status)) {
1da177e4
LT
323 goto cleanup;
324 }
325
326 /* Compare table signatures and table instance */
327
4be44fcd 328 if (!ACPI_STRNCMP(header->signature, signature, ACPI_NAME_SIZE)) {
52fc0b02 329
1da177e4
LT
330 /* An instance of the table was found */
331
332 j++;
333 if (j >= instance) {
52fc0b02 334
1da177e4
LT
335 /* Found the correct instance, get the entire table */
336
4be44fcd
LB
337 status =
338 acpi_tb_get_table_body(&address, header,
339 table_info);
340 if (ACPI_FAILURE(status)) {
1da177e4
LT
341 goto cleanup;
342 }
343
344 *table_pointer = table_info->pointer;
345 goto cleanup;
346 }
347 }
348 }
349
350 /* Did not find the table */
351
352 status = AE_NOT_EXIST;
353
4be44fcd 354 cleanup:
88ac00f5 355 if (rsdt_info->pointer) {
4be44fcd
LB
356 acpi_os_unmap_memory(rsdt_info->pointer,
357 (acpi_size) rsdt_info->pointer->length);
88ac00f5 358 }
8313524a 359 ACPI_FREE(rsdt_info);
1da177e4
LT
360
361 if (header) {
8313524a 362 ACPI_FREE(header);
1da177e4
LT
363 }
364 if (table_info) {
8313524a 365 ACPI_FREE(table_info);
1da177e4 366 }
4be44fcd 367 return_ACPI_STATUS(status);
1da177e4 368}
1da177e4 369
8313524a 370ACPI_EXPORT_SYMBOL(acpi_get_firmware_table)
1da177e4
LT
371
372/* TBD: Move to a new file */
1da177e4 373#if ACPI_MACHINE_WIDTH != 16
1da177e4
LT
374/*******************************************************************************
375 *
376 * FUNCTION: acpi_find_root_pointer
377 *
44f6c012
RM
378 * PARAMETERS: Flags - Logical/Physical addressing
379 * rsdp_address - Where to place the RSDP address
1da177e4
LT
380 *
381 * RETURN: Status, Physical address of the RSDP
382 *
383 * DESCRIPTION: Find the RSDP
384 *
385 ******************************************************************************/
4be44fcd 386acpi_status acpi_find_root_pointer(u32 flags, struct acpi_pointer *rsdp_address)
1da177e4 387{
4be44fcd
LB
388 struct acpi_table_desc table_info;
389 acpi_status status;
1da177e4 390
4be44fcd 391 ACPI_FUNCTION_TRACE("acpi_find_root_pointer");
1da177e4
LT
392
393 /* Get the RSDP */
394
4be44fcd
LB
395 status = acpi_tb_find_rsdp(&table_info, flags);
396 if (ACPI_FAILURE(status)) {
b8e4d893
BM
397 ACPI_EXCEPTION((AE_INFO, status,
398 "RSDP structure not found - Flags=%X", flags));
44f6c012 399
4be44fcd 400 return_ACPI_STATUS(AE_NO_ACPI_TABLES);
1da177e4
LT
401 }
402
403 rsdp_address->pointer_type = ACPI_PHYSICAL_POINTER;
404 rsdp_address->pointer.physical = table_info.physical_address;
4be44fcd 405 return_ACPI_STATUS(AE_OK);
1da177e4
LT
406}
407
8313524a
BM
408ACPI_EXPORT_SYMBOL(acpi_find_root_pointer)
409
1da177e4
LT
410/*******************************************************************************
411 *
412 * FUNCTION: acpi_tb_scan_memory_for_rsdp
413 *
414 * PARAMETERS: start_address - Starting pointer for search
415 * Length - Maximum length to search
416 *
417 * RETURN: Pointer to the RSDP if found, otherwise NULL.
418 *
419 * DESCRIPTION: Search a block of memory for the RSDP signature
420 *
421 ******************************************************************************/
4be44fcd 422static u8 *acpi_tb_scan_memory_for_rsdp(u8 * start_address, u32 length)
1da177e4 423{
4be44fcd
LB
424 acpi_status status;
425 u8 *mem_rover;
426 u8 *end_address;
1da177e4 427
4be44fcd 428 ACPI_FUNCTION_TRACE("tb_scan_memory_for_rsdp");
1da177e4
LT
429
430 end_address = start_address + length;
431
432 /* Search from given start address for the requested length */
433
434 for (mem_rover = start_address; mem_rover < end_address;
4be44fcd 435 mem_rover += ACPI_RSDP_SCAN_STEP) {
52fc0b02 436
f9f4601f 437 /* The RSDP signature and checksum must both be correct */
1da177e4 438
4be44fcd
LB
439 status =
440 acpi_tb_validate_rsdp(ACPI_CAST_PTR
441 (struct rsdp_descriptor, mem_rover));
442 if (ACPI_SUCCESS(status)) {
52fc0b02 443
f9f4601f 444 /* Sig and checksum valid, we have found a real RSDP */
1da177e4 445
4be44fcd
LB
446 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
447 "RSDP located at physical address %p\n",
448 mem_rover));
449 return_PTR(mem_rover);
1da177e4
LT
450 }
451
f9f4601f 452 /* No sig match or bad checksum, keep searching */
1da177e4
LT
453 }
454
455 /* Searched entire block, no RSDP was found */
456
4be44fcd
LB
457 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
458 "Searched entire block from %p, valid RSDP was not found\n",
459 start_address));
460 return_PTR(NULL);
1da177e4
LT
461}
462
1da177e4
LT
463/*******************************************************************************
464 *
465 * FUNCTION: acpi_tb_find_rsdp
466 *
44f6c012 467 * PARAMETERS: table_info - Where the table info is returned
1da177e4
LT
468 * Flags - Current memory mode (logical vs.
469 * physical addressing)
470 *
471 * RETURN: Status, RSDP physical address
472 *
473 * DESCRIPTION: search lower 1_mbyte of memory for the root system descriptor
474 * pointer structure. If it is found, set *RSDP to point to it.
475 *
476 * NOTE1: The RSDp must be either in the first 1_k of the Extended
477 * BIOS Data Area or between E0000 and FFFFF (From ACPI Spec.)
478 * Only a 32-bit physical address is necessary.
479 *
480 * NOTE2: This function is always available, regardless of the
481 * initialization state of the rest of ACPI.
482 *
483 ******************************************************************************/
484
44f6c012 485static acpi_status
4be44fcd 486acpi_tb_find_rsdp(struct acpi_table_desc *table_info, u32 flags)
1da177e4 487{
4be44fcd
LB
488 u8 *table_ptr;
489 u8 *mem_rover;
490 u32 physical_address;
491 acpi_status status;
1da177e4 492
4be44fcd 493 ACPI_FUNCTION_TRACE("tb_find_rsdp");
1da177e4
LT
494
495 /*
44f6c012 496 * Scan supports either logical addressing or physical addressing
1da177e4
LT
497 */
498 if ((flags & ACPI_MEMORY_MODE) == ACPI_LOGICAL_ADDRESSING) {
52fc0b02 499
44f6c012
RM
500 /* 1a) Get the location of the Extended BIOS Data Area (EBDA) */
501
4be44fcd
LB
502 status = acpi_os_map_memory((acpi_physical_address)
503 ACPI_EBDA_PTR_LOCATION,
504 ACPI_EBDA_PTR_LENGTH,
505 (void *)&table_ptr);
506 if (ACPI_FAILURE(status)) {
b8e4d893
BM
507 ACPI_ERROR((AE_INFO,
508 "Could not map memory at %8.8X for length %X",
509 ACPI_EBDA_PTR_LOCATION,
510 ACPI_EBDA_PTR_LENGTH));
4be44fcd
LB
511
512 return_ACPI_STATUS(status);
1da177e4
LT
513 }
514
4be44fcd 515 ACPI_MOVE_16_TO_32(&physical_address, table_ptr);
44f6c012
RM
516
517 /* Convert segment part to physical address */
518
519 physical_address <<= 4;
4be44fcd 520 acpi_os_unmap_memory(table_ptr, ACPI_EBDA_PTR_LENGTH);
1da177e4
LT
521
522 /* EBDA present? */
523
524 if (physical_address > 0x400) {
525 /*
44f6c012
RM
526 * 1b) Search EBDA paragraphs (EBDa is required to be a
527 * minimum of 1_k length)
1da177e4 528 */
4be44fcd
LB
529 status = acpi_os_map_memory((acpi_physical_address)
530 physical_address,
531 ACPI_EBDA_WINDOW_SIZE,
532 (void *)&table_ptr);
533 if (ACPI_FAILURE(status)) {
b8e4d893
BM
534 ACPI_ERROR((AE_INFO,
535 "Could not map memory at %8.8X for length %X",
536 physical_address,
537 ACPI_EBDA_WINDOW_SIZE));
4be44fcd
LB
538
539 return_ACPI_STATUS(status);
1da177e4
LT
540 }
541
4be44fcd
LB
542 mem_rover = acpi_tb_scan_memory_for_rsdp(table_ptr,
543 ACPI_EBDA_WINDOW_SIZE);
544 acpi_os_unmap_memory(table_ptr, ACPI_EBDA_WINDOW_SIZE);
1da177e4
LT
545
546 if (mem_rover) {
52fc0b02 547
f9f4601f 548 /* Return the physical address */
1da177e4 549
4be44fcd
LB
550 physical_address +=
551 ACPI_PTR_DIFF(mem_rover, table_ptr);
1da177e4 552
44f6c012 553 table_info->physical_address =
4be44fcd
LB
554 (acpi_physical_address) physical_address;
555 return_ACPI_STATUS(AE_OK);
1da177e4
LT
556 }
557 }
558
559 /*
560 * 2) Search upper memory: 16-byte boundaries in E0000h-FFFFFh
561 */
4be44fcd
LB
562 status = acpi_os_map_memory((acpi_physical_address)
563 ACPI_HI_RSDP_WINDOW_BASE,
564 ACPI_HI_RSDP_WINDOW_SIZE,
565 (void *)&table_ptr);
566
567 if (ACPI_FAILURE(status)) {
b8e4d893
BM
568 ACPI_ERROR((AE_INFO,
569 "Could not map memory at %8.8X for length %X",
570 ACPI_HI_RSDP_WINDOW_BASE,
571 ACPI_HI_RSDP_WINDOW_SIZE));
4be44fcd
LB
572
573 return_ACPI_STATUS(status);
1da177e4
LT
574 }
575
4be44fcd
LB
576 mem_rover =
577 acpi_tb_scan_memory_for_rsdp(table_ptr,
578 ACPI_HI_RSDP_WINDOW_SIZE);
579 acpi_os_unmap_memory(table_ptr, ACPI_HI_RSDP_WINDOW_SIZE);
1da177e4
LT
580
581 if (mem_rover) {
52fc0b02 582
f9f4601f 583 /* Return the physical address */
1da177e4 584
44f6c012 585 physical_address =
4be44fcd
LB
586 ACPI_HI_RSDP_WINDOW_BASE + ACPI_PTR_DIFF(mem_rover,
587 table_ptr);
1da177e4 588
44f6c012 589 table_info->physical_address =
4be44fcd
LB
590 (acpi_physical_address) physical_address;
591 return_ACPI_STATUS(AE_OK);
1da177e4
LT
592 }
593 }
594
595 /*
596 * Physical addressing
597 */
598 else {
44f6c012
RM
599 /* 1a) Get the location of the EBDA */
600
4be44fcd
LB
601 ACPI_MOVE_16_TO_32(&physical_address, ACPI_EBDA_PTR_LOCATION);
602 physical_address <<= 4; /* Convert segment to physical address */
1da177e4
LT
603
604 /* EBDA present? */
605
606 if (physical_address > 0x400) {
607 /*
44f6c012
RM
608 * 1b) Search EBDA paragraphs (EBDa is required to be a minimum of
609 * 1_k length)
1da177e4 610 */
4be44fcd
LB
611 mem_rover =
612 acpi_tb_scan_memory_for_rsdp(ACPI_PHYSADDR_TO_PTR
613 (physical_address),
614 ACPI_EBDA_WINDOW_SIZE);
1da177e4 615 if (mem_rover) {
52fc0b02 616
f9f4601f 617 /* Return the physical address */
1da177e4 618
4be44fcd
LB
619 table_info->physical_address =
620 ACPI_TO_INTEGER(mem_rover);
621 return_ACPI_STATUS(AE_OK);
1da177e4
LT
622 }
623 }
624
44f6c012
RM
625 /* 2) Search upper memory: 16-byte boundaries in E0000h-FFFFFh */
626
4be44fcd
LB
627 mem_rover =
628 acpi_tb_scan_memory_for_rsdp(ACPI_PHYSADDR_TO_PTR
629 (ACPI_HI_RSDP_WINDOW_BASE),
630 ACPI_HI_RSDP_WINDOW_SIZE);
1da177e4 631 if (mem_rover) {
52fc0b02 632
1da177e4
LT
633 /* Found it, return the physical address */
634
4be44fcd
LB
635 table_info->physical_address =
636 ACPI_TO_INTEGER(mem_rover);
637 return_ACPI_STATUS(AE_OK);
1da177e4
LT
638 }
639 }
640
f9f4601f 641 /* A valid RSDP was not found */
1da177e4 642
b8e4d893 643 ACPI_ERROR((AE_INFO, "No valid RSDP was found"));
4be44fcd 644 return_ACPI_STATUS(AE_NOT_FOUND);
1da177e4
LT
645}
646
647#endif