From: Peng Fan Date: Sun, 12 Nov 2017 11:33:22 +0000 (+0800) Subject: MLK-16802 imx8m: correct mmu mapping X-Git-Tag: rel_imx_4.9.88_2.0.0_ga~182 X-Git-Url: https://git.somdevices.com/?a=commitdiff_plain;h=ed37376b87591c55165d1a99817b564ec8462fb1;p=u-boot.git MLK-16802 imx8m: correct mmu mapping ATF has been moved to OCRAM, it is no longer in DRAM, so let Uboot could use that space. Signed-off-by: Peng Fan --- diff --git a/arch/arm/cpu/armv8/imx8m/soc.c b/arch/arm/cpu/armv8/imx8m/soc.c index e2b397cffd..c8038a7ae9 100644 --- a/arch/arm/cpu/armv8/imx8m/soc.c +++ b/arch/arm/cpu/armv8/imx8m/soc.c @@ -176,9 +176,9 @@ static struct mm_region imx8m_mem_map[] = { PTE_BLOCK_NON_SHARE | PTE_BLOCK_PXN | PTE_BLOCK_UXN }, { - .virt = 0x40020000UL, - .phys = 0x40020000UL, - .size = 0xbffe0000UL, + .virt = 0x40000000UL, + .phys = 0x40000000UL, + .size = 0xC0000000UL, .attrs = PTE_BLOCK_MEMTYPE(MT_NORMAL) | PTE_BLOCK_OUTER_SHARE }, {