litex/misoclib/liteeth/mac/core/padding.py

48 lines
1.3 KiB
Python
Raw Normal View History

from misoclib.liteeth.common import *
from misoclib.liteeth.generic import *
2015-02-22 07:43:29 -05:00
class LiteEthMACPaddingInserter(Module):
def __init__(self, dw, packet_min_length):
self.sink = sink = Sink(eth_phy_description(dw))
self.source = source = Source(eth_phy_description(dw))
###
packet_min_data = math.ceil(packet_min_length/(dw/8))
self.submodules.counter = counter = Counter(max=eth_mtu)
self.submodules.fsm = fsm = FSM(reset_state="COPY")
fsm.act("COPY",
counter.reset.eq(sink.stb & sink.sop),
Record.connect(sink, source),
If(sink.stb & sink.ack,
counter.ce.eq(1),
If(sink.eop,
If(counter.value < (packet_min_data-1),
source.eop.eq(0),
NextState("PADDING")
)
)
)
)
fsm.act("PADDING",
source.stb.eq(1),
source.eop.eq(counter.value == (packet_min_data-1)),
source.data.eq(0),
If(source.ack,
counter.ce.eq(1),
If(source.eop,
NextState("COPY")
)
)
)
class LiteEthMACPaddingChecker(Module):
def __init__(self, dw, packet_min_length):
self.sink = sink = Sink(eth_phy_description(dw))
self.source = source = Source(eth_phy_description(dw))
###
# XXX see if we should drop the packet when
# payload size < minimum ethernet payload size
self.comb += Record.connect(sink, source)