aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/google
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainboard/google')
-rw-r--r--src/mainboard/google/oak/romstage.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mainboard/google/oak/romstage.c b/src/mainboard/google/oak/romstage.c
index 3d0f6ab488..eecf49184c 100644
--- a/src/mainboard/google/oak/romstage.c
+++ b/src/mainboard/google/oak/romstage.c
@@ -16,6 +16,7 @@
#include <arch/cpu.h>
#include <arch/exception.h>
#include <arch/io.h>
+#include <arch/mmu.h>
#include <cbfs.h>
#include <console/console.h>
@@ -25,6 +26,8 @@
#include <symbols.h>
#include <timestamp.h>
+#include <soc/mmu_operations.h>
+
void main(void)
{
timestamp_add_now(TS_START_ROMSTAGE);
@@ -33,5 +36,7 @@ void main(void)
console_init();
exception_init();
+ mt8173_mmu_after_dram();
+
run_ramstage();
}