ti60_f225_dev_kit: Fix ethernet build and enable debug. Now needs testing.

This commit is contained in:
Florent Kermarrec 2022-06-28 19:54:00 +02:00
parent 1a71932599
commit 6b02ea024a
2 changed files with 2 additions and 2 deletions

View File

@ -162,7 +162,7 @@ def rgmii_ethernet_qse_ios(con):
IOStandard("1.8_V_LVCMOS"), IOStandard("1.8_V_LVCMOS"),
), ),
("eth", 0, ("eth", 0,
Subsignal("rx_ctl", Pins(f"{con}27")), Subsignal("rx_ctl", Pins(f"{con}:27")),
Subsignal("rx_data", Pins(f"{con}:21 {con}:19 {con}:15 {con}:13")), Subsignal("rx_data", Pins(f"{con}:21 {con}:19 {con}:15 {con}:13")),
Subsignal("tx_ctl", Pins(f"{con}:20")), Subsignal("tx_ctl", Pins(f"{con}:20")),
Subsignal("tx_data", Pins(f"{con}:16 {con}:14 {con}:10 {con}:8")), Subsignal("tx_data", Pins(f"{con}:16 {con}:14 {con}:10 {con}:8")),

View File

@ -83,7 +83,7 @@ class BaseSoC(SoCCore):
pads = platform.request("eth", eth_phy), pads = platform.request("eth", eth_phy),
with_hw_init_reset = False) with_hw_init_reset = False)
if with_ethernet: if with_ethernet:
self.add_ethernet(phy=self.ethphy, software_debug=False) self.add_ethernet(phy=self.ethphy, software_debug=True)
if with_etherbone: if with_etherbone:
self.add_etherbone(phy=self.ethphy) self.add_etherbone(phy=self.ethphy)