diff options
author | Star Zeng <star.zeng@intel.com> | 2015-05-11 05:16:02 +0000 |
---|---|---|
committer | lzeng14 <lzeng14@Edk2> | 2015-05-11 05:16:02 +0000 |
commit | e919c766d50b1e1f4c9890fb383640c7fd2a3ffe (patch) | |
tree | cf407cbb4d433092909f7992ceb0d5d47e691011 /MdePkg/Include/Pi/PiDxeCis.h | |
parent | a4b833e57304a5579f92716ac3fab4e01a4e5b07 (diff) | |
download | edk2-platforms-e919c766d50b1e1f4c9890fb383640c7fd2a3ffe.tar.xz |
MdePkg: Add memory more reliable definitions.
PiHob.h: EFI_RESOURCE_ATTRIBUTE_MORE_RELIABLE resource attribute.
PiDxeCis: EfiGcdMemoryTypeMoreReliable GCD memory type.
UefiSpec.h: EFI_MEMORY_MORE_RELIABLE memory attribute.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Star Zeng <star.zeng@intel.com>
Reviewed-by: Liming Gao <liming.gao@intel.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@17399 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Include/Pi/PiDxeCis.h')
-rw-r--r-- | MdePkg/Include/Pi/PiDxeCis.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/MdePkg/Include/Pi/PiDxeCis.h b/MdePkg/Include/Pi/PiDxeCis.h index bb5e6a2389..a2208dffc2 100644 --- a/MdePkg/Include/Pi/PiDxeCis.h +++ b/MdePkg/Include/Pi/PiDxeCis.h @@ -53,6 +53,11 @@ typedef enum { /// This memory supports byte-addressable non-volatility.
///
EfiGcdMemoryTypePersistentMemory,
+ ///
+ /// A memory region that provides higher reliability relative to other memory in the
+ /// system. If all memory has the same reliability, then this bit is not used.
+ ///
+ EfiGcdMemoryTypeMoreReliable,
EfiGcdMemoryTypeMaximum
} EFI_GCD_MEMORY_TYPE;
|