* A VM failed to boot when I changed the gUefiOvmfPkgTokenSpaceGuid.PcdPciMmio64Size
@ 2019-01-23 11:40 Wuzongyong (Euler Dept)
2019-01-23 15:57 ` Laszlo Ersek
0 siblings, 1 reply; 6+ messages in thread
From: Wuzongyong (Euler Dept) @ 2019-01-23 11:40 UTC (permalink / raw)
To: edk2-devel@lists.01.org; +Cc: Wanzongshun (Vincent), chenlixin
Hi,
Recently I do a test with edk2 on rhel platform. I resized the gUefiOvmfPkgTokenSpaceGuid.PcdPciMmio64Size value to 1TB for supporting multiple GPUs passthrough which have large bars .
But when I started a VM with a virtio nic and booted from the changed OVMF, it seems the VM failed to boot before loading ipxe.
The uefi error log is like this:
!!!! X64 Exception Type - 0E(#PF - Page-Fault) CPU Apic ID - 00000000 !!!!
ExceptionData - 000000000000000B I:0 R:1 U:0 W:1 P:1 PK:0 S:0
RIP - 00000000BE4AD7F7, CS - 0000000000000038, RFLAGS - 0000000000010206
RAX - 0000000000000000, RCX - 0000000000000014, RDX - 0000010000000014
RBX - 00000000BE4BEFE0, RSP - 00000000BFEDE6F8, RBP - 00000000BE4BEFF0
RSI - 00000000BE4BEFF0, RDI - 00000000BE4BEFE0
R8 - 0000000000000000, R9 - 0000000000000000, R10 - 0000000000000000
R11 - 00000000BE4BB900, R12 - 00000000BE4BEFD0, R13 - 0000000000000060
R14 - 0000000000000084, R15 - 0000000000000070
DS - 0000000000000030, ES - 0000000000000030, FS - 0000000000000030
GS - 0000000000000030, SS - 0000000000000030
CR0 - 0000000080010033, CR2 - 0000010000000014, CR3 - 00000000BF6BA000
CR4 - 0000000000000668, CR8 - 0000000000000000
DR0 - 0000000000000000, DR1 - 0000000000000000, DR2 - 0000000000000000
DR3 - 0000000000000000, DR6 - 00000000FFFF0FF0, DR7 - 0000000000000400
GDTR - 00000000BF6A8A98 0000000000000047, LDTR - 0000000000000000
IDTR - 00000000BF29E018 0000000000000FFF, TR - 0000000000000000
FXSAVE_STATE - 00000000BFEDE350
!!!! Find image 1af41000.efidrv (ImageBase=00000000BE499000, EntryPoint=00000000BE49F1EB) !!!!
But when I decrease the PcdPciMmio64Size to 10 * 32 GB, the VM booted successfully.
I'm not familiar with uefi, could you please point out what wrong I have done?
Thanks,
Zongyong Wu
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: A VM failed to boot when I changed the gUefiOvmfPkgTokenSpaceGuid.PcdPciMmio64Size
2019-01-23 11:40 A VM failed to boot when I changed the gUefiOvmfPkgTokenSpaceGuid.PcdPciMmio64Size Wuzongyong (Euler Dept)
@ 2019-01-23 15:57 ` Laszlo Ersek
2019-01-24 2:35 ` Wuzongyong (Euler Dept)
0 siblings, 1 reply; 6+ messages in thread
From: Laszlo Ersek @ 2019-01-23 15:57 UTC (permalink / raw)
To: Wuzongyong (Euler Dept)
Cc: edk2-devel@lists.01.org, chenlixin, Wanzongshun (Vincent),
Alex Williamson, Gerd Hoffmann, Dr. David Alan Gilbert
Hi,
(adding Alex, Gerd, Dave)
On 01/23/19 12:40, Wuzongyong (Euler Dept) wrote:
>
> Hi,
>
> Recently I do a test with edk2 on rhel platform.
Cool :) I don't frequently see RHEL-related reports on this list.
> I resized the gUefiOvmfPkgTokenSpaceGuid.PcdPciMmio64Size value to 1TB for supporting multiple GPUs passthrough which have large bars .
Out of curiosity, did you modify the PCD directly (that is, by changing
the DSC file, or using the --pcd build option), or else, did you use the
QEMU switch
-fw_cfg name=opt/ovmf/X-PciMmio64Mb,string=1048576
that was described in commit 7e5b1b670c38 ("OvmfPkg: PlatformPei:
determine the 64-bit PCI host aperture for X64 DXE", 2016-03-23)?
> But when I started a VM with a virtio nic and booted from the changed OVMF,
Ah, OK, you wrote "changed OVMF". I guess you modified the DSC then.
So, for a bit more convenience, see above: the aperture size can be set
on the QEMU command line too. The fw_cfg file name carries "X-" in the
name so that it's clear that the knob is experimental and might change
in the future incompatibly.
> it seems the VM failed to boot before loading ipxe.
> The uefi error log is like this:
>
> !!!! X64 Exception Type - 0E(#PF - Page-Fault) CPU Apic ID - 00000000 !!!!
> ExceptionData - 000000000000000B I:0 R:1 U:0 W:1 P:1 PK:0 S:0
> RIP - 00000000BE4AD7F7, CS - 0000000000000038, RFLAGS - 0000000000010206
> RAX - 0000000000000000, RCX - 0000000000000014, RDX - 0000010000000014
> RBX - 00000000BE4BEFE0, RSP - 00000000BFEDE6F8, RBP - 00000000BE4BEFF0
> RSI - 00000000BE4BEFF0, RDI - 00000000BE4BEFE0
> R8 - 0000000000000000, R9 - 0000000000000000, R10 - 0000000000000000
> R11 - 00000000BE4BB900, R12 - 00000000BE4BEFD0, R13 - 0000000000000060
> R14 - 0000000000000084, R15 - 0000000000000070
> DS - 0000000000000030, ES - 0000000000000030, FS - 0000000000000030
> GS - 0000000000000030, SS - 0000000000000030
> CR0 - 0000000080010033, CR2 - 0000010000000014, CR3 - 00000000BF6BA000
> CR4 - 0000000000000668, CR8 - 0000000000000000
> DR0 - 0000000000000000, DR1 - 0000000000000000, DR2 - 0000000000000000
> DR3 - 0000000000000000, DR6 - 00000000FFFF0FF0, DR7 - 0000000000000400
> GDTR - 00000000BF6A8A98 0000000000000047, LDTR - 0000000000000000
> IDTR - 00000000BF29E018 0000000000000FFF, TR - 0000000000000000
> FXSAVE_STATE - 00000000BFEDE350
> !!!! Find image 1af41000.efidrv (ImageBase=00000000BE499000, EntryPoint=00000000BE49F1EB) !!!!
"1af41000.efidrv" is the iPXE UEFI option ROM for the virtio-net NIC.
QEMU loads the combined BIOS+UEFI option ROM from an external file into
the ROM BAR of the virtio-net NIC, and then the PciBusDxe driver built
into OVMF makes sure the driver is dispatched. (The dispatch is deferred
until after EndOfDxe, in BDS.)
The external file that provides this ROM image may be known under
different pathnames. On RHEL7 for example, it is installed as
"/usr/share/ipxe/1af41000.rom", as part of the ipxe-roms-qemu package;
however QEMU loads it through the symlink
"/usr/share/qemu-kvm/pxe-virtio.rom" that is part of the qemu-kvm-rhev
package.
If you use upstream QEMU, then the file is
"$prefix/share/qemu/efi-virtio.rom".
(1) Either way, if you'd like to check whether this issue is specific to
the iPXE option ROM, you could prevent QEMU from loading the ROM image
into the NIC's ROM BAR, and retest. The QEMU option for that is
-device virtio-net-pci,[some properties,]romfile=''
The corresponging domain XML element is
<interface type='network'>
<rom enabled='no'/>
</interface>
In this case, virtio-net NICs will be bound by OVMF's built-in
virtio-net driver (OvmfPkg/VirtioNetDxe).
> But when I decrease the PcdPciMmio64Size to 10 * 32 GB, the VM booted successfully.
> I'm not familiar with uefi, could you please point out what wrong I have done?
(2) One important factor to check (on your host) is:
$ grep 'address sizes' /proc/cpuinfo
Because, the size that you choose for the 64-bit PCI MMIO aperture
influences the total address space size (the "address width") for which
the DXE IPL PEIM in OVMF has to create page tables (1:1
virtual->physical mapping). When using an aperture >= 1TB, this address
width is at least 40.
And, if you use KVM with nested paging enabled ("ept" on Intel, "npt" on
AMD), *but* the physical address size of your processor is *smaller*
than 40 (i.e. smaller than the address width required by the guest),
then accesses to high addresses in the guest will silently fail (usually
with very bad results).
(3) If you confirm that your physical CPU has a phys addr size that is
large enough, then another test could be to enable 1GB pages in the VCPU
model. Pass
-cpu [whatever model you already use],+pdpe1gb
The equivalent libvirt domain XML fragment would be
<cpu ...>
<feature policy='require' name='pdpe1gb'/>
</cpu>
(4) Assuming you are testing upstream OVMF, if you rebuild it with the
following switch:
--pcd gEfiMdePkgTokenSpaceGuid.PcdDebugPrintErrorLevel=0x8040004F
and then boot it on QEMU with
-global isa-debugcon.iobase=0x402 -debugcon file:ovmf.log
then I might be able to tell you more, from "ovmf.log".
(Downstream OVMF is already built with that PCD setting.)
The libvirt domain XML knob for capturing the OVMF debug log (the QEMU
debug port) is a bit more involved. First, modify the root element of
the domain XML as follows:
<domain
type='kvm'
xmlns:qemu='http://libvirt.org/schemas/domain/qemu/1.0'
>
then (in the same editing session) add the following near the end, just
before </domain>:
<qemu:commandline>
<qemu:arg value='-global'/>
<qemu:arg value='isa-debugcon.iobase=0x402'/>
<qemu:arg value='-debugcon'/>
<qemu:arg value='file:/tmp/ovmf.log'/>
</qemu:commandline>
(BTW this is also how you could hook the "X-PciMmio64Mb" setting from
the top into the domain XML.)
Thanks!
Laszlo
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: A VM failed to boot when I changed the gUefiOvmfPkgTokenSpaceGuid.PcdPciMmio64Size
2019-01-23 15:57 ` Laszlo Ersek
@ 2019-01-24 2:35 ` Wuzongyong (Euler Dept)
2019-01-24 8:21 ` Laszlo Ersek
0 siblings, 1 reply; 6+ messages in thread
From: Wuzongyong (Euler Dept) @ 2019-01-24 2:35 UTC (permalink / raw)
To: Laszlo Ersek
Cc: edk2-devel@lists.01.org, chenlixin, Wanzongshun (Vincent),
Alex Williamson, Gerd Hoffmann, Dr. David Alan Gilbert
[-- Attachment #1: Type: text/plain, Size: 7032 bytes --]
> Hi,
>
> (adding Alex, Gerd, Dave)
>
> On 01/23/19 12:40, Wuzongyong (Euler Dept) wrote:
> >
> > Hi,
> >
> > Recently I do a test with edk2 on rhel platform.
>
> Cool :) I don't frequently see RHEL-related reports on this list.
>
> > I resized the gUefiOvmfPkgTokenSpaceGuid.PcdPciMmio64Size value to 1TB
> for supporting multiple GPUs passthrough which have large bars .
>
> Out of curiosity, did you modify the PCD directly (that is, by changing
> the DSC file, or using the --pcd build option), or else, did you use the
> QEMU switch
>
> -fw_cfg name=opt/ovmf/X-PciMmio64Mb,string=1048576
>
> that was described in commit 7e5b1b670c38 ("OvmfPkg: PlatformPei:
> determine the 64-bit PCI host aperture for X64 DXE", 2016-03-23)?
>
I have tried both methods you mentioned and the result is the same.
> > But when I started a VM with a virtio nic and booted from the changed
> > OVMF,
>
> Ah, OK, you wrote "changed OVMF". I guess you modified the DSC then.
>
> So, for a bit more convenience, see above: the aperture size can be set on
> the QEMU command line too. The fw_cfg file name carries "X-" in the name
> so that it's clear that the knob is experimental and might change in the
> future incompatibly.
>
> > it seems the VM failed to boot before loading ipxe.
> > The uefi error log is like this:
> >
> > !!!! X64 Exception Type - 0E(#PF - Page-Fault) CPU Apic ID -
> 00000000 !!!!
> > ExceptionData - 000000000000000B I:0 R:1 U:0 W:1 P:1 PK:0 S:0 RIP -
> > 00000000BE4AD7F7, CS - 0000000000000038, RFLAGS - 0000000000010206 RAX
> > - 0000000000000000, RCX - 0000000000000014, RDX - 0000010000000014 RBX
> > - 00000000BE4BEFE0, RSP - 00000000BFEDE6F8, RBP - 00000000BE4BEFF0 RSI
> > - 00000000BE4BEFF0, RDI - 00000000BE4BEFE0
> > R8 - 0000000000000000, R9 - 0000000000000000, R10 - 0000000000000000
> > R11 - 00000000BE4BB900, R12 - 00000000BE4BEFD0, R13 - 0000000000000060
> > R14 - 0000000000000084, R15 - 0000000000000070 DS - 0000000000000030,
> > ES - 0000000000000030, FS - 0000000000000030 GS - 0000000000000030, SS
> > - 0000000000000030
> > CR0 - 0000000080010033, CR2 - 0000010000000014, CR3 - 00000000BF6BA000
> > CR4 - 0000000000000668, CR8 - 0000000000000000
> > DR0 - 0000000000000000, DR1 - 0000000000000000, DR2 - 0000000000000000
> > DR3 - 0000000000000000, DR6 - 00000000FFFF0FF0, DR7 - 0000000000000400
> > GDTR - 00000000BF6A8A98 0000000000000047, LDTR - 0000000000000000 IDTR
> > - 00000000BF29E018 0000000000000FFF, TR - 0000000000000000
> > FXSAVE_STATE - 00000000BFEDE350 !!!! Find image 1af41000.efidrv
> > (ImageBase=00000000BE499000, EntryPoint=00000000BE49F1EB) !!!!
>
> "1af41000.efidrv" is the iPXE UEFI option ROM for the virtio-net NIC.
> QEMU loads the combined BIOS+UEFI option ROM from an external file into
> the ROM BAR of the virtio-net NIC, and then the PciBusDxe driver built
> into OVMF makes sure the driver is dispatched. (The dispatch is deferred
> until after EndOfDxe, in BDS.)
>
> The external file that provides this ROM image may be known under
> different pathnames. On RHEL7 for example, it is installed as
> "/usr/share/ipxe/1af41000.rom", as part of the ipxe-roms-qemu package;
> however QEMU loads it through the symlink "/usr/share/qemu-kvm/pxe-
> virtio.rom" that is part of the qemu-kvm-rhev package.
>
> If you use upstream QEMU, then the file is "$prefix/share/qemu/efi-
> virtio.rom".
>
> (1) Either way, if you'd like to check whether this issue is specific to
> the iPXE option ROM, you could prevent QEMU from loading the ROM image
> into the NIC's ROM BAR, and retest. The QEMU option for that is
>
> -device virtio-net-pci,[some properties,]romfile=''
>
> The corresponging domain XML element is
>
> <interface type='network'>
> <rom enabled='no'/>
> </interface>
>
> In this case, virtio-net NICs will be bound by OVMF's built-in virtio-net
> driver (OvmfPkg/VirtioNetDxe).
>
The problem goes away indeed if I prevent QEMU from loading the ROM image as your guide.
So is this problem related to the iPXE option ROM?
I rebuild the OVMF with debug enabled, and attach the logs I collect, one for allowing QEMU to
Load the ROM image and the other one for prevent it.
> > But when I decrease the PcdPciMmio64Size to 10 * 32 GB, the VM booted
> successfully.
> > I'm not familiar with uefi, could you please point out what wrong I have
> done?
>
> (2) One important factor to check (on your host) is:
>
> $ grep 'address sizes' /proc/cpuinfo
>
> Because, the size that you choose for the 64-bit PCI MMIO aperture
> influences the total address space size (the "address width") for which
> the DXE IPL PEIM in OVMF has to create page tables (1:1
> virtual->physical mapping). When using an aperture >= 1TB, this address
> width is at least 40.
>
> And, if you use KVM with nested paging enabled ("ept" on Intel, "npt" on
> AMD), *but* the physical address size of your processor is *smaller* than
> 40 (i.e. smaller than the address width required by the guest), then
> accesses to high addresses in the guest will silently fail (usually with
> very bad results).
>
The physical address bits of CPUs I use is 40.
host:/home/wzy # grep 'address sizes' /proc/cpuinfo
address sizes : 40 bits physical, 48 bits virtual
address sizes : 40 bits physical, 48 bits virtual
address sizes : 40 bits physical, 48 bits virtual
address sizes : 40 bits physical, 48 bits virtual
>
> (3) If you confirm that your physical CPU has a phys addr size that is
> large enough, then another test could be to enable 1GB pages in the VCPU
> model. Pass
>
> -cpu [whatever model you already use],+pdpe1gb
>
> The equivalent libvirt domain XML fragment would be
>
> <cpu ...>
> <feature policy='require' name='pdpe1gb'/>
> </cpu>
>
>
> (4) Assuming you are testing upstream OVMF, if you rebuild it with the
> following switch:
>
> --pcd gEfiMdePkgTokenSpaceGuid.PcdDebugPrintErrorLevel=0x8040004F
>
> and then boot it on QEMU with
>
> -global isa-debugcon.iobase=0x402 -debugcon file:ovmf.log
>
> then I might be able to tell you more, from "ovmf.log".
>
> (Downstream OVMF is already built with that PCD setting.)
>
> The libvirt domain XML knob for capturing the OVMF debug log (the QEMU
> debug port) is a bit more involved. First, modify the root element of the
> domain XML as follows:
>
> <domain
> type='kvm'
> xmlns:qemu='http://libvirt.org/schemas/domain/qemu/1.0'
> >
>
> then (in the same editing session) add the following near the end, just
> before </domain>:
>
> <qemu:commandline>
> <qemu:arg value='-global'/>
> <qemu:arg value='isa-debugcon.iobase=0x402'/>
> <qemu:arg value='-debugcon'/>
> <qemu:arg value='file:/tmp/ovmf.log'/>
> </qemu:commandline>
>
> (BTW this is also how you could hook the "X-PciMmio64Mb" setting from the
> top into the domain XML.)
>
> Thanks!
> Laszlo
[-- Attachment #2: prevent_load_iPXE.log.txt --]
[-- Type: text/plain, Size: 105777 bytes --]
SecCoreStartupWithStack(0xFFFCC000, 0x818000)
Register PPI Notify: DCD0BE23-9586-40F4-B643-06522CED4EDE
Install PPI: 8C8CE578-8A3D-4F1C-9935-896185C32DD3
Install PPI: 5473C07A-3DCB-4DCA-BD6F-1E9689E7349A
The 0th FV start address is 0x00000820000, size is 0x000E0000, handle is 0x820000
Register PPI Notify: 49EDB1C1-BF21-4761-BB12-EB0031AABB39
Register PPI Notify: EA7CA24B-DED5-4DAD-A389-BF827E8F9B38
Install PPI: B9E0ABFE-5979-4914-977F-6DEE78C278A6
Install PPI: DBE23AA9-A345-4B97-85B6-B226F1617389
Loading PEIM at 0x0000082EA60 EntryPoint=0x0000082ECA0 PcdPeim.efi
Install PPI: 06E81C58-4AD7-44BC-8390-F10265F72480
Install PPI: 01F34D25-4DE2-23AD-3FF3-36353FF323F1
Install PPI: 4D8B155B-C059-4C8F-8926-06FD4331DB8A
Install PPI: A60C6B59-E459-425D-9C69-0BCC9CB27D81
Loading PEIM at 0x00000834BA0 EntryPoint=0x00000834DE0 ReportStatusCodeRouterPei.efi
Install PPI: 0065D394-9951-4144-82A3-0AFC8579C251
Install PPI: 229832D3-7A30-4B36-B827-F40CB7D45436
Loading PEIM at 0x000008384A0 EntryPoint=0x000008386E0 StatusCodeHandlerPei.efi
Loading PEIM at 0x0000083C420 EntryPoint=0x0000083C660 PlatformPei.efi
Select Item: 0x0
FW CFG Signature: 0x554D4551
Select Item: 0x1
FW CFG Revision: 0x3
QemuFwCfg interface (DMA) is supported.
Platform PEIM Loaded
CMOS:
00: 09 00 33 00 02 00 05 24 01 19 26 02 00 80 00 00
10: 50 00 00 00 07 80 02 FF FF 00 00 00 00 00 00 00
20: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
30: FF FF 20 00 00 BF 00 20 30 00 00 00 00 12 00 00
40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
50: 00 00 00 00 00 00 00 00 00 00 00 00 40 00 00 00
60: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
70: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
Select Item: 0x19
Select Item: 0x27
S3 support was detected on QEMU
Install PPI: 7408D748-FC8C-4EE6-9288-C4BEC092A410
Select Item: 0x19
Select Item: 0x24
Select Item: 0x19
Select Item: 0x19
GetFirstNonAddress: Pci64Base=0x10000000000 Pci64Size=0x10000000000
Select Item: 0x5
MaxCpuCountInitialization: QEMU reports 1 processor(s)
PublishPeiMemory: mPhysMemAddressWidth=41 PeiMemoryCap=73748 KB
PeiInstallPeiMemory MemoryBegin 0xBB773000, MemoryLength 0x4805000
QemuInitializeRam called
Select Item: 0x19
Select Item: 0x24
Allocated Memory unaligned: Address = 0xBFF48000, Pages = 0x30, Type = 6
After aligning to 0x10000 bytes: Address = 0xBFF50000, Pages = 0x20
Updated before-mem HOB with BaseAddress = BFF48000, Length = 8000, MemoryType = 7
Created aligned-mem HOB with BaseAddress = BFF50000, Length = 20000, MemoryType = 6
Created after-mem HOB with BaseAddress = BFF70000, Length = 8000, MemoryType = 7
Reserved variable store memory: 0xBFF50000; size: 128kb
Platform PEI Firmware Volume Initialization
Install PPI: 49EDB1C1-BF21-4761-BB12-EB0031AABB39
Notify: PPI Guid: 49EDB1C1-BF21-4761-BB12-EB0031AABB39, Peim notify entry point: 823C37
The 1th FV start address is 0x00000900000, size is 0x00A00000, handle is 0x900000
Select Item: 0x19
Select Item: 0x19
Select Item: 0x19
Temp Stack : BaseAddress=0x814000 Length=0x4000
Temp Heap : BaseAddress=0x810000 Length=0x4000
Total temporary memory: 32768 bytes.
temporary memory stack ever used: 16384 bytes.
temporary memory heap used: 8000 bytes.
Old Stack size 16384, New stack size 131072
Stack Hob: BaseAddress=0xBB773000 Length=0x20000
Heap Offset = 0xBAF83000 Stack Offset = 0xBAF7B000
TemporaryRamMigration(0x810000, 0xBB78F000, 0x8000)
Loading PEIM at 0x000BFF38000 EntryPoint=0x000BFF38240 PeiCore.efi
Reinstall PPI: 8C8CE578-8A3D-4F1C-9935-896185C32DD3
Reinstall PPI: 5473C07A-3DCB-4DCA-BD6F-1E9689E7349A
Reinstall PPI: B9E0ABFE-5979-4914-977F-6DEE78C278A6
Install PPI: F894643D-C449-42D1-8EA8-85BDD8C65BDE
Loading PEIM at 0x000BFF31000 EntryPoint=0x000BFF31240 DxeIpl.efi
Install PPI: 1A36E4E7-FAB6-476A-8E75-695A0576FDD7
Install PPI: 0AE8CE5D-E448-4437-A8D7-EBF5F194F731
Loading PEIM at 0x000BFF29000 EntryPoint=0x000BFF29240 S3Resume2Pei.efi
Install PPI: 6D582DBC-DB85-4514-8FCC-5ADF6227B147
Loading PEIM at 0x000BFF1E000 EntryPoint=0x000BFF1E240 CpuMpPei.efi
AP Loop Mode is 1
Does not find any stored CPU BIST information from PPI!
APICID - 0x00000000, BIST - 0x00000000
Install PPI: 9E9F374B-8F16-4230-9824-5846EE766A97
Install PPI: EE16160A-E8BE-47A6-820A-C6900DB0250A
DXE IPL Entry
Loading PEIM at 0x000BFEED000 EntryPoint=0x000BFEED240 DxeCore.efi
Loading DXE CORE at 0x000BFEED000 EntryPoint=0x000BFEED240
Install PPI: 605EA650-C65C-42E1-BA80-91A52AB618C6
CoreInitializeMemoryServices:
BaseAddress - 0xBB797000 Length - 0x3F31000 MinimalMemorySizeNeeded - 0x10F4000
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BFF117B8
ProtectUefiImageCommon - 0xBFF117B8
- 0x00000000BFEED000 - 0x0000000000028000
HOBLIST address in DXE = 0xBF4DD018
Memory Allocation 0x0000000A 0xBFF78000 - 0xBFFFFFFF
Memory Allocation 0x0000000A 0x810000 - 0x817FFF
Memory Allocation 0x0000000A 0x807000 - 0x807FFF
Memory Allocation 0x0000000A 0x800000 - 0x805FFF
Memory Allocation 0x0000000A 0x806000 - 0x806FFF
Memory Allocation 0x00000007 0xBFF48000 - 0xBFF4FFFF
Memory Allocation 0x00000006 0xBFF50000 - 0xBFF6FFFF
Memory Allocation 0x00000007 0xBFF70000 - 0xBFF77FFF
Memory Allocation 0x0000000A 0x820000 - 0x8FFFFF
Memory Allocation 0x00000004 0x900000 - 0x12FFFFF
Memory Allocation 0x00000004 0xBFECD000 - 0xBFEECFFF
Memory Allocation 0x00000003 0xBFF47000 - 0xBFF47FFF
Memory Allocation 0x00000003 0xBFF38000 - 0xBFF46FFF
Memory Allocation 0x00000003 0xBFF31000 - 0xBFF37FFF
Memory Allocation 0x00000003 0xBFF29000 - 0xBFF30FFF
Memory Allocation 0x00000003 0xBFF1E000 - 0xBFF28FFF
Memory Allocation 0x00000004 0xBFF15000 - 0xBFF1DFFF
Memory Allocation 0x00000003 0xBFEED000 - 0xBFF14FFF
Memory Allocation 0x00000003 0xBFEED000 - 0xBFF14FFF
Memory Allocation 0x00000004 0xBFECD000 - 0xBFEECFFF
Memory Allocation 0x00000004 0xBF6C8000 - 0xBFECCFFF
Memory Allocation 0x00000004 0xBB773000 - 0xBB792FFF
FV Hob 0x900000 - 0x12FFFFF
InstallProtocolInterface: D8117CFE-94A6-11D4-9A3A-0090273FC14D BFF11370
InstallProtocolInterface: 8F644FA9-E850-4DB1-9CE2-0B44698E8DA4 BF4D9D30
InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B BF4D9E18
InstallProtocolInterface: 220E73B6-6BDB-4413-8405-B974B108619A BF4D8CB0
InstallProtocolInterface: EE4E5898-3914-4259-9D6E-DC7BD79403CF BFF11728
Loading driver 9B680FCE-AD6B-4F3A-B60B-F59899003443
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BF0EA040
Loading driver at 0x000BF657000 EntryPoint=0x000BF657271 DevicePathDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BF0EAF18
ProtectUefiImageCommon - 0xBF0EA040
- 0x00000000BF657000 - 0x000000000000BD20
InstallProtocolInterface: 0379BE4E-D706-437D-B037-EDB82FB772A4 BF661FB0
InstallProtocolInterface: 8B843E20-8132-4852-90CC-551A4E4A7F1C BF661FA0
InstallProtocolInterface: 05C99A21-C70F-4AD2-8A5F-35DF3343F51E BF661F90
Loading driver 80CF7257-87AB-47F9-A3FE-D50B76D89541
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BF0EA4C0
Loading driver at 0x000BF64F000 EntryPoint=0x000BF64F271 PcdDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BF0EA818
ProtectUefiImageCommon - 0xBF0EA4C0
- 0x00000000BF64F000 - 0x00000000000079A0
InstallProtocolInterface: 11B34006-D85B-4D0A-A290-D5A571310EF7 BF656510
InstallProtocolInterface: 13A3F0F6-264A-3EF0-F2E0-DEC512342F34 BF656480
InstallProtocolInterface: 5BE40F57-FA68-4610-BBBF-E9C5FCDAD365 BF656460
InstallProtocolInterface: FD0F4478-0EFD-461D-BA2D-E58C45FD5F5E BF656450
Loading driver 733CBAC2-B23F-4B92-BC8E-FB01CE5907B7
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BF0F64C0
Loading driver at 0x000BF68A000 EntryPoint=0x000BF68B031 FvbServicesRuntimeDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BF0EBF18
ProtectUefiImageCommon - 0xBF0F64C0
- 0x00000000BF68A000 - 0x0000000000009000
QEMU Flash: Attempting flash detection at FFE00010
QemuFlashDetected => FD behaves as ROM
QemuFlashDetected => No
QEMU flash was not detected. Writable FVB is not being installed.
Error: Image at 000BF68A000 start failed: Write Protected
Loading driver D93CE3D8-A7EB-4730-8C8E-CC466A9ECC3C
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BF0F64C0
Loading driver at 0x000BF68A000 EntryPoint=0x000BF68B031 ReportStatusCodeRouterRuntimeDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BF0F3F98
ProtectUefiImageCommon - 0xBF0F64C0
- 0x00000000BF68A000 - 0x0000000000009000
InstallProtocolInterface: 86212936-0E76-41C8-A03A-2AF2FC1C39E2 BF691010
InstallProtocolInterface: D2B2B828-0826-48A7-B3DF-983C006024F0 BF691020
Loading driver B601F8C4-43B7-4784-95B1-F4226CB40CEE
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BF0F3140
Loading driver at 0x000BF682000 EntryPoint=0x000BF683031 RuntimeDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BF0F3398
ProtectUefiImageCommon - 0xBF0F3140
- 0x00000000BF682000 - 0x0000000000008000
InstallProtocolInterface: B7DFB4E1-052F-449F-87BE-9818FC91B733 BF688010
Loading driver F80697E9-7FD6-4665-8646-88E33EF71DFC
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BF0F2C40
Loading driver at 0x000BF649000 EntryPoint=0x000BF649271 SecurityStubDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BF0F2118
ProtectUefiImageCommon - 0xBF0F2C40
- 0x00000000BF649000 - 0x0000000000005420
InstallProtocolInterface: 94AB2F58-1438-4EF1-9152-18941A3A0E68 BF64E108
InstallProtocolInterface: A46423E3-4617-49F1-B9FF-D1BFA9115839 BF64E110
InstallProtocolInterface: 15853D7C-3DDF-43E0-A1CB-EBF85B8F872C BF64E118
Loading driver 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BF0E9040
Loading driver at 0x000BF642000 EntryPoint=0x000BF642271 EbcDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BF0F2498
ProtectUefiImageCommon - 0xBF0E9040
- 0x00000000BF642000 - 0x0000000000006D60
InstallProtocolInterface: 13AC6DD1-73D0-11D4-B06B-00AA00BD6DE7 BF0E9F18
InstallProtocolInterface: 2755590C-6F3C-42FA-9EA4-A3BA543CDA25 BF0E9C98
InstallProtocolInterface: AAEACCFD-F27B-4C17-B610-75CA1F2DFB52 BF0E9B18
Loading driver 79CA4208-BBA1-4A9A-8456-E1E66A81484E
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BF0E93C0
Loading driver at 0x000BF63E000 EntryPoint=0x000BF63E271 Legacy8259.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BF0E9D98
ProtectUefiImageCommon - 0xBF0E93C0
- 0x00000000BF63E000 - 0x00000000000034A0
InstallProtocolInterface: 38321DBA-4FE0-4E17-8AEC-413055EAEDC1 BF6411A0
Loading driver A19B1FE7-C1BC-49F8-875F-54A5D542443F
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BF0F1CC0
Loading driver at 0x000BF63A000 EntryPoint=0x000BF63A271 CpuIo2Dxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BF0F1B98
ProtectUefiImageCommon - 0xBF0F1CC0
- 0x00000000BF63A000 - 0x00000000000039C0
InstallProtocolInterface: AD61F191-AE5F-4C0E-B9FA-E869D288C64F BF63D730
Loading driver 1A1E4886-9517-440E-9FDE-3BE44CEE2136
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BF0F12C0
Loading driver at 0x000BF62A000 EntryPoint=0x000BF62A271 CpuDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BF0F1918
ProtectUefiImageCommon - 0xBF0F12C0
- 0x00000000BF62A000 - 0x000000000000F6C0
CurrentPagingContext:
MachineType - 0x8664
PageTableBase - 0xBF6C8000
Attributes - 0x40000002
InstallProtocolInterface: 26BACCB1-6F42-11D4-BCE7-0080C73C8881 BF639010
MemoryProtectionCpuArchProtocolNotify:
ProtectUefiImageCommon - 0xBFF117B8
- 0x00000000BFEED000 - 0x0000000000028000
ProtectUefiImageCommon - 0xBF0EA040
- 0x00000000BF657000 - 0x000000000000BD20
ProtectUefiImageCommon - 0xBF0EA4C0
- 0x00000000BF64F000 - 0x00000000000079A0
ProtectUefiImageCommon - 0xBF0F64C0
- 0x00000000BF68A000 - 0x0000000000009000
SetUefiImageMemoryAttributes - 0x00000000BF68A000 - 0x0000000000001000 (0x0000000000004000)
Split - 0xBF0EB000
SetUefiImageMemoryAttributes - 0x00000000BF68B000 - 0x0000000000006000 (0x0000000000020000)
ConvertPageEntryAttribute 0xBF68B063->0xBF68B061
ConvertPageEntryAttribute 0xBF68C063->0xBF68C061
ConvertPageEntryAttribute 0xBF68D063->0xBF68D061
ConvertPageEntryAttribute 0xBF68E063->0xBF68E061
ConvertPageEntryAttribute 0xBF68F063->0xBF68F061
ConvertPageEntryAttribute 0xBF690063->0xBF690061
SetUefiImageMemoryAttributes - 0x00000000BF691000 - 0x0000000000002000 (0x0000000000004000)
ProtectUefiImageCommon - 0xBF0F3140
- 0x00000000BF682000 - 0x0000000000008000
SetUefiImageMemoryAttributes - 0x00000000BF682000 - 0x0000000000001000 (0x0000000000004000)
SetUefiImageMemoryAttributes - 0x00000000BF683000 - 0x0000000000005000 (0x0000000000020000)
ConvertPageEntryAttribute 0xBF683063->0xBF683061
ConvertPageEntryAttribute 0xBF684063->0xBF684061
ConvertPageEntryAttribute 0xBF685063->0xBF685061
ConvertPageEntryAttribute 0xBF686063->0xBF686061
ConvertPageEntryAttribute 0xBF687063->0xBF687061
SetUefiImageMemoryAttributes - 0x00000000BF688000 - 0x0000000000002000 (0x0000000000004000)
ProtectUefiImageCommon - 0xBF0F2C40
- 0x00000000BF649000 - 0x0000000000005420
ProtectUefiImageCommon - 0xBF0E9040
- 0x00000000BF642000 - 0x0000000000006D60
ProtectUefiImageCommon - 0xBF0E93C0
- 0x00000000BF63E000 - 0x00000000000034A0
ProtectUefiImageCommon - 0xBF0F1CC0
- 0x00000000BF63A000 - 0x00000000000039C0
ProtectUefiImageCommon - 0xBF0F12C0
- 0x00000000BF62A000 - 0x000000000000F6C0
Flushing GCD
Flushing GCD
Flushing GCD
Flushing GCD
Flushing GCD
Flushing GCD
Flushing GCD
Flushing GCD
Flushing GCD
AP Loop Mode is 1
Detect CPU count: 1
InstallProtocolInterface: 3FDDA605-A76E-4F46-AD29-12F4531B3D08 BF639150
Loading driver F6697AC4-A776-4EE1-B643-1FEFF2B615BB
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BF0EC540
Loading driver at 0x000BF626000 EntryPoint=0x000BF626271 IncompatiblePciDeviceSupportDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BF0EC498
ProtectUefiImageCommon - 0xBF0EC540
- 0x00000000BF626000 - 0x00000000000038E0
InstallProtocolInterface: EB23F55A-7863-4AC2-8D3D-956535DE0375 BF629780
Loading driver 11A6EDF6-A9BE-426D-A6CC-B22FE51D9224
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECD91C0
Loading driver at 0x000BF622000 EntryPoint=0x000BF622271 PciHotPlugInitDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECD9B18
ProtectUefiImageCommon - 0xBECD91C0
- 0x00000000BF622000 - 0x0000000000003860
InstallProtocolInterface: AA0E8BC1-DABC-46B0-A844-37B8169B2BEA BF625700
Loading driver 4B28E4C7-FF36-4E10-93CF-A82159E777C5
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECD95C0
Loading driver at 0x000BF67A000 EntryPoint=0x000BF67B031 ResetSystemRuntimeDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECCF018
ProtectUefiImageCommon - 0xBECD95C0
- 0x00000000BF67A000 - 0x0000000000008000
SetUefiImageMemoryAttributes - 0x00000000BF67A000 - 0x0000000000001000 (0x0000000000004008)
SetUefiImageMemoryAttributes - 0x00000000BF67B000 - 0x0000000000005000 (0x0000000000020008)
ConvertPageEntryAttribute 0xBF67B063->0xBF67B061
ConvertPageEntryAttribute 0xBF67C063->0xBF67C061
ConvertPageEntryAttribute 0xBF67D063->0xBF67D061
ConvertPageEntryAttribute 0xBF67E063->0xBF67E061
ConvertPageEntryAttribute 0xBF67F063->0xBF67F061
SetUefiImageMemoryAttributes - 0x00000000BF680000 - 0x0000000000002000 (0x0000000000004008)
InstallProtocolInterface: 27CFAC88-46CC-11D4-9A38-0090273FC14D 0
Loading driver C8339973-A563-4561-B858-D8476F9DEFC4
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECCF840
Loading driver at 0x000BF61E000 EntryPoint=0x000BF61E271 Metronome.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECCF618
ProtectUefiImageCommon - 0xBECCF840
- 0x00000000BF61E000 - 0x0000000000003A60
InstallProtocolInterface: 26BACCB2-6F42-11D4-BCE7-0080C73C8881 BF6217D0
Loading driver 79E4A61C-ED73-4312-94FE-E3E7563362A9
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECD4040
Loading driver at 0x000BF61A000 EntryPoint=0x000BF61A271 PrintDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECCF398
ProtectUefiImageCommon - 0xBECD4040
- 0x00000000BF61A000 - 0x0000000000003B20
InstallProtocolInterface: F05976EF-83F1-4F3D-8619-F7595D41E538 BF61D820
InstallProtocolInterface: 0CC252D2-C106-4661-B5BD-3147A4F81F92 BF61D7D0
Loading driver 348C4D62-BFBD-4882-9ECE-C80BB1C4783B
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECD4440
Loading driver at 0x000BF5FC000 EntryPoint=0x000BF5FC271 HiiDatabase.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECD4698
ProtectUefiImageCommon - 0xBECD4440
- 0x00000000BF5FC000 - 0x000000000001D9C0
InstallProtocolInterface: E9CA4775-8657-47FC-97E7-7ED65A084324 BF6194B8
InstallProtocolInterface: 0FD96974-23AA-4CDC-B9CB-98D17750322A BF619530
InstallProtocolInterface: EF9FC172-A1B2-4693-B327-6D32FC416042 BF619558
InstallProtocolInterface: 587E72D7-CC50-4F79-8209-CA291FC1A10F BF6195B0
InstallProtocolInterface: 0A8BADD5-03B8-4D19-B128-7B8F0EDAA596 BF6195E0
InstallProtocolInterface: 31A6406A-6BDF-4E46-B2A2-EBAA89C40920 BF6194D8
InstallProtocolInterface: 1A1241E6-8F19-41A9-BC0E-E8EF39E06546 BF619500
Loading driver 96B5C032-DF4C-4B6E-8232-438DCF448D0E
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECD81C0
Loading driver at 0x000BF5F8000 EntryPoint=0x000BF5F8271 NullMemoryTestDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECD8998
ProtectUefiImageCommon - 0xBECD81C0
- 0x00000000BF5F8000 - 0x0000000000003B00
InstallProtocolInterface: 309DE7F1-7F5E-4ACE-B49C-531BE5AA95EF BF5FB810
Loading driver F9D88642-0737-49BC-81B5-6889CD57D9EA
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECD7B40
Loading driver at 0x000BF5F0000 EntryPoint=0x000BF5F0271 SmbiosDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECD8498
ProtectUefiImageCommon - 0xBECD7B40
- 0x00000000BF5F0000 - 0x00000000000070C0
Select Item: 0x0
FW CFG Signature: 0x554D4551
Select Item: 0x1
FW CFG Revision: 0x3
QemuFwCfg interface (DMA) is supported.
Select Item: 0x19
Select Item: 0x19
Select Item: 0x25
DetectSmbiosVersion: SMBIOS version from QEMU: 0x0208
InstallProtocolInterface: 03583FF6-CB36-4940-947E-B9B39F4AFAF7 BF5F6F30
Loading driver 9622E42C-8E38-4A08-9E8F-54F784652F6B
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECD7140
Loading driver at 0x000BF5E6000 EntryPoint=0x000BF5E6271 AcpiTableDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECD7698
ProtectUefiImageCommon - 0xBECD7140
- 0x00000000BF5E6000 - 0x0000000000009020
InstallProtocolInterface: FFE06BDD-6107-46A6-7BB2-5A9C7EC5275C BECD60A0
InstallProtocolInterface: EB97088E-CFDF-49C6-BE4B-D906A5B20E86 BECD60B0
Loading driver BDCE85BB-FBAA-4F4E-9264-501A2C249581
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECD61C0
Loading driver at 0x000BF5DD000 EntryPoint=0x000BF5DD271 S3SaveStateDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECD6B98
ProtectUefiImageCommon - 0xBECD61C0
- 0x00000000BF5DD000 - 0x0000000000008DE0
Select Item: 0x0
FW CFG Signature: 0x554D4551
Select Item: 0x1
FW CFG Revision: 0x3
QemuFwCfg interface (DMA) is supported.
Select Item: 0x19
Select Item: 0x27
InstallProtocolInterface: BD445D79-B7AD-4F04-9AD8-29BD2040EB3C 0
InstallProtocolInterface: E857CAF6-C046-45DC-BE3F-EE0765FBA887 BF5E5A50
Loading driver A210F973-229D-4F4D-AA37-9895E6C9EABA
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECD5040
Loading driver at 0x000BF5D9000 EntryPoint=0x000BF5D9271 DpcDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECD5F18
ProtectUefiImageCommon - 0xBECD5040
- 0x00000000BF5D9000 - 0x00000000000039C0
InstallProtocolInterface: 480F8AE9-0C46-4AA9-BC89-DB9FBA619806 BF5DC520
Loading driver 22DC2B60-FE40-42AC-B01F-3AB1FAD9AAD8
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECD5440
Loading driver at 0x000BF672000 EntryPoint=0x000BF673031 EmuVariableFvbRuntimeDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECD5A18
ProtectUefiImageCommon - 0xBECD5440
- 0x00000000BF672000 - 0x0000000000008000
SetUefiImageMemoryAttributes - 0x00000000BF672000 - 0x0000000000001000 (0x0000000000004008)
SetUefiImageMemoryAttributes - 0x00000000BF673000 - 0x0000000000005000 (0x0000000000020008)
ConvertPageEntryAttribute 0xBF673063->0xBF673061
ConvertPageEntryAttribute 0xBF674063->0xBF674061
ConvertPageEntryAttribute 0xBF675063->0xBF675061
ConvertPageEntryAttribute 0xBF676063->0xBF676061
ConvertPageEntryAttribute 0xBF677063->0xBF677061
SetUefiImageMemoryAttributes - 0x00000000BF678000 - 0x0000000000002000 (0x0000000000004008)
EMU Variable FVB Started
EMU Variable FVB: Using pre-reserved block at BFF50000
EMU Variable FVB: Basic FV headers were invalid
Installing FVB for EMU Variable support
InstallProtocolInterface: 8F644FA9-E850-4DB1-9CE2-0B44698E8DA4 BF678130
InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B BF6780F8
Loading driver CBD2E4D5-7068-4FF5-B462-9822B4AD8D60
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECD31C0
Loading driver at 0x000BE5D2000 EntryPoint=0x000BE5D3031 VariableRuntimeDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECD3E98
ProtectUefiImageCommon - 0xBECD31C0
- 0x00000000BE5D2000 - 0x0000000000011000
SetUefiImageMemoryAttributes - 0x00000000BE5D2000 - 0x0000000000001000 (0x0000000000004008)
Split - 0xBECD2000
SetUefiImageMemoryAttributes - 0x00000000BE5D3000 - 0x000000000000E000 (0x0000000000020008)
ConvertPageEntryAttribute 0xBE5D3063->0xBE5D3061
ConvertPageEntryAttribute 0xBE5D4063->0xBE5D4061
ConvertPageEntryAttribute 0xBE5D5063->0xBE5D5061
ConvertPageEntryAttribute 0xBE5D6063->0xBE5D6061
ConvertPageEntryAttribute 0xBE5D7063->0xBE5D7061
ConvertPageEntryAttribute 0xBE5D8063->0xBE5D8061
ConvertPageEntryAttribute 0xBE5D9063->0xBE5D9061
ConvertPageEntryAttribute 0xBE5DA063->0xBE5DA061
ConvertPageEntryAttribute 0xBE5DB063->0xBE5DB061
ConvertPageEntryAttribute 0xBE5DC063->0xBE5DC061
ConvertPageEntryAttribute 0xBE5DD063->0xBE5DD061
ConvertPageEntryAttribute 0xBE5DE063->0xBE5DE061
ConvertPageEntryAttribute 0xBE5DF063->0xBE5DF061
ConvertPageEntryAttribute 0xBE5E0063->0xBE5E0061
SetUefiImageMemoryAttributes - 0x00000000BE5E1000 - 0x0000000000002000 (0x0000000000004008)
VarCheckLibRegisterSetVariableCheckHandler - 0xBE5DB4AC Success
Variable driver common space: 0xDF9C 0xDF9C 0xDF9C
Variable driver will work without auth variable support!
InstallProtocolInterface: CD3D0A05-9E24-437C-A891-1EE053DB7638 BE5E1028
InstallProtocolInterface: AF23B340-97B4-4685-8D4F-A3F28169B21D BE5E1010
InstallProtocolInterface: 1E5668E2-8481-11D4-BCF1-0080C73C8881 0
Loading driver 6C2004EF-4E0E-4BE4-B14C-340EB4AA5891
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECD10C0
Loading driver at 0x000BF66A000 EntryPoint=0x000BF66B031 StatusCodeHandlerRuntimeDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECD3598
ProtectUefiImageCommon - 0xBECD10C0
- 0x00000000BF66A000 - 0x0000000000008000
SetUefiImageMemoryAttributes - 0x00000000BF66A000 - 0x0000000000001000 (0x0000000000004008)
SetUefiImageMemoryAttributes - 0x00000000BF66B000 - 0x0000000000005000 (0x0000000000020008)
ConvertPageEntryAttribute 0xBF66B063->0xBF66B061
ConvertPageEntryAttribute 0xBF66C063->0xBF66C061
ConvertPageEntryAttribute 0xBF66D063->0xBF66D061
ConvertPageEntryAttribute 0xBF66E063->0xBF66E061
ConvertPageEntryAttribute 0xBF66F063->0xBF66F061
SetUefiImageMemoryAttributes - 0x00000000BF670000 - 0x0000000000002000 (0x0000000000004008)
Loading driver F2765DEC-6B41-11D5-8E71-00902707B35E
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECD0BC0
Loading driver at 0x000BF5D5000 EntryPoint=0x000BF5D5271 Timer.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECD0F18
ProtectUefiImageCommon - 0xBECD0BC0
- 0x00000000BF5D5000 - 0x0000000000003580
InstallProtocolInterface: 26BACCB3-6F42-11D4-BCE7-0080C73C8881 BF5D82D0
Loading driver 128FB770-5E79-4176-9E51-9BB268A17DD1
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECD02C0
Loading driver at 0x000BF5C9000 EntryPoint=0x000BF5C9271 PciHostBridgeDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECD0A98
ProtectUefiImageCommon - 0xBECD02C0
- 0x00000000BF5C9000 - 0x000000000000B400
Select Item: 0x0
FW CFG Signature: 0x554D4551
Select Item: 0x1
FW CFG Revision: 0x3
QemuFwCfg interface (DMA) is supported.
Select Item: 0x19
InitRootBridge: populated root bus 0, with room for 255 subordinate bus(es)
RootBridge: PciRoot(0x0)
Support/Attr: 70069 / 70069
DmaAbove4G: No
NoExtConfSpace: Yes
AllocAttr: 3 (CombineMemPMem Mem64Decode)
Bus: 0 - FF
Io: C000 - FFFF
Mem: C0000000 - FBFFFFFF
MemAbove4G: 10000000000 - 1FFFFFFFFFF
PMem: FFFFFFFFFFFFFFFF - 0
PMemAbove4G: FFFFFFFFFFFFFFFF - 0
InstallProtocolInterface: CF8034BE-6768-4D8B-B739-7CCE683A9FBE BECCEF40
InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B BECCEB18
InstallProtocolInterface: 2F707EBB-4A1A-11D4-9A38-0090273FC14D BECCED40
Loading driver EBF342FE-B1D3-4EF8-957C-8048606FF671
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECCE240
Loading driver at 0x000BF5AF000 EntryPoint=0x000BF5AF271 SetupBrowser.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECD0598
ProtectUefiImageCommon - 0xBECCE240
- 0x00000000BF5AF000 - 0x0000000000019360
InstallProtocolInterface: B9D4C360-BCFB-4F9B-9298-53C136982258 BF5C7DC0
InstallProtocolInterface: A770C357-B693-4E6D-A6CF-D21C728E550B BF5C7DF0
InstallProtocolInterface: 1F73B18D-4630-43C1-A1DE-6F80855D7DA4 BF5C7DD0
Loading driver 4110465D-5FF3-4F4B-B580-24ED0D06747A
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECCD2C0
Loading driver at 0x000BF5AA000 EntryPoint=0x000BF5AA271 SmbiosPlatformDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECCDA18
ProtectUefiImageCommon - 0xBECCD2C0
- 0x00000000BF5AA000 - 0x0000000000004A40
Select Item: 0x0
FW CFG Signature: 0x554D4551
Select Item: 0x1
FW CFG Revision: 0x3
QemuFwCfg interface (DMA) is supported.
Select Item: 0x19
Select Item: 0x26
SmbiosAdd: Smbios type 1 with size 0x51 is added to 32-bit table
SmbiosCreateTable: Initialize 32-bit entry point structure
SmbiosCreateTable() re-allocate SMBIOS 32-bit table
SmbiosAdd: Smbios type 3 with size 0x29 is added to 32-bit table
SmbiosAdd: Smbios type 4 with size 0x44 is added to 32-bit table
SmbiosAdd: Smbios type 16 with size 0x19 is added to 32-bit table
SmbiosAdd: Smbios type 17 with size 0x35 is added to 32-bit table
SmbiosAdd: Smbios type 19 with size 0x21 is added to 32-bit table
SmbiosAdd: Smbios type 19 with size 0x21 is added to 32-bit table
SmbiosAdd: Smbios type 32 with size 0xD is added to 32-bit table
SmbiosAdd: Smbios type 0 with size 0x4A is added to 32-bit table
Loading driver 49970331-E3FA-4637-9ABC-3B7868676970
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECCC040
Loading driver at 0x000BF5A0000 EntryPoint=0x000BF5A0271 AcpiPlatform.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECCC718
ProtectUefiImageCommon - 0xBECCC040
- 0x00000000BF5A0000 - 0x0000000000009BA0
Select Item: 0x0
FW CFG Signature: 0x554D4551
Select Item: 0x1
FW CFG Revision: 0x3
QemuFwCfg interface (DMA) is supported.
AcpiPlatformEntryPoint: waiting for root bridges to be connected, registered callback
Loading driver FA20568B-548B-4B2B-81EF-1BA08D4A3CEC
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECC10C0
Loading driver at 0x000BF58E000 EntryPoint=0x000BF58E271 BootScriptExecutorDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECC1A98
ProtectUefiImageCommon - 0xBECC10C0
- 0x00000000BF58E000 - 0x0000000000011480
Select Item: 0x0
FW CFG Signature: 0x554D4551
Select Item: 0x1
FW CFG Revision: 0x3
QemuFwCfg interface (DMA) is supported.
Select Item: 0x19
Select Item: 0x27
Loading driver F74D20EE-37E7-48FC-97F7-9B1047749C69
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECC1540
Loading driver at 0x000BF587000 EntryPoint=0x000BF587271 LogoDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECC4018
InstallProtocolInterface: 6A1EE763-D47A-43B4-AABE-EF1DE2AB56FC BF58A190
ProtectUefiImageCommon - 0xBECC1540
- 0x00000000BF587000 - 0x0000000000006100
InstallProtocolInterface: 53CD299F-2BC1-40C0-8C07-23F64FDB30E0 BF589EE8
Loading driver FE5CEA76-4F72-49E8-986F-2CD899DFFE5D
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECC45C0
Loading driver at 0x000BF57F000 EntryPoint=0x000BF57F271 FaultTolerantWriteDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECC8F18
ProtectUefiImageCommon - 0xBECC45C0
- 0x00000000BF57F000 - 0x0000000000007840
Ftw: FtwWorkSpaceLba - 0x0, WorkBlockSize - 0x10000, FtwWorkSpaceBase - 0xE000
Ftw: FtwSpareLba - 0x1, SpareBlockSize - 0x10000
Ftw: NumberOfWorkBlock - 0x1, FtwWorkBlockLba - 0x0
Ftw: WorkSpaceLbaInSpare - 0x0, WorkSpaceBaseInSpare - 0xE000
Ftw: Remaining work space size - FE0
Ftw: Work block header check mismatch
Ftw: Work block header check mismatch
Ftw: Both working and spare blocks are invalid, init workspace
Ftw: start to reclaim work space
Ftw: reclaim work space successfully
InstallProtocolInterface: 3EBD9E82-2C78-4DE6-9786-8D4BFCB7C881 BECC6028
Split - 0xBECC5000
[Variable] Lock: BB983CCF-151D-40E1-A07B-4A17BE168292:MemoryOverwriteRequestControlLock Success
RecordSecureBootPolicyVarData GetVariable SecureBoot Status E
InstallProtocolInterface: 6441F818-6362-4E44-B570-7DBA31DD2453 0
Loading driver 378D7B65-8DA9-4773-B6E4-A47826A833E1
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECC8540
Loading driver at 0x000BE5A4000 EntryPoint=0x000BE5A5031 PcRtc.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECC8798
ProtectUefiImageCommon - 0xBECC8540
- 0x00000000BE5A4000 - 0x0000000000009000
SetUefiImageMemoryAttributes - 0x00000000BE5A4000 - 0x0000000000001000 (0x0000000000004008)
SetUefiImageMemoryAttributes - 0x00000000BE5A5000 - 0x0000000000006000 (0x0000000000020008)
ConvertPageEntryAttribute 0xBE5A5063->0xBE5A5061
ConvertPageEntryAttribute 0xBE5A6063->0xBE5A6061
ConvertPageEntryAttribute 0xBE5A7063->0xBE5A7061
ConvertPageEntryAttribute 0xBE5A8063->0xBE5A8061
ConvertPageEntryAttribute 0xBE5A9063->0xBE5A9061
ConvertPageEntryAttribute 0xBE5AA063->0xBE5AA061
SetUefiImageMemoryAttributes - 0x00000000BE5AB000 - 0x0000000000002000 (0x0000000000004008)
InstallProtocolInterface: 27CFAC87-46CC-11D4-9A38-0090273FC14D 0
Loading driver F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECC3CC0
Loading driver at 0x000BF57B000 EntryPoint=0x000BF57B271 WatchdogTimer.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECC3A98
ProtectUefiImageCommon - 0xBECC3CC0
- 0x00000000BF57B000 - 0x0000000000003680
InstallProtocolInterface: 665E3FF5-46CC-11D4-9A38-0090273FC14D BF57E3B0
Loading driver AD608272-D07F-4964-801E-7BD3B7888652
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECC32C0
Loading driver at 0x000BF663000 EntryPoint=0x000BF664031 MonotonicCounterRuntimeDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECC2018
ProtectUefiImageCommon - 0xBECC32C0
- 0x00000000BF663000 - 0x0000000000007000
SetUefiImageMemoryAttributes - 0x00000000BF663000 - 0x0000000000001000 (0x0000000000004008)
SetUefiImageMemoryAttributes - 0x00000000BF664000 - 0x0000000000004000 (0x0000000000020008)
ConvertPageEntryAttribute 0xBF664063->0xBF664061
ConvertPageEntryAttribute 0xBF665063->0xBF665061
ConvertPageEntryAttribute 0xBF666063->0xBF666061
ConvertPageEntryAttribute 0xBF667063->0xBF667061
SetUefiImageMemoryAttributes - 0x00000000BF668000 - 0x0000000000002000 (0x0000000000004008)
InstallProtocolInterface: 1DA97072-BDDC-4B30-99F1-72A0B56FFF2A 0
Loading driver 42857F0A-13F2-4B21-8A23-53D3F714B840
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECC2840
Loading driver at 0x000BE592000 EntryPoint=0x000BE593031 CapsuleRuntimeDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECC2718
ProtectUefiImageCommon - 0xBECC2840
- 0x00000000BE592000 - 0x0000000000008000
SetUefiImageMemoryAttributes - 0x00000000BE592000 - 0x0000000000001000 (0x0000000000004008)
SetUefiImageMemoryAttributes - 0x00000000BE593000 - 0x0000000000005000 (0x0000000000020008)
ConvertPageEntryAttribute 0xBE593063->0xBE593061
ConvertPageEntryAttribute 0xBE594063->0xBE594061
ConvertPageEntryAttribute 0xBE595063->0xBE595061
ConvertPageEntryAttribute 0xBE596063->0xBE596061
ConvertPageEntryAttribute 0xBE597063->0xBE597061
SetUefiImageMemoryAttributes - 0x00000000BE598000 - 0x0000000000002000 (0x0000000000004008)
InstallProtocolInterface: 5053697E-2CBC-4819-90D9-0580DEEE5754 0
Loading driver EBF8ED7C-0DD1-4787-84F1-F48D537DCACF
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECC0BC0
Loading driver at 0x000BF572000 EntryPoint=0x000BF572271 DriverHealthManagerDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECC0118
ProtectUefiImageCommon - 0xBECC0BC0
- 0x00000000BF572000 - 0x0000000000008500
InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B BF57A060
InstallProtocolInterface: 330D4706-F2A0-4E4F-A369-B66FA8D54385 BF57A090
Loading driver 6D33944A-EC75-4855-A54D-809C75241F6C
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECBF040
Loading driver at 0x000BF552000 EntryPoint=0x000BF552271 BdsDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECC0518
ProtectUefiImageCommon - 0xBECBF040
- 0x00000000BF552000 - 0x000000000001F180
Select Item: 0x0
FW CFG Signature: 0x554D4551
Select Item: 0x1
FW CFG Revision: 0x3
QemuFwCfg interface (DMA) is supported.
InstallProtocolInterface: 665E3FF6-46CC-11D4-9A38-0090273FC14D BF5703B8
Loading driver 28A03FF4-12B3-4305-A417-BB1A4F94081E
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECBEBC0
Loading driver at 0x000BF545000 EntryPoint=0x000BF545271 RamDiskDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECBEF18
ProtectUefiImageCommon - 0xBECBEBC0
- 0x00000000BF545000 - 0x000000000000CE00
InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B BECBE998
InstallProtocolInterface: 330D4706-F2A0-4E4F-A369-B66FA8D54385 BF5511E8
InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B BF550D40
InstallProtocolInterface: 330D4706-F2A0-4E4F-A369-B66FA8D54385 BECBCEB0
InstallProtocolInterface: AB38A0DF-6873-44A9-87E6-D4EB56148449 BF550D30
InstallProtocolInterface: 28A03FF4-12B3-4305-A417-BB1A4F94081E BECBCE98
Loading driver E660EA85-058E-4B55-A54B-F02F83A24707
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECBD7C0
Loading driver at 0x000BF531000 EntryPoint=0x000BF531271 DisplayEngine.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECBD718
ProtectUefiImageCommon - 0xBECBD7C0
- 0x00000000BF531000 - 0x0000000000013AA0
InstallProtocolInterface: 9BBE29E9-FDA1-41EC-AD52-452213742D2E BF543CE0
Loading driver D9DCC5DF-4007-435E-9098-8970935504B2
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECB7040
Loading driver at 0x000BF52A000 EntryPoint=0x000BF52A271 PlatformDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECBD298
ProtectUefiImageCommon - 0xBECB7040
- 0x00000000BF52A000 - 0x0000000000006B80
InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B BF530790
InstallProtocolInterface: 330D4706-F2A0-4E4F-A369-B66FA8D54385 BF530A10
Loading driver 93B80004-9FB3-11D4-9A3A-0090273FC14D
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECB7440
Loading driver at 0x000BF517000 EntryPoint=0x000BF517271 PciBusDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECB7698
ProtectUefiImageCommon - 0xBECB7440
- 0x00000000BF517000 - 0x0000000000012160
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BF528BE0
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BF528C50
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BF528C30
InstallProtocolInterface: 19CB87AB-2CB9-4665-8360-DDCF6054F79D BF528BC8
Loading driver 33CB97AF-6C33-4C42-986B-07581FA366D4
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECAE040
Loading driver at 0x000BF512000 EntryPoint=0x000BF512271 BlockMmioToBlockIoDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECB4218
ProtectUefiImageCommon - 0xBECAE040
- 0x00000000BF512000 - 0x0000000000004460
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BF516130
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BF5161A0
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BF516180
Loading driver 83DD3B39-7CAF-4FAC-A542-E050B767E3A7
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECAE9C0
Loading driver at 0x000BF50D000 EntryPoint=0x000BF50D271 VirtioPciDeviceDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECAE318
ProtectUefiImageCommon - 0xBECAE9C0
- 0x00000000BF50D000 - 0x00000000000047A0
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BF511430
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BF5113F0
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BF5113D0
Loading driver 0170F60C-1D40-4651-956D-F0BD9879D527
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECAD040
Loading driver at 0x000BF508000 EntryPoint=0x000BF508271 Virtio10.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECAE618
ProtectUefiImageCommon - 0xBECAD040
- 0x00000000BF508000 - 0x0000000000004BC0
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BF50C850
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BF50C810
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BF50C7F0
Loading driver 11D92DFB-3CA9-4F93-BA2E-4780ED3E03B5
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECAD9C0
Loading driver at 0x000BF503000 EntryPoint=0x000BF503271 VirtioBlkDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECAD798
ProtectUefiImageCommon - 0xBECAD9C0
- 0x00000000BF503000 - 0x0000000000004EA0
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BF507BD0
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BF507B90
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BF507B70
Loading driver FAB5D4F4-83C0-4AAF-8480-442D11DF6CEA
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECB3040
Loading driver at 0x000BF4FD000 EntryPoint=0x000BF4FD271 VirtioScsiDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECB3D18
ProtectUefiImageCommon - 0xBECB3040
- 0x00000000BF4FD000 - 0x00000000000051A0
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BF501ED0
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BF501E90
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BF501E70
Loading driver 58E26F0D-CBAC-4BBA-B70F-18221415665A
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECB3440
Loading driver at 0x000BF4F8000 EntryPoint=0x000BF4F8271 VirtioRngDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECB3C18
ProtectUefiImageCommon - 0xBECB3440
- 0x00000000BF4F8000 - 0x00000000000048C0
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BF4FC5E0
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BF4FC5A0
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BF4FC580
Loading driver CF569F50-DE44-4F54-B4D7-F4AE25CDA599
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECB2B40
Loading driver at 0x000BF4F4000 EntryPoint=0x000BF4F4271 XenIoPciDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECB3718
ProtectUefiImageCommon - 0xBECB2B40
- 0x00000000BF4F4000 - 0x0000000000003E40
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BF4F7B70
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BF4F7B30
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BF4F7B10
Loading driver 565EC8BA-A484-11E3-802B-B8AC6F7D65E6
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECB2140
Loading driver at 0x000BF4E8000 EntryPoint=0x000BF4E8271 XenBusDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECB2698
ProtectUefiImageCommon - 0xBECB2140
- 0x00000000BF4E8000 - 0x000000000000B0C0
Error: Image at 000BF4E8000 start failed: Aborted
Loading driver 8C2487EA-9AF3-11E3-B966-B8AC6F7D65E6
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECB2140
Loading driver at 0x000BF4ED000 EntryPoint=0x000BF4ED271 XenPvBlkDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECB2398
ProtectUefiImageCommon - 0xBECB2140
- 0x00000000BF4ED000 - 0x0000000000006640
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BF4F3290
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BF4F3320
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BF4F3300
Loading driver 51CCF399-4FDF-4E55-A45B-E123F84D456A
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECB1CC0
Loading driver at 0x000BF4E6000 EntryPoint=0x000BF4E6271 ConPlatformDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECB1198
ProtectUefiImageCommon - 0xBECB1CC0
- 0x00000000BF4E6000 - 0x0000000000006020
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BF4EBC80
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BF4EBCF0
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BF4EBCD0
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BF4EBC50
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BF4EBCF0
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BF4EBCD0
Loading driver 408EDCEC-CF6D-477C-A5A8-B4844E3DE281
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECB1340
Loading driver at 0x000BE583000 EntryPoint=0x000BE583271 ConSplitterDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECB0F98
ProtectUefiImageCommon - 0xBECB1340
- 0x00000000BE583000 - 0x0000000000009880
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE58BF10
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE58C500
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE58C4E0
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE58BE80
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE58C4C0
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE58C4A0
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE58BE50
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE58C480
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE58C460
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE58BEE0
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE58C440
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE58C420
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE58BEB0
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE58C400
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE58C3E0
InstallProtocolInterface: 387477C1-69C7-11D2-8E39-00A0C969723B BE58C1B0
InstallProtocolInterface: DD9E7534-7762-4698-8C14-F58517A625AA BE58C1E0
InstallProtocolInterface: 31878C87-0B75-11D5-9A4F-0090273FC14D BE58C240
InstallProtocolInterface: 8D59D32B-C655-4AE9-9B15-F25904992A43 BE58C298
InstallProtocolInterface: 387477C2-69C7-11D2-8E39-00A0C969723B BE58C060
InstallProtocolInterface: 387477C2-69C7-11D2-8E39-00A0C969723B BE58BF50
Loading driver CCCB0C28-4B24-11D5-9A5A-0090273FC14D
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECAB0C0
Loading driver at 0x000BE57A000 EntryPoint=0x000BE57A271 GraphicsConsoleDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECABA98
ProtectUefiImageCommon - 0xBECAB0C0
- 0x00000000BE57A000 - 0x0000000000008180
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE580770
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE580960
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE580940
Loading driver 9E863906-A40F-4875-977F-5B93FF237FC6
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECAA040
Loading driver at 0x000BE570000 EntryPoint=0x000BE570271 TerminalDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECAAE18
ProtectUefiImageCommon - 0xBECAA040
- 0x00000000BE570000 - 0x0000000000009B60
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE579680
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE5796F0
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE5796D0
Loading driver 6B38F7B4-AD98-40E9-9093-ACA2B5A253C4
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECAA440
Loading driver at 0x000BE569000 EntryPoint=0x000BE569271 DiskIoDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECAA398
ProtectUefiImageCommon - 0xBECAA440
- 0x00000000BE569000 - 0x00000000000064E0
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE56F1A0
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE56F210
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE56F1F0
Loading driver 1FA1F39E-FEFF-4AAE-BD7B-38A070A3B609
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECA9B40
Loading driver at 0x000BE561000 EntryPoint=0x000BE561271 PartitionDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECA9E98
ProtectUefiImageCommon - 0xBECA9B40
- 0x00000000BE561000 - 0x0000000000007640
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE5682F0
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE568360
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE568340
Loading driver CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECA91C0
Loading driver at 0x000BE55D000 EntryPoint=0x000BE55D271 EnglishDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECA9498
ProtectUefiImageCommon - 0xBECA91C0
- 0x00000000BE55D000 - 0x0000000000003920
InstallProtocolInterface: 1D85CD7F-F43D-11D2-9A0C-0090273FC14D BE5602F0
InstallProtocolInterface: A4C751FC-23AE-4C3E-92E9-4964CF63F349 BE5602B0
Loading driver 0167CCC4-D0F7-4F21-A3EF-9E64B7CDCE8B
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECA81C0
Loading driver at 0x000BE557000 EntryPoint=0x000BE557271 ScsiBus.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECA8E98
ProtectUefiImageCommon - 0xBECA81C0
- 0x00000000BE557000 - 0x0000000000005D80
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE55CA30
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE55CAA0
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE55CA80
Loading driver 0A66E322-3740-4CCE-AD62-BD172CECCA35
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECA85C0
Loading driver at 0x000BE54B000 EntryPoint=0x000BE54B271 ScsiDisk.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECA8518
ProtectUefiImageCommon - 0xBECA85C0
- 0x00000000BE54B000 - 0x000000000000BE60
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE556B20
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE556B90
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE556B70
Loading driver 021722D8-522B-4079-852A-FE44C2C13F49
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECA7140
Loading driver at 0x000BE546000 EntryPoint=0x000BE546271 SataController.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECA7B18
ProtectUefiImageCommon - 0xBECA7140
- 0x00000000BE546000 - 0x0000000000004E60
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE54AB10
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE54ABA0
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE54AB80
Loading driver 5E523CB4-D397-4986-87BD-A6DD8B22F455
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECA7540
Loading driver at 0x000BE539000 EntryPoint=0x000BE539271 AtaAtapiPassThruDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BEC97018
ProtectUefiImageCommon - 0xBECA7540
- 0x00000000BE539000 - 0x000000000000CBA0
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE5457D0
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE545820
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE545800
Loading driver 19DF145A-B1D4-453F-8507-38816676D7F6
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BEC97140
Loading driver at 0x000BE530000 EntryPoint=0x000BE530271 AtaBusDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BEC97B18
ProtectUefiImageCommon - 0xBEC97140
- 0x00000000BE530000 - 0x0000000000008C80
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE5388D0
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE538950
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE538930
Loading driver 5BE3BDF4-53CF-46A3-A6A9-73C34A6E5EE3
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BEC97540
Loading driver at 0x000BE524000 EntryPoint=0x000BE524271 NvmExpressDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BEC98F98
ProtectUefiImageCommon - 0xBEC97540
- 0x00000000BE524000 - 0x000000000000BCE0
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE52F940
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE52FA00
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE52F9E0
InstallProtocolInterface: 5C198761-16A8-4E69-972C-89D67954F81D BE52F938
Loading driver 38A0EC22-FBE7-4911-8BC1-176E0D6C1DBD
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BEC98840
Loading driver at 0x000BE51F000 EntryPoint=0x000BE51F271 IsaAcpi.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BEC98698
ProtectUefiImageCommon - 0xBEC98840
- 0x00000000BE51F000 - 0x0000000000004220
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE522D10
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE522EC0
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE522EE0
Loading driver 240612B5-A063-11D4-9A3A-0090273FC14D
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BEC9E040
Loading driver at 0x000BE519000 EntryPoint=0x000BE519271 IsaBusDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BEC9ED18
ProtectUefiImageCommon - 0xBEC9E040
- 0x00000000BE519000 - 0x0000000000005C20
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE51E830
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE51E8A0
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE51E880
Loading driver 93B80003-9FB3-11D4-9A3A-0090273FC14D
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BEC9E440
Loading driver at 0x000BE512000 EntryPoint=0x000BE512271 IsaSerialDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BEC9EA18
ProtectUefiImageCommon - 0xBEC9E440
- 0x00000000BE512000 - 0x0000000000006C60
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE5188E0
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE518980
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE518960
Loading driver 3DC82376-637B-40A6-A8FC-A565417F2C38
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECA4040
Loading driver at 0x000BE50A000 EntryPoint=0x000BE50A271 Ps2KeyboardDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECA4F18
ProtectUefiImageCommon - 0xBECA4040
- 0x00000000BE50A000 - 0x0000000000007C60
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE511630
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE5116A0
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE511680
Loading driver 0ABD8284-6DA3-4616-971A-83A5148067BA
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECA4440
Loading driver at 0x000BE502000 EntryPoint=0x000BE502271 IsaFloppyDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECA4998
ProtectUefiImageCommon - 0xBECA4440
- 0x00000000BE502000 - 0x0000000000007520
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE5091B0
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE509230
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE509210
Loading driver B8E62775-BB0A-43F0-A843-5BE8B14F8CCD
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECA3B40
Loading driver at 0x000BE4FD000 EntryPoint=0x000BE4FD271 BootGraphicsResourceTableDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECA3A98
ProtectUefiImageCommon - 0xBECA3B40
- 0x00000000BE4FD000 - 0x0000000000004160
InstallProtocolInterface: CDEA2BD3-FC25-4C1C-B97C-B31186064990 BE500DC8
Loading driver 961578FE-B6B7-44C3-AF35-6BC705CD2B1F
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECA34C0
Loading driver at 0x000BE4F1000 EntryPoint=0x000BE4F1271 Fat.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECA3398
ProtectUefiImageCommon - 0xBECA34C0
- 0x00000000BE4F1000 - 0x000000000000B980
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE4FC550
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE4FC5E0
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE4FC5C0
Loading driver A2F436EA-A127-4EF8-957C-8048606FF670
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECA2CC0
Loading driver at 0x000BE4E7000 EntryPoint=0x000BE4E7271 SnpDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECA2B98
ProtectUefiImageCommon - 0xBECA2CC0
- 0x00000000BE4E7000 - 0x0000000000009280
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE4EFF40
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE4EFFB0
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE4EFF90
Loading driver 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECA23C0
Loading driver at 0x000BE4DA000 EntryPoint=0x000BE4DA271 MnpDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECA2198
ProtectUefiImageCommon - 0xBECA23C0
- 0x00000000BE4DA000 - 0x000000000000CCE0
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE4E68F0
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE4E69F0
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE4E69D0
Loading driver E4F61863-FE2C-4B56-A8F4-08519BC439DF
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECA10C0
Loading driver at 0x000BE4D1000 EntryPoint=0x000BE4D1271 VlanConfigDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECA1918
ProtectUefiImageCommon - 0xBECA10C0
- 0x00000000BE4D1000 - 0x0000000000008F20
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE4D9910
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE4D9C00
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE4D9BE0
Loading driver 529D3F93-E8E9-4E73-B1E1-BDF6A9D50113
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECA13C0
Loading driver at 0x000BE4C8000 EntryPoint=0x000BE4C8271 ArpDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECA1718
ProtectUefiImageCommon - 0xBECA13C0
- 0x00000000BE4C8000 - 0x0000000000008180
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE4CFDD0
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE4CFE60
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE4CFE40
Loading driver 94734718-0BBC-47FB-96A5-EE7A5AE6A2AD
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECA00C0
Loading driver at 0x000BE4BB000 EntryPoint=0x000BE4BB271 Dhcp4Dxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECA0898
ProtectUefiImageCommon - 0xBECA00C0
- 0x00000000BE4BB000 - 0x000000000000C840
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE4C67C0
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE4C68E0
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE4C68C0
Loading driver 9FB1A1F3-3B71-4324-B39A-745CBB015FFF
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECA0540
Loading driver at 0x000BE4A5000 EntryPoint=0x000BE4A5271 Ip4Dxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BEC9FF98
ProtectUefiImageCommon - 0xBECA0540
- 0x00000000BE4A5000 - 0x00000000000158A0
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE4BA220
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE4BA2E0
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE4BA2C0
Loading driver DC3641B8-2FA8-4ED3-BC1F-F9962A03454B
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BEC9F8C0
Loading driver at 0x000BE499000 EntryPoint=0x000BE499271 Mtftp4Dxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BEC9F798
ProtectUefiImageCommon - 0xBEC9F8C0
- 0x00000000BE499000 - 0x000000000000B480
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE4A4020
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE4A4090
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE4A4070
Loading driver 6D6963AB-906D-4A65-A7CA-BD40E5D6AF2B
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BEC9D040
Loading driver at 0x000BE48E000 EntryPoint=0x000BE48E271 Udp4Dxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BEC9DF18
ProtectUefiImageCommon - 0xBEC9D040
- 0x00000000BE48E000 - 0x000000000000AFA0
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE498B00
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE498B70
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE498B50
Loading driver 5BEDB5CC-D830-4EB2-8742-2D4CC9B54F2C
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BEC9D9C0
Loading driver at 0x000BE46F000 EntryPoint=0x000BE46F271 Ip6Dxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BEC9D398
ProtectUefiImageCommon - 0xBEC9D9C0
- 0x00000000BE46F000 - 0x000000000001E300
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE48CC10
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE48CC80
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE48CC60
Loading driver 1A7E4468-2F55-4A56-903C-01265EB7622B
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BEC9C040
Loading driver at 0x000BE45A000 EntryPoint=0x000BE45A271 TcpDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BEC9CE98
ProtectUefiImageCommon - 0xBEC9C040
- 0x00000000BE45A000 - 0x0000000000014440
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE46DD90
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE46DFD0
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE46DFB0
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE46DD60
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE46DFD0
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE46DFB0
Loading driver D912C7BC-F098-4367-92BA-E911083C7B0E
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BEC9C540
Loading driver at 0x000BE44F000 EntryPoint=0x000BE44F271 Udp6Dxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BEC9C998
ProtectUefiImageCommon - 0xBEC9C540
- 0x00000000BE44F000 - 0x000000000000ADE0
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE4599C0
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE459A30
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE459A10
Loading driver 95E3669D-34BE-4775-A651-7EA41B69D89E
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BEC9BCC0
Loading driver at 0x000BE441000 EntryPoint=0x000BE441271 Dhcp6Dxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BEC9BB98
ProtectUefiImageCommon - 0xBEC9BCC0
- 0x00000000BE441000 - 0x000000000000D3A0
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE44DF80
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE44E0A0
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE44E080
Loading driver 99F03B99-98D8-49DD-A8D3-3219D0FFE41E
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BEC9B4C0
Loading driver at 0x000BE435000 EntryPoint=0x000BE435271 Mtftp6Dxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BEC9B718
ProtectUefiImageCommon - 0xBEC9B4C0
- 0x00000000BE435000 - 0x000000000000BD60
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE4409A0
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE440A70
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE440A50
Loading driver B95E9FDA-26DE-48D2-8807-1F9107AC5E3A
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BEC9A2C0
Loading driver at 0x000BE422000 EntryPoint=0x000BE422271 UefiPxeBcDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BEC9AC98
ProtectUefiImageCommon - 0xBEC9A2C0
- 0x00000000BE422000 - 0x00000000000123E0
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE433ED0
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE434040
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE434020
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE433EA0
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE434040
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE434020
Loading driver 4579B72D-7EC4-4DD4-8486-083C86B182A7
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BEC99D40
Loading driver at 0x000BE40E000 EntryPoint=0x000BE40E271 IScsi4Dxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BEC9A698
ProtectUefiImageCommon - 0xBEC99D40
- 0x00000000BE40E000 - 0x0000000000013EE0
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE4217D0
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE421840
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE421820
InstallProtocolInterface: 59324945-EC44-4C0D-B1CD-9DB139DF070C BE4218C0
InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B BE421860
InstallProtocolInterface: 330D4706-F2A0-4E4F-A369-B66FA8D54385 BEC99128
Loading driver A92CDB4B-82F1-4E0B-A516-8A655D371524
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BEC995C0
Loading driver at 0x000BE407000 EntryPoint=0x000BE407271 VirtioNetDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BEC96E18
ProtectUefiImageCommon - 0xBEC995C0
- 0x00000000BE407000 - 0x0000000000006280
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE40CFB0
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE40CF50
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE40CF30
Loading driver 2FB92EFA-2EE0-4BAE-9EB6-7464125E1EF7
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BEC962C0
Loading driver at 0x000BE3FD000 EntryPoint=0x000BE3FD271 UhciDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BEC96798
ProtectUefiImageCommon - 0xBEC962C0
- 0x00000000BE3FD000 - 0x00000000000095E0
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE4062B0
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE406320
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE406300
Loading driver BDFE430E-8F2A-4DB0-9991-6F856594777E
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BEC96540
Loading driver at 0x000BE3F1000 EntryPoint=0x000BE3F1271 EhciDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BEC8AC18
ProtectUefiImageCommon - 0xBEC96540
- 0x00000000BE3F1000 - 0x000000000000B520
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE3FC1B0
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE3FC250
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE3FC230
Loading driver B7F50E91-A759-412C-ADE4-DCD03E7F7C28
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BEC8A540
Loading driver at 0x000BE3E1000 EntryPoint=0x000BE3E1271 XhciDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BEC8A418
ProtectUefiImageCommon - 0xBEC8A540
- 0x00000000BE3E1000 - 0x000000000000F640
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE3F0220
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE3F0360
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE3F0340
Loading driver 240612B7-A063-11D4-9A3A-0090273FC14D
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BEC94D40
Loading driver at 0x000BE3D5000 EntryPoint=0x000BE3D5271 UsbBusDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BEC94C18
ProtectUefiImageCommon - 0xBEC94D40
- 0x00000000BE3D5000 - 0x000000000000B820
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE3E0350
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE3E0510
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE3E04F0
Loading driver 2D2E62CF-9ECF-43B7-8219-94E7FC713DFE
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BEC942C0
Loading driver at 0x000BE3CC000 EntryPoint=0x000BE3CC271 UsbKbDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BEC94A98
ProtectUefiImageCommon - 0xBEC942C0
- 0x00000000BE3CC000 - 0x0000000000008BA0
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE3D40B0
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE3D48B0
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE3D4890
Loading driver 9FB4B4A7-42C0-4BCD-8540-9BCC6711F83E
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BEC89D40
Loading driver at 0x000BE3C4000 EntryPoint=0x000BE3C4271 UsbMassStorageDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BEC89B98
ProtectUefiImageCommon - 0xBEC89D40
- 0x00000000BE3C4000 - 0x0000000000007880
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE3CB430
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE3CB580
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE3CB560
Loading driver E3752948-B9A1-4770-90C4-DF41C38986BE
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BEC897C0
Loading driver at 0x000BE3BB000 EntryPoint=0x000BE3BB271 QemuVideoDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BEC89A98
ProtectUefiImageCommon - 0xBEC897C0
- 0x00000000BE3BB000 - 0x0000000000008700
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE3C3040
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE3C3410
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE3C33F0
InstallProtocolInterface: 5C198761-16A8-4E69-972C-89D67954F81D BE3C3070
Loading driver D6099B94-CD97-4CC5-8714-7F6312701A8A
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BEC882C0
Loading driver at 0x000BE3B3000 EntryPoint=0x000BE3B3271 VirtioGpuDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BEC88A98
ProtectUefiImageCommon - 0xBEC882C0
- 0x00000000BE3B3000 - 0x00000000000075A0
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE3BA270
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE3BA2A0
[Bds] Entry...
[BdsDxe] Locate Variable Lock protocol - Success
[Variable] Lock: 8BE4DF61-93CA-11D2-AA0D-00E098032B8C:PlatformLangCodes Success
[Variable] Lock: 8BE4DF61-93CA-11D2-AA0D-00E098032B8C:LangCodes Success
[Variable] Lock: 8BE4DF61-93CA-11D2-AA0D-00E098032B8C:BootOptionSupport Success
[Variable] Lock: 8BE4DF61-93CA-11D2-AA0D-00E098032B8C:HwErrRecSupport Success
[Variable] Lock: 8BE4DF61-93CA-11D2-AA0D-00E098032B8C:OsIndicationsSupported Success
Variable Driver Auto Update Lang, Lang:eng, PlatformLang:en Status: Success
[Variable] Lock: 8BE4DF61-93CA-11D2-AA0D-00E098032B8C:PlatformRecovery0000 Success
PlatformBootManagerBeforeConsole
Registered NotifyDevPath Event
PCI Bus First Scanning
PciBus: Discovered PCI @ [00|00|00]
PciBus: Discovered PCI @ [00|01|00]
PciBus: Discovered PCI @ [00|01|01]
BAR[4]: Type = Io32; Alignment = 0xF; Length = 0x10; Offset = 0x20
PciBus: Discovered PCI @ [00|01|03]
PciBus: Discovered PCI @ [00|02|00]
BAR[0]: Type = PMem32; Alignment = 0xFFFFFF; Length = 0x1000000; Offset = 0x10
BAR[2]: Type = Mem32; Alignment = 0xFFF; Length = 0x1000; Offset = 0x18
PciBus: Discovered PCI @ [00|03|00]
BAR[0]: Type = Mem32; Alignment = 0x1FFFF; Length = 0x20000; Offset = 0x10
BAR[1]: Type = Io32; Alignment = 0x3F; Length = 0x40; Offset = 0x14
PciBus: Discovered PCI @ [00|04|00]
BAR[0]: Type = Io32; Alignment = 0x3F; Length = 0x40; Offset = 0x10
BAR[1]: Type = Mem32; Alignment = 0xFFF; Length = 0x1000; Offset = 0x14
BAR[4]: Type = PMem64; Alignment = 0x3FFF; Length = 0x4000; Offset = 0x20
PCI Bus Second Scanning
PciBus: Discovered PCI @ [00|00|00]
PciBus: Discovered PCI @ [00|01|00]
PciBus: Discovered PCI @ [00|01|01]
BAR[4]: Type = Io32; Alignment = 0xF; Length = 0x10; Offset = 0x20
PciBus: Discovered PCI @ [00|01|03]
PciBus: Discovered PCI @ [00|02|00]
BAR[0]: Type = PMem32; Alignment = 0xFFFFFF; Length = 0x1000000; Offset = 0x10
BAR[2]: Type = Mem32; Alignment = 0xFFF; Length = 0x1000; Offset = 0x18
PciBus: Discovered PCI @ [00|03|00]
BAR[0]: Type = Mem32; Alignment = 0x1FFFF; Length = 0x20000; Offset = 0x10
BAR[1]: Type = Io32; Alignment = 0x3F; Length = 0x40; Offset = 0x14
PciBus: Discovered PCI @ [00|04|00]
BAR[0]: Type = Io32; Alignment = 0x3F; Length = 0x40; Offset = 0x10
BAR[1]: Type = Mem32; Alignment = 0xFFF; Length = 0x1000; Offset = 0x14
BAR[4]: Type = PMem64; Alignment = 0x3FFF; Length = 0x4000; Offset = 0x20
PciBus: Discovered PCI @ [00|00|00]
PciBus: Discovered PCI @ [00|01|00]
PciBus: Discovered PCI @ [00|01|01]
BAR[4]: Type = Io32; Alignment = 0xF; Length = 0x10; Offset = 0x20
PciBus: Discovered PCI @ [00|01|03]
PciBus: Discovered PCI @ [00|02|00]
BAR[0]: Type = PMem32; Alignment = 0xFFFFFF; Length = 0x1000000; Offset = 0x10
BAR[2]: Type = Mem32; Alignment = 0xFFF; Length = 0x1000; Offset = 0x18
PciBus: Discovered PCI @ [00|03|00]
BAR[0]: Type = Mem32; Alignment = 0x1FFFF; Length = 0x20000; Offset = 0x10
BAR[1]: Type = Io32; Alignment = 0x3F; Length = 0x40; Offset = 0x14
PciBus: Discovered PCI @ [00|04|00]
BAR[0]: Type = Io32; Alignment = 0x3F; Length = 0x40; Offset = 0x10
BAR[1]: Type = Mem32; Alignment = 0xFFF; Length = 0x1000; Offset = 0x14
BAR[4]: Type = PMem64; Alignment = 0x3FFF; Length = 0x4000; Offset = 0x20
PciHostBridge: SubmitResources for PciRoot(0x0)
I/O: Granularity/SpecificFlag = 0 / 01
Length/Alignment = 0x1000 / 0xFFF
Mem: Granularity/SpecificFlag = 32 / 00
Length/Alignment = 0x1100000 / 0xFFFFFF
Mem: Granularity/SpecificFlag = 64 / 00
Length/Alignment = 0x100000 / 0xFFFFF
PciBus: HostBridge->SubmitResources() - Success
PciHostBridge: NotifyPhase (AllocateResources)
RootBridge: PciRoot(0x0)
Mem: Base/Length/Alignment = C0000000/1100000/FFFFFF - Success
Mem64: Base/Length/Alignment = 10000000000/100000/FFFFF - Success
I/O: Base/Length/Alignment = C000/1000/FFF - Success
PciBus: HostBridge->NotifyPhase(AllocateResources) - Success
PciBus: Resource Map for Root Bridge PciRoot(0x0)
Type = Io16; Base = 0xC000; Length = 0x1000; Alignment = 0xFFF
Base = 0xC000; Length = 0x40; Alignment = 0x3F; Owner = PCI [00|04|00:10]
Base = 0xC040; Length = 0x40; Alignment = 0x3F; Owner = PCI [00|03|00:14]
Base = 0xC080; Length = 0x10; Alignment = 0xF; Owner = PCI [00|01|01:20]
Type = Mem32; Base = 0xC0000000; Length = 0x1100000; Alignment = 0xFFFFFF
Base = 0xC0000000; Length = 0x1000000; Alignment = 0xFFFFFF; Owner = PCI [00|02|00:10]; Type = PMem32
Base = 0xC1000000; Length = 0x20000; Alignment = 0x1FFFF; Owner = PCI [00|03|00:10]
Base = 0xC1020000; Length = 0x1000; Alignment = 0xFFF; Owner = PCI [00|04|00:14]
Base = 0xC1021000; Length = 0x1000; Alignment = 0xFFF; Owner = PCI [00|02|00:18]
Type = Mem64; Base = 0x10000000000; Length = 0x100000; Alignment = 0xFFFFF
Base = 0x10000000000; Length = 0x4000; Alignment = 0x3FFF; Owner = PCI [00|04|00:20]; Type = PMem64
InstallProtocolInterface: 30CFE3E7-3DE1-4586-BE20-DEABA1B3B793 0
InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B BEC92E98
InstallProtocolInterface: 4CF5B200-68B8-4CA5-9EEC-B23E3F50029A BEC92028
InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B BEC92F18
InstallProtocolInterface: 4CF5B200-68B8-4CA5-9EEC-B23E3F50029A BEC92428
InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B BEC92F98
InstallProtocolInterface: 4CF5B200-68B8-4CA5-9EEC-B23E3F50029A BEC92828
InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B BEC91E98
InstallProtocolInterface: 4CF5B200-68B8-4CA5-9EEC-B23E3F50029A BEC91028
InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B BEC91F18
InstallProtocolInterface: 4CF5B200-68B8-4CA5-9EEC-B23E3F50029A BEC91428
InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B BEC91F98
InstallProtocolInterface: 4CF5B200-68B8-4CA5-9EEC-B23E3F50029A BEC91828
InstallProtocolInterface: 4006C0C1-FCB3-403E-996D-4A6C8724E06D BEC918F0
[Security] 3rd party image[0] is deferred to load before EndOfDxe: PciRoot(0x0)/Pci(0x3,0x0)/Offset(0x23400,0x373FF).
InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B BEC90E98
InstallProtocolInterface: 4CF5B200-68B8-4CA5-9EEC-B23E3F50029A BEC90028
OnRootBridgesConnected: root bridges have been connected, installing ACPI tables
Select Item: 0x19
Select Item: 0x28
Select Item: 0x19
Select Item: 0x27
Select Item: 0x19
Select Item: 0x21
Select Item: 0x19
Select Item: 0x22
Select Item: 0x1
InstallQemuFwCfgTables: installed 6 tables
PcRtc: Write 0x20 to CMOS location 0x32
AcpiPlatform: S3SaveStateInstalledNotify: DmaAccess@0xBF6B9018 ScratchBuffer@[0xBF6B9028+0x8]
[Variable]END_OF_DXE is signaled
Initialize variable error flag (FF)
AcpiS3ContextSave!
AcpiS3Context: AcpiFacsTable is 0xBF6C5000
AcpiS3Context: IdtrProfile is 0xBE3B2000
AcpiS3Context: S3NvsPageTableAddress is 0x 0
AcpiS3Context: S3DebugBufferAddress is 0xBF6B7000
AcpiS3Context: BootScriptStackBase is 0xBE3A9000
AcpiS3Context: BootScriptStackSize is 0x 8000
Select Item: 0x19
Select Item: 0x27
InstallProtocolInterface: 60FF8964-E906-41D0-AFED-F241E974E08E 0
InstallProtocolInterface: FA20568B-548B-4B2B-81EF-1BA08D4A3CEC 0
Select Item: 0x0
FW CFG Signature: 0x554D4551
Select Item: 0x1
FW CFG Revision: 0x3
QemuFwCfg interface (DMA) is supported.
Select Item: 0x19
Select Item: 0x27
[Security] 3rd party image[BEC8F818] can be loaded after EndOfDxe: PciRoot(0x0)/Pci(0x3,0x0)/Offset(0x23400,0x373FF).
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BEC8E0C0
Loading driver at 0x000BE2D8000 EntryPoint=0x000BE2DDFD2 8086100e.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BEC8BB18
ProtectUefiImageCommon - 0xBEC8E0C0
- 0x00000000BE2D8000 - 0x00000000000A33E0
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE2F8650
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE2F8620
Found LPC Bridge device
BdsPlatform.c+498: COM1 DevPath: PciRoot(0x0)/Pci(0x1,0x0)/Serial(0x0)/Uart(115200,8,N,1)/VenMsg(E0C14753-F9BE-11D2-9A0C-0090273FC14D)
BdsPlatform.c+527: COM2 DevPath: PciRoot(0x0)/Pci(0x1,0x0)/Serial(0x1)/Uart(115200,8,N,1)/VenMsg(E0C14753-F9BE-11D2-9A0C-0090273FC14D)
Found PCI display device
QemuVideo: QEMU Standard VGA detected
QemuVideo: Using mmio bar @ 0xC1021000
InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B BECC1C98
QemuVideoBochsModeSetup: AvailableFbSize=0x1000000
Adding Mode 0 as Bochs Internal Mode 0: 640x480, 32-bit
Adding Mode 1 as Bochs Internal Mode 1: 800x480, 32-bit
Adding Mode 2 as Bochs Internal Mode 2: 800x600, 32-bit
Adding Mode 3 as Bochs Internal Mode 3: 832x624, 32-bit
Adding Mode 4 as Bochs Internal Mode 4: 960x640, 32-bit
Adding Mode 5 as Bochs Internal Mode 5: 1024x600, 32-bit
Adding Mode 6 as Bochs Internal Mode 6: 1024x768, 32-bit
Adding Mode 7 as Bochs Internal Mode 7: 1152x864, 32-bit
Adding Mode 8 as Bochs Internal Mode 8: 1152x870, 32-bit
Adding Mode 9 as Bochs Internal Mode 9: 1280x720, 32-bit
Adding Mode 10 as Bochs Internal Mode 10: 1280x760, 32-bit
Adding Mode 11 as Bochs Internal Mode 11: 1280x768, 32-bit
Adding Mode 12 as Bochs Internal Mode 12: 1280x800, 32-bit
Adding Mode 13 as Bochs Internal Mode 13: 1280x960, 32-bit
Adding Mode 14 as Bochs Internal Mode 14: 1280x1024, 32-bit
Adding Mode 15 as Bochs Internal Mode 15: 1360x768, 32-bit
Adding Mode 16 as Bochs Internal Mode 16: 1366x768, 32-bit
Adding Mode 17 as Bochs Internal Mode 17: 1400x1050, 32-bit
Adding Mode 18 as Bochs Internal Mode 18: 1440x900, 32-bit
Adding Mode 19 as Bochs Internal Mode 19: 1600x900, 32-bit
Adding Mode 20 as Bochs Internal Mode 20: 1600x1200, 32-bit
Adding Mode 21 as Bochs Internal Mode 21: 1680x1050, 32-bit
Adding Mode 22 as Bochs Internal Mode 22: 1920x1080, 32-bit
Adding Mode 23 as Bochs Internal Mode 23: 1920x1200, 32-bit
Adding Mode 24 as Bochs Internal Mode 24: 1920x1440, 32-bit
Adding Mode 25 as Bochs Internal Mode 25: 2000x2000, 32-bit
Adding Mode 26 as Bochs Internal Mode 26: 2048x1536, 32-bit
Adding Mode 27 as Bochs Internal Mode 27: 2048x2048, 32-bit
Adding Mode 28 as Bochs Internal Mode 28: 2560x1440, 32-bit
Adding Mode 29 as Bochs Internal Mode 29: 2560x1600, 32-bit
InitializeBochsGraphicsMode: 640x480 @ 32
PixelBlueGreenRedReserved8BitPerColor
FrameBufferBase: 0xC0000000, FrameBufferSize: 0x12C000
0: shl:0 shr:0 mask:FF0000
1: shl:0 shr:0 mask:FF00
2: shl:0 shr:0 mask:FF
Bytes per pixel: 4
0: shl:0 shr:0 mask:FF0000
1: shl:0 shr:0 mask:FF00
2: shl:0 shr:0 mask:FF
Bytes per pixel: 4
InstallProtocolInterface: 9042A9DE-23DC-4A38-96FB-7ADED080516A BEC8B838
InstallVbeShim: VBE shim installed
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
Select Item: 0xE
[Bds]RegisterKeyNotify: 000C/0000 80000000/00 Success
[Bds]RegisterKeyNotify: 0017/0000 80000000/00 Success
[Bds]RegisterKeyNotify: 0000/000D 80000000/00 Success
InstallProtocolInterface: 64A892DC-5561-4536-92C7-799BFC183355 BECB4EA8
InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B BEC8CE98
InstallProtocolInterface: 7EE2BD44-3DA0-11D4-9A38-0090273FC14D BEC8C6A8
InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B BEC8C918
InstallProtocolInterface: 7EE2BD44-3DA0-11D4-9A38-0090273FC14D BEC8C828
InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B BEC19818
InstallProtocolInterface: 7EE2BD44-3DA0-11D4-9A38-0090273FC14D BEC19728
InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B BEC19118
InstallProtocolInterface: 7EE2BD44-3DA0-11D4-9A38-0090273FC14D BEC19528
InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B BEC1B018
InstallProtocolInterface: 7EE2BD44-3DA0-11D4-9A38-0090273FC14D BEC19228
InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B BEC1BC98
InstallProtocolInterface: 7EE2BD44-3DA0-11D4-9A38-0090273FC14D BEC1BBA8
InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B BEC1B418
InstallProtocolInterface: BB25CF6F-F1D4-11D2-9A0C-0090273FC1FD BECB4B28
Terminal - Mode 0, Column = 80, Row = 25
Terminal - Mode 1, Column = 80, Row = 50
Terminal - Mode 2, Column = 100, Row = 31
^[[2J^[[01;01H^[[=3h^[[2J^[[01;01HInstallProtocolInterface: 387477C1-69C7-11D2-8E39-00A0C969723B BEC1A340
InstallProtocolInterface: DD9E7534-7762-4698-8C14-F58517A625AA BEC1A428
InstallProtocolInterface: 387477C2-69C7-11D2-8E39-00A0C969723B BEC1A358
InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B BEC1B298
InstallProtocolInterface: D3B36F2B-D551-11D4-9A46-0090273FC14D 0
InstallProtocolInterface: D3B36F2C-D551-11D4-9A46-0090273FC14D 0
InstallProtocolInterface: D3B36F2D-D551-11D4-9A46-0090273FC14D 0
^[[2J^[[01;01H^[[=3h^[[2J^[[01;01H^[[2J^[[01;01H^[[=3h^[[2J^[[01;01H^[[0m^[[35m^[[40mPixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
InitializeBochsGraphicsMode: 800x600 @ 32
PixelBlueGreenRedReserved8BitPerColor
FrameBufferBase: 0xC0000000, FrameBufferSize: 0x1D4C00
0: shl:0 shr:0 mask:FF0000
1: shl:0 shr:0 mask:FF00
2: shl:0 shr:0 mask:FF
Bytes per pixel: 4
0: shl:0 shr:0 mask:FF0000
1: shl:0 shr:0 mask:FF00
2: shl:0 shr:0 mask:FF
Bytes per pixel: 4
GraphicsConsole video resolution 800 x 600
Graphics - Mode 0, Column = 80, Row = 25
Graphics - Mode 1, Column = 0, Row = 0
Graphics - Mode 2, Column = 100, Row = 31
InstallProtocolInterface: 387477C2-69C7-11D2-8E39-00A0C969723B BEC18630
InstallProtocolInterface: D3B36F2C-D551-11D4-9A46-0090273FC14D 0
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
InstallProtocolInterface: 9042A9DE-23DC-4A38-96FB-7ADED080516A BE58C0F0
^[[2J^[[01;01H^[[=3h^[[2J^[[01;01H^[[0m^[[37m^[[40mInstallProtocolInterface: 387477C1-69C7-11D2-8E39-00A0C969723B BEC02028
InstallProtocolInterface: DD9E7534-7762-4698-8C14-F58517A625AA BEC02040
InstallProtocolInterface: D3B36F2B-D551-11D4-9A46-0090273FC14D 0
PlatformBootManagerAfterConsole
Found Mass Storage device: PciRoot(0x0)/Pci(0x1,0x1)
SataControllerStart START
InstallProtocolInterface: A1E37052-80D9-4E65-A317-3E9A55C43EC9 BEC04D20
SataControllerStart END status = Success
==AtaAtapiPassThru Start== Controller = BEC93898
[secondary] channel [master] [cdrom ] device
CalculateBestPioMode: AdvancedPioMode = 3
IdeInitCalculateMode: PioMode = 3
CalculateBestUdmaMode: DeviceUDmaMode = 203F
IdeInitCalculateMode: UdmaMode = 5
InstallProtocolInterface: 1D3DE7F0-0807-424F-AA69-11A54E19A46F BEC122C0
InstallProtocolInterface: 143B7632-B81B-4CB7-ABD3-B625A5B9BFFE BEC12310
InstallProtocolInterface: 19DF145A-B1D4-453F-8507-38816676D7F6 BEC8DC18
InstallProtocolInterface: 0167CCC4-D0F7-4F21-A3EF-9E64B7CDCE8B BEC12120
InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B BEC04B18
InstallProtocolInterface: 932F47E6-2362-4002-803E-3CD54B138F85 BEC04BA8
InstallProtocolInterface: 964E5B21-6459-11D2-8E39-00A0C969723B BEC002A8
InstallProtocolInterface: A77B2472-E282-4E9F-A245-C2C0E27BBCC1 BEC002D8
InstallProtocolInterface: D432A67F-14DC-484B-B3BB-3F0291849327 BEC003D0
InstallProtocolInterface: CE345171-BA0B-11D2-8E4F-00A0C969723B BEC00820
InstallProtocolInterface: 151C8EAE-7F2C-472C-9E54-9828194F6A88 BEC00838
BlockSize : 2048
LastBlock : 0
FatOpenDevice: read of part_lba failed No Media
Boot Mode:0
PlatformBdsConnectSequence
Select Item: 0x19
EfiBootManagerConnectAll
InstallProtocolInterface: 964E5B21-6459-11D2-8E39-00A0C969723B BEBDF428
InstallProtocolInterface: CE345171-BA0B-11D2-8E4F-00A0C969723B BEBDEBA0
FatOpenDevice: read of part_lba failed No Media
InstallProtocolInterface: 964E5B21-6459-11D2-8E39-00A0C969723B BEBDE828
InstallProtocolInterface: CE345171-BA0B-11D2-8E4F-00A0C969723B BEBD52A0
FatOpenDevice: read of part_lba failed No Media
SataControllerStart START
SataControllerStart error return status = Already started
BlockSize : 2048
LastBlock : 0
FatOpenDevice: read of part_lba failed No Media
InstallProtocolInterface: A19832B9-AC25-11D3-9A2D-0090273FC14D BE2FAC90
InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B BE2FB208
InstallProtocolInterface: E18541CD-F755-4F73-928D-643C8A79B229 BE2FB0C0
InstallProtocolInterface: 1ACED566-76ED-4218-BC81-767F1F977A89 BE2FB0C0
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE2FB0E8
InstallProtocolInterface: 6F6C7323-2077-7523-6E68-656C7066756C BE2FB100
InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B BE2FB268
InstallProtocolInterface: 330D4706-F2A0-4E4F-A369-B66FA8D54385 BE2FB108
InstallProtocolInterface: 9E23D768-D2F3-4366-9FC3-3A7ABA864374 BEBD54B0
InstallProtocolInterface: F36FF770-A7E1-42CF-9ED2-56F0F271F44C BEBBF7C0
InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B BEBBFD98
InstallProtocolInterface: 330D4706-F2A0-4E4F-A369-B66FA8D54385 BEBBFBA0
InstallProtocolInterface: E4F61863-FE2C-4B56-A8F4-08519BC439DF BEBBFB98
InstallProtocolInterface: 7AB33A91-ACE5-4326-B572-E7EE33D39F16 BEABE440
InstallProtocolInterface: F44C00EE-1F2C-4A00-AA09-1C9F3E0800A3 BEABE020
InstallProtocolInterface: 7AB33A91-ACE5-4326-B572-E7EE33D39F16 BEABBBC0
InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B BEABA998
InstallProtocolInterface: 330D4706-F2A0-4E4F-A369-B66FA8D54385 BEABB8B0
InstallProtocolInterface: C51711E7-B4BF-404A-BFB8-0A048EF1FFE4 BEABB0A0
InstallProtocolInterface: 5B446ED1-E30B-4FAA-871A-3654ECA36080 BEABB5F8
InstallProtocolInterface: 41D94CD2-35B6-455A-8258-D4E51334AADD BEAB6D20
InstallProtocolInterface: 83F01464-99BD-45E5-B383-AF6305D8E9E6 BEAB6FA0
InstallProtocolInterface: 41D94CD2-35B6-455A-8258-D4E51334AADD BEAB38A0
InstallProtocolInterface: 3AD9DF29-4501-478D-B1F8-7F7FE70E50F3 BEAB3638
InstallProtocolInterface: 9D9A39D8-BD42-4A73-A4D5-8EE94BE11380 BEAB3C20
InstallProtocolInterface: 41D94CD2-35B6-455A-8258-D4E51334AADD BEAADA20
InstallProtocolInterface: 3AD9DF29-4501-478D-B1F8-7F7FE70E50F3 BEAAD138
InstallProtocolInterface: 2FE800BE-8F01-4AA6-946B-D71388E1833F BEAAE2A0
InstallProtocolInterface: 7AB33A91-ACE5-4326-B572-E7EE33D39F16 BEAACC40
InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B BEAA9D18
InstallProtocolInterface: 330D4706-F2A0-4E4F-A369-B66FA8D54385 BEAAAFE8
InstallProtocolInterface: EC835DD3-FE0F-617B-A621-B350C3E13388 BEAAA020
InstallProtocolInterface: 937FE521-95AE-4D1A-8929-48BCD90AD31A BEAAAF70
InstallProtocolInterface: 41D94CD2-35B6-455A-8258-D4E51334AADD BEAA5920
InstallProtocolInterface: 00720665-67EB-4A99-BAF7-D3C33A1C7CC9 BEAA5D40
InstallProtocolInterface: 2C8759D5-5C2D-66EF-925F-B66C101957E2 BEAA21A0
InstallProtocolInterface: EC20EB79-6C1A-4664-9A0D-D2E4CC16D664 BEAA2CC0
InstallProtocolInterface: 2C8759D5-5C2D-66EF-925F-B66C101957E2 BEA9FBA0
InstallProtocolInterface: 66ED4721-3C98-4D3E-81E3-D03DD39A7254 BEAA0420
InstallProtocolInterface: 2C8759D5-5C2D-66EF-925F-B66C101957E2 BEA9CBA0
InstallProtocolInterface: 4F948815-B4B9-43CB-8A33-90E060B34955 BEA9D638
InstallProtocolInterface: 9FB9A8A1-2F4A-43A6-889C-D0F7B6C47AD5 BEA9D8B0
InstallProtocolInterface: 2C8759D5-5C2D-66EF-925F-B66C101957E2 BEA99420
InstallProtocolInterface: 4F948815-B4B9-43CB-8A33-90E060B34955 BEA99EB8
InstallProtocolInterface: D9760FF3-3CCA-4267-80F9-7527FAFA4223 BEA9A620
InstallProtocolInterface: B95E9FDA-26DE-48D2-8807-1F9107AC5E3A BEA8E030
InstallProtocolInterface: 8A219718-4EF5-4761-91C8-C0F04BDA9E56 BEA8D020
InstallProtocolInterface: 41D94CD2-35B6-455A-8258-D4E51334AADD BEA8D6A0
InstallProtocolInterface: 3AD9DF29-4501-478D-B1F8-7F7FE70E50F3 BEA8D538
InstallProtocolInterface: 78247C57-63DB-4708-99C2-A8B4A9A61F6B BEA8DCB0
InstallProtocolInterface: 41D94CD2-35B6-455A-8258-D4E51334AADD BEA8C1A0
InstallProtocolInterface: 3AD9DF29-4501-478D-B1F8-7F7FE70E50F3 BEA8C838
InstallProtocolInterface: 41D94CD2-35B6-455A-8258-D4E51334AADD BEA8BD20
InstallProtocolInterface: 3AD9DF29-4501-478D-B1F8-7F7FE70E50F3 BEA8B038
InstallProtocolInterface: F4B427BB-BA21-4F16-BC4E-43E416AB619C BEA8B6B0
InstallProtocolInterface: 41D94CD2-35B6-455A-8258-D4E51334AADD BEA8B3A0
InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B BEA8AB98
InstallProtocolInterface: 56EC3091-954C-11D2-8E3F-00A0C969723B BEA8AB28
InstallProtocolInterface: 03C4E603-AC28-11D3-9A2D-0090273FC14D BEA8E120
InstallProtocolInterface: A19832B9-AC25-11D3-9A2D-0090273FC14D BE2FAC90
InstallProtocolInterface: 87C8BAD7-0595-4053-8297-DEDE395F5D5B BEA8A5C0
InstallProtocolInterface: BF0A78BA-EC29-49CF-A1C9-7AE54EAB6A51 BEA89038
InstallProtocolInterface: 2C8759D5-5C2D-66EF-925F-B66C101957E2 BEA899A0
InstallProtocolInterface: 4F948815-B4B9-43CB-8A33-90E060B34955 BEA891B8
InstallProtocolInterface: 2C8759D5-5C2D-66EF-925F-B66C101957E2 BEA88C20
InstallProtocolInterface: 4F948815-B4B9-43CB-8A33-90E060B34955 BEA88038
InstallProtocolInterface: 2C8759D5-5C2D-66EF-925F-B66C101957E2 BEA882A0
InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B BEA88718
InstallProtocolInterface: 56EC3091-954C-11D2-8E3F-00A0C969723B BEA8A128
InstallProtocolInterface: 03C4E603-AC28-11D3-9A2D-0090273FC14D BEA8E120
InstallProtocolInterface: A19832B9-AC25-11D3-9A2D-0090273FC14D BE2FAC90
InstallProtocolInterface: 143B7632-B81B-4CB7-ABD3-B625A5B9BFFE BEA86048
InstallProtocolInterface: 65530BC7-A359-410F-B010-5AADC7EC2B62 BEA878B8
InstallProtocolInterface: 41D94CD2-35B6-455A-8258-D4E51334AADD BEA85020
InstallProtocolInterface: 4579B72D-7EC4-4DD4-8486-083C86B182A7 BEA86030
InstallProtocolInterface: FA920010-6785-4941-B6EC-498C579F160A BEA84BA0
InstallProtocolInterface: A19832B9-AC25-11D3-9A2D-0090273FC14D BEA84528
InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B BEA84118
InstallProtocolInterface: 9E23D768-D2F3-4366-9FC3-3A7ABA864374 BEA842B0
InstallProtocolInterface: F36FF770-A7E1-42CF-9ED2-56F0F271F44C BEA834C0
InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B BE982F18
InstallProtocolInterface: 330D4706-F2A0-4E4F-A369-B66FA8D54385 BEA835A0
InstallProtocolInterface: E4F61863-FE2C-4B56-A8F4-08519BC439DF BEA83598
InstallProtocolInterface: 7AB33A91-ACE5-4326-B572-E7EE33D39F16 BE9820C0
InstallProtocolInterface: F44C00EE-1F2C-4A00-AA09-1C9F3E0800A3 BE981AA0
InstallProtocolInterface: 7AB33A91-ACE5-4326-B572-E7EE33D39F16 BE92DD40
InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B BE92ED18
InstallProtocolInterface: 330D4706-F2A0-4E4F-A369-B66FA8D54385 BE92E830
InstallProtocolInterface: C51711E7-B4BF-404A-BFB8-0A048EF1FFE4 BE92E020
InstallProtocolInterface: 5B446ED1-E30B-4FAA-871A-3654ECA36080 BE92E578
InstallProtocolInterface: 41D94CD2-35B6-455A-8258-D4E51334AADD BE92A220
InstallProtocolInterface: 83F01464-99BD-45E5-B383-AF6305D8E9E6 BE92A820
InstallProtocolInterface: 41D94CD2-35B6-455A-8258-D4E51334AADD BE926CA0
InstallProtocolInterface: 3AD9DF29-4501-478D-B1F8-7F7FE70E50F3 BE926B38
InstallProtocolInterface: 9D9A39D8-BD42-4A73-A4D5-8EE94BE11380 BE927120
InstallProtocolInterface: 41D94CD2-35B6-455A-8258-D4E51334AADD BE921820
InstallProtocolInterface: 3AD9DF29-4501-478D-B1F8-7F7FE70E50F3 BE9215B8
InstallProtocolInterface: 2FE800BE-8F01-4AA6-946B-D71388E1833F BE921DA0
InstallProtocolInterface: 7AB33A91-ACE5-4326-B572-E7EE33D39F16 BE91DCC0
InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B BE91DA18
InstallProtocolInterface: 330D4706-F2A0-4E4F-A369-B66FA8D54385 BE91EFE8
InstallProtocolInterface: EC835DD3-FE0F-617B-A621-B350C3E13388 BE91E020
InstallProtocolInterface: 937FE521-95AE-4D1A-8929-48BCD90AD31A BE91EF70
InstallProtocolInterface: 41D94CD2-35B6-455A-8258-D4E51334AADD BE91A220
InstallProtocolInterface: 00720665-67EB-4A99-BAF7-D3C33A1C7CC9 BE91A8C0
InstallProtocolInterface: 2C8759D5-5C2D-66EF-925F-B66C101957E2 BE916120
InstallProtocolInterface: EC20EB79-6C1A-4664-9A0D-D2E4CC16D664 BE916AC0
InstallProtocolInterface: 2C8759D5-5C2D-66EF-925F-B66C101957E2 BE913CA0
InstallProtocolInterface: 66ED4721-3C98-4D3E-81E3-D03DD39A7254 BE914320
InstallProtocolInterface: 2C8759D5-5C2D-66EF-925F-B66C101957E2 BE910C20
InstallProtocolInterface: 4F948815-B4B9-43CB-8A33-90E060B34955 BE910038
InstallProtocolInterface: 9FB9A8A1-2F4A-43A6-889C-D0F7B6C47AD5 BE911930
InstallProtocolInterface: 2C8759D5-5C2D-66EF-925F-B66C101957E2 BE90DCA0
InstallProtocolInterface: 4F948815-B4B9-43CB-8A33-90E060B34955 BE90DB38
InstallProtocolInterface: D9760FF3-3CCA-4267-80F9-7527FAFA4223 BE90E5A0
InstallProtocolInterface: B95E9FDA-26DE-48D2-8807-1F9107AC5E3A BE902030
InstallProtocolInterface: 8A219718-4EF5-4761-91C8-C0F04BDA9E56 BE90D2A0
InstallProtocolInterface: 41D94CD2-35B6-455A-8258-D4E51334AADD BE9014A0
InstallProtocolInterface: 3AD9DF29-4501-478D-B1F8-7F7FE70E50F3 BE901CB8
InstallProtocolInterface: 78247C57-63DB-4708-99C2-A8B4A9A61F6B BE901B30
InstallProtocolInterface: 41D94CD2-35B6-455A-8258-D4E51334AADD BE900820
InstallProtocolInterface: 3AD9DF29-4501-478D-B1F8-7F7FE70E50F3 BE900C38
InstallProtocolInterface: 41D94CD2-35B6-455A-8258-D4E51334AADD BE8FF020
InstallProtocolInterface: 3AD9DF29-4501-478D-B1F8-7F7FE70E50F3 BE900338
InstallProtocolInterface: F4B427BB-BA21-4F16-BC4E-43E416AB619C BE8FF8B0
InstallProtocolInterface: 41D94CD2-35B6-455A-8258-D4E51334AADD BE8FF6A0
InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B BE8FF498
InstallProtocolInterface: 56EC3091-954C-11D2-8E3F-00A0C969723B BE8FF528
InstallProtocolInterface: 03C4E603-AC28-11D3-9A2D-0090273FC14D BE902120
InstallProtocolInterface: A19832B9-AC25-11D3-9A2D-0090273FC14D BEA84528
InstallProtocolInterface: 87C8BAD7-0595-4053-8297-DEDE395F5D5B BE8FE7C0
InstallProtocolInterface: BF0A78BA-EC29-49CF-A1C9-7AE54EAB6A51 BE8FE1B8
InstallProtocolInterface: 2C8759D5-5C2D-66EF-925F-B66C101957E2 BE8FDC20
InstallProtocolInterface: 4F948815-B4B9-43CB-8A33-90E060B34955 BE8FD038
InstallProtocolInterface: 2C8759D5-5C2D-66EF-925F-B66C101957E2 BE8FD3A0
InstallProtocolInterface: 4F948815-B4B9-43CB-8A33-90E060B34955 BE8FD238
InstallProtocolInterface: 2C8759D5-5C2D-66EF-925F-B66C101957E2 BE8FC0A0
InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B BE8FC318
InstallProtocolInterface: 56EC3091-954C-11D2-8E3F-00A0C969723B BE8FED28
InstallProtocolInterface: 03C4E603-AC28-11D3-9A2D-0090273FC14D BE902120
InstallProtocolInterface: A19832B9-AC25-11D3-9A2D-0090273FC14D BEA84528
InstallProtocolInterface: 143B7632-B81B-4CB7-ABD3-B625A5B9BFFE BE8FB048
InstallProtocolInterface: 65530BC7-A359-410F-B010-5AADC7EC2B62 BE8FAC38
InstallProtocolInterface: 41D94CD2-35B6-455A-8258-D4E51334AADD BE8FA120
InstallProtocolInterface: 4579B72D-7EC4-4DD4-8486-083C86B182A7 BE8FB030
FatOpenDevice: read of part_lba failed No Media
FatOpenDevice: read of part_lba failed No Media
SataControllerStart START
SataControllerStart error return status = Already started
BlockSize : 2048
LastBlock : 0
FatOpenDevice: read of part_lba failed No Media
FatOpenDevice: read of part_lba failed No Media
FatOpenDevice: read of part_lba failed No Media
BlockSize : 2048
LastBlock : 0
FatOpenDevice: read of part_lba failed No Media
Select Item: 0x8
Select Item: 0x17
qemu -kernel was not used.
Select Item: 0x19
[Bds]OsIndication: 0000000000000000
[Bds]=============Begin Load Options Dumping ...=============
Driver Options:
SysPrep Options:
Boot Options:
Boot0000: UiApp 0x0109
Boot0001: UEFI QEMU DVD-ROM QM00003 0x0001
Boot0002: UEFI Floppy 0x0001
Boot0003: UEFI Floppy 2 0x0001
Boot0004: UEFI PXEv4 (MAC:525400123456) 0x0001
Boot0005: UEFI PXEv6 (MAC:525400123456) 0x0001
Boot0006: UEFI PXEv4 (MAC:525400123457) 0x0001
Boot0007: UEFI PXEv6 (MAC:525400123457) 0x0001
Boot0008: EFI Internal Shell 0x0001
PlatformRecovery Options:
PlatformRecovery0000: Default PlatformRecovery 0x0001
[Bds]=============End Load Options Dumping=============
[Bds]BdsWait ...Zzzzzzzzzzzz...
[Bds]Exit the waiting!
[Bds]Stop Hotkey Service!
[Bds]UnregisterKeyNotify: 000C/0000 Success
[Bds]UnregisterKeyNotify: 0017/0000 Success
[Bds]UnregisterKeyNotify: 0000/000D Success
Memory Previous Current Next
Type Pages Pages Pages
====== ======== ======== ========
0A 00000004 00000022 0000002A
09 00000008 00000009 0000000B
00 00000004 00000025 0000002E
06 00000024 00000058 0000006E
05 00000030 00000052 00000066
03 00000180 000003FB 000004F9
04 00000F00 00000CE2 00000F00
Memory Type Information settings change.
[Bds]Booting UEFI QEMU DVD-ROM QM00003
FatOpenDevice: read of part_lba failed No Media
BlockSize : 2048
LastBlock : 0
FatOpenDevice: read of part_lba failed No Media
[Bds] Expand PciRoot(0x0)/Pci(0x1,0x1)/Ata(Secondary,Master,0x0) -> <null string>
Memory Previous Current Next
Type Pages Pages Pages
====== ======== ======== ========
0A 00000004 00000022 0000002A
09 00000008 00000009 0000000B
00 00000004 00000025 0000002E
06 00000024 00000058 0000006E
05 00000030 00000052 00000066
03 00000180 000003FB 000004F9
04 00000F00 00000CE2 00000F00
Memory Type Information settings change.
[Bds]Booting UEFI Floppy
FatOpenDevice: read of part_lba failed No Media
FatOpenDevice: read of part_lba failed No Media
[Bds] Expand PciRoot(0x0)/Pci(0x1,0x0)/Floppy(0x0) -> <null string>
Memory Previous Current Next
Type Pages Pages Pages
====== ======== ======== ========
0A 00000004 00000022 0000002A
09 00000008 00000009 0000000B
00 00000004 00000025 0000002E
06 00MnpAddFreeTxBuf: Add TxBufWrap BEBD3018, TxBuf BEBD3041
MnpAddFreeTxBuf: Add TxBufWrap BEBD3698, TxBuf BEBD36C1
MnpAddFreeTxBuf: Add TxBufWrap BEBD2018, TxBuf BEBD2041
MnpAddFreeTxBuf: Add TxBufWrap BEBD2698, TxBuf BEBD26C1
MnpAddFreeTxBuf: Add TxBufWrap BEBD1018, TxBuf BEBD1041
MnpAddFreeTxBuf: Add TxBufWrap BEBD1698, TxBuf BEBD16C1
MnpAddFreeTxBuf: Add TxBufWrap BEBD0018, TxBuf BEBD0041
MnpAddFreeTxBuf: Add TxBufWrap BEBD0698, TxBuf BEBD06C1
MnpAddFreeTxBuf: Add TxBufWrap BEBCF018, TxBuf BEBCF041
MnpAddFreeTxBuf: Add TxBufWrap BEBCF698, TxBuf BEBCF6C1
MnpAddFreeTxBuf: Add TxBufWrap BEBCE018, TxBuf BEBCE041
MnpAddFreeTxBuf: Add TxBufWrap BEBCE698, TxBuf BEBCE6C1
MnpAddFreeTxBuf: Add TxBufWrap BEBCD018, TxBuf BEBCD041
MnpAddFreeTxBuf: Add TxBufWrap BEBCD698, TxBuf BEBCD6C1
MnpAddFreeTxBuf: Add TxBufWrap BEBCC018, TxBuf BEBCC041
MnpAddFreeTxBuf: Add TxBufWrap BEBCC698, TxBuf BEBCC6C1
MnpAddFreeTxBuf: Add TxBufWrap BEBCB018, TxBuf BEBCB041
MnpAddFreeTxBuf: Add TxBufWrap BEBCB698, TxBuf BEBCB6C1
MnpAddFreeTxBuf: Add TxBufWrap BEBCA018, TxBuf BEBCA041
MnpAddFreeTxBuf: Add TxBufWrap BEBCA698, TxBuf BEBCA6C1
MnpAddFreeTxBuf: Add TxBufWrap BEBC9018, TxBuf BEBC9041
MnpAddFreeTxBuf: Add TxBufWrap BEBC9698, TxBuf BEBC96C1
MnpAddFreeTxBuf: Add TxBufWrap BE800018, TxBuf BE800041
MnpAddFreeTxBuf: Add TxBufWrap BE800698, TxBuf BE8006C1
MnpAddFreeTxBuf: Add TxBufWrap BE7FF018, TxBuf BE7FF041
MnpAddFreeTxBuf: Add TxBufWrap BE7FF698, TxBuf BE7FF6C1
MnpAddFreeTxBuf: Add TxBufWrap BE7FE018, TxBuf BE7FE041
MnpAddFreeTxBuf: Add TxBufWrap BE7FE698, TxBuf BE7FE6C1
MnpAddFreeTxBuf: Add TxBufWrap BE7FD018, TxBuf BE7FD041
MnpAddFreeTxBuf: Add TxBufWrap BE7FD698, TxBuf BE7FD6C1
MnpAddFreeTxBuf: Add TxBufWrap BE7FC018, TxBuf BE7FC041
MnpAddFreeTxBuf: Add TxBufWrap BE7FC698, TxBuf BE7FC6C1
000024 00000058 0000006E
05 00000030 00000052 00000066
03 00000180 000003FB 000004F9
04 00000F00 00000CE7 00000F00
Memory Type Information settings change.
[Bds]Booting UEFI Floppy 2
FatOpenDevice: read of part_lba failed No Media
FatOpenDevice: read of part_lba failed No Media
MnpAddFreeTxBuf: Add TxBufWrap BE7FB018, TxBuf BE7FB041
MnpAddFreeTxBuf: Add TxBufWrap BE7FB698, TxBuf BE7FB6C1
MnpAddFreeTxBuf: Add TxBufWrap BE7FA018, TxBuf BE7FA041
MnpAddFreeTxBuf: Add TxBufWrap BE7FA698, TxBuf BE7FA6C1
MnpAddFreeTxBuf: Add TxBufWrap BE7F9018, TxBuf BE7F9041
MnpAddFreeTxBuf: Add TxBufWrap BE7F9698, TxBuf BE7F96C1
MnpAddFreeTxBuf: Add TxBufWrap BE7F8018, TxBuf BE7F8041
MnpAddFreeTxBuf: Add TxBufWrap BE7F8698, TxBuf BE7F86C1
MnpAddFreeTxBuf: Add TxBufWrap BE7F7018, TxBuf BE7F7041
MnpAddFreeTxBuf: Add TxBufWrap BE7F7698, TxBuf BE7F76C1
MnpAddFreeTxBuf: Add TxBufWrap BE7F6018, TxBuf BE7F6041
MnpAddFreeTxBuf: Add TxBufWrap BE7F6698, TxBuf BE7F66C1
MnpAddFreeTxBuf: Add TxBufWrap BE7F5018, TxBuf BE7F5041
MnpAddFreeTxBuf: Add TxBufWrap BE7F5698, TxBuf BE7F56C1
MnpAddFreeTxBuf: Add TxBufWrap BE7F4018, TxBuf BE7F4041
MnpAddFreeTxBuf: Add TxBufWrap BE7F4698, TxBuf BE7F46C1
MnpAddFreeTxBuf: Add TxBufWrap BE7F3018, TxBuf BE7F3041
MnpAddFreeTxBuf: Add TxBufWrap BE7F3698, TxBuf BE7F36C1
MnpAddFreeTxBuf: Add TxBufWrap BE7F2018, TxBuf BE7F2041
MnpAddFreeTxBuf: Add TxBufWrap BE7F2698, TxBuf BE7F26C1
MnpAddFreeTxBuf: Add TxBufWrap BE7F1018, TxBuf BE7F1041
MnpAddFreeTxBuf: Add TxBufWrap BE7F1698, TxBuf BE7F16C1
MnpAddFreeTxBuf: Add TxBufWrap BE7F0018, TxBuf BE7F0041
MnpAddFreeTxBuf: Add TxBufWrap BE7F0698, TxBuf BE7F06C1
MnpAddFreeTxBuf: Add TxBufWrap BE7EF018, TxBuf BE7EF041
MnpAddFreeTxBuf: Add TxBufWrap BE7EF698, TxBuf BE7EF6C1
MnpAddFreeTxBuf: Add TxBufWrap BE7EE018, TxBuf BE7EE041
MnpAddFreeTxBuf: Add TxBufWrap BE7EE698, TxBuf BE7EE6C1
MnpAddFreeTxBuf: Add TxBufWrap BE7ED018, TxBuf BE7ED041
MnpAddFreeTxBuf: Add TxBufWrap BE7ED698, TxBuf BE7ED6C1
MnpAddFreeTxBuf: Add TxBufWrap BE7EC018, TxBuf BE7EC041
MnpAddFreeTxBuf: Add TxBufWrap BE7EC698, TxBuf BE7EC6C1
[Bds] Expand PciRoot(0x0)/Pci(0x1,0x0)/Floppy(0x1) -> <null string>
Memory Previous Current Next
Type Pages Pages Pages
====== ======== ======== ========
0A 00000004 00000022 0000002A
09 00000008 00000009 0000000B
00 00000004 00000025 0000002E
06 00000024 00000058 0000006E
05 00000030 00000052 00000066
03 00000180 000003FB 000004F9
04 00000F00 00000CF9 00000F00
Memory Type Information settings change.
[Bds]Booting UEFI PXEv4 (MAC:525400123456)
>>Start PXE over IPv4InstallProtocolInterface: 245DCA21-FB7B-11D3-8F01-00A0C969723B BEA8E190
.
[-- Attachment #3: allow_load_iPXE.log.txt --]
[-- Type: text/plain, Size: 95075 bytes --]
SecCoreStartupWithStack(0xFFFCC000, 0x818000)
Register PPI Notify: DCD0BE23-9586-40F4-B643-06522CED4EDE
Install PPI: 8C8CE578-8A3D-4F1C-9935-896185C32DD3
Install PPI: 5473C07A-3DCB-4DCA-BD6F-1E9689E7349A
The 0th FV start address is 0x00000820000, size is 0x000E0000, handle is 0x820000
Register PPI Notify: 49EDB1C1-BF21-4761-BB12-EB0031AABB39
Register PPI Notify: EA7CA24B-DED5-4DAD-A389-BF827E8F9B38
Install PPI: B9E0ABFE-5979-4914-977F-6DEE78C278A6
Install PPI: DBE23AA9-A345-4B97-85B6-B226F1617389
Loading PEIM at 0x0000082EA60 EntryPoint=0x0000082ECA0 PcdPeim.efi
Install PPI: 06E81C58-4AD7-44BC-8390-F10265F72480
Install PPI: 01F34D25-4DE2-23AD-3FF3-36353FF323F1
Install PPI: 4D8B155B-C059-4C8F-8926-06FD4331DB8A
Install PPI: A60C6B59-E459-425D-9C69-0BCC9CB27D81
Loading PEIM at 0x00000834BA0 EntryPoint=0x00000834DE0 ReportStatusCodeRouterPei.efi
Install PPI: 0065D394-9951-4144-82A3-0AFC8579C251
Install PPI: 229832D3-7A30-4B36-B827-F40CB7D45436
Loading PEIM at 0x000008384A0 EntryPoint=0x000008386E0 StatusCodeHandlerPei.efi
Loading PEIM at 0x0000083C420 EntryPoint=0x0000083C660 PlatformPei.efi
Select Item: 0x0
FW CFG Signature: 0x554D4551
Select Item: 0x1
FW CFG Revision: 0x3
QemuFwCfg interface (DMA) is supported.
Platform PEIM Loaded
CMOS:
00: 38 00 32 00 02 00 05 24 01 19 26 02 00 80 00 00
10: 50 00 00 00 07 80 02 FF FF 00 00 00 00 00 00 00
20: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
30: FF FF 20 00 00 BF 00 20 30 00 00 00 00 12 00 00
40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
50: 00 00 00 00 00 00 00 00 00 00 00 00 40 00 00 00
60: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
70: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
Select Item: 0x19
Select Item: 0x27
S3 support was detected on QEMU
Install PPI: 7408D748-FC8C-4EE6-9288-C4BEC092A410
Select Item: 0x19
Select Item: 0x24
Select Item: 0x19
Select Item: 0x19
GetFirstNonAddress: Pci64Base=0x10000000000 Pci64Size=0x10000000000
Select Item: 0x5
MaxCpuCountInitialization: QEMU reports 1 processor(s)
PublishPeiMemory: mPhysMemAddressWidth=41 PeiMemoryCap=73748 KB
PeiInstallPeiMemory MemoryBegin 0xBB773000, MemoryLength 0x4805000
QemuInitializeRam called
Select Item: 0x19
Select Item: 0x24
Allocated Memory unaligned: Address = 0xBFF48000, Pages = 0x30, Type = 6
After aligning to 0x10000 bytes: Address = 0xBFF50000, Pages = 0x20
Updated before-mem HOB with BaseAddress = BFF48000, Length = 8000, MemoryType = 7
Created aligned-mem HOB with BaseAddress = BFF50000, Length = 20000, MemoryType = 6
Created after-mem HOB with BaseAddress = BFF70000, Length = 8000, MemoryType = 7
Reserved variable store memory: 0xBFF50000; size: 128kb
Platform PEI Firmware Volume Initialization
Install PPI: 49EDB1C1-BF21-4761-BB12-EB0031AABB39
Notify: PPI Guid: 49EDB1C1-BF21-4761-BB12-EB0031AABB39, Peim notify entry point: 823C37
The 1th FV start address is 0x00000900000, size is 0x00A00000, handle is 0x900000
Select Item: 0x19
Select Item: 0x19
Select Item: 0x19
Temp Stack : BaseAddress=0x814000 Length=0x4000
Temp Heap : BaseAddress=0x810000 Length=0x4000
Total temporary memory: 32768 bytes.
temporary memory stack ever used: 16384 bytes.
temporary memory heap used: 8000 bytes.
Old Stack size 16384, New stack size 131072
Stack Hob: BaseAddress=0xBB773000 Length=0x20000
Heap Offset = 0xBAF83000 Stack Offset = 0xBAF7B000
TemporaryRamMigration(0x810000, 0xBB78F000, 0x8000)
Loading PEIM at 0x000BFF38000 EntryPoint=0x000BFF38240 PeiCore.efi
Reinstall PPI: 8C8CE578-8A3D-4F1C-9935-896185C32DD3
Reinstall PPI: 5473C07A-3DCB-4DCA-BD6F-1E9689E7349A
Reinstall PPI: B9E0ABFE-5979-4914-977F-6DEE78C278A6
Install PPI: F894643D-C449-42D1-8EA8-85BDD8C65BDE
Loading PEIM at 0x000BFF31000 EntryPoint=0x000BFF31240 DxeIpl.efi
Install PPI: 1A36E4E7-FAB6-476A-8E75-695A0576FDD7
Install PPI: 0AE8CE5D-E448-4437-A8D7-EBF5F194F731
Loading PEIM at 0x000BFF29000 EntryPoint=0x000BFF29240 S3Resume2Pei.efi
Install PPI: 6D582DBC-DB85-4514-8FCC-5ADF6227B147
Loading PEIM at 0x000BFF1E000 EntryPoint=0x000BFF1E240 CpuMpPei.efi
AP Loop Mode is 1
Does not find any stored CPU BIST information from PPI!
APICID - 0x00000000, BIST - 0x00000000
Install PPI: 9E9F374B-8F16-4230-9824-5846EE766A97
Install PPI: EE16160A-E8BE-47A6-820A-C6900DB0250A
DXE IPL Entry
Loading PEIM at 0x000BFEED000 EntryPoint=0x000BFEED240 DxeCore.efi
Loading DXE CORE at 0x000BFEED000 EntryPoint=0x000BFEED240
Install PPI: 605EA650-C65C-42E1-BA80-91A52AB618C6
CoreInitializeMemoryServices:
BaseAddress - 0xBB797000 Length - 0x3F31000 MinimalMemorySizeNeeded - 0x10F4000
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BFF117B8
ProtectUefiImageCommon - 0xBFF117B8
- 0x00000000BFEED000 - 0x0000000000028000
HOBLIST address in DXE = 0xBF4DD018
Memory Allocation 0x0000000A 0xBFF78000 - 0xBFFFFFFF
Memory Allocation 0x0000000A 0x810000 - 0x817FFF
Memory Allocation 0x0000000A 0x807000 - 0x807FFF
Memory Allocation 0x0000000A 0x800000 - 0x805FFF
Memory Allocation 0x0000000A 0x806000 - 0x806FFF
Memory Allocation 0x00000007 0xBFF48000 - 0xBFF4FFFF
Memory Allocation 0x00000006 0xBFF50000 - 0xBFF6FFFF
Memory Allocation 0x00000007 0xBFF70000 - 0xBFF77FFF
Memory Allocation 0x0000000A 0x820000 - 0x8FFFFF
Memory Allocation 0x00000004 0x900000 - 0x12FFFFF
Memory Allocation 0x00000004 0xBFECD000 - 0xBFEECFFF
Memory Allocation 0x00000003 0xBFF47000 - 0xBFF47FFF
Memory Allocation 0x00000003 0xBFF38000 - 0xBFF46FFF
Memory Allocation 0x00000003 0xBFF31000 - 0xBFF37FFF
Memory Allocation 0x00000003 0xBFF29000 - 0xBFF30FFF
Memory Allocation 0x00000003 0xBFF1E000 - 0xBFF28FFF
Memory Allocation 0x00000004 0xBFF15000 - 0xBFF1DFFF
Memory Allocation 0x00000003 0xBFEED000 - 0xBFF14FFF
Memory Allocation 0x00000003 0xBFEED000 - 0xBFF14FFF
Memory Allocation 0x00000004 0xBFECD000 - 0xBFEECFFF
Memory Allocation 0x00000004 0xBF6C8000 - 0xBFECCFFF
Memory Allocation 0x00000004 0xBB773000 - 0xBB792FFF
FV Hob 0x900000 - 0x12FFFFF
InstallProtocolInterface: D8117CFE-94A6-11D4-9A3A-0090273FC14D BFF11370
InstallProtocolInterface: 8F644FA9-E850-4DB1-9CE2-0B44698E8DA4 BF4D9D30
InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B BF4D9E18
InstallProtocolInterface: 220E73B6-6BDB-4413-8405-B974B108619A BF4D8CB0
InstallProtocolInterface: EE4E5898-3914-4259-9D6E-DC7BD79403CF BFF11728
Loading driver 9B680FCE-AD6B-4F3A-B60B-F59899003443
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BF0EA040
Loading driver at 0x000BF657000 EntryPoint=0x000BF657271 DevicePathDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BF0EAF18
ProtectUefiImageCommon - 0xBF0EA040
- 0x00000000BF657000 - 0x000000000000BD20
InstallProtocolInterface: 0379BE4E-D706-437D-B037-EDB82FB772A4 BF661FB0
InstallProtocolInterface: 8B843E20-8132-4852-90CC-551A4E4A7F1C BF661FA0
InstallProtocolInterface: 05C99A21-C70F-4AD2-8A5F-35DF3343F51E BF661F90
Loading driver 80CF7257-87AB-47F9-A3FE-D50B76D89541
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BF0EA4C0
Loading driver at 0x000BF64F000 EntryPoint=0x000BF64F271 PcdDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BF0EA818
ProtectUefiImageCommon - 0xBF0EA4C0
- 0x00000000BF64F000 - 0x00000000000079A0
InstallProtocolInterface: 11B34006-D85B-4D0A-A290-D5A571310EF7 BF656510
InstallProtocolInterface: 13A3F0F6-264A-3EF0-F2E0-DEC512342F34 BF656480
InstallProtocolInterface: 5BE40F57-FA68-4610-BBBF-E9C5FCDAD365 BF656460
InstallProtocolInterface: FD0F4478-0EFD-461D-BA2D-E58C45FD5F5E BF656450
Loading driver 733CBAC2-B23F-4B92-BC8E-FB01CE5907B7
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BF0F64C0
Loading driver at 0x000BF68A000 EntryPoint=0x000BF68B031 FvbServicesRuntimeDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BF0EBF18
ProtectUefiImageCommon - 0xBF0F64C0
- 0x00000000BF68A000 - 0x0000000000009000
QEMU Flash: Attempting flash detection at FFE00010
QemuFlashDetected => FD behaves as ROM
QemuFlashDetected => No
QEMU flash was not detected. Writable FVB is not being installed.
Error: Image at 000BF68A000 start failed: Write Protected
Loading driver D93CE3D8-A7EB-4730-8C8E-CC466A9ECC3C
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BF0F64C0
Loading driver at 0x000BF68A000 EntryPoint=0x000BF68B031 ReportStatusCodeRouterRuntimeDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BF0F3F98
ProtectUefiImageCommon - 0xBF0F64C0
- 0x00000000BF68A000 - 0x0000000000009000
InstallProtocolInterface: 86212936-0E76-41C8-A03A-2AF2FC1C39E2 BF691010
InstallProtocolInterface: D2B2B828-0826-48A7-B3DF-983C006024F0 BF691020
Loading driver B601F8C4-43B7-4784-95B1-F4226CB40CEE
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BF0F3140
Loading driver at 0x000BF682000 EntryPoint=0x000BF683031 RuntimeDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BF0F3398
ProtectUefiImageCommon - 0xBF0F3140
- 0x00000000BF682000 - 0x0000000000008000
InstallProtocolInterface: B7DFB4E1-052F-449F-87BE-9818FC91B733 BF688010
Loading driver F80697E9-7FD6-4665-8646-88E33EF71DFC
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BF0F2C40
Loading driver at 0x000BF649000 EntryPoint=0x000BF649271 SecurityStubDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BF0F2118
ProtectUefiImageCommon - 0xBF0F2C40
- 0x00000000BF649000 - 0x0000000000005420
InstallProtocolInterface: 94AB2F58-1438-4EF1-9152-18941A3A0E68 BF64E108
InstallProtocolInterface: A46423E3-4617-49F1-B9FF-D1BFA9115839 BF64E110
InstallProtocolInterface: 15853D7C-3DDF-43E0-A1CB-EBF85B8F872C BF64E118
Loading driver 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BF0E9040
Loading driver at 0x000BF642000 EntryPoint=0x000BF642271 EbcDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BF0F2498
ProtectUefiImageCommon - 0xBF0E9040
- 0x00000000BF642000 - 0x0000000000006D60
InstallProtocolInterface: 13AC6DD1-73D0-11D4-B06B-00AA00BD6DE7 BF0E9F18
InstallProtocolInterface: 2755590C-6F3C-42FA-9EA4-A3BA543CDA25 BF0E9C98
InstallProtocolInterface: AAEACCFD-F27B-4C17-B610-75CA1F2DFB52 BF0E9B18
Loading driver 79CA4208-BBA1-4A9A-8456-E1E66A81484E
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BF0E93C0
Loading driver at 0x000BF63E000 EntryPoint=0x000BF63E271 Legacy8259.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BF0E9D98
ProtectUefiImageCommon - 0xBF0E93C0
- 0x00000000BF63E000 - 0x00000000000034A0
InstallProtocolInterface: 38321DBA-4FE0-4E17-8AEC-413055EAEDC1 BF6411A0
Loading driver A19B1FE7-C1BC-49F8-875F-54A5D542443F
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BF0F1CC0
Loading driver at 0x000BF63A000 EntryPoint=0x000BF63A271 CpuIo2Dxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BF0F1B98
ProtectUefiImageCommon - 0xBF0F1CC0
- 0x00000000BF63A000 - 0x00000000000039C0
InstallProtocolInterface: AD61F191-AE5F-4C0E-B9FA-E869D288C64F BF63D730
Loading driver 1A1E4886-9517-440E-9FDE-3BE44CEE2136
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BF0F12C0
Loading driver at 0x000BF62A000 EntryPoint=0x000BF62A271 CpuDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BF0F1918
ProtectUefiImageCommon - 0xBF0F12C0
- 0x00000000BF62A000 - 0x000000000000F6C0
CurrentPagingContext:
MachineType - 0x8664
PageTableBase - 0xBF6C8000
Attributes - 0x40000002
InstallProtocolInterface: 26BACCB1-6F42-11D4-BCE7-0080C73C8881 BF639010
MemoryProtectionCpuArchProtocolNotify:
ProtectUefiImageCommon - 0xBFF117B8
- 0x00000000BFEED000 - 0x0000000000028000
ProtectUefiImageCommon - 0xBF0EA040
- 0x00000000BF657000 - 0x000000000000BD20
ProtectUefiImageCommon - 0xBF0EA4C0
- 0x00000000BF64F000 - 0x00000000000079A0
ProtectUefiImageCommon - 0xBF0F64C0
- 0x00000000BF68A000 - 0x0000000000009000
SetUefiImageMemoryAttributes - 0x00000000BF68A000 - 0x0000000000001000 (0x0000000000004000)
Split - 0xBF0EB000
SetUefiImageMemoryAttributes - 0x00000000BF68B000 - 0x0000000000006000 (0x0000000000020000)
ConvertPageEntryAttribute 0xBF68B063->0xBF68B061
ConvertPageEntryAttribute 0xBF68C063->0xBF68C061
ConvertPageEntryAttribute 0xBF68D063->0xBF68D061
ConvertPageEntryAttribute 0xBF68E063->0xBF68E061
ConvertPageEntryAttribute 0xBF68F063->0xBF68F061
ConvertPageEntryAttribute 0xBF690063->0xBF690061
SetUefiImageMemoryAttributes - 0x00000000BF691000 - 0x0000000000002000 (0x0000000000004000)
ProtectUefiImageCommon - 0xBF0F3140
- 0x00000000BF682000 - 0x0000000000008000
SetUefiImageMemoryAttributes - 0x00000000BF682000 - 0x0000000000001000 (0x0000000000004000)
SetUefiImageMemoryAttributes - 0x00000000BF683000 - 0x0000000000005000 (0x0000000000020000)
ConvertPageEntryAttribute 0xBF683063->0xBF683061
ConvertPageEntryAttribute 0xBF684063->0xBF684061
ConvertPageEntryAttribute 0xBF685063->0xBF685061
ConvertPageEntryAttribute 0xBF686063->0xBF686061
ConvertPageEntryAttribute 0xBF687063->0xBF687061
SetUefiImageMemoryAttributes - 0x00000000BF688000 - 0x0000000000002000 (0x0000000000004000)
ProtectUefiImageCommon - 0xBF0F2C40
- 0x00000000BF649000 - 0x0000000000005420
ProtectUefiImageCommon - 0xBF0E9040
- 0x00000000BF642000 - 0x0000000000006D60
ProtectUefiImageCommon - 0xBF0E93C0
- 0x00000000BF63E000 - 0x00000000000034A0
ProtectUefiImageCommon - 0xBF0F1CC0
- 0x00000000BF63A000 - 0x00000000000039C0
ProtectUefiImageCommon - 0xBF0F12C0
- 0x00000000BF62A000 - 0x000000000000F6C0
Flushing GCD
Flushing GCD
Flushing GCD
Flushing GCD
Flushing GCD
Flushing GCD
Flushing GCD
Flushing GCD
Flushing GCD
AP Loop Mode is 1
Detect CPU count: 1
InstallProtocolInterface: 3FDDA605-A76E-4F46-AD29-12F4531B3D08 BF639150
Loading driver F6697AC4-A776-4EE1-B643-1FEFF2B615BB
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BF0EC540
Loading driver at 0x000BF626000 EntryPoint=0x000BF626271 IncompatiblePciDeviceSupportDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BF0EC498
ProtectUefiImageCommon - 0xBF0EC540
- 0x00000000BF626000 - 0x00000000000038E0
InstallProtocolInterface: EB23F55A-7863-4AC2-8D3D-956535DE0375 BF629780
Loading driver 11A6EDF6-A9BE-426D-A6CC-B22FE51D9224
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECD91C0
Loading driver at 0x000BF622000 EntryPoint=0x000BF622271 PciHotPlugInitDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECD9B18
ProtectUefiImageCommon - 0xBECD91C0
- 0x00000000BF622000 - 0x0000000000003860
InstallProtocolInterface: AA0E8BC1-DABC-46B0-A844-37B8169B2BEA BF625700
Loading driver 4B28E4C7-FF36-4E10-93CF-A82159E777C5
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECD95C0
Loading driver at 0x000BF67A000 EntryPoint=0x000BF67B031 ResetSystemRuntimeDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECCF018
ProtectUefiImageCommon - 0xBECD95C0
- 0x00000000BF67A000 - 0x0000000000008000
SetUefiImageMemoryAttributes - 0x00000000BF67A000 - 0x0000000000001000 (0x0000000000004008)
SetUefiImageMemoryAttributes - 0x00000000BF67B000 - 0x0000000000005000 (0x0000000000020008)
ConvertPageEntryAttribute 0xBF67B063->0xBF67B061
ConvertPageEntryAttribute 0xBF67C063->0xBF67C061
ConvertPageEntryAttribute 0xBF67D063->0xBF67D061
ConvertPageEntryAttribute 0xBF67E063->0xBF67E061
ConvertPageEntryAttribute 0xBF67F063->0xBF67F061
SetUefiImageMemoryAttributes - 0x00000000BF680000 - 0x0000000000002000 (0x0000000000004008)
InstallProtocolInterface: 27CFAC88-46CC-11D4-9A38-0090273FC14D 0
Loading driver C8339973-A563-4561-B858-D8476F9DEFC4
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECCF840
Loading driver at 0x000BF61E000 EntryPoint=0x000BF61E271 Metronome.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECCF618
ProtectUefiImageCommon - 0xBECCF840
- 0x00000000BF61E000 - 0x0000000000003A60
InstallProtocolInterface: 26BACCB2-6F42-11D4-BCE7-0080C73C8881 BF6217D0
Loading driver 79E4A61C-ED73-4312-94FE-E3E7563362A9
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECD4040
Loading driver at 0x000BF61A000 EntryPoint=0x000BF61A271 PrintDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECCF398
ProtectUefiImageCommon - 0xBECD4040
- 0x00000000BF61A000 - 0x0000000000003B20
InstallProtocolInterface: F05976EF-83F1-4F3D-8619-F7595D41E538 BF61D820
InstallProtocolInterface: 0CC252D2-C106-4661-B5BD-3147A4F81F92 BF61D7D0
Loading driver 348C4D62-BFBD-4882-9ECE-C80BB1C4783B
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECD4440
Loading driver at 0x000BF5FC000 EntryPoint=0x000BF5FC271 HiiDatabase.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECD4698
ProtectUefiImageCommon - 0xBECD4440
- 0x00000000BF5FC000 - 0x000000000001D9C0
InstallProtocolInterface: E9CA4775-8657-47FC-97E7-7ED65A084324 BF6194B8
InstallProtocolInterface: 0FD96974-23AA-4CDC-B9CB-98D17750322A BF619530
InstallProtocolInterface: EF9FC172-A1B2-4693-B327-6D32FC416042 BF619558
InstallProtocolInterface: 587E72D7-CC50-4F79-8209-CA291FC1A10F BF6195B0
InstallProtocolInterface: 0A8BADD5-03B8-4D19-B128-7B8F0EDAA596 BF6195E0
InstallProtocolInterface: 31A6406A-6BDF-4E46-B2A2-EBAA89C40920 BF6194D8
InstallProtocolInterface: 1A1241E6-8F19-41A9-BC0E-E8EF39E06546 BF619500
Loading driver 96B5C032-DF4C-4B6E-8232-438DCF448D0E
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECD81C0
Loading driver at 0x000BF5F8000 EntryPoint=0x000BF5F8271 NullMemoryTestDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECD8998
ProtectUefiImageCommon - 0xBECD81C0
- 0x00000000BF5F8000 - 0x0000000000003B00
InstallProtocolInterface: 309DE7F1-7F5E-4ACE-B49C-531BE5AA95EF BF5FB810
Loading driver F9D88642-0737-49BC-81B5-6889CD57D9EA
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECD7B40
Loading driver at 0x000BF5F0000 EntryPoint=0x000BF5F0271 SmbiosDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECD8498
ProtectUefiImageCommon - 0xBECD7B40
- 0x00000000BF5F0000 - 0x00000000000070C0
Select Item: 0x0
FW CFG Signature: 0x554D4551
Select Item: 0x1
FW CFG Revision: 0x3
QemuFwCfg interface (DMA) is supported.
Select Item: 0x19
Select Item: 0x19
Select Item: 0x25
DetectSmbiosVersion: SMBIOS version from QEMU: 0x0208
InstallProtocolInterface: 03583FF6-CB36-4940-947E-B9B39F4AFAF7 BF5F6F30
Loading driver 9622E42C-8E38-4A08-9E8F-54F784652F6B
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECD7140
Loading driver at 0x000BF5E6000 EntryPoint=0x000BF5E6271 AcpiTableDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECD7698
ProtectUefiImageCommon - 0xBECD7140
- 0x00000000BF5E6000 - 0x0000000000009020
InstallProtocolInterface: FFE06BDD-6107-46A6-7BB2-5A9C7EC5275C BECD60A0
InstallProtocolInterface: EB97088E-CFDF-49C6-BE4B-D906A5B20E86 BECD60B0
Loading driver BDCE85BB-FBAA-4F4E-9264-501A2C249581
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECD61C0
Loading driver at 0x000BF5DD000 EntryPoint=0x000BF5DD271 S3SaveStateDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECD6B98
ProtectUefiImageCommon - 0xBECD61C0
- 0x00000000BF5DD000 - 0x0000000000008DE0
Select Item: 0x0
FW CFG Signature: 0x554D4551
Select Item: 0x1
FW CFG Revision: 0x3
QemuFwCfg interface (DMA) is supported.
Select Item: 0x19
Select Item: 0x27
InstallProtocolInterface: BD445D79-B7AD-4F04-9AD8-29BD2040EB3C 0
InstallProtocolInterface: E857CAF6-C046-45DC-BE3F-EE0765FBA887 BF5E5A50
Loading driver A210F973-229D-4F4D-AA37-9895E6C9EABA
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECD5040
Loading driver at 0x000BF5D9000 EntryPoint=0x000BF5D9271 DpcDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECD5F18
ProtectUefiImageCommon - 0xBECD5040
- 0x00000000BF5D9000 - 0x00000000000039C0
InstallProtocolInterface: 480F8AE9-0C46-4AA9-BC89-DB9FBA619806 BF5DC520
Loading driver 22DC2B60-FE40-42AC-B01F-3AB1FAD9AAD8
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECD5440
Loading driver at 0x000BF672000 EntryPoint=0x000BF673031 EmuVariableFvbRuntimeDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECD5A18
ProtectUefiImageCommon - 0xBECD5440
- 0x00000000BF672000 - 0x0000000000008000
SetUefiImageMemoryAttributes - 0x00000000BF672000 - 0x0000000000001000 (0x0000000000004008)
SetUefiImageMemoryAttributes - 0x00000000BF673000 - 0x0000000000005000 (0x0000000000020008)
ConvertPageEntryAttribute 0xBF673063->0xBF673061
ConvertPageEntryAttribute 0xBF674063->0xBF674061
ConvertPageEntryAttribute 0xBF675063->0xBF675061
ConvertPageEntryAttribute 0xBF676063->0xBF676061
ConvertPageEntryAttribute 0xBF677063->0xBF677061
SetUefiImageMemoryAttributes - 0x00000000BF678000 - 0x0000000000002000 (0x0000000000004008)
EMU Variable FVB Started
EMU Variable FVB: Using pre-reserved block at BFF50000
EMU Variable FVB: Basic FV headers were invalid
Installing FVB for EMU Variable support
InstallProtocolInterface: 8F644FA9-E850-4DB1-9CE2-0B44698E8DA4 BF678130
InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B BF6780F8
Loading driver CBD2E4D5-7068-4FF5-B462-9822B4AD8D60
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECD31C0
Loading driver at 0x000BE5D2000 EntryPoint=0x000BE5D3031 VariableRuntimeDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECD3E98
ProtectUefiImageCommon - 0xBECD31C0
- 0x00000000BE5D2000 - 0x0000000000011000
SetUefiImageMemoryAttributes - 0x00000000BE5D2000 - 0x0000000000001000 (0x0000000000004008)
Split - 0xBECD2000
SetUefiImageMemoryAttributes - 0x00000000BE5D3000 - 0x000000000000E000 (0x0000000000020008)
ConvertPageEntryAttribute 0xBE5D3063->0xBE5D3061
ConvertPageEntryAttribute 0xBE5D4063->0xBE5D4061
ConvertPageEntryAttribute 0xBE5D5063->0xBE5D5061
ConvertPageEntryAttribute 0xBE5D6063->0xBE5D6061
ConvertPageEntryAttribute 0xBE5D7063->0xBE5D7061
ConvertPageEntryAttribute 0xBE5D8063->0xBE5D8061
ConvertPageEntryAttribute 0xBE5D9063->0xBE5D9061
ConvertPageEntryAttribute 0xBE5DA063->0xBE5DA061
ConvertPageEntryAttribute 0xBE5DB063->0xBE5DB061
ConvertPageEntryAttribute 0xBE5DC063->0xBE5DC061
ConvertPageEntryAttribute 0xBE5DD063->0xBE5DD061
ConvertPageEntryAttribute 0xBE5DE063->0xBE5DE061
ConvertPageEntryAttribute 0xBE5DF063->0xBE5DF061
ConvertPageEntryAttribute 0xBE5E0063->0xBE5E0061
SetUefiImageMemoryAttributes - 0x00000000BE5E1000 - 0x0000000000002000 (0x0000000000004008)
VarCheckLibRegisterSetVariableCheckHandler - 0xBE5DB4AC Success
Variable driver common space: 0xDF9C 0xDF9C 0xDF9C
Variable driver will work without auth variable support!
InstallProtocolInterface: CD3D0A05-9E24-437C-A891-1EE053DB7638 BE5E1028
InstallProtocolInterface: AF23B340-97B4-4685-8D4F-A3F28169B21D BE5E1010
InstallProtocolInterface: 1E5668E2-8481-11D4-BCF1-0080C73C8881 0
Loading driver 6C2004EF-4E0E-4BE4-B14C-340EB4AA5891
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECD10C0
Loading driver at 0x000BF66A000 EntryPoint=0x000BF66B031 StatusCodeHandlerRuntimeDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECD3598
ProtectUefiImageCommon - 0xBECD10C0
- 0x00000000BF66A000 - 0x0000000000008000
SetUefiImageMemoryAttributes - 0x00000000BF66A000 - 0x0000000000001000 (0x0000000000004008)
SetUefiImageMemoryAttributes - 0x00000000BF66B000 - 0x0000000000005000 (0x0000000000020008)
ConvertPageEntryAttribute 0xBF66B063->0xBF66B061
ConvertPageEntryAttribute 0xBF66C063->0xBF66C061
ConvertPageEntryAttribute 0xBF66D063->0xBF66D061
ConvertPageEntryAttribute 0xBF66E063->0xBF66E061
ConvertPageEntryAttribute 0xBF66F063->0xBF66F061
SetUefiImageMemoryAttributes - 0x00000000BF670000 - 0x0000000000002000 (0x0000000000004008)
Loading driver F2765DEC-6B41-11D5-8E71-00902707B35E
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECD0BC0
Loading driver at 0x000BF5D5000 EntryPoint=0x000BF5D5271 Timer.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECD0F18
ProtectUefiImageCommon - 0xBECD0BC0
- 0x00000000BF5D5000 - 0x0000000000003580
InstallProtocolInterface: 26BACCB3-6F42-11D4-BCE7-0080C73C8881 BF5D82D0
Loading driver 128FB770-5E79-4176-9E51-9BB268A17DD1
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECD02C0
Loading driver at 0x000BF5C9000 EntryPoint=0x000BF5C9271 PciHostBridgeDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECD0A98
ProtectUefiImageCommon - 0xBECD02C0
- 0x00000000BF5C9000 - 0x000000000000B400
Select Item: 0x0
FW CFG Signature: 0x554D4551
Select Item: 0x1
FW CFG Revision: 0x3
QemuFwCfg interface (DMA) is supported.
Select Item: 0x19
InitRootBridge: populated root bus 0, with room for 255 subordinate bus(es)
RootBridge: PciRoot(0x0)
Support/Attr: 70069 / 70069
DmaAbove4G: No
NoExtConfSpace: Yes
AllocAttr: 3 (CombineMemPMem Mem64Decode)
Bus: 0 - FF
Io: C000 - FFFF
Mem: C0000000 - FBFFFFFF
MemAbove4G: 10000000000 - 1FFFFFFFFFF
PMem: FFFFFFFFFFFFFFFF - 0
PMemAbove4G: FFFFFFFFFFFFFFFF - 0
InstallProtocolInterface: CF8034BE-6768-4D8B-B739-7CCE683A9FBE BECCEF40
InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B BECCEB18
InstallProtocolInterface: 2F707EBB-4A1A-11D4-9A38-0090273FC14D BECCED40
Loading driver EBF342FE-B1D3-4EF8-957C-8048606FF671
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECCE240
Loading driver at 0x000BF5AF000 EntryPoint=0x000BF5AF271 SetupBrowser.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECD0598
ProtectUefiImageCommon - 0xBECCE240
- 0x00000000BF5AF000 - 0x0000000000019360
InstallProtocolInterface: B9D4C360-BCFB-4F9B-9298-53C136982258 BF5C7DC0
InstallProtocolInterface: A770C357-B693-4E6D-A6CF-D21C728E550B BF5C7DF0
InstallProtocolInterface: 1F73B18D-4630-43C1-A1DE-6F80855D7DA4 BF5C7DD0
Loading driver 4110465D-5FF3-4F4B-B580-24ED0D06747A
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECCD2C0
Loading driver at 0x000BF5AA000 EntryPoint=0x000BF5AA271 SmbiosPlatformDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECCDA18
ProtectUefiImageCommon - 0xBECCD2C0
- 0x00000000BF5AA000 - 0x0000000000004A40
Select Item: 0x0
FW CFG Signature: 0x554D4551
Select Item: 0x1
FW CFG Revision: 0x3
QemuFwCfg interface (DMA) is supported.
Select Item: 0x19
Select Item: 0x26
SmbiosAdd: Smbios type 1 with size 0x51 is added to 32-bit table
SmbiosCreateTable: Initialize 32-bit entry point structure
SmbiosCreateTable() re-allocate SMBIOS 32-bit table
SmbiosAdd: Smbios type 3 with size 0x29 is added to 32-bit table
SmbiosAdd: Smbios type 4 with size 0x44 is added to 32-bit table
SmbiosAdd: Smbios type 16 with size 0x19 is added to 32-bit table
SmbiosAdd: Smbios type 17 with size 0x35 is added to 32-bit table
SmbiosAdd: Smbios type 19 with size 0x21 is added to 32-bit table
SmbiosAdd: Smbios type 19 with size 0x21 is added to 32-bit table
SmbiosAdd: Smbios type 32 with size 0xD is added to 32-bit table
SmbiosAdd: Smbios type 0 with size 0x4A is added to 32-bit table
Loading driver 49970331-E3FA-4637-9ABC-3B7868676970
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECCC040
Loading driver at 0x000BF5A0000 EntryPoint=0x000BF5A0271 AcpiPlatform.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECCC718
ProtectUefiImageCommon - 0xBECCC040
- 0x00000000BF5A0000 - 0x0000000000009BA0
Select Item: 0x0
FW CFG Signature: 0x554D4551
Select Item: 0x1
FW CFG Revision: 0x3
QemuFwCfg interface (DMA) is supported.
AcpiPlatformEntryPoint: waiting for root bridges to be connected, registered callback
Loading driver FA20568B-548B-4B2B-81EF-1BA08D4A3CEC
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECC10C0
Loading driver at 0x000BF58E000 EntryPoint=0x000BF58E271 BootScriptExecutorDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECC1A98
ProtectUefiImageCommon - 0xBECC10C0
- 0x00000000BF58E000 - 0x0000000000011480
Select Item: 0x0
FW CFG Signature: 0x554D4551
Select Item: 0x1
FW CFG Revision: 0x3
QemuFwCfg interface (DMA) is supported.
Select Item: 0x19
Select Item: 0x27
Loading driver F74D20EE-37E7-48FC-97F7-9B1047749C69
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECC1540
Loading driver at 0x000BF587000 EntryPoint=0x000BF587271 LogoDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECC4018
InstallProtocolInterface: 6A1EE763-D47A-43B4-AABE-EF1DE2AB56FC BF58A190
ProtectUefiImageCommon - 0xBECC1540
- 0x00000000BF587000 - 0x0000000000006100
InstallProtocolInterface: 53CD299F-2BC1-40C0-8C07-23F64FDB30E0 BF589EE8
Loading driver FE5CEA76-4F72-49E8-986F-2CD899DFFE5D
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECC45C0
Loading driver at 0x000BF57F000 EntryPoint=0x000BF57F271 FaultTolerantWriteDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECC8F18
ProtectUefiImageCommon - 0xBECC45C0
- 0x00000000BF57F000 - 0x0000000000007840
Ftw: FtwWorkSpaceLba - 0x0, WorkBlockSize - 0x10000, FtwWorkSpaceBase - 0xE000
Ftw: FtwSpareLba - 0x1, SpareBlockSize - 0x10000
Ftw: NumberOfWorkBlock - 0x1, FtwWorkBlockLba - 0x0
Ftw: WorkSpaceLbaInSpare - 0x0, WorkSpaceBaseInSpare - 0xE000
Ftw: Remaining work space size - FE0
Ftw: Work block header check mismatch
Ftw: Work block header check mismatch
Ftw: Both working and spare blocks are invalid, init workspace
Ftw: start to reclaim work space
Ftw: reclaim work space successfully
InstallProtocolInterface: 3EBD9E82-2C78-4DE6-9786-8D4BFCB7C881 BECC6028
Split - 0xBECC5000
[Variable] Lock: BB983CCF-151D-40E1-A07B-4A17BE168292:MemoryOverwriteRequestControlLock Success
RecordSecureBootPolicyVarData GetVariable SecureBoot Status E
InstallProtocolInterface: 6441F818-6362-4E44-B570-7DBA31DD2453 0
Loading driver 378D7B65-8DA9-4773-B6E4-A47826A833E1
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECC8540
Loading driver at 0x000BE5A4000 EntryPoint=0x000BE5A5031 PcRtc.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECC8798
ProtectUefiImageCommon - 0xBECC8540
- 0x00000000BE5A4000 - 0x0000000000009000
SetUefiImageMemoryAttributes - 0x00000000BE5A4000 - 0x0000000000001000 (0x0000000000004008)
SetUefiImageMemoryAttributes - 0x00000000BE5A5000 - 0x0000000000006000 (0x0000000000020008)
ConvertPageEntryAttribute 0xBE5A5063->0xBE5A5061
ConvertPageEntryAttribute 0xBE5A6063->0xBE5A6061
ConvertPageEntryAttribute 0xBE5A7063->0xBE5A7061
ConvertPageEntryAttribute 0xBE5A8063->0xBE5A8061
ConvertPageEntryAttribute 0xBE5A9063->0xBE5A9061
ConvertPageEntryAttribute 0xBE5AA063->0xBE5AA061
SetUefiImageMemoryAttributes - 0x00000000BE5AB000 - 0x0000000000002000 (0x0000000000004008)
InstallProtocolInterface: 27CFAC87-46CC-11D4-9A38-0090273FC14D 0
Loading driver F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECC3CC0
Loading driver at 0x000BF57B000 EntryPoint=0x000BF57B271 WatchdogTimer.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECC3A98
ProtectUefiImageCommon - 0xBECC3CC0
- 0x00000000BF57B000 - 0x0000000000003680
InstallProtocolInterface: 665E3FF5-46CC-11D4-9A38-0090273FC14D BF57E3B0
Loading driver AD608272-D07F-4964-801E-7BD3B7888652
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECC32C0
Loading driver at 0x000BF663000 EntryPoint=0x000BF664031 MonotonicCounterRuntimeDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECC2018
ProtectUefiImageCommon - 0xBECC32C0
- 0x00000000BF663000 - 0x0000000000007000
SetUefiImageMemoryAttributes - 0x00000000BF663000 - 0x0000000000001000 (0x0000000000004008)
SetUefiImageMemoryAttributes - 0x00000000BF664000 - 0x0000000000004000 (0x0000000000020008)
ConvertPageEntryAttribute 0xBF664063->0xBF664061
ConvertPageEntryAttribute 0xBF665063->0xBF665061
ConvertPageEntryAttribute 0xBF666063->0xBF666061
ConvertPageEntryAttribute 0xBF667063->0xBF667061
SetUefiImageMemoryAttributes - 0x00000000BF668000 - 0x0000000000002000 (0x0000000000004008)
InstallProtocolInterface: 1DA97072-BDDC-4B30-99F1-72A0B56FFF2A 0
Loading driver 42857F0A-13F2-4B21-8A23-53D3F714B840
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECC2840
Loading driver at 0x000BE592000 EntryPoint=0x000BE593031 CapsuleRuntimeDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECC2718
ProtectUefiImageCommon - 0xBECC2840
- 0x00000000BE592000 - 0x0000000000008000
SetUefiImageMemoryAttributes - 0x00000000BE592000 - 0x0000000000001000 (0x0000000000004008)
SetUefiImageMemoryAttributes - 0x00000000BE593000 - 0x0000000000005000 (0x0000000000020008)
ConvertPageEntryAttribute 0xBE593063->0xBE593061
ConvertPageEntryAttribute 0xBE594063->0xBE594061
ConvertPageEntryAttribute 0xBE595063->0xBE595061
ConvertPageEntryAttribute 0xBE596063->0xBE596061
ConvertPageEntryAttribute 0xBE597063->0xBE597061
SetUefiImageMemoryAttributes - 0x00000000BE598000 - 0x0000000000002000 (0x0000000000004008)
InstallProtocolInterface: 5053697E-2CBC-4819-90D9-0580DEEE5754 0
Loading driver EBF8ED7C-0DD1-4787-84F1-F48D537DCACF
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECC0BC0
Loading driver at 0x000BF572000 EntryPoint=0x000BF572271 DriverHealthManagerDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECC0118
ProtectUefiImageCommon - 0xBECC0BC0
- 0x00000000BF572000 - 0x0000000000008500
InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B BF57A060
InstallProtocolInterface: 330D4706-F2A0-4E4F-A369-B66FA8D54385 BF57A090
Loading driver 6D33944A-EC75-4855-A54D-809C75241F6C
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECBF040
Loading driver at 0x000BF552000 EntryPoint=0x000BF552271 BdsDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECC0518
ProtectUefiImageCommon - 0xBECBF040
- 0x00000000BF552000 - 0x000000000001F180
Select Item: 0x0
FW CFG Signature: 0x554D4551
Select Item: 0x1
FW CFG Revision: 0x3
QemuFwCfg interface (DMA) is supported.
InstallProtocolInterface: 665E3FF6-46CC-11D4-9A38-0090273FC14D BF5703B8
Loading driver 28A03FF4-12B3-4305-A417-BB1A4F94081E
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECBEBC0
Loading driver at 0x000BF545000 EntryPoint=0x000BF545271 RamDiskDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECBEF18
ProtectUefiImageCommon - 0xBECBEBC0
- 0x00000000BF545000 - 0x000000000000CE00
InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B BECBE998
InstallProtocolInterface: 330D4706-F2A0-4E4F-A369-B66FA8D54385 BF5511E8
InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B BF550D40
InstallProtocolInterface: 330D4706-F2A0-4E4F-A369-B66FA8D54385 BECBCEB0
InstallProtocolInterface: AB38A0DF-6873-44A9-87E6-D4EB56148449 BF550D30
InstallProtocolInterface: 28A03FF4-12B3-4305-A417-BB1A4F94081E BECBCE98
Loading driver E660EA85-058E-4B55-A54B-F02F83A24707
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECBD7C0
Loading driver at 0x000BF531000 EntryPoint=0x000BF531271 DisplayEngine.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECBD718
ProtectUefiImageCommon - 0xBECBD7C0
- 0x00000000BF531000 - 0x0000000000013AA0
InstallProtocolInterface: 9BBE29E9-FDA1-41EC-AD52-452213742D2E BF543CE0
Loading driver D9DCC5DF-4007-435E-9098-8970935504B2
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECB7040
Loading driver at 0x000BF52A000 EntryPoint=0x000BF52A271 PlatformDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECBD298
ProtectUefiImageCommon - 0xBECB7040
- 0x00000000BF52A000 - 0x0000000000006B80
InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B BF530790
InstallProtocolInterface: 330D4706-F2A0-4E4F-A369-B66FA8D54385 BF530A10
Loading driver 93B80004-9FB3-11D4-9A3A-0090273FC14D
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECB7440
Loading driver at 0x000BF517000 EntryPoint=0x000BF517271 PciBusDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECB7698
ProtectUefiImageCommon - 0xBECB7440
- 0x00000000BF517000 - 0x0000000000012160
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BF528BE0
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BF528C50
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BF528C30
InstallProtocolInterface: 19CB87AB-2CB9-4665-8360-DDCF6054F79D BF528BC8
Loading driver 33CB97AF-6C33-4C42-986B-07581FA366D4
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECAE040
Loading driver at 0x000BF512000 EntryPoint=0x000BF512271 BlockMmioToBlockIoDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECB4218
ProtectUefiImageCommon - 0xBECAE040
- 0x00000000BF512000 - 0x0000000000004460
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BF516130
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BF5161A0
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BF516180
Loading driver 83DD3B39-7CAF-4FAC-A542-E050B767E3A7
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECAE9C0
Loading driver at 0x000BF50D000 EntryPoint=0x000BF50D271 VirtioPciDeviceDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECAE318
ProtectUefiImageCommon - 0xBECAE9C0
- 0x00000000BF50D000 - 0x00000000000047A0
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BF511430
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BF5113F0
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BF5113D0
Loading driver 0170F60C-1D40-4651-956D-F0BD9879D527
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECAD040
Loading driver at 0x000BF508000 EntryPoint=0x000BF508271 Virtio10.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECAE618
ProtectUefiImageCommon - 0xBECAD040
- 0x00000000BF508000 - 0x0000000000004BC0
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BF50C850
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BF50C810
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BF50C7F0
Loading driver 11D92DFB-3CA9-4F93-BA2E-4780ED3E03B5
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECAD9C0
Loading driver at 0x000BF503000 EntryPoint=0x000BF503271 VirtioBlkDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECAD798
ProtectUefiImageCommon - 0xBECAD9C0
- 0x00000000BF503000 - 0x0000000000004EA0
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BF507BD0
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BF507B90
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BF507B70
Loading driver FAB5D4F4-83C0-4AAF-8480-442D11DF6CEA
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECB3040
Loading driver at 0x000BF4FD000 EntryPoint=0x000BF4FD271 VirtioScsiDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECB3D18
ProtectUefiImageCommon - 0xBECB3040
- 0x00000000BF4FD000 - 0x00000000000051A0
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BF501ED0
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BF501E90
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BF501E70
Loading driver 58E26F0D-CBAC-4BBA-B70F-18221415665A
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECB3440
Loading driver at 0x000BF4F8000 EntryPoint=0x000BF4F8271 VirtioRngDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECB3C18
ProtectUefiImageCommon - 0xBECB3440
- 0x00000000BF4F8000 - 0x00000000000048C0
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BF4FC5E0
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BF4FC5A0
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BF4FC580
Loading driver CF569F50-DE44-4F54-B4D7-F4AE25CDA599
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECB2B40
Loading driver at 0x000BF4F4000 EntryPoint=0x000BF4F4271 XenIoPciDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECB3718
ProtectUefiImageCommon - 0xBECB2B40
- 0x00000000BF4F4000 - 0x0000000000003E40
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BF4F7B70
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BF4F7B30
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BF4F7B10
Loading driver 565EC8BA-A484-11E3-802B-B8AC6F7D65E6
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECB2140
Loading driver at 0x000BF4E8000 EntryPoint=0x000BF4E8271 XenBusDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECB2698
ProtectUefiImageCommon - 0xBECB2140
- 0x00000000BF4E8000 - 0x000000000000B0C0
Error: Image at 000BF4E8000 start failed: Aborted
Loading driver 8C2487EA-9AF3-11E3-B966-B8AC6F7D65E6
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECB2140
Loading driver at 0x000BF4ED000 EntryPoint=0x000BF4ED271 XenPvBlkDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECB2398
ProtectUefiImageCommon - 0xBECB2140
- 0x00000000BF4ED000 - 0x0000000000006640
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BF4F3290
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BF4F3320
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BF4F3300
Loading driver 51CCF399-4FDF-4E55-A45B-E123F84D456A
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECB1CC0
Loading driver at 0x000BF4E6000 EntryPoint=0x000BF4E6271 ConPlatformDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECB1198
ProtectUefiImageCommon - 0xBECB1CC0
- 0x00000000BF4E6000 - 0x0000000000006020
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BF4EBC80
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BF4EBCF0
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BF4EBCD0
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BF4EBC50
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BF4EBCF0
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BF4EBCD0
Loading driver 408EDCEC-CF6D-477C-A5A8-B4844E3DE281
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECB1340
Loading driver at 0x000BE583000 EntryPoint=0x000BE583271 ConSplitterDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECB0F98
ProtectUefiImageCommon - 0xBECB1340
- 0x00000000BE583000 - 0x0000000000009880
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE58BF10
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE58C500
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE58C4E0
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE58BE80
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE58C4C0
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE58C4A0
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE58BE50
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE58C480
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE58C460
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE58BEE0
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE58C440
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE58C420
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE58BEB0
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE58C400
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE58C3E0
InstallProtocolInterface: 387477C1-69C7-11D2-8E39-00A0C969723B BE58C1B0
InstallProtocolInterface: DD9E7534-7762-4698-8C14-F58517A625AA BE58C1E0
InstallProtocolInterface: 31878C87-0B75-11D5-9A4F-0090273FC14D BE58C240
InstallProtocolInterface: 8D59D32B-C655-4AE9-9B15-F25904992A43 BE58C298
InstallProtocolInterface: 387477C2-69C7-11D2-8E39-00A0C969723B BE58C060
InstallProtocolInterface: 387477C2-69C7-11D2-8E39-00A0C969723B BE58BF50
Loading driver CCCB0C28-4B24-11D5-9A5A-0090273FC14D
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECAB0C0
Loading driver at 0x000BE57A000 EntryPoint=0x000BE57A271 GraphicsConsoleDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECABA98
ProtectUefiImageCommon - 0xBECAB0C0
- 0x00000000BE57A000 - 0x0000000000008180
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE580770
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE580960
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE580940
Loading driver 9E863906-A40F-4875-977F-5B93FF237FC6
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECAA040
Loading driver at 0x000BE570000 EntryPoint=0x000BE570271 TerminalDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECAAE18
ProtectUefiImageCommon - 0xBECAA040
- 0x00000000BE570000 - 0x0000000000009B60
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE579680
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE5796F0
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE5796D0
Loading driver 6B38F7B4-AD98-40E9-9093-ACA2B5A253C4
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECAA440
Loading driver at 0x000BE569000 EntryPoint=0x000BE569271 DiskIoDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECAA398
ProtectUefiImageCommon - 0xBECAA440
- 0x00000000BE569000 - 0x00000000000064E0
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE56F1A0
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE56F210
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE56F1F0
Loading driver 1FA1F39E-FEFF-4AAE-BD7B-38A070A3B609
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECA9B40
Loading driver at 0x000BE561000 EntryPoint=0x000BE561271 PartitionDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECA9E98
ProtectUefiImageCommon - 0xBECA9B40
- 0x00000000BE561000 - 0x0000000000007640
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE5682F0
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE568360
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE568340
Loading driver CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECA91C0
Loading driver at 0x000BE55D000 EntryPoint=0x000BE55D271 EnglishDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECA9498
ProtectUefiImageCommon - 0xBECA91C0
- 0x00000000BE55D000 - 0x0000000000003920
InstallProtocolInterface: 1D85CD7F-F43D-11D2-9A0C-0090273FC14D BE5602F0
InstallProtocolInterface: A4C751FC-23AE-4C3E-92E9-4964CF63F349 BE5602B0
Loading driver 0167CCC4-D0F7-4F21-A3EF-9E64B7CDCE8B
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECA81C0
Loading driver at 0x000BE557000 EntryPoint=0x000BE557271 ScsiBus.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECA8E98
ProtectUefiImageCommon - 0xBECA81C0
- 0x00000000BE557000 - 0x0000000000005D80
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE55CA30
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE55CAA0
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE55CA80
Loading driver 0A66E322-3740-4CCE-AD62-BD172CECCA35
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECA85C0
Loading driver at 0x000BE54B000 EntryPoint=0x000BE54B271 ScsiDisk.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECA8518
ProtectUefiImageCommon - 0xBECA85C0
- 0x00000000BE54B000 - 0x000000000000BE60
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE556B20
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE556B90
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE556B70
Loading driver 021722D8-522B-4079-852A-FE44C2C13F49
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECA7140
Loading driver at 0x000BE546000 EntryPoint=0x000BE546271 SataController.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECA7B18
ProtectUefiImageCommon - 0xBECA7140
- 0x00000000BE546000 - 0x0000000000004E60
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE54AB10
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE54ABA0
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE54AB80
Loading driver 5E523CB4-D397-4986-87BD-A6DD8B22F455
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECA7540
Loading driver at 0x000BE539000 EntryPoint=0x000BE539271 AtaAtapiPassThruDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BEC97018
ProtectUefiImageCommon - 0xBECA7540
- 0x00000000BE539000 - 0x000000000000CBA0
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE5457D0
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE545820
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE545800
Loading driver 19DF145A-B1D4-453F-8507-38816676D7F6
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BEC97140
Loading driver at 0x000BE530000 EntryPoint=0x000BE530271 AtaBusDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BEC97B18
ProtectUefiImageCommon - 0xBEC97140
- 0x00000000BE530000 - 0x0000000000008C80
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE5388D0
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE538950
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE538930
Loading driver 5BE3BDF4-53CF-46A3-A6A9-73C34A6E5EE3
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BEC97540
Loading driver at 0x000BE524000 EntryPoint=0x000BE524271 NvmExpressDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BEC98F98
ProtectUefiImageCommon - 0xBEC97540
- 0x00000000BE524000 - 0x000000000000BCE0
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE52F940
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE52FA00
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE52F9E0
InstallProtocolInterface: 5C198761-16A8-4E69-972C-89D67954F81D BE52F938
Loading driver 38A0EC22-FBE7-4911-8BC1-176E0D6C1DBD
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BEC98840
Loading driver at 0x000BE51F000 EntryPoint=0x000BE51F271 IsaAcpi.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BEC98698
ProtectUefiImageCommon - 0xBEC98840
- 0x00000000BE51F000 - 0x0000000000004220
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE522D10
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE522EC0
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE522EE0
Loading driver 240612B5-A063-11D4-9A3A-0090273FC14D
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BEC9E040
Loading driver at 0x000BE519000 EntryPoint=0x000BE519271 IsaBusDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BEC9ED18
ProtectUefiImageCommon - 0xBEC9E040
- 0x00000000BE519000 - 0x0000000000005C20
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE51E830
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE51E8A0
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE51E880
Loading driver 93B80003-9FB3-11D4-9A3A-0090273FC14D
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BEC9E440
Loading driver at 0x000BE512000 EntryPoint=0x000BE512271 IsaSerialDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BEC9EA18
ProtectUefiImageCommon - 0xBEC9E440
- 0x00000000BE512000 - 0x0000000000006C60
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE5188E0
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE518980
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE518960
Loading driver 3DC82376-637B-40A6-A8FC-A565417F2C38
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECA4040
Loading driver at 0x000BE50A000 EntryPoint=0x000BE50A271 Ps2KeyboardDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECA4F18
ProtectUefiImageCommon - 0xBECA4040
- 0x00000000BE50A000 - 0x0000000000007C60
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE511630
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE5116A0
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE511680
Loading driver 0ABD8284-6DA3-4616-971A-83A5148067BA
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECA4440
Loading driver at 0x000BE502000 EntryPoint=0x000BE502271 IsaFloppyDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECA4998
ProtectUefiImageCommon - 0xBECA4440
- 0x00000000BE502000 - 0x0000000000007520
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE5091B0
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE509230
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE509210
Loading driver B8E62775-BB0A-43F0-A843-5BE8B14F8CCD
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECA3B40
Loading driver at 0x000BE4FD000 EntryPoint=0x000BE4FD271 BootGraphicsResourceTableDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECA3A98
ProtectUefiImageCommon - 0xBECA3B40
- 0x00000000BE4FD000 - 0x0000000000004160
InstallProtocolInterface: CDEA2BD3-FC25-4C1C-B97C-B31186064990 BE500DC8
Loading driver 961578FE-B6B7-44C3-AF35-6BC705CD2B1F
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECA34C0
Loading driver at 0x000BE4F1000 EntryPoint=0x000BE4F1271 Fat.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECA3398
ProtectUefiImageCommon - 0xBECA34C0
- 0x00000000BE4F1000 - 0x000000000000B980
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE4FC550
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE4FC5E0
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE4FC5C0
Loading driver A2F436EA-A127-4EF8-957C-8048606FF670
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECA2CC0
Loading driver at 0x000BE4E7000 EntryPoint=0x000BE4E7271 SnpDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECA2B98
ProtectUefiImageCommon - 0xBECA2CC0
- 0x00000000BE4E7000 - 0x0000000000009280
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE4EFF40
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE4EFFB0
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE4EFF90
Loading driver 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECA23C0
Loading driver at 0x000BE4DA000 EntryPoint=0x000BE4DA271 MnpDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECA2198
ProtectUefiImageCommon - 0xBECA23C0
- 0x00000000BE4DA000 - 0x000000000000CCE0
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE4E68F0
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE4E69F0
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE4E69D0
Loading driver E4F61863-FE2C-4B56-A8F4-08519BC439DF
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECA10C0
Loading driver at 0x000BE4D1000 EntryPoint=0x000BE4D1271 VlanConfigDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECA1918
ProtectUefiImageCommon - 0xBECA10C0
- 0x00000000BE4D1000 - 0x0000000000008F20
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE4D9910
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE4D9C00
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE4D9BE0
Loading driver 529D3F93-E8E9-4E73-B1E1-BDF6A9D50113
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECA13C0
Loading driver at 0x000BE4C8000 EntryPoint=0x000BE4C8271 ArpDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECA1718
ProtectUefiImageCommon - 0xBECA13C0
- 0x00000000BE4C8000 - 0x0000000000008180
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE4CFDD0
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE4CFE60
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE4CFE40
Loading driver 94734718-0BBC-47FB-96A5-EE7A5AE6A2AD
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECA00C0
Loading driver at 0x000BE4BB000 EntryPoint=0x000BE4BB271 Dhcp4Dxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECA0898
ProtectUefiImageCommon - 0xBECA00C0
- 0x00000000BE4BB000 - 0x000000000000C840
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE4C67C0
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE4C68E0
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE4C68C0
Loading driver 9FB1A1F3-3B71-4324-B39A-745CBB015FFF
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BECA0540
Loading driver at 0x000BE4A5000 EntryPoint=0x000BE4A5271 Ip4Dxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BEC9FF98
ProtectUefiImageCommon - 0xBECA0540
- 0x00000000BE4A5000 - 0x00000000000158A0
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE4BA220
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE4BA2E0
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE4BA2C0
Loading driver DC3641B8-2FA8-4ED3-BC1F-F9962A03454B
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BEC9F8C0
Loading driver at 0x000BE499000 EntryPoint=0x000BE499271 Mtftp4Dxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BEC9F798
ProtectUefiImageCommon - 0xBEC9F8C0
- 0x00000000BE499000 - 0x000000000000B480
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE4A4020
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE4A4090
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE4A4070
Loading driver 6D6963AB-906D-4A65-A7CA-BD40E5D6AF2B
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BEC9D040
Loading driver at 0x000BE48E000 EntryPoint=0x000BE48E271 Udp4Dxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BEC9DF18
ProtectUefiImageCommon - 0xBEC9D040
- 0x00000000BE48E000 - 0x000000000000AFA0
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE498B00
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE498B70
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE498B50
Loading driver 5BEDB5CC-D830-4EB2-8742-2D4CC9B54F2C
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BEC9D9C0
Loading driver at 0x000BE46F000 EntryPoint=0x000BE46F271 Ip6Dxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BEC9D398
ProtectUefiImageCommon - 0xBEC9D9C0
- 0x00000000BE46F000 - 0x000000000001E300
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE48CC10
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE48CC80
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE48CC60
Loading driver 1A7E4468-2F55-4A56-903C-01265EB7622B
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BEC9C040
Loading driver at 0x000BE45A000 EntryPoint=0x000BE45A271 TcpDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BEC9CE98
ProtectUefiImageCommon - 0xBEC9C040
- 0x00000000BE45A000 - 0x0000000000014440
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE46DD90
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE46DFD0
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE46DFB0
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE46DD60
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE46DFD0
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE46DFB0
Loading driver D912C7BC-F098-4367-92BA-E911083C7B0E
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BEC9C540
Loading driver at 0x000BE44F000 EntryPoint=0x000BE44F271 Udp6Dxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BEC9C998
ProtectUefiImageCommon - 0xBEC9C540
- 0x00000000BE44F000 - 0x000000000000ADE0
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE4599C0
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE459A30
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE459A10
Loading driver 95E3669D-34BE-4775-A651-7EA41B69D89E
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BEC9BCC0
Loading driver at 0x000BE441000 EntryPoint=0x000BE441271 Dhcp6Dxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BEC9BB98
ProtectUefiImageCommon - 0xBEC9BCC0
- 0x00000000BE441000 - 0x000000000000D3A0
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE44DF80
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE44E0A0
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE44E080
Loading driver 99F03B99-98D8-49DD-A8D3-3219D0FFE41E
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BEC9B4C0
Loading driver at 0x000BE435000 EntryPoint=0x000BE435271 Mtftp6Dxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BEC9B718
ProtectUefiImageCommon - 0xBEC9B4C0
- 0x00000000BE435000 - 0x000000000000BD60
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE4409A0
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE440A70
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE440A50
Loading driver B95E9FDA-26DE-48D2-8807-1F9107AC5E3A
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BEC9A2C0
Loading driver at 0x000BE422000 EntryPoint=0x000BE422271 UefiPxeBcDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BEC9AC98
ProtectUefiImageCommon - 0xBEC9A2C0
- 0x00000000BE422000 - 0x00000000000123E0
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE433ED0
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE434040
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE434020
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE433EA0
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE434040
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE434020
Loading driver 4579B72D-7EC4-4DD4-8486-083C86B182A7
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BEC99D40
Loading driver at 0x000BE40E000 EntryPoint=0x000BE40E271 IScsi4Dxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BEC9A698
ProtectUefiImageCommon - 0xBEC99D40
- 0x00000000BE40E000 - 0x0000000000013EE0
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE4217D0
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE421840
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE421820
InstallProtocolInterface: 59324945-EC44-4C0D-B1CD-9DB139DF070C BE4218C0
InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B BE421860
InstallProtocolInterface: 330D4706-F2A0-4E4F-A369-B66FA8D54385 BEC99128
Loading driver A92CDB4B-82F1-4E0B-A516-8A655D371524
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BEC995C0
Loading driver at 0x000BE407000 EntryPoint=0x000BE407271 VirtioNetDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BEC96E18
ProtectUefiImageCommon - 0xBEC995C0
- 0x00000000BE407000 - 0x0000000000006280
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE40CFB0
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE40CF50
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE40CF30
Loading driver 2FB92EFA-2EE0-4BAE-9EB6-7464125E1EF7
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BEC962C0
Loading driver at 0x000BE3FD000 EntryPoint=0x000BE3FD271 UhciDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BEC96798
ProtectUefiImageCommon - 0xBEC962C0
- 0x00000000BE3FD000 - 0x00000000000095E0
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE4062B0
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE406320
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE406300
Loading driver BDFE430E-8F2A-4DB0-9991-6F856594777E
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BEC96540
Loading driver at 0x000BE3F1000 EntryPoint=0x000BE3F1271 EhciDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BEC8AC18
ProtectUefiImageCommon - 0xBEC96540
- 0x00000000BE3F1000 - 0x000000000000B520
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE3FC1B0
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE3FC250
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE3FC230
Loading driver B7F50E91-A759-412C-ADE4-DCD03E7F7C28
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BEC8A540
Loading driver at 0x000BE3E1000 EntryPoint=0x000BE3E1271 XhciDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BEC8A418
ProtectUefiImageCommon - 0xBEC8A540
- 0x00000000BE3E1000 - 0x000000000000F640
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE3F0220
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE3F0360
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE3F0340
Loading driver 240612B7-A063-11D4-9A3A-0090273FC14D
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BEC94D40
Loading driver at 0x000BE3D5000 EntryPoint=0x000BE3D5271 UsbBusDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BEC94C18
ProtectUefiImageCommon - 0xBEC94D40
- 0x00000000BE3D5000 - 0x000000000000B820
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE3E0350
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE3E0510
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE3E04F0
Loading driver 2D2E62CF-9ECF-43B7-8219-94E7FC713DFE
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BEC942C0
Loading driver at 0x000BE3CC000 EntryPoint=0x000BE3CC271 UsbKbDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BEC94A98
ProtectUefiImageCommon - 0xBEC942C0
- 0x00000000BE3CC000 - 0x0000000000008BA0
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE3D40B0
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE3D48B0
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE3D4890
Loading driver 9FB4B4A7-42C0-4BCD-8540-9BCC6711F83E
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BEC89D40
Loading driver at 0x000BE3C4000 EntryPoint=0x000BE3C4271 UsbMassStorageDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BEC89B98
ProtectUefiImageCommon - 0xBEC89D40
- 0x00000000BE3C4000 - 0x0000000000007880
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE3CB430
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE3CB580
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE3CB560
Loading driver E3752948-B9A1-4770-90C4-DF41C38986BE
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BEC897C0
Loading driver at 0x000BE3BB000 EntryPoint=0x000BE3BB271 QemuVideoDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BEC89A98
ProtectUefiImageCommon - 0xBEC897C0
- 0x00000000BE3BB000 - 0x0000000000008700
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE3C3040
InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D BE3C3410
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE3C33F0
InstallProtocolInterface: 5C198761-16A8-4E69-972C-89D67954F81D BE3C3070
Loading driver D6099B94-CD97-4CC5-8714-7F6312701A8A
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BEC882C0
Loading driver at 0x000BE3B3000 EntryPoint=0x000BE3B3271 VirtioGpuDxe.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BEC88A98
ProtectUefiImageCommon - 0xBEC882C0
- 0x00000000BE3B3000 - 0x00000000000075A0
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE3BA270
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE3BA2A0
[Bds] Entry...
[BdsDxe] Locate Variable Lock protocol - Success
[Variable] Lock: 8BE4DF61-93CA-11D2-AA0D-00E098032B8C:PlatformLangCodes Success
[Variable] Lock: 8BE4DF61-93CA-11D2-AA0D-00E098032B8C:LangCodes Success
[Variable] Lock: 8BE4DF61-93CA-11D2-AA0D-00E098032B8C:BootOptionSupport Success
[Variable] Lock: 8BE4DF61-93CA-11D2-AA0D-00E098032B8C:HwErrRecSupport Success
[Variable] Lock: 8BE4DF61-93CA-11D2-AA0D-00E098032B8C:OsIndicationsSupported Success
Variable Driver Auto Update Lang, Lang:eng, PlatformLang:en Status: Success
[Variable] Lock: 8BE4DF61-93CA-11D2-AA0D-00E098032B8C:PlatformRecovery0000 Success
PlatformBootManagerBeforeConsole
Registered NotifyDevPath Event
PCI Bus First Scanning
PciBus: Discovered PCI @ [00|00|00]
PciBus: Discovered PCI @ [00|01|00]
PciBus: Discovered PCI @ [00|01|01]
BAR[4]: Type = Io32; Alignment = 0xF; Length = 0x10; Offset = 0x20
PciBus: Discovered PCI @ [00|01|03]
PciBus: Discovered PCI @ [00|02|00]
BAR[0]: Type = PMem32; Alignment = 0xFFFFFF; Length = 0x1000000; Offset = 0x10
BAR[2]: Type = Mem32; Alignment = 0xFFF; Length = 0x1000; Offset = 0x18
PciBus: Discovered PCI @ [00|03|00]
BAR[0]: Type = Mem32; Alignment = 0x1FFFF; Length = 0x20000; Offset = 0x10
BAR[1]: Type = Io32; Alignment = 0x3F; Length = 0x40; Offset = 0x14
PciBus: Discovered PCI @ [00|04|00]
BAR[0]: Type = Io32; Alignment = 0x3F; Length = 0x40; Offset = 0x10
BAR[1]: Type = Mem32; Alignment = 0xFFF; Length = 0x1000; Offset = 0x14
BAR[4]: Type = PMem64; Alignment = 0x3FFF; Length = 0x4000; Offset = 0x20
PCI Bus Second Scanning
PciBus: Discovered PCI @ [00|00|00]
PciBus: Discovered PCI @ [00|01|00]
PciBus: Discovered PCI @ [00|01|01]
BAR[4]: Type = Io32; Alignment = 0xF; Length = 0x10; Offset = 0x20
PciBus: Discovered PCI @ [00|01|03]
PciBus: Discovered PCI @ [00|02|00]
BAR[0]: Type = PMem32; Alignment = 0xFFFFFF; Length = 0x1000000; Offset = 0x10
BAR[2]: Type = Mem32; Alignment = 0xFFF; Length = 0x1000; Offset = 0x18
PciBus: Discovered PCI @ [00|03|00]
BAR[0]: Type = Mem32; Alignment = 0x1FFFF; Length = 0x20000; Offset = 0x10
BAR[1]: Type = Io32; Alignment = 0x3F; Length = 0x40; Offset = 0x14
PciBus: Discovered PCI @ [00|04|00]
BAR[0]: Type = Io32; Alignment = 0x3F; Length = 0x40; Offset = 0x10
BAR[1]: Type = Mem32; Alignment = 0xFFF; Length = 0x1000; Offset = 0x14
BAR[4]: Type = PMem64; Alignment = 0x3FFF; Length = 0x4000; Offset = 0x20
PciBus: Discovered PCI @ [00|00|00]
PciBus: Discovered PCI @ [00|01|00]
PciBus: Discovered PCI @ [00|01|01]
BAR[4]: Type = Io32; Alignment = 0xF; Length = 0x10; Offset = 0x20
PciBus: Discovered PCI @ [00|01|03]
PciBus: Discovered PCI @ [00|02|00]
BAR[0]: Type = PMem32; Alignment = 0xFFFFFF; Length = 0x1000000; Offset = 0x10
BAR[2]: Type = Mem32; Alignment = 0xFFF; Length = 0x1000; Offset = 0x18
PciBus: Discovered PCI @ [00|03|00]
BAR[0]: Type = Mem32; Alignment = 0x1FFFF; Length = 0x20000; Offset = 0x10
BAR[1]: Type = Io32; Alignment = 0x3F; Length = 0x40; Offset = 0x14
PciBus: Discovered PCI @ [00|04|00]
BAR[0]: Type = Io32; Alignment = 0x3F; Length = 0x40; Offset = 0x10
BAR[1]: Type = Mem32; Alignment = 0xFFF; Length = 0x1000; Offset = 0x14
BAR[4]: Type = PMem64; Alignment = 0x3FFF; Length = 0x4000; Offset = 0x20
PciHostBridge: SubmitResources for PciRoot(0x0)
I/O: Granularity/SpecificFlag = 0 / 01
Length/Alignment = 0x1000 / 0xFFF
Mem: Granularity/SpecificFlag = 32 / 00
Length/Alignment = 0x1100000 / 0xFFFFFF
Mem: Granularity/SpecificFlag = 64 / 00
Length/Alignment = 0x100000 / 0xFFFFF
PciBus: HostBridge->SubmitResources() - Success
PciHostBridge: NotifyPhase (AllocateResources)
RootBridge: PciRoot(0x0)
Mem: Base/Length/Alignment = C0000000/1100000/FFFFFF - Success
Mem64: Base/Length/Alignment = 10000000000/100000/FFFFF - Success
I/O: Base/Length/Alignment = C000/1000/FFF - Success
PciBus: HostBridge->NotifyPhase(AllocateResources) - Success
PciBus: Resource Map for Root Bridge PciRoot(0x0)
Type = Io16; Base = 0xC000; Length = 0x1000; Alignment = 0xFFF
Base = 0xC000; Length = 0x40; Alignment = 0x3F; Owner = PCI [00|04|00:10]
Base = 0xC040; Length = 0x40; Alignment = 0x3F; Owner = PCI [00|03|00:14]
Base = 0xC080; Length = 0x10; Alignment = 0xF; Owner = PCI [00|01|01:20]
Type = Mem32; Base = 0xC0000000; Length = 0x1100000; Alignment = 0xFFFFFF
Base = 0xC0000000; Length = 0x1000000; Alignment = 0xFFFFFF; Owner = PCI [00|02|00:10]; Type = PMem32
Base = 0xC1000000; Length = 0x20000; Alignment = 0x1FFFF; Owner = PCI [00|03|00:10]
Base = 0xC1020000; Length = 0x1000; Alignment = 0xFFF; Owner = PCI [00|04|00:14]
Base = 0xC1021000; Length = 0x1000; Alignment = 0xFFF; Owner = PCI [00|02|00:18]
Type = Mem64; Base = 0x10000000000; Length = 0x100000; Alignment = 0xFFFFF
Base = 0x10000000000; Length = 0x4000; Alignment = 0x3FFF; Owner = PCI [00|04|00:20]; Type = PMem64
InstallProtocolInterface: 30CFE3E7-3DE1-4586-BE20-DEABA1B3B793 0
InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B BEC92E98
InstallProtocolInterface: 4CF5B200-68B8-4CA5-9EEC-B23E3F50029A BEC92028
InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B BEC92F18
InstallProtocolInterface: 4CF5B200-68B8-4CA5-9EEC-B23E3F50029A BEC92428
InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B BEC92F98
InstallProtocolInterface: 4CF5B200-68B8-4CA5-9EEC-B23E3F50029A BEC92828
InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B BEC91E98
InstallProtocolInterface: 4CF5B200-68B8-4CA5-9EEC-B23E3F50029A BEC91028
InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B BEC91F18
InstallProtocolInterface: 4CF5B200-68B8-4CA5-9EEC-B23E3F50029A BEC91428
InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B BEC91F98
InstallProtocolInterface: 4CF5B200-68B8-4CA5-9EEC-B23E3F50029A BEC91828
InstallProtocolInterface: 4006C0C1-FCB3-403E-996D-4A6C8724E06D BEC918F0
[Security] 3rd party image[0] is deferred to load before EndOfDxe: PciRoot(0x0)/Pci(0x3,0x0)/Offset(0x23400,0x373FF).
InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B BEC90E98
InstallProtocolInterface: 4CF5B200-68B8-4CA5-9EEC-B23E3F50029A BEC90028
InstallProtocolInterface: 4006C0C1-FCB3-403E-996D-4A6C8724E06D BEC900F0
[Security] 3rd party image[0] is deferred to load before EndOfDxe: PciRoot(0x0)/Pci(0x4,0x0)/Offset(0x25000,0x3B3FF).
OnRootBridgesConnected: root bridges have been connected, installing ACPI tables
Select Item: 0x19
Select Item: 0x28
Select Item: 0x19
Select Item: 0x27
Select Item: 0x19
Select Item: 0x21
Select Item: 0x19
Select Item: 0x22
Select Item: 0x1
InstallQemuFwCfgTables: installed 6 tables
PcRtc: Write 0x20 to CMOS location 0x32
AcpiPlatform: S3SaveStateInstalledNotify: DmaAccess@0xBF6B9018 ScratchBuffer@[0xBF6B9028+0x8]
[Variable]END_OF_DXE is signaled
Initialize variable error flag (FF)
AcpiS3ContextSave!
AcpiS3Context: AcpiFacsTable is 0xBF6C5000
AcpiS3Context: IdtrProfile is 0xBE3B2000
AcpiS3Context: S3NvsPageTableAddress is 0x 0
AcpiS3Context: S3DebugBufferAddress is 0xBF6B7000
AcpiS3Context: BootScriptStackBase is 0xBE3A9000
AcpiS3Context: BootScriptStackSize is 0x 8000
Select Item: 0x19
Select Item: 0x27
InstallProtocolInterface: 60FF8964-E906-41D0-AFED-F241E974E08E 0
InstallProtocolInterface: FA20568B-548B-4B2B-81EF-1BA08D4A3CEC 0
Select Item: 0x0
FW CFG Signature: 0x554D4551
Select Item: 0x1
FW CFG Revision: 0x3
QemuFwCfg interface (DMA) is supported.
Select Item: 0x19
Select Item: 0x27
[Security] 3rd party image[BEC8EE18] can be loaded after EndOfDxe: PciRoot(0x0)/Pci(0x3,0x0)/Offset(0x23400,0x373FF).
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BEC8E0C0
Loading driver at 0x000BE2D8000 EntryPoint=0x000BE2DDFD2 8086100e.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BEC8BC98
ProtectUefiImageCommon - 0xBEC8E0C0
- 0x00000000BE2D8000 - 0x00000000000A33E0
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE2F8650
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE2F8620
[Security] 3rd party image[BEC8EE28] can be loaded after EndOfDxe: PciRoot(0x0)/Pci(0x4,0x0)/Offset(0x25000,0x3B3FF).
InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B BEC8E5C0
Loading driver at 0x000BE231000 EntryPoint=0x000BE2371EB 1af41000.efi
InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF BECD1D18
ProtectUefiImageCommon - 0xBEC8E5C0
- 0x00000000BE231000 - 0x00000000000A6900
InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 BE254950
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE254920
Found LPC Bridge device
BdsPlatform.c+498: COM1 DevPath: PciRoot(0x0)/Pci(0x1,0x0)/Serial(0x0)/Uart(115200,8,N,1)/VenMsg(E0C14753-F9BE-11D2-9A0C-0090273FC14D)
BdsPlatform.c+527: COM2 DevPath: PciRoot(0x0)/Pci(0x1,0x0)/Serial(0x1)/Uart(115200,8,N,1)/VenMsg(E0C14753-F9BE-11D2-9A0C-0090273FC14D)
Found PCI display device
QemuVideo: QEMU Standard VGA detected
QemuVideo: Using mmio bar @ 0xC1021000
InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B BEC8B318
QemuVideoBochsModeSetup: AvailableFbSize=0x1000000
Adding Mode 0 as Bochs Internal Mode 0: 640x480, 32-bit
Adding Mode 1 as Bochs Internal Mode 1: 800x480, 32-bit
Adding Mode 2 as Bochs Internal Mode 2: 800x600, 32-bit
Adding Mode 3 as Bochs Internal Mode 3: 832x624, 32-bit
Adding Mode 4 as Bochs Internal Mode 4: 960x640, 32-bit
Adding Mode 5 as Bochs Internal Mode 5: 1024x600, 32-bit
Adding Mode 6 as Bochs Internal Mode 6: 1024x768, 32-bit
Adding Mode 7 as Bochs Internal Mode 7: 1152x864, 32-bit
Adding Mode 8 as Bochs Internal Mode 8: 1152x870, 32-bit
Adding Mode 9 as Bochs Internal Mode 9: 1280x720, 32-bit
Adding Mode 10 as Bochs Internal Mode 10: 1280x760, 32-bit
Adding Mode 11 as Bochs Internal Mode 11: 1280x768, 32-bit
Adding Mode 12 as Bochs Internal Mode 12: 1280x800, 32-bit
Adding Mode 13 as Bochs Internal Mode 13: 1280x960, 32-bit
Adding Mode 14 as Bochs Internal Mode 14: 1280x1024, 32-bit
Adding Mode 15 as Bochs Internal Mode 15: 1360x768, 32-bit
Adding Mode 16 as Bochs Internal Mode 16: 1366x768, 32-bit
Adding Mode 17 as Bochs Internal Mode 17: 1400x1050, 32-bit
Adding Mode 18 as Bochs Internal Mode 18: 1440x900, 32-bit
Adding Mode 19 as Bochs Internal Mode 19: 1600x900, 32-bit
Adding Mode 20 as Bochs Internal Mode 20: 1600x1200, 32-bit
Adding Mode 21 as Bochs Internal Mode 21: 1680x1050, 32-bit
Adding Mode 22 as Bochs Internal Mode 22: 1920x1080, 32-bit
Adding Mode 23 as Bochs Internal Mode 23: 1920x1200, 32-bit
Adding Mode 24 as Bochs Internal Mode 24: 1920x1440, 32-bit
Adding Mode 25 as Bochs Internal Mode 25: 2000x2000, 32-bit
Adding Mode 26 as Bochs Internal Mode 26: 2048x1536, 32-bit
Adding Mode 27 as Bochs Internal Mode 27: 2048x2048, 32-bit
Adding Mode 28 as Bochs Internal Mode 28: 2560x1440, 32-bit
Adding Mode 29 as Bochs Internal Mode 29: 2560x1600, 32-bit
InitializeBochsGraphicsMode: 640x480 @ 32
PixelBlueGreenRedReserved8BitPerColor
FrameBufferBase: 0xC0000000, FrameBufferSize: 0x12C000
0: shl:0 shr:0 mask:FF0000
1: shl:0 shr:0 mask:FF00
2: shl:0 shr:0 mask:FF
Bytes per pixel: 4
0: shl:0 shr:0 mask:FF0000
1: shl:0 shr:0 mask:FF00
2: shl:0 shr:0 mask:FF
Bytes per pixel: 4
InstallProtocolInterface: 9042A9DE-23DC-4A38-96FB-7ADED080516A BEC8E338
InstallVbeShim: VBE shim installed
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
Select Item: 0xE
[Bds]RegisterKeyNotify: 000C/0000 80000000/00 Success
[Bds]RegisterKeyNotify: 0017/0000 80000000/00 Success
[Bds]RegisterKeyNotify: 0000/000D 80000000/00 Success
InstallProtocolInterface: 64A892DC-5561-4536-92C7-799BFC183355 BEC8C728
InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B BEBDF698
InstallProtocolInterface: 7EE2BD44-3DA0-11D4-9A38-0090273FC14D BEBDFB28
InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B BEBDFA18
InstallProtocolInterface: 7EE2BD44-3DA0-11D4-9A38-0090273FC14D BEBDF8A8
InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B BEBDED98
InstallProtocolInterface: 7EE2BD44-3DA0-11D4-9A38-0090273FC14D BEBDEE28
InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B BEBDE998
InstallProtocolInterface: 7EE2BD44-3DA0-11D4-9A38-0090273FC14D BEBDEA28
InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B BEBDE718
InstallProtocolInterface: 7EE2BD44-3DA0-11D4-9A38-0090273FC14D BEBDE5A8
InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B BEBDE498
InstallProtocolInterface: 7EE2BD44-3DA0-11D4-9A38-0090273FC14D BEBDE328
InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B BEC8C598
InstallProtocolInterface: BB25CF6F-F1D4-11D2-9A0C-0090273FC1FD BEBDD9A8
Terminal - Mode 0, Column = 80, Row = 25
Terminal - Mode 1, Column = 80, Row = 50
Terminal - Mode 2, Column = 100, Row = 31
^[[2J^[[01;01H^[[=3h^[[2J^[[01;01HInstallProtocolInterface: 387477C1-69C7-11D2-8E39-00A0C969723B BEBDC040
InstallProtocolInterface: DD9E7534-7762-4698-8C14-F58517A625AA BEBDC128
InstallProtocolInterface: 387477C2-69C7-11D2-8E39-00A0C969723B BEBDC058
InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B BEBDCE98
InstallProtocolInterface: D3B36F2B-D551-11D4-9A46-0090273FC14D 0
InstallProtocolInterface: D3B36F2C-D551-11D4-9A46-0090273FC14D 0
InstallProtocolInterface: D3B36F2D-D551-11D4-9A46-0090273FC14D 0
^[[2J^[[01;01H^[[=3h^[[2J^[[01;01H^[[2J^[[01;01H^[[=3h^[[2J^[[01;01H^[[0m^[[35m^[[40mPixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
InitializeBochsGraphicsMode: 800x600 @ 32
PixelBlueGreenRedReserved8BitPerColor
FrameBufferBase: 0xC0000000, FrameBufferSize: 0x1D4C00
0: shl:0 shr:0 mask:FF0000
1: shl:0 shr:0 mask:FF00
2: shl:0 shr:0 mask:FF
Bytes per pixel: 4
0: shl:0 shr:0 mask:FF0000
1: shl:0 shr:0 mask:FF00
2: shl:0 shr:0 mask:FF
Bytes per pixel: 4
GraphicsConsole video resolution 800 x 600
Graphics - Mode 0, Column = 80, Row = 25
Graphics - Mode 1, Column = 0, Row = 0
Graphics - Mode 2, Column = 100, Row = 31
InstallProtocolInterface: 387477C2-69C7-11D2-8E39-00A0C969723B BEBDA0B0
InstallProtocolInterface: D3B36F2C-D551-11D4-9A46-0090273FC14D 0
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
PixelBlueGreenRedReserved8BitPerColor
InstallProtocolInterface: 9042A9DE-23DC-4A38-96FB-7ADED080516A BE58C0F0
^[[2J^[[01;01H^[[=3h^[[2J^[[01;01H^[[0m^[[37m^[[40mInstallProtocolInterface: 387477C1-69C7-11D2-8E39-00A0C969723B BEBC6028
InstallProtocolInterface: DD9E7534-7762-4698-8C14-F58517A625AA BEBC6040
InstallProtocolInterface: D3B36F2B-D551-11D4-9A46-0090273FC14D 0
PlatformBootManagerAfterConsole
Found Mass Storage device: PciRoot(0x0)/Pci(0x1,0x1)
SataControllerStart START
InstallProtocolInterface: A1E37052-80D9-4E65-A317-3E9A55C43EC9 BEBDA720
SataControllerStart END status = Success
==AtaAtapiPassThru Start== Controller = BEC93898
[secondary] channel [master] [cdrom ] device
CalculateBestPioMode: AdvancedPioMode = 3
IdeInitCalculateMode: PioMode = 3
CalculateBestUdmaMode: DeviceUDmaMode = 203F
IdeInitCalculateMode: UdmaMode = 5
InstallProtocolInterface: 1D3DE7F0-0807-424F-AA69-11A54E19A46F BEBC86C0
InstallProtocolInterface: 143B7632-B81B-4CB7-ABD3-B625A5B9BFFE BEBC8710
InstallProtocolInterface: 19DF145A-B1D4-453F-8507-38816676D7F6 BEBC4F98
InstallProtocolInterface: 0167CCC4-D0F7-4F21-A3EF-9E64B7CDCE8B BEBC40A0
InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B BEBC4818
InstallProtocolInterface: 932F47E6-2362-4002-803E-3CD54B138F85 BEBC48A8
InstallProtocolInterface: 964E5B21-6459-11D2-8E39-00A0C969723B BEBC3028
InstallProtocolInterface: A77B2472-E282-4E9F-A245-C2C0E27BBCC1 BEBC3058
InstallProtocolInterface: D432A67F-14DC-484B-B3BB-3F0291849327 BEBC3150
InstallProtocolInterface: CE345171-BA0B-11D2-8E4F-00A0C969723B BEBC3920
InstallProtocolInterface: 151C8EAE-7F2C-472C-9E54-9828194F6A88 BEBC3938
BlockSize : 2048
LastBlock : 0
FatOpenDevice: read of part_lba failed No Media
Boot Mode:0
PlatformBdsConnectSequence
Select Item: 0x19
EfiBootManagerConnectAll
InstallProtocolInterface: 964E5B21-6459-11D2-8E39-00A0C969723B BEBC42A8
InstallProtocolInterface: CE345171-BA0B-11D2-8E4F-00A0C969723B BEBA19A0
FatOpenDevice: read of part_lba failed No Media
InstallProtocolInterface: 964E5B21-6459-11D2-8E39-00A0C969723B BEBA1628
InstallProtocolInterface: CE345171-BA0B-11D2-8E4F-00A0C969723B BEB98BA0
FatOpenDevice: read of part_lba failed No Media
SataControllerStart START
SataControllerStart error return status = Already started
BlockSize : 2048
LastBlock : 0
FatOpenDevice: read of part_lba failed No Media
InstallProtocolInterface: A19832B9-AC25-11D3-9A2D-0090273FC14D BE2FAC90
InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B BE2FB208
InstallProtocolInterface: E18541CD-F755-4F73-928D-643C8A79B229 BE2FB0C0
InstallProtocolInterface: 1ACED566-76ED-4218-BC81-767F1F977A89 BE2FB0C0
InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 BE2FB0E8
InstallProtocolInterface: 6F6C7323-2077-7523-6E68-656C7066756C BE2FB100
InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B BE2FB268
InstallProtocolInterface: 330D4706-F2A0-4E4F-A369-B66FA8D54385 BE2FB108
InstallProtocolInterface: 9E23D768-D2F3-4366-9FC3-3A7ABA864374 BEB98230
InstallProtocolInterface: F36FF770-A7E1-42CF-9ED2-56F0F271F44C BEB977C0
InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B BEA82D98
InstallProtocolInterface: 330D4706-F2A0-4E4F-A369-B66FA8D54385 BEA82BA0
InstallProtocolInterface: E4F61863-FE2C-4B56-A8F4-08519BC439DF BEA82B98
InstallProtocolInterface: 7AB33A91-ACE5-4326-B572-E7EE33D39F16 BEA82540
InstallProtocolInterface: F44C00EE-1F2C-4A00-AA09-1C9F3E0800A3 BEA82120
InstallProtocolInterface: 7AB33A91-ACE5-4326-B572-E7EE33D39F16 BEA7DD40
InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B BEA7DB98
InstallProtocolInterface: 330D4706-F2A0-4E4F-A369-B66FA8D54385 BEA7E830
InstallProtocolInterface: C51711E7-B4BF-404A-BFB8-0A048EF1FFE4 BEA7E020
InstallProtocolInterface: 5B446ED1-E30B-4FAA-871A-3654ECA36080 BEA7E578
InstallProtocolInterface: 41D94CD2-35B6-455A-8258-D4E51334AADD BEA79020
InstallProtocolInterface: 83F01464-99BD-45E5-B383-AF6305D8E9E6 BEA7A520
InstallProtocolInterface: 41D94CD2-35B6-455A-8258-D4E51334AADD BEA766A0
InstallProtocolInterface: 3AD9DF29-4501-478D-B1F8-7F7FE70E50F3 BEA76D38
InstallProtocolInterface: 9D9A39D8-BD42-4A73-A4D5-8EE94BE11380 BEA76020
InstallProtocolInterface: 41D94CD2-35B6-455A-8258-D4E51334AADD BEA713A0
InstallProtocolInterface: 3AD9DF29-4501-478D-B1F8-7F7FE70E50F3 BEA70EB8
InstallProtocolInterface: 2FE800BE-8F01-4AA6-946B-D71388E1833F BEA715A0
InstallProtocolInterface: 7AB33A91-ACE5-4326-B572-E7EE33D39F16 BEA705C0
InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B BEA6CF18
InstallProtocolInterface: 330D4706-F2A0-4E4F-A369-B66FA8D54385 BEA6EFE8
InstallProtocolInterface: EC835DD3-FE0F-617B-A621-B350C3E13388 BEA6E020
InstallProtocolInterface: 937FE521-95AE-4D1A-8929-48BCD90AD31A BEA6EF70
InstallProtocolInterface: 41D94CD2-35B6-455A-8258-D4E51334AADD BEA68D20
InstallProtocolInterface: 00720665-67EB-4A99-BAF7-D3C33A1C7CC9 BEA68FC0
InstallProtocolInterface: 2C8759D5-5C2D-66EF-925F-B66C101957E2 BEA650A0
InstallProtocolInterface: EC20EB79-6C1A-4664-9A0D-D2E4CC16D664 BEA65F40
InstallProtocolInterface: 2C8759D5-5C2D-66EF-925F-B66C101957E2 BEA632A0
InstallProtocolInterface: 66ED4721-3C98-4D3E-81E3-D03DD39A7254 BEA63720
InstallProtocolInterface: 2C8759D5-5C2D-66EF-925F-B66C101957E2 BEA607A0
InstallProtocolInterface: 4F948815-B4B9-43CB-8A33-90E060B34955 BEA60538
InstallProtocolInterface: 9FB9A8A1-2F4A-43A6-889C-D0F7B6C47AD5 BEA60CB0
InstallProtocolInterface: 2C8759D5-5C2D-66EF-925F-B66C101957E2 BEA5C020
InstallProtocolInterface: 4F948815-B4B9-43CB-8A33-90E060B34955 BEA5D538
InstallProtocolInterface: D9760FF3-3CCA-4267-80F9-7527FAFA4223 BEA5D7A0
InstallProtocolInterface: B95E9FDA-26DE-48D2-8807-1F9107AC5E3A BEA51030
InstallProtocolInterface: 8A219718-4EF5-4761-91C8-C0F04BDA9E56 BEA5C3A0
InstallProtocolInterface: 41D94CD2-35B6-455A-8258-D4E51334AADD BEA50AA0
InstallProtocolInterface: 3AD9DF29-4501-478D-B1F8-7F7FE70E50F3 BEA501B8
InstallProtocolInterface: 78247C57-63DB-4708-99C2-A8B4A9A61F6B BEA50030
InstallProtocolInterface: 41D94CD2-35B6-455A-8258-D4E51334AADD BEA4F0A0
InstallProtocolInterface: 3AD9DF29-4501-478D-B1F8-7F7FE70E50F3 BEA4FBB8
InstallProtocolInterface: 41D94CD2-35B6-455A-8258-D4E51334AADD BEA4F520
InstallProtocolInterface: 3AD9DF29-4501-478D-B1F8-7F7FE70E50F3 BEA4F2B8
InstallProtocolInterface: F4B427BB-BA21-4F16-BC4E-43E416AB619C BEA4EA30
InstallProtocolInterface: 41D94CD2-35B6-455A-8258-D4E51334AADD BEA4E5A0
InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B BEA4E318
InstallProtocolInterface: 56EC3091-954C-11D2-8E3F-00A0C969723B BEA4E228
InstallProtocolInterface: 03C4E603-AC28-11D3-9A2D-0090273FC14D BEA51120
InstallProtocolInterface: A19832B9-AC25-11D3-9A2D-0090273FC14D BE2FAC90
InstallProtocolInterface: 87C8BAD7-0595-4053-8297-DEDE395F5D5B BEA4D7C0
InstallProtocolInterface: BF0A78BA-EC29-49CF-A1C9-7AE54EAB6A51 BEA4D1B8
InstallProtocolInterface: 2C8759D5-5C2D-66EF-925F-B66C101957E2 BEA4CCA0
InstallProtocolInterface: 4F948815-B4B9-43CB-8A33-90E060B34955 BEA4CB38
InstallProtocolInterface: 2C8759D5-5C2D-66EF-925F-B66C101957E2 BEA4C320
InstallProtocolInterface: 4F948815-B4B9-43CB-8A33-90E060B34955 BEA4C1B8
InstallProtocolInterface: 2C8759D5-5C2D-66EF-925F-B66C101957E2 BEA4B7A0
InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B BEA4B618
InstallProtocolInterface: 56EC3091-954C-11D2-8E3F-00A0C969723B BEA4D0A8
InstallProtocolInterface: 03C4E603-AC28-11D3-9A2D-0090273FC14D BEA51120
InstallProtocolInterface: A19832B9-AC25-11D3-9A2D-0090273FC14D BE2FAC90
InstallProtocolInterface: 143B7632-B81B-4CB7-ABD3-B625A5B9BFFE BEA4A048
InstallProtocolInterface: 65530BC7-A359-410F-B010-5AADC7EC2B62 BEA49D38
InstallProtocolInterface: 41D94CD2-35B6-455A-8258-D4E51334AADD BEA49320
InstallProtocolInterface: 4579B72D-7EC4-4DD4-8486-083C86B182A7 BEA4A030
!!!! X64 Exception Type - 0E(#PF - Page-Fault) CPU Apic ID - 00000000 !!!!
ExceptionData - 000000000000000B I:0 R:1 U:0 W:1 P:1 PK:0 S:0
RIP - 00000000BE2457F7, CS - 0000000000000038, RFLAGS - 0000000000010206
RAX - 0000000000000000, RCX - 0000000000000014, RDX - 0000010000000014
RBX - 00000000BE256FE0, RSP - 00000000BFEEC8B8, RBP - 00000000BE256FF0
RSI - 00000000BE256FF0, RDI - 00000000BE256FE0
R8 - 0000000000000000, R9 - 0000000000000000, R10 - 00000000BE253490
R11 - 00000000BE253970, R12 - 00000000BE256FD0, R13 - 0000000000000060
R14 - 0000000000000084, R15 - 0000000000000070
DS - 0000000000000030, ES - 0000000000000030, FS - 0000000000000030
GS - 0000000000000030, SS - 0000000000000030
CR0 - 0000000080010033, CR2 - 0000010000000014, CR3 - 00000000BF6C8000
CR4 - 0000000000000668, CR8 - 0000000000000000
DR0 - 0000000000000000, DR1 - 0000000000000000, DR2 - 0000000000000000
DR3 - 0000000000000000, DR6 - 00000000FFFF0FF0, DR7 - 0000000000000400
GDTR - 00000000BF6B6A98 0000000000000047, LDTR - 0000000000000000
IDTR - 00000000BF0EE018 0000000000000FFF, TR - 0000000000000000
FXSAVE_STATE - 00000000BFEEC510
!!!! Find image 1af41000.efidrv (ImageBase=00000000BE231000, EntryPoint=00000000BE2371EB) !!!!
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: A VM failed to boot when I changed the gUefiOvmfPkgTokenSpaceGuid.PcdPciMmio64Size
2019-01-24 2:35 ` Wuzongyong (Euler Dept)
@ 2019-01-24 8:21 ` Laszlo Ersek
2019-01-24 9:25 ` Wuzongyong (Euler Dept)
0 siblings, 1 reply; 6+ messages in thread
From: Laszlo Ersek @ 2019-01-24 8:21 UTC (permalink / raw)
To: Wuzongyong (Euler Dept)
Cc: edk2-devel@lists.01.org, chenlixin, Wanzongshun (Vincent),
Alex Williamson, Gerd Hoffmann, Dr. David Alan Gilbert
On 01/24/19 03:35, Wuzongyong (Euler Dept) wrote:
>> (1) Either way, if you'd like to check whether this issue is specific
>> to the iPXE option ROM, you could prevent QEMU from loading the ROM
>> image into the NIC's ROM BAR, and retest. The QEMU option for that is
>>
>> -device virtio-net-pci,[some properties,]romfile=''
>>
>> The corresponging domain XML element is
>>
>> <interface type='network'>
>> <rom enabled='no'/>
>> </interface>
>>
>> In this case, virtio-net NICs will be bound by OVMF's built-in
>> virtio-net driver (OvmfPkg/VirtioNetDxe).
>>
> The problem goes away indeed if I prevent QEMU from loading the ROM
> image as your guide. So is this problem related to the iPXE option
> ROM?
While it would seem so, I wouldn't claim that just yet, because:
> The physical address bits of CPUs I use is 40.
>
> host:/home/wzy # grep 'address sizes' /proc/cpuinfo
> address sizes : 40 bits physical, 48 bits virtual
> address sizes : 40 bits physical, 48 bits virtual
> address sizes : 40 bits physical, 48 bits virtual
> address sizes : 40 bits physical, 48 bits virtual
And, in the logs you attached (and thank yoou for those), we see:
> GetFirstNonAddress: Pci64Base=0x10000000000 Pci64Size=0x10000000000
> [...]
> PublishPeiMemory: mPhysMemAddressWidth=41 PeiMemoryCap=73748 KB
This means that you need *41* physical address bits, not 40. The highest
inclusive address in the aperture is 0x1FF_FFFF_FFFF, which needs 41
bits for representation.
The reason for setting Pci64Base to 1TB is given in the following, in
the GetFirstNonAddress() function [OvmfPkg/PlatformPei/MemDetect.c]:
> //
> // The 64-bit PCI host aperture should also be "naturally" aligned. The
> // alignment is determined by rounding the size of the aperture down to the
> // next smaller or equal power of two. That is, align the aperture by the
> // largest BAR size that can fit into it.
> //
> Pci64Base = ALIGN_VALUE (Pci64Base, GetPowerOfTwo64 (Pci64Size));
(You can read more about this calculation in
<https://bugzilla.redhat.com/show_bug.cgi?id=1353591#c8>, in particular
under point (6).)
Looking further at the log, at least one BAR is indeed mapped at 1TB (that is,
outside of the GPA range that your host can work with):
> Type = Mem64; Base = 0x10000000000; Length = 0x100000; Alignment = 0xFFFFF
> Base = 0x10000000000; Length = 0x4000; Alignment = 0x3FFF; Owner = PCI [00|04|00:20]; Type = PMem64
I would suggest retesting on appropriate hardware (41+ phys addr bits),
or else decreasing "opt/ovmf/X-PciMmio64Mb", until the OVMF debug log
confirms that "mPhysMemAddressWidth" is 40, or less. If the iPXE oprom
crashes in that case too, then that would strongly suggest a problem in
it.
Thanks,
Laszlo
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: A VM failed to boot when I changed the gUefiOvmfPkgTokenSpaceGuid.PcdPciMmio64Size
2019-01-24 8:21 ` Laszlo Ersek
@ 2019-01-24 9:25 ` Wuzongyong (Euler Dept)
2019-01-24 11:28 ` Laszlo Ersek
0 siblings, 1 reply; 6+ messages in thread
From: Wuzongyong (Euler Dept) @ 2019-01-24 9:25 UTC (permalink / raw)
To: Laszlo Ersek
Cc: edk2-devel@lists.01.org, chenlixin, Wanzongshun (Vincent),
Alex Williamson, Gerd Hoffmann, Dr. David Alan Gilbert
> >> (1) Either way, if you'd like to check whether this issue is specific
> >> to the iPXE option ROM, you could prevent QEMU from loading the ROM
> >> image into the NIC's ROM BAR, and retest. The QEMU option for that is
> >>
> >> -device virtio-net-pci,[some properties,]romfile=''
> >>
> >> The corresponging domain XML element is
> >>
> >> <interface type='network'>
> >> <rom enabled='no'/>
> >> </interface>
> >>
> >> In this case, virtio-net NICs will be bound by OVMF's built-in
> >> virtio-net driver (OvmfPkg/VirtioNetDxe).
> >>
> > The problem goes away indeed if I prevent QEMU from loading the ROM
> > image as your guide. So is this problem related to the iPXE option
> > ROM?
>
> While it would seem so, I wouldn't claim that just yet, because:
>
> > The physical address bits of CPUs I use is 40.
> >
> > host:/home/wzy # grep 'address sizes' /proc/cpuinfo
> > address sizes : 40 bits physical, 48 bits virtual
> > address sizes : 40 bits physical, 48 bits virtual
> > address sizes : 40 bits physical, 48 bits virtual
> > address sizes : 40 bits physical, 48 bits virtual
>
> And, in the logs you attached (and thank yoou for those), we see:
>
> > GetFirstNonAddress: Pci64Base=0x10000000000 Pci64Size=0x10000000000
> > [...]
> > PublishPeiMemory: mPhysMemAddressWidth=41 PeiMemoryCap=73748 KB
>
> This means that you need *41* physical address bits, not 40. The highest
> inclusive address in the aperture is 0x1FF_FFFF_FFFF, which needs 41 bits
> for representation.
>
> The reason for setting Pci64Base to 1TB is given in the following, in the
> GetFirstNonAddress() function [OvmfPkg/PlatformPei/MemDetect.c]:
>
> > //
> > // The 64-bit PCI host aperture should also be "naturally" aligned.
> The
> > // alignment is determined by rounding the size of the aperture down
> to the
> > // next smaller or equal power of two. That is, align the aperture by
> the
> > // largest BAR size that can fit into it.
> > //
> > Pci64Base = ALIGN_VALUE (Pci64Base, GetPowerOfTwo64 (Pci64Size));
>
> (You can read more about this calculation in
> <https://bugzilla.redhat.com/show_bug.cgi?id=1353591#c8>, in particular
> under point (6).)
>
> Looking further at the log, at least one BAR is indeed mapped at 1TB (that
> is, outside of the GPA range that your host can work with):
>
> > Type = Mem64; Base = 0x10000000000; Length = 0x100000;
> Alignment = 0xFFFFF
> > Base = 0x10000000000; Length = 0x4000; Alignment = 0x3FFF;
> Owner = PCI [00|04|00:20]; Type = PMem64
>
> I would suggest retesting on appropriate hardware (41+ phys addr bits), or
> else decreasing "opt/ovmf/X-PciMmio64Mb", until the OVMF debug log
> confirms that "mPhysMemAddressWidth" is 40, or less. If the iPXE oprom
> crashes in that case too, then that would strongly suggest a problem in it.
>
> Thanks,
> Laszlo
I retest it with a CPU which have 46 physical address bit and it works well with 1TB aperture,
so it is sure that the inappropriate CPU I used lead to this question.
BTW, it seems that the OVMF boots successfully with 40 phys addr bits CPUs if I prevent QEMU from
loading iPXE rom. I'm curious about why it works well(at least no problem in the booting stage)
without the iPXE rom.
Anyway, thank you for your nice explanation very much.
Thanks,
Wu Zongyong
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: A VM failed to boot when I changed the gUefiOvmfPkgTokenSpaceGuid.PcdPciMmio64Size
2019-01-24 9:25 ` Wuzongyong (Euler Dept)
@ 2019-01-24 11:28 ` Laszlo Ersek
0 siblings, 0 replies; 6+ messages in thread
From: Laszlo Ersek @ 2019-01-24 11:28 UTC (permalink / raw)
To: Wuzongyong (Euler Dept)
Cc: edk2-devel@lists.01.org, chenlixin, Wanzongshun (Vincent),
Alex Williamson, Gerd Hoffmann, Dr. David Alan Gilbert
On 01/24/19 10:25, Wuzongyong (Euler Dept) wrote:
>>>> (1) Either way, if you'd like to check whether this issue is specific
>>>> to the iPXE option ROM, you could prevent QEMU from loading the ROM
>>>> image into the NIC's ROM BAR, and retest. The QEMU option for that is
>>>>
>>>> -device virtio-net-pci,[some properties,]romfile=''
>>>>
>>>> The corresponging domain XML element is
>>>>
>>>> <interface type='network'>
>>>> <rom enabled='no'/>
>>>> </interface>
>>>>
>>>> In this case, virtio-net NICs will be bound by OVMF's built-in
>>>> virtio-net driver (OvmfPkg/VirtioNetDxe).
>>>>
>>> The problem goes away indeed if I prevent QEMU from loading the ROM
>>> image as your guide. So is this problem related to the iPXE option
>>> ROM?
>>
>> While it would seem so, I wouldn't claim that just yet, because:
>>
>>> The physical address bits of CPUs I use is 40.
>>>
>>> host:/home/wzy # grep 'address sizes' /proc/cpuinfo
>>> address sizes : 40 bits physical, 48 bits virtual
>>> address sizes : 40 bits physical, 48 bits virtual
>>> address sizes : 40 bits physical, 48 bits virtual
>>> address sizes : 40 bits physical, 48 bits virtual
>>
>> And, in the logs you attached (and thank yoou for those), we see:
>>
>>> GetFirstNonAddress: Pci64Base=0x10000000000 Pci64Size=0x10000000000
>>> [...]
>>> PublishPeiMemory: mPhysMemAddressWidth=41 PeiMemoryCap=73748 KB
>>
>> This means that you need *41* physical address bits, not 40. The highest
>> inclusive address in the aperture is 0x1FF_FFFF_FFFF, which needs 41 bits
>> for representation.
>>
>> The reason for setting Pci64Base to 1TB is given in the following, in the
>> GetFirstNonAddress() function [OvmfPkg/PlatformPei/MemDetect.c]:
>>
>>> //
>>> // The 64-bit PCI host aperture should also be "naturally" aligned.
>> The
>>> // alignment is determined by rounding the size of the aperture down
>> to the
>>> // next smaller or equal power of two. That is, align the aperture by
>> the
>>> // largest BAR size that can fit into it.
>>> //
>>> Pci64Base = ALIGN_VALUE (Pci64Base, GetPowerOfTwo64 (Pci64Size));
>>
>> (You can read more about this calculation in
>> <https://bugzilla.redhat.com/show_bug.cgi?id=1353591#c8>, in particular
>> under point (6).)
>>
>> Looking further at the log, at least one BAR is indeed mapped at 1TB (that
>> is, outside of the GPA range that your host can work with):
>>
>>> Type = Mem64; Base = 0x10000000000; Length = 0x100000;
>> Alignment = 0xFFFFF
>>> Base = 0x10000000000; Length = 0x4000; Alignment = 0x3FFF;
>> Owner = PCI [00|04|00:20]; Type = PMem64
>>
>> I would suggest retesting on appropriate hardware (41+ phys addr bits), or
>> else decreasing "opt/ovmf/X-PciMmio64Mb", until the OVMF debug log
>> confirms that "mPhysMemAddressWidth" is 40, or less. If the iPXE oprom
>> crashes in that case too, then that would strongly suggest a problem in it.
>>
>> Thanks,
>> Laszlo
>
> I retest it with a CPU which have 46 physical address bit and it works well with 1TB aperture,
> so it is sure that the inappropriate CPU I used lead to this question.
>
> BTW, it seems that the OVMF boots successfully with 40 phys addr bits CPUs if I prevent QEMU from
> loading iPXE rom. I'm curious about why it works well(at least no problem in the booting stage)
> without the iPXE rom.
That's a good question; perhaps iPXE touches those high GPAs for some
reason. I think we'd have to rebuild the oprom with detailed debug logs
enabled to see more.
Thanks
Laszlo
> Anyway, thank you for your nice explanation very much.
>
> Thanks,
> Wu Zongyong
>
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2019-01-24 11:28 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-01-23 11:40 A VM failed to boot when I changed the gUefiOvmfPkgTokenSpaceGuid.PcdPciMmio64Size Wuzongyong (Euler Dept)
2019-01-23 15:57 ` Laszlo Ersek
2019-01-24 2:35 ` Wuzongyong (Euler Dept)
2019-01-24 8:21 ` Laszlo Ersek
2019-01-24 9:25 ` Wuzongyong (Euler Dept)
2019-01-24 11:28 ` Laszlo Ersek
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox