mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
142 lines
4.6 KiB
Python
142 lines
4.6 KiB
Python
from migen.genlib.io import DDROutput
|
|
from migen.flow.plumbing import Multiplexer, Demultiplexer
|
|
from migen.genlib.cdc import PulseSynchronizer
|
|
|
|
from misoclib.com.liteeth.common import *
|
|
from misoclib.com.liteeth.generic import *
|
|
|
|
from misoclib.com.liteeth.phy.gmii import LiteEthPHYGMIICRG
|
|
from misoclib.com.liteeth.phy.mii import LiteEthPHYMIITX, LiteEthPHYMIIRX
|
|
from misoclib.com.liteeth.phy.gmii import LiteEthPHYGMIITX, LiteEthPHYGMIIRX
|
|
|
|
modes = {
|
|
"GMII": 0,
|
|
"MII": 1
|
|
}
|
|
|
|
tx_pads_layout = [("tx_er", 1), ("tx_en", 1), ("tx_data", 8)]
|
|
rx_pads_layout = [("rx_er", 1), ("dv", 1), ("rx_data", 8)]
|
|
|
|
|
|
class LiteEthPHYGMIIMIITX(Module):
|
|
def __init__(self, pads, mode):
|
|
self.sink = sink = Sink(eth_phy_description(8))
|
|
|
|
# # #
|
|
|
|
gmii_tx_pads = Record(tx_pads_layout)
|
|
gmii_tx = LiteEthPHYGMIITX(gmii_tx_pads, pads_register=False)
|
|
self.submodules += gmii_tx
|
|
|
|
mii_tx_pads = Record(tx_pads_layout)
|
|
mii_tx = LiteEthPHYMIITX(mii_tx_pads, pads_register=False)
|
|
self.submodules += mii_tx
|
|
|
|
demux = Demultiplexer(eth_phy_description(8), 2)
|
|
self.submodules += demux
|
|
self.comb += [
|
|
demux.sel.eq(mode == modes["MII"]),
|
|
Record.connect(sink, demux.sink),
|
|
Record.connect(demux.source0, gmii_tx.sink),
|
|
Record.connect(demux.source1, mii_tx.sink),
|
|
]
|
|
|
|
if hasattr(pads, "tx_er"):
|
|
self.comb += pads.tx_er.eq(0)
|
|
self.sync += [
|
|
If(mode == modes["MII"],
|
|
pads.tx_en.eq(mii_tx_pads.tx_en),
|
|
pads.tx_data.eq(mii_tx_pads.tx_data),
|
|
).Else(
|
|
pads.tx_en.eq(gmii_tx_pads.tx_en),
|
|
pads.tx_data.eq(gmii_tx_pads.tx_data),
|
|
)
|
|
]
|
|
|
|
|
|
class LiteEthPHYGMIIMIIRX(Module):
|
|
def __init__(self, pads, mode):
|
|
self.source = source = Source(eth_phy_description(8))
|
|
|
|
# # #
|
|
|
|
pads_d = Record(rx_pads_layout)
|
|
self.sync += [
|
|
pads_d.dv.eq(pads.dv),
|
|
pads_d.rx_data.eq(pads.rx_data)
|
|
]
|
|
|
|
gmii_rx = LiteEthPHYGMIIRX(pads_d)
|
|
self.submodules += gmii_rx
|
|
|
|
mii_rx = LiteEthPHYMIIRX(pads_d)
|
|
self.submodules += mii_rx
|
|
|
|
mux = Multiplexer(eth_phy_description(8), 2)
|
|
self.submodules += mux
|
|
self.comb += [
|
|
mux.sel.eq(mode == modes["MII"]),
|
|
Record.connect(gmii_rx.source, mux.sink0),
|
|
Record.connect(mii_rx.source, mux.sink1),
|
|
Record.connect(mux.source, source)
|
|
]
|
|
|
|
|
|
class LiteEthGMIIMIIModeDetection(Module, AutoCSR):
|
|
def __init__(self):
|
|
self._reset = CSRStorage()
|
|
self._counter = CSRStatus(32)
|
|
self._mode = CSRStorage()
|
|
self.mode = Signal()
|
|
|
|
# # #
|
|
|
|
# Note:
|
|
# For now mode detection is done with gateware and software.
|
|
# We will probably do it in gateware in the future
|
|
# (we will need to pass clk_freq parameter to PHY)
|
|
|
|
# Principle:
|
|
# sys_clk >= 125MHz
|
|
# eth_rx <= 125Mhz
|
|
# We generate a pulse in eth_rx clock domain that increments
|
|
# a counter in sys_clk domain.
|
|
|
|
# Generate a pulse every 4 clock cycles (eth_rx clock domain)
|
|
eth_pulse = Signal()
|
|
eth_counter = Signal(2)
|
|
self.sync.eth_rx += eth_counter.eq(eth_counter + 1)
|
|
self.comb += eth_pulse.eq(eth_counter == 0)
|
|
|
|
# Synchronize pulse (sys clock domain)
|
|
sys_pulse = Signal()
|
|
eth_ps = PulseSynchronizer("eth_rx", "sys")
|
|
self.comb += [
|
|
eth_ps.i.eq(eth_pulse),
|
|
sys_pulse.eq(eth_ps.o)
|
|
]
|
|
self.submodules += eth_ps
|
|
|
|
# Count pulses (sys clock domain)
|
|
counter = Counter(32)
|
|
self.submodules += counter
|
|
self.comb += [
|
|
counter.reset.eq(self._reset.storage),
|
|
counter.ce.eq(sys_pulse)
|
|
]
|
|
self.comb += self._counter.status.eq(counter.value)
|
|
|
|
# Output mode
|
|
self.comb += self.mode.eq(self._mode.storage)
|
|
|
|
|
|
class LiteEthPHYGMIIMII(Module, AutoCSR):
|
|
def __init__(self, clock_pads, pads, with_hw_init_reset=True):
|
|
self.dw = 8
|
|
# Note: we can use GMII CRG since it also handles tx clock pad used for MII
|
|
self.submodules.mode_detection = LiteEthGMIIMIIModeDetection()
|
|
mode = self.mode_detection.mode
|
|
self.submodules.crg = LiteEthPHYGMIICRG(clock_pads, pads, with_hw_init_reset, mode == modes["MII"])
|
|
self.submodules.tx = RenameClockDomains(LiteEthPHYGMIIMIITX(pads, mode), "eth_tx")
|
|
self.submodules.rx = RenameClockDomains(LiteEthPHYGMIIMIIRX(pads, mode), "eth_rx")
|
|
self.sink, self.source = self.tx.sink, self.rx.source
|