Tristan Hsieh has uploaded this change for review. ( https://review.coreboot.org/27304
Change subject: google/kukui: Update MMU table in romstage ......................................................................
google/kukui: Update MMU table in romstage
Update MMU table in romstage after dram calibration ready.
BUG=b:80501386 BRANCH=none TEST=Boots correctly on Kukui.
Change-Id: Ie541fe08ee1d5b260abbabc0a5c18fb04e602b9c Signed-off-by: Tristan Shieh tristan.shieh@mediatek.com --- M src/mainboard/google/kukui/romstage.c 1 file changed, 3 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/04/27304/1
diff --git a/src/mainboard/google/kukui/romstage.c b/src/mainboard/google/kukui/romstage.c index d63b7c8..a3dc143 100644 --- a/src/mainboard/google/kukui/romstage.c +++ b/src/mainboard/google/kukui/romstage.c @@ -16,6 +16,7 @@ #include <arch/exception.h> #include <console/console.h> #include <program_loading.h> +#include <soc/mmu_operations.h> #include <timestamp.h>
void main(void) @@ -26,5 +27,7 @@ console_init(); exception_init();
+ mt8183_mmu_after_dram(); + run_ramstage(); }