aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/google/rush/romstage.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainboard/google/rush/romstage.c')
-rw-r--r--src/mainboard/google/rush/romstage.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/mainboard/google/rush/romstage.c b/src/mainboard/google/rush/romstage.c
index f0de9c0dfb..9db52989f7 100644
--- a/src/mainboard/google/rush/romstage.c
+++ b/src/mainboard/google/rush/romstage.c
@@ -22,6 +22,9 @@
#include <console/console.h>
#include <arch/exception.h>
+#include "sdram_configs.h"
+#include <soc/nvidia/tegra132/sdram.h>
+
void main(void)
{
void *entry;
@@ -31,6 +34,10 @@ void main(void)
printk(BIOS_INFO, "T132: romstage here\n");
+ sdram_init(get_sdram_config());
+
+ printk(BIOS_INFO, "T132 romstage: sdram_init done\n");
+
while (1);
entry = cbfs_load_stage(CBFS_DEFAULT_MEDIA, "fallback/ramstage");