targets/efinix: Update RGMII PHYs (IOs are now directly excluded in PHYs).
This commit is contained in:
parent
347b477b07
commit
4bb064853d
|
@ -92,11 +92,6 @@ class BaseSoC(SoCCore):
|
||||||
self.add_etherbone(phy=self.ethphy)
|
self.add_etherbone(phy=self.ethphy)
|
||||||
|
|
||||||
# FIXME: Avoid this.
|
# FIXME: Avoid this.
|
||||||
platform.toolchain.excluded_ios.append(platform.lookup_request("eth_clocks").tx)
|
|
||||||
platform.toolchain.excluded_ios.append(platform.lookup_request("eth_clocks").rx)
|
|
||||||
platform.toolchain.excluded_ios.append(platform.lookup_request("eth").tx_data)
|
|
||||||
platform.toolchain.excluded_ios.append(platform.lookup_request("eth").tx_ctl)
|
|
||||||
platform.toolchain.excluded_ios.append(platform.lookup_request("eth").rx_data)
|
|
||||||
platform.toolchain.excluded_ios.append(platform.lookup_request("eth").mdio)
|
platform.toolchain.excluded_ios.append(platform.lookup_request("eth").mdio)
|
||||||
|
|
||||||
# Extension board on P2 + External Logic Analyzer.
|
# Extension board on P2 + External Logic Analyzer.
|
||||||
|
|
|
@ -100,10 +100,6 @@ 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)
|
||||||
# FIXME: Avoid this.
|
# FIXME: Avoid this.
|
||||||
platform.toolchain.excluded_ios.append(platform.lookup_request("eth_clocks").tx)
|
|
||||||
platform.toolchain.excluded_ios.append(platform.lookup_request("eth_clocks").rx)
|
|
||||||
platform.toolchain.excluded_ios.append(platform.lookup_request("eth").tx_data)
|
|
||||||
platform.toolchain.excluded_ios.append(platform.lookup_request("eth").rx_data)
|
|
||||||
platform.toolchain.excluded_ios.append(platform.lookup_request("eth").mdio)
|
platform.toolchain.excluded_ios.append(platform.lookup_request("eth").mdio)
|
||||||
# Use Ethernet RMII PMOD.
|
# Use Ethernet RMII PMOD.
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in New Issue