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