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.
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user