]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
board: gateworks: venice: add print for GPY111 PHY name
authorTim Harvey <tharvey@gateworks.com>
Wed, 19 Jun 2024 21:13:39 +0000 (14:13 -0700)
committerFabio Estevam <festevam@gmail.com>
Mon, 24 Jun 2024 12:19:26 +0000 (09:19 -0300)
Due to supply chain issues Venice boards use either a DP83867 or a
GPY111 RGMII PHY. We already print an identifier for the DP83867 so add
one for the GPY111 to better identify what PHY is on a board:

Example:
 Net:   GPY111 eth0: ethernet@30be0000 [PRIME]
 Net:   DP83867 eth0: ethernet@30be0000 [PRIME]

Signed-off-by: Tim Harvey <tharvey@gateworks.com>
board/gateworks/venice/venice.c

index 5b105d7659e402e5705a3c94423c7d892f465101..3080ff20cb02a7c4680357d5df5da0a174cd6731 100644 (file)
@@ -75,6 +75,9 @@ int board_phy_config(struct phy_device *phydev)
                val |= 0xb << 8; /* LED2(Green;Link/Act): blink for TX/RX act */
                phy_write(phydev, MDIO_DEVAD_NONE, 24, val);
                break;
+       case 0xd565a401: /* MaxLinear GPY111 */
+               puts("GPY111 ");
+               break;
        }
 
        if (phydev->drv->config)