This code adds a very simple toc based memory manager for the high tables area. The purpose of this code is to make it simpler and more reliable to find certain data structures in memory. This will also make it possible to have ACPI S3 Resume working without an ugly hole at 31MB. Signed-off-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Peter Stuge <peter@stuge.se> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4860 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
33 lines
520 B
Text
33 lines
520 B
Text
uses CONFIG_USE_INIT
|
|
uses CONFIG_USBDEBUG_DIRECT
|
|
|
|
object clog2.o
|
|
object uart8250.o
|
|
|
|
if CONFIG_USBDEBUG_DIRECT
|
|
object usbdebug_direct.o
|
|
end
|
|
|
|
object memset.o
|
|
object memcpy.o
|
|
object memcmp.o
|
|
object memmove.o
|
|
object malloc.o
|
|
object delay.o
|
|
object fallback_boot.o
|
|
object compute_ip_checksum.o
|
|
object version.o
|
|
object gcc.o
|
|
object cbfs.o
|
|
object lzma.o
|
|
object cbmem.o
|
|
|
|
# Force version.o to recompile every time
|
|
makedefine .PHONY : version.o
|
|
|
|
initobject uart8250.o
|
|
initobject memset.o
|
|
initobject memcpy.o
|
|
initobject memcmp.o
|
|
|
|
|