aboutsummaryrefslogtreecommitdiff
path: root/src/drivers/intel/fsp2_0/fsp_mpinit.c
blob: cda9269cb8a31c205d7552360098826b80e64e05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* SPDX-License-Identifier: GPL-2.0-only */

#include <fsp/api.h>
#include <intelblocks/mp_init.h>

/*
 * As per FSP integration guide:
 * If bootloader needs to take control of APs back, a full AP re-initialization is
 * required after FSP-S is completed and control has been transferred back to bootloader
 */
void do_mpinit_after_fsp(void)
{
	init_cpus();
}