iommu/amd: Don't put completion-wait semaphore on stack
authorJoerg Roedel <jroedel@suse.de>
Wed, 14 Sep 2016 09:41:59 +0000 (11:41 +0200)
committerIngo Molnar <mingo@kernel.org>
Thu, 15 Sep 2016 09:28:19 +0000 (11:28 +0200)
commit4bf5beef578e46393f11eb69dda7d17a065e05ff
treea67cc100152e095bd32a62abe2257d7d83c491e2
parent15f4eae70d365bba26854c90b6002aaabb18c8aa
iommu/amd: Don't put completion-wait semaphore on stack

The semaphore used by the AMD IOMMU to signal command
completion lived on the stack until now, which was safe as
the driver busy-waited on the semaphore with IRQs disabled,
so the stack can't go away under the driver.

But the recently introduced vmap-based stacks break this as
the physical address of the semaphore can't be determinded
easily anymore. The driver used the __pa() macro, but that
only works in the direct-mapping. The result were
Completion-Wait timeout errors seen by the IOMMU driver,
breaking system boot.

Since putting the semaphore on the stack is bad design
anyway, move the semaphore into 'struct amd_iommu'. It is
protected by the per-iommu lock and now in the direct
mapping again. This fixes the Completion-Wait timeout errors
and makes AMD IOMMU systems boot again with vmap-based
stacks enabled.

Reported-by: Borislav Petkov <bp@alien8.de>
Signed-off-by: Joerg Roedel <jroedel@suse.de>
Cc: H. Peter Anvin <hpa@zytor.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@kernel.org>
drivers/iommu/amd_iommu.c
drivers/iommu/amd_iommu_types.h