Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 75f66533 authored by Chris Wright's avatar Chris Wright Committed by Joerg Roedel
Browse files

x86/amd-iommu: enable iommu before attaching devices



Hit another kdump problem as reported by Neil Horman.  When initializaing
the IOMMU, we attach devices to their domains before the IOMMU is
fully (re)initialized.  Attaching a device will issue some important
invalidations.  In the context of the newly kexec'd kdump kernel, the
IOMMU may have stale cached data from the original kernel.  Because we
do the attach too early, the invalidation commands are placed in the new
command buffer before the IOMMU is updated w/ that buffer.  This leaves
the stale entries in the kdump context and can renders device unusable.
Simply enable the IOMMU before we do the attach.

Cc: stable@kernel.org
Cc: Neil Horman <nhorman@tuxdriver.com>
Cc: Vivek Goyal <vgoyal@redhat.com>
Signed-off-by: default avatarChris Wright <chrisw@sous-sol.org>
Signed-off-by: default avatarJoerg Roedel <joerg.roedel@amd.com>
parent 8b408fe4
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -1304,6 +1304,8 @@ static int __init amd_iommu_init(void)
	if (ret)
		goto free;

	enable_iommus();

	if (iommu_pass_through)
		ret = amd_iommu_init_passthrough();
	else
@@ -1316,8 +1318,6 @@ static int __init amd_iommu_init(void)

	amd_iommu_init_notifier();

	enable_iommus();

	if (iommu_pass_through)
		goto out;

@@ -1331,6 +1331,7 @@ static int __init amd_iommu_init(void)
	return ret;

free:
	disable_iommus();

	amd_iommu_uninit_devices();