]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
x86/mce/amd: Support SMCA Corrected Error Interrupt
authorYazen Ghannam <yazen.ghannam@amd.com>
Tue, 4 Nov 2025 14:55:41 +0000 (14:55 +0000)
committerBorislav Petkov (AMD) <bp@alien8.de>
Wed, 5 Nov 2025 21:10:23 +0000 (22:10 +0100)
AMD systems optionally support MCA thresholding which provides the ability for
hardware to send an interrupt when a set error threshold is reached. This
feature counts errors of all severities, but it is commonly used to report
correctable errors with an interrupt rather than polling.

Scalable MCA systems allow the platform to take control of this feature. In
this case, the OS will not see the feature configuration and control bits in
the MCA_MISC* registers. The OS will not receive the MCA thresholding
interrupt, and it will need to poll for correctable errors.

A "corrected error interrupt" will be available on Scalable MCA systems. This
will be used in the same configuration where the platform controls MCA
thresholding. However, the platform will now be able to send the MCA
thresholding interrupt to the OS.

Check for, and enable, this feature during per-CPU SMCA init.

Signed-off-by: Yazen Ghannam <yazen.ghannam@amd.com>
Signed-off-by: Borislav Petkov (AMD) <bp@alien8.de>
Reviewed-by: Tony Luck <tony.luck@intel.com>
Tested-by: Tony Luck <tony.luck@intel.com>
Link: https://lore.kernel.org/20251104-wip-mca-updates-v8-0-66c8eacf67b9@amd.com
arch/x86/kernel/cpu/mce/amd.c

index 117165c357b775d636274d0cd47b3ee19853efd9..6d16b4589eef564d37bfe718d93ce852c68d30fd 100644 (file)
@@ -308,6 +308,23 @@ static void smca_configure(unsigned int bank, unsigned int cpu)
                        high |= BIT(5);
                }
 
+               /*
+                * SMCA Corrected Error Interrupt
+                *
+                * MCA_CONFIG[IntPresent] is bit 10, and tells us if the bank can
+                * send an MCA Thresholding interrupt without the OS initializing
+                * this feature. This can be used if the threshold limit is managed
+                * by the platform.
+                *
+                * MCA_CONFIG[IntEn] is bit 40 (8 in the high portion of the MSR).
+                * The OS should set this to inform the platform that the OS is ready
+                * to handle the MCA Thresholding interrupt.
+                */
+               if ((low & BIT(10)) && data->thr_intr_en) {
+                       __set_bit(bank, data->thr_intr_banks);
+                       high |= BIT(8);
+               }
+
                this_cpu_ptr(mce_banks_array)[bank].lsb_in_status = !!(low & BIT(8));
 
                wrmsr(smca_config, low, high);