Lean Sheng Tan has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/74436 )
Change subject: soc/intel/xeon_sp/spr: Add support to not sort struct device cpus for numa ......................................................................
soc/intel/xeon_sp/spr: Add support to not sort struct device cpus for numa
This fixes the Jenkins build error when building INTEL_ARCHERCITY_CRB.
Signed-off-by: Lean Sheng Tan sheng.tan@9elements.com Change-Id: I89e14b40186007ab0290b24cd6bd58015be376b6 --- M src/soc/intel/xeon_sp/spr/cpu.c 1 file changed, 16 insertions(+), 5 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/36/74436/1
diff --git a/src/soc/intel/xeon_sp/spr/cpu.c b/src/soc/intel/xeon_sp/spr/cpu.c index 47873f5..2ed8e22 100644 --- a/src/soc/intel/xeon_sp/spr/cpu.c +++ b/src/soc/intel/xeon_sp/spr/cpu.c @@ -78,8 +78,9 @@ { msr_t msr;
- printk(BIOS_SPEW, "%s dev: %s, cpu: %lu, apic_id: 0x%x\n", __func__, dev_path(cpu), - cpu_index(), cpu->path.apic.apic_id); + printk(BIOS_SPEW, "%s dev: %s, cpu: %lu, apic_id: 0x%x, package_id: 0x%x\n", + __func__, dev_path(cpu), cpu_index(), cpu->path.apic.apic_id, + cpu->path.apic.package_id);
/* * Enable PWR_PERF_PLTFRM_OVR and PROCHOT_LOCK. @@ -275,7 +276,4 @@
if (mp_init_with_smm(bus, &mp_ops) < 0) printk(BIOS_ERR, "MP initialization failure.\n"); - - /* update numa domain for all cpu devices */ - xeonsp_init_cpu_config(); }