colorlight_5a_75x: Switch ethernet/etherbone to 32-bit.

This commit is contained in:
Florent Kermarrec 2022-04-25 18:47:55 +02:00
parent 68ea5fe057
commit 74db821f67
1 changed files with 2 additions and 2 deletions

View File

@ -164,9 +164,9 @@ class BaseSoC(SoCCore):
pads = self.platform.request("eth", eth_phy),
tx_delay = 0e-9)
if with_ethernet:
self.add_ethernet(phy=self.ethphy)
self.add_ethernet(phy=self.ethphy, data_width=32)
if with_etherbone:
self.add_etherbone(phy=self.ethphy, ip_address=eth_ip)
self.add_etherbone(phy=self.ethphy, ip_address=eth_ip, data_width=32)
# Leds -------------------------------------------------------------------------------------
# Disable leds when serial is used.