Skip to content

Commit

Permalink
targets/efinix: Now rely in LiteX to automatically exclude Tristate IOs.
Browse files Browse the repository at this point in the history
  • Loading branch information
enjoy-digital committed Aug 30, 2023
1 parent 4bb0648 commit c960e85
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
3 changes: 0 additions & 3 deletions litex_boards/targets/efinix_titanium_ti60_f225_dev_kit.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,6 @@ def __init__(self, sys_clk_freq=200e6,
if with_etherbone:
self.add_etherbone(phy=self.ethphy)

# FIXME: Avoid this.
platform.toolchain.excluded_ios.append(platform.lookup_request("eth").mdio)

# Extension board on P2 + External Logic Analyzer.
_pmod_ios = [
("debug", 0, Pins(
Expand Down
3 changes: 0 additions & 3 deletions litex_boards/targets/efinix_trion_t120_bga576_dev_kit.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@ def __init__(self, sys_clk_freq=75e6,
from litespi.modules import W25Q128JV
from litespi.opcodes import SpiNorFlashOpCodes as Codes
self.add_spi_flash(mode="4x", module=W25Q128JV(Codes.READ_1_1_4), with_master=True)
platform.toolchain.excluded_ios.append(platform.lookup_request("spiflash4x").dq)

# Leds -------------------------------------------------------------------------------------
if with_led_chaser:
Expand All @@ -99,8 +98,6 @@ def __init__(self, sys_clk_freq=75e6,
clock_pads = platform.request("eth_clocks", eth_phy),
pads = platform.request("eth", eth_phy),
with_hw_init_reset = False)
# FIXME: Avoid this.
platform.toolchain.excluded_ios.append(platform.lookup_request("eth").mdio)
# Use Ethernet RMII PMOD.
else:
from litex.build.generic_platform import Pins, Subsignal, IOStandard
Expand Down

0 comments on commit c960e85

Please sign in to comment.