litex/liteeth/arp/__init__.py

242 lines
6.4 KiB
Python
Raw Normal View History

from liteeth.common import *
from liteeth.generic.depacketizer import LiteEthDepacketizer
from liteeth.generic.packetizer import LiteEthPacketizer
2015-01-30 06:06:56 -05:00
_arp_table_layout = [
2015-01-29 15:07:02 -05:00
("reply", 1),
("request", 1),
("ip_address", 32),
("mac_address", 48)
]
class LiteEthARPDepacketizer(LiteEthDepacketizer):
def __init__(self):
LiteEthDepacketizer.__init__(self,
eth_mac_description(8),
eth_arp_description(8),
arp_header,
arp_header_len)
class LiteEthARPPacketizer(LiteEthPacketizer):
def __init__(self):
LiteEthPacketizer.__init__(self,
eth_arp_description(8),
eth_mac_description(8),
arp_header,
arp_header_len)
2015-01-29 15:07:02 -05:00
class LiteEthARPTX(Module):
def __init__(self, mac_address, ip_address):
2015-01-30 06:06:56 -05:00
self.sink = sink = Sink(_arp_table_layout)
2015-01-29 15:07:02 -05:00
self.source = Source(eth_mac_description(8))
###
packetizer = LiteEthARPPacketizer()
2015-01-29 15:07:02 -05:00
self.submodules += packetizer
source = packetizer.sink
counter = Counter(max=arp_packet_length)
self.submodules += counter
2015-01-29 15:07:02 -05:00
fsm = FSM(reset_state="IDLE")
self.submodules += fsm
fsm.act("IDLE",
sink.ack.eq(1),
counter.reset.eq(1),
If(sink.stb,
sink.ack.eq(0),
2015-01-29 15:07:02 -05:00
NextState("SEND")
)
)
self.comb += [
source.hardware_type.eq(arp_hwtype_ethernet),
source.protocol_type.eq(arp_proto_ip),
source.hardware_address_length.eq(6),
source.protocol_address_length.eq(4),
source.source_mac_address.eq(mac_address),
source.source_ip_address.eq(ip_address),
If(sink.reply,
source.operation.eq(arp_opcode_reply),
source.destination_mac_address.eq(sink.mac_address),
source.destination_ip_address.eq(sink.ip_address)
).Elif(sink.request,
source.operation.eq(arp_opcode_request),
source.destination_mac_address.eq(0xffffffffffff),
source.destination_ip_address.eq(sink.ip_address)
)
]
fsm.act("SEND",
2015-01-29 15:07:02 -05:00
source.stb.eq(1),
source.sop.eq(counter.value == 0),
source.eop.eq(counter.value == arp_packet_length-1),
2015-01-29 15:07:02 -05:00
Record.connect(packetizer.source, self.source),
self.source.destination_mac_address.eq(source.destination_mac_address),
self.source.source_mac_address.eq(mac_address),
self.source.ethernet_type.eq(ethernet_type_arp),
If(self.source.stb & self.source.ack,
2015-01-30 06:02:01 -05:00
sink.ack.eq(source.eop),
counter.ce.eq(1),
If(self.source.eop,
NextState("IDLE")
)
2015-01-29 15:07:02 -05:00
)
)
class LiteEthARPRX(Module):
def __init__(self, mac_address, ip_address):
self.sink = Sink(eth_mac_description(8))
2015-01-30 06:06:56 -05:00
self.source = source = Source(_arp_table_layout)
2015-01-29 15:07:02 -05:00
###
depacketizer = LiteEthARPDepacketizer()
2015-01-29 15:07:02 -05:00
self.submodules += depacketizer
self.comb += Record.connect(self.sink, depacketizer.sink)
sink = depacketizer.source
fsm = FSM(reset_state="IDLE")
self.submodules += fsm
fsm.act("IDLE",
sink.ack.eq(1),
If(sink.stb & sink.sop,
NextState("CHECK")
)
)
valid = Signal()
self.comb += valid.eq(
sink.stb &
(sink.hardware_type == arp_hwtype_ethernet) &
(sink.protocol_type == arp_proto_ip) &
(sink.hardware_address_length == 6) &
(sink.protocol_address_length == 4) &
(sink.destination_ip_address == ip_address)
)
reply = Signal()
request = Signal()
self.comb += Case(sink.operation, {
arp_opcode_request : [request.eq(1)],
arp_opcode_reply : [reply.eq(1)],
"default" : []
})
self.comb += [
source.ip_address.eq(sink.source_ip_address),
source.mac_address.eq(sink.source_mac_address)
]
fsm.act("CHECK",
If(valid,
source.stb.eq(1),
source.reply.eq(reply),
source.request.eq(request)
),
NextState("TERMINATE")
2015-01-29 15:07:02 -05:00
),
fsm.act("TERMINATE",
sink.ack.eq(1),
If(sink.stb & sink.eop,
2015-01-29 15:07:02 -05:00
NextState("IDLE")
)
)
arp_table_request_layout = [
("ip_address", 32)
]
arp_table_response_layout = [
("failed", 1),
("mac_address", 48)
]
class LiteEthARPTable(Module):
def __init__(self):
2015-01-30 06:06:56 -05:00
self.sink = sink = Sink(_arp_table_layout) # from arp_rx
self.source = source = Source(_arp_table_layout) # to arp_tx
2015-01-29 15:07:02 -05:00
# Request/Response interface
self.request = request = Sink(arp_table_request_layout)
self.response = response = Source(arp_table_response_layout)
2015-01-30 06:02:01 -05:00
###
request_timeout = Timeout(512) # XXX fix me 100ms?
request_pending = FlipFlop()
self.submodules += request_timeout, request_pending
self.comb += [
request_timeout.ce.eq(request_pending.q),
request_pending.d.eq(1)
]
# Note: Store only one ip/mac couple, replace this with
# a real ARP table
update = Signal()
cached_ip_address = Signal(32)
cached_mac_address = Signal(48)
2015-01-29 15:07:02 -05:00
fsm = FSM(reset_state="IDLE")
self.submodules += fsm
fsm.act("IDLE",
2015-01-30 06:02:01 -05:00
# Note: for simplicicy, if APR table is busy response from arp_rx
# is lost. This is compensated by the protocol (retrys)
2015-01-29 15:07:02 -05:00
If(sink.stb & sink.request,
NextState("SEND_REPLY")
2015-01-30 06:02:01 -05:00
).Elif(sink.stb & sink.reply & request_pending.q,
2015-01-29 15:07:02 -05:00
NextState("UPDATE_TABLE")
2015-01-30 06:02:01 -05:00
).Elif(request.stb | (request_pending.q & request_timeout.reached),
2015-01-29 15:07:02 -05:00
NextState("CHECK_TABLE")
)
)
fsm.act("SEND_REPLY",
source.stb.eq(1),
source.reply.eq(1),
source.ip_address.eq(sink.ip_address),
If(source.ack,
NextState("IDLE")
)
)
fsm.act("UPDATE_TABLE",
2015-01-30 06:02:01 -05:00
request_pending.reset.eq(1),
update.eq(1),
NextState("CHECK_TABLE")
2015-01-29 15:07:02 -05:00
)
2015-01-30 06:02:01 -05:00
self.sync += [
If(update,
cached_ip_address.eq(sink.ip_address),
cached_mac_address.eq(sink.mac_address)
)
]
2015-01-29 15:07:02 -05:00
found = Signal()
fsm.act("CHECK_TABLE",
2015-01-30 06:02:01 -05:00
# XXX: add a live time for cached_mac_address
If(request.ip_address == cached_ip_address,
request.ack.eq(request.stb),
NextState("PRESENT_RESPONSE")
2015-01-29 15:07:02 -05:00
).Else(
NextState("SEND_REQUEST")
2015-01-29 15:07:02 -05:00
)
)
fsm.act("SEND_REQUEST",
source.stb.eq(1),
source.request.eq(1),
source.ip_address.eq(request.ip_address),
If(source.ack,
2015-01-30 06:02:01 -05:00
request_timeout.reset.eq(1),
request_pending.ce.eq(1),
request.ack.eq(1),
2015-01-29 15:07:02 -05:00
NextState("IDLE")
)
)
fsm.act("PRESENT_RESPONSE",
response.stb.eq(1),
response.failed.eq(0), # XXX add timeout to trigger failed
2015-01-30 06:02:01 -05:00
response.mac_address.eq(cached_mac_address),
2015-01-29 15:07:02 -05:00
If(response.ack,
NextState("IDLE")
)
)
class LiteEthARP(Module):
def __init__(self, mac_address, ip_address):
self.submodules.tx = LiteEthARPTX(mac_address, ip_address)
self.submodules.rx = LiteEthARPRX(mac_address, ip_address)
self.submodules.table = LiteEthARPTable()
self.comb += [
Record.connect(self.rx.source, self.table.sink),
Record.connect(self.table.source, self.tx.sink)
]
self.sink, self.source = self.rx.sink, self.tx.source
self.request, self.response = self.table.request, self.table.response