From d251282f2d418b58e67c37d7ea7caa41c29ac647 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20=C5=BBygowski?= Date: Mon, 2 Mar 2026 15:02:39 +0100 Subject: [PATCH] Kconfig: move IOAPIC option to x86 Kconfig MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit IOAPIC is x86-exclusive, so move the IOAPIC options to arch/x86/Kconfig file. Change-Id: Ib0b30a1929f6f4f6bcc6355cce6ceea067905a2c Signed-off-by: Michał Żygowski Reviewed-on: https://review.coreboot.org/c/coreboot/+/91510 Reviewed-by: Matt DeVillier Reviewed-by: Alicja Michalska Tested-by: build bot (Jenkins) --- src/Kconfig | 12 ------------ src/arch/x86/Kconfig | 12 ++++++++++++ 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/src/Kconfig b/src/Kconfig index dfd703630c..93df67ed3d 100644 --- a/src/Kconfig +++ b/src/Kconfig @@ -933,18 +933,6 @@ config PCI_IO_CFG_EXT bool default n -config IOAPIC - bool - default y if SMP - default n - -config IOAPIC_8BIT_ID - bool - default n - depends on IOAPIC - help - Select this option if the hardware support 8bit long IOAPIC IDs. - config USE_WATCHDOG_ON_BOOT bool default n diff --git a/src/arch/x86/Kconfig b/src/arch/x86/Kconfig index 8e6babceb3..7f10f9a20f 100644 --- a/src/arch/x86/Kconfig +++ b/src/arch/x86/Kconfig @@ -466,4 +466,16 @@ config SOC_BERT_SIZEOF_ERROR_SECTION help SoC selects this if it implements soc_bert_sizeof_error_section. +config IOAPIC + bool + default y if SMP + default n + +config IOAPIC_8BIT_ID + bool + default n + depends on IOAPIC + help + Select this option if the hardware support 8bit long IOAPIC IDs. + endif