]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Include/Library/OldPeiCoreEntryPoint.h
Enable Nt32 platform boot to DXE phase.
[mirror_edk2.git] / MdePkg / Include / Library / OldPeiCoreEntryPoint.h
1 /** @file
2 Entry point to the PEI Core
3
4 Copyright (c) 2006, Intel Corporation<BR>
5 All rights reserved. This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
9
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12
13 **/
14
15 #ifndef __MODULE_ENTRY_POINT_H__
16 #define __MODULE_ENTRY_POINT_H__
17
18 /**
19
20 Enrty point to PEI core.
21
22 @param SecCoreData Points to a data structure containing
23 information about the PEI core's
24 operating environment, such as the size
25 and location of temporary RAM, the stack
26 location and the BFV location. The type
27 EFI_SEC_PEI_HAND_OFF is
28
29 @param PpiList Points to a list of one or more PPI
30 descriptors to be installed initially by
31 the PEI core. An empty PPI list consists
32 of a single descriptor with the end-tag
33 EFI_PEI_PPI_DESCRIPTOR_TERMINATE_LIST.
34 As part of its initialization phase, the
35 PEI Foundation will add these SEC-hosted
36 PPIs to its PPI database such that both
37 the PEI Foundation and any modules can
38 leverage the associated service calls
39 and/or code in these early PPIs.
40
41 **/
42 EFI_STATUS
43 EFIAPI
44 _ModuleEntryPoint (
45 IN EFI_PEI_STARTUP_DESCRIPTOR *PeiStartupDescriptor
46 );
47
48 /**
49 Wrapper of enrty point to PEI core.
50
51 @param PeiStartupDescriptor Pointer of start up information.
52
53 @return Status returned by entry points of core and drivers.
54
55 **/
56 EFI_STATUS
57 EFIAPI
58 EfiMain (
59 IN EFI_PEI_STARTUP_DESCRIPTOR *PeiStartupDescriptor
60 );
61
62 /**
63 Call constructs for all libraries. Automatics Generated by tool.
64
65 @param FfsHeader Pointer to header of FFS.
66 @param PeiServices Pointer to the PEI Services Table.
67
68 **/
69 VOID
70 EFIAPI
71 ProcessLibraryConstructorList (
72 IN EFI_FFS_FILE_HEADER *FfsHeader,
73 IN EFI_PEI_SERVICES **PeiServices
74 );
75
76
77 /**
78 Call the list of driver entry points. Automatics Generated by tool.
79
80 @param PeiStartupDescriptor Pointer to startup information .
81 @param OldCoreData Pointer to Original startup information.
82
83 @return Status returned by entry points of drivers.
84
85 **/
86 EFI_STATUS
87 EFIAPI
88 ProcessModuleEntryPointList (
89 IN EFI_PEI_STARTUP_DESCRIPTOR *PeiStartupDescriptor,
90 IN VOID *OldCoreData
91 );
92
93 #endif