Now that the upstream RealTek PHY driver is patched to support also the new 5G and 10G PHYs we can start to phase-out the messy downstream driver. Signed-off-by: Daniel Golle <daniel@makrotopia.org>
37 lines
1.2 KiB
Diff
37 lines
1.2 KiB
Diff
From c46ccb69d17e584479df849a107423175a143c83 Mon Sep 17 00:00:00 2001
|
|
From: Felix Fietkau <nbd@nbd.name>
|
|
Date: Sat, 24 Oct 2020 21:15:20 +0200
|
|
Subject: [PATCH] net: phy: add RTL8367S gigabit switch Kconfig/Makefile entry for MT7622
|
|
|
|
Add a CONFIG_RTL8367S_GSW Kconfig option and the corresponding
|
|
obj-$(CONFIG_RTL8367S_GSW) Makefile entry to allow building the
|
|
out-of-tree RTL8367S gigabit switch driver used on MT7622 boards.
|
|
|
|
Signed-off-by: Felix Fietkau <nbd@nbd.name>
|
|
---
|
|
--- a/drivers/net/phy/Kconfig
|
|
+++ b/drivers/net/phy/Kconfig
|
|
@@ -469,6 +469,12 @@ config ROCKCHIP_PHY
|
|
help
|
|
Currently supports the integrated Ethernet PHY.
|
|
|
|
+config RTL8367S_GSW
|
|
+ tristate "rtl8367 Gigabit Switch support for mt7622"
|
|
+ depends on NET_VENDOR_MEDIATEK
|
|
+ help
|
|
+ This driver supports rtl8367s in mt7622
|
|
+
|
|
config SMSC_PHY
|
|
tristate "SMSC PHYs"
|
|
select CRC16
|
|
--- a/drivers/net/phy/Makefile
|
|
+++ b/drivers/net/phy/Makefile
|
|
@@ -108,6 +108,7 @@ obj-$(CONFIG_QSEMI_PHY) += qsemi.o
|
|
obj-$(CONFIG_REALTEK_PHY) += realtek/
|
|
obj-$(CONFIG_RENESAS_PHY) += uPD60620.o
|
|
obj-$(CONFIG_ROCKCHIP_PHY) += rockchip.o
|
|
+obj-$(CONFIG_RTL8367S_GSW) += rtk/
|
|
obj-$(CONFIG_SMSC_PHY) += smsc.o
|
|
obj-$(CONFIG_STE10XP) += ste10Xp.o
|
|
obj-$(CONFIG_TERANETICS_PHY) += teranetics.o
|