1 /** @file 2 3 Copyright (c) 2006, Intel Corporation. All rights reserved.<BR> 4 This program and the accompanying materials 5 are licensed and made available under the terms and conditions of the BSD License 6 which accompanies this distribution. The full text of the license may be found at 7 http://opensource.org/licenses/bsd-license.php 8 9 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 10 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 11 12 Module Name: 13 PpisNeededByDxeCore.h 14 15 Abstract: 16 17 Revision History: 18 19 **/ 20 21 #ifndef _DXELDR_PPIS_NEEDED_BY_DXE_CORE_H_ 22 #define _DXELDR_PPIS_NEEDED_BY_DXE_CORE_H_ 23 24 #include "DxeIpl.h" 25 #include "HobGeneration.h" 26 27 //EFI_STATUS 28 //InstallEfiPeiTransferControl ( 29 // IN OUT EFI_PEI_TRANSFER_CONTROL_PROTOCOL **This 30 // ); 31 32 //EFI_STATUS 33 //InstallEfiPeiFlushInstructionCache ( 34 // IN OUT EFI_PEI_FLUSH_INSTRUCTION_CACHE_PROTOCOL **This 35 // ); 36 37 EFI_STATUS 38 EFIAPI 39 PreparePpisNeededByDxeCore ( 40 IN HOB_TEMPLATE *HobStart 41 ) 42 /*++ 43 44 Routine Description: 45 46 This routine adds the PPI/Protocol Hobs that are consumed by the DXE Core. 47 Normally these come from PEI, but since our PEI was 32-bit we need an 48 alternate source. That is this driver. 49 50 This driver does not consume PEI or DXE services and thus updates the 51 Phit (HOB list) directly 52 53 Arguments: 54 55 HobStart - Pointer to the beginning of the HOB List from PEI 56 57 Returns: 58 59 This function should after it has add it's HOBs 60 61 --*/ 62 ; 63 64 #endif 65