Arthur Heymans has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/63483 )
Change subject: cpu/qemu-x86: Allow up to 255 cores ......................................................................
cpu/qemu-x86: Allow up to 255 cores
Qemu does not support more than 255 cores. "qemu-system-x86_64: apic initialization failed. APIC ID 255 is invalid" is being logged when attempted.
Change-Id: I9eea91fb09f47de8b06de9fa7eb2ad66ef4dc7e2 Signed-off-by: Arthur Heymans arthur@aheymans.xyz --- M src/cpu/qemu-x86/Kconfig 1 file changed, 2 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/83/63483/1
diff --git a/src/cpu/qemu-x86/Kconfig b/src/cpu/qemu-x86/Kconfig index 73aadfb..b71f9f4 100644 --- a/src/cpu/qemu-x86/Kconfig +++ b/src/cpu/qemu-x86/Kconfig @@ -47,10 +47,10 @@
config MAX_CPUS int - default 32 if SMM_TSEG + default 255 if SMM_TSEG default 4
config HEAP_SIZE - default 0x8000 + default 0x10000
endif