1/** @file
2
3Copyright (c) 2006, Intel Corporation. All rights reserved.<BR>
4This program and the accompanying materials
5are licensed and made available under the terms and conditions of the BSD License
6which accompanies this distribution.  The full text of the license may be found at
7http://opensource.org/licenses/bsd-license.php
8
9THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
10WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
11
12Module Name:
13  PpisNeededByDxeCore.h
14
15Abstract:
16
17Revision 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
37EFI_STATUS
38EFIAPI
39PreparePpisNeededByDxeCore (
40  IN  HOB_TEMPLATE  *HobStart
41  )
42/*++
43
44Routine 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
53Arguments:
54
55  HobStart - Pointer to the beginning of the HOB List from PEI
56
57Returns:
58
59  This function should after it has add it's HOBs
60
61--*/
62;
63
64#endif
65