mirror of
https://github.com/u-boot/u-boot.git
synced 2024-11-26 05:34:30 +08:00
fsl-ddr: Allow system to boot if we have more than 4G of memory
Previously if we >=4G of memory and !CONFIG_PHYS_64BIT we'd report an error and hang. Instead of doing that since DDR is mapped in the lowest priority LAWs we setup the DDR controller and the max amount of memory we report back is what we can map (CONFIG_MAX_MEM_MAPPED) Signed-off-by: Kumar Gala <galak@kernel.crashing.org> Acked-by: Becky Bruce <beckyb@kernel.crashing.org>
This commit is contained in:
parent
8d949aff38
commit
edf0e2524a
@ -429,7 +429,7 @@ fsl_ddr_compute(fsl_ddr_info_t *pinfo, unsigned int start_step)
|
||||
if (max_end >= 0xff) {
|
||||
printf("This U-Boot only supports < 4G of DDR\n");
|
||||
printf("You could rebuild it with CONFIG_PHYS_64BIT\n");
|
||||
return 0; /* Ensure DDR setup failure. */
|
||||
return CONFIG_MAX_MEM_MAPPED;
|
||||
}
|
||||
#endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user