phy/ku_1000basex: keep tx/rx in reset until pll is fully reseted and locked
This commit is contained in:
parent
e6c35cdec8
commit
b318300414
|
@ -832,8 +832,8 @@ class KU_1000BASEX(Module):
|
|||
)
|
||||
]
|
||||
self.comb += [
|
||||
tx_reset.eq(~pll_locked),
|
||||
rx_reset.eq(pcs.restart)
|
||||
tx_reset.eq(pll_reset | ~pll_locked),
|
||||
rx_reset.eq(pll_reset | ~pll_locked | pcs.restart)
|
||||
]
|
||||
|
||||
# Gearbox and PCS connection
|
||||
|
|
Loading…
Reference in New Issue