CorebootModulePkg/CbParseLib: Support current Coreboot IMD
The latest coreboot use IMD (In Memory Database) to report Tables. This patch adds IMD support in UEFI payload. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Guo Dong <guo.dong@intel.com> Reviewed-by: Maurice Ma <maurice.ma@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@17484 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
@ -1,7 +1,7 @@
|
||||
/** @file
|
||||
Coreboot PEI module include file.
|
||||
|
||||
Copyright (c) 2014, Intel Corporation. All rights reserved.<BR>
|
||||
Copyright (c) 2014 - 2015, Intel Corporation. All rights reserved.<BR>
|
||||
This program and the accompanying materials
|
||||
are licensed and made available under the terms and conditions of the BSD License
|
||||
which accompanies this distribution. The full text of the license may be found at
|
||||
@ -51,6 +51,9 @@
|
||||
|
||||
#define DYN_CBMEM_ALIGN_SIZE (4096)
|
||||
|
||||
#define IMD_ENTRY_MAGIC (~0xC0389481)
|
||||
#define CBMEM_ENTRY_MAGIC (~0xC0389479)
|
||||
|
||||
struct cbmem_entry {
|
||||
UINT32 magic;
|
||||
UINT32 start;
|
||||
@ -66,6 +69,22 @@ struct cbmem_root {
|
||||
struct cbmem_entry entries[0];
|
||||
};
|
||||
|
||||
struct imd_entry {
|
||||
UINT32 magic;
|
||||
UINT32 start_offset;
|
||||
UINT32 size;
|
||||
UINT32 id;
|
||||
};
|
||||
|
||||
struct imd_root {
|
||||
UINT32 max_entries;
|
||||
UINT32 num_entries;
|
||||
UINT32 flags;
|
||||
UINT32 entry_align;
|
||||
UINT32 max_offset;
|
||||
struct imd_entry entries[0];
|
||||
};
|
||||
|
||||
struct cbuint64 {
|
||||
UINT32 lo;
|
||||
UINT32 hi;
|
||||
|
Reference in New Issue
Block a user