diff options
author | Arthur Heymans <arthur@aheymans.xyz> | 2020-12-01 18:29:13 +0100 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2021-03-18 08:10:11 +0000 |
commit | e69d2dfdb70c33dfcc07a54c217601f498c2214c (patch) | |
tree | fa79b9a46e7c80b6c5ac06ec582b79db66c56d4a /src/cpu/qemu-x86 | |
parent | ff485f2bcef9d0c8cf9536f6b8bc87edbe718e04 (diff) |
mb/emulation/qemu-q35: Add support for SMM_TSEG with parallel MP init
Tested with and without -enable-kvm, with -smp 1 2 and 32.
Change-Id: I612cebcd2ddef809434eb9bfae9d8681cda112ef
Signed-off-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/48262
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/cpu/qemu-x86')
-rw-r--r-- | src/cpu/qemu-x86/Kconfig | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/cpu/qemu-x86/Kconfig b/src/cpu/qemu-x86/Kconfig index a22d7f9eab..85f99e9cb6 100644 --- a/src/cpu/qemu-x86/Kconfig +++ b/src/cpu/qemu-x86/Kconfig @@ -36,9 +36,10 @@ config CPU_QEMU_X86_ASEG_SMM depends on !PARALLEL_MP select SMM_ASEG -#config CPU_QEMU_X86_TSEG_SMM -# bool "SMM in TSEG" -# select SMM_TSEG +config CPU_QEMU_X86_TSEG_SMM + bool "SMM in TSEG" + select SMM_TSEG + depends on PARALLEL_MP endchoice |