mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-21 22:51:37 +00:00
imx: ventana: added support for 16bit 8Gb density (1GiB) DRAM
Signed-off-by: Tim Harvey <tharvey@gateworks.com>
This commit is contained in:
parent
74389c1387
commit
0ab327a716
1 changed files with 5 additions and 0 deletions
|
@ -540,6 +540,11 @@ static void spl_dram_init(int width, int size_mb, int board_model)
|
|||
else
|
||||
calib = &mx6sdl_256x16_mmdc_calib;
|
||||
debug("4gB density\n");
|
||||
} else if (width == 16 && size_mb == 1024) {
|
||||
mem = &mt41k512m16ha_125;
|
||||
if (is_cpu_type(MXC_CPU_MX6Q))
|
||||
calib = &mx6dq_512x32_mmdc_calib;
|
||||
debug("8gB density\n");
|
||||
} else if (width == 32 && size_mb == 256) {
|
||||
/* Same calib as width==16, size==128 */
|
||||
mem = &mt41k64m16jt_125;
|
||||
|
|
Loading…
Add table
Reference in a new issue