From 0edfd9b9011daee232a28925171dbe0aaeea313c Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Wed, 28 Feb 2018 14:11:58 +0100 Subject: [PATCH] boards/kcu105: regroup sfp tx and rx --- litex/boards/platforms/kcu105.py | 24 ++++++++++-------------- 1 file changed, 10 insertions(+), 14 deletions(-) diff --git a/litex/boards/platforms/kcu105.py b/litex/boards/platforms/kcu105.py index f83c87ea8..18439e27f 100644 --- a/litex/boards/platforms/kcu105.py +++ b/litex/boards/platforms/kcu105.py @@ -198,23 +198,19 @@ _io = [ Subsignal("n", Pins("P1")) ), - ("sfp_tx", 0, - Subsignal("p", Pins("U4")), - Subsignal("n", Pins("U3")) - ), - ("sfp_rx", 0, - Subsignal("p", Pins("T2")), - Subsignal("n", Pins("T1")) + ("sfp", 0, + Subsignal("txp", Pins("U4")), + Subsignal("txn", Pins("U3")), + Subsignal("rxp", Pins("T2")), + Subsignal("rxn", Pins("T1")) ), ("sfp_tx_disable_n", 0, Pins("AL8"), IOStandard("LVCMOS18")), - ("sfp_tx", 1, - Subsignal("p", Pins("W4")), - Subsignal("n", Pins("W3")) - ), - ("sfp_rx", 1, - Subsignal("p", Pins("V2")), - Subsignal("n", Pins("V1")) + ("sfp", 1, + Subsignal("txp", Pins("W4")), + Subsignal("txn", Pins("W3")), + Subsignal("rxp", Pins("V2")), + Subsignal("rxn", Pins("V1")) ), ("sfp_tx_disable_n", 1, Pins("D28"), IOStandard("LVCMOS18")), ]