drivers/eisa

EISA bus support (Extended Industry Standard Architecture)

Core support for EISA, a 32-bit expansion bus that competed with IBM's MCA in late-1980s and early-1990s servers and workstations before PCI displaced it around 1995. The code handles bus enumeration and PCI-to-EISA bridges so that EISA network cards, SCSI controllers, and similar add-in boards still work on legacy systems, including some PA-RISC machines that Linux continues to support.

keep-annotate conf=0.82 last_sold=1995 deploy=low replacement=none subsystem=eisa category=bus-other
82%

recommendation

Worth keeping but flagging as legacy because the bus itself hasn't shipped in new hardware since the mid-1990s, yet the subsystem is still receiving genuine maintenance fixes as recently as April 2025 and is depended on by other in-tree code such as PA-RISC platform support and a handful of older SCSI drivers. Removing it would break those still-supported legacy configurations, so the right move is to document its obsolete status rather than deprecate the code.

repository signals

6 files
615 source lines
11 commits, 5y
+33 / −41 lines added / removed, 5y
8 authors, 5y
monthly commits · 2021-04-21 → 2026-04-21 · 11 total · active in 9/61 months
2021 2022 2023 2024 2025 2026 2021-04: 0 commits · +0 −0 2021-05: 0 commits · +0 −0 2021-06: 1 commit · +9 −14 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: 1 commit · +2 −2 2023-02: 0 commits · +0 −0 2023-03: 1 commit · +2 −2 2023-04: 0 commits · +0 −0 2023-05: 0 commits · +0 −0 2023-06: 0 commits · +0 −0 2023-07: 1 commit · +1 −1 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: 1 commit · +5 −6 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: 1 commit · +2 −2 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: 0 commits · +0 −0 2025-02: 0 commits · +0 −0 2025-03: 0 commits · +0 −0 2025-04: 2 commits · +7 −9 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: 1 commit · +1 −1 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: 2 commits · +4 −4 2026-03: 0 commits · +0 −0 2026-04: 0 commits · +0 −0

sources

  1. spinics.net

    April 2025 patch traffic shows the subsystem still receives upstream fixes, here for string-size/build correctness in EISA code.

  2. spinics.net

    April 2025 follow-up patch fixes an EISA build failure, indicating current maintenance rather than abandonment or removal.

  3. cateee.net

    LKDDb shows CONFIG_EISA is still present in current kernel series and describes EISA as a legacy bus whose main use window was 1988-1995.

  4. cateee.net

    LKDDb shows drivers/eisa also covers generic PCI-to-EISA bridge support, confirming this directory is active bus support code rather than dead documentation or tables.

  5. en.wikipedia.org

    EISA is a historical expansion bus superseded by PCI, supporting the conclusion that new-hardware deployment is effectively gone.

codex reasoning notes (technical)

Not an early-exit case: local shell inspection showed real kernel bus-support code in drivers/eisa/*.c, including bus registration and initcalls. Local shell `git log` showed substantive touches in 2023-2025, and local grep showed current in-tree dependencies from legacy arches and drivers (for example parisc and EISA-dependent SCSI drivers), so this is still live compatibility infrastructure. Source acquisition: the two spinics URLs were obtained by web search for recent EISA patch subjects after lore-specific search/tooling was unavailable here; the cateee LKDDb URLs were obtained by web search; the Wikipedia URL is a canonical stable page recalled directly. No removal discussion was found in the gathered evidence; activity looks like low-volume maintenance for old but still-supported legacy systems. That supports `keep-annotate`: mark as legacy/obsolete hardware support, but do not deprecate/remove solely on market obsolescence.