diff options
author | Tom Rini <trini@ti.com> | 2013-11-07 11:42:57 -0500 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-12-04 08:11:45 -0500 |
commit | 39245c8699c68f85a5aaa3153d954370920d09c0 (patch) | |
tree | f402a009ddf3ddbbe9b7732b1a6b8f87e7bb478d /board/isee | |
parent | 340e6c830053846d48ba97a73adfac3f5cadfd7e (diff) | |
download | u-boot-imx-39245c8699c68f85a5aaa3153d954370920d09c0.zip u-boot-imx-39245c8699c68f85a5aaa3153d954370920d09c0.tar.gz u-boot-imx-39245c8699c68f85a5aaa3153d954370920d09c0.tar.bz2 |
am33xx: Stop modifying certain EMIF4D registers
Based on the definitive guide to EMIF configuration[1] certain registers
that we have been modifying (and are documented registers) should be
left in their reset values rather than modified. This has been tested
on AM335x GP EVM and Beaglebone White.
[1]: http://processors.wiki.ti.com/index.php/AM335x_EMIF_Configuration_tips
Cc: Enric Balletbo i Serra <eballetbo@iseebcn.com>
Cc: Javier Martinez Canillas <javier@dowhile0.org>
Cc: Heiko Schocher <hs@denx.de>
Cc: Lars Poeschel <poeschel@lemonage.de>
Signed-off-by: Tom Rini <trini@ti.com>
Tested-by: Matt Porter <matt.porter@linaro.org>
Diffstat (limited to 'board/isee')
-rw-r--r-- | board/isee/igep0033/board.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/board/isee/igep0033/board.c b/board/isee/igep0033/board.c index 0b8356d..6a8ca2b 100644 --- a/board/isee/igep0033/board.c +++ b/board/isee/igep0033/board.c @@ -35,20 +35,16 @@ static const struct ddr_data ddr3_data = { .datawdsratio0 = K4B2G1646EBIH9_WR_DQS, .datafwsratio0 = K4B2G1646EBIH9_PHY_FIFO_WE, .datawrsratio0 = K4B2G1646EBIH9_PHY_WR_DATA, - .datadldiff0 = PHY_DLL_LOCK_DIFF, }; static const struct cmd_control ddr3_cmd_ctrl_data = { .cmd0csratio = K4B2G1646EBIH9_RATIO, - .cmd0dldiff = K4B2G1646EBIH9_DLL_LOCK_DIFF, .cmd0iclkout = K4B2G1646EBIH9_INVERT_CLKOUT, .cmd1csratio = K4B2G1646EBIH9_RATIO, - .cmd1dldiff = K4B2G1646EBIH9_DLL_LOCK_DIFF, .cmd1iclkout = K4B2G1646EBIH9_INVERT_CLKOUT, .cmd2csratio = K4B2G1646EBIH9_RATIO, - .cmd2dldiff = K4B2G1646EBIH9_DLL_LOCK_DIFF, .cmd2iclkout = K4B2G1646EBIH9_INVERT_CLKOUT, }; |