Merge pull request #78 from lschuermann/dev/phy-gmii-model
phy/gmii: add model parameter to skip clock buffers & generation
This commit is contained in:
commit
734d948665
|
@ -47,7 +47,7 @@ class LiteEthPHYGMIIRX(Module):
|
|||
|
||||
|
||||
class LiteEthPHYGMIICRG(Module, AutoCSR):
|
||||
def __init__(self, clock_pads, pads, with_hw_init_reset, mii_mode=0):
|
||||
def __init__(self, clock_pads, pads, with_hw_init_reset, mii_mode=0, model=False):
|
||||
self._reset = CSRStorage()
|
||||
|
||||
# # #
|
||||
|
@ -55,6 +55,7 @@ class LiteEthPHYGMIICRG(Module, AutoCSR):
|
|||
self.clock_domains.cd_eth_rx = ClockDomain()
|
||||
self.clock_domains.cd_eth_tx = ClockDomain()
|
||||
|
||||
if not model:
|
||||
# RX clock: GMII, MII Use PHY clock_pads.rx as eth_rx_clk.
|
||||
self.specials += Instance("BUFG",
|
||||
i_I = clock_pads.rx,
|
||||
|
@ -90,14 +91,20 @@ class LiteEthPHYGMIICRG(Module, AutoCSR):
|
|||
AsyncResetSynchronizer(self.cd_eth_tx, reset),
|
||||
AsyncResetSynchronizer(self.cd_eth_rx, reset),
|
||||
]
|
||||
else:
|
||||
self.comb += [
|
||||
self.cd_eth_rx.clk.eq(ClockSignal()),
|
||||
self.cd_eth_tx.clk.eq(ClockSignal()),
|
||||
]
|
||||
|
||||
|
||||
class LiteEthPHYGMII(Module, AutoCSR):
|
||||
dw = 8
|
||||
tx_clk_freq = 125e6
|
||||
rx_clk_freq = 125e6
|
||||
def __init__(self, clock_pads, pads, with_hw_init_reset=True):
|
||||
self.submodules.crg = LiteEthPHYGMIICRG(clock_pads, pads, with_hw_init_reset)
|
||||
def __init__(self, clock_pads, pads, with_hw_init_reset=True, model=False):
|
||||
self.model = model
|
||||
self.submodules.crg = LiteEthPHYGMIICRG(clock_pads, pads, with_hw_init_reset, model=model)
|
||||
self.submodules.tx = ClockDomainsRenamer("eth_tx")(LiteEthPHYGMIITX(pads))
|
||||
self.submodules.rx = ClockDomainsRenamer("eth_rx")(LiteEthPHYGMIIRX(pads))
|
||||
self.sink, self.source = self.tx.sink, self.rx.source
|
||||
|
|
Loading…
Reference in New Issue