]> git.proxmox.com Git - mirror_edk2.git/blob - QuarkSocPkg/QuarkNorthCluster/Include/Ppi/QNCMemoryInit.h
498a42b18b468b16393be73b36bee02dc8da5660
[mirror_edk2.git] / QuarkSocPkg / QuarkNorthCluster / Include / Ppi / QNCMemoryInit.h
1 /** @file
2 Memory Initialization PPI used in EFI PEI interface
3
4 Copyright (c) 2013-2015 Intel Corporation.
5
6 SPDX-License-Identifier: BSD-2-Clause-Patent
7
8 **/
9
10 #ifndef __QNC_MEMORY_INIT_H__
11 #define __QNC_MEMORY_INIT_H__
12
13 #include "mrc.h"
14
15 #define PEI_QNC_MEMORY_INIT_PPI_GUID \
16 {0x21ff1fee, 0xd33a, 0x4fce, {0xa6, 0x5e, 0x95, 0x5e, 0xa3, 0xc4, 0x1f, 0x40}}
17
18
19
20
21 //
22 // PPI Function Declarations
23 //
24 typedef
25 VOID
26 (EFIAPI *PEI_QNC_MEMORY_INIT) (
27 IN OUT MRCParams_t *MRCDATA
28 );
29
30 typedef struct _PEI_QNC_MEMORY_INIT_PPI {
31 PEI_QNC_MEMORY_INIT MrcStart;
32 }PEI_QNC_MEMORY_INIT_PPI;
33
34 extern EFI_GUID gQNCMemoryInitPpiGuid;
35
36 #endif