]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
board: developerbox: use identity mapping for >4GB
authorJassi Brar <jaswinder.singh@linaro.org>
Mon, 12 Sep 2022 17:05:15 +0000 (12:05 -0500)
committerTom Rini <trini@konsulko.com>
Fri, 7 Oct 2022 01:05:17 +0000 (21:05 -0400)
Identity-map the second and later memory banks which are located >4GB.

Signed-off-by: Jassi Brar <jaswinder.singh@linaro.org>
board/socionext/developerbox/developerbox.c

index f5a5fe0121035fb1eecc6e6f4ab8d99ae00fec17..e14bb7f929ea90b74a5e7ccecb985c5eb0284efc 100644 (file)
@@ -160,11 +160,11 @@ int dram_init(void)
                ri = DDR_REGION_INDEX(i);
                mem_map[ri].phys = ent[i].base;
                mem_map[ri].size = ent[i].size;
+               mem_map[ri].virt = mem_map[ri].phys;
                if (i == 0)
                        continue;
 
                mr = &mem_map[DDR_REGION_INDEX(0)];
-               mem_map[ri].virt = mr->virt + mr->size;
                mem_map[ri].attrs = mr->attrs;
        }