From: Ye Li Date: Thu, 28 Mar 2024 10:49:18 +0000 (+0800) Subject: arm: imx9: Fix MMU map table overlap X-Git-Url: http://git.dujemihanovic.xyz/?a=commitdiff_plain;h=f6ee245cabc470f8f9f51fd49c264aa31e7340ed;p=u-boot.git arm: imx9: Fix MMU map table overlap The size for flexspi AHB buffer space is wrong, so correct it. Signed-off-by: Ye Li --- diff --git a/arch/arm/mach-imx/imx9/soc.c b/arch/arm/mach-imx/imx9/soc.c index f06339f138..e2794d6218 100644 --- a/arch/arm/mach-imx/imx9/soc.c +++ b/arch/arm/mach-imx/imx9/soc.c @@ -262,7 +262,7 @@ static struct mm_region imx93_mem_map[] = { /* Flexible Serial Peripheral Interface */ .virt = 0x28000000UL, .phys = 0x28000000UL, - .size = 0x30000000UL, + .size = 0x08000000UL, .attrs = PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) | PTE_BLOCK_NON_SHARE | PTE_BLOCK_PXN | PTE_BLOCK_UXN