search for: xenmemmapinitialization

Displaying 3 results from an estimated 3 matches for "xenmemmapinitialization".

2013 Nov 25
0
Re: [edk2] [PATCH RFC v2 7/7] OvmfPkg: introduce XenMemMapInitialization
...nLib.h> > +#include <Library/MtrrLib.h> > > #include "Platform.h" > #include "Cmos.h" > @@ -163,6 +167,72 @@ AddUntestedMemoryRangeHob ( > AddUntestedMemoryBaseSizeHob (MemoryBase, (UINT64)(MemoryLimit - MemoryBase)); > } > > +VOID > +XenMemMapInitialization ( > + VOID > + ) > +{ > + EFI_HOB_GUID_TYPE *GuidHob; > + EFI_XEN_INFO *Info; > + > + DEBUG ((EFI_D_ERROR, "Using memory map provided by Xen\n")); > + > + GuidHob = GetFirstGuidHob (&gEfiXenInfoGuid); > + > + ASSERT (GuidHob != NULL); > + &gt...
2013 Nov 19
0
[PATCH RFC v2 0/7] Make OVMF fully working with Xen
.... Wei. Wei Liu (7): MdeModulePkg: introduce PcdPciAllowFullEnumeration OvmfPkg: introduce E820.h OvmfPkg: define EFI_XEN_OVMF_INFO and extend XenInfo OvmfPkg: extract OVMF info passed by Xen hvmloader OvmfPkg: detect Xen earlier OvmfPkg: introduce PublishPeiMemory OvmfPkg: introduce XenMemMapInitialization MdeModulePkg/Bus/Pci/PciBusDxe/PciBus.c | 5 +- MdeModulePkg/Bus/Pci/PciBusDxe/PciBusDxe.inf | 1 + MdeModulePkg/MdeModulePkg.dec | 3 + OvmfPkg/Include/Guid/XenInfo.h | 27 ++++++++ OvmfPkg/Include/IndustryStandard/E820.h | 46 +++++++++++++ Ov...
2013 Nov 17
6
Re: [edk2] [PATCH RFC 0/7] OvmfPkg: make OVMF fully working with Xen
...egacyBiosInterface.h instead? > OK, no problem. Wei >> OvmfPkg: define EFI_XEN_OVMF_INFO and extend XenInfo >> OvmfPkg: extract OVMF info passed by Xen hvmloader >> OvmfPkg: detect Xen earlier >> OvmfPkg: introduce PublishPeiMemory >> OvmfPkg: introduce XenMemMapInitialization > > A quick glance makes me think the memmap stuff could tweaked, but I''ll > wait until it seems like this actually could work before I look at > this too close. :) > > -Jordan > > _______________________________________________ > Xen-devel mailing list > Xen-...