[coreboot-gerrit] New patch to review for coreboot: 926488e libpayload arm64: fix mmu bugs

Patrick Georgi (pgeorgi@google.com) gerrit at coreboot.org
Fri Mar 20 10:34:07 CET 2015


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

-gerrit

commit 926488ed7596b27e37e65b3c4f1a06de1f0a45e5
Author: Aaron Durbin <adurbin at chromium.org>
Date:   Tue Oct 7 23:36:55 2014 -0500

    libpayload arm64: fix mmu bugs
    
    1. keep functions and objects used entirely within mmu.c as static.
    2. DMA region finding needs to terminate. Therefore, the next address
       to be attempted needs to be less then the current end address.
    3. Ensure mmu_ranges passed to mmu_init_ranges_from_sysinfo() has
       0 entries marked as used.
    
    BUG=chrome-os-partner:31634
    BRANCH=None
    TEST=Booted ryu with RAM hole above cbmem tables below 4GiB.
    
    Change-Id: I71a9cb89466978aa63fca5d8bee97b8af75ea206
    Signed-off-by: Patrick Georgi <pgeorgi at chromium.org>
    Original-Commit-Id: 66518fd86e676bbddf52e9d9afdd76d72c8e2222
    Original-Change-Id: I5cb4e5009359cb04c4e1b5fe60845f80fbdff02c
    Original-Signed-off-by: Aaron Durbin <adurbin at chromium.org>
    Original-Reviewed-on: https://chromium-review.googlesource.com/221725
    Original-Reviewed-by: Furquan Shaikh <furquan at chromium.org>
    Original-Tested-by: Furquan Shaikh <furquan at chromium.org>
    Original-Commit-Queue: Furquan Shaikh <furquan at chromium.org>
---
 payloads/libpayload/arch/arm64/mmu.c         | 60 ++++++++++++++++------------
 payloads/libpayload/include/arm64/arch/mmu.h |  4 --
 2 files changed, 35 insertions(+), 29 deletions(-)

diff --git a/payloads/libpayload/arch/arm64/mmu.c b/payloads/libpayload/arch/arm64/mmu.c
index 85f3ac9..123b9b1 100644
--- a/payloads/libpayload/arch/arm64/mmu.c
+++ b/payloads/libpayload/arch/arm64/mmu.c
@@ -54,7 +54,7 @@ static uint8_t ttb_buffer[TTB_DEFAULT_SIZE] __attribute__((aligned(GRANULE_SIZE)
  * the DMA buffer is being placed in a sane location and does not overlap any of
  * the used mem ranges.
  */
-struct mmu_ranges usedmem_ranges;
+static struct mmu_ranges usedmem_ranges;
 
 static const uint64_t level_to_addr_mask[] = {
 	L1_ADDR_MASK,
@@ -427,6 +427,29 @@ static int mmu_is_dma_range_valid(uint64_t dma_base,
 }
 
 /*
+ * Func: mmu_add_memrange
+ * Desc: Adds a new memory range
+ */
+static struct mmu_memrange* mmu_add_memrange(struct mmu_ranges *r,
+						uint64_t base, uint64_t size,
+						uint64_t type)
+{
+	struct mmu_memrange *curr = NULL;
+	int i = r->used;
+
+	if (i < ARRAY_SIZE(r->entries)) {
+		curr = &r->entries[i];
+		curr->base = base;
+		curr->size = size;
+		curr->type = type;
+
+		r->used = i + 1;
+	}
+
+	return curr;
+}
+
+/*
  * Func: mmu_add_dma_range
  * Desc: Add a memrange for dma operations. This is special because we want to
  * initialize this memory as non-cacheable. We have a constraint that the DMA
@@ -458,7 +481,7 @@ static struct mmu_memrange* mmu_add_dma_range(struct mmu_ranges *mmu_ranges)
 		 * We need to ensure that we do not step over payload regions or
 		 * the coreboot_table
 		 */
-		do {
+		while (1) {
 			/*
 			 * If end_addr is aligned to GRANULE_SIZE,
 			 * then base_addr will be too.
@@ -472,7 +495,13 @@ static struct mmu_memrange* mmu_add_dma_range(struct mmu_ranges *mmu_ranges)
 
 			if (base_addr < r[i].base)
 				break;
-		} while (mmu_is_dma_range_valid(base_addr, end_addr) == 0);
+
+			if (mmu_is_dma_range_valid(base_addr, end_addr))
+				break;
+
+			/* Drop to the next address. */
+			end_addr -= 1;
+		}
 
 		if (base_addr < r[i].base)
 			continue;
@@ -557,6 +586,9 @@ struct mmu_memrange *mmu_init_ranges_from_sysinfo(struct memrange *cb_ranges,
 {
 	struct mmu_memrange *dma_range;
 
+	/* Initialize mmu_ranges to contain no entries. */
+	mmu_ranges->used = 0;
+
 	/* Extract ranges from memrange in lib_sysinfo */
 	mmu_extract_ranges(cb_ranges, ncb, mmu_ranges);
 
@@ -570,28 +602,6 @@ struct mmu_memrange *mmu_init_ranges_from_sysinfo(struct memrange *cb_ranges,
 }
 
 /*
- * Func: mmu_add_memrange
- * Desc: Adds a new memory range
- */
-struct mmu_memrange* mmu_add_memrange(struct mmu_ranges *r, uint64_t base,
-				      uint64_t size, uint64_t type)
-{
-	struct mmu_memrange *curr = NULL;
-	int i = r->used;
-
-	if (i < ARRAY_SIZE(r->entries)) {
-		curr = &r->entries[i];
-		curr->base = base;
-		curr->size = size;
-		curr->type = type;
-
-		r->used = i + 1;
-	}
-
-	return curr;
-}
-
-/*
  * Func: mmu_presysinfo_memory_used
  * Desc: Initializes all the memory used for presysinfo page table
  * initialization and enabling of MMU. All these ranges are stored in
diff --git a/payloads/libpayload/include/arm64/arch/mmu.h b/payloads/libpayload/include/arm64/arch/mmu.h
index 0937f4b..fdb1cc8 100644
--- a/payloads/libpayload/include/arm64/arch/mmu.h
+++ b/payloads/libpayload/include/arm64/arch/mmu.h
@@ -200,10 +200,6 @@ struct mmu_memrange* mmu_init_ranges_from_sysinfo(struct memrange *cb_ranges,
 						  uint64_t ncb,
 						  struct mmu_ranges *mmu_ranges);
 
-/* Add a new mmu_memrange */
-struct mmu_memrange* mmu_add_memrange(struct mmu_ranges *r, uint64_t base,
-				      uint64_t size, uint64_t type);
-
 /*
  * Functions for handling the initialization of memory ranges and enabling mmu
  * before coreboot tables are parsed



More information about the coreboot-gerrit mailing list