Use add_etherbone in simulation
Fixes not working analyzer example from wiki
This commit is contained in:
parent
5fd215fe3a
commit
c17421bccb
|
@ -262,15 +262,11 @@ class SimSoC(SoCCore):
|
|||
elif with_etherbone:
|
||||
# Ethernet PHY
|
||||
self.submodules.ethphy = LiteEthPHYModel(self.platform.request("eth", 0)) # FIXME
|
||||
# Ethernet Core
|
||||
ethcore = LiteEthUDPIPCore(self.ethphy,
|
||||
mac_address = etherbone_mac_address,
|
||||
self.add_etherbone(
|
||||
phy = self.ethphy,
|
||||
ip_address = etherbone_ip_address,
|
||||
clk_freq = sys_clk_freq)
|
||||
self.submodules.ethcore = ethcore
|
||||
# Etherbone
|
||||
self.submodules.etherbone = LiteEthEtherbone(self.ethcore.udp, 1234, mode="master")
|
||||
self.add_wb_master(self.etherbone.wishbone.bus)
|
||||
mac_address = etherbone_mac_address
|
||||
)
|
||||
|
||||
# Analyzer ---------------------------------------------------------------------------------
|
||||
if with_analyzer:
|
||||
|
|
Loading…
Reference in New Issue