liteeth/test/model/etherbone.py

60 lines
1.6 KiB
Python
Raw Normal View History

# This file is Copyright (c) 2015-2019 Florent Kermarrec <florent@enjoy-digital.fr>
# License: BSD
2015-09-07 07:28:02 -04:00
import math
from litex.soc.interconnect.stream_sim import *
from litex.tools.remote.etherbone import *
2015-09-08 03:50:45 -04:00
from liteeth.common import *
2015-09-07 07:28:02 -04:00
from test.model import udp
2015-09-07 07:28:02 -04:00
# Helpers ------------------------------------------------------------------------------------------
2015-09-07 07:28:02 -04:00
def print_etherbone(s):
print_with_prefix(s, "[ETHERBONE]")
# Etherbone ----------------------------------------------------------------------------------------
2015-09-07 07:28:02 -04:00
class Etherbone(Module):
def __init__(self, udp, debug=False):
self.udp = udp
2015-09-07 07:28:02 -04:00
self.debug = debug
self.tx_packets = []
self.tx_packet = EtherbonePacket()
self.rx_packet = EtherbonePacket()
2015-09-07 07:28:02 -04:00
udp.set_etherbone_callback(self.callback)
def send(self, packet):
packet.encode()
if self.debug:
print_etherbone(">>>>>>>>")
print_etherbone(packet)
udp_packet = udp.UDPPacket(packet)
udp_packet.src_port = 0x1234 # FIXME
udp_packet.dst_port = 0x1234 # FIXME
udp_packet.length = len(packet)
2015-09-07 07:28:02 -04:00
udp_packet.checksum = 0
self.udp.send(udp_packet)
def receive(self):
self.rx_packet = EtherbonePacket()
while not self.rx_packet.done:
yield
def callback(self, packet):
packet = EtherbonePacket(packet)
packet.decode()
if self.debug:
print_etherbone("<<<<<<<<")
print_etherbone(packet)
self.rx_packet = packet
self.rx_packet.done = True
self.process(packet)
def process(self, packet):
pass