Intel IXP4xx NPE-C Crypto Acceleration Engine
Hardware crypto offload built into Intel's IXP4xx XScale-based network processors, a family of embedded ARM SoCs from the early-to-mid 2000s that powered home routers, small-business gateways, and industrial networking gear. The NPE-C coprocessor accelerated bulk encryption and hashing for IPsec and similar workloads on these now-legacy boards.
recommendation
Worth keeping but flagging as legacy: IXP4xx silicon has been obsolete for over a decade and is not sold for new designs, yet OpenWrt still publishes images for a handful of these boards as recently as February 2025, and the driver is still getting real maintenance, including a December 2024 reference-leak fix and a 2023 conversion to the modern platform-remove API. Removing it would strand the small embedded community still running these devices.
repository signals
sources
- git.zx2c4.com
The driver received a substantive upstream fix on 2024-12-21: "crypto: ixp4xx - fix OF node reference leaks in init_ixp_crypto()."
- spinics.net
A 2023 linux-crypto patch thread converted this driver to the modern platform remove callback API, indicating maintenance rather than removal.
- openwrt.org
OpenWrt still tracks an ixp4xx target, notes a device-tree-based target merged in 2023-10-25, and lists only a small set of supported legacy boards.
- downloads.openwrt.org
OpenWrt published ixp4xx/generic images and build artifacts dated 2025-02-04, showing the platform still has niche downstream use in 2025.
- en.wikipedia.org
IXP4xx belongs to Intel's XScale/IXP line, a long-obsolete embedded/network-processor family rather than current new-design silicon.
codex reasoning notes (technical)
Local shell inspection (`rg` in the directory) identified this as the Intel IXP4xx NPE-C crypto engine driver (`Kconfig` and `ixp4xx_crypto.c`). Upstream activity was checked via local `git log` and corroborated with web-opened git history at git.zx2c4.com; latest real fix is from 2024-12-21, and web search found a 2023 linux-crypto patch thread on spinics but no removal/deprecation series. Deployment evidence came from web search/open of OpenWrt ixp4xx target pages and release indexes, which show continued niche firmware builds for a handful of old boards. Because the hardware is clearly legacy and not a 2025 new-sales platform, but the driver still gets occasional bug-fix and API-maintenance attention and retains niche embedded deployments, `keep-annotate` fits better than `deprecate` or `remove`.