Skip to content

Commit 42bb5aa

Browse files
committed
iommu/amd: Increase timeout waiting for GA log enablement
On some systems it can take a long time for the hardware to enable the GA log of the AMD IOMMU. The current wait time is only 0.1ms, but testing showed that it can take up to 14ms for the GA log to enter running state after it has been enabled. Sometimes the long delay happens when booting the system, sometimes only on resume. Adjust the timeout accordingly to not print a warning when hardware takes a longer than usual. There has already been an attempt to fix this with commit 9b45a77 ("iommu/amd: Fix loop timeout issue in iommu_ga_log_enable()") But that commit was based on some wrong math and did not fix the issue in all cases. Cc: "D. Ziegfeld" <[email protected]> Cc: Jörg-Volker Peetz <[email protected]> Fixes: 8bda0cf ("iommu/amd: Detect and initialize guest vAPIC log") Signed-off-by: Joerg Roedel <[email protected]> Link: https://lore.kernel.org/r/[email protected]
1 parent 9ed1d7f commit 42bb5aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/iommu/amd/init.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484
#define ACPI_DEVFLAG_LINT1 0x80
8585
#define ACPI_DEVFLAG_ATSDIS 0x10000000
8686

87-
#define LOOP_TIMEOUT 100000
87+
#define LOOP_TIMEOUT 2000000
8888
/*
8989
* ACPI table definitions
9090
*

0 commit comments

Comments
 (0)