cpu/x86/smm_loaderv2: Fix when only 1 CPU is present
Move out smm_create_map as this was not run if concurrent_save_states is 1. The cpus struct array is used in the smm_get_cpu_smbase() callback so it is necessary to create this. TEST: run qemu/q35 with -smp 1 (or no -smp argument) Change-Id: I07a98bbc9ff6dce548171ee6cd0c303db94087aa Signed-off-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-on: https://review.coreboot.org/c/coreboot/+/50783 Reviewed-by: Angel Pons <th3fanbus@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
50e849fc9b
commit
dfff5c2d19
|
@ -214,7 +214,7 @@ static int smm_place_entry_code(uintptr_t smbase, unsigned int num_cpus,
|
|||
{
|
||||
unsigned int i;
|
||||
unsigned int size;
|
||||
if (smm_create_map(smbase, num_cpus, params)) {
|
||||
|
||||
/*
|
||||
* Ensure there was enough space and the last CPUs smbase
|
||||
* did not encroach upon the stack. Stack top is smram start
|
||||
|
@ -229,10 +229,6 @@ static int smm_place_entry_code(uintptr_t smbase, unsigned int num_cpus,
|
|||
return 0;
|
||||
}
|
||||
}
|
||||
} else {
|
||||
printk(BIOS_ERR, "%s: unable to place smm entry code\n", __func__);
|
||||
return 0;
|
||||
}
|
||||
|
||||
printk(BIOS_INFO, "%s: smbase %zx, stack_top %lx\n",
|
||||
__func__, cpus[num_cpus-1].smbase, stack_top);
|
||||
|
@ -639,5 +635,11 @@ int smm_load_module(void *smram, size_t size, struct smm_loader_params *params)
|
|||
printk(BIOS_DEBUG, "%s: cpu0 entry: %p\n",
|
||||
__func__, base);
|
||||
params->smm_entry = (uintptr_t)base + params->smm_main_entry_offset;
|
||||
|
||||
if (!smm_create_map((uintptr_t)base, params->num_concurrent_save_states, params)) {
|
||||
printk(BIOS_ERR, "%s: Error creating CPU map\n", __func__);
|
||||
return -1;
|
||||
}
|
||||
|
||||
return smm_module_setup_stub(base, size, params, fxsave_area);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue