* RSDP scan problem
@ 2004-03-04 15:47 Magnus Christensson
0 siblings, 0 replies; only message in thread
From: Magnus Christensson @ 2004-03-04 15:47 UTC (permalink / raw)
To: acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f
There seem to be a problem with the RSDP scan in at least a few different kernel
versions.
In the 2.6 version I looked at we have:
----
/*
* Scan memory looking for the RSDP signature. First search EBDA (low
* memory) paragraphs and then search upper memory (E0000-FFFFF).
*/
rsdp_phys = acpi_scan_rsdp (0, 0x400);
if (!rsdp_phys)
rsdp_phys = acpi_scan_rsdp (0xE0000, 0xFFFFF);
----
In a 2.4 version we have:
----
/*
* Physical address is given
*/
/*
* Region 1) Search EBDA (low memory) paragraphs
*/
rsdp = acpi_tb_scan_memory_for_rsdp(__va(LO_RSDP_WINDOW_BASE),
LO_RSDP_WINDOW_SIZE);
----
Both versions claim to check the EBDA in the comments, but if I'm not mistaken
they really check the lowest part of physical memory.
The location of the EBDA varies between BIOSes (the real mode segment part can
be found at 40:0E).
M.
-------------------------------------------------------
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2004-03-04 15:47 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-03-04 15:47 RSDP scan problem Magnus Christensson
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox