mirror of
https://github.com/enjoy-digital/liteeth.git
synced 2025-01-03 03:43:37 -05:00
phy/ku_1000basex: keep tx/rx in reset until pll is fully reseted and locked
This commit is contained in:
parent
e6c35cdec8
commit
b318300414
1 changed files with 2 additions and 2 deletions
|
@ -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 a new issue