blob: 9d028992a7298bed00a67d36566f03e26f8ca145 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
From e3763fd77e41b2f2495672c6a5898d69892fbf9f Mon Sep 17 00:00:00 2001
From: Christian Marangi <ansuelsmth@gmail.com>
Date: Wed, 15 Nov 2023 00:57:41 +0100
Subject: [PATCH] hsl_phy: add support for detection PSGMII PHY mode
Add support for detection of PSGMII PHY mode to correctly detect qca807x
PHY upstream driver.
Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
---
src/hsl/phy/hsl_phy.c | 3 +++
1 file changed, 3 insertions(+)
--- a/src/hsl/phy/hsl_phy.c
+++ b/src/hsl/phy/hsl_phy.c
@@ -1322,6 +1322,9 @@ hsl_port_phydev_interface_mode_status_ge
case PHY_INTERFACE_MODE_10GKR:
*interface_mode_status = PORT_10GBASE_R;
break;
+ case PHY_INTERFACE_MODE_PSGMII:
+ *interface_mode_status = PHY_PSGMII_BASET;
+ break;
case PHY_INTERFACE_MODE_QSGMII:
*interface_mode_status = PORT_QSGMII;
break;
|