drivers/net/wireless/intel/iwlwifi/mei

Intel CSME/AMT-over-Wi-Fi bridge for iwlwifi (IWLMEI)

A communication channel that lets Intel's Management Engine firmware, the component behind vPro and Active Management Technology, share a Wi-Fi adapter with the host operating system on Tiger Lake and newer business laptops. It targets recent Intel wireless cards like the AX200/AX201 and enables remote out-of-band management to reach a machine over Wi-Fi rather than wired Ethernet.

keep-annotate conf=0.84 last_sold=2025 deploy=low replacement=none subsystem=net category=networking-wireless
84%

recommendation

Worth keeping but its niche should be documented: Intel still ships vPro/AMT-capable Wi-Fi hardware in 2025 and the code is actively maintained, with bug fixes and SAP v4 protocol support landing in 2024-2025. However, the Kconfig option still depends on BROKEN and Intel itself states that wireless AMT is not validated on Linux, so real-world Linux deployment is very thin. No other in-tree driver provides the same CSME-over-WLAN handoff, so removing it would leave the function uncovered.

repository signals

9 files
4,147 source lines
44 commits, 5y
+4,394 / −239 lines added / removed, 5y
10 authors, 5y
monthly commits · 2021-04-21 → 2026-04-21 · 44 total · active in 20/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: 5 commits · +3,825 −12 2021-12: 4 commits · +40 −4 2022-01: 4 commits · +39 −17 2022-02: 2 commits · +6 −2 2022-03: 0 commits · +0 −0 2022-04: 0 commits · +0 −0 2022-05: 2 commits · +3 −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: 5 commits · +117 −78 2022-11: 4 commits · +195 −23 2022-12: 1 commit · +11 −11 2023-01: 1 commit · +3 −3 2023-02: 0 commits · +0 −0 2023-03: 0 commits · +0 −0 2023-04: 2 commits · +35 −9 2023-05: 1 commit · +2 −3 2023-06: 0 commits · +0 −0 2023-07: 0 commits · +0 −0 2023-08: 4 commits · +36 −34 2023-09: 0 commits · +0 −0 2023-10: 1 commit · +2 −2 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: 1 commit · +1 −1 2024-05: 1 commit · +2 −2 2024-06: 1 commit · +5 −2 2024-07: 1 commit · +53 −15 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: 0 commits · +0 −0 2025-05: 0 commits · +0 −0 2025-06: 1 commit · +15 −15 2025-07: 0 commits · +0 −0 2025-08: 1 commit · +0 −2 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: 2 commits · +4 −4 2026-03: 0 commits · +0 −0 2026-04: 0 commits · +0 −0

sources

  1. git.kernel.org

    `CONFIG_IWLMEI` is a real tristate driver option for Intel Management Engine communication over WLAN; its help text says support starts from Tiger Lake platforms, was tested on 9260 devices only, and currently depends on `BROKEN`.

  2. git.kernel.org

    The directory contains a real MEI client driver (`module_mei_cl_driver(iwl_mei_cl_driver)`) rather than only helper code.

  3. git.kernel.org

    The directory has continued upstream maintenance through 2024-2025, including bug fixes and SAP version 4 support, which argues against removal for inactivity.

  4. intel.com

    Intel was still marketing vPro manageability over wired or Wi-Fi in 2025-era materials, so the underlying enterprise hardware/use case remains current.

  5. intel.com

    Intel's AMT materials describe wireless-capable Intel adapters on vPro platforms (example AX201), indicating the hardware class is not purely legacy.

  6. software.intel.com

    Intel's wireless manageability guidance says Linux wireless AMT use is not validated, supporting a conclusion of niche/low Linux deployment despite ongoing hardware relevance.

codex reasoning notes (technical)

Real driver, confirmed by local shell inspection of `Kconfig` and `mei/main.c` in the kernel tree; local `git log` showed active 2024-2025 work (including SAP v4 support and fixes) and no evidence of an inactive/orphaned subtree. Kernel.org URLs are canonical recall corresponding to those locally inspected files/logs. Intel vPro/AMT URLs were obtained by web search and support that the hardware capability is still sold new, but Linux deployment appears low because `CONFIG_IWLMEI` is still `depends on BROKEN` and Intel's wireless AMT guidance says Linux wireless use is not validated. No natural in-tree replacement covers the same CSME-over-WLAN function.