liteeth/phy/pcs_1000basex: Avoid deadlock situation in AUTONEG_WAIT_ABI if receiving ACKNOWLEDGE instead of ABILITY.
This commit is contained in:
parent
e5746c8a81
commit
04fc888285
|
@ -394,7 +394,7 @@ class PCS(LiteXModule):
|
||||||
If(rx_config_reg_abi.o,
|
If(rx_config_reg_abi.o,
|
||||||
NextState("AUTONEG_WAIT_ACK")
|
NextState("AUTONEG_WAIT_ACK")
|
||||||
),
|
),
|
||||||
If(checker_tick & ~checker_ok,
|
If((checker_tick & ~checker_ok) | rx_config_reg_ack.o,
|
||||||
self.restart.eq(1),
|
self.restart.eq(1),
|
||||||
NextState("AUTONEG_BREAKLINK")
|
NextState("AUTONEG_BREAKLINK")
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue