diff options
author | Tom Rini <trini@konsulko.com> | 2025-03-10 07:48:25 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2025-03-10 07:48:25 -0600 |
commit | 444cc6f0803875b5b183850ddc27c1ef89eeb4a1 (patch) | |
tree | bf6b49dcbf0b8749d0b84af538397f6e5d1517d4 /arch/arm/mach-stm32mp/stm32mp1/cpu.c | |
parent | 0fd7ee0306a88bd99d3820167fa45a7ee6fbc1e1 (diff) | |
parent | f5ee0f2bf7b008dc92315c10239e8d537877c0de (diff) |
Merge tag 'u-boot-stm32-20250310' of https://source.denx.de/u-boot/custodians/u-boot-stm
ARM: stm32mp: Fix boot hang on STM32MP15xx with 1 GiB of DRAM.
Diffstat (limited to 'arch/arm/mach-stm32mp/stm32mp1/cpu.c')
-rw-r--r-- | arch/arm/mach-stm32mp/stm32mp1/cpu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-stm32mp/stm32mp1/cpu.c b/arch/arm/mach-stm32mp/stm32mp1/cpu.c index cb1b84c9af9..d5eaf6711b6 100644 --- a/arch/arm/mach-stm32mp/stm32mp1/cpu.c +++ b/arch/arm/mach-stm32mp/stm32mp1/cpu.c @@ -82,7 +82,7 @@ void dram_bank_mmu_setup(int bank) option = DCACHE_DEFAULT_OPTION; if (use_lmb && (lmb_is_reserved_flags(i << MMU_SECTION_SHIFT, LMB_NOMAP) || - addr >= gd->ram_top) + (gd->ram_top && addr >= gd->ram_top)) ) option = 0; /* INVALID ENTRY in TLB */ set_section_dcache(i, option); |