summaryrefslogtreecommitdiffstats
path: root/src/cpu/x86/mp_init.c
diff options
context:
space:
mode:
authorArthur Heymans <arthur@aheymans.xyz>2022-11-12 16:51:22 +0100
committerMartin L Roth <gaumless@gmail.com>2022-12-10 17:54:53 +0000
commit6e23da2983f83c803cf4abfee542d7f90e8e9eb5 (patch)
tree4ed3551c36aa01c0097002c419965e6c3ea4e9e3 /src/cpu/x86/mp_init.c
parent2db459edb0936bbaf874f40a96e98cdfc6d5d5ce (diff)
downloadcoreboot-6e23da2983f83c803cf4abfee542d7f90e8e9eb5.tar.gz
coreboot-6e23da2983f83c803cf4abfee542d7f90e8e9eb5.tar.bz2
coreboot-6e23da2983f83c803cf4abfee542d7f90e8e9eb5.zip
cpu/cpu.h: Change the function signature
There is no need to pass the CPU index around. Change-Id: Iad8e3cb318e6520ac5877118dbf43597dedb75b9 Signed-off-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-on: https://review.coreboot.org/c/coreboot/+/69504 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Elyes Haouas <ehaouas@noos.fr>
Diffstat (limited to 'src/cpu/x86/mp_init.c')
-rw-r--r--src/cpu/x86/mp_init.c10
1 files changed, 1 insertions, 9 deletions
diff --git a/src/cpu/x86/mp_init.c b/src/cpu/x86/mp_init.c
index 758550c43d3f..acc132396725 100644
--- a/src/cpu/x86/mp_init.c
+++ b/src/cpu/x86/mp_init.c
@@ -628,14 +628,6 @@ static enum cb_err mp_init(struct bus *cpu_bus, struct mp_params *p)
return bsp_do_flight_plan(p);
}
-/* Calls cpu_initialize(info->index) which calls the coreboot CPU drivers. */
-static void mp_initialize_cpu(void)
-{
- /* Call back into driver infrastructure for the AP initialization. */
- struct cpu_info *info = cpu_info();
- cpu_initialize(info->index);
-}
-
void smm_initiate_relocation_parallel(void)
{
if (lapic_busy()) {
@@ -1078,7 +1070,7 @@ static struct mp_flight_record mp_steps[] = {
/* Perform SMM relocation. */
MP_FR_NOBLOCK_APS(trigger_smm_relocation, trigger_smm_relocation),
/* Initialize each CPU through the driver framework. */
- MP_FR_BLOCK_APS(mp_initialize_cpu, mp_initialize_cpu),
+ MP_FR_BLOCK_APS(cpu_initialize, cpu_initialize),
/* Wait for APs to finish then optionally start looking for work. */
MP_FR_BLOCK_APS(ap_wait_for_instruction, NULL),
};