diff mbox series

arm: imx9: Fix MMU map table overlap

Message ID 1711622958-62199-1-git-send-email-ye.li@nxp.com
State Accepted
Commit f6ee245cabc470f8f9f51fd49c264aa31e7340ed
Delegated to: Fabio Estevam
Headers show
Series arm: imx9: Fix MMU map table overlap | expand

Commit Message

Ye Li March 28, 2024, 10:49 a.m. UTC
The size for flexspi AHB buffer space is wrong, so correct it.

Signed-off-by: Ye Li <ye.li@nxp.com>
---
 arch/arm/mach-imx/imx9/soc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Fabio Estevam March 30, 2024, 7:49 p.m. UTC | #1
On Thu, Mar 28, 2024 at 7:49 AM Ye Li <ye.li@nxp.com> wrote:
>
> The size for flexspi AHB buffer space is wrong, so correct it.
>
> Signed-off-by: Ye Li <ye.li@nxp.com>

Applied to u-boot-imx/next, thanks.
diff mbox series

Patch

diff --git a/arch/arm/mach-imx/imx9/soc.c b/arch/arm/mach-imx/imx9/soc.c
index 15e87b8..2117489 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