phy/usrgmii: improve presentation
This commit is contained in:
parent
2bdae4e7bd
commit
ee4f8c0f34
|
@ -212,12 +212,9 @@ class LiteEthPHYRGMIICRG(Module, AutoCSR):
|
|||
class LiteEthPHYRGMII(Module, AutoCSR):
|
||||
def __init__(self, clock_pads, pads, with_hw_init_reset=True):
|
||||
self.dw = 8
|
||||
self.submodules.crg = LiteEthPHYRGMIICRG(clock_pads, pads,
|
||||
with_hw_init_reset)
|
||||
self.submodules.tx = ClockDomainsRenamer("eth_tx")(
|
||||
LiteEthPHYRGMIITX(pads))
|
||||
self.submodules.rx = ClockDomainsRenamer("eth_rx")(
|
||||
LiteEthPHYRGMIIRX(pads))
|
||||
self.submodules.crg = LiteEthPHYRGMIICRG(clock_pads, pads, with_hw_init_reset)
|
||||
self.submodules.tx = ClockDomainsRenamer("eth_tx")(LiteEthPHYRGMIITX(pads))
|
||||
self.submodules.rx = ClockDomainsRenamer("eth_rx")(LiteEthPHYRGMIIRX(pads))
|
||||
self.sink, self.source = self.tx.sink, self.rx.source
|
||||
|
||||
if hasattr(pads, "mdc"):
|
||||
|
|
Loading…
Reference in New Issue