Skip to content

Commit

Permalink
phy/efinix: IO exclusion on DDROutput/Input now directly done in LiteX.
Browse files Browse the repository at this point in the history
  • Loading branch information
enjoy-digital committed Aug 30, 2023
1 parent 8436d77 commit 0f055b1
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 12 deletions.
6 changes: 0 additions & 6 deletions liteeth/phy/titaniumrgmii.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,6 @@ def __init__(self, platform, pads, ddr_tx_ctl=True):
o = pads.tx_data[n],
clk = "auto_eth_tx_clk", # FIXME.
)
# FIXME: Integrate in EfinixDDROutputImpl.
platform.toolchain.excluded_ios.append(pads.tx_data)

# TX Ctl IOs.
# -----------
Expand All @@ -52,8 +50,6 @@ def __init__(self, platform, pads, ddr_tx_ctl=True):
o = pads.tx_ctl,
clk = "auto_eth_tx_clk", # FIXME.
)
# FIXME: Integrate in EfinixDDROutputImpl.
platform.toolchain.excluded_ios.append(pads.tx_ctl)
else:
self.sync.eth_tx += pads.tx_ctl.eq(sink.valid)

Expand Down Expand Up @@ -90,8 +86,6 @@ def __init__(self, platform, pads):
o2 = rx_data_l[n],
clk = "auto_eth_rx_clk", # FIXME.
)
# FIXME: Integrate in EfinixDDROutputImpl.
platform.toolchain.excluded_ios.append(pads.rx_data)

# RX Ctl IOs.
# -----------
Expand Down
6 changes: 0 additions & 6 deletions liteeth/phy/trionrgmii.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,6 @@ def __init__(self, platform, pads, ddr_tx_ctl=False):
o = pads.tx_data[n],
clk = "auto_eth_tx_clk", # FIXME.
)
# FIXME: Integrate in EfinixDDROutputImpl.
platform.toolchain.excluded_ios.append(pads.tx_data)

# TX Ctl IOs.
# -----------
Expand All @@ -52,8 +50,6 @@ def __init__(self, platform, pads, ddr_tx_ctl=False):
o = pads.tx_ctl,
clk = "auto_eth_tx_clk", # FIXME.
)
# FIXME: Integrate in EfinixDDROutputImpl.
platform.toolchain.excluded_ios.append(pads.tx_ctl)
else:
self.sync.eth_tx += pads.tx_ctl.eq(sink.valid)

Expand Down Expand Up @@ -90,8 +86,6 @@ def __init__(self, platform, pads):
o2 = rx_data_l[n],
clk = "auto_eth_rx_clk", # FIXME.
)
# FIXME: Integrate in EfinixDDROutputImpl.
platform.toolchain.excluded_ios.append(pads.rx_data)

# RX Ctl IOs.
# -----------
Expand Down

0 comments on commit 0f055b1

Please sign in to comment.