liteeth/phy/mii: allow use of MII phy on GMII/MII chips that do not have phy clock provided by the FPGA (tested on KC705)
This commit is contained in:
parent
93ed3212f7
commit
4329e3e1b9
|
@ -94,7 +94,8 @@ class LiteEthPHYMIICRG(Module, AutoCSR):
|
||||||
def __init__(self, clock_pads, pads, with_hw_init_reset):
|
def __init__(self, clock_pads, pads, with_hw_init_reset):
|
||||||
self._reset = CSRStorage()
|
self._reset = CSRStorage()
|
||||||
###
|
###
|
||||||
self.sync.base50 += clock_pads.phy.eq(~clock_pads.phy)
|
if hasattr(clock_pads, "phy"):
|
||||||
|
self.sync.base50 += clock_pads.phy.eq(~clock_pads.phy)
|
||||||
|
|
||||||
self.clock_domains.cd_eth_rx = ClockDomain()
|
self.clock_domains.cd_eth_rx = ClockDomain()
|
||||||
self.clock_domains.cd_eth_tx = ClockDomain()
|
self.clock_domains.cd_eth_tx = ClockDomain()
|
||||||
|
|
Loading…
Reference in New Issue