mirror of
https://github.com/acidanthera/audk.git
synced 2025-07-19 11:44:24 +02:00
https://bugzilla.tianocore.org/show_bug.cgi?id=1373 Replace BSD 2-Clause License with BSD+Patent License. This change is based on the following emails: https://lists.01.org/pipermail/edk2-devel/2019-February/036260.html https://lists.01.org/pipermail/edk2-devel/2018-October/030385.html RFCs with detailed process for the license change: V3: https://lists.01.org/pipermail/edk2-devel/2019-March/038116.html V2: https://lists.01.org/pipermail/edk2-devel/2019-March/037669.html V1: https://lists.01.org/pipermail/edk2-devel/2019-March/037500.html Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Michael D Kinney <michael.d.kinney@intel.com> Reviewed-by: Liming Gao <liming.gao@intel.com>
43 lines
1.2 KiB
C
43 lines
1.2 KiB
C
/** @file
|
|
Header file for Pei Core FV Location PPI.
|
|
|
|
This PPI contains a pointer to the firmware volume which contains the PEI Foundation.
|
|
If the PEI Foundation does not reside in the BFV, then SEC must pass this PPI as a part
|
|
of the PPI list provided to the PEI Foundation Entry Point, otherwise the PEI Foundation
|
|
shall assume that it resides within the BFV.
|
|
|
|
Copyright (c) 2019, Intel Corporation. All rights reserved.<BR>
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
|
|
@par Revision Reference:
|
|
This PPI is defined in UEFI Platform Initialization Specification 1.7 Volume 1:
|
|
Standards
|
|
|
|
**/
|
|
|
|
|
|
#ifndef _EFI_PEI_CORE_FV_LOCATION_H_
|
|
#define _EFI_PEI_CORE_FV_LOCATION_H_
|
|
|
|
///
|
|
/// Global ID for EFI_PEI_CORE_FV_LOCATION_PPI
|
|
///
|
|
#define EFI_PEI_CORE_FV_LOCATION_GUID \
|
|
{ \
|
|
0x52888eae, 0x5b10, 0x47d0, {0xa8, 0x7f, 0xb8, 0x22, 0xab, 0xa0, 0xca, 0xf4 } \
|
|
}
|
|
|
|
///
|
|
/// This PPI provides location of EFI PeiCoreFv.
|
|
///
|
|
typedef struct {
|
|
///
|
|
/// Pointer to the first byte of the firmware volume which contains the PEI Foundation.
|
|
///
|
|
VOID *PeiCoreFvLocation;
|
|
} EFI_PEI_CORE_FV_LOCATION_PPI;
|
|
|
|
extern EFI_GUID gEfiPeiCoreFvLocationPpiGuid;
|
|
|
|
#endif // _EFI_PEI_CORE_FV_LOCATION_H_
|