phy/s7ddrphy: Only do write latency calibration on Kintex7/Virtex7.
This has been causing issues on Artix7 and is only required with write_leveling.
This commit is contained in:
parent
1b0545cd60
commit
e5e3b6c9a3
|
@ -142,7 +142,7 @@ class S7DDRPHY(Module, AutoCSR):
|
||||||
cmd_delay = cmd_delay,
|
cmd_delay = cmd_delay,
|
||||||
write_leveling = with_odelay,
|
write_leveling = with_odelay,
|
||||||
write_dq_dqs_training = with_odelay,
|
write_dq_dqs_training = with_odelay,
|
||||||
write_latency_calibration = True,
|
write_latency_calibration = with_odelay,
|
||||||
read_leveling = True,
|
read_leveling = True,
|
||||||
delays = 32,
|
delays = 32,
|
||||||
bitslips = 8,
|
bitslips = 8,
|
||||||
|
|
Loading…
Reference in New Issue