search for: memdetect

Displaying 2 results from an estimated 2 matches for "memdetect".

Did you mean: iedetect
2013 Nov 25
0
Re: [edk2] [PATCH RFC v2 7/7] OvmfPkg: introduce XenMemMapInitialization
...Length); > + > + MtrrSetMemoryAttribute (Entry->BaseAddr, Entry->Length, CacheWriteBack); > + } > + } > +} > + > > VOID > MemMapInitialization ( > @@ -346,7 +416,11 @@ InitializePlatform ( > > XenLeaf = XenDetect (); > > - TopOfMemory = MemDetect (); > + if (XenLeaf != 0) { > + PublishPeiMemory (); > + PcdSetBool (PcdPciAllowFullEnumeration, FALSE); > + } else > + TopOfMemory = MemDetect (); > > if (XenLeaf != 0) { > DEBUG ((EFI_D_INFO, "Xen was detected\n")); > @@ -357,7 +431,10 @@ In...
2013 Nov 19
0
[PATCH RFC v2 0/7] Make OVMF fully working with Xen
...uid/XenInfo.h | 27 ++++++++ OvmfPkg/Include/IndustryStandard/E820.h | 46 +++++++++++++ OvmfPkg/OvmfPkgIa32.dsc | 5 +- OvmfPkg/OvmfPkgIa32X64.dsc | 5 +- OvmfPkg/OvmfPkgX64.dsc | 5 +- OvmfPkg/PlatformPei/MemDetect.c | 36 ++++++++++- OvmfPkg/PlatformPei/Platform.c | 89 +++++++++++++++++++++++++- OvmfPkg/PlatformPei/Platform.h | 10 +++ OvmfPkg/PlatformPei/PlatformPei.inf | 1 + OvmfPkg/PlatformPei/Xen.c | 43 +++++++++---- 13 fi...