blob: 188fffaa4c19bee271c4a038afd6ffcf1be1bae3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# SPDX-License-Identifier: GPL-2.0-only
config MP_SERVICES_PPI
bool
default n
depends on SOC_INTEL_COMMON_BLOCK_CPU_MPINIT
help
This option allows to create MP service PPI for Intel FSP usage.
Intel FSP will use this PPI to run CPU feature programming on APs.
config MP_SERVICES_PPI_V1
bool
default n
select MP_SERVICES_PPI
help
This option provides EFI_PEI_MP_SERVICES_PPI structure definitions
along with all APIs as per edk2 specification.
config MP_SERVICES_PPI_V2
bool
default n
select MP_SERVICES_PPI
help
This option provides EDKII_PEI_MP_SERVICES2_PPI structure definitions
along with all APIs as per edk2 specification. MP services2 PPI is slight
modification over MP services1 PPIs. A new API StartupAllCPUs have been
added to allow running a task on BSP and all APs. Also the EFI_PEI_SERVICES
parameter has been removed from all MP PPI APIs.
config MP_SERVICES_PPI_V2_NOOP
bool
default n
select MP_SERVICES_PPI
help
This option implement EFI_PEI_MP_SERVICES_PPI structure definitions
with APIs that returns mp_api_unsupported().
|