From 0354f6baaea4638975c7f7e0404bed1a92987e4b Mon Sep 17 00:00:00 2001 From: =?utf8?q?Pawe=C5=82=20Owoc?= Date: Wed, 13 Mar 2024 13:01:01 +0100 Subject: [PATCH] qca-ssdk: add patch to support AQR114C-B0 PHY MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Add support for AQR114C-B0 PHY. Signed-off-by: Paweł Owoc Link: https://github.com/openwrt/openwrt/pull/14883 Signed-off-by: Robert Marko --- ...l_phy-add-support-for-AQR114C-B0-PHY.patch | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 package/kernel/qca-ssdk/patches/103-hsl_phy-add-support-for-AQR114C-B0-PHY.patch diff --git a/package/kernel/qca-ssdk/patches/103-hsl_phy-add-support-for-AQR114C-B0-PHY.patch b/package/kernel/qca-ssdk/patches/103-hsl_phy-add-support-for-AQR114C-B0-PHY.patch new file mode 100644 index 0000000000..d93cf0978c --- /dev/null +++ b/package/kernel/qca-ssdk/patches/103-hsl_phy-add-support-for-AQR114C-B0-PHY.patch @@ -0,0 +1,33 @@ +From ab3b663842f66d0ed290696cee9edb9070a36e8f Mon Sep 17 00:00:00 2001 +From: Paweł Owoc +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 +--- + 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; -- 2.30.2