2012-05-19 18:30:03 -04:00
|
|
|
from migen.fhdl.structure import *
|
2013-02-24 07:07:25 -05:00
|
|
|
from migen.fhdl.specials import Instance
|
2013-03-10 14:32:38 -04:00
|
|
|
from migen.fhdl.module import Module
|
2012-05-19 18:30:03 -04:00
|
|
|
from migen.bank.description import *
|
|
|
|
from migen.bank.eventmanager import *
|
|
|
|
from migen.bus import wishbone
|
|
|
|
|
|
|
|
_count_width = 11
|
|
|
|
|
2013-03-10 14:32:38 -04:00
|
|
|
class MiniMAC(Module, AutoReg):
|
2013-03-26 12:57:17 -04:00
|
|
|
def __init__(self, pads):
|
2012-05-19 18:30:03 -04:00
|
|
|
# CPU interface
|
2013-03-12 10:47:54 -04:00
|
|
|
self._phy_reset = RegisterField(reset=1)
|
|
|
|
self._rx_count_0 = RegisterField(_count_width, access_bus=READ_ONLY, access_dev=WRITE_ONLY)
|
|
|
|
self._rx_count_1 = RegisterField(_count_width, access_bus=READ_ONLY, access_dev=WRITE_ONLY)
|
|
|
|
self._tx_count = RegisterField(_count_width, access_dev=READ_WRITE)
|
|
|
|
self._tx_start = RegisterRaw()
|
2012-05-19 18:30:03 -04:00
|
|
|
|
2013-03-10 14:32:38 -04:00
|
|
|
self.submodules.ev = EventManager()
|
|
|
|
self.ev.rx0 = EventSourcePulse()
|
|
|
|
self.ev.rx1 = EventSourcePulse()
|
|
|
|
self.ev.tx = EventSourcePulse()
|
|
|
|
self.ev.finalize()
|
2012-05-19 18:30:03 -04:00
|
|
|
|
|
|
|
self.membus = wishbone.Interface()
|
|
|
|
|
2013-03-10 14:32:38 -04:00
|
|
|
###
|
|
|
|
|
2012-05-19 18:30:03 -04:00
|
|
|
init = Signal(reset=1)
|
2013-03-10 14:32:38 -04:00
|
|
|
self.sync += init.eq(0)
|
2012-05-19 18:30:03 -04:00
|
|
|
rx_ready_0 = Signal()
|
|
|
|
rx_ready_1 = Signal()
|
2013-03-10 14:32:38 -04:00
|
|
|
rx_pending_0 = self.ev.rx0.pending
|
|
|
|
rx_pending_1 = self.ev.rx1.pending
|
2012-05-19 18:30:03 -04:00
|
|
|
rx_pending_0_r = Signal()
|
|
|
|
rx_pending_1_r = Signal()
|
2013-03-10 14:32:38 -04:00
|
|
|
self.comb += [
|
2013-03-26 12:57:17 -04:00
|
|
|
pads.rst_n.eq(~self._phy_reset.field.r),
|
2012-05-19 18:30:03 -04:00
|
|
|
|
|
|
|
rx_ready_0.eq(init | (rx_pending_0_r & ~rx_pending_0)),
|
|
|
|
rx_ready_1.eq(init | (rx_pending_1_r & ~rx_pending_1)),
|
|
|
|
|
|
|
|
self._tx_count.field.w.eq(0),
|
2013-03-10 14:32:38 -04:00
|
|
|
self._tx_count.field.we.eq(self.ev.tx.trigger)
|
2012-05-19 18:30:03 -04:00
|
|
|
]
|
2013-03-10 14:32:38 -04:00
|
|
|
self.sync += [
|
2012-05-19 18:30:03 -04:00
|
|
|
rx_pending_0_r.eq(rx_pending_0),
|
|
|
|
rx_pending_1_r.eq(rx_pending_1)
|
|
|
|
]
|
2013-03-10 14:32:38 -04:00
|
|
|
self.specials += Instance("minimac3",
|
2013-03-18 12:44:01 -04:00
|
|
|
Instance.Input("sys_clk", ClockSignal()),
|
|
|
|
Instance.Input("sys_rst", ResetSignal()),
|
2012-09-10 17:47:06 -04:00
|
|
|
|
2013-03-10 14:32:38 -04:00
|
|
|
Instance.Output("rx_done_0", self.ev.rx0.trigger),
|
2012-09-10 17:47:06 -04:00
|
|
|
Instance.Output("rx_count_0", self._rx_count_0.field.w),
|
2013-03-10 14:32:38 -04:00
|
|
|
Instance.Output("rx_done_1", self.ev.rx1.trigger),
|
2012-09-10 17:47:06 -04:00
|
|
|
Instance.Output("rx_count_1", self._rx_count_1.field.w),
|
|
|
|
Instance.Input("rx_ready_0", rx_ready_0),
|
|
|
|
Instance.Input("rx_ready_1", rx_ready_1),
|
|
|
|
|
|
|
|
Instance.Input("tx_start", self._tx_start.re),
|
|
|
|
Instance.Input("tx_count", self._tx_count.field.r),
|
2013-03-10 14:32:38 -04:00
|
|
|
Instance.Output("tx_done", self.ev.tx.trigger),
|
2012-09-10 17:47:06 -04:00
|
|
|
|
|
|
|
Instance.Input("wb_adr_i", self.membus.adr),
|
|
|
|
Instance.Input("wb_dat_i", self.membus.dat_w),
|
|
|
|
Instance.Input("wb_sel_i", self.membus.sel),
|
|
|
|
Instance.Input("wb_stb_i", self.membus.stb),
|
|
|
|
Instance.Input("wb_cyc_i", self.membus.cyc),
|
|
|
|
Instance.Input("wb_we_i", self.membus.we),
|
|
|
|
Instance.Output("wb_dat_o", self.membus.dat_r),
|
|
|
|
Instance.Output("wb_ack_o", self.membus.ack),
|
|
|
|
|
2013-03-18 12:44:01 -04:00
|
|
|
Instance.Input("phy_tx_clk", ClockSignal("eth_tx")),
|
2013-03-26 12:57:17 -04:00
|
|
|
Instance.Output("phy_tx_data", pads.tx_data),
|
|
|
|
Instance.Output("phy_tx_en", pads.tx_en),
|
|
|
|
Instance.Output("phy_tx_er", pads.tx_er),
|
2013-03-18 12:44:01 -04:00
|
|
|
Instance.Input("phy_rx_clk", ClockSignal("eth_rx")),
|
2013-03-26 12:57:17 -04:00
|
|
|
Instance.Input("phy_rx_data", pads.rx_data),
|
|
|
|
Instance.Input("phy_dv", pads.dv),
|
|
|
|
Instance.Input("phy_rx_er", pads.rx_er),
|
|
|
|
Instance.Input("phy_col", pads.col),
|
|
|
|
Instance.Input("phy_crs", pads.crs))
|