Message ID | 20240517102908.12079-1-SkyLake.Huang@mediatek.com (mailing list archive) |
---|---|
Headers | show |
Series | net: phy: mediatek: Introduce mtk-phy-lib and add 2.5Gphy support | expand |
On Fri, 17 May 2024 18:29:03 +0800 Sky Huang wrote: > From: "SkyLake.Huang" <skylake.huang@mediatek.com> > > Re-organize MTK ethernet phy drivers and integrate common manipulations > into mtk-phy-lib. Also, add support for build-in 2.5Gphy on MT7988. ## Form letter - net-next-closed The merge window for v6.10 has begun and we have already posted our pull request. Therefore net-next is closed for new drivers, features, code refactoring and optimizations. We are currently accepting bug fixes only. Please repost when net-next reopens after May 26th. RFC patches sent for review only are obviously welcome at any time. See: https://www.kernel.org/doc/html/next/process/maintainer-netdev.html#development-cycle
On Fri, 2024-05-17 at 12:10 -0700, Jakub Kicinski wrote: > > External email : Please do not click links or open attachments until > you have verified the sender or the content. > On Fri, 17 May 2024 18:29:03 +0800 Sky Huang wrote: > > From: "SkyLake.Huang" <skylake.huang@mediatek.com> > > > > Re-organize MTK ethernet phy drivers and integrate common > manipulations > > into mtk-phy-lib. Also, add support for build-in 2.5Gphy on MT7988. > > ## Form letter - net-next-closed > > The merge window for v6.10 has begun and we have already posted our > pull > request. Therefore net-next is closed for new drivers, features, code > refactoring and optimizations. We are currently accepting bug fixes > only. > > Please repost when net-next reopens after May 26th. > > RFC patches sent for review only are obviously welcome at any time. > > See: > https://www.kernel.org/doc/html/next/process/maintainer-netdev.html#development-cycle > -- > pw-bot: defer > OK. I sent v3 for reviewing first. If v3 patch is fine, I'll send v4 after May 26th. Sky
From: "SkyLake.Huang" <skylake.huang@mediatek.com> Re-organize MTK ethernet phy drivers and integrate common manipulations into mtk-phy-lib. Also, add support for build-in 2.5Gphy on MT7988. v2: - Apply correct PATCH tag - Break LED/Token ring/Extend-link-pulse-time features into 3 patches. - Fix contents according to v1 comments SkyLake.Huang (5): net: phy: mediatek: Re-organize MediaTek ethernet phy drivers net: phy: mediatek: Move LED and read/write page helper functions into mtk phy lib net: phy: mediatek: Add token ring access helper functions in mtk-phy-lib net: phy: mediatek: Extend 1G TX/RX link pulse time net: phy: add driver for built-in 2.5G ethernet PHY on MT7988 MAINTAINERS | 7 +- drivers/net/phy/Kconfig | 17 +- drivers/net/phy/Makefile | 3 +- drivers/net/phy/mediatek-ge.c | 111 ---- drivers/net/phy/mediatek/Kconfig | 38 ++ drivers/net/phy/mediatek/Makefile | 5 + drivers/net/phy/mediatek/mtk-2p5ge.c | 400 +++++++++++++ .../mtk-ge-soc.c} | 528 ++++++------------ drivers/net/phy/mediatek/mtk-ge.c | 244 ++++++++ drivers/net/phy/mediatek/mtk-phy-lib.c | 408 ++++++++++++++ drivers/net/phy/mediatek/mtk.h | 108 ++++ 11 files changed, 1391 insertions(+), 478 deletions(-) delete mode 100644 drivers/net/phy/mediatek-ge.c create mode 100644 drivers/net/phy/mediatek/Kconfig create mode 100644 drivers/net/phy/mediatek/Makefile create mode 100644 drivers/net/phy/mediatek/mtk-2p5ge.c rename drivers/net/phy/{mediatek-ge-soc.c => mediatek/mtk-ge-soc.c} (77%) create mode 100644 drivers/net/phy/mediatek/mtk-ge.c create mode 100644 drivers/net/phy/mediatek/mtk-phy-lib.c create mode 100644 drivers/net/phy/mediatek/mtk.h