e820
e820 is shorthand to refer to the facility by which the BIOS of x86-based computer systems reports the memory map to the operating system or boot loader.
It is accessed via the int 15h call, by setting the AX register to value E820
in hexadecimal.
It reports which memory address ranges are usable and which are reserved for use by the BIOS.
BIOS-e820 is often the first thing reported by a booting Linux kernel, and it can also be seen with the dmesg command.
Sometimes the BIOS is buggy and incorrectly reports the reserved memory. This can cause memory testing software, like Memtest, to report errors.
References
- Advanced Configuration and Power Interface Specification 4.0 - Chapter 14, System Address Map Interfaces
- INT 15h, AX=E820h - Query System Address Map
External links
This article is issued from Wikipedia - version of the 2/16/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.