|
|
@@ -0,0 +1,33 @@
|
|
|
+From ab3b663842f66d0ed290696cee9edb9070a36e8f Mon Sep 17 00:00:00 2001
|
|
|
+From: Paweł Owoc <[email protected]>
|
|
|
+Date: Wed, 7 May 2024 10:37:44 +0100
|
|
|
+Subject: [PATCH] hsl_phy: add support for AQR114C-B0 PHY
|
|
|
+
|
|
|
+Add support for AQR114C-B0 PHY.
|
|
|
+
|
|
|
+Signed-off-by: Paweł Owoc <[email protected]>
|
|
|
+---
|
|
|
+ include/hsl/phy/hsl_phy.h | 1 +
|
|
|
+ src/hsl/phy/hsl_phy.c | 1 +
|
|
|
+ 2 files changed, 2 insertions(+)
|
|
|
+
|
|
|
+--- a/include/hsl/phy/hsl_phy.h
|
|
|
++++ b/include/hsl/phy/hsl_phy.h
|
|
|
+@@ -612,6 +612,7 @@ typedef struct {
|
|
|
+ #define AQUANTIA_PHY_113C_B0 0x31c31C12
|
|
|
+ #define AQUANTIA_PHY_113C_B1 0x31c31C13
|
|
|
+ #define AQUANTIA_PHY_112C 0x03a1b792
|
|
|
++#define AQUANTIA_PHY_114C_B0 0x31c31c22
|
|
|
+ #define MVL_PHY_X3410 0x31c31DD3
|
|
|
+
|
|
|
+ #define PHY_805XV2 0x004DD082
|
|
|
+--- a/src/hsl/phy/hsl_phy.c
|
|
|
++++ b/src/hsl/phy/hsl_phy.c
|
|
|
+@@ -271,6 +271,7 @@ phy_type_t hsl_phytype_get_by_phyid(a_uint32_t dev_id, a_uint32_t phy_id)
|
|
|
+ case AQUANTIA_PHY_113C_B0:
|
|
|
+ case AQUANTIA_PHY_113C_B1:
|
|
|
+ case AQUANTIA_PHY_112C:
|
|
|
++ case AQUANTIA_PHY_114C_B0:
|
|
|
+ case MVL_PHY_X3410:
|
|
|
+ phytype = AQUANTIA_PHY_CHIP;
|
|
|
+ break;
|