2015-11-13 09:11:57 -05:00
|
|
|
from litex.gen import *
|
2015-11-13 08:48:42 -05:00
|
|
|
from litex.gen.sim.generic import run_simulation
|
2015-09-07 07:28:02 -04:00
|
|
|
|
2015-11-13 09:11:57 -05:00
|
|
|
from litex.soc.interconnect import wishbone
|
|
|
|
|
2015-09-08 03:50:45 -04:00
|
|
|
from liteeth.common import *
|
|
|
|
from liteeth.core import LiteEthIPCore
|
2015-09-07 07:28:02 -04:00
|
|
|
|
2015-09-12 14:53:14 -04:00
|
|
|
from test.common import *
|
|
|
|
from test.model.dumps import *
|
|
|
|
from test.model.mac import *
|
|
|
|
from test.model.ip import *
|
|
|
|
from test.model.icmp import *
|
|
|
|
from test.model import phy, mac, arp, ip, icmp
|
2015-09-07 07:28:02 -04:00
|
|
|
|
|
|
|
ip_address = 0x12345678
|
|
|
|
mac_address = 0x12345678abcd
|
|
|
|
|
|
|
|
|
|
|
|
class TB(Module):
|
|
|
|
def __init__(self):
|
|
|
|
self.submodules.phy_model = phy.PHY(8, debug=True)
|
|
|
|
self.submodules.mac_model = mac.MAC(self.phy_model, debug=True, loopback=False)
|
|
|
|
self.submodules.arp_model = arp.ARP(self.mac_model, mac_address, ip_address, debug=True)
|
|
|
|
self.submodules.ip_model = ip.IP(self.mac_model, mac_address, ip_address, debug=True, loopback=False)
|
|
|
|
self.submodules.icmp_model = icmp.ICMP(self.ip_model, ip_address, debug=True)
|
|
|
|
|
|
|
|
self.submodules.ip = LiteEthIPCore(self.phy_model, mac_address, ip_address, 100000)
|
|
|
|
|
2015-11-13 08:47:57 -05:00
|
|
|
# use sys_clk for each clock_domain
|
|
|
|
self.clock_domains.cd_eth_rx = ClockDomain()
|
|
|
|
self.clock_domains.cd_eth_tx = ClockDomain()
|
|
|
|
self.comb += [
|
|
|
|
self.cd_eth_rx.clk.eq(ClockSignal()),
|
|
|
|
self.cd_eth_rx.rst.eq(ResetSignal()),
|
|
|
|
self.cd_eth_tx.clk.eq(ClockSignal()),
|
|
|
|
self.cd_eth_tx.rst.eq(ResetSignal()),
|
|
|
|
]
|
|
|
|
|
|
|
|
def gen_simulation(self, selfp):
|
|
|
|
selfp.cd_eth_rx.rst = 1
|
|
|
|
selfp.cd_eth_tx.rst = 1
|
2015-11-12 17:09:37 -05:00
|
|
|
yield
|
2015-11-13 08:47:57 -05:00
|
|
|
selfp.cd_eth_rx.rst = 0
|
|
|
|
selfp.cd_eth_tx.rst = 0
|
|
|
|
|
|
|
|
for i in range(100):
|
|
|
|
yield
|
2015-09-07 07:28:02 -04:00
|
|
|
|
2015-11-13 08:47:57 -05:00
|
|
|
packet = MACPacket(ping_request)
|
|
|
|
packet.decode_remove_header()
|
|
|
|
packet = IPPacket(packet)
|
|
|
|
packet.decode()
|
|
|
|
packet = ICMPPacket(packet)
|
|
|
|
packet.decode()
|
|
|
|
self.icmp_model.send(packet)
|
2015-09-07 07:28:02 -04:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
2015-11-13 08:47:57 -05:00
|
|
|
run_simulation(TB(), ncycles=2048, vcd_name="my.vcd", keep_files=True)
|