summaryrefslogtreecommitdiffstats
path: root/src/device
diff options
context:
space:
mode:
authorArthur Heymans <arthur@aheymans.xyz>2022-05-14 02:14:31 +0200
committerLean Sheng Tan <sheng.tan@9elements.com>2023-04-06 15:13:28 +0000
commit21ca7753bf619f1de8dca79fd1113a9c22335f11 (patch)
tree315d6c1a39c585878c96ec018529d42c1280178b /src/device
parent95f84c3aae04eaeeb59ce00a1e7cd6fd5ca0c0f8 (diff)
downloadcoreboot-21ca7753bf619f1de8dca79fd1113a9c22335f11.tar.gz
coreboot-21ca7753bf619f1de8dca79fd1113a9c22335f11.tar.bz2
coreboot-21ca7753bf619f1de8dca79fd1113a9c22335f11.zip
cpu/x86/mp_init.c: Keep track of initial lapic ID inside device_path
It's quite confusing to keep track of lapic ID inside the device struct and initial lapic ID inside an array. Change-Id: I4d9f8d23c0b0e5c142f6907593428d8509e4e7bb Signed-off-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-on: https://review.coreboot.org/c/coreboot/+/64342 Reviewed-by: Maximilian Brune <maximilian.brune@9elements.com> Reviewed-by: Patrick Rudolph <siro@das-labor.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/device')
-rw-r--r--src/device/cpu_device.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/device/cpu_device.c b/src/device/cpu_device.c
index f406e23f89f4..9185cc67f219 100644
--- a/src/device/cpu_device.c
+++ b/src/device/cpu_device.c
@@ -13,6 +13,7 @@ struct device *add_cpu_device(struct bus *cpu_bus, unsigned int apic_id,
/* Build the CPU device path */
cpu_path.type = DEVICE_PATH_APIC;
cpu_path.apic.apic_id = apic_id;
+ cpu_path.apic.initial_lapicid = apic_id;
/* Update CPU in devicetree. */
if (enabled)