[coreboot-gerrit] New patch to review for coreboot: d17e063 libpayload: sync arch/arm/cache.c with coreboot

Patrick Georgi (pgeorgi@google.com) gerrit at coreboot.org
Thu Apr 16 12:22:22 CEST 2015


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

-gerrit

commit d17e063115be773e9a04dda189316f0a37b386dd
Author: David Hendricks <dhendrix at chromium.org>
Date:   Tue Jan 27 09:27:54 2015 -0800

    libpayload: sync arch/arm/cache.c with coreboot
    
    There was a recent patch by Deepa Dinamani applied to coreboot's
    cache.c which fixed a bug that occurred when icache is on but dcache
    is off ("arch: armv7: Fix cache sync instructions."). Although this
    bug is not likely to be encountered by the time libpayload is run,
    it's worth applying it to keep things in sync.
    
    BUG=none
    BRANCH=none
    TEST=n/a since we have icache and dcache enabled on all ARM platforms
    when libpayload is run.
    
    Change-Id: I83d9f96acb702975585e5d47c90e2ddaca488f6d
    Signed-off-by: Patrick Georgi <pgeorgi at chromium.org>
    Original-Commit-Id: 31f985b58ac9227684fbe27481129ba01fd3ab8a
    Original-Signed-off-by: David Hendricks <dhendrix at chromium.org>
    Original-Change-Id: I4ab0d97ef3a97dcd0fa96e10273c3b32486e0b40
    Original-Reviewed-on: https://chromium-review.googlesource.com/243276
    Original-Reviewed-by: Julius Werner <jwerner at chromium.org>
---
 payloads/libpayload/arch/arm/cache.c | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/payloads/libpayload/arch/arm/cache.c b/payloads/libpayload/arch/arm/cache.c
index 63715bc..15cbf0a 100644
--- a/payloads/libpayload/arch/arm/cache.c
+++ b/payloads/libpayload/arch/arm/cache.c
@@ -144,7 +144,15 @@ void dcache_mmu_enable(void)
 
 void cache_sync_instructions(void)
 {
-	dcache_clean_all();	/* includes trailing DSB (in assembly) */
+	uint32_t sctlr;
+
+	sctlr = read_sctlr();
+
+	if (sctlr & SCTLR_C)
+		dcache_clean_all();
+	else if (sctlr & SCTLR_I)
+		dcache_clean_invalidate_all();
+
 	iciallu();		/* includes BPIALLU (architecturally) */
 	dsb();
 	isb();



More information about the coreboot-gerrit mailing list