Commit 3b507aab authored by Marek Vasut's avatar Marek Vasut
Browse files

plat: rcar: Add E3 1GBx4 debug print



RCAR_DRAM_DDR3L_MEMCONF = 2 means E3 with 1GBx4 memory configuration.
Add debug print for this configuration for completeness sake.
Signed-off-by: default avatarMarek Vasut <marek.vasut+renesas@gmail.com>
parent 358ed930
......@@ -332,6 +332,9 @@ static void bl2_advertise_dram_size(uint32_t product, uint32_t cut)
#elif (RCAR_DRAM_DDR3L_MEMCONF == 1)
/* 2GB(512MBx4) */
NOTICE("BL2: 0x400000000 - 0x47fffffff, 2 GiB\n");
#elif (RCAR_DRAM_DDR3L_MEMCONF == 2)
/* 4GB(1GBx4) */
NOTICE("BL2: 0x400000000 - 0x4ffffffff, 4 GiB\n");
#endif /* RCAR_DRAM_DDR3L_MEMCONF == 0 */
}
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment