phy/efinix: IO exclusion on DDROutput/Input now directly done in LiteX.
This commit is contained in:
parent
8436d775f6
commit
0f055b1c0f
|
@ -38,8 +38,6 @@ class LiteEthPHYRGMIITX(LiteXModule):
|
||||||
o = pads.tx_data[n],
|
o = pads.tx_data[n],
|
||||||
clk = "auto_eth_tx_clk", # FIXME.
|
clk = "auto_eth_tx_clk", # FIXME.
|
||||||
)
|
)
|
||||||
# FIXME: Integrate in EfinixDDROutputImpl.
|
|
||||||
platform.toolchain.excluded_ios.append(pads.tx_data)
|
|
||||||
|
|
||||||
# TX Ctl IOs.
|
# TX Ctl IOs.
|
||||||
# -----------
|
# -----------
|
||||||
|
@ -52,8 +50,6 @@ class LiteEthPHYRGMIITX(LiteXModule):
|
||||||
o = pads.tx_ctl,
|
o = pads.tx_ctl,
|
||||||
clk = "auto_eth_tx_clk", # FIXME.
|
clk = "auto_eth_tx_clk", # FIXME.
|
||||||
)
|
)
|
||||||
# FIXME: Integrate in EfinixDDROutputImpl.
|
|
||||||
platform.toolchain.excluded_ios.append(pads.tx_ctl)
|
|
||||||
else:
|
else:
|
||||||
self.sync.eth_tx += pads.tx_ctl.eq(sink.valid)
|
self.sync.eth_tx += pads.tx_ctl.eq(sink.valid)
|
||||||
|
|
||||||
|
@ -90,8 +86,6 @@ class LiteEthPHYRGMIIRX(LiteXModule):
|
||||||
o2 = rx_data_l[n],
|
o2 = rx_data_l[n],
|
||||||
clk = "auto_eth_rx_clk", # FIXME.
|
clk = "auto_eth_rx_clk", # FIXME.
|
||||||
)
|
)
|
||||||
# FIXME: Integrate in EfinixDDROutputImpl.
|
|
||||||
platform.toolchain.excluded_ios.append(pads.rx_data)
|
|
||||||
|
|
||||||
# RX Ctl IOs.
|
# RX Ctl IOs.
|
||||||
# -----------
|
# -----------
|
||||||
|
|
|
@ -38,8 +38,6 @@ class LiteEthPHYRGMIITX(LiteXModule):
|
||||||
o = pads.tx_data[n],
|
o = pads.tx_data[n],
|
||||||
clk = "auto_eth_tx_clk", # FIXME.
|
clk = "auto_eth_tx_clk", # FIXME.
|
||||||
)
|
)
|
||||||
# FIXME: Integrate in EfinixDDROutputImpl.
|
|
||||||
platform.toolchain.excluded_ios.append(pads.tx_data)
|
|
||||||
|
|
||||||
# TX Ctl IOs.
|
# TX Ctl IOs.
|
||||||
# -----------
|
# -----------
|
||||||
|
@ -52,8 +50,6 @@ class LiteEthPHYRGMIITX(LiteXModule):
|
||||||
o = pads.tx_ctl,
|
o = pads.tx_ctl,
|
||||||
clk = "auto_eth_tx_clk", # FIXME.
|
clk = "auto_eth_tx_clk", # FIXME.
|
||||||
)
|
)
|
||||||
# FIXME: Integrate in EfinixDDROutputImpl.
|
|
||||||
platform.toolchain.excluded_ios.append(pads.tx_ctl)
|
|
||||||
else:
|
else:
|
||||||
self.sync.eth_tx += pads.tx_ctl.eq(sink.valid)
|
self.sync.eth_tx += pads.tx_ctl.eq(sink.valid)
|
||||||
|
|
||||||
|
@ -90,8 +86,6 @@ class LiteEthPHYRGMIIRX(LiteXModule):
|
||||||
o2 = rx_data_l[n],
|
o2 = rx_data_l[n],
|
||||||
clk = "auto_eth_rx_clk", # FIXME.
|
clk = "auto_eth_rx_clk", # FIXME.
|
||||||
)
|
)
|
||||||
# FIXME: Integrate in EfinixDDROutputImpl.
|
|
||||||
platform.toolchain.excluded_ios.append(pads.rx_data)
|
|
||||||
|
|
||||||
# RX Ctl IOs.
|
# RX Ctl IOs.
|
||||||
# -----------
|
# -----------
|
||||||
|
|
Loading…
Reference in New Issue