drivers/net/phy/realtek

Realtek RTL821x/RTL822x/RTL9000 Ethernet PHY transceivers

Realtek's family of standalone Ethernet PHY transceivers — the small chips that sit between a network controller and the RJ45 jack to handle signaling. It covers older 10/100 parts through the gigabit RTL8211 series and modern 2.5G/5G models like the RTL8221B, RTL8226, and RTL8251, widely used on motherboards, embedded boards, and networking gear shipping today.

keep conf=0.95 deploy=medium replacement=none subsystem=net category=networking-ethernet
95%

recommendation

It should stay in the kernel because it covers a wide and very current range of Realtek Ethernet PHY chips, from fast Ethernet up through 2.5G and 5G parts like the RTL8211F, RTL8221B, RTL8226, and RTL8251. The code is actively maintained with commits landing as recently as early 2026, the chips are still sold new through mainstream distributors in 2025, and there is no overlapping replacement driver that could absorb its role.

repository signals

5 files
2,537 source lines
47 commits, 5y
+3,039 / −482 lines added / removed, 5y
15 authors, 5y
monthly commits · 2021-04-21 → 2026-04-21 · 47 total · active in 11/61 months
2021 2022 2023 2024 2025 2026 2021-04: 0 commits · +0 −0 2021-05: 0 commits · +0 −0 2021-06: 0 commits · +0 −0 2021-07: 0 commits · +0 −0 2021-08: 0 commits · +0 −0 2021-09: 0 commits · +0 −0 2021-10: 0 commits · +0 −0 2021-11: 0 commits · +0 −0 2021-12: 0 commits · +0 −0 2022-01: 0 commits · +0 −0 2022-02: 0 commits · +0 −0 2022-03: 0 commits · +0 −0 2022-04: 0 commits · +0 −0 2022-05: 0 commits · +0 −0 2022-06: 0 commits · +0 −0 2022-07: 0 commits · +0 −0 2022-08: 0 commits · +0 −0 2022-09: 0 commits · +0 −0 2022-10: 0 commits · +0 −0 2022-11: 0 commits · +0 −0 2022-12: 0 commits · +0 −0 2023-01: 0 commits · +0 −0 2023-02: 0 commits · +0 −0 2023-03: 0 commits · +0 −0 2023-04: 0 commits · +0 −0 2023-05: 0 commits · +0 −0 2023-06: 0 commits · +0 −0 2023-07: 0 commits · +0 −0 2023-08: 0 commits · +0 −0 2023-09: 0 commits · +0 −0 2023-10: 0 commits · +0 −0 2023-11: 0 commits · +0 −0 2023-12: 0 commits · +0 −0 2024-01: 0 commits · +0 −0 2024-02: 0 commits · +0 −0 2024-03: 0 commits · +0 −0 2024-04: 0 commits · +0 −0 2024-05: 0 commits · +0 −0 2024-06: 0 commits · +0 −0 2024-07: 0 commits · +0 −0 2024-08: 0 commits · +0 −0 2024-09: 0 commits · +0 −0 2024-10: 0 commits · +0 −0 2024-11: 0 commits · +0 −0 2024-12: 0 commits · +0 −0 2025-01: 3 commits · +1,711 −0 2025-02: 6 commits · +75 −74 2025-03: 2 commits · +10 −8 2025-04: 1 commit · +69 −0 2025-05: 8 commits · +228 −84 2025-06: 1 commit · +8 −2 2025-07: 0 commits · +0 −0 2025-08: 4 commits · +213 −52 2025-09: 0 commits · +0 −0 2025-10: 3 commits · +206 −20 2025-11: 7 commits · +182 −81 2025-12: 1 commit · +0 −4 2026-01: 11 commits · +337 −157 2026-02: 0 commits · +0 −0 2026-03: 0 commits · +0 −0 2026-04: 0 commits · +0 −0

sources

  1. cateee.net

    LKDDb shows CONFIG_REALTEK_PHY is present in current kernels (6.14-6.19, 7.0) and describes support for RTL821x/RTL822x and fast Ethernet PHYs.

  2. lcsc.com

    Current distributor listing shows Realtek RTL8221B-VB-CG, a 2.5G PHY handled by this driver family, is sold new and in stock.

  3. alldatasheet.com

    Datasheet index identifies RTL8211F as a Realtek integrated 10/100/1000M Ethernet transceiver; this is one of the PHYs supported by the driver.

codex reasoning notes (technical)

Local `rg`/`sed` inspection of the directory shows this is a real PHY driver with `module_phy_driver()` and support for multiple live families from FE through 5GbE, including RTL8211F, RTL8221B, RTL8224, RTL8226, RTL8251, and RTL9000A. Local `git -c safe.directory=... log -- drivers/net/phy/realtek` shows sustained upstream work throughout 2024-2026, with the most recent substantive touch on 2026-01-18 and no removal/deprecation series found by local `git log --grep='remove|deprecat|obsolete'` beyond routine code cleanup. URL evidence was obtained via web search/open: LKDDb confirms current upstream presence, LCSC confirms at least one handled PHY is sold new, and the RTL8211F datasheet index corroborates the supported Realtek PHY product line. This is active, current hardware support with no natural replacement outside the same driver, so removal/deprecation is not indicated.