diff options
author | Tim Harvey <tharvey@gateworks.com> | 2024-06-19 14:13:39 -0700 |
---|---|---|
committer | Fabio Estevam <festevam@gmail.com> | 2024-06-24 09:19:26 -0300 |
commit | 1afac8bd305033c9caf3118bb376ce04bacd6767 (patch) | |
tree | 5bad15dc4a0c80a05cb2a355ee3078efa4aa9177 | |
parent | 87a4e5b3a41f5b13dd86c8661ee92f58098c10ac (diff) |
board: gateworks: venice: add print for GPY111 PHY name
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>
-rw-r--r-- | board/gateworks/venice/venice.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/board/gateworks/venice/venice.c b/board/gateworks/venice/venice.c index 5b105d7659e..3080ff20cb0 100644 --- a/board/gateworks/venice/venice.c +++ b/board/gateworks/venice/venice.c @@ -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) |