]> git.baikalelectronics.ru Git - kernel.git/commit
iommu/amd: Fix loop timeout issue in iommu_ga_log_enable()
authorJoerg Roedel <jroedel@suse.de>
Fri, 4 Feb 2022 11:55:37 +0000 (12:55 +0100)
committerJoerg Roedel <jroedel@suse.de>
Fri, 4 Feb 2022 11:57:26 +0000 (12:57 +0100)
commit4a6983fdd636efdaf55e1ec28a666a1b22540426
tree1fd8968308142638bdf4b4d5e35238471f01cafe
parentd2af1d79e075398b26c0dd7e5f1ca804d16775cf
iommu/amd: Fix loop timeout issue in iommu_ga_log_enable()

The polling loop for the register change in iommu_ga_log_enable() needs
to have a udelay() in it.  Otherwise the CPU might be faster than the
IOMMU hardware and wrongly trigger the WARN_ON() further down the code
stream. Use a 10us for udelay(), has there is some hardware where
activation of the GA log can take more than a 100ms.

A future optimization should move the activation check of the GA log
to the point where it gets used for the first time. But that is a
bigger change and not suitable for a fix.

Fixes: 550744054083 ("iommu/amd: Detect and initialize guest vAPIC log")
Signed-off-by: Joerg Roedel <jroedel@suse.de>
Link: https://lore.kernel.org/r/20220204115537.3894-1-joro@8bytes.org
drivers/iommu/amd/init.c