AMD Zen Address Translation Library for DRAM ECC
A helper library used by the kernel's RAS (Reliability, Availability, Serviceability) machinery to translate hardware memory error addresses on AMD Zen-based systems, including EPYC server CPUs and Instinct MI300 datacenter/HPC accelerators. It lets the OS pinpoint which DRAM location an ECC error came from when the platform leaves error handling to software rather than firmware.
recommendation
It should stay because it provides DRAM error address decoding for current AMD Zen-based servers and the Instinct MI300 accelerators, which AMD is still actively selling in 2025. The code was added in 2024, gained explicit MI300 support that same year, and received further fixes through late 2025, so it is an actively maintained piece of infrastructure with no replacement.
repository signals
sources
- git.kernel.org
Kconfig says AMD_ATL is the AMD Address Translation Library for DRAM ECC on Zen-based systems with OS-based error handling.
- git.kernel.org
core.c matches Zen/SMCA-capable x86 CPUs and registers an address-decoder module, showing this is active platform support for modern AMD server/HPC systems.
- git.kernel.org
ATL received a substantive upstream fix in late 2025, indicating ongoing maintenance rather than deprecation.
- git.kernel.org
ATL gained explicit MI300 support in 2024, tying it to current-generation AMD datacenter/HPC hardware.
- amd.com
AMD still markets the Instinct MI300 series, so ATL-covered hardware was still sold new in 2025.
codex reasoning notes (technical)
Not a removal candidate. Local source inspection via shell showed a real loadable driver/module under drivers/ras/amd/atl. Lore-first attempt via shell `lei q` was blocked because `lei` is not installed in this environment, so activity was grounded with local git history (`git log`) and mapped to canonical kernel.org commit URLs by full hash from `git rev-parse`; AMD product status came from a web search result on amd.com. Evidence points to a young driver (introduced 2024), multiple substantive updates through late 2025, and support for still-sold MI300/Zen server platforms. No natural replacement driver is apparent.