[PATCH v4 0/3] AMD Address Translation Library

From: Yazen Ghannam
Date: Mon Dec 18 2023 - 14:04:35 EST


Hi all,

This revision addresses comments from Boris for v3. The most substantial
change is the removal of the library "stub".

Thanks,
Yazen

Yazen Ghannam (3):
RAS: Introduce AMD Address Translation Library
EDAC/amd64: Use new AMD Address Translation Library
Documentation: RAS: Add index and address translation section

Documentation/RAS/address-translation.rst | 24 +
.../RAS/{ras.rst => error-decoding.rst} | 11 +-
Documentation/RAS/index.rst | 14 +
Documentation/index.rst | 2 +-
MAINTAINERS | 7 +
drivers/edac/Kconfig | 1 +
drivers/edac/amd64_edac.c | 282 +-------
drivers/ras/Kconfig | 1 +
drivers/ras/Makefile | 2 +
drivers/ras/amd/atl/Kconfig | 20 +
drivers/ras/amd/atl/Makefile | 18 +
drivers/ras/amd/atl/access.c | 106 +++
drivers/ras/amd/atl/core.c | 225 ++++++
drivers/ras/amd/atl/dehash.c | 416 +++++++++++
drivers/ras/amd/atl/denormalize.c | 616 ++++++++++++++++
drivers/ras/amd/atl/internal.h | 297 ++++++++
drivers/ras/amd/atl/map.c | 667 ++++++++++++++++++
drivers/ras/amd/atl/reg_fields.h | 603 ++++++++++++++++
drivers/ras/amd/atl/system.c | 283 ++++++++
drivers/ras/amd/atl/umc.c | 41 ++
drivers/ras/ras.c | 31 +
include/linux/ras.h | 11 +
22 files changed, 3392 insertions(+), 286 deletions(-)
create mode 100644 Documentation/RAS/address-translation.rst
rename Documentation/RAS/{ras.rst => error-decoding.rst} (73%)
create mode 100644 Documentation/RAS/index.rst
create mode 100644 drivers/ras/amd/atl/Kconfig
create mode 100644 drivers/ras/amd/atl/Makefile
create mode 100644 drivers/ras/amd/atl/access.c
create mode 100644 drivers/ras/amd/atl/core.c
create mode 100644 drivers/ras/amd/atl/dehash.c
create mode 100644 drivers/ras/amd/atl/denormalize.c
create mode 100644 drivers/ras/amd/atl/internal.h
create mode 100644 drivers/ras/amd/atl/map.c
create mode 100644 drivers/ras/amd/atl/reg_fields.h
create mode 100644 drivers/ras/amd/atl/system.c
create mode 100644 drivers/ras/amd/atl/umc.c


base-commit: ba7d5744cf6fac619fd0bf1165c90ee930956ebc
--
2.34.1