]> git.proxmox.com Git - mirror_edk2.git/blame - MdePkg/Include/Ppi/DxeIpl.h
Formalize comments for Protocols and PPIs.
[mirror_edk2.git] / MdePkg / Include / Ppi / DxeIpl.h
CommitLineData
5879b875 1/** @file\r
2 This file declares DXE Initial Program Load PPI.\r
d7132512 3 When the PEI core is done it calls the DXE IPL PPI to load the DXE Foundation.\r
5879b875 4\r
d7132512 5 Copyright (c) 2006 - 2008, Intel Corporation \r
5879b875 6 All rights reserved. This program and the accompanying materials \r
7 are licensed and made available under the terms and conditions of the BSD License \r
8 which accompanies this distribution. The full text of the license may be found at \r
9 http://opensource.org/licenses/bsd-license.php \r
10\r
11 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, \r
12 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. \r
13\r
5879b875 14 @par Revision Reference:\r
15 This PPI is defined in PI.\r
16 Version 1.0.\r
17\r
18**/\r
19\r
20#ifndef __DXE_IPL_H__\r
21#define __DXE_IPL_H__\r
22\r
23#define EFI_DXE_IPL_PPI_GUID \\r
24 { \\r
25 0xae8ce5d, 0xe448, 0x4437, {0xa8, 0xd7, 0xeb, 0xf5, 0xf1, 0x94, 0xf7, 0x31 } \\r
26 }\r
27\r
28typedef struct _EFI_DXE_IPL_PPI EFI_DXE_IPL_PPI;\r
29\r
30/**\r
31 The architectural PPI that the PEI Foundation invokes when \r
32 there are no additional PEIMs to invoke.\r
33\r
dafa11b1 34 This function is invoked by the PEI Foundation.\r
35 The PEI Foundation will invoke this service when there are\r
36 no additional PEIMs to invoke in the system.\r
37 If this PPI does not exist, it is an error condition and\r
38 an ill-formed firmware set. The DXE IPL PPI should never\r
39 return after having been invoked by the PEI Foundation.\r
40 The DXE IPL PPI can do many things internally, including the following:\r
41 - Invoke the DXE entry point from a firmware volume\r
42 - Invoke the recovery processing modules\r
43 - Invoke the S3 resume modules\r
44\r
5879b875 45 @param This Pointer to the DXE IPL PPI instance\r
46 @param PeiServices Pointer to the PEI Services Table.\r
47 @param HobList Pointer to the list of Hand-Off Block (HOB) entries.\r
48\r
d7132512
LG
49 @retval EFI_SUCCESS Upon this return code, the PEI Foundation should enter\r
50 some exception handling.Under normal circumstances, \r
51 the DXE IPL PPI should not return.\r
5879b875 52\r
53**/\r
54typedef\r
55EFI_STATUS\r
8b13229b 56(EFIAPI *EFI_DXE_IPL_ENTRY)(\r
dafa11b1 57 IN CONST EFI_DXE_IPL_PPI *This,\r
5879b875 58 IN EFI_PEI_SERVICES **PeiServices,\r
59 IN EFI_PEI_HOB_POINTERS HobList\r
60 );\r
61\r
dafa11b1 62///\r
63/// Final service to be invoked by the PEI Foundation.\r
64/// The DXE IPL PPI is responsible for locating and loading the DXE Foundation.\r
65/// The DXE IPL PPI may use PEI services to locate and load the DXE Foundation.\r
66///\r
5879b875 67struct _EFI_DXE_IPL_PPI {\r
68 EFI_DXE_IPL_ENTRY Entry;\r
69};\r
70\r
71extern EFI_GUID gEfiDxeIplPpiGuid;\r
72\r
73#endif\r