aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/generic/hack-5.4/703-add_vsc8504_support.patch
diff options
context:
space:
mode:
authorDaniel Golle <daniel@makrotopia.org>2022-03-21 01:16:48 +0000
committerDaniel Golle <daniel@makrotopia.org>2022-03-21 13:11:56 +0000
commit786bf7fdaca4c75e7eba6e9aa3a8b5775fd21186 (patch)
tree926fecb2b1f6ce1e42ba7ef4c7aab8e68dfd214c /target/linux/generic/hack-5.4/703-add_vsc8504_support.patch
parent9470160c350d15f765c33d6c1db15d6c4709a64c (diff)
downloadupstream-786bf7fdaca4c75e7eba6e9aa3a8b5775fd21186.tar.gz
upstream-786bf7fdaca4c75e7eba6e9aa3a8b5775fd21186.tar.bz2
upstream-786bf7fdaca4c75e7eba6e9aa3a8b5775fd21186.zip
kernel: delete Linux 5.4 config and patches
As the upcoming release will be based on Linux 5.10 only, remove all kernel configuration as well as patches for Linux 5.4. There were no targets still actively using Linux 5.4. Signed-off-by: Daniel Golle <daniel@makrotopia.org> (cherry picked from commit 3a14580411adfb75f9a44eded9f41245b9e44606)
Diffstat (limited to 'target/linux/generic/hack-5.4/703-add_vsc8504_support.patch')
-rw-r--r--target/linux/generic/hack-5.4/703-add_vsc8504_support.patch57
1 files changed, 0 insertions, 57 deletions
diff --git a/target/linux/generic/hack-5.4/703-add_vsc8504_support.patch b/target/linux/generic/hack-5.4/703-add_vsc8504_support.patch
deleted file mode 100644
index afb6ca6cf3..0000000000
--- a/target/linux/generic/hack-5.4/703-add_vsc8504_support.patch
+++ /dev/null
@@ -1,57 +0,0 @@
-From: Roman Kuzmitskii <damex.pp@icloud.com>
-Date: Thu, 05 Nov 2020 02:00:00 +0000
-Subject: [PATCH] net: phy: vitesse: add vsc8504 support
-
-This patch adds support for vsc8504 phy.
-That phy is changed owner:
- vitesse -> microsemi -> microchip
-So is its driver in kernel was changed and rewritten.
-
-there is no need to upstream this patch.
-this vsc8504 is supported by newer kernels out of box.
-support could be enabled by CONFIG_MICROSEMI_PHY.
-
-Tested-by: Johannes Kimmel <fff@bareminimum.eu>
-Signed-off-by: Roman Kuzmitskii <damex.pp@icloud.com>
---- a/drivers/net/phy/vitesse.c
-+++ b/drivers/net/phy/vitesse.c
-@@ -61,6 +61,7 @@
-
- #define PHY_ID_VSC8234 0x000fc620
- #define PHY_ID_VSC8244 0x000fc6c0
-+#define PHY_ID_VSC8504 0x000704c2
- #define PHY_ID_VSC8572 0x000704d0
- #define PHY_ID_VSC8601 0x00070420
- #define PHY_ID_VSC7385 0x00070450
-@@ -292,6 +293,7 @@ static int vsc82xx_config_intr(struct ph
- err = phy_write(phydev, MII_VSC8244_IMASK,
- (phydev->drv->phy_id == PHY_ID_VSC8234 ||
- phydev->drv->phy_id == PHY_ID_VSC8244 ||
-+ phydev->drv->phy_id == PHY_ID_VSC8504 ||
- phydev->drv->phy_id == PHY_ID_VSC8572 ||
- phydev->drv->phy_id == PHY_ID_VSC8601) ?
- MII_VSC8244_IMASK_MASK :
-@@ -402,6 +404,15 @@ static struct phy_driver vsc82xx_driver[
- .ack_interrupt = &vsc824x_ack_interrupt,
- .config_intr = &vsc82xx_config_intr,
- }, {
-+ .phy_id = PHY_ID_VSC8504,
-+ .name = "Vitesse VSC8504",
-+ .phy_id_mask = 0x000ffff0,
-+ /* PHY_GBIT_FEATURES */
-+ .config_init = &vsc824x_config_init,
-+ .config_aneg = &vsc82x4_config_aneg,
-+ .ack_interrupt = &vsc824x_ack_interrupt,
-+ .config_intr = &vsc82xx_config_intr,
-+}, {
- .phy_id = PHY_ID_VSC8572,
- .name = "Vitesse VSC8572",
- .phy_id_mask = 0x000ffff0,
-@@ -488,6 +499,7 @@ module_phy_driver(vsc82xx_driver);
- static struct mdio_device_id __maybe_unused vitesse_tbl[] = {
- { PHY_ID_VSC8234, 0x000ffff0 },
- { PHY_ID_VSC8244, 0x000fffc0 },
-+ { PHY_ID_VSC8504, 0x000ffff0 },
- { PHY_ID_VSC8572, 0x000ffff0 },
- { PHY_ID_VSC7385, 0x000ffff0 },
- { PHY_ID_VSC7388, 0x000ffff0 },