storm: enable early console

Include the required modules in romstage and enable early console.

BUG=chrome-os-partner:27784
TEST=observe the romstage prompt in the console output:
   coreboot-4.0 romstage Tue May 13 17:08:58 PDT 2014 starting...

Change-Id: Ie3853b9afc53246e6eb997f279ccd4dbb08f748b
Signed-off-by: Vadim Bendebury <vbendeb@chromium.org>
Reviewed-on: https://chromium-review.googlesource.com/199673
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
This commit is contained in:
Vadim Bendebury 2014-05-13 17:11:30 -07:00 committed by chrome-internal-fetch
commit 6e643d3425
3 changed files with 4 additions and 0 deletions

View file

@ -21,6 +21,7 @@ bootblock-y += bootblock.c
bootblock-y += cdp.c
romstage-y += romstage.c
romstage-y += cdp.c
ramstage-y += mainboard.c
ramstage-y += cdp.c

View file

@ -25,6 +25,8 @@ void main(void)
{
void *entry;
console_init();
entry = cbfs_load_stage(CBFS_DEFAULT_MEDIA, "fallback/ramstage");
stage_exit(entry);
}

View file

@ -6,6 +6,7 @@ config SOC_QC_IPQ806X
select ARCH_ROMSTAGE_ARM_V7
select BOOTBLOCK_CONSOLE
select DYNAMIC_CBMEM
select EARLY_CONSOLE
select HAVE_UART_MEMORY_MAPPED
select HAVE_UART_SPECIAL
select SPI_ATOMIC_SEQUENCING