Skip to content
Snippets Groups Projects
Commit f69b0653 authored by Fabio Estevam's avatar Fabio Estevam Committed by Albert ARIBAUD
Browse files

mx28evk: Fix boot by adjusting HW_DRAM_CTL29 register


commit acc4959fc1 (Revert "i.MX28: Enable additional DRAM address bits")
broke mx28evk boot.

Fix it by properly adjusting the HW_DRAM_CTL29 register value.

Suggested-by: default avatarMarek Vasut <marex@denx.de>
Signed-off-by: default avatarFabio Estevam <fabio.estevam@freescale.com>
Acked-by: default avatarMarek Vasut <marex@denx.de>
parent e3ddc646
No related branches found
No related tags found
No related merge requests found
...@@ -161,6 +161,20 @@ const iomux_cfg_t iomux_setup[] = { ...@@ -161,6 +161,20 @@ const iomux_cfg_t iomux_setup[] = {
(MXS_PAD_3V3 | MXS_PAD_8MA | MXS_PAD_PULLUP), (MXS_PAD_3V3 | MXS_PAD_8MA | MXS_PAD_PULLUP),
}; };
#define HW_DRAM_CTL29 (0x74 >> 2)
#define CS_MAP 0xf
#define COLUMN_SIZE 0x2
#define ADDR_PINS 0x1
#define APREBIT 0xa
#define HW_DRAM_CTL29_CONFIG (CS_MAP << 24 | COLUMN_SIZE << 16 | \
ADDR_PINS << 8 | APREBIT)
void mx28_adjust_memory_params(uint32_t *dram_vals)
{
dram_vals[HW_DRAM_CTL29] = HW_DRAM_CTL29_CONFIG;
}
void board_init_ll(void) void board_init_ll(void)
{ {
mx28_common_spl_init(iomux_setup, ARRAY_SIZE(iomux_setup)); mx28_common_spl_init(iomux_setup, ARRAY_SIZE(iomux_setup));
......
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