memset(&data, 0, sizeof(data));
data.len = sizeof(data);
data.iommu_snp_shutdown = 1;
+ if (sev->snp_feat_info_0.ecx & SNP_X86_SHUTDOWN_SUPPORTED)
+ data.x86_snp_shutdown = 1;
/*
* If invoked during panic handling, local interrupts are disabled
return ret;
}
- /*
- * SNP_SHUTDOWN_EX with IOMMU_SNP_SHUTDOWN set to 1 disables SNP
- * enforcement by the IOMMU and also transitions all pages
- * associated with the IOMMU to the Reclaim state.
- * Firmware was transitioning the IOMMU pages to Hypervisor state
- * before version 1.53. But, accounting for the number of assigned
- * 4kB pages in a 2M page was done incorrectly by not transitioning
- * to the Reclaim state. This resulted in RMP #PF when later accessing
- * the 2M page containing those pages during kexec boot. Hence, the
- * firmware now transitions these pages to Reclaim state and hypervisor
- * needs to transition these pages to shared state. SNP Firmware
- * version 1.53 and above are needed for kexec boot.
- */
- ret = amd_iommu_snp_disable();
- if (ret) {
- dev_err(sev->dev, "SNP IOMMU shutdown failed\n");
- return ret;
+ if (data.x86_snp_shutdown) {
+ if (!panic)
+ snp_shutdown();
+ } else {
+ /*
+ * SNP_SHUTDOWN_EX with IOMMU_SNP_SHUTDOWN set to 1 disables SNP
+ * enforcement by the IOMMU and also transitions all pages
+ * associated with the IOMMU to the Reclaim state.
+ * Firmware was transitioning the IOMMU pages to Hypervisor state
+ * before version 1.53. But, accounting for the number of assigned
+ * 4kB pages in a 2M page was done incorrectly by not transitioning
+ * to the Reclaim state. This resulted in RMP #PF when later accessing
+ * the 2M page containing those pages during kexec boot. Hence, the
+ * firmware now transitions these pages to Reclaim state and hypervisor
+ * needs to transition these pages to shared state. SNP Firmware
+ * version 1.53 and above are needed for kexec boot.
+ */
+ ret = amd_iommu_snp_disable();
+ if (ret) {
+ dev_err(sev->dev, "SNP IOMMU shutdown failed\n");
+ return ret;
+ }
}
snp_leak_hv_fixed_pages();
*
* @len: length of the command buffer read by the PSP
* @iommu_snp_shutdown: Disable enforcement of SNP in the IOMMU
+ * @x86_snp_shutdown: Disable SNP on all cores
* @rsvd1: reserved
*/
struct sev_data_snp_shutdown_ex {
u32 len;
u32 iommu_snp_shutdown:1;
- u32 rsvd1:31;
+ u32 x86_snp_shutdown:1;
+ u32 rsvd1:30;
} __packed;
/**
} __packed;
/* Feature bits in ECX */
+#define SNP_X86_SHUTDOWN_SUPPORTED BIT(1)
#define SNP_RAPL_DISABLE_SUPPORTED BIT(2)
#define SNP_CIPHER_TEXT_HIDING_SUPPORTED BIT(3)
#define SNP_AES_256_XTS_POLICY_SUPPORTED BIT(4)