developer | 5d148cb | 2023-06-02 13:08:11 +0800 | [diff] [blame] | 1 | From e18ad3270a1bdd776f5d7b13c4756efbd890825b Mon Sep 17 00:00:00 2001 |
| 2 | From: Sam Shih <sam.shih@mediatek.com> |
| 3 | Date: Fri, 2 Jun 2023 13:06:31 +0800 |
| 4 | Subject: [PATCH] [networking][999-2715-add-gpy211-phy-support.patch] |
| 5 | |
| 6 | --- |
| 7 | drivers/net/phy/Kconfig | 5 +++++ |
| 8 | drivers/net/phy/Makefile | 1 + |
| 9 | 2 files changed, 6 insertions(+) |
| 10 | |
| 11 | diff --git a/drivers/net/phy/Kconfig b/drivers/net/phy/Kconfig |
| 12 | index ec5c66d0a..3a3c12566 100644 |
| 13 | --- a/drivers/net/phy/Kconfig |
| 14 | +++ b/drivers/net/phy/Kconfig |
| 15 | @@ -473,6 +473,11 @@ config FIXED_PHY |
| 16 | |
| 17 | Currently tested with mpc866ads and mpc8349e-mitx. |
| 18 | |
| 19 | +config GPY211_PHY |
| 20 | + tristate "GPY211 PHY" |
| 21 | + ---help--- |
| 22 | + Supports the Intel GPY211 PHY with rate adaption. |
| 23 | + |
| 24 | config ICPLUS_PHY |
| 25 | tristate "ICPlus PHYs" |
| 26 | ---help--- |
| 27 | diff --git a/drivers/net/phy/Makefile b/drivers/net/phy/Makefile |
| 28 | index f4feb0e3d..1d368d1d5 100644 |
| 29 | --- a/drivers/net/phy/Makefile |
| 30 | +++ b/drivers/net/phy/Makefile |
| 31 | @@ -88,6 +88,7 @@ obj-$(CONFIG_DP83TC811_PHY) += dp83tc811.o |
| 32 | obj-$(CONFIG_DP83848_PHY) += dp83848.o |
| 33 | obj-$(CONFIG_DP83867_PHY) += dp83867.o |
| 34 | obj-$(CONFIG_FIXED_PHY) += fixed_phy.o |
| 35 | +obj-$(CONFIG_GPY211_PHY) += gpy211.o |
| 36 | obj-$(CONFIG_ICPLUS_PHY) += icplus.o |
| 37 | obj-$(CONFIG_INTEL_XWAY_PHY) += intel-xway.o |
| 38 | obj-$(CONFIG_LSI_ET1011C_PHY) += et1011c.o |
| 39 | -- |
| 40 | 2.34.1 |
| 41 | |