Skip to content
Snippets Groups Projects
Commit 61dc92a2 authored by Michal Simek's avatar Michal Simek
Browse files

arm: zynq: Wire automatic ddr detection for Zynq and ZynqMP case


When static memory configuration is used U-Boot has capability to detect
memory size in setup range. Enable this feature for static
configuration.

Signed-off-by: default avatarMichal Simek <michal.simek@xilinx.com>
parent 3b2b2cca
No related branches found
No related tags found
No related merge requests found
......@@ -184,7 +184,8 @@ int dram_init(void)
#else
int dram_init(void)
{
gd->ram_size = CONFIG_SYS_SDRAM_SIZE;
gd->ram_size = get_ram_size((void *)CONFIG_SYS_SDRAM_BASE,
CONFIG_SYS_SDRAM_SIZE);
zynq_ddrc_init();
......
......@@ -377,7 +377,8 @@ int dram_init(void)
#else
int dram_init(void)
{
gd->ram_size = CONFIG_SYS_SDRAM_SIZE;
gd->ram_size = get_ram_size((void *)CONFIG_SYS_SDRAM_BASE,
CONFIG_SYS_SDRAM_SIZE);
return 0;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment