mirror of
https://git.codelinaro.org/clo/qsdk/oss/boot/u-boot-2016.git
synced 2026-03-10 11:17:18 +01:00
ARM: OMAP4: fix DDR timings for OMAP4430 ES2.0
DDR timings were broken since 47abc3df70
for PandaBoard EA1.
Signed-off-by: Janne Grunau <j@jannau.net>
This commit is contained in:
parent
a5d64dbf20
commit
6e2192a3d8
1 changed files with 18 additions and 0 deletions
|
|
@ -172,6 +172,20 @@ struct dplls omap4430_dplls_es1 = {
|
|||
.ddr = NULL
|
||||
};
|
||||
|
||||
struct dplls omap4430_dplls_es20 = {
|
||||
.mpu = mpu_dpll_params_1200mhz,
|
||||
.core = core_dpll_params_es2_1600mhz_ddr200mhz,
|
||||
.per = per_dpll_params_1536mhz,
|
||||
.iva = iva_dpll_params_1862mhz,
|
||||
#ifdef CONFIG_SYS_OMAP_ABE_SYSCK
|
||||
.abe = abe_dpll_params_sysclk_196608khz,
|
||||
#else
|
||||
.abe = &abe_dpll_params_32k_196608khz,
|
||||
#endif
|
||||
.usb = usb_dpll_params_1920mhz,
|
||||
.ddr = NULL
|
||||
};
|
||||
|
||||
struct dplls omap4430_dplls = {
|
||||
.mpu = mpu_dpll_params_1200mhz,
|
||||
.core = core_dpll_params_1600mhz,
|
||||
|
|
@ -413,6 +427,10 @@ void hw_data_init(void)
|
|||
break;
|
||||
|
||||
case OMAP4430_ES2_0:
|
||||
*dplls_data = &omap4430_dplls_es20;
|
||||
*omap_vcores = &omap4430_volts;
|
||||
break;
|
||||
|
||||
case OMAP4430_ES2_1:
|
||||
case OMAP4430_ES2_2:
|
||||
case OMAP4430_ES2_3:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue