diff options
author | Matt Porter <mporter@ti.com> | 2013-03-15 10:07:03 +0000 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-03-24 12:49:11 -0400 |
commit | 3ba65f97cbedb39fb486f42f8daa9b9e0d36705a (patch) | |
tree | 0349f033250c48a61c82a6c3bc5bf85ad220c6c1 /board/phytec | |
parent | 81df2bab46d3bed319e21571c68db8e0a048bbfd (diff) |
am33xx: refactor emif4/ddr to support multiple EMIF instances
The AM33xx emif4/ddr support closely matches what is need to support
TI814x except that TI814x has two EMIF instances. Refactor all the
emif4 helper calls and the config_ddr() init function to use an
additional instance number argument.
Signed-off-by: Matt Porter <mporter@ti.com>
Reviewed-by: Tom Rini <trini@ti.com>
Diffstat (limited to 'board/phytec')
-rw-r--r-- | board/phytec/pcm051/board.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/phytec/pcm051/board.c b/board/phytec/pcm051/board.c index 471725a2fa7..1708ac2acdb 100644 --- a/board/phytec/pcm051/board.c +++ b/board/phytec/pcm051/board.c @@ -159,7 +159,7 @@ void s_init(void) enable_board_pin_mux(); config_ddr(DDR_CLK_MHZ, MT41J256M8HX15E_IOCTRL_VALUE, &ddr3_data, - &ddr3_cmd_ctrl_data, &ddr3_emif_reg_data); + &ddr3_cmd_ctrl_data, &ddr3_emif_reg_data, 0); #endif } |