PHYLIB core and multi-vendor Ethernet PHY transceiver drivers
Drivers for the Ethernet PHY transceivers that sit between a network controller and the physical wire — covering Gigabit copper, 10G, and newer Single Pair Ethernet parts from TI, Microchip, Marvell, Realtek, Broadcom and others, plus the shared PHYLIB framework. These chips are present in nearly every wired Ethernet device, from servers and routers to industrial and automotive gear.
recommendation
It should stay in the kernel because this is a core networking subsystem under continuous active development, with feature work and stable backports landing in 2025-2026 for mainstream parts like the TI DP83867 and Microchip LAN867x. The hardware is still manufactured and sold new today, and neglecting it would break wired networking on a huge swath of current Linux systems.
repository signals
sources
- docs.kernel.org
Kernel documentation describes this as the PHY Abstraction Layer used for Ethernet PHY management, indicating a core subsystem rather than a legacy one-off driver.
- lore.kernel.org
Recent netdev patch traffic for `drivers/net/phy/dp83867.c` in 2026 shows ongoing upstream feature/behavior work on mainstream TI Gigabit PHY support.
- lore.kernel.org
Recent netdev patch traffic for `drivers/net/phy/microchip_t1s.c` in 2026 adds suspend/WOL support for LAN867x Rev.D0, showing active enablement for current Single Pair Ethernet PHY products.
- lore.kernel.org
A 2026 stable backport for `drivers/net/phy/adin1100.c` shows bug-fix traffic reaching maintained stable trees, consistent with real deployments.
- ti.com
TI still lists the DP83867IR Ethernet PHY as a current product, supporting that hardware covered by this directory remains sold new.
- microchip.com
Microchip lists LAN8670 as 'In Production', showing current-market Ethernet PHY silicon covered by this subsystem.
codex reasoning notes (technical)
Local `rg` inspection of `drivers/net/phy/Makefile` and `Kconfig` showed a large active multi-vendor PHYLIB subsystem with many enabled PHY drivers, not a single obsolete chipset. Lore evidence was obtained with `lore_activity` on representative files (`dp83867.c`, `microchip_t1s.c`, `adin1100.c`), which returned 2025-2026 netdev/stable traffic and stable backports. Deployment/sales evidence was obtained by web search, which returned the kernel PHY docs plus current TI and Microchip product pages. A follow-up lore-focused web search did not surface removal/deprecation threads; given the heavy recent maintenance and current products, this should be kept.