1 /** @file
2 Memory Initialization PPI used in EFI PEI interface
3 
4 Copyright (c) 2013-2015 Intel Corporation.
5 
6 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 **/
15 
16 #ifndef __QNC_MEMORY_INIT_H__
17 #define __QNC_MEMORY_INIT_H__
18 
19 #include "mrc.h"
20 
21 #define PEI_QNC_MEMORY_INIT_PPI_GUID \
22   {0x21ff1fee, 0xd33a, 0x4fce, {0xa6, 0x5e, 0x95, 0x5e, 0xa3, 0xc4, 0x1f, 0x40}}
23 
24 
25 
26 
27 //
28 // PPI Function Declarations
29 //
30 typedef
31 VOID
32 (EFIAPI *PEI_QNC_MEMORY_INIT) (
33   IN OUT    MRCParams_t     *MRCDATA
34   );
35 
36 typedef struct _PEI_QNC_MEMORY_INIT_PPI {
37   PEI_QNC_MEMORY_INIT     MrcStart;
38 }PEI_QNC_MEMORY_INIT_PPI;
39 
40 extern EFI_GUID gQNCMemoryInitPpiGuid;
41 
42 #endif
43