summaryrefslogtreecommitdiffstats
path: root/src/include/console
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2013-09-10 13:50:32 +0300
committerKyösti Mälkki <kyosti.malkki@gmail.com>2013-09-21 06:22:33 +0200
commita2f6af3330a754de2f8c4438812e09fc81ad181c (patch)
treeb8c7dbb467d7a7cd45a5fb3de8c970b93d931ed9 /src/include/console
parent52a27223892936cdc8e1744516a82a2e44584763 (diff)
downloadcoreboot-staging-a2f6af3330a754de2f8c4438812e09fc81ad181c.zip
coreboot-staging-a2f6af3330a754de2f8c4438812e09fc81ad181c.tar.gz
ROMCC boards: Fix builds with CBMEM console, timestamps or usbdebug
These features depend on CAR_GLOBAL region, which is not available when romstage is built with ROMCC. Exclude these from romstage, keep them available for ramstage. A follow-up patch will fix the dependencies and allows enabling these features in menuconfig. Change-Id: I9de5ad41ea733655a3fbdc734646f818e39cc471 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: http://review.coreboot.org/3919 Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Aaron Durbin <adurbin@google.com>
Diffstat (limited to 'src/include/console')
-rw-r--r--src/include/console/cbmem_console.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/include/console/cbmem_console.h b/src/include/console/cbmem_console.h
index 37ea4d8..9e2f14e 100644
--- a/src/include/console/cbmem_console.h
+++ b/src/include/console/cbmem_console.h
@@ -19,8 +19,14 @@
#ifndef _CONSOLE_CBMEM_CONSOLE_H_
#define _CONSOLE_CBMEM_CONSOLE_H_
+#if CONFIG_CACHE_AS_RAM || !defined(__PRE_RAM__)
void cbmemc_init(void);
void cbmemc_reinit(void);
void cbmemc_tx_byte(unsigned char data);
+#else
+#define cbmemc_init()
+#define cbmemc_reinit()
+#define cbmemc_tx_byte()
+#endif
#endif
OpenPOWER on IntegriCloud