drivers/net/ethernet/davicom

Davicom DM9000 and DM9051 10/100 Mbps Ethernet controllers

Two small Davicom Fast Ethernet chips popular in embedded boards: the DM9000, a parallel-bus 10/100 MAC/PHY commonly wired to ARM SoCs and older ISA-style designs since the late 2000s, and the newer DM9051, an SPI-attached MAC/PHY widely used with microcontrollers such as Espressif's ESP32 to add wired Ethernet to IoT and industrial devices.

keep-annotate conf=0.86 deploy=low replacement=none subsystem=net category=networking-ethernet
86%

recommendation

Worth keeping but documenting its niche, because both chips are still actively maintained in the kernel (a use-after-free fix landed for DM9000 in March 2025 and a module-autoloading fix for DM9051 in August 2024) and the DM9051 in particular is still being sold new and promoted by Espressif as a current Ethernet option for embedded projects. The DM9000 side is clearly legacy — its datasheet dates back to 2009 — but it remains in use on older embedded boards, so the directory deserves a note clarifying which part is current and which is legacy rather than any removal action.

repository signals

6 files
3,412 source lines
22 commits, 5y
+1,500 / −45 lines added / removed, 5y
21 authors, 5y
monthly commits · 2021-04-21 → 2026-04-21 · 22 total · active in 14/61 months
2021 2022 2023 2024 2025 2026 2021-04: 1 commit · +0 −1 2021-05: 0 commits · +0 −0 2021-06: 0 commits · +0 −0 2021-07: 1 commit · +1 −1 2021-08: 0 commits · +0 −0 2021-09: 0 commits · +0 −0 2021-10: 2 commits · +6 −3 2021-11: 0 commits · +0 −0 2021-12: 0 commits · +0 −0 2022-01: 0 commits · +0 −0 2022-02: 5 commits · +1,461 −7 2022-03: 1 commit · +1 −1 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: 1 commit · +2 −2 2022-09: 2 commits · +15 −13 2022-10: 0 commits · +0 −0 2022-11: 1 commit · +3 −1 2022-12: 0 commits · +0 −0 2023-01: 0 commits · +0 −0 2023-02: 0 commits · +0 −0 2023-03: 2 commits · +3 −3 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: 2 commits · +2 −7 2023-09: 1 commit · +2 −4 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: 1 commit · +1 −0 2024-09: 0 commits · +0 −0 2024-10: 1 commit · +1 −1 2024-11: 0 commits · +0 −0 2024-12: 0 commits · +0 −0 2025-01: 1 commit · +2 −1 2025-02: 0 commits · +0 −0 2025-03: 0 commits · +0 −0 2025-04: 0 commits · +0 −0 2025-05: 0 commits · +0 −0 2025-06: 0 commits · +0 −0 2025-07: 0 commits · +0 −0 2025-08: 0 commits · +0 −0 2025-09: 0 commits · +0 −0 2025-10: 0 commits · +0 −0 2025-11: 0 commits · +0 −0 2025-12: 0 commits · +0 −0 2026-01: 0 commits · +0 −0 2026-02: 0 commits · +0 −0 2026-03: 0 commits · +0 −0 2026-04: 0 commits · +0 −0

sources

  1. lore.kernel.org

    `dm9000.c` received a real bug fix in March 2025 (`fix UAF in dm9000_drv_remove`), indicating ongoing upstream maintenance rather than abandonment.

  2. lore.kernel.org

    `dm9051.c` received a targeted functional fix in August 2024 (`fix module autoloading`), showing current upstream attention.

  3. dacomwest.de

    DM9051 was still being marketed as a current SPI-to-Ethernet controller product page when crawled in 2026, supporting that the hardware remained sold new in/after 2025.

  4. components.espressif.com

    Espressif published a current DM9051 component package in 2026, which is strong evidence of present embedded deployments and ecosystem relevance.

  5. alldatasheet.com

    DM9000 documentation describes an older general-processor/ISA-style Fast Ethernet controller from a 2009 datasheet, consistent with legacy rather than new-design usage.

  6. cateee.net

    LKDDb shows DM9051 support present in current kernel series through HEAD, confirming it is an actively carried in-tree driver.

codex reasoning notes (technical)

Not a removal candidate. Local source inspection (`rg`/`sed`) showed two live drivers: `dm9000` and `dm9051`. Lore evidence came from `lore_file_timeline` on each .c file: dm9000 had a March 2025 UAF fix and dm9051 had a 2024 autoloading fix, with no confirmed removal/deprecation thread. Web search provided product/deployment evidence: Dacom West still lists DM9051 as a current product, Espressif ships a fresh DM9051 component in 2026, while DM9000 looks legacy from its older datasheet. Overall this directory covers niche embedded/industrial hardware that is still extant but not broadly deployed, so keep the driver and annotate its niche/legacy status rather than deprecate or remove.