From 534585d7bd9025976d4daa690d5d2ed9001de1c3 Mon Sep 17 00:00:00 2001 From: Patrick Rudolph Date: Tue, 3 Dec 2024 09:47:30 +0100 Subject: [PATCH] soc/intel/xeon_sp/skx: Drop ACPI_FADT_8042 None of the supported mainboards have a 8042 compatible chip, thus drop it from the common code. When such board is added it can update fadt->iapc_boot_arch by installing a mainboard_fill_fadt() method. Change-Id: I40cafcec57dd49399ce449700c81a1f27c1ded99 Signed-off-by: Patrick Rudolph Reviewed-on: https://review.coreboot.org/c/coreboot/+/85507 Reviewed-by: Angel Pons Tested-by: build bot (Jenkins) --- src/soc/intel/xeon_sp/skx/soc_acpi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/soc/intel/xeon_sp/skx/soc_acpi.c b/src/soc/intel/xeon_sp/skx/soc_acpi.c index c9d867c9cf..2a9bd17947 100644 --- a/src/soc/intel/xeon_sp/skx/soc_acpi.c +++ b/src/soc/intel/xeon_sp/skx/soc_acpi.c @@ -47,7 +47,7 @@ void soc_fill_fadt(acpi_fadt_t *fadt) fadt->pm2_cnt_len = 1; fadt->pm_tmr_len = 4; - fadt->iapc_boot_arch = ACPI_FADT_LEGACY_DEVICES | ACPI_FADT_8042; + fadt->iapc_boot_arch = ACPI_FADT_LEGACY_DEVICES; /* PM Extended Registers */ fill_fadt_extended_pm_io(fadt);