targets/versa_ecp5: Fix LiteEthPHYRMGII tx/rx delays (need to be updated due to a bug fix in the ECP5RGMII PHY).
This commit is contained in:
parent
9cdcb8cb43
commit
8fb80053f7
|
@ -117,7 +117,9 @@ class BaseSoC(SoCCore):
|
|||
if with_ethernet or with_etherbone:
|
||||
self.submodules.ethphy = LiteEthPHYRGMII(
|
||||
clock_pads = self.platform.request("eth_clocks", eth_phy),
|
||||
pads = self.platform.request("eth", eth_phy))
|
||||
pads = self.platform.request("eth", eth_phy),
|
||||
tx_delay = 0e-9,
|
||||
rx_delay = 0e-9)
|
||||
self.add_csr("ethphy")
|
||||
if with_ethernet:
|
||||
self.add_ethernet(phy=self.ethphy)
|
||||
|
|
Loading…
Reference in New Issue