2020-08-23 10:06:55 -04:00
|
|
|
#
|
|
|
|
# This file is part of LiteEth.
|
|
|
|
#
|
|
|
|
# Copyright (c) 2015-2019 Florent Kermarrec <florent@enjoy-digital.fr>
|
|
|
|
# SPDX-License-Identifier: BSD-2-Clause
|
2019-06-24 05:43:10 -04:00
|
|
|
|
2017-01-19 08:33:24 -05:00
|
|
|
import unittest
|
2018-02-23 07:40:09 -05:00
|
|
|
|
|
|
|
from migen import *
|
2015-09-07 07:28:02 -04:00
|
|
|
|
2015-11-13 09:11:57 -05:00
|
|
|
from litex.soc.interconnect import wishbone
|
2015-11-13 18:42:33 -05:00
|
|
|
from litex.soc.interconnect.stream_sim import *
|
2015-11-13 09:11:57 -05:00
|
|
|
|
2015-09-08 03:50:45 -04:00
|
|
|
from liteeth.common import *
|
2019-06-24 05:23:03 -04:00
|
|
|
from liteeth.mac import LiteEthMAC
|
2015-09-08 03:50:45 -04:00
|
|
|
from liteeth.core.arp import LiteEthARP
|
2015-09-07 07:28:02 -04:00
|
|
|
|
2017-01-19 08:33:24 -05:00
|
|
|
from test.model import phy, mac, arp
|
2015-09-07 07:28:02 -04:00
|
|
|
|
|
|
|
ip_address = 0x12345678
|
|
|
|
mac_address = 0x12345678abcd
|
|
|
|
|
|
|
|
|
2017-01-19 08:33:24 -05:00
|
|
|
class DUT(Module):
|
2015-09-07 07:28:02 -04:00
|
|
|
def __init__(self):
|
|
|
|
self.submodules.phy_model = phy.PHY(8, debug=False)
|
|
|
|
self.submodules.mac_model = mac.MAC(self.phy_model, debug=False, loopback=False)
|
|
|
|
self.submodules.arp_model = arp.ARP(self.mac_model, mac_address, ip_address, debug=False)
|
|
|
|
|
|
|
|
self.submodules.mac = LiteEthMAC(self.phy_model, dw=8, with_preamble_crc=True)
|
|
|
|
self.submodules.arp = LiteEthARP(self.mac, mac_address, ip_address, 100000)
|
|
|
|
|
2015-11-13 08:47:57 -05:00
|
|
|
|
2016-03-21 14:30:47 -04:00
|
|
|
def main_generator(dut):
|
|
|
|
while (yield dut.arp.table.request.ready) != 1:
|
|
|
|
yield dut.arp.table.request.valid.eq(1)
|
|
|
|
yield dut.arp.table.request.ip_address.eq(0x12345678)
|
|
|
|
yield
|
|
|
|
yield dut.arp.table.request.valid.eq(0)
|
|
|
|
while (yield dut.arp.table.response.valid) != 1:
|
|
|
|
yield dut.arp.table.response.ready.eq(1)
|
|
|
|
yield
|
|
|
|
print("Received MAC : 0x{:12x}".format((yield dut.arp.table.response.mac_address)))
|
2015-09-07 07:28:02 -04:00
|
|
|
|
2017-01-19 08:33:24 -05:00
|
|
|
|
|
|
|
class TestARP(unittest.TestCase):
|
|
|
|
def test(self):
|
|
|
|
dut = DUT()
|
|
|
|
generators = {
|
|
|
|
"sys" : [main_generator(dut)],
|
|
|
|
"eth_tx": [dut.phy_model.phy_sink.generator(),
|
|
|
|
dut.phy_model.generator()],
|
|
|
|
"eth_rx": dut.phy_model.phy_source.generator()
|
|
|
|
}
|
|
|
|
clocks = {"sys": 10,
|
|
|
|
"eth_rx": 10,
|
|
|
|
"eth_tx": 10}
|
|
|
|
run_simulation(dut, generators, clocks, vcd_name="sim.vcd")
|