mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

SMN access was bolted into amd_nb mostly as convenience. This has limitations though that require incurring tech debt to keep it working. Move SMN access to the newly introduced AMD Node driver. Signed-off-by: Mario Limonciello <mario.limonciello@amd.com> Signed-off-by: Yazen Ghannam <yazen.ghannam@amd.com> Signed-off-by: Borislav Petkov (AMD) <bp@alien8.de> Acked-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com> # pdx86 Acked-by: Shyam Sundar S K <Shyam-sundar.S-k@amd.com> # PMF, PMC Link: https://lore.kernel.org/r/20241206161210.163701-11-yazen.ghannam@amd.com
26 lines
673 B
Text
26 lines
673 B
Text
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
#
|
|
# AMD Address Translation Library Kconfig
|
|
#
|
|
# Copyright (c) 2023, Advanced Micro Devices, Inc.
|
|
# All Rights Reserved.
|
|
#
|
|
# Author: Yazen Ghannam <Yazen.Ghannam@amd.com>
|
|
|
|
config AMD_ATL
|
|
tristate "AMD Address Translation Library"
|
|
depends on AMD_NB && X86_64 && RAS
|
|
depends on AMD_NODE
|
|
depends on MEMORY_FAILURE
|
|
default N
|
|
help
|
|
This library includes support for implementation-specific
|
|
address translation procedures needed for various error
|
|
handling cases.
|
|
|
|
Enable this option if using DRAM ECC on Zen-based systems
|
|
and OS-based error handling.
|
|
|
|
config AMD_ATL_PRM
|
|
depends on AMD_ATL && ACPI_PRMT
|
|
def_bool y
|