diff options
author | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2021-05-29 21:23:18 +0300 |
---|---|---|
committer | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2021-06-07 21:02:54 +0000 |
commit | 41a2c73b064b6ab68e63dd8ce75ef07561d2857d (patch) | |
tree | 319e1e637179ded61d8ff28c26cd1665dc6c51a1 /src/cpu/x86 | |
parent | 8cc25d229fb21e0c1285239881134bf0610ec079 (diff) |
cpu/x86: Default to PARALLEL_MP selected
Change-Id: I9833c4f6c43b3e67f95bd465c42d7a5036dff914
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/55196
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Diffstat (limited to 'src/cpu/x86')
-rw-r--r-- | src/cpu/x86/Kconfig | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/cpu/x86/Kconfig b/src/cpu/x86/Kconfig index bcaf0bfad7..1a4318cbcd 100644 --- a/src/cpu/x86/Kconfig +++ b/src/cpu/x86/Kconfig @@ -4,7 +4,9 @@ config PARALLEL_CPU_INIT default n config PARALLEL_MP - def_bool n + def_bool y + depends on !LEGACY_SMP_INIT + depends on SMP help This option uses common MP infrastructure for bringing up APs in parallel. It additionally provides a more flexible mechanism @@ -17,6 +19,9 @@ config PARALLEL_MP_AP_WORK Allow APs to do other work after initialization instead of going to sleep. +config LEGACY_SMP_INIT + bool + config UDELAY_LAPIC bool default n |