Import pending series introducing support for standalone PCS drivers. This has previously already been used by the airoha target, and is also the base for the closer-to-upstream patches for MediaTek MT7988 10G SerDes support. In order to not having to diverge from upstream also backport series for standardized handling for PHY and PCS SerDes pair polarity. Signed-off-by: Daniel Golle <daniel@makrotopia.org>
29 lines
856 B
Diff
29 lines
856 B
Diff
From: John Crispin <john@phrozen.org>
|
|
Date: Tue, 29 Oct 2024 13:37:40 +0100
|
|
Subject: [PATCH] net: add support for Realtek RTL8261n 10G PHYs
|
|
|
|
There is no upstream driver yet. Merge the RTL SDK driver for now.
|
|
|
|
Signed-off-by: John Crispin <john@phrozen.org>
|
|
--- a/drivers/net/phy/Kconfig
|
|
+++ b/drivers/net/phy/Kconfig
|
|
@@ -459,6 +459,8 @@ config QSEMI_PHY
|
|
|
|
source "drivers/net/phy/realtek/Kconfig"
|
|
|
|
+source "drivers/net/phy/rtl8261n/Kconfig"
|
|
+
|
|
config RENESAS_PHY
|
|
tristate "Renesas PHYs"
|
|
help
|
|
--- a/drivers/net/phy/Makefile
|
|
+++ b/drivers/net/phy/Makefile
|
|
@@ -106,6 +106,7 @@ obj-$(CONFIG_NXP_TJA11XX_PHY) += nxp-tja
|
|
obj-y += qcom/
|
|
obj-$(CONFIG_QSEMI_PHY) += qsemi.o
|
|
obj-$(CONFIG_REALTEK_PHY) += realtek/
|
|
+obj-y += rtl8261n/
|
|
obj-$(CONFIG_RENESAS_PHY) += uPD60620.o
|
|
obj-$(CONFIG_ROCKCHIP_PHY) += rockchip.o
|
|
obj-$(CONFIG_SMSC_PHY) += smsc.o
|