]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Include/PiPei.h
Add PeiCore module for enabling NT32Pkg, please attention this PeiCore does follows...
[mirror_edk2.git] / MdePkg / Include / PiPei.h
1 /** @file
2
3 Root include file for Mde Package SEC, PEIM, PEI_CORE type modules.
4
5 This is the include file for any module of type base. Base modules only use
6 types defined via this include file and can be ported easily to any
7 environment. There are a set of base libraries in the Mde Package that can
8 be used to implement base modules.
9
10 Copyright (c) 2006 - 2007, Intel Corporation
11 All rights reserved. This program and the accompanying materials
12 are licensed and made available under the terms and conditions of the BSD License
13 which accompanies this distribution. The full text of the license may be found at
14 http://opensource.org/licenses/bsd-license.php
15
16 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
17 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
18
19 **/
20
21 #ifndef __PI_PEI_H__
22 #define __PI_PEI_H__
23
24 #include <Uefi/UefiBaseType.h>
25 #include <Pi/PiPeiCis.h>
26 #include <Uefi/UefiMultiPhase.h>
27
28 //
29 // BUGBUG: The EFI_PEI_STARTUP_DESCRIPTOR definition does not follows PI specification.
30 // After enabling PI for Nt32Pkg and tools generate correct autogen for PEI_CORE,
31 // the following structure should be removed at once.
32 //
33 typedef struct {
34 UINTN BootFirmwareVolume;
35 UINTN SizeOfCacheAsRam;
36 EFI_PEI_PPI_DESCRIPTOR *DispatchTable;
37 } EFI_PEI_STARTUP_DESCRIPTOR;
38
39 #endif
40