From c19ae9f8ae162ffe2d310a92bfce53ac2a821bc8 Mon Sep 17 00:00:00 2001 From: newell Date: Sun, 29 Sep 2024 23:18:11 -0700 Subject: [PATCH] platforms/Ebaz4205: update --- migen/build/platforms/ebaz4205.py | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/migen/build/platforms/ebaz4205.py b/migen/build/platforms/ebaz4205.py index f2ee9600..c0f65aa3 100644 --- a/migen/build/platforms/ebaz4205.py +++ b/migen/build/platforms/ebaz4205.py @@ -44,21 +44,21 @@ ), # ETH PHY ( - "eth_clocks", + "gmii", 0, - Subsignal("rxclk", Pins("U14")), - Subsignal("txclk", Pins("U15")), + Subsignal("rxd", Pins("Y16 V16 V17 Y17")), + Subsignal("txd", Pins("W18 Y18 V18 Y19")), + Subsignal("rx_clk", Pins("U14")), + Subsignal("tx_clk", Pins("U15")), + Subsignal("rx_dv", Pins("W16")), + Subsignal("tx_en", Pins("W19")), IOStandard("LVCMOS33"), ), ( - "eth", + "mdio", 0, - Subsignal("rx_dv", Pins("W16")), - Subsignal("rx_data", Pins("Y16 V16 V17 Y17")), - Subsignal("tx_en", Pins("W19")), - Subsignal("tx_data", Pins("W18 Y18 V18 Y19")), - Subsignal("mdc", Pins("W15")), Subsignal("mdio", Pins("Y14")), + Subsignal("mdc", Pins("W15")), IOStandard("LVCMOS33"), ), ]