From 48b1f8a396bfe1b29d2033f3d23861a3f470de58 Mon Sep 17 00:00:00 2001 From: Romain Gantois Date: Thu, 26 Jun 2025 18:20:25 +0200 Subject: board: ti: am33xx: Add Ethernet support for Beaglebone Green Eco Currently, the Ethernet interface of the BBGE board isn't properly supported. To support this interface, describe the MAC<->PHY RGMII link and the DP83867 PHY in the BBGE device tree. Enable the DP83867 PHY driver in U-Boot Proper and mux the relevant RGMII lines. Signed-off-by: Romain Gantois Tested-by: Judith Mendez --- board/ti/am335x/mux.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'board') diff --git a/board/ti/am335x/mux.c b/board/ti/am335x/mux.c index 960de15398f..4daa59697b1 100644 --- a/board/ti/am335x/mux.c +++ b/board/ti/am335x/mux.c @@ -408,6 +408,9 @@ void enable_board_pin_mux(void) if (subtype_id == 'L') configure_module_pin_mux(spi0_pin_mux); + } else if (board_is_bbge()) { + /* Beaglebone Green Eco pinmux */ + configure_module_pin_mux(rgmii1_pin_mux); } else { /* Beaglebone LT pinmux */ configure_module_pin_mux(mii1_pin_mux); -- cgit v1.3.1