Browse Source

xlat: Fix checks in mmap_add() and mmap_add_ctx()

Commit 79621f0038 broke sgi575.

It is possible to have a region with 0 as value for the attributes. It
means device memory, read only, secure, executable. This is legitimate
if the code is in flash and the code is executed from there.

This is the case for SGI_MAP_FLASH0_RO, defined in the file
plat/arm/css/sgi/sgi_plat.c.

This problem is solved by checking both size and attributes in xlat v1.
In xlat v2, it is enough to check the granularity, as it can never be 0.

Change-Id: I7be11f1b0e51c4c2ffd560b4a6cdfbf15de2c276
Signed-off-by: Antonio Nino Diaz <antonio.ninodiaz@arm.com>
pull/1617/head
Antonio Nino Diaz 6 years ago
parent
commit
a5fa5658e8
  1. 2
      lib/xlat_tables/xlat_tables_common.c
  2. 2
      lib/xlat_tables_v2/xlat_tables_core.c

2
lib/xlat_tables/xlat_tables_common.c

@ -176,7 +176,7 @@ void mmap_add(const mmap_region_t *mm)
{ {
const mmap_region_t *mm_cursor = mm; const mmap_region_t *mm_cursor = mm;
while (mm_cursor->attr != 0U) { while ((mm_cursor->size != 0U) || (mm_cursor->attr != 0U)) {
mmap_add_region(mm_cursor->base_pa, mm_cursor->base_va, mmap_add_region(mm_cursor->base_pa, mm_cursor->base_va,
mm_cursor->size, mm_cursor->attr); mm_cursor->size, mm_cursor->attr);
mm_cursor++; mm_cursor++;

2
lib/xlat_tables_v2/xlat_tables_core.c

@ -815,7 +815,7 @@ void mmap_add_ctx(xlat_ctx_t *ctx, const mmap_region_t *mm)
{ {
const mmap_region_t *mm_cursor = mm; const mmap_region_t *mm_cursor = mm;
while (mm_cursor->attr != 0U) { while (mm_cursor->granularity != 0U) {
mmap_add_region_ctx(ctx, mm_cursor); mmap_add_region_ctx(ctx, mm_cursor);
mm_cursor++; mm_cursor++;
} }

Loading…
Cancel
Save