mirror of
git://git.openwrt.org/openwrt/openwrt.git
synced 2025-02-16 20:07:23 +00:00
qca-ssdk: add patch to support AQR114C-B0 PHY
Add support for AQR114C-B0 PHY. Signed-off-by: Paweł Owoc <frut3k7@gmail.com> Link: https://github.com/openwrt/openwrt/pull/14883 Signed-off-by: Robert Marko <robimarko@gmail.com>
This commit is contained in:
parent
a7c068b935
commit
0354f6baae
@ -0,0 +1,33 @@
|
|||||||
|
From ab3b663842f66d0ed290696cee9edb9070a36e8f Mon Sep 17 00:00:00 2001
|
||||||
|
From: Paweł Owoc <frut3k7@gmail.com>
|
||||||
|
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 <frut3k7@gmail.com>
|
||||||
|
---
|
||||||
|
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;
|
Loading…
Reference in New Issue
Block a user