From 4fe87d45a54a48e7bce3ff6894af8b1402c7325f Mon Sep 17 00:00:00 2001 From: yuntong Date: Tue, 3 Mar 2026 06:16:05 +0000 Subject: [PATCH] iommu/hygon: Add support for Hygon family 18h model 18h IOAPIC The SB IOAPIC for Hygon family 18h model 18h processors is also on the device 0xb. Hygon-SIG: iommu/hygon: Add support for Hygon family 18h model 18h IOAPIC Signed-off-by: Liao Xuan Signed-off-by: yuntong --- drivers/iommu/amd_iommu_init.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/iommu/amd_iommu_init.c b/drivers/iommu/amd_iommu_init.c index 7092df1002d8..f388ea863415 100644 --- a/drivers/iommu/amd_iommu_init.c +++ b/drivers/iommu/amd_iommu_init.c @@ -2477,7 +2477,7 @@ static bool __init check_ioapic_information(void) (boot_cpu_data.x86_vendor == X86_VENDOR_HYGON && boot_cpu_data.x86 == 0x18 && boot_cpu_data.x86_model >= 0x4 && - boot_cpu_data.x86_model <= 0x10 && + boot_cpu_data.x86_model <= 0x18 && devid == IOAPIC_SB_DEVID_FAM18H_M4H)) { has_sb_ioapic = true; ret = true; -- Gitee