diff options
author | Aamir Bohra <aamir.bohra@intel.com> | 2021-02-04 20:57:51 +0530 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2021-02-06 09:06:10 +0000 |
commit | 30cca6ca2ad92c44104fc5a1f261356b038abe20 (patch) | |
tree | 3d2aa7b5d897f4be942d13f8a47b69944adc3a1a /src/include | |
parent | 5f262be24c2ae43451751261ecabdc825a167af0 (diff) |
drivers/intel/fsp2_0: Add support for MP services2 PPI
Add support for MP services2 PPIs, which is slight modification
over MP services 1 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.
This implementation also selects the respective MP services PPI version
supported for SoCs
BUG=b:169196864
Change-Id: Id74baf17fb90147d229c78be90268fdc3ec1badc
Signed-off-by: Aamir Bohra <aamir.bohra@intel.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/49474
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Furquan Shaikh <furquan@google.com>
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/efi/efi_datatype.h | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/src/include/efi/efi_datatype.h b/src/include/efi/efi_datatype.h index f6a20a7056..8766183d7a 100644 --- a/src/include/efi/efi_datatype.h +++ b/src/include/efi/efi_datatype.h @@ -3,66 +3,44 @@ /* Create EFI equivalent datatype in coreboot based on UEFI specification */ #ifndef __EFI_DATATYPE_H__ #define __EFI_DATATYPE_H__ - #include <Base.h> #include <PiPei.h> -#include <Ppi/MpServices.h> /* Basic Data types */ - /* 8-byte unsigned value. */ typedef UINT64 efi_uint64_t; - /* 8-byte signed value. */ typedef INT64 efi_int64_t; - /* 4-byte unsigned value. */ typedef UINT32 efi_uint32_t; - /* 4-byte signed value. */ typedef INT32 efi_int32_t; - /* 2-byte unsigned value. */ typedef UINT16 efi_uint16_t; - /* 2-byte Character. */ typedef CHAR16 efi_char16_t; - /* 2-byte signed value. */ typedef INT16 efi_int16_t; - /* Logical Boolean. */ typedef BOOLEAN efi_boolean_t; - /* 1-byte unsigned value. */ typedef UINT8 efi_uint8_t; - /* 1-byte Character */ typedef CHAR8 efi_char8_t; - /* 1-byte signed value */ typedef INT8 efi_int8_t; - /* Unsigned value of native width. */ typedef UINTN efi_uintn_t; - /* Signed value of native width. */ typedef INTN efi_intn_t; - /* Status codes common to all execution phases */ typedef EFI_STATUS efi_return_status_t; - /* Data structure */ - /* Data structure for EFI_PEI_SERVICE. */ typedef EFI_PEI_SERVICES efi_pei_services; -/* Data structure for UEFI PI Multi-processor PPI */ -typedef EFI_PEI_MP_SERVICES_PPI efi_pei_mp_services_ppi; - /* Structure that describes information about a logical CPU. */ typedef EFI_PROCESSOR_INFORMATION efi_processor_information; - /* * The function prototype for invoking a function on an * Application Processor. |