[coreboot-gerrit] New patch to review for coreboot: arch/arm64: introduce mmu to bootblock and romstage

Patrick Georgi (pgeorgi@google.com) gerrit at coreboot.org
Tue Dec 1 19:57:18 CET 2015


Patrick Georgi (pgeorgi at google.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/12585

-gerrit

commit 7f4951843bf42c6c42aa4729c095bb2d66fd9f28
Author: Jimmy Huang <jimmy.huang at mediatek.com>
Date:   Fri Jul 31 17:10:49 2015 +0800

    arch/arm64: introduce mmu to bootblock and romstage
    
    We need mmu interfaces in these two stages for,
    1. bootblock: to support mmu initialization in bootblock
    2. romstage: to be able to add dram range to mmu table
    
    BRANCH=none
    BUG=none
    TEST=build pass
    
    Change-Id: I56dea5f958a48b875579f546ba17a5dd6eaf159c
    Signed-off-by: Patrick Georgi <pgeorgi at chromium.org>
    Original-Commit-Id: cf72736bda2233f8e0bdd7a8ca3245f1d941ee86
    Original-Change-Id: I1e27c0a0a878f7bc0ff8712bee640ec3fd8dbb8b
    Original-Signed-off-by: Jimmy Huang <jimmy.huang at mediatek.com>
    Original-Reviewed-on: https://chromium-review.googlesource.com/292665
    Original-Commit-Ready: Yidi Lin <yidi.lin at mediatek.com>
    Original-Tested-by: Yidi Lin <yidi.lin at mediatek.com>
    Original-Reviewed-by: Julius Werner <jwerner at chromium.org>
---
 src/arch/arm64/armv8/Makefile.inc | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/arch/arm64/armv8/Makefile.inc b/src/arch/arm64/armv8/Makefile.inc
index 53d0e46..f026a99 100644
--- a/src/arch/arm64/armv8/Makefile.inc
+++ b/src/arch/arm64/armv8/Makefile.inc
@@ -30,6 +30,8 @@ endif
 bootblock-y += cache.c
 bootblock-y += cache_helpers.S
 bootblock-y += cpu.S
+bootblock-y += mmu.c
+
 bootblock-$(CONFIG_BOOTBLOCK_CONSOLE) += exception.c
 
 bootblock-generic-ccopts += $(armv8_flags)
@@ -65,6 +67,7 @@ romstage-y += cache.c
 romstage-y += cache_helpers.S
 romstage-y += cpu.S
 romstage-y += exception.c
+romstage-y += mmu.c
 
 romstage-generic-ccopts += $(armv8_flags)
 



More information about the coreboot-gerrit mailing list