summaryrefslogtreecommitdiff
path: root/src/console/Makefile.inc
diff options
context:
space:
mode:
authorDuncan Laurie <dlaurie@chromium.org>2012-06-23 13:33:32 -0700
committerRonald G. Minnich <rminnich@gmail.com>2012-07-24 23:44:19 +0200
commitf5e9ac48c65bba2876d1dd7f103cd15c5e33c7df (patch)
tree33b180cf13d9fd999ed72a3129a2bf5cf29202c3 /src/console/Makefile.inc
parent7d2b81c18d891a11420088c37cb17bb1c8d73ba9 (diff)
downloadcoreboot-f5e9ac48c65bba2876d1dd7f103cd15c5e33c7df.tar.xz
SMM: Add support for malloc in SMM if using TSEG
This is used by the SPI driver and ELOG. It requires SMM TSEG and a _heap/_eheap region defined in the linker script. The first time malloc is called in SMM the start and end pointers to the heap region will be relocated for the TSEG region. Enable SPI flash and ELOG in SMM and successfully allocate memory. The allocated addresses are verified to be sure they are within the TSEG heap region: smm.elf:00014000 B _eheap smm.elf:00010000 B _heap TSEG base is 0xad000000 Memory allocated in ELOG: ELOG: MEM @0xad018030 Change-Id: I5cca38e4888d597cbbfcd9983cd6a7ae3600c2a3 Signed-off-by: Duncan Laurie <dlaurie@chromium.org> Reviewed-on: http://review.coreboot.org/1312 Tested-by: build bot (Jenkins) Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Diffstat (limited to 'src/console/Makefile.inc')
-rw-r--r--src/console/Makefile.inc1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/console/Makefile.inc b/src/console/Makefile.inc
index f3b875862e..f8928adca9 100644
--- a/src/console/Makefile.inc
+++ b/src/console/Makefile.inc
@@ -7,6 +7,7 @@ ramstage-y += die.c
smm-y += printk.c
smm-y += vtxprintf.c
+smm-$(CONFIG_SMM_TSEG) += die.c
romstage-y += vtxprintf.c
romstage-$(CONFIG_CACHE_AS_RAM) += console.c