]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
iommu/amd: Do not try copy old DTE resume path
authorVasant Hegde <vasant.hegde@amd.com>
Wed, 16 Oct 2024 08:49:58 +0000 (08:49 +0000)
committerJoerg Roedel <jroedel@suse.de>
Tue, 29 Oct 2024 08:47:02 +0000 (09:47 +0100)
In suspend/resume path, no need to copy old DTE (early_enable_iommus()).
Just need to reload IOMMU hardware.

This is the side effect of commit 3ac3e5ee5ed5 ("iommu/amd: Copy old
trans table from old kernel") which changed early_enable_iommus() but
missed to fix enable_iommus().

Resume path continue to work as 'amd_iommu_pre_enabled' is set to false
and copy_device_table() will fail. It will just re-loaded IOMMU. Hence I
think we don't need to backport this to stable tree.

Signed-off-by: Vasant Hegde <vasant.hegde@amd.com>
Link: https://lore.kernel.org/r/20241016084958.99727-1-vasant.hegde@amd.com
Signed-off-by: Joerg Roedel <jroedel@suse.de>
drivers/iommu/amd/init.c

index 43131c3a21726f3360de6ba843ed30048343cbbf..3fa70169aacea2fcebb61f9bdeb348ad153b05b4 100644 (file)
@@ -2882,11 +2882,6 @@ static void enable_iommus_vapic(void)
 #endif
 }
 
-static void enable_iommus(void)
-{
-       early_enable_iommus();
-}
-
 static void disable_iommus(void)
 {
        struct amd_iommu *iommu;
@@ -2913,7 +2908,8 @@ static void amd_iommu_resume(void)
                iommu_apply_resume_quirks(iommu);
 
        /* re-load the hardware */
-       enable_iommus();
+       for_each_iommu(iommu)
+               early_enable_iommu(iommu);
 
        amd_iommu_enable_interrupts();
 }