Arthur Heymans has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/74374 )
Change subject: cpu/x86/mp_init.c: Set topology on BSP ......................................................................
cpu/x86/mp_init.c: Set topology on BSP
BSP might have non-zero apicid so set the topology accordingly.
Change-Id: I3fae5efa86d8efc474c129b48bdfa1d1e2306acf Signed-off-by: Arthur Heymans arthur@aheymans.xyz --- M src/cpu/x86/mp_init.c 1 file changed, 13 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/74/74374/1
diff --git a/src/cpu/x86/mp_init.c b/src/cpu/x86/mp_init.c index 4e92b75..28d6092 100644 --- a/src/cpu/x86/mp_init.c +++ b/src/cpu/x86/mp_init.c @@ -554,6 +554,7 @@ return CB_ERR; } bsp->path.apic.initial_lapicid = initial_lapicid(); + set_cpu_topology_from_leaf_b(bsp);
/* Find the device structure for the boot CPU. */ set_cpu_info(0, bsp);