diff options
author | Adam Sampson <ats@offog.org> | 2015-02-23 20:44:10 (GMT) |
---|---|---|
committer | Hans de Goede <hdegoede@redhat.com> | 2015-03-10 14:20:23 (GMT) |
commit | 8d6e18df605aaa85861f2efb4509362779e6101d (patch) | |
tree | acdeb78403f0d202f491dcf43fe11d90032d4df9 | |
parent | 44c8fd3abaded5bf18a48947c6d1286927cbdf2b (diff) | |
download | u-boot-fsl-qoriq-8d6e18df605aaa85861f2efb4509362779e6101d.tar.xz |
sunxi: Make CONFIG_DRAM_TPR3 apply to sun[57]i
The tpr3 (timing skew) parameter is used in all supported versions of
the sunxi DRAM controller, but it was only enabled for sun4i in
47e3501a76894f4ba08bc61f33774bd5d39ff464.
Signed-off-by: Adam Sampson <ats@offog.org>
Acked-by: Siarhei Siamashka <siarhei.siamashka@gmail.com>
Acked-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
-rw-r--r-- | board/sunxi/dram_sun5i_auto.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/sunxi/dram_sun5i_auto.c b/board/sunxi/dram_sun5i_auto.c index e52d54c..660b18e 100644 --- a/board/sunxi/dram_sun5i_auto.c +++ b/board/sunxi/dram_sun5i_auto.c @@ -24,7 +24,7 @@ static struct dram_para dram_para = { # include "dram_timings_sun4i.h" .active_windowing = 1, #endif - .tpr3 = 0, + .tpr3 = CONFIG_DRAM_TPR3, .tpr4 = 0, .tpr5 = 0, .emr1 = CONFIG_DRAM_EMR1, |