aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYe Li <ye.li@nxp.com>2024-03-28 18:49:18 +0800
committerFabio Estevam <festevam@gmail.com>2024-03-30 15:11:48 -0300
commitf6ee245cabc470f8f9f51fd49c264aa31e7340ed (patch)
tree13da37d3adeadbd57ade81af31b80ed5293ee1db
parent06e04a97df6e110a624d62d6e80ed37c2f92e9f7 (diff)
downloadu-boot-f6ee245cabc470f8f9f51fd49c264aa31e7340ed.zip
u-boot-f6ee245cabc470f8f9f51fd49c264aa31e7340ed.tar.gz
u-boot-f6ee245cabc470f8f9f51fd49c264aa31e7340ed.tar.bz2
arm: imx9: Fix MMU map table overlap
The size for flexspi AHB buffer space is wrong, so correct it. Signed-off-by: Ye Li <ye.li@nxp.com>
-rw-r--r--arch/arm/mach-imx/imx9/soc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-imx/imx9/soc.c b/arch/arm/mach-imx/imx9/soc.c
index f06339f..e2794d6 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