x86/amd-iommu: enable iommu before attaching devices
authorChris Wright <chrisw@sous-sol.org>
Sat, 3 Apr 2010 01:27:52 +0000 (18:27 -0700)
committerJoerg Roedel <joerg.roedel@amd.com>
Wed, 7 Apr 2010 09:50:50 +0000 (11:50 +0200)
commit75f66533bc883f761a7adcab3281fe3323efbc90
treea659f19946c80e774e7b951d114a6416e5421849
parent8b408fe4f853dcfa18d133aa4cf1d7546b4c3870
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: Chris Wright <chrisw@sous-sol.org>
Signed-off-by: Joerg Roedel <joerg.roedel@amd.com>
arch/x86/kernel/amd_iommu_init.c