ecp5ddrphy: Fix DELAYF initial value
I've seen intermittent failures with recent builds. I suspect it is related to the DELAYF primitive not being correctly loaded with an initial value. Holding LOADN LOW ensures a value is correctly loaded.
This commit is contained in:
parent
a39d873946
commit
0c8c707f24
|
@ -350,7 +350,7 @@ class ECP5DDRPHY(Module, AutoCSR):
|
|||
self.specials += [
|
||||
Instance("DELAYF",
|
||||
p_DEL_MODE = "DQS_ALIGNED_X2",
|
||||
i_LOADN = 1,
|
||||
i_LOADN = 0,
|
||||
i_MOVE = 0,
|
||||
i_DIRECTION = 0,
|
||||
i_A = dq_i,
|
||||
|
|
Loading…
Reference in New Issue