siglent_sds1104xe: Avoid disabling hardware interface with BIOS ethernet reset.

This commit is contained in:
Florent Kermarrec 2021-04-29 11:52:41 +02:00
parent c28a161392
commit 6117b98049
1 changed files with 1 additions and 0 deletions

View File

@ -130,6 +130,7 @@ class BaseSoC(SoCCore):
self.submodules.ip = LiteEthIP(self.ethmac, etherbone_mac_address, etherbone_ip_address, self.arp.table, dw=8)
self.submodules.icmp = LiteEthICMP(self.ip, etherbone_ip_address, dw=8)
self.submodules.udp = LiteEthUDP(self.ip, etherbone_ip_address, dw=8)
self.add_constant("ETH_PHY_NO_RESET") # Disable reset from BIOS to avoid disabling Hardware Interface.
# Etherbone
self.submodules.etherbone = LiteEthEtherbone(self.udp, 1234, mode="master")