]> git.proxmox.com Git - mirror_edk2.git/blob - QuarkSocPkg/QuarkNorthCluster/MemoryInit/Pei/meminit.h
QuarkSocPkg: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / QuarkSocPkg / QuarkNorthCluster / MemoryInit / Pei / meminit.h
1 /************************************************************************
2 *
3 * Copyright (c) 2013-2015 Intel Corporation.
4 *
5 * SPDX-License-Identifier: BSD-2-Clause-Patent
6 *
7 ************************************************************************/
8 #ifndef _MEMINIT_H_
9 #define _MEMINIT_H_
10
11 // function prototypes
12 void MemInit(MRCParams_t *mrc_params);
13
14 typedef void (*MemInitFn_t)(MRCParams_t *mrc_params);
15
16 typedef struct MemInit_s {
17 uint16_t post_code;
18 uint16_t boot_path;
19 MemInitFn_t init_fn;
20 } MemInit_t;
21
22 #endif // _MEMINIT_H_