├── .azurepipelines ├── ReadMe.md ├── Ubuntu-GCC5.yml ├── Ubuntu-PatchCheck.yml ├── Windows-VS2019.yml └── templates │ ├── ReadMe.md │ ├── basetools-build-steps.yml │ ├── platform-build-run-steps.yml │ ├── pr-gate-build-job.yml │ ├── pr-gate-steps.yml │ └── spell-check-prereq-steps.yml ├── .gitignore ├── .gitmodules ├── .mailmap ├── .mergify └── config.yml ├── .pytool ├── CISettings.py ├── Plugin │ ├── CharEncodingCheck │ │ ├── CharEncodingCheck.py │ │ ├── CharEncodingCheck_plug_in.yaml │ │ └── Readme.md │ ├── CompilerPlugin │ │ ├── CompilerPlugin.py │ │ ├── Compiler_plug_in.yaml │ │ └── Readme.md │ ├── DependencyCheck │ │ ├── DependencyCheck.py │ │ ├── DependencyCheck_plug_in.yaml │ │ └── Readme.md │ ├── DscCompleteCheck │ │ ├── DscCompleteCheck.py │ │ ├── DscCompleteCheck_plug_in.yaml │ │ └── Readme.md │ ├── EccCheck │ │ ├── EccCheck.py │ │ ├── EccCheck_plug_in.yaml │ │ └── Readme.md │ ├── GuidCheck │ │ ├── GuidCheck.py │ │ ├── GuidCheck_plug_in.yaml │ │ └── Readme.md │ ├── HostUnitTestCompilerPlugin │ │ ├── HostUnitTestCompilerPlugin.py │ │ ├── HostUnitTestCompiler_plug_in.yaml │ │ └── Readme.md │ ├── HostUnitTestDscCompleteCheck │ │ ├── HostUnitTestDscCompleteCheck.py │ │ ├── HostUnitTestDscCompleteCheck_plug_in.yaml │ │ └── Readme.md │ ├── LibraryClassCheck │ │ ├── LibraryClassCheck.py │ │ ├── LibraryClassCheck_plug_in.yaml │ │ └── Readme.md │ ├── LicenseCheck │ │ ├── LicenseCheck.py │ │ ├── LicenseCheck_plug_in.yaml │ │ └── Readme.md │ └── SpellCheck │ │ ├── Readme.md │ │ ├── SpellCheck.py │ │ ├── SpellCheck_plug_in.yaml │ │ └── cspell.base.yaml └── Readme.md ├── ArmPkg ├── ArmPkg.dec ├── ArmPkg.dsc ├── Drivers │ ├── ArmCrashDumpDxe │ │ ├── ArmCrashDumpDxe.c │ │ ├── ArmCrashDumpDxe.dsc │ │ └── ArmCrashDumpDxe.inf │ ├── ArmGic │ │ ├── ArmGicCommonDxe.c │ │ ├── ArmGicDxe.c │ │ ├── ArmGicDxe.h │ │ ├── ArmGicDxe.inf │ │ ├── ArmGicLib.c │ │ ├── ArmGicLib.inf │ │ ├── ArmGicNonSecLib.c │ │ ├── ArmGicSecLib.c │ │ ├── GicV2 │ │ │ ├── ArmGicV2Dxe.c │ │ │ ├── ArmGicV2Lib.c │ │ │ └── ArmGicV2NonSecLib.c │ │ └── GicV3 │ │ │ ├── AArch64 │ │ │ └── ArmGicV3.S │ │ │ ├── Arm │ │ │ ├── ArmGicV3.S │ │ │ └── ArmGicV3.asm │ │ │ └── ArmGicV3Dxe.c │ ├── ArmPciCpuIo2Dxe │ │ ├── ArmPciCpuIo2Dxe.c │ │ └── ArmPciCpuIo2Dxe.inf │ ├── ArmScmiDxe │ │ ├── ArmScmiBaseProtocolPrivate.h │ │ ├── ArmScmiClockProtocolPrivate.h │ │ ├── ArmScmiDxe.inf │ │ ├── ArmScmiPerformanceProtocolPrivate.h │ │ ├── Scmi.c │ │ ├── ScmiBaseProtocol.c │ │ ├── ScmiClockProtocol.c │ │ ├── ScmiDxe.c │ │ ├── ScmiDxe.h │ │ ├── ScmiPerformanceProtocol.c │ │ └── ScmiPrivate.h │ ├── CpuDxe │ │ ├── AArch64 │ │ │ └── Mmu.c │ │ ├── Arm │ │ │ └── Mmu.c │ │ ├── CpuDxe.c │ │ ├── CpuDxe.h │ │ ├── CpuDxe.inf │ │ ├── CpuMmuCommon.c │ │ ├── CpuMpCore.c │ │ └── Exception.c │ ├── CpuPei │ │ ├── CpuPei.c │ │ └── CpuPei.inf │ ├── GenericWatchdogDxe │ │ ├── GenericWatchdog.h │ │ ├── GenericWatchdogDxe.c │ │ └── GenericWatchdogDxe.inf │ ├── MmCommunicationDxe │ │ ├── MmCommunicate.h │ │ ├── MmCommunication.c │ │ └── MmCommunication.inf │ └── TimerDxe │ │ ├── TimerDxe.c │ │ └── TimerDxe.inf ├── Filesystem │ └── SemihostFs │ │ ├── Arm │ │ ├── SemihostFs.c │ │ └── SemihostFs.h │ │ └── SemihostFs.inf ├── Include │ ├── AsmMacroExport.inc │ ├── AsmMacroIoLib.h │ ├── AsmMacroIoLib.inc │ ├── AsmMacroIoLibV8.h │ ├── Chipset │ │ ├── AArch64.h │ │ ├── AArch64Mmu.h │ │ ├── ArmCortexA5x.h │ │ ├── ArmCortexA9.h │ │ ├── ArmV7.h │ │ └── ArmV7Mmu.h │ ├── Guid │ │ └── ArmMpCoreInfo.h │ ├── IndustryStandard │ │ ├── ArmMmSvc.h │ │ └── ArmStdSmc.h │ ├── Library │ │ ├── ArmDisassemblerLib.h │ │ ├── ArmGenericTimerCounterLib.h │ │ ├── ArmGicArchLib.h │ │ ├── ArmGicLib.h │ │ ├── ArmHvcLib.h │ │ ├── ArmLib.h │ │ ├── ArmMmuLib.h │ │ ├── ArmMtlLib.h │ │ ├── ArmSmcLib.h │ │ ├── ArmSvcLib.h │ │ ├── DefaultExceptionHandlerLib.h │ │ ├── OpteeLib.h │ │ ├── SemihostLib.h │ │ └── StandaloneMmMmuLib.h │ ├── Ppi │ │ └── ArmMpCoreInfo.h │ └── Protocol │ │ ├── ArmScmi.h │ │ ├── ArmScmiBaseProtocol.h │ │ ├── ArmScmiClock2Protocol.h │ │ ├── ArmScmiClockProtocol.h │ │ └── ArmScmiPerformanceProtocol.h └── Library │ ├── ArmArchTimerLib │ ├── ArmArchTimerLib.c │ └── ArmArchTimerLib.inf │ ├── ArmCacheMaintenanceLib │ ├── ArmCacheMaintenanceLib.c │ └── ArmCacheMaintenanceLib.inf │ ├── ArmDisassemblerLib │ ├── Aarch64Disassembler.c │ ├── ArmDisassembler.c │ ├── ArmDisassemblerLib.inf │ └── ThumbDisassembler.c │ ├── ArmExceptionLib │ ├── AArch64 │ │ ├── AArch64Exception.c │ │ └── ExceptionSupport.S │ ├── Arm │ │ ├── ArmException.c │ │ ├── ExceptionSupport.S │ │ └── ExceptionSupport.asm │ ├── ArmExceptionLib.c │ ├── ArmExceptionLib.inf │ └── ArmRelocateExceptionLib.inf │ ├── ArmGenericTimerPhyCounterLib │ ├── ArmGenericTimerPhyCounterLib.c │ └── ArmGenericTimerPhyCounterLib.inf │ ├── ArmGenericTimerVirtCounterLib │ ├── ArmGenericTimerVirtCounterLib.c │ └── ArmGenericTimerVirtCounterLib.inf │ ├── ArmGicArchLib │ ├── AArch64 │ │ └── ArmGicArchLib.c │ ├── Arm │ │ └── ArmGicArchLib.c │ └── ArmGicArchLib.inf │ ├── ArmGicArchSecLib │ ├── AArch64 │ │ └── ArmGicArchLib.c │ ├── Arm │ │ └── ArmGicArchLib.c │ └── ArmGicArchSecLib.inf │ ├── ArmHvcLib │ ├── AArch64 │ │ └── ArmHvc.S │ ├── Arm │ │ ├── ArmHvc.S │ │ └── ArmHvc.asm │ └── ArmHvcLib.inf │ ├── ArmLib │ ├── AArch64 │ │ ├── AArch64ArchTimerSupport.S │ │ ├── AArch64Lib.c │ │ ├── AArch64Lib.h │ │ ├── AArch64Support.S │ │ ├── ArmLibSupport.S │ │ └── ArmLibSupportV8.S │ ├── Arm │ │ ├── ArmLibSupport.S │ │ ├── ArmLibSupport.asm │ │ ├── ArmLibSupportV7.S │ │ ├── ArmLibSupportV7.asm │ │ ├── ArmV7ArchTimerSupport.S │ │ ├── ArmV7ArchTimerSupport.asm │ │ ├── ArmV7Lib.c │ │ ├── ArmV7Lib.h │ │ ├── ArmV7Support.S │ │ └── ArmV7Support.asm │ ├── ArmBaseLib.inf │ ├── ArmLib.c │ └── ArmLibPrivate.h │ ├── ArmMmuLib │ ├── AArch64 │ │ ├── ArmMmuLibCore.c │ │ ├── ArmMmuLibReplaceEntry.S │ │ └── ArmMmuPeiLibConstructor.c │ ├── Arm │ │ ├── ArmMmuLibConvert.c │ │ ├── ArmMmuLibCore.c │ │ ├── ArmMmuLibUpdate.c │ │ ├── ArmMmuLibV7Support.S │ │ └── ArmMmuLibV7Support.asm │ ├── ArmMmuBaseLib.inf │ └── ArmMmuPeiLib.inf │ ├── ArmMtlNullLib │ ├── ArmMtlNullLib.c │ └── ArmMtlNullLib.inf │ ├── ArmPsciResetSystemLib │ ├── ArmPsciResetSystemLib.c │ └── ArmPsciResetSystemLib.inf │ ├── ArmSmcLib │ ├── AArch64 │ │ └── ArmSmc.S │ ├── Arm │ │ ├── ArmSmc.S │ │ └── ArmSmc.asm │ └── ArmSmcLib.inf │ ├── ArmSmcLibNull │ ├── ArmSmcLibNull.c │ └── ArmSmcLibNull.inf │ ├── ArmSmcPsciResetSystemLib │ ├── ArmSmcPsciResetSystemLib.c │ └── ArmSmcPsciResetSystemLib.inf │ ├── ArmSoftFloatLib │ ├── ArmSoftFloatLib.c │ ├── ArmSoftFloatLib.inf │ └── platform.h │ ├── ArmSvcLib │ ├── AArch64 │ │ └── ArmSvc.S │ ├── Arm │ │ ├── ArmSvc.S │ │ └── ArmSvc.asm │ └── ArmSvcLib.inf │ ├── CompilerIntrinsicsLib │ ├── AArch64 │ │ └── Atomics.S │ ├── Arm │ │ ├── ashldi3.S │ │ ├── ashrdi3.S │ │ ├── clzsi2.S │ │ ├── ctzsi2.S │ │ ├── div.S │ │ ├── div.asm │ │ ├── divdi3.S │ │ ├── divsi3.S │ │ ├── lasr.S │ │ ├── lasr.asm │ │ ├── ldivmod.S │ │ ├── ldivmod.asm │ │ ├── llsl.S │ │ ├── llsl.asm │ │ ├── llsr.S │ │ ├── llsr.asm │ │ ├── lshrdi3.S │ │ ├── memmove.S │ │ ├── memmove.asm │ │ ├── moddi3.S │ │ ├── modsi3.S │ │ ├── muldi3.S │ │ ├── mullu.S │ │ ├── mullu.asm │ │ ├── sourcery.S │ │ ├── switch.asm │ │ ├── switch16.S │ │ ├── switch32.S │ │ ├── switch8.S │ │ ├── switchu8.S │ │ ├── ucmpdi2.S │ │ ├── udivdi3.S │ │ ├── udivmoddi4.S │ │ ├── udivsi3.S │ │ ├── uldiv.S │ │ ├── uldiv.asm │ │ ├── umoddi3.S │ │ ├── umodsi3.S │ │ ├── uread.S │ │ ├── uread.asm │ │ ├── uwrite.S │ │ └── uwrite.asm │ ├── CompilerIntrinsicsLib.inf │ ├── memcmp_ms.c │ ├── memcpy.c │ ├── memcpy_ms.c │ ├── memmove_ms.c │ ├── memset.c │ └── memset_ms.c │ ├── DebugAgentSymbolsBaseLib │ ├── DebugAgentSymbolsBaseLib.c │ └── DebugAgentSymbolsBaseLib.inf │ ├── DebugPeCoffExtraActionLib │ ├── DebugPeCoffExtraActionLib.c │ └── DebugPeCoffExtraActionLib.inf │ ├── DefaultExceptionHandlerLib │ ├── AArch64 │ │ └── DefaultExceptionHandler.c │ ├── Arm │ │ └── DefaultExceptionHandler.c │ ├── DefaultExceptionHandlerLib.inf │ └── DefaultExceptionHandlerUefi.c │ ├── GccLto │ ├── liblto-aarch64.a │ ├── liblto-aarch64.s │ ├── liblto-arm.a │ └── liblto-arm.s │ ├── OpteeLib │ ├── Optee.c │ ├── OpteeLib.inf │ └── OpteeSmc.h │ ├── PeiServicesTablePointerLib │ ├── PeiServicesTablePointer.c │ └── PeiServicesTablePointerLib.inf │ ├── PlatformBootManagerLib │ ├── PlatformBm.c │ ├── PlatformBm.h │ └── PlatformBootManagerLib.inf │ ├── RvdPeCoffExtraActionLib │ ├── RvdPeCoffExtraActionLib.c │ └── RvdPeCoffExtraActionLib.inf │ ├── SemiHostingDebugLib │ ├── DebugLib.c │ └── SemiHostingDebugLib.inf │ ├── SemiHostingSerialPortLib │ ├── SemiHostingSerialPortLib.inf │ └── SerialPortLib.c │ ├── SemihostLib │ ├── AArch64 │ │ └── GccSemihost.S │ ├── Arm │ │ └── GccSemihost.S │ ├── SemihostLib.c │ ├── SemihostLib.inf │ └── SemihostPrivate.h │ └── StandaloneMmMmuLib │ ├── AArch64 │ └── ArmMmuStandaloneMmLib.c │ └── ArmMmuStandaloneMmLib.inf ├── ArmPlatformPkg ├── ArmPlatformPkg.dec ├── ArmPlatformPkg.dsc ├── Drivers │ ├── LcdGraphicsOutputDxe │ │ ├── LcdGraphicsOutputBlt.c │ │ ├── LcdGraphicsOutputDxe.c │ │ ├── LcdGraphicsOutputDxe.h │ │ └── LcdGraphicsOutputDxe.inf │ ├── NorFlashDxe │ │ ├── NorFlashBlockIoDxe.c │ │ ├── NorFlashDxe.c │ │ ├── NorFlashDxe.h │ │ ├── NorFlashDxe.inf │ │ └── NorFlashFvbDxe.c │ ├── PL061GpioDxe │ │ ├── PL061Gpio.c │ │ ├── PL061Gpio.h │ │ └── PL061GpioDxe.inf │ └── SP805WatchdogDxe │ │ ├── SP805Watchdog.c │ │ ├── SP805Watchdog.h │ │ └── SP805WatchdogDxe.inf ├── Include │ └── Library │ │ ├── ArmPlatformLib.h │ │ ├── LcdHwLib.h │ │ ├── LcdPlatformLib.h │ │ ├── NorFlashPlatformLib.h │ │ ├── PL011UartClockLib.h │ │ └── PL011UartLib.h ├── Library │ ├── ArmMaliDp │ │ ├── ArmMaliDp.c │ │ ├── ArmMaliDp.h │ │ └── ArmMaliDp.inf │ ├── ArmPlatformLibNull │ │ ├── AArch64 │ │ │ └── ArmPlatformHelper.S │ │ ├── Arm │ │ │ ├── ArmPlatformHelper.S │ │ │ └── ArmPlatformHelper.asm │ │ ├── ArmPlatformLibNull.c │ │ ├── ArmPlatformLibNull.inf │ │ └── ArmPlatformLibNullMem.c │ ├── ArmPlatformStackLib │ │ ├── AArch64 │ │ │ └── ArmPlatformStackLib.S │ │ ├── Arm │ │ │ ├── ArmPlatformStackLib.S │ │ │ └── ArmPlatformStackLib.asm │ │ └── ArmPlatformStackLib.inf │ ├── HdLcd │ │ ├── HdLcd.c │ │ ├── HdLcd.h │ │ └── HdLcd.inf │ ├── LcdHwNullLib │ │ ├── LcdHwNullLib.c │ │ └── LcdHwNullLib.inf │ ├── LcdPlatformNullLib │ │ ├── LcdPlatformNullLib.c │ │ └── LcdPlatformNullLib.inf │ ├── NorFlashPlatformNullLib │ │ ├── NorFlashPlatformNullLib.c │ │ └── NorFlashPlatformNullLib.inf │ ├── PL011SerialPortLib │ │ ├── PL011SerialPortLib.c │ │ └── PL011SerialPortLib.inf │ ├── PL011UartClockLib │ │ ├── PL011UartClockLib.c │ │ └── PL011UartClockLib.inf │ ├── PL011UartLib │ │ ├── PL011Uart.h │ │ ├── PL011UartLib.c │ │ └── PL011UartLib.inf │ ├── PL031RealTimeClockLib │ │ ├── PL031RealTimeClock.h │ │ ├── PL031RealTimeClockLib.c │ │ └── PL031RealTimeClockLib.inf │ ├── PL111Lcd │ │ ├── PL111Lcd.c │ │ ├── PL111Lcd.h │ │ └── PL111Lcd.inf │ └── PrePiHobListPointerLib │ │ ├── PrePiHobListPointer.c │ │ └── PrePiHobListPointerLib.inf ├── MemoryInitPei │ ├── MemoryInitPeiLib.c │ ├── MemoryInitPeiLib.inf │ ├── MemoryInitPeim.c │ └── MemoryInitPeim.inf ├── PlatformPei │ ├── PlatformPeiLib.c │ ├── PlatformPeiLib.inf │ ├── PlatformPeim.c │ └── PlatformPeim.inf ├── PrePeiCore │ ├── AArch64 │ │ ├── ArchPrePeiCore.c │ │ ├── Exception.S │ │ ├── Helper.S │ │ ├── PrePeiCoreEntryPoint.S │ │ └── SwitchStack.S │ ├── Arm │ │ ├── ArchPrePeiCore.c │ │ ├── Exception.S │ │ ├── Exception.asm │ │ ├── PrePeiCoreEntryPoint.S │ │ ├── PrePeiCoreEntryPoint.asm │ │ ├── SwitchStack.S │ │ └── SwitchStack.asm │ ├── MainMPCore.c │ ├── MainUniCore.c │ ├── PrePeiCore.c │ ├── PrePeiCore.h │ ├── PrePeiCoreMPCore.inf │ └── PrePeiCoreUniCore.inf ├── PrePi │ ├── AArch64 │ │ ├── ArchPrePi.c │ │ └── ModuleEntryPoint.S │ ├── Arm │ │ ├── ArchPrePi.c │ │ ├── ModuleEntryPoint.S │ │ └── ModuleEntryPoint.asm │ ├── MainMPCore.c │ ├── MainUniCore.c │ ├── PeiMPCore.inf │ ├── PeiUniCore.inf │ ├── PrePi.c │ └── PrePi.h └── Scripts │ ├── Ds5 │ ├── build_report.py │ ├── cmd_load_symbols.py │ ├── edk2_debugger.py │ ├── firmware_volume.py │ ├── profile.py │ └── system_table.py │ └── Makefile ├── ArmVirtPkg ├── ArmVirt.dsc.inc ├── ArmVirtKvmTool.dsc ├── ArmVirtKvmTool.fdf ├── ArmVirtPkg.ci.yaml ├── ArmVirtPkg.dec ├── ArmVirtQemu.dsc ├── ArmVirtQemu.fdf ├── ArmVirtQemuFvMain.fdf.inc ├── ArmVirtQemuKernel.dsc ├── ArmVirtQemuKernel.fdf ├── ArmVirtRules.fdf.inc ├── ArmVirtXen.dsc ├── ArmVirtXen.fdf ├── FdtClientDxe │ ├── FdtClientDxe.c │ └── FdtClientDxe.inf ├── HighMemDxe │ ├── HighMemDxe.c │ └── HighMemDxe.inf ├── Include │ ├── Guid │ │ ├── Early16550UartBaseAddress.h │ │ └── EarlyPL011BaseAddress.h │ ├── Library │ │ └── ArmVirtMemInfoLib.h │ └── Protocol │ │ └── FdtClient.h ├── KvmtoolPlatformDxe │ ├── KvmtoolPlatformDxe.c │ └── KvmtoolPlatformDxe.inf ├── Library │ ├── ArmVirtDxeHobLib │ │ ├── ArmVirtDxeHobLib.inf │ │ └── HobLib.c │ ├── ArmVirtGicArchLib │ │ ├── ArmVirtGicArchLib.c │ │ └── ArmVirtGicArchLib.inf │ ├── ArmVirtMemoryInitPeiLib │ │ ├── ArmVirtMemoryInitPeiLib.c │ │ └── ArmVirtMemoryInitPeiLib.inf │ ├── ArmVirtPL031FdtClientLib │ │ ├── ArmVirtPL031FdtClientLib.c │ │ └── ArmVirtPL031FdtClientLib.inf │ ├── ArmVirtPsciResetSystemLib │ │ ├── ArmVirtPsciResetSystemLib.c │ │ └── ArmVirtPsciResetSystemLib.inf │ ├── ArmVirtPsciResetSystemPeiLib │ │ ├── ArmVirtPsciResetSystemPeiLib.c │ │ └── ArmVirtPsciResetSystemPeiLib.inf │ ├── ArmVirtTimerFdtClientLib │ │ ├── ArmVirtTimerFdtClientLib.c │ │ └── ArmVirtTimerFdtClientLib.inf │ ├── BaseCachingPciExpressLib │ │ ├── BaseCachingPciExpressLib.inf │ │ └── PciExpressLib.c │ ├── Fdt16550SerialPortHookLib │ │ ├── EarlyFdt16550SerialPortHookLib.c │ │ ├── EarlyFdt16550SerialPortHookLib.inf │ │ ├── Fdt16550SerialPortHookLib.c │ │ ├── Fdt16550SerialPortHookLib.inf │ │ └── Fdt16550SerialPortHookLib.uni │ ├── FdtPL011SerialPortLib │ │ ├── EarlyFdtPL011SerialPortLib.c │ │ ├── EarlyFdtPL011SerialPortLib.inf │ │ ├── FdtPL011SerialPortLib.c │ │ └── FdtPL011SerialPortLib.inf │ ├── FdtPciHostBridgeLib │ │ ├── FdtPciHostBridgeLib.c │ │ └── FdtPciHostBridgeLib.inf │ ├── FdtPciPcdProducerLib │ │ ├── FdtPciPcdProducerLib.c │ │ └── FdtPciPcdProducerLib.inf │ ├── KvmtoolPlatformPeiLib │ │ ├── KvmtoolPlatformPeiLib.c │ │ └── KvmtoolPlatformPeiLib.inf │ ├── KvmtoolRtcFdtClientLib │ │ ├── KvmtoolRtcFdtClientLib.c │ │ └── KvmtoolRtcFdtClientLib.inf │ ├── KvmtoolVirtMemInfoLib │ │ ├── KvmtoolVirtMemInfoLib.c │ │ └── KvmtoolVirtMemInfoLib.inf │ ├── NorFlashKvmtoolLib │ │ ├── NorFlashKvmtool.c │ │ └── NorFlashKvmtoolLib.inf │ ├── NorFlashQemuLib │ │ ├── NorFlashQemuLib.c │ │ └── NorFlashQemuLib.inf │ ├── PlatformBootManagerLib │ │ ├── PlatformBm.c │ │ ├── PlatformBm.h │ │ ├── PlatformBootManagerLib.inf │ │ └── QemuKernel.c │ ├── PlatformPeiLib │ │ ├── PlatformPeiLib.c │ │ └── PlatformPeiLib.inf │ ├── QemuFwCfgLib │ │ ├── QemuFwCfgLib.c │ │ └── QemuFwCfgLib.inf │ ├── QemuVirtMemInfoLib │ │ ├── QemuVirtMemInfoLib.c │ │ ├── QemuVirtMemInfoLib.inf │ │ ├── QemuVirtMemInfoPeiLib.inf │ │ └── QemuVirtMemInfoPeiLibConstructor.c │ ├── XenArmGenericTimerVirtCounterLib │ │ ├── XenArmGenericTimerVirtCounterLib.c │ │ └── XenArmGenericTimerVirtCounterLib.inf │ └── XenVirtMemInfoLib │ │ ├── XenVirtMemInfoLib.c │ │ └── XenVirtMemInfoLib.inf ├── PlatformCI │ ├── .azurepipelines │ │ └── Ubuntu-GCC5.yml │ ├── PlatformBuild.py │ ├── ReadMe.md │ └── iasl_ext_dep.yaml ├── PlatformHasAcpiDtDxe │ ├── PlatformHasAcpiDtDxe.c │ └── PlatformHasAcpiDtDxe.inf ├── PrePi │ ├── AArch64 │ │ ├── ArchPrePi.c │ │ └── ModuleEntryPoint.S │ ├── Arm │ │ ├── ArchPrePi.c │ │ └── ModuleEntryPoint.S │ ├── ArmVirtPrePiUniCoreRelocatable.inf │ ├── FdtParser.c │ ├── PrePi.c │ └── PrePi.h ├── VarStore.fdf.inc ├── VirtioFdtDxe │ ├── VirtioFdtDxe.c │ └── VirtioFdtDxe.inf ├── XenAcpiPlatformDxe │ ├── XenAcpiPlatformDxe.c │ └── XenAcpiPlatformDxe.inf ├── XenPlatformHasAcpiDtDxe │ ├── XenPlatformHasAcpiDtDxe.c │ └── XenPlatformHasAcpiDtDxe.inf └── XenioFdtDxe │ ├── XenioFdtDxe.c │ └── XenioFdtDxe.inf ├── BaseTools ├── .gitignore ├── Bin │ ├── CYGWIN_NT-5.1-i686 │ │ ├── BootSectImage │ │ ├── BuildEnv │ │ ├── Ecc │ │ ├── EfiLdrImage │ │ ├── EfiRom │ │ ├── GenCrc32 │ │ ├── GenDepex │ │ ├── GenFds │ │ ├── GenFfs │ │ ├── GenFv │ │ ├── GenFw │ │ ├── GenPage │ │ ├── GenSec │ │ ├── GenVtf │ │ ├── GnuGenBootSector │ │ ├── LzmaCompress │ │ ├── LzmaF86Compress │ │ ├── RunBinToolFromBuildDir │ │ ├── RunToolFromSource │ │ ├── Split │ │ ├── TargetTool │ │ ├── TianoCompress │ │ ├── Trim │ │ ├── VfrCompile │ │ ├── VolInfo │ │ ├── armcc_wrapper.py │ │ └── build │ ├── Darwin-i386 │ │ └── Arm │ │ │ ├── DEBUG_XCODE31 │ │ │ └── CompilerIntrinsicsLib.lib │ │ │ ├── DEBUG_XCODE32 │ │ │ └── CompilerIntrinsicsLib.lib │ │ │ ├── RELEASE_XCODE31 │ │ │ └── CompilerIntrinsicsLib.lib │ │ │ └── RELEASE_XCODE32 │ │ │ └── CompilerIntrinsicsLib.lib │ ├── gcc_aarch64_linux_ext_dep.yaml │ ├── gcc_arm_linux_ext_dep.yaml │ ├── gcc_riscv64_unknown_ext_dep.yaml │ ├── iasl_ext_dep.yaml │ └── nasm_ext_dep.yaml ├── BinWrappers │ ├── PosixLike │ │ ├── AmlToC │ │ ├── BPDG │ │ ├── Brotli │ │ ├── BrotliCompress │ │ ├── DevicePath │ │ ├── Ecc │ │ ├── EfiRom │ │ ├── GenCrc32 │ │ ├── GenDepex │ │ ├── GenFds │ │ ├── GenFfs │ │ ├── GenFv │ │ ├── GenFw │ │ ├── GenPatchPcdTable │ │ ├── GenSec │ │ ├── GenerateCapsule │ │ ├── LzmaCompress │ │ ├── LzmaF86Compress │ │ ├── PatchPcdValue │ │ ├── Pkcs7Sign │ │ ├── Rsa2048Sha256GenerateKeys │ │ ├── Rsa2048Sha256Sign │ │ ├── Split │ │ ├── TargetTool │ │ ├── TianoCompress │ │ ├── Trim │ │ ├── UPT │ │ ├── VfrCompile │ │ ├── VolInfo │ │ ├── build │ │ └── posix_path_env.yaml │ └── WindowsLike │ │ ├── AmlToC.bat │ │ ├── BPDG.bat │ │ ├── Ecc.bat │ │ ├── GenDepex.bat │ │ ├── GenFds.bat │ │ ├── GenPatchPcdTable.bat │ │ ├── GenerateCapsule.bat │ │ ├── PatchPcdValue.bat │ │ ├── Pkcs7Sign.bat │ │ ├── Rsa2048Sha256GenerateKeys.bat │ │ ├── Rsa2048Sha256Sign.bat │ │ ├── TargetTool.bat │ │ ├── Trim.bat │ │ ├── UPT.bat │ │ ├── build.bat │ │ └── win_build_tools_path_env.yaml ├── BuildEnv ├── Conf │ ├── Empty_Package_Information_Data_File.ini │ ├── ReadMe.txt │ ├── XMLSchema │ │ └── DistributionPackage.xsd │ ├── build_rule.template │ ├── diff.order │ ├── gitattributes │ ├── target.template │ └── tools_def.template ├── Edk2ToolsBuild.py ├── GNUmakefile ├── Makefile ├── Plugin │ ├── BuildToolsReport │ │ ├── BuildToolsReportGenerator.py │ │ ├── BuildToolsReportGenerator_plug_in.yaml │ │ └── BuildToolsReport_Template.html │ ├── HostBasedUnitTestRunner │ │ ├── HostBasedUnitTestRunner.py │ │ └── HostBasedUnitTestRunner_plug_in.yaml │ ├── LinuxGcc5ToolChain │ │ ├── LinuxGcc5ToolChain.py │ │ └── LinuxGcc5ToolChain_plug_in.yaml │ ├── WindowsResourceCompiler │ │ ├── WinRcPath.py │ │ └── WinRcPath_plug_in.yaml │ └── WindowsVsToolChain │ │ ├── WindowsVsToolChain.py │ │ └── WindowsVsToolChain_plug_in.yaml ├── ReadMe.rst ├── Scripts │ ├── BinToPcd.py │ ├── ConvertFceToStructurePcd.py │ ├── ConvertMasmToNasm.py │ ├── ConvertUni.py │ ├── DetectNotUsedItem.py │ ├── FormatDosFiles.py │ ├── GccBase.lds │ ├── GetMaintainer.py │ ├── GetUtcDateTime.py │ ├── MemoryProfileSymbolGen.py │ ├── PackageDocumentTools │ │ ├── Readme.md │ │ ├── __init__.py │ │ ├── packagedoc_cli.py │ │ ├── packagedocapp.pyw │ │ └── plugins │ │ │ ├── EdkPlugins │ │ │ ├── __init__.py │ │ │ ├── basemodel │ │ │ │ ├── __init__.py │ │ │ │ ├── doxygen.py │ │ │ │ ├── efibinary.py │ │ │ │ ├── ini.py │ │ │ │ ├── inidocview.py │ │ │ │ └── message.py │ │ │ └── edk2 │ │ │ │ ├── __init__.py │ │ │ │ └── model │ │ │ │ ├── __init__.py │ │ │ │ ├── baseobject.py │ │ │ │ ├── dec.py │ │ │ │ ├── doxygengen.py │ │ │ │ ├── doxygengen_spec.py │ │ │ │ ├── dsc.py │ │ │ │ └── inf.py │ │ │ └── __init__.py │ ├── PatchCheck.py │ ├── RunMakefile.py │ ├── RunMakefileSample.mak │ ├── Rvct-Align32.sct │ ├── Rvct-Align4K.sct │ ├── SetVisualStudio.bat │ ├── SetupGit.py │ ├── ShowEnvironment.bat │ ├── SmiHandlerProfileSymbolGen.py │ └── UpdateBuildVersions.py ├── Source │ ├── C │ │ ├── BrotliCompress │ │ │ ├── BrotliCompress.c │ │ │ ├── GNUmakefile │ │ │ └── Makefile │ │ ├── Common │ │ │ ├── BasePeCoff.c │ │ │ ├── BinderFuncs.c │ │ │ ├── BinderFuncs.h │ │ │ ├── CommonLib.c │ │ │ ├── CommonLib.h │ │ │ ├── Compress.h │ │ │ ├── Crc32.c │ │ │ ├── Crc32.h │ │ │ ├── Decompress.c │ │ │ ├── Decompress.h │ │ │ ├── EfiCompress.c │ │ │ ├── EfiUtilityMsgs.c │ │ │ ├── EfiUtilityMsgs.h │ │ │ ├── FirmwareVolumeBuffer.c │ │ │ ├── FirmwareVolumeBufferLib.h │ │ │ ├── FvLib.c │ │ │ ├── FvLib.h │ │ │ ├── GNUmakefile │ │ │ ├── Makefile │ │ │ ├── MemoryFile.c │ │ │ ├── MemoryFile.h │ │ │ ├── MyAlloc.c │ │ │ ├── MyAlloc.h │ │ │ ├── OsPath.c │ │ │ ├── OsPath.h │ │ │ ├── ParseGuidedSectionTools.c │ │ │ ├── ParseGuidedSectionTools.h │ │ │ ├── ParseInf.c │ │ │ ├── ParseInf.h │ │ │ ├── PcdValueCommon.c │ │ │ ├── PcdValueCommon.h │ │ │ ├── PeCoffLib.h │ │ │ ├── PeCoffLoaderEx.c │ │ │ ├── SimpleFileParsing.c │ │ │ ├── SimpleFileParsing.h │ │ │ ├── StringFuncs.c │ │ │ ├── StringFuncs.h │ │ │ ├── TianoCompress.c │ │ │ └── WinNtInclude.h │ │ ├── DevicePath │ │ │ ├── DevicePath.c │ │ │ ├── DevicePathFromText.c │ │ │ ├── DevicePathUtilities.c │ │ │ ├── GNUmakefile │ │ │ ├── Makefile │ │ │ ├── UefiDevicePathLib.c │ │ │ └── UefiDevicePathLib.h │ │ ├── EfiRom │ │ │ ├── EfiRom.c │ │ │ ├── EfiRom.h │ │ │ ├── GNUmakefile │ │ │ └── Makefile │ │ ├── GNUmakefile │ │ ├── GenCrc32 │ │ │ ├── GNUmakefile │ │ │ ├── GenCrc32.c │ │ │ └── Makefile │ │ ├── GenFfs │ │ │ ├── GNUmakefile │ │ │ ├── GenFfs.c │ │ │ └── Makefile │ │ ├── GenFv │ │ │ ├── GNUmakefile │ │ │ ├── GenFv.c │ │ │ ├── GenFvInternalLib.c │ │ │ ├── GenFvInternalLib.h │ │ │ └── Makefile │ │ ├── GenFw │ │ │ ├── Elf32Convert.c │ │ │ ├── Elf32Convert.h │ │ │ ├── Elf64Convert.c │ │ │ ├── Elf64Convert.h │ │ │ ├── ElfConvert.c │ │ │ ├── ElfConvert.h │ │ │ ├── GNUmakefile │ │ │ ├── GenFw.c │ │ │ ├── GenFw.h │ │ │ ├── Makefile │ │ │ ├── elf32.h │ │ │ ├── elf64.h │ │ │ └── elf_common.h │ │ ├── GenSec │ │ │ ├── GNUmakefile │ │ │ ├── GenSec.c │ │ │ └── Makefile │ │ ├── Include │ │ │ ├── AArch64 │ │ │ │ └── ProcessorBind.h │ │ │ ├── Arm │ │ │ │ └── ProcessorBind.h │ │ │ ├── Common │ │ │ │ ├── BaseTypes.h │ │ │ │ ├── BuildVersion.h │ │ │ │ ├── MdeModuleHii.h │ │ │ │ ├── PiFirmwareFile.h │ │ │ │ ├── PiFirmwareVolume.h │ │ │ │ ├── UefiBaseTypes.h │ │ │ │ ├── UefiCapsule.h │ │ │ │ ├── UefiInternalFormRepresentation.h │ │ │ │ ├── UefiMultiPhase.h │ │ │ │ ├── VariableFormat.h │ │ │ │ └── WorkingBlockHeader.h │ │ │ ├── Guid │ │ │ │ ├── FfsSectionAlignmentPadding.h │ │ │ │ ├── PcAnsi.h │ │ │ │ └── PiFirmwareFileSystem.h │ │ │ ├── Ia32 │ │ │ │ └── ProcessorBind.h │ │ │ ├── IndustryStandard │ │ │ │ ├── Acpi.h │ │ │ │ ├── Acpi1_0.h │ │ │ │ ├── Acpi2_0.h │ │ │ │ ├── Acpi3_0.h │ │ │ │ ├── Bluetooth.h │ │ │ │ ├── EfiPci.h │ │ │ │ ├── MemoryMappedConfigurationSpaceAccessTable.h │ │ │ │ ├── PeImage.h │ │ │ │ ├── pci22.h │ │ │ │ ├── pci23.h │ │ │ │ └── pci30.h │ │ │ ├── Protocol │ │ │ │ ├── DevicePath.h │ │ │ │ ├── DevicePathUtilities.h │ │ │ │ ├── GraphicsOutput.h │ │ │ │ ├── GuidedSectionExtraction.h │ │ │ │ ├── HiiFramework.h │ │ │ │ └── UgaDraw.h │ │ │ ├── RiscV64 │ │ │ │ └── ProcessorBind.h │ │ │ └── X64 │ │ │ │ └── ProcessorBind.h │ │ ├── LzmaCompress │ │ │ ├── GNUmakefile │ │ │ ├── LZMA-SDK-README.txt │ │ │ ├── LzmaCompress.c │ │ │ ├── LzmaF86Compress.bat │ │ │ ├── Makefile │ │ │ └── Sdk │ │ │ │ ├── C │ │ │ │ ├── 7zFile.c │ │ │ │ ├── 7zFile.h │ │ │ │ ├── 7zStream.c │ │ │ │ ├── 7zTypes.h │ │ │ │ ├── 7zVersion.h │ │ │ │ ├── Alloc.c │ │ │ │ ├── Alloc.h │ │ │ │ ├── Bra.h │ │ │ │ ├── Bra86.c │ │ │ │ ├── Compiler.h │ │ │ │ ├── CpuArch.h │ │ │ │ ├── LzFind.c │ │ │ │ ├── LzFind.h │ │ │ │ ├── LzFindMt.c │ │ │ │ ├── LzFindMt.h │ │ │ │ ├── LzHash.h │ │ │ │ ├── LzmaDec.c │ │ │ │ ├── LzmaDec.h │ │ │ │ ├── LzmaEnc.c │ │ │ │ ├── LzmaEnc.h │ │ │ │ ├── Precomp.h │ │ │ │ ├── Threads.c │ │ │ │ └── Threads.h │ │ │ │ └── DOC │ │ │ │ ├── lzma-history.txt │ │ │ │ └── lzma-sdk.txt │ │ ├── Makefile │ │ ├── Makefiles │ │ │ ├── NmakeSubdirs.bat │ │ │ ├── NmakeSubdirs.py │ │ │ ├── app.makefile │ │ │ ├── footer.makefile │ │ │ ├── header.makefile │ │ │ ├── lib.makefile │ │ │ ├── ms.app │ │ │ ├── ms.common │ │ │ ├── ms.lib │ │ │ └── ms.rule │ │ ├── PyEfiCompressor │ │ │ ├── EfiCompressor.c │ │ │ ├── Makefile │ │ │ └── setup.py │ │ ├── Split │ │ │ ├── GNUmakefile │ │ │ ├── Makefile │ │ │ └── Split.c │ │ ├── TianoCompress │ │ │ ├── GNUmakefile │ │ │ ├── Makefile │ │ │ ├── TianoCompress.c │ │ │ └── TianoCompress.h │ │ ├── VfrCompile │ │ │ ├── EfiVfr.h │ │ │ ├── GNUmakefile │ │ │ ├── Makefile │ │ │ ├── Pccts │ │ │ │ ├── CHANGES_FROM_131.txt │ │ │ │ ├── CHANGES_FROM_133.txt │ │ │ │ ├── CHANGES_FROM_133_BEFORE_MR13.txt │ │ │ │ ├── CHANGES_SUMMARY.txt │ │ │ │ ├── KNOWN_PROBLEMS.txt │ │ │ │ ├── MPW_Read_Me │ │ │ │ ├── Makefile │ │ │ │ ├── NOTES.bcc │ │ │ │ ├── NOTES.msvc │ │ │ │ ├── README │ │ │ │ ├── RIGHTS │ │ │ │ ├── antlr │ │ │ │ │ ├── AntlrDDK.mak │ │ │ │ │ ├── AntlrMS.mak │ │ │ │ │ ├── AntlrPPC.mak │ │ │ │ │ ├── README │ │ │ │ │ ├── antlr.1 │ │ │ │ │ ├── antlr.c │ │ │ │ │ ├── antlr.g │ │ │ │ │ ├── antlr.r │ │ │ │ │ ├── antlr1.txt │ │ │ │ │ ├── bits.c │ │ │ │ │ ├── build.c │ │ │ │ │ ├── dumpcycles.c │ │ │ │ │ ├── dumpnode.c │ │ │ │ │ ├── egman.c │ │ │ │ │ ├── err.c │ │ │ │ │ ├── fcache.c │ │ │ │ │ ├── fset.c │ │ │ │ │ ├── fset2.c │ │ │ │ │ ├── gen.c │ │ │ │ │ ├── generic.h │ │ │ │ │ ├── globals.c │ │ │ │ │ ├── hash.c │ │ │ │ │ ├── hash.h │ │ │ │ │ ├── lex.c │ │ │ │ │ ├── main.c │ │ │ │ │ ├── makefile │ │ │ │ │ ├── makefile.cygwin │ │ │ │ │ ├── makefile1 │ │ │ │ │ ├── misc.c │ │ │ │ │ ├── mode.h │ │ │ │ │ ├── mrhoist.c │ │ │ │ │ ├── parser.dlg │ │ │ │ │ ├── pred.c │ │ │ │ │ ├── proto.h │ │ │ │ │ ├── scan.c │ │ │ │ │ ├── stdpccts.h │ │ │ │ │ ├── syn.h │ │ │ │ │ └── tokens.h │ │ │ │ ├── dlg │ │ │ │ │ ├── DlgDDK.mak │ │ │ │ │ ├── DlgMS.mak │ │ │ │ │ ├── DlgPPC.mak │ │ │ │ │ ├── automata.c │ │ │ │ │ ├── dlg.1 │ │ │ │ │ ├── dlg.h │ │ │ │ │ ├── dlg.r │ │ │ │ │ ├── dlg1.txt │ │ │ │ │ ├── dlg_a.c │ │ │ │ │ ├── dlg_p.c │ │ │ │ │ ├── dlg_p.g │ │ │ │ │ ├── err.c │ │ │ │ │ ├── main.c │ │ │ │ │ ├── makefile │ │ │ │ │ ├── makefile.cygwin │ │ │ │ │ ├── makefile1 │ │ │ │ │ ├── mode.h │ │ │ │ │ ├── output.c │ │ │ │ │ ├── parser.dlg │ │ │ │ │ ├── relabel.c │ │ │ │ │ ├── stdpccts.h │ │ │ │ │ ├── support.c │ │ │ │ │ └── tokens.h │ │ │ │ ├── h │ │ │ │ │ ├── AParser.cpp │ │ │ │ │ ├── AParser.h │ │ │ │ │ ├── ASTBase.cpp │ │ │ │ │ ├── ASTBase.h │ │ │ │ │ ├── ATokPtr.h │ │ │ │ │ ├── ATokPtrImpl.h │ │ │ │ │ ├── AToken.h │ │ │ │ │ ├── ATokenBuffer.cpp │ │ │ │ │ ├── ATokenBuffer.h │ │ │ │ │ ├── ATokenStream.h │ │ │ │ │ ├── BufFileInput.cpp │ │ │ │ │ ├── BufFileInput.h │ │ │ │ │ ├── DLG_stream_input.h │ │ │ │ │ ├── DLexer.h │ │ │ │ │ ├── DLexerBase.cpp │ │ │ │ │ ├── DLexerBase.h │ │ │ │ │ ├── PBlackBox.h │ │ │ │ │ ├── PCCTSAST.cpp │ │ │ │ │ ├── PCCTSAST.h │ │ │ │ │ ├── SList.h │ │ │ │ │ ├── antlr.h │ │ │ │ │ ├── ast.c │ │ │ │ │ ├── ast.h │ │ │ │ │ ├── charbuf.h │ │ │ │ │ ├── charptr.c │ │ │ │ │ ├── charptr.h │ │ │ │ │ ├── config.h │ │ │ │ │ ├── dlgauto.h │ │ │ │ │ ├── dlgdef.h │ │ │ │ │ ├── err.h │ │ │ │ │ ├── int.h │ │ │ │ │ ├── pccts_assert.h │ │ │ │ │ ├── pccts_iostream.h │ │ │ │ │ ├── pccts_istream.h │ │ │ │ │ ├── pccts_setjmp.h │ │ │ │ │ ├── pccts_stdarg.h │ │ │ │ │ ├── pccts_stdio.h │ │ │ │ │ ├── pccts_stdlib.h │ │ │ │ │ ├── pccts_string.h │ │ │ │ │ ├── pcctscfg.h │ │ │ │ │ ├── pcnames.bat │ │ │ │ │ └── slist.cpp │ │ │ │ ├── history.ps │ │ │ │ ├── history.txt │ │ │ │ ├── makefile.old │ │ │ │ └── support │ │ │ │ │ ├── genmk │ │ │ │ │ ├── genmk.c │ │ │ │ │ ├── genmk_old.c │ │ │ │ │ └── makefile │ │ │ │ │ ├── rexpr │ │ │ │ │ ├── makefile │ │ │ │ │ ├── rexpr.c │ │ │ │ │ ├── rexpr.h │ │ │ │ │ └── test.c │ │ │ │ │ ├── set │ │ │ │ │ ├── set.c │ │ │ │ │ └── set.h │ │ │ │ │ └── sym │ │ │ │ │ ├── sym.c │ │ │ │ │ └── template.h │ │ │ ├── VfrCompiler.cpp │ │ │ ├── VfrCompiler.h │ │ │ ├── VfrError.cpp │ │ │ ├── VfrError.h │ │ │ ├── VfrFormPkg.cpp │ │ │ ├── VfrFormPkg.h │ │ │ ├── VfrSyntax.g │ │ │ ├── VfrUtilityLib.cpp │ │ │ └── VfrUtilityLib.h │ │ └── VolInfo │ │ │ ├── GNUmakefile │ │ │ ├── Makefile │ │ │ ├── VolInfo.c │ │ │ └── VolInfo.h │ └── Python │ │ ├── AmlToC │ │ └── AmlToC.py │ │ ├── AutoGen │ │ ├── AutoGen.py │ │ ├── AutoGenWorker.py │ │ ├── BuildEngine.py │ │ ├── DataPipe.py │ │ ├── GenC.py │ │ ├── GenDepex.py │ │ ├── GenMake.py │ │ ├── GenPcdDb.py │ │ ├── GenVar.py │ │ ├── IdfClassObject.py │ │ ├── IncludesAutoGen.py │ │ ├── InfSectionParser.py │ │ ├── ModuleAutoGen.py │ │ ├── ModuleAutoGenHelper.py │ │ ├── PlatformAutoGen.py │ │ ├── StrGather.py │ │ ├── UniClassObject.py │ │ ├── ValidCheckingInfoObject.py │ │ ├── WorkspaceAutoGen.py │ │ └── __init__.py │ │ ├── BPDG │ │ ├── BPDG.py │ │ ├── GenVpd.py │ │ ├── StringTable.py │ │ └── __init__.py │ │ ├── Capsule │ │ ├── GenerateCapsule.py │ │ ├── GenerateWindowsDriver.py │ │ └── WindowsCapsuleSupportHelper.py │ │ ├── Common │ │ ├── BuildToolError.py │ │ ├── BuildVersion.py │ │ ├── DataType.py │ │ ├── Edk2 │ │ │ ├── Capsule │ │ │ │ ├── FmpPayloadHeader.py │ │ │ │ └── __init__.py │ │ │ └── __init__.py │ │ ├── EdkLogger.py │ │ ├── Expression.py │ │ ├── GlobalData.py │ │ ├── LongFilePathOs.py │ │ ├── LongFilePathOsPath.py │ │ ├── LongFilePathSupport.py │ │ ├── Misc.py │ │ ├── MultipleWorkspace.py │ │ ├── Parsing.py │ │ ├── RangeExpression.py │ │ ├── StringUtils.py │ │ ├── TargetTxtClassObject.py │ │ ├── ToolDefClassObject.py │ │ ├── Uefi │ │ │ ├── Capsule │ │ │ │ ├── CapsuleDependency.py │ │ │ │ ├── FmpAuthHeader.py │ │ │ │ ├── FmpCapsuleHeader.py │ │ │ │ ├── UefiCapsuleHeader.py │ │ │ │ └── __init__.py │ │ │ └── __init__.py │ │ ├── VariableAttributes.py │ │ ├── VpdInfoFile.py │ │ ├── __init__.py │ │ └── caching.py │ │ ├── CommonDataClass │ │ ├── CommonClass.py │ │ ├── DataClass.py │ │ ├── Exceptions.py │ │ ├── FdfClass.py │ │ └── __init__.py │ │ ├── Ecc │ │ ├── C.g │ │ ├── CParser3 │ │ │ ├── CLexer.py │ │ │ ├── CParser.py │ │ │ └── __init__.py │ │ ├── CParser4 │ │ │ ├── C.g4 │ │ │ ├── CLexer.py │ │ │ ├── CListener.py │ │ │ ├── CParser.py │ │ │ └── __init__.py │ │ ├── Check.py │ │ ├── CodeFragment.py │ │ ├── CodeFragmentCollector.py │ │ ├── Configuration.py │ │ ├── Database.py │ │ ├── EccGlobalData.py │ │ ├── EccMain.py │ │ ├── EccToolError.py │ │ ├── Exception.py │ │ ├── FileProfile.py │ │ ├── MetaDataParser.py │ │ ├── MetaFileWorkspace │ │ │ ├── MetaDataTable.py │ │ │ ├── MetaFileParser.py │ │ │ ├── MetaFileTable.py │ │ │ └── __init__.py │ │ ├── ParserWarning.py │ │ ├── Xml │ │ │ ├── XmlRoutines.py │ │ │ └── __init__.py │ │ ├── __init__.py │ │ ├── c.py │ │ ├── config.ini │ │ └── exception.xml │ │ ├── Eot │ │ ├── CParser3 │ │ │ ├── CLexer.py │ │ │ ├── CParser.py │ │ │ └── __init__.py │ │ ├── CParser4 │ │ │ ├── CLexer.py │ │ │ ├── CListener.py │ │ │ ├── CParser.py │ │ │ └── __init__.py │ │ ├── CodeFragment.py │ │ ├── CodeFragmentCollector.py │ │ ├── Database.py │ │ ├── EfiCompressor.pyd │ │ ├── EotGlobalData.py │ │ ├── EotMain.py │ │ ├── EotToolError.py │ │ ├── FileProfile.py │ │ ├── Identification.py │ │ ├── InfParserLite.py │ │ ├── LzmaCompressor.pyd │ │ ├── Parser.py │ │ ├── ParserWarning.py │ │ ├── Report.py │ │ ├── __init__.py │ │ └── c.py │ │ ├── GNUmakefile │ │ ├── GenFds │ │ ├── AprioriSection.py │ │ ├── Capsule.py │ │ ├── CapsuleData.py │ │ ├── CompressSection.py │ │ ├── DataSection.py │ │ ├── DepexSection.py │ │ ├── EfiSection.py │ │ ├── Fd.py │ │ ├── FdfParser.py │ │ ├── Ffs.py │ │ ├── FfsFileStatement.py │ │ ├── FfsInfStatement.py │ │ ├── Fv.py │ │ ├── FvImageSection.py │ │ ├── GenFds.py │ │ ├── GenFdsGlobalVariable.py │ │ ├── GuidSection.py │ │ ├── OptRomFileStatement.py │ │ ├── OptRomInfStatement.py │ │ ├── OptionRom.py │ │ ├── Region.py │ │ ├── Rule.py │ │ ├── RuleComplexFile.py │ │ ├── RuleSimpleFile.py │ │ ├── Section.py │ │ ├── UiSection.py │ │ ├── VerSection.py │ │ └── __init__.py │ │ ├── GenPatchPcdTable │ │ ├── GenPatchPcdTable.py │ │ └── __init__.py │ │ ├── Makefile │ │ ├── PatchPcdValue │ │ ├── PatchPcdValue.py │ │ └── __init__.py │ │ ├── Pkcs7Sign │ │ ├── Pkcs7Sign.py │ │ ├── Readme.md │ │ ├── TestCert.pem │ │ ├── TestCert.pub.pem │ │ ├── TestRoot.cer │ │ ├── TestRoot.cer.gEfiSecurityPkgTokenSpaceGuid.PcdPkcs7CertBuffer.inc │ │ ├── TestRoot.cer.gFmpDevicePkgTokenSpaceGuid.PcdFmpDevicePkcs7CertBufferXdr.inc │ │ ├── TestRoot.pem │ │ ├── TestRoot.pub.pem │ │ ├── TestSub.pem │ │ └── TestSub.pub.pem │ │ ├── Rsa2048Sha256Sign │ │ ├── Rsa2048Sha256GenerateKeys.py │ │ ├── Rsa2048Sha256Sign.py │ │ ├── TestSigningPrivateKey.pem │ │ ├── TestSigningPublicKey.bin │ │ └── TestSigningPublicKey.txt │ │ ├── Table │ │ ├── Table.py │ │ ├── TableDataModel.py │ │ ├── TableDec.py │ │ ├── TableDsc.py │ │ ├── TableEotReport.py │ │ ├── TableFdf.py │ │ ├── TableFile.py │ │ ├── TableFunction.py │ │ ├── TableIdentifier.py │ │ ├── TableInf.py │ │ ├── TablePcd.py │ │ ├── TableQuery.py │ │ ├── TableReport.py │ │ └── __init__.py │ │ ├── TargetTool │ │ ├── TargetTool.py │ │ └── __init__.py │ │ ├── Trim │ │ └── Trim.py │ │ ├── UPT │ │ ├── BuildVersion.py │ │ ├── Core │ │ │ ├── DependencyRules.py │ │ │ ├── DistributionPackageClass.py │ │ │ ├── FileHook.py │ │ │ ├── IpiDb.py │ │ │ ├── PackageFile.py │ │ │ └── __init__.py │ │ ├── GenMetaFile │ │ │ ├── GenDecFile.py │ │ │ ├── GenInfFile.py │ │ │ ├── GenMetaFileMisc.py │ │ │ ├── GenXmlFile.py │ │ │ └── __init__.py │ │ ├── InstallPkg.py │ │ ├── InventoryWs.py │ │ ├── Library │ │ │ ├── CommentGenerating.py │ │ │ ├── CommentParsing.py │ │ │ ├── DataType.py │ │ │ ├── ExpressionValidate.py │ │ │ ├── GlobalData.py │ │ │ ├── Misc.py │ │ │ ├── ParserValidate.py │ │ │ ├── Parsing.py │ │ │ ├── StringUtils.py │ │ │ ├── UniClassObject.py │ │ │ ├── Xml │ │ │ │ ├── XmlRoutines.py │ │ │ │ └── __init__.py │ │ │ └── __init__.py │ │ ├── Logger │ │ │ ├── Log.py │ │ │ ├── StringTable.py │ │ │ ├── ToolError.py │ │ │ └── __init__.py │ │ ├── MkPkg.py │ │ ├── Object │ │ │ ├── POM │ │ │ │ ├── CommonObject.py │ │ │ │ ├── ModuleObject.py │ │ │ │ ├── PackageObject.py │ │ │ │ └── __init__.py │ │ │ ├── Parser │ │ │ │ ├── DecObject.py │ │ │ │ ├── InfBinaryObject.py │ │ │ │ ├── InfBuildOptionObject.py │ │ │ │ ├── InfCommonObject.py │ │ │ │ ├── InfDefineCommonObject.py │ │ │ │ ├── InfDefineObject.py │ │ │ │ ├── InfDepexObject.py │ │ │ │ ├── InfGuidObject.py │ │ │ │ ├── InfHeaderObject.py │ │ │ │ ├── InfLibraryClassesObject.py │ │ │ │ ├── InfMisc.py │ │ │ │ ├── InfPackagesObject.py │ │ │ │ ├── InfPcdObject.py │ │ │ │ ├── InfPpiObject.py │ │ │ │ ├── InfProtocolObject.py │ │ │ │ ├── InfSoucesObject.py │ │ │ │ ├── InfUserExtensionObject.py │ │ │ │ └── __init__.py │ │ │ └── __init__.py │ │ ├── Parser │ │ │ ├── DecParser.py │ │ │ ├── DecParserMisc.py │ │ │ ├── InfAsBuiltProcess.py │ │ │ ├── InfBinarySectionParser.py │ │ │ ├── InfBuildOptionSectionParser.py │ │ │ ├── InfDefineSectionParser.py │ │ │ ├── InfDepexSectionParser.py │ │ │ ├── InfGuidPpiProtocolSectionParser.py │ │ │ ├── InfLibrarySectionParser.py │ │ │ ├── InfPackageSectionParser.py │ │ │ ├── InfParser.py │ │ │ ├── InfParserMisc.py │ │ │ ├── InfPcdSectionParser.py │ │ │ ├── InfSectionParser.py │ │ │ ├── InfSourceSectionParser.py │ │ │ └── __init__.py │ │ ├── PomAdapter │ │ │ ├── DecPomAlignment.py │ │ │ ├── InfPomAlignment.py │ │ │ ├── InfPomAlignmentMisc.py │ │ │ └── __init__.py │ │ ├── ReplacePkg.py │ │ ├── RmPkg.py │ │ ├── TestInstall.py │ │ ├── UPT.py │ │ ├── UnitTest │ │ │ ├── CommentGeneratingUnitTest.py │ │ │ ├── CommentParsingUnitTest.py │ │ │ ├── DecParserTest.py │ │ │ ├── DecParserUnitTest.py │ │ │ └── InfBinarySectionTest.py │ │ └── Xml │ │ │ ├── CommonXml.py │ │ │ ├── GuidProtocolPpiXml.py │ │ │ ├── IniToXml.py │ │ │ ├── ModuleSurfaceAreaXml.py │ │ │ ├── PackageSurfaceAreaXml.py │ │ │ ├── PcdXml.py │ │ │ ├── XmlParser.py │ │ │ ├── XmlParserMisc.py │ │ │ └── __init__.py │ │ ├── Workspace │ │ ├── BuildClassObject.py │ │ ├── DecBuildData.py │ │ ├── DscBuildData.py │ │ ├── InfBuildData.py │ │ ├── MetaDataTable.py │ │ ├── MetaFileCommentParser.py │ │ ├── MetaFileParser.py │ │ ├── MetaFileTable.py │ │ ├── WorkspaceCommon.py │ │ ├── WorkspaceDatabase.py │ │ └── __init__.py │ │ ├── basetool_tiano_python_path_env.yaml │ │ ├── build │ │ ├── BuildReport.py │ │ ├── __init__.py │ │ ├── build.py │ │ └── buildoptions.py │ │ └── sitecustomize.py ├── Tests │ ├── CToolsTests.py │ ├── CheckPythonSyntax.py │ ├── CheckUnicodeSourceFiles.py │ ├── GNUmakefile │ ├── PythonTest.py │ ├── PythonToolsTests.py │ ├── RunTests.py │ ├── TestRegularExpression.py │ ├── TestTools.py │ └── TianoCompress.py ├── UserManuals │ ├── Build_Utility_Man_Page.rtf │ ├── EfiRom_Utility_Man_Page.rtf │ ├── GenCrc32_Utility_Man_Page.rtf │ ├── GenDepex_Utility_Man_Page.rtf │ ├── GenFds_Utility_Man_Page.rtf │ ├── GenFfs_Utility_Man_Page.rtf │ ├── GenFv_Utility_Man_Page.rtf │ ├── GenFw_Utility_Man_Page.rtf │ ├── GenPatchPcdTable_Utility_Man_Page.rtf │ ├── GenSec_Utility_Man_Page.rtf │ ├── Intel_UEFI_Packaging_Tool_Man_Page.rtf │ ├── LzmaCompress_Utility_Man_Page.rtf │ ├── PatchPcdValue_Utility_Man_Page.rtf │ ├── SplitFile_Utility_Man_Page.rtf │ ├── TargetTool_Utility_Man_Page.rtf │ ├── TianoCompress_Utility_Man_Page.rtf │ ├── Trim_Utility_Man_Page.rtf │ ├── UtilityManPage_template.rtf │ ├── VfrCompiler_Utility_Man_Page.rtf │ └── VolInfo_Utility_Man_Page.rtf ├── basetools_calling_path_env.yaml ├── basetools_path_env.yaml ├── get_vsvars.bat ├── set_vsprefix_envs.bat └── toolsetup.bat ├── CONTRIBUTING.md ├── Conf ├── .gitignore └── ReadMe.txt ├── CryptoPkg ├── CryptoPkg.ci.yaml ├── CryptoPkg.dec ├── CryptoPkg.dsc ├── CryptoPkg.uni ├── CryptoPkgExtra.uni ├── Driver │ ├── Crypto.c │ ├── Crypto.uni │ ├── CryptoDxe.c │ ├── CryptoDxe.inf │ ├── CryptoPei.c │ ├── CryptoPei.inf │ ├── CryptoSmm.c │ └── CryptoSmm.inf ├── Include │ ├── Library │ │ ├── BaseCryptLib.h │ │ ├── HashApiLib.h │ │ └── TlsLib.h │ └── Pcd │ │ └── PcdCryptoServiceFamilyEnable.h ├── Library │ ├── BaseCryptLib │ │ ├── BaseCryptLib.inf │ │ ├── BaseCryptLib.uni │ │ ├── Cipher │ │ │ ├── CryptAes.c │ │ │ └── CryptAesNull.c │ │ ├── Hash │ │ │ ├── CryptMd5.c │ │ │ ├── CryptSha1.c │ │ │ ├── CryptSha256.c │ │ │ ├── CryptSha512.c │ │ │ ├── CryptSha512Null.c │ │ │ └── CryptSm3.c │ │ ├── Hmac │ │ │ ├── CryptHmacSha256.c │ │ │ └── CryptHmacSha256Null.c │ │ ├── InternalCryptLib.h │ │ ├── Kdf │ │ │ ├── CryptHkdf.c │ │ │ └── CryptHkdfNull.c │ │ ├── PeiCryptLib.inf │ │ ├── PeiCryptLib.uni │ │ ├── Pem │ │ │ ├── CryptPem.c │ │ │ └── CryptPemNull.c │ │ ├── Pk │ │ │ ├── CryptAuthenticode.c │ │ │ ├── CryptAuthenticodeNull.c │ │ │ ├── CryptDh.c │ │ │ ├── CryptDhNull.c │ │ │ ├── CryptPkcs1Oaep.c │ │ │ ├── CryptPkcs1OaepNull.c │ │ │ ├── CryptPkcs5Pbkdf2.c │ │ │ ├── CryptPkcs5Pbkdf2Null.c │ │ │ ├── CryptPkcs7Sign.c │ │ │ ├── CryptPkcs7SignNull.c │ │ │ ├── CryptPkcs7VerifyBase.c │ │ │ ├── CryptPkcs7VerifyCommon.c │ │ │ ├── CryptPkcs7VerifyEku.c │ │ │ ├── CryptPkcs7VerifyEkuRuntime.c │ │ │ ├── CryptPkcs7VerifyNull.c │ │ │ ├── CryptPkcs7VerifyRuntime.c │ │ │ ├── CryptRsaBasic.c │ │ │ ├── CryptRsaExt.c │ │ │ ├── CryptRsaExtNull.c │ │ │ ├── CryptTs.c │ │ │ ├── CryptTsNull.c │ │ │ ├── CryptX509.c │ │ │ └── CryptX509Null.c │ │ ├── Rand │ │ │ ├── CryptRand.c │ │ │ ├── CryptRandNull.c │ │ │ └── CryptRandTsc.c │ │ ├── RuntimeCryptLib.inf │ │ ├── RuntimeCryptLib.uni │ │ ├── SmmCryptLib.inf │ │ ├── SmmCryptLib.uni │ │ ├── SysCall │ │ │ ├── BaseMemAllocation.c │ │ │ ├── ConstantTimeClock.c │ │ │ ├── CrtWrapper.c │ │ │ ├── RuntimeMemAllocation.c │ │ │ ├── TimerWrapper.c │ │ │ ├── UnitTestHostCrtWrapper.c │ │ │ └── inet_pton.c │ │ └── UnitTestHostBaseCryptLib.inf │ ├── BaseCryptLibNull │ │ ├── BaseCryptLibNull.inf │ │ ├── BaseCryptLibNull.uni │ │ ├── Cipher │ │ │ └── CryptAesNull.c │ │ ├── Hash │ │ │ ├── CryptMd5Null.c │ │ │ ├── CryptSha1Null.c │ │ │ ├── CryptSha256Null.c │ │ │ ├── CryptSha512Null.c │ │ │ └── CryptSm3Null.c │ │ ├── Hmac │ │ │ └── CryptHmacSha256Null.c │ │ ├── InternalCryptLib.h │ │ ├── Kdf │ │ │ └── CryptHkdfNull.c │ │ ├── Pem │ │ │ └── CryptPemNull.c │ │ ├── Pk │ │ │ ├── CryptAuthenticodeNull.c │ │ │ ├── CryptDhNull.c │ │ │ ├── CryptPkcs1OaepNull.c │ │ │ ├── CryptPkcs5Pbkdf2Null.c │ │ │ ├── CryptPkcs7SignNull.c │ │ │ ├── CryptPkcs7VerifyEkuNull.c │ │ │ ├── CryptPkcs7VerifyNull.c │ │ │ ├── CryptRsaBasicNull.c │ │ │ ├── CryptRsaExtNull.c │ │ │ ├── CryptTsNull.c │ │ │ └── CryptX509Null.c │ │ └── Rand │ │ │ └── CryptRandNull.c │ ├── BaseCryptLibOnProtocolPpi │ │ ├── CryptLib.c │ │ ├── CryptLib.uni │ │ ├── DxeCryptLib.c │ │ ├── DxeCryptLib.inf │ │ ├── PeiCryptLib.c │ │ ├── PeiCryptLib.inf │ │ ├── SmmCryptLib.c │ │ └── SmmCryptLib.inf │ ├── BaseHashApiLib │ │ ├── BaseHashApiLib.c │ │ ├── BaseHashApiLib.inf │ │ └── BaseHashApiLib.uni │ ├── Include │ │ ├── CrtLibSupport.h │ │ ├── arpa │ │ │ ├── inet.h │ │ │ └── nameser.h │ │ ├── assert.h │ │ ├── crypto │ │ │ └── dso_conf.h │ │ ├── ctype.h │ │ ├── errno.h │ │ ├── limits.h │ │ ├── memory.h │ │ ├── netinet │ │ │ └── in.h │ │ ├── openssl │ │ │ └── opensslconf.h │ │ ├── stdarg.h │ │ ├── stddef.h │ │ ├── stdio.h │ │ ├── stdlib.h │ │ ├── string.h │ │ ├── strings.h │ │ ├── sys │ │ │ ├── param.h │ │ │ ├── shm.h │ │ │ ├── socket.h │ │ │ ├── syscall.h │ │ │ ├── time.h │ │ │ ├── types.h │ │ │ └── utsname.h │ │ ├── syslog.h │ │ ├── time.h │ │ └── unistd.h │ ├── IntrinsicLib │ │ ├── BaseIntrinsicLib.uni │ │ ├── CopyMem.c │ │ ├── Ia32 │ │ │ ├── MathFtol.c │ │ │ ├── MathLShiftS64.c │ │ │ ├── MathLShiftS64.nasm │ │ │ ├── MathRShiftU64.c │ │ │ └── MathRShiftU64.nasm │ │ ├── IntrinsicLib.inf │ │ └── MemoryIntrinsics.c │ ├── OpensslLib │ │ ├── OpenSSL-HOWTO.txt │ │ ├── OpensslLib.inf │ │ ├── OpensslLib.uni │ │ ├── OpensslLibCrypto.inf │ │ ├── OpensslLibCrypto.uni │ │ ├── buildinf.h │ │ ├── ossl_store.c │ │ ├── process_files.pl │ │ └── rand_pool.c │ ├── TlsLib │ │ ├── InternalTlsLib.h │ │ ├── TlsConfig.c │ │ ├── TlsInit.c │ │ ├── TlsLib.inf │ │ ├── TlsLib.uni │ │ └── TlsProcess.c │ └── TlsLibNull │ │ ├── InternalTlsLib.h │ │ ├── TlsConfigNull.c │ │ ├── TlsInitNull.c │ │ ├── TlsLibNull.inf │ │ ├── TlsLibNull.uni │ │ └── TlsProcessNull.c ├── Private │ ├── Ppi │ │ └── Crypto.h │ └── Protocol │ │ ├── Crypto.h │ │ └── SmmCrypto.h └── Test │ ├── CryptoPkgHostUnitTest.dsc │ └── UnitTest │ └── Library │ └── BaseCryptLib │ ├── AuthenticodeTests.c │ ├── BaseCryptLibUnitTests.c │ ├── BlockCipherTests.c │ ├── DhTests.c │ ├── HashTests.c │ ├── HmacTests.c │ ├── OaepEncryptTests.c │ ├── Pkcs5Pbkdf2Tests.c │ ├── Pkcs7EkuTestSignatures.h │ ├── Pkcs7EkuTests.c │ ├── RandTests.c │ ├── RsaPkcs7Tests.c │ ├── RsaTests.c │ ├── TSTests.c │ ├── TestBaseCryptLib.h │ ├── TestBaseCryptLibHost.inf │ ├── TestBaseCryptLibShell.inf │ ├── TestEKUCerts │ ├── ChainCreationInstructions.txt │ ├── CreateTestCerts.cmd │ ├── SignFirmwareWithEKUs.cmd │ ├── TestEKUParsingIssuingCA.ini │ ├── TestEKUParsingLeafSigner.ini │ ├── TestEKUParsingLeafSignerPid1.ini │ ├── TestEKUParsingLeafSignerPid12345.ini │ ├── TestEKUParsingNoEKUsInSigner.ini │ ├── TestEKUParsingPolicyCA.ini │ └── TestEKUParsingRoot.ini │ └── UnitTestMain.c ├── DynamicTablesPkg ├── Drivers │ ├── DynamicTableFactoryDxe │ │ ├── AcpiTableFactory │ │ │ └── AcpiTableFactory.c │ │ ├── DeviceTreeTableFactory │ │ │ └── DeviceTreeTableFactory.c │ │ ├── DynamicTableFactory.h │ │ ├── DynamicTableFactoryDxe.c │ │ ├── DynamicTableFactoryDxe.inf │ │ └── SmbiosTableFactory │ │ │ └── SmbiosTableFactory.c │ └── DynamicTableManagerDxe │ │ ├── DynamicTableManagerDxe.c │ │ └── DynamicTableManagerDxe.inf ├── DynamicTables.dsc.inc ├── DynamicTables.fdf.inc ├── DynamicTablesPkg.ci.yaml ├── DynamicTablesPkg.dec ├── DynamicTablesPkg.dsc ├── Include │ ├── AcpiTableGenerator.h │ ├── ArmNameSpaceObjects.h │ ├── ConfigurationManagerHelper.h │ ├── ConfigurationManagerObject.h │ ├── DeviceTreeTableGenerator.h │ ├── Library │ │ ├── AmlLib │ │ │ └── AmlLib.h │ │ ├── SsdtSerialPortFixupLib.h │ │ └── TableHelperLib.h │ ├── Protocol │ │ ├── ConfigurationManagerProtocol.h │ │ └── DynamicTableFactoryProtocol.h │ ├── SmbiosTableGenerator.h │ ├── StandardNameSpaceObjects.h │ └── TableGenerator.h ├── Library │ ├── Acpi │ │ └── Arm │ │ │ ├── AcpiDbg2LibArm │ │ │ ├── AcpiDbg2LibArm.inf │ │ │ └── Dbg2Generator.c │ │ │ ├── AcpiFadtLibArm │ │ │ ├── AcpiFadtLibArm.inf │ │ │ └── FadtGenerator.c │ │ │ ├── AcpiGtdtLibArm │ │ │ ├── AcpiGtdtLibArm.inf │ │ │ └── GtdtGenerator.c │ │ │ ├── AcpiIortLibArm │ │ │ ├── AcpiIortLibArm.inf │ │ │ ├── IortGenerator.c │ │ │ └── IortGenerator.h │ │ │ ├── AcpiMadtLibArm │ │ │ ├── AcpiMadtLibArm.inf │ │ │ └── MadtGenerator.c │ │ │ ├── AcpiMcfgLibArm │ │ │ ├── AcpiMcfgLibArm.inf │ │ │ └── McfgGenerator.c │ │ │ ├── AcpiPpttLibArm │ │ │ ├── AcpiPpttLibArm.inf │ │ │ ├── PpttGenerator.c │ │ │ └── PpttGenerator.h │ │ │ ├── AcpiRawLibArm │ │ │ ├── AcpiRawLibArm.inf │ │ │ └── RawGenerator.c │ │ │ ├── AcpiSpcrLibArm │ │ │ ├── AcpiSpcrLibArm.inf │ │ │ └── SpcrGenerator.c │ │ │ ├── AcpiSratLibArm │ │ │ ├── AcpiSratLibArm.inf │ │ │ └── SratGenerator.c │ │ │ ├── AcpiSsdtCmn600LibArm │ │ │ ├── SsdtCmn600Generator.c │ │ │ ├── SsdtCmn600Generator.h │ │ │ ├── SsdtCmn600LibArm.inf │ │ │ └── SsdtCmn600Template.asl │ │ │ └── AcpiSsdtSerialPortLibArm │ │ │ ├── SsdtSerialPortGenerator.c │ │ │ └── SsdtSerialPortLibArm.inf │ └── Common │ │ ├── AmlLib │ │ ├── AmlCoreInterface.h │ │ ├── AmlDbgPrint │ │ │ ├── AmlDbgPrint.c │ │ │ └── AmlDbgPrint.h │ │ ├── AmlDefines.h │ │ ├── AmlEncoding │ │ │ ├── Aml.c │ │ │ └── Aml.h │ │ ├── AmlInclude.h │ │ ├── AmlLib.inf │ │ ├── AmlNodeDefines.h │ │ ├── Api │ │ │ ├── AmlApi.c │ │ │ ├── AmlApiHelper.c │ │ │ ├── AmlApiHelper.h │ │ │ └── AmlResourceDataApi.c │ │ ├── CodeGen │ │ │ ├── AmlCodeGen.c │ │ │ ├── AmlResourceDataCodeGen.c │ │ │ └── AmlResourceDataCodeGen.h │ │ ├── NameSpace │ │ │ ├── AmlNameSpace.c │ │ │ └── AmlNameSpace.h │ │ ├── Parser │ │ │ ├── AmlFieldListParser.c │ │ │ ├── AmlFieldListParser.h │ │ │ ├── AmlMethodParser.c │ │ │ ├── AmlMethodParser.h │ │ │ ├── AmlParser.c │ │ │ ├── AmlParser.h │ │ │ ├── AmlResourceDataParser.c │ │ │ └── AmlResourceDataParser.h │ │ ├── ResourceData │ │ │ ├── AmlResourceData.c │ │ │ └── AmlResourceData.h │ │ ├── Serialize │ │ │ └── AmlSerialize.c │ │ ├── Stream │ │ │ ├── AmlStream.c │ │ │ └── AmlStream.h │ │ ├── String │ │ │ ├── AmlString.c │ │ │ └── AmlString.h │ │ ├── Tree │ │ │ ├── AmlClone.c │ │ │ ├── AmlNode.c │ │ │ ├── AmlNode.h │ │ │ ├── AmlNodeInterface.c │ │ │ ├── AmlTree.c │ │ │ ├── AmlTree.h │ │ │ ├── AmlTreeEnumerator.c │ │ │ ├── AmlTreeIterator.c │ │ │ ├── AmlTreeIterator.h │ │ │ ├── AmlTreeTraversal.c │ │ │ └── AmlTreeTraversal.h │ │ └── Utils │ │ │ ├── AmlUtility.c │ │ │ └── AmlUtility.h │ │ ├── SsdtSerialPortFixupLib │ │ ├── SsdtSerialPortFixupLib.c │ │ ├── SsdtSerialPortFixupLib.inf │ │ └── SsdtSerialPortTemplate.asl │ │ └── TableHelperLib │ │ ├── TableHelper.c │ │ └── TableHelperLib.inf └── Readme.md ├── EmbeddedPkg ├── Application │ ├── AndroidBoot │ │ ├── AndroidBootApp.c │ │ └── AndroidBootApp.inf │ └── AndroidFastboot │ │ ├── AndroidBootImg.c │ │ ├── AndroidFastbootApp.c │ │ ├── AndroidFastbootApp.h │ │ ├── AndroidFastbootApp.inf │ │ └── Arm │ │ └── BootAndroidBootImg.c ├── Drivers │ ├── AndroidFastbootTransportTcpDxe │ │ ├── FastbootTransportTcp.c │ │ └── FastbootTransportTcpDxe.inf │ ├── AndroidFastbootTransportUsbDxe │ │ ├── FastbootTransportUsb.c │ │ └── FastbootTransportUsbDxe.inf │ ├── ConsolePrefDxe │ │ ├── ConsolePrefDxe.c │ │ ├── ConsolePrefDxe.h │ │ ├── ConsolePrefDxe.inf │ │ ├── ConsolePrefHii.uni │ │ └── ConsolePrefHii.vfr │ ├── DtPlatformDxe │ │ ├── DtPlatformDxe.c │ │ ├── DtPlatformDxe.h │ │ ├── DtPlatformDxe.inf │ │ ├── DtPlatformHii.uni │ │ └── DtPlatformHii.vfr │ ├── DwMmcHcDxe │ │ ├── ComponentName.c │ │ ├── DwMmcHcDxe.c │ │ ├── DwMmcHcDxe.dec │ │ ├── DwMmcHcDxe.h │ │ ├── DwMmcHcDxe.inf │ │ ├── DwMmcHci.c │ │ ├── DwMmcHci.h │ │ ├── EmmcDevice.c │ │ └── SdDevice.c │ ├── NonCoherentIoMmuDxe │ │ ├── NonCoherentIoMmuDxe.c │ │ └── NonCoherentIoMmuDxe.inf │ └── VirtualKeyboardDxe │ │ ├── ComponentName.c │ │ ├── ComponentName.h │ │ ├── VirtualKeyboard.c │ │ ├── VirtualKeyboard.h │ │ └── VirtualKeyboardDxe.inf ├── EmbeddedMonotonicCounter │ ├── EmbeddedMonotonicCounter.c │ └── EmbeddedMonotonicCounter.inf ├── EmbeddedPkg.dec ├── EmbeddedPkg.dsc ├── GdbStub │ ├── Arm │ │ └── Processor.c │ ├── GdbStub.c │ ├── GdbStub.inf │ ├── GdbStubInternal.h │ ├── Ia32 │ │ └── Processor.c │ ├── SerialIo.c │ └── X64 │ │ └── Processor.c ├── Include │ ├── Guid │ │ ├── ConsolePrefFormSet.h │ │ ├── DtPlatformDefaultDtbFile.h │ │ ├── DtPlatformFormSet.h │ │ ├── ExtractSection.h │ │ ├── Fdt.h │ │ ├── FdtHob.h │ │ ├── NvVarStoreFormatted.h │ │ └── PlatformHasDeviceTree.h │ ├── Library │ │ ├── AcpiLib.h │ │ ├── AndroidBootImgLib.h │ │ ├── DebugAgentTimerLib.h │ │ ├── DmaLib.h │ │ ├── DtPlatformDtbLoaderLib.h │ │ ├── EfiFileLib.h │ │ ├── EfiResetSystemLib.h │ │ ├── FdtLoadLib.h │ │ ├── GdbSerialLib.h │ │ ├── HalRuntimeServicesLib.h │ │ ├── NorFlashInfoLib.h │ │ ├── PrePiHobListPointerLib.h │ │ ├── PrePiLib.h │ │ ├── RealTimeClockLib.h │ │ └── TimeBaseLib.h │ ├── Ppi │ │ └── EmbeddedGpio.h │ ├── Protocol │ │ ├── AndroidBootImg.h │ │ ├── AndroidFastbootPlatform.h │ │ ├── AndroidFastbootTransport.h │ │ ├── EmbeddedDevice.h │ │ ├── EmbeddedExternalDevice.h │ │ ├── EmbeddedGpio.h │ │ ├── HardwareInterrupt.h │ │ ├── HardwareInterrupt2.h │ │ ├── MmcHost.h │ │ ├── PeCoffLoader.h │ │ ├── PlatformBootManager.h │ │ ├── PlatformDwMmc.h │ │ ├── PlatformVirtualKeyboard.h │ │ └── UsbDevice.h │ ├── fdt.h │ ├── libfdt.h │ └── libfdt_env.h ├── Library │ ├── AcpiLib │ │ ├── AcpiLib.c │ │ └── AcpiLib.inf │ ├── AndroidBootImgLib │ │ ├── AndroidBootImgLib.c │ │ └── AndroidBootImgLib.inf │ ├── CoherentDmaLib │ │ ├── CoherentDmaLib.c │ │ └── CoherentDmaLib.inf │ ├── DebugAgentTimerLibNull │ │ ├── DebugAgentTimerLib.c │ │ └── DebugAgentTimerLibNull.inf │ ├── DxeDtPlatformDtbLoaderLibDefault │ │ ├── DxeDtPlatformDtbLoaderLibDefault.c │ │ └── DxeDtPlatformDtbLoaderLibDefault.inf │ ├── FdtLib │ │ ├── FdtLib.inf │ │ ├── Makefile.libfdt │ │ ├── TODO │ │ ├── fdt.c │ │ ├── fdt_addresses.c │ │ ├── fdt_empty_tree.c │ │ ├── fdt_overlay.c │ │ ├── fdt_ro.c │ │ ├── fdt_rw.c │ │ ├── fdt_strerror.c │ │ ├── fdt_strtoul.c │ │ ├── fdt_sw.c │ │ ├── fdt_wip.c │ │ ├── libfdt_internal.h │ │ └── version.lds │ ├── GdbSerialDebugPortLib │ │ ├── GdbSerialDebugPortLib.c │ │ └── GdbSerialDebugPortLib.inf │ ├── GdbSerialLib │ │ ├── GdbSerialLib.c │ │ └── GdbSerialLib.inf │ ├── NonCoherentDmaLib │ │ ├── NonCoherentDmaLib.c │ │ └── NonCoherentDmaLib.inf │ ├── NorFlashInfoLib │ │ ├── NorFlashInfoLib.c │ │ └── NorFlashInfoLib.inf │ ├── NvVarStoreFormattedLib │ │ ├── NvVarStoreFormattedLib.c │ │ └── NvVarStoreFormattedLib.inf │ ├── PlatformHasAcpiLib │ │ ├── PlatformHasAcpiLib.c │ │ └── PlatformHasAcpiLib.inf │ ├── PrePiExtractGuidedSectionLib │ │ ├── PrePiExtractGuidedSectionLib.c │ │ └── PrePiExtractGuidedSectionLib.inf │ ├── PrePiHobLib │ │ ├── Hob.c │ │ └── PrePiHobLib.inf │ ├── PrePiLib │ │ ├── FwVol.c │ │ ├── PrePi.h │ │ ├── PrePiLib.c │ │ └── PrePiLib.inf │ ├── PrePiMemoryAllocationLib │ │ ├── MemoryAllocationLib.c │ │ └── PrePiMemoryAllocationLib.inf │ ├── TemplateRealTimeClockLib │ │ ├── RealTimeClockLib.c │ │ └── TemplateRealTimeClockLib.inf │ ├── TemplateResetSystemLib │ │ ├── ResetSystemLib.c │ │ └── TemplateResetSystemLib.inf │ ├── TimeBaseLib │ │ ├── TimeBaseLib.c │ │ └── TimeBaseLib.inf │ └── VirtualRealTimeClockLib │ │ ├── VirtualRealTimeClockLib.c │ │ └── VirtualRealTimeClockLib.inf ├── MetronomeDxe │ ├── Metronome.c │ └── MetronomeDxe.inf ├── RealTimeClockRuntimeDxe │ ├── RealTimeClock.c │ └── RealTimeClockRuntimeDxe.inf ├── ResetRuntimeDxe │ ├── ResetRuntimeDxe.inf │ └── reset.c ├── Scripts │ └── LauterbachT32 │ │ ├── EFI.CMM │ │ ├── EfiLoadDxe.cmm │ │ ├── EfiLoadFv.cmm │ │ ├── EfiProcessPeImage.cmm │ │ ├── EfiProcessTeImage.cmm │ │ ├── Readme.md │ │ └── T32.CMM ├── SimpleTextInOutSerial │ ├── SimpleTextInOut.c │ └── SimpleTextInOutSerial.inf └── Universal │ ├── MmcDxe │ ├── ComponentName.c │ ├── Diagnostics.c │ ├── Mmc.c │ ├── Mmc.h │ ├── MmcBlockIo.c │ ├── MmcDebug.c │ ├── MmcDxe.inf │ └── MmcIdentification.c │ └── NonDiscoverableDeviceDxe │ ├── ComponentName.c │ ├── NonDiscoverableDeviceDxe.c │ ├── NonDiscoverableDeviceDxe.inf │ ├── NonDiscoverableDeviceIo.c │ └── NonDiscoverableDeviceIo.h ├── EmulatorPkg ├── AutoScanPei │ ├── AutoScanPei.c │ └── AutoScanPei.inf ├── BootModePei │ ├── BootModePei.c │ └── BootModePei.inf ├── CpuRuntimeDxe │ ├── Cpu.c │ ├── Cpu.inf │ ├── CpuDriver.h │ ├── CpuIo.c │ └── MpService.c ├── EmuBlockIoDxe │ ├── ComponentName.c │ ├── DriverConfiguration.c │ ├── DriverDiagnostics.c │ ├── EmuBlockIo.c │ ├── EmuBlockIo.h │ └── EmuBlockIoDxe.inf ├── EmuBusDriverDxe │ ├── ComponentName.c │ ├── EmuBusDriverDxe.c │ ├── EmuBusDriverDxe.h │ └── EmuBusDriverDxe.inf ├── EmuGopDxe │ ├── ComponentName.c │ ├── EmuGopDxe.inf │ ├── Gop.h │ ├── GopDriver.c │ ├── GopInput.c │ └── GopScreen.c ├── EmuSimpleFileSystemDxe │ ├── ComponentName.c │ ├── EmuSimpleFileSystem.c │ ├── EmuSimpleFileSystem.h │ └── EmuSimpleFileSystemDxe.inf ├── EmuSnpDxe │ ├── ComponentName.c │ ├── EmuSnpDxe.c │ ├── EmuSnpDxe.h │ └── EmuSnpDxe.inf ├── EmuThunkDxe │ ├── EmuThunk.c │ └── EmuThunk.inf ├── EmulatorPkg.ci.yaml ├── EmulatorPkg.dec ├── EmulatorPkg.dsc ├── EmulatorPkg.fdf ├── FirmwareVolumePei │ ├── FirmwareVolumePei.c │ └── FirmwareVolumePei.inf ├── FlashMapPei │ ├── FlashMapPei.c │ └── FlashMapPei.inf ├── FvbServicesRuntimeDxe │ ├── FWBlockService.c │ ├── FvbInfo.c │ ├── FvbServicesRuntimeDxe.inf │ └── FwBlockService.h ├── Include │ ├── Guid │ │ ├── EmuPhysicalDisk.h │ │ ├── EmuSystemConfig.h │ │ └── EmuVirtualDisk.h │ ├── Library │ │ ├── EmuMagicPageLib.h │ │ ├── EmuThunkLib.h │ │ ├── KeyMapLib.h │ │ ├── PpiListLib.h │ │ ├── SmbiosLib.h │ │ ├── ThunkPpiList.h │ │ └── ThunkProtocolList.h │ ├── Ppi │ │ └── EmuThunk.h │ └── Protocol │ │ ├── EmuBlockIo.h │ │ ├── EmuFileSystem.h │ │ ├── EmuGraphicsWindow.h │ │ ├── EmuIoThunk.h │ │ ├── EmuSnp.h │ │ ├── EmuThread.h │ │ └── EmuThunk.h ├── Library │ ├── DevicePathTextLib │ │ ├── DevicePathTextLib.c │ │ └── DevicePathTextLib.inf │ ├── DxeCoreTimerLib │ │ ├── DxeCoreTimerLib.c │ │ └── DxeCoreTimerLib.inf │ ├── DxeEmuLib │ │ ├── DxeEmuLib.c │ │ └── DxeEmuLib.inf │ ├── DxeEmuPeCoffExtraActionLib │ │ ├── DxeEmuPeCoffExtraActionLib.c │ │ └── DxeEmuPeCoffExtraActionLib.inf │ ├── DxeEmuSerialPortLib │ │ ├── DxeEmuSerialPortLib.c │ │ └── DxeEmuSerialPortLib.inf │ ├── DxeEmuStdErrSerialPortLib │ │ ├── DxeEmuStdErrSerialPortLib.c │ │ └── DxeEmuStdErrSerialPortLib.inf │ ├── DxeTimerLib │ │ ├── DxeTimerLib.c │ │ └── DxeTimerLib.inf │ ├── GuardUefiMemoryAllocationLib │ │ ├── GuardUefiMemoryAllocationLib.inf │ │ └── MemoryAllocationLib.c │ ├── KeyMapLibNull │ │ ├── KeyMapLibNull.c │ │ └── KeyMapLibNull.inf │ ├── PeiCoreServicesTablePointerLib │ │ ├── PeiCoreServicesTablePointerLib.inf │ │ └── PeiServicesTablePointer.c │ ├── PeiEmuPeCoffExtraActionLib │ │ ├── PeiEmuPeCoffExtraActionLib.c │ │ └── PeiEmuPeCoffExtraActionLib.inf │ ├── PeiEmuPeCoffGetEntryPointLib │ │ ├── PeiEmuPeCoffGetEntryPointLib.c │ │ └── PeiEmuPeCoffGetEntryPointLib.inf │ ├── PeiEmuSerialPortLib │ │ ├── PeiEmuSerialPortLib.c │ │ └── PeiEmuSerialPortLib.inf │ ├── PeiServicesTablePointerLib │ │ ├── PeiServicesTablePointer.c │ │ └── PeiServicesTablePointerLib.inf │ ├── PeiServicesTablePointerLibMagicPage │ │ ├── PeiServicesTablePointer.c │ │ └── PeiServicesTablePointerLibMagicPage.inf │ ├── PeiTimerLib │ │ ├── PeiTimerLib.c │ │ └── PeiTimerLib.inf │ ├── PlatformBmLib │ │ ├── PlatformBm.c │ │ ├── PlatformBm.h │ │ ├── PlatformBmData.c │ │ ├── PlatformBmLib.inf │ │ └── PlatformBmMemoryTest.c │ ├── SecPeiServicesLib │ │ ├── FwVol.c │ │ ├── PeiServicesLib.c │ │ └── SecPeiServicesLib.inf │ ├── SecPpiListLib │ │ ├── PpiListLib.c │ │ └── SecPpiListLib.inf │ ├── SmbiosLib │ │ ├── SmbiosLib.c │ │ └── SmbiosLib.inf │ ├── ThunkPpiList │ │ ├── ThunkPpiList.c │ │ └── ThunkPpiList.inf │ └── ThunkProtocolList │ │ ├── ThunkProtocolList.c │ │ └── ThunkProtocolList.inf ├── PlatformCI │ ├── .azurepipelines │ │ ├── Ubuntu-GCC5.yml │ │ └── Windows-VS2019.yml │ ├── PlatformBuild.py │ └── ReadMe.md ├── PlatformSmbiosDxe │ ├── PlatformSmbiosDxe.c │ ├── PlatformSmbiosDxe.inf │ └── SmbiosTable.c ├── Readme.md ├── RealTimeClockRuntimeDxe │ ├── RealTimeClock.c │ └── RealTimeClock.inf ├── ResetRuntimeDxe │ ├── Reset.c │ └── Reset.inf ├── Sec │ ├── Ia32 │ │ ├── SwitchRam.S │ │ ├── SwitchRam.asm │ │ └── TempRam.c │ ├── Sec.c │ ├── Sec.h │ ├── Sec.inf │ └── X64 │ │ ├── SwitchRam.S │ │ └── SwitchRam.asm ├── ThunkPpiToProtocolPei │ ├── ThunkPpiToProtocolPei.c │ └── ThunkPpiToProtocolPei.inf ├── TimerDxe │ ├── Timer.c │ ├── Timer.h │ └── Timer.inf ├── Unix │ ├── .gdbinit │ ├── GdbRun.sh │ ├── Host │ │ ├── BerkeleyPacketFilter.c │ │ ├── BlockIo.c │ │ ├── EmuThunk.c │ │ ├── Gasket.h │ │ ├── Host.c │ │ ├── Host.h │ │ ├── Host.inf │ │ ├── Ia32 │ │ │ ├── Gasket.S │ │ │ └── SwitchStack.c │ │ ├── LinuxPacketFilter.c │ │ ├── MemoryAllocationLib.c │ │ ├── PosixFileSystem.c │ │ ├── Pthreads.c │ │ ├── X11GraphicsWindow.c │ │ ├── X11IncludeHack │ │ └── X64 │ │ │ ├── Gasket.S │ │ │ └── SwitchStack.S │ ├── Xcode │ │ ├── xcode_project32 │ │ │ ├── XcodeBuild.sh │ │ │ └── xcode_project.xcodeproj │ │ │ │ ├── default.pbxuser │ │ │ │ └── project.pbxproj │ │ └── xcode_project64 │ │ │ ├── XcodeBuild.sh │ │ │ └── xcode_project.xcodeproj │ │ │ ├── default.pbxuser │ │ │ └── project.pbxproj │ ├── lldbefi.py │ └── lldbinit ├── Win │ ├── Host │ │ ├── WinBlockIo.c │ │ ├── WinFileSystem.c │ │ ├── WinGop.h │ │ ├── WinGopInput.c │ │ ├── WinGopScreen.c │ │ ├── WinHost.c │ │ ├── WinHost.h │ │ ├── WinHost.inf │ │ ├── WinInclude.h │ │ ├── WinMemoryAllocationLib.c │ │ ├── WinPacketFilter.c │ │ └── WinThunk.c │ └── VS2017 │ │ ├── BuildVS.bat │ │ ├── Win.sln │ │ ├── Win.vcxproj │ │ ├── Win.vcxproj.filters │ │ └── Win.vcxproj.user └── build.sh ├── FatPkg ├── EnhancedFatDxe │ ├── ComponentName.c │ ├── Data.c │ ├── Delete.c │ ├── DirectoryCache.c │ ├── DirectoryManage.c │ ├── DiskCache.c │ ├── Fat.c │ ├── Fat.h │ ├── Fat.inf │ ├── Fat.uni │ ├── FatExtra.uni │ ├── FatFileSystem.h │ ├── FileName.c │ ├── FileSpace.c │ ├── Flush.c │ ├── Hash.c │ ├── Info.c │ ├── Init.c │ ├── Misc.c │ ├── Open.c │ ├── OpenVolume.c │ ├── ReadWrite.c │ └── UnicodeCollation.c ├── FatPei │ ├── Eltorito.c │ ├── FatLiteAccess.c │ ├── FatLiteApi.c │ ├── FatLiteApi.h │ ├── FatLiteFmt.h │ ├── FatLiteLib.c │ ├── FatLitePeim.h │ ├── FatPei.inf │ ├── FatPei.uni │ ├── FatPeiExtra.uni │ ├── Gpt.c │ ├── Mbr.c │ └── Part.c ├── FatPkg.ci.yaml ├── FatPkg.dec ├── FatPkg.dsc ├── FatPkg.uni └── FatPkgExtra.uni ├── FmpDevicePkg ├── CapsuleUpdatePolicyDxe │ ├── CapsuleUpdatePolicyDxe.c │ ├── CapsuleUpdatePolicyDxe.h │ ├── CapsuleUpdatePolicyDxe.inf │ ├── CapsuleUpdatePolicyDxe.uni │ └── CapsuleUpdatePolicyDxeExtra.uni ├── FmpDevicePkg.ci.yaml ├── FmpDevicePkg.dec ├── FmpDevicePkg.dsc ├── FmpDevicePkg.uni ├── FmpDevicePkgExtra.uni ├── FmpDxe │ ├── DetectTestKey.c │ ├── FmpDxe.c │ ├── FmpDxe.h │ ├── FmpDxe.inf │ ├── FmpDxe.uni │ ├── FmpDxeExtra.uni │ ├── FmpDxeLib.inf │ ├── VariableSupport.c │ └── VariableSupport.h ├── Include │ ├── LastAttemptStatus.h │ └── Library │ │ ├── CapsuleUpdatePolicyLib.h │ │ ├── FmpDependencyCheckLib.h │ │ ├── FmpDependencyDeviceLib.h │ │ ├── FmpDependencyLib.h │ │ └── FmpDeviceLib.h ├── Library │ ├── CapsuleUpdatePolicyLibNull │ │ ├── CapsuleUpdatePolicyLibNull.c │ │ ├── CapsuleUpdatePolicyLibNull.inf │ │ └── CapsuleUpdatePolicyLibNull.uni │ ├── CapsuleUpdatePolicyLibOnProtocol │ │ ├── CapsuleUpdatePolicyLibOnProtocol.c │ │ ├── CapsuleUpdatePolicyLibOnProtocol.inf │ │ └── CapsuleUpdatePolicyLibOnProtocol.uni │ ├── FmpDependencyCheckLib │ │ ├── FmpDependencyCheckLib.c │ │ ├── FmpDependencyCheckLib.inf │ │ └── FmpDependencyCheckLib.uni │ ├── FmpDependencyCheckLibNull │ │ ├── FmpDependencyCheckLibNull.c │ │ ├── FmpDependencyCheckLibNull.inf │ │ └── FmpDependencyCheckLibNull.uni │ ├── FmpDependencyDeviceLibNull │ │ ├── FmpDependencyDeviceLib.c │ │ ├── FmpDependencyDeviceLibNull.inf │ │ └── FmpDependencyDeviceLibNull.uni │ ├── FmpDependencyLib │ │ ├── FmpDependencyLib.c │ │ ├── FmpDependencyLib.inf │ │ └── FmpDependencyLib.uni │ ├── FmpDeviceLibNull │ │ ├── FmpDeviceLib.c │ │ ├── FmpDeviceLibNull.inf │ │ └── FmpDeviceLibNull.uni │ └── FmpPayloadHeaderLibV1 │ │ ├── FmpPayloadHeaderLib.c │ │ ├── FmpPayloadHeaderLibV1.inf │ │ └── FmpPayloadHeaderLibV1.uni ├── PrivateInclude │ ├── FmpLastAttemptStatus.h │ ├── Library │ │ └── FmpPayloadHeaderLib.h │ └── Protocol │ │ └── CapsuleUpdatePolicy.h └── Test │ ├── FmpDeviceHostPkgTest.dsc │ └── UnitTest │ └── Library │ └── FmpDependencyLib │ ├── EvaluateDependencyUnitTest.c │ ├── FmpDependencyLibUnitTestsHost.inf │ └── FmpDependencyLibUnitTestsUefi.inf ├── IntelFsp2Pkg ├── FspNotifyPhase │ ├── FspNotifyPhasePeim.c │ ├── FspNotifyPhasePeim.h │ └── FspNotifyPhasePeim.inf ├── FspSecCore │ ├── Fsp22SecCoreS.inf │ ├── FspSecCoreM.inf │ ├── FspSecCoreS.inf │ ├── FspSecCoreT.inf │ ├── Ia32 │ │ ├── Fsp22ApiEntryS.nasm │ │ ├── FspApiEntryCommon.nasm │ │ ├── FspApiEntryM.nasm │ │ ├── FspApiEntryS.nasm │ │ ├── FspApiEntryT.nasm │ │ ├── FspHelper.nasm │ │ ├── MicrocodeLoadNasm.inc │ │ ├── ReadEsp.nasm │ │ ├── SaveRestoreSseNasm.inc │ │ └── Stack.nasm │ ├── SecFsp.c │ ├── SecFsp.h │ ├── SecFspApiChk.c │ ├── SecMain.c │ ├── SecMain.h │ └── Vtf0 │ │ ├── Bin │ │ └── ResetVec.ia32.raw │ │ ├── Build.py │ │ ├── Ia16 │ │ └── ResetVec.asm16 │ │ ├── ResetVectorCode.asm │ │ └── Tools │ │ └── FixupForRawSection.py ├── Include │ ├── FspEas.h │ ├── FspEas │ │ └── FspApi.h │ ├── FspGlobalData.h │ ├── FspMeasurePointId.h │ ├── FspStatusCode.h │ ├── Guid │ │ ├── FspHeaderFile.h │ │ └── GuidHobFspEas.h │ ├── Library │ │ ├── CacheAsRamLib.h │ │ ├── CacheLib.h │ │ ├── DebugDeviceLib.h │ │ ├── FspCommonLib.h │ │ ├── FspPlatformLib.h │ │ ├── FspSecPlatformLib.h │ │ └── FspSwitchStackLib.h │ └── Ppi │ │ ├── FspmArchConfigPpi.h │ │ └── TempRamExitPpi.h ├── IntelFsp2Pkg.dec ├── IntelFsp2Pkg.dsc ├── Library │ ├── BaseCacheAsRamLibNull │ │ ├── BaseCacheAsRamLibNull.inf │ │ └── DisableCacheAsRamNull.c │ ├── BaseCacheLib │ │ ├── BaseCacheLib.inf │ │ ├── CacheLib.c │ │ └── CacheLibInternal.h │ ├── BaseDebugDeviceLibNull │ │ ├── BaseDebugDeviceLibNull.inf │ │ └── DebugDeviceLibNull.c │ ├── BaseFspCommonLib │ │ ├── BaseFspCommonLib.inf │ │ └── FspCommonLib.c │ ├── BaseFspDebugLibSerialPort │ │ ├── BaseFspDebugLibSerialPort.inf │ │ ├── DebugLib.c │ │ └── Ia32 │ │ │ └── FspDebug.nasm │ ├── BaseFspPlatformLib │ │ ├── BaseFspPlatformLib.inf │ │ ├── FspPlatformMemory.c │ │ └── FspPlatformNotify.c │ ├── BaseFspSwitchStackLib │ │ ├── BaseFspSwitchStackLib.inf │ │ ├── FspSwitchStackLib.c │ │ └── Ia32 │ │ │ └── Stack.nasm │ └── SecFspSecPlatformLibNull │ │ ├── Ia32 │ │ ├── Flat32.nasm │ │ └── SecCarInit.nasm │ │ ├── PlatformSecLibNull.c │ │ └── SecFspSecPlatformLibNull.inf ├── Readme.md └── Tools │ ├── GenCfgOpt.py │ ├── PatchFv.py │ ├── SplitFspBin.py │ └── UserManuals │ ├── GenCfgOptUserManual.md │ ├── PatchFvUserManual.md │ └── SplitFspBinUserManual.md ├── IntelFsp2WrapperPkg ├── FspWrapperNotifyDxe │ ├── FspWrapperNotifyDxe.c │ ├── FspWrapperNotifyDxe.inf │ └── LoadBelow4G.c ├── FspmWrapperPeim │ ├── FspmWrapperPeim.c │ └── FspmWrapperPeim.inf ├── FspsWrapperPeim │ ├── FspsWrapperPeim.c │ └── FspsWrapperPeim.inf ├── Include │ ├── Library │ │ ├── FspMeasurementLib.h │ │ ├── FspWrapperApiLib.h │ │ ├── FspWrapperApiTestLib.h │ │ ├── FspWrapperHobProcessLib.h │ │ └── FspWrapperPlatformLib.h │ └── Ppi │ │ ├── FspSiliconInitDone.h │ │ └── TopOfTemporaryRam.h ├── IntelFsp2WrapperPkg.dec ├── IntelFsp2WrapperPkg.dsc ├── Library │ ├── BaseFspMeasurementLib │ │ ├── BaseFspMeasurementLib.inf │ │ └── FspMeasurementLib.c │ ├── BaseFspWrapperApiLib │ │ ├── BaseFspWrapperApiLib.inf │ │ ├── FspWrapperApiLib.c │ │ ├── IA32 │ │ │ └── DispatchExecute.c │ │ └── X64 │ │ │ ├── DispatchExecute.c │ │ │ └── Thunk64To32.nasm │ ├── BaseFspWrapperApiTestLibNull │ │ ├── BaseFspWrapperApiTestLibNull.inf │ │ └── FspWrapperApiTestNull.c │ ├── BaseFspWrapperPlatformLibSample │ │ ├── BaseFspWrapperPlatformLibSample.inf │ │ └── FspWrapperPlatformLibSample.c │ ├── PeiFspWrapperApiTestLib │ │ ├── FspWrapperApiTest.c │ │ └── PeiFspWrapperApiTestLib.inf │ ├── PeiFspWrapperHobProcessLibSample │ │ ├── FspWrapperHobProcessLibSample.c │ │ └── PeiFspWrapperHobProcessLibSample.inf │ └── SecFspWrapperPlatformSecLibSample │ │ ├── FspWrapperPlatformSecLibSample.c │ │ ├── Ia32 │ │ ├── Fsp.h │ │ ├── PeiCoreEntry.nasm │ │ ├── SecEntry.nasm │ │ └── Stack.nasm │ │ ├── PlatformInit.c │ │ ├── SecFspWrapperPlatformSecLibSample.inf │ │ ├── SecGetPerformance.c │ │ ├── SecPlatformInformation.c │ │ ├── SecRamInitData.c │ │ └── SecTempRamDone.c └── Readme.md ├── License-History.txt ├── License.txt ├── Maintainers.txt ├── MdeModulePkg ├── Application │ ├── BootManagerMenuApp │ │ ├── BootManagerMenu.c │ │ ├── BootManagerMenu.h │ │ ├── BootManagerMenuApp.inf │ │ ├── BootManagerMenuApp.uni │ │ ├── BootManagerMenuAppExtra.uni │ │ └── BootManagerMenuStrings.uni │ ├── CapsuleApp │ │ ├── AppSupport.c │ │ ├── CapsuleApp.c │ │ ├── CapsuleApp.h │ │ ├── CapsuleApp.inf │ │ ├── CapsuleApp.uni │ │ ├── CapsuleAppExtra.uni │ │ ├── CapsuleDump.c │ │ └── CapsuleOnDisk.c │ ├── DumpDynPcd │ │ ├── DumpDynPcd.c │ │ ├── DumpDynPcd.inf │ │ └── DumpDynPcdStr.uni │ ├── HelloWorld │ │ ├── HelloWorld.c │ │ ├── HelloWorld.inf │ │ ├── HelloWorld.uni │ │ ├── HelloWorldExtra.uni │ │ └── HelloWorldStr.uni │ ├── MemoryProfileInfo │ │ ├── MemoryProfileInfo.c │ │ ├── MemoryProfileInfo.inf │ │ ├── MemoryProfileInfo.uni │ │ └── MemoryProfileInfoExtra.uni │ ├── SmiHandlerProfileInfo │ │ ├── SmiHandlerProfileInfo.c │ │ ├── SmiHandlerProfileInfo.inf │ │ ├── SmiHandlerProfileInfo.uni │ │ └── SmiHandlerProfileInfoExtra.uni │ ├── UiApp │ │ ├── FrontPage.c │ │ ├── FrontPage.h │ │ ├── FrontPageCustomizedUi.c │ │ ├── FrontPageCustomizedUi.h │ │ ├── FrontPageCustomizedUiSupport.c │ │ ├── FrontPageCustomizedUiSupport.h │ │ ├── FrontPageStrings.uni │ │ ├── FrontPageVfr.Vfr │ │ ├── String.c │ │ ├── String.h │ │ ├── Ui.h │ │ ├── UiApp.inf │ │ ├── UiApp.uni │ │ └── UiAppExtra.uni │ └── VariableInfo │ │ ├── VariableInfo.c │ │ ├── VariableInfo.inf │ │ ├── VariableInfo.uni │ │ └── VariableInfoExtra.uni ├── Bus │ ├── Ata │ │ ├── AhciPei │ │ │ ├── AhciMode.c │ │ │ ├── AhciPei.c │ │ │ ├── AhciPei.h │ │ │ ├── AhciPei.inf │ │ │ ├── AhciPei.uni │ │ │ ├── AhciPeiBlockIo.c │ │ │ ├── AhciPeiBlockIo.h │ │ │ ├── AhciPeiExtra.uni │ │ │ ├── AhciPeiPassThru.c │ │ │ ├── AhciPeiPassThru.h │ │ │ ├── AhciPeiS3.c │ │ │ ├── AhciPeiStorageSecurity.c │ │ │ ├── AhciPeiStorageSecurity.h │ │ │ ├── DevicePath.c │ │ │ └── DmaMem.c │ │ ├── AtaAtapiPassThru │ │ │ ├── AhciMode.c │ │ │ ├── AhciMode.h │ │ │ ├── AtaAtapiPassThru.c │ │ │ ├── AtaAtapiPassThru.h │ │ │ ├── AtaAtapiPassThru.inf │ │ │ ├── AtaAtapiPassThruDxe.uni │ │ │ ├── AtaAtapiPassThruDxeExtra.uni │ │ │ ├── ComponentName.c │ │ │ ├── IdeMode.c │ │ │ └── IdeMode.h │ │ └── AtaBusDxe │ │ │ ├── AtaBus.c │ │ │ ├── AtaBus.h │ │ │ ├── AtaBusDxe.inf │ │ │ ├── AtaBusDxe.uni │ │ │ ├── AtaBusDxeExtra.uni │ │ │ ├── AtaPassThruExecute.c │ │ │ └── ComponentName.c │ ├── I2c │ │ └── I2cDxe │ │ │ ├── I2cBus.c │ │ │ ├── I2cBusDxe.inf │ │ │ ├── I2cBusDxe.uni │ │ │ ├── I2cBusDxeExtra.uni │ │ │ ├── I2cDxe.c │ │ │ ├── I2cDxe.h │ │ │ ├── I2cDxe.inf │ │ │ ├── I2cDxe.uni │ │ │ ├── I2cDxeExtra.uni │ │ │ ├── I2cHost.c │ │ │ ├── I2cHostDxe.inf │ │ │ ├── I2cHostDxe.uni │ │ │ └── I2cHostDxeExtra.uni │ ├── Isa │ │ ├── IsaBusDxe │ │ │ ├── ComponentName.c │ │ │ ├── ComponentName.h │ │ │ ├── IsaBusDxe.c │ │ │ ├── IsaBusDxe.h │ │ │ ├── IsaBusDxe.inf │ │ │ ├── IsaBusDxe.uni │ │ │ └── IsaBusDxeExtra.uni │ │ ├── Ps2KeyboardDxe │ │ │ ├── ComponentName.c │ │ │ ├── Ps2KbdCtrller.c │ │ │ ├── Ps2KbdTextIn.c │ │ │ ├── Ps2Keyboard.c │ │ │ ├── Ps2Keyboard.h │ │ │ ├── Ps2KeyboardDxe.inf │ │ │ ├── Ps2KeyboardDxe.uni │ │ │ └── Ps2KeyboardDxeExtra.uni │ │ └── Ps2MouseDxe │ │ │ ├── CommPs2.c │ │ │ ├── CommPs2.h │ │ │ ├── ComponentName.c │ │ │ ├── Ps2Mouse.c │ │ │ ├── Ps2Mouse.h │ │ │ ├── Ps2MouseDxe.inf │ │ │ ├── Ps2MouseDxe.uni │ │ │ └── Ps2MouseDxeExtra.uni │ ├── Pci │ │ ├── EhciDxe │ │ │ ├── ComponentName.c │ │ │ ├── ComponentName.h │ │ │ ├── Ehci.c │ │ │ ├── Ehci.h │ │ │ ├── EhciDebug.c │ │ │ ├── EhciDebug.h │ │ │ ├── EhciDxe.inf │ │ │ ├── EhciDxe.uni │ │ │ ├── EhciDxeExtra.uni │ │ │ ├── EhciReg.c │ │ │ ├── EhciReg.h │ │ │ ├── EhciSched.c │ │ │ ├── EhciSched.h │ │ │ ├── EhciUrb.c │ │ │ ├── EhciUrb.h │ │ │ ├── UsbHcMem.c │ │ │ └── UsbHcMem.h │ │ ├── EhciPei │ │ │ ├── DmaMem.c │ │ │ ├── EhcPeim.c │ │ │ ├── EhcPeim.h │ │ │ ├── EhciPei.inf │ │ │ ├── EhciPei.uni │ │ │ ├── EhciPeiExtra.uni │ │ │ ├── EhciReg.h │ │ │ ├── EhciSched.c │ │ │ ├── EhciSched.h │ │ │ ├── EhciUrb.c │ │ │ ├── EhciUrb.h │ │ │ ├── UsbHcMem.c │ │ │ └── UsbHcMem.h │ │ ├── IdeBusPei │ │ │ ├── AtapiPeim.c │ │ │ ├── AtapiPeim.h │ │ │ ├── IdeBusPei.inf │ │ │ ├── IdeBusPei.uni │ │ │ └── IdeBusPeiExtra.uni │ │ ├── IncompatiblePciDeviceSupportDxe │ │ │ ├── IncompatiblePciDeviceSupport.c │ │ │ ├── IncompatiblePciDeviceSupport.uni │ │ │ ├── IncompatiblePciDeviceSupportDxe.inf │ │ │ └── IncompatiblePciDeviceSupportExtra.uni │ │ ├── NonDiscoverablePciDeviceDxe │ │ │ ├── ComponentName.c │ │ │ ├── NonDiscoverablePciDeviceDxe.c │ │ │ ├── NonDiscoverablePciDeviceDxe.inf │ │ │ ├── NonDiscoverablePciDeviceIo.c │ │ │ └── NonDiscoverablePciDeviceIo.h │ │ ├── NvmExpressDxe │ │ │ ├── ComponentName.c │ │ │ ├── NvmExpress.c │ │ │ ├── NvmExpress.h │ │ │ ├── NvmExpressBlockIo.c │ │ │ ├── NvmExpressBlockIo.h │ │ │ ├── NvmExpressDiskInfo.c │ │ │ ├── NvmExpressDiskInfo.h │ │ │ ├── NvmExpressDxe.inf │ │ │ ├── NvmExpressDxe.uni │ │ │ ├── NvmExpressDxeExtra.uni │ │ │ ├── NvmExpressHci.c │ │ │ ├── NvmExpressHci.h │ │ │ └── NvmExpressPassthru.c │ │ ├── NvmExpressPei │ │ │ ├── DevicePath.c │ │ │ ├── DmaMem.c │ │ │ ├── NvmExpressPei.c │ │ │ ├── NvmExpressPei.h │ │ │ ├── NvmExpressPei.inf │ │ │ ├── NvmExpressPei.uni │ │ │ ├── NvmExpressPeiBlockIo.c │ │ │ ├── NvmExpressPeiBlockIo.h │ │ │ ├── NvmExpressPeiExtra.uni │ │ │ ├── NvmExpressPeiHci.c │ │ │ ├── NvmExpressPeiHci.h │ │ │ ├── NvmExpressPeiPassThru.c │ │ │ ├── NvmExpressPeiPassThru.h │ │ │ ├── NvmExpressPeiS3.c │ │ │ ├── NvmExpressPeiStorageSecurity.c │ │ │ └── NvmExpressPeiStorageSecurity.h │ │ ├── PciBusDxe │ │ │ ├── ComponentName.c │ │ │ ├── ComponentName.h │ │ │ ├── PciBus.c │ │ │ ├── PciBus.h │ │ │ ├── PciBusDxe.inf │ │ │ ├── PciBusDxe.uni │ │ │ ├── PciBusDxeExtra.uni │ │ │ ├── PciCommand.c │ │ │ ├── PciCommand.h │ │ │ ├── PciDeviceSupport.c │ │ │ ├── PciDeviceSupport.h │ │ │ ├── PciDriverOverride.c │ │ │ ├── PciDriverOverride.h │ │ │ ├── PciEnumerator.c │ │ │ ├── PciEnumerator.h │ │ │ ├── PciEnumeratorSupport.c │ │ │ ├── PciEnumeratorSupport.h │ │ │ ├── PciHotPlugSupport.c │ │ │ ├── PciHotPlugSupport.h │ │ │ ├── PciIo.c │ │ │ ├── PciIo.h │ │ │ ├── PciLib.c │ │ │ ├── PciLib.h │ │ │ ├── PciOptionRomSupport.c │ │ │ ├── PciOptionRomSupport.h │ │ │ ├── PciPowerManagement.c │ │ │ ├── PciPowerManagement.h │ │ │ ├── PciResourceSupport.c │ │ │ ├── PciResourceSupport.h │ │ │ ├── PciRomTable.c │ │ │ └── PciRomTable.h │ │ ├── PciHostBridgeDxe │ │ │ ├── PciHostBridge.c │ │ │ ├── PciHostBridge.h │ │ │ ├── PciHostBridgeDxe.inf │ │ │ ├── PciHostResource.h │ │ │ ├── PciRootBridge.h │ │ │ └── PciRootBridgeIo.c │ │ ├── PciSioSerialDxe │ │ │ ├── ComponentName.c │ │ │ ├── PciSioSerialDxe.inf │ │ │ ├── PciSioSerialDxe.uni │ │ │ ├── PciSioSerialDxeExtra.uni │ │ │ ├── Serial.c │ │ │ ├── Serial.h │ │ │ └── SerialIo.c │ │ ├── SataControllerDxe │ │ │ ├── ComponentName.c │ │ │ ├── SataController.c │ │ │ ├── SataController.h │ │ │ ├── SataControllerDxe.inf │ │ │ ├── SataControllerDxe.uni │ │ │ └── SataControllerDxeExtra.uni │ │ ├── SdMmcPciHcDxe │ │ │ ├── ComponentName.c │ │ │ ├── EmmcDevice.c │ │ │ ├── SdDevice.c │ │ │ ├── SdMmcPciHcDxe.c │ │ │ ├── SdMmcPciHcDxe.h │ │ │ ├── SdMmcPciHcDxe.inf │ │ │ ├── SdMmcPciHcDxe.uni │ │ │ ├── SdMmcPciHcDxeExtra.uni │ │ │ ├── SdMmcPciHci.c │ │ │ └── SdMmcPciHci.h │ │ ├── SdMmcPciHcPei │ │ │ ├── SdMmcPciHcPei.c │ │ │ ├── SdMmcPciHcPei.h │ │ │ ├── SdMmcPciHcPei.inf │ │ │ ├── SdMmcPciHcPei.uni │ │ │ └── SdMmcPciHcPeiExtra.uni │ │ ├── UfsPciHcDxe │ │ │ ├── ComponentName.c │ │ │ ├── UfsPciHcDxe.c │ │ │ ├── UfsPciHcDxe.h │ │ │ ├── UfsPciHcDxe.inf │ │ │ ├── UfsPciHcDxe.uni │ │ │ └── UfsPciHcDxeExtra.uni │ │ ├── UfsPciHcPei │ │ │ ├── UfsPciHcPei.c │ │ │ ├── UfsPciHcPei.h │ │ │ ├── UfsPciHcPei.inf │ │ │ ├── UfsPciHcPei.uni │ │ │ └── UfsPciHcPeiExtra.uni │ │ ├── UhciDxe │ │ │ ├── ComponentName.c │ │ │ ├── ComponentName.h │ │ │ ├── Uhci.c │ │ │ ├── Uhci.h │ │ │ ├── UhciDebug.c │ │ │ ├── UhciDebug.h │ │ │ ├── UhciDxe.inf │ │ │ ├── UhciDxe.uni │ │ │ ├── UhciDxeExtra.uni │ │ │ ├── UhciQueue.c │ │ │ ├── UhciQueue.h │ │ │ ├── UhciReg.c │ │ │ ├── UhciReg.h │ │ │ ├── UhciSched.c │ │ │ ├── UhciSched.h │ │ │ ├── UsbHcMem.c │ │ │ └── UsbHcMem.h │ │ ├── UhciPei │ │ │ ├── DmaMem.c │ │ │ ├── UhcPeim.c │ │ │ ├── UhcPeim.h │ │ │ ├── UhciPei.inf │ │ │ ├── UhciPei.uni │ │ │ └── UhciPeiExtra.uni │ │ ├── XhciDxe │ │ │ ├── ComponentName.c │ │ │ ├── ComponentName.h │ │ │ ├── UsbHcMem.c │ │ │ ├── UsbHcMem.h │ │ │ ├── Xhci.c │ │ │ ├── Xhci.h │ │ │ ├── XhciDxe.inf │ │ │ ├── XhciDxe.uni │ │ │ ├── XhciDxeExtra.uni │ │ │ ├── XhciReg.c │ │ │ ├── XhciReg.h │ │ │ ├── XhciSched.c │ │ │ └── XhciSched.h │ │ └── XhciPei │ │ │ ├── DmaMem.c │ │ │ ├── UsbHcMem.c │ │ │ ├── UsbHcMem.h │ │ │ ├── XhcPeim.c │ │ │ ├── XhcPeim.h │ │ │ ├── XhciPei.inf │ │ │ ├── XhciPei.uni │ │ │ ├── XhciPeiExtra.uni │ │ │ ├── XhciReg.h │ │ │ ├── XhciSched.c │ │ │ └── XhciSched.h │ ├── Scsi │ │ ├── ScsiBusDxe │ │ │ ├── ComponentName.c │ │ │ ├── ScsiBus.c │ │ │ ├── ScsiBus.h │ │ │ ├── ScsiBus.uni │ │ │ ├── ScsiBusDxe.inf │ │ │ └── ScsiBusExtra.uni │ │ └── ScsiDiskDxe │ │ │ ├── ComponentName.c │ │ │ ├── ScsiDisk.c │ │ │ ├── ScsiDisk.h │ │ │ ├── ScsiDisk.uni │ │ │ ├── ScsiDiskDxe.inf │ │ │ └── ScsiDiskExtra.uni │ ├── Sd │ │ ├── EmmcBlockIoPei │ │ │ ├── DmaMem.c │ │ │ ├── EmmcBlockIoPei.c │ │ │ ├── EmmcBlockIoPei.h │ │ │ ├── EmmcBlockIoPei.inf │ │ │ ├── EmmcBlockIoPei.uni │ │ │ ├── EmmcBlockIoPeiExtra.uni │ │ │ ├── EmmcHcMem.c │ │ │ ├── EmmcHcMem.h │ │ │ ├── EmmcHci.c │ │ │ └── EmmcHci.h │ │ ├── EmmcDxe │ │ │ ├── ComponentName.c │ │ │ ├── EmmcBlockIo.c │ │ │ ├── EmmcBlockIo.h │ │ │ ├── EmmcDiskInfo.c │ │ │ ├── EmmcDiskInfo.h │ │ │ ├── EmmcDxe.c │ │ │ ├── EmmcDxe.h │ │ │ ├── EmmcDxe.inf │ │ │ ├── EmmcDxe.uni │ │ │ └── EmmcDxeExtra.uni │ │ ├── SdBlockIoPei │ │ │ ├── DmaMem.c │ │ │ ├── SdBlockIoPei.c │ │ │ ├── SdBlockIoPei.h │ │ │ ├── SdBlockIoPei.inf │ │ │ ├── SdBlockIoPei.uni │ │ │ ├── SdBlockIoPeiExtra.uni │ │ │ ├── SdHcMem.c │ │ │ ├── SdHcMem.h │ │ │ ├── SdHci.c │ │ │ └── SdHci.h │ │ └── SdDxe │ │ │ ├── ComponentName.c │ │ │ ├── SdBlockIo.c │ │ │ ├── SdBlockIo.h │ │ │ ├── SdDiskInfo.c │ │ │ ├── SdDiskInfo.h │ │ │ ├── SdDxe.c │ │ │ ├── SdDxe.h │ │ │ ├── SdDxe.inf │ │ │ ├── SdDxe.uni │ │ │ └── SdDxeExtra.uni │ ├── Ufs │ │ ├── UfsBlockIoPei │ │ │ ├── DmaMem.c │ │ │ ├── UfsBlockIoPei.c │ │ │ ├── UfsBlockIoPei.h │ │ │ ├── UfsBlockIoPei.inf │ │ │ ├── UfsBlockIoPei.uni │ │ │ ├── UfsBlockIoPeiExtra.uni │ │ │ ├── UfsHcMem.c │ │ │ ├── UfsHcMem.h │ │ │ ├── UfsHci.c │ │ │ └── UfsHci.h │ │ └── UfsPassThruDxe │ │ │ ├── ComponentName.c │ │ │ ├── UfsDevConfigProtocol.c │ │ │ ├── UfsPassThru.c │ │ │ ├── UfsPassThru.h │ │ │ ├── UfsPassThru.uni │ │ │ ├── UfsPassThruDxe.inf │ │ │ ├── UfsPassThruExtra.uni │ │ │ ├── UfsPassThruHci.c │ │ │ └── UfsPassThruHci.h │ └── Usb │ │ ├── UsbBotPei │ │ ├── BotPeim.c │ │ ├── BotPeim.h │ │ ├── PeiAtapi.c │ │ ├── PeiUsbLib.c │ │ ├── PeiUsbLib.h │ │ ├── UsbBotPei.inf │ │ ├── UsbBotPei.uni │ │ ├── UsbBotPeiExtra.uni │ │ ├── UsbBotPeim.c │ │ ├── UsbBotPeim.h │ │ └── UsbPeim.h │ │ ├── UsbBusDxe │ │ ├── ComponentName.c │ │ ├── UsbBus.c │ │ ├── UsbBus.h │ │ ├── UsbBusDxe.inf │ │ ├── UsbBusDxe.uni │ │ ├── UsbBusDxeExtra.uni │ │ ├── UsbDesc.c │ │ ├── UsbDesc.h │ │ ├── UsbEnumer.c │ │ ├── UsbEnumer.h │ │ ├── UsbHub.c │ │ ├── UsbHub.h │ │ ├── UsbUtility.c │ │ └── UsbUtility.h │ │ ├── UsbBusPei │ │ ├── HubPeim.c │ │ ├── HubPeim.h │ │ ├── PeiUsbLib.c │ │ ├── PeiUsbLib.h │ │ ├── UsbBusPei.inf │ │ ├── UsbBusPei.uni │ │ ├── UsbBusPeiExtra.uni │ │ ├── UsbIoPeim.c │ │ ├── UsbPeim.c │ │ └── UsbPeim.h │ │ ├── UsbKbDxe │ │ ├── ComponentName.c │ │ ├── EfiKey.c │ │ ├── EfiKey.h │ │ ├── KeyBoard.c │ │ ├── KeyBoard.h │ │ ├── UsbKbDxe.inf │ │ ├── UsbKbDxe.uni │ │ └── UsbKbDxeExtra.uni │ │ ├── UsbMassStorageDxe │ │ ├── ComponentName.c │ │ ├── UsbMass.h │ │ ├── UsbMassBoot.c │ │ ├── UsbMassBoot.h │ │ ├── UsbMassBot.c │ │ ├── UsbMassBot.h │ │ ├── UsbMassCbi.c │ │ ├── UsbMassCbi.h │ │ ├── UsbMassDiskInfo.c │ │ ├── UsbMassDiskInfo.h │ │ ├── UsbMassImpl.c │ │ ├── UsbMassImpl.h │ │ ├── UsbMassStorageDxe.inf │ │ ├── UsbMassStorageDxe.uni │ │ └── UsbMassStorageDxeExtra.uni │ │ ├── UsbMouseAbsolutePointerDxe │ │ ├── ComponentName.c │ │ ├── MouseHid.c │ │ ├── UsbMouseAbsolutePointer.c │ │ ├── UsbMouseAbsolutePointer.h │ │ ├── UsbMouseAbsolutePointerDxe.inf │ │ ├── UsbMouseAbsolutePointerDxe.uni │ │ └── UsbMouseAbsolutePointerDxeExtra.uni │ │ └── UsbMouseDxe │ │ ├── ComponentName.c │ │ ├── MouseHid.c │ │ ├── UsbMouse.c │ │ ├── UsbMouse.h │ │ ├── UsbMouseDxe.inf │ │ ├── UsbMouseDxe.uni │ │ └── UsbMouseDxeExtra.uni ├── Core │ ├── Dxe │ │ ├── Dispatcher │ │ │ ├── Dependency.c │ │ │ └── Dispatcher.c │ │ ├── DxeCore.uni │ │ ├── DxeCoreExtra.uni │ │ ├── DxeMain.h │ │ ├── DxeMain.inf │ │ ├── DxeMain │ │ │ ├── DxeMain.c │ │ │ └── DxeProtocolNotify.c │ │ ├── Event │ │ │ ├── Event.c │ │ │ ├── Event.h │ │ │ ├── Timer.c │ │ │ └── Tpl.c │ │ ├── FwVol │ │ │ ├── Ffs.c │ │ │ ├── FwVol.c │ │ │ ├── FwVolAttrib.c │ │ │ ├── FwVolDriver.h │ │ │ ├── FwVolRead.c │ │ │ └── FwVolWrite.c │ │ ├── FwVolBlock │ │ │ ├── FwVolBlock.c │ │ │ └── FwVolBlock.h │ │ ├── Gcd │ │ │ ├── Gcd.c │ │ │ └── Gcd.h │ │ ├── Hand │ │ │ ├── DriverSupport.c │ │ │ ├── Handle.c │ │ │ ├── Handle.h │ │ │ ├── Locate.c │ │ │ └── Notify.c │ │ ├── Image │ │ │ ├── Image.c │ │ │ └── Image.h │ │ ├── Library │ │ │ └── Library.c │ │ ├── Mem │ │ │ ├── HeapGuard.c │ │ │ ├── HeapGuard.h │ │ │ ├── Imem.h │ │ │ ├── MemData.c │ │ │ ├── MemoryProfileRecord.c │ │ │ ├── Page.c │ │ │ └── Pool.c │ │ ├── Misc │ │ │ ├── DebugImageInfo.c │ │ │ ├── InstallConfigurationTable.c │ │ │ ├── MemoryAttributesTable.c │ │ │ ├── MemoryProtection.c │ │ │ ├── SetWatchdogTimer.c │ │ │ └── Stall.c │ │ └── SectionExtraction │ │ │ └── CoreSectionExtraction.c │ ├── DxeIplPeim │ │ ├── Arm │ │ │ └── DxeLoadFunc.c │ │ ├── DxeIpl.h │ │ ├── DxeIpl.inf │ │ ├── DxeIpl.uni │ │ ├── DxeIplExtra.uni │ │ ├── DxeLoad.c │ │ ├── Ebc │ │ │ └── DxeLoadFunc.c │ │ ├── Ia32 │ │ │ ├── DxeLoadFunc.c │ │ │ └── IdtVectorAsm.nasm │ │ ├── RiscV64 │ │ │ └── DxeLoadFunc.c │ │ └── X64 │ │ │ ├── DxeLoadFunc.c │ │ │ ├── VirtualMemory.c │ │ │ └── VirtualMemory.h │ ├── Pei │ │ ├── BootMode │ │ │ └── BootMode.c │ │ ├── CpuIo │ │ │ └── CpuIo.c │ │ ├── Dependency │ │ │ ├── Dependency.c │ │ │ └── Dependency.h │ │ ├── Dispatcher │ │ │ └── Dispatcher.c │ │ ├── FwVol │ │ │ ├── FwVol.c │ │ │ └── FwVol.h │ │ ├── Hob │ │ │ └── Hob.c │ │ ├── Image │ │ │ └── Image.c │ │ ├── Memory │ │ │ └── MemoryServices.c │ │ ├── PciCfg2 │ │ │ └── PciCfg2.c │ │ ├── PeiCore.uni │ │ ├── PeiCoreExtra.uni │ │ ├── PeiMain.h │ │ ├── PeiMain.inf │ │ ├── PeiMain │ │ │ └── PeiMain.c │ │ ├── Ppi │ │ │ └── Ppi.c │ │ ├── Reset │ │ │ └── Reset.c │ │ ├── Security │ │ │ └── Security.c │ │ └── StatusCode │ │ │ └── StatusCode.c │ ├── PiSmmCore │ │ ├── Dependency.c │ │ ├── Dispatcher.c │ │ ├── Handle.c │ │ ├── HeapGuard.c │ │ ├── HeapGuard.h │ │ ├── InstallConfigurationTable.c │ │ ├── Locate.c │ │ ├── MemoryAttributesTable.c │ │ ├── Notify.c │ │ ├── Page.c │ │ ├── PiSmmCore.c │ │ ├── PiSmmCore.h │ │ ├── PiSmmCore.inf │ │ ├── PiSmmCore.uni │ │ ├── PiSmmCoreExtra.uni │ │ ├── PiSmmCorePrivateData.h │ │ ├── PiSmmIpl.c │ │ ├── PiSmmIpl.inf │ │ ├── PiSmmIpl.uni │ │ ├── PiSmmIplExtra.uni │ │ ├── Pool.c │ │ ├── Smi.c │ │ ├── SmiHandlerProfile.c │ │ └── SmramProfileRecord.c │ └── RuntimeDxe │ │ ├── Crc32.c │ │ ├── Runtime.c │ │ ├── Runtime.h │ │ ├── RuntimeDxe.inf │ │ ├── RuntimeDxe.uni │ │ └── RuntimeDxeExtra.uni ├── Include │ ├── Guid │ │ ├── AcpiS3Context.h │ │ ├── BootScriptExecutorVariable.h │ │ ├── CapsuleVendor.h │ │ ├── ConnectConInEvent.h │ │ ├── ConsoleInDevice.h │ │ ├── ConsoleOutDevice.h │ │ ├── Crc32GuidedSectionExtraction.h │ │ ├── DebugMask.h │ │ ├── DriverSampleHii.h │ │ ├── EndOfS3Resume.h │ │ ├── EventExitBootServiceFailed.h │ │ ├── ExtendedFirmwarePerformance.h │ │ ├── FaultTolerantWrite.h │ │ ├── FirmwarePerformance.h │ │ ├── HiiBootMaintenanceFormset.h │ │ ├── HiiResourceSampleHii.h │ │ ├── IdleLoopEvent.h │ │ ├── LoadModuleAtFixedAddress.h │ │ ├── LzmaDecompress.h │ │ ├── MdeModuleHii.h │ │ ├── MdeModulePkgTokenSpace.h │ │ ├── MemoryProfile.h │ │ ├── MemoryStatusCodeRecord.h │ │ ├── MemoryTypeInformation.h │ │ ├── MigratedFvInfo.h │ │ ├── MtcVendor.h │ │ ├── NonDiscoverableDevice.h │ │ ├── PcdDataBaseHobGuid.h │ │ ├── PcdDataBaseSignatureGuid.h │ │ ├── Performance.h │ │ ├── PerformanceMeasurement.h │ │ ├── PiSmmCommunicationRegionTable.h │ │ ├── PiSmmMemoryAttributesTable.h │ │ ├── PlatDriOverrideHii.h │ │ ├── PlatformHasAcpi.h │ │ ├── RamDiskHii.h │ │ ├── RecoveryDevice.h │ │ ├── S3SmmInitDone.h │ │ ├── S3StorageDeviceInitList.h │ │ ├── SerialPortLibVendor.h │ │ ├── SmiHandlerProfile.h │ │ ├── SmmLockBox.h │ │ ├── SmmVariableCommon.h │ │ ├── StandardErrorDevice.h │ │ ├── StatusCodeCallbackGuid.h │ │ ├── StatusCodeDataTypeDebug.h │ │ ├── StatusCodeDataTypeVariable.h │ │ ├── SystemNvDataGuid.h │ │ ├── TtyTerm.h │ │ ├── UsbKeyBoardLayout.h │ │ ├── VarCheckPolicyMmi.h │ │ ├── VarErrorFlag.h │ │ ├── VariableFormat.h │ │ ├── VariableIndexTable.h │ │ └── ZeroGuid.h │ ├── Library │ │ ├── AuthVariableLib.h │ │ ├── BmpSupportLib.h │ │ ├── BootLogoLib.h │ │ ├── CapsuleLib.h │ │ ├── CpuExceptionHandlerLib.h │ │ ├── CustomizedDisplayLib.h │ │ ├── DebugAgentLib.h │ │ ├── DisplayUpdateProgressLib.h │ │ ├── FileExplorerLib.h │ │ ├── FmpAuthenticationLib.h │ │ ├── FrameBufferBltLib.h │ │ ├── HiiLib.h │ │ ├── IpmiLib.h │ │ ├── LockBoxLib.h │ │ ├── MemoryProfileLib.h │ │ ├── NonDiscoverableDeviceRegistrationLib.h │ │ ├── OemHookStatusCodeLib.h │ │ ├── PciHostBridgeLib.h │ │ ├── PlatformBootManagerLib.h │ │ ├── PlatformHookLib.h │ │ ├── PlatformVarCleanupLib.h │ │ ├── ResetSystemLib.h │ │ ├── ResetUtilityLib.h │ │ ├── SecurityManagementLib.h │ │ ├── SmmCorePlatformHookLib.h │ │ ├── SortLib.h │ │ ├── TpmMeasurementLib.h │ │ ├── UefiBootManagerLib.h │ │ ├── UefiHiiServicesLib.h │ │ ├── VarCheckLib.h │ │ ├── VariablePolicyHelperLib.h │ │ └── VariablePolicyLib.h │ ├── Ppi │ │ ├── AtaAhciController.h │ │ ├── AtaController.h │ │ ├── AtaPassThru.h │ │ ├── CapsuleOnDisk.h │ │ ├── Debug.h │ │ ├── IoMmu.h │ │ ├── IpmiPpi.h │ │ ├── NvmExpressHostController.h │ │ ├── NvmExpressPassThru.h │ │ ├── PlatformSpecificResetFilter.h │ │ ├── PlatformSpecificResetHandler.h │ │ ├── PlatformSpecificResetNotification.h │ │ ├── PostBootScriptTable.h │ │ ├── SdMmcHostController.h │ │ ├── SecPerformance.h │ │ ├── SerialPortPei.h │ │ ├── SmmAccess.h │ │ ├── SmmCommunication.h │ │ ├── SmmControl.h │ │ ├── StorageSecurityCommand.h │ │ ├── UfsHostController.h │ │ ├── Usb2HostController.h │ │ ├── UsbController.h │ │ ├── UsbHostController.h │ │ └── UsbIo.h │ └── Protocol │ │ ├── AtaAtapiPolicy.h │ │ ├── BootLogo.h │ │ ├── BootLogo2.h │ │ ├── DebuggerConfiguration.h │ │ ├── DeviceSecurity.h │ │ ├── DisplayProtocol.h │ │ ├── EbcSimpleDebugger.h │ │ ├── EbcVmTest.h │ │ ├── EsrtManagement.h │ │ ├── FaultTolerantWrite.h │ │ ├── FileExplorer.h │ │ ├── FirmwareManagementProgress.h │ │ ├── FormBrowserEx.h │ │ ├── FormBrowserEx2.h │ │ ├── GenericMemoryTest.h │ │ ├── IoMmu.h │ │ ├── IpmiProtocol.h │ │ ├── LoadPe32Image.h │ │ ├── LockBox.h │ │ ├── NonDiscoverableDevice.h │ │ ├── PeCoffImageEmulator.h │ │ ├── PlatformBootManager.h │ │ ├── PlatformLogo.h │ │ ├── PlatformSpecificResetFilter.h │ │ ├── PlatformSpecificResetHandler.h │ │ ├── Print2.h │ │ ├── Ps2Policy.h │ │ ├── SdMmcOverride.h │ │ ├── SmmExitBootServices.h │ │ ├── SmmFaultTolerantWrite.h │ │ ├── SmmFirmwareVolumeBlock.h │ │ ├── SmmLegacyBoot.h │ │ ├── SmmMemoryAttribute.h │ │ ├── SmmReadyToBoot.h │ │ ├── SmmSwapAddressRange.h │ │ ├── SmmVarCheck.h │ │ ├── SmmVariable.h │ │ ├── SwapAddressRange.h │ │ ├── UfsHostController.h │ │ ├── UfsHostControllerPlatform.h │ │ ├── VarCheck.h │ │ ├── VariableLock.h │ │ └── VariablePolicy.h ├── Library │ ├── AuthVariableLibNull │ │ ├── AuthVariableLibNull.c │ │ ├── AuthVariableLibNull.inf │ │ └── AuthVariableLibNull.uni │ ├── BaseBmpSupportLib │ │ ├── BaseBmpSupportLib.inf │ │ ├── BaseBmpSupportLib.uni │ │ └── BmpSupportLib.c │ ├── BaseHobLibNull │ │ ├── BaseHobLibNull.c │ │ ├── BaseHobLibNull.inf │ │ └── BaseHobLibNull.uni │ ├── BaseIpmiLibNull │ │ ├── BaseIpmiLibNull.c │ │ ├── BaseIpmiLibNull.inf │ │ └── BaseIpmiLibNull.uni │ ├── BaseMemoryAllocationLibNull │ │ ├── BaseMemoryAllocationLibNull.c │ │ ├── BaseMemoryAllocationLibNull.inf │ │ └── BaseMemoryAllocationLibNull.uni │ ├── BasePlatformHookLibNull │ │ ├── BasePlatformHookLibNull.c │ │ ├── BasePlatformHookLibNull.inf │ │ └── BasePlatformHookLibNull.uni │ ├── BaseResetSystemLibNull │ │ ├── BaseResetSystemLibNull.c │ │ ├── BaseResetSystemLibNull.inf │ │ └── BaseResetSystemLibNull.uni │ ├── BaseSerialPortLib16550 │ │ ├── BaseSerialPortLib16550.c │ │ ├── BaseSerialPortLib16550.inf │ │ └── BaseSerialPortLib16550.uni │ ├── BaseSortLib │ │ ├── BaseSortLib.c │ │ ├── BaseSortLib.inf │ │ └── BaseSortLib.uni │ ├── BootLogoLib │ │ ├── BootLogoLib.c │ │ ├── BootLogoLib.inf │ │ └── BootLogoLib.uni │ ├── BootMaintenanceManagerUiLib │ │ ├── BmLib.c │ │ ├── BootMaintenance.c │ │ ├── BootMaintenanceManager.h │ │ ├── BootMaintenanceManager.vfr │ │ ├── BootMaintenanceManagerCustomizedUi.c │ │ ├── BootMaintenanceManagerCustomizedUi.h │ │ ├── BootMaintenanceManagerCustomizedUiSupport.c │ │ ├── BootMaintenanceManagerCustomizedUiSupport.h │ │ ├── BootMaintenanceManagerStrings.uni │ │ ├── BootMaintenanceManagerUiLib.inf │ │ ├── BootMaintenanceManagerUiLib.uni │ │ ├── BootOption.c │ │ ├── ConsoleOption.c │ │ ├── Data.c │ │ ├── FormGuid.h │ │ ├── UpdatePage.c │ │ └── Variable.c │ ├── BootManagerUiLib │ │ ├── BootManager.c │ │ ├── BootManager.h │ │ ├── BootManagerStrings.uni │ │ ├── BootManagerUiLib.inf │ │ ├── BootManagerUiLib.uni │ │ └── BootManagerVfr.Vfr │ ├── BrotliCustomDecompressLib │ │ ├── BrotliCustomDecompressLib.inf │ │ ├── BrotliDecUefiSupport.c │ │ ├── BrotliDecUefiSupport.h │ │ ├── BrotliDecompress.c │ │ ├── BrotliDecompressLib.uni │ │ ├── BrotliDecompressLibInternal.h │ │ ├── GuidedSectionExtraction.c │ │ ├── stddef.h │ │ ├── stdint.h │ │ ├── stdlib.h │ │ └── string.h │ ├── CpuExceptionHandlerLibNull │ │ ├── CpuExceptionHandlerLibNull.c │ │ ├── CpuExceptionHandlerLibNull.inf │ │ └── CpuExceptionHandlerLibNull.uni │ ├── CustomizedDisplayLib │ │ ├── Colors.h │ │ ├── CustomizedDisplayLib.c │ │ ├── CustomizedDisplayLib.inf │ │ ├── CustomizedDisplayLib.uni │ │ ├── CustomizedDisplayLibInternal.c │ │ ├── CustomizedDisplayLibInternal.h │ │ └── CustomizedDisplayLibModStrs.uni │ ├── DebugAgentLibNull │ │ ├── DebugAgentLibNull.c │ │ ├── DebugAgentLibNull.inf │ │ └── DebugAgentLibNull.uni │ ├── DeviceManagerUiLib │ │ ├── DeviceManager.c │ │ ├── DeviceManager.h │ │ ├── DeviceManagerStrings.uni │ │ ├── DeviceManagerUiLib.inf │ │ ├── DeviceManagerUiLib.uni │ │ └── DeviceManagerVfr.Vfr │ ├── DisplayUpdateProgressLibGraphics │ │ ├── DisplayUpdateProgressLibGraphics.c │ │ ├── DisplayUpdateProgressLibGraphics.inf │ │ └── DisplayUpdateProgressLibGraphics.uni │ ├── DisplayUpdateProgressLibText │ │ ├── DisplayUpdateProgressLibText.c │ │ ├── DisplayUpdateProgressLibText.inf │ │ └── DisplayUpdateProgressLibText.uni │ ├── DxeCapsuleLibFmp │ │ ├── CapsuleOnDisk.c │ │ ├── CapsuleOnDisk.h │ │ ├── DxeCapsuleLib.c │ │ ├── DxeCapsuleLib.inf │ │ ├── DxeCapsuleLib.uni │ │ ├── DxeCapsuleProcessLib.c │ │ ├── DxeCapsuleProcessLibNull.c │ │ ├── DxeCapsuleReportLib.c │ │ ├── DxeCapsuleReportLibNull.c │ │ ├── DxeCapsuleRuntime.c │ │ ├── DxeRuntimeCapsuleLib.inf │ │ └── DxeRuntimeCapsuleLib.uni │ ├── DxeCapsuleLibNull │ │ ├── DxeCapsuleLibNull.c │ │ ├── DxeCapsuleLibNull.inf │ │ └── DxeCapsuleLibNull.uni │ ├── DxeCoreMemoryAllocationLib │ │ ├── DxeCoreMemoryAllocationLib.inf │ │ ├── DxeCoreMemoryAllocationLib.uni │ │ ├── DxeCoreMemoryAllocationProfileLib.inf │ │ ├── DxeCoreMemoryAllocationProfileLib.uni │ │ ├── DxeCoreMemoryAllocationServices.h │ │ ├── DxeCoreMemoryProfileLib.c │ │ ├── DxeCoreMemoryProfileLibNull.c │ │ ├── DxeCoreMemoryProfileServices.h │ │ └── MemoryAllocationLib.c │ ├── DxeCorePerformanceLib │ │ ├── DxeCorePerformanceLib.c │ │ ├── DxeCorePerformanceLib.inf │ │ ├── DxeCorePerformanceLib.uni │ │ └── DxeCorePerformanceLibInternal.h │ ├── DxeCrc32GuidedSectionExtractLib │ │ ├── DxeCrc32GuidedSectionExtractLib.c │ │ ├── DxeCrc32GuidedSectionExtractLib.inf │ │ └── DxeCrc32GuidedSectionExtractLib.uni │ ├── DxeDebugPrintErrorLevelLib │ │ ├── DxeDebugPrintErrorLevelLib.c │ │ ├── DxeDebugPrintErrorLevelLib.inf │ │ └── DxeDebugPrintErrorLevelLib.uni │ ├── DxeFileExplorerProtocol │ │ ├── DxeFileExplorerProtocol.c │ │ ├── DxeFileExplorerProtocol.inf │ │ └── DxeFileExplorerProtocol.uni │ ├── DxeIpmiLibIpmiProtocol │ │ ├── DxeIpmiLibIpmiProtocol.c │ │ ├── DxeIpmiLibIpmiProtocol.inf │ │ └── DxeIpmiLibIpmiProtocol.uni │ ├── DxePerformanceLib │ │ ├── DxePerformanceLib.c │ │ ├── DxePerformanceLib.inf │ │ └── DxePerformanceLib.uni │ ├── DxePrintLibPrint2Protocol │ │ ├── DxePrintLibPrint2Protocol.inf │ │ ├── DxePrintLibPrint2Protocol.uni │ │ └── PrintLib.c │ ├── DxeReportStatusCodeLib │ │ ├── DxeReportStatusCodeLib.inf │ │ ├── DxeReportStatusCodeLib.uni │ │ └── ReportStatusCodeLib.c │ ├── DxeResetSystemLib │ │ ├── DxeResetSystemLib.c │ │ ├── DxeResetSystemLib.inf │ │ ├── DxeResetSystemLib.uni │ │ └── UnitTest │ │ │ ├── DxeResetSystemLibUnitTest.c │ │ │ ├── DxeResetSystemLibUnitTestHost.inf │ │ │ ├── MockUefiRuntimeServicesTableLib.c │ │ │ └── MockUefiRuntimeServicesTableLib.inf │ ├── DxeSecurityManagementLib │ │ ├── DxeSecurityManagementLib.c │ │ ├── DxeSecurityManagementLib.inf │ │ └── DxeSecurityManagementLib.uni │ ├── FileExplorerLib │ │ ├── FileExplorer.c │ │ ├── FileExplorer.h │ │ ├── FileExplorerLib.inf │ │ ├── FileExplorerLib.uni │ │ ├── FileExplorerString.uni │ │ ├── FileExplorerVfr.vfr │ │ └── FormGuid.h │ ├── FmpAuthenticationLibNull │ │ ├── FmpAuthenticationLibNull.c │ │ ├── FmpAuthenticationLibNull.inf │ │ └── FmpAuthenticationLibNull.uni │ ├── FrameBufferBltLib │ │ ├── FrameBufferBltLib.c │ │ └── FrameBufferBltLib.inf │ ├── LockBoxNullLib │ │ ├── LockBoxNullLib.c │ │ ├── LockBoxNullLib.inf │ │ └── LockBoxNullLib.uni │ ├── LzmaCustomDecompressLib │ │ ├── F86GuidedSectionExtraction.c │ │ ├── GuidedSectionExtraction.c │ │ ├── LZMA-SDK-README.txt │ │ ├── LzmaArchCustomDecompressLib.inf │ │ ├── LzmaArchDecompressLib.uni │ │ ├── LzmaCustomDecompressLib.inf │ │ ├── LzmaDecompress.c │ │ ├── LzmaDecompressLib.uni │ │ ├── LzmaDecompressLibInternal.h │ │ ├── Sdk │ │ │ ├── C │ │ │ │ ├── 7zTypes.h │ │ │ │ ├── 7zVersion.h │ │ │ │ ├── Bra.h │ │ │ │ ├── Bra86.c │ │ │ │ ├── Compiler.h │ │ │ │ ├── CpuArch.h │ │ │ │ ├── LzFind.c │ │ │ │ ├── LzFind.h │ │ │ │ ├── LzHash.h │ │ │ │ ├── LzmaDec.c │ │ │ │ ├── LzmaDec.h │ │ │ │ └── Precomp.h │ │ │ └── DOC │ │ │ │ ├── lzma-history.txt │ │ │ │ └── lzma-sdk.txt │ │ └── UefiLzma.h │ ├── NonDiscoverableDeviceRegistrationLib │ │ ├── NonDiscoverableDeviceRegistrationLib.c │ │ └── NonDiscoverableDeviceRegistrationLib.inf │ ├── OemHookStatusCodeLibNull │ │ ├── OemHookStatusCodeLibNull.c │ │ ├── OemHookStatusCodeLibNull.inf │ │ └── OemHookStatusCodeLibNull.uni │ ├── PciHostBridgeLibNull │ │ ├── PciHostBridgeLibNull.c │ │ ├── PciHostBridgeLibNull.inf │ │ └── PciHostBridgeLibNull.uni │ ├── PeiCrc32GuidedSectionExtractLib │ │ ├── PeiCrc32GuidedSectionExtractLib.c │ │ ├── PeiCrc32GuidedSectionExtractLib.inf │ │ └── PeiCrc32GuidedSectionExtractLib.uni │ ├── PeiDebugLibDebugPpi │ │ ├── DebugLib.c │ │ └── PeiDebugLibDebugPpi.inf │ ├── PeiDebugPrintHobLib │ │ ├── PeiDebugPrintHobLib.c │ │ ├── PeiDebugPrintHobLib.inf │ │ └── PeiDebugPrintHobLib.uni │ ├── PeiDxeDebugLibReportStatusCode │ │ ├── DebugLib.c │ │ ├── PeiDxeDebugLibReportStatusCode.inf │ │ └── PeiDxeDebugLibReportStatusCode.uni │ ├── PeiIpmiLibIpmiPpi │ │ ├── PeiIpmiLibIpmiPpi.c │ │ ├── PeiIpmiLibIpmiPpi.inf │ │ └── PeiIpmiLibIpmiPpi.uni │ ├── PeiPerformanceLib │ │ ├── PeiPerformanceLib.c │ │ ├── PeiPerformanceLib.inf │ │ └── PeiPerformanceLib.uni │ ├── PeiReportStatusCodeLib │ │ ├── PeiReportStatusCodeLib.inf │ │ ├── PeiReportStatusCodeLib.uni │ │ └── ReportStatusCodeLib.c │ ├── PeiResetSystemLib │ │ ├── PeiResetSystemLib.c │ │ ├── PeiResetSystemLib.inf │ │ └── PeiResetSystemLib.uni │ ├── PiDxeS3BootScriptLib │ │ ├── BootScriptExecute.c │ │ ├── BootScriptInternalFormat.h │ │ ├── BootScriptSave.c │ │ ├── DxeS3BootScriptLib.inf │ │ ├── DxeS3BootScriptLib.uni │ │ └── InternalBootScriptLib.h │ ├── PiSmmCoreMemoryAllocationLib │ │ ├── MemoryAllocationLib.c │ │ ├── PiSmmCoreMemoryAllocationLib.inf │ │ ├── PiSmmCoreMemoryAllocationLib.uni │ │ ├── PiSmmCoreMemoryAllocationProfileLib.inf │ │ ├── PiSmmCoreMemoryAllocationProfileLib.uni │ │ ├── PiSmmCoreMemoryAllocationServices.h │ │ ├── PiSmmCoreMemoryProfileLib.c │ │ ├── PiSmmCoreMemoryProfileLibNull.c │ │ └── PiSmmCoreMemoryProfileServices.h │ ├── PiSmmCoreSmmServicesTableLib │ │ ├── PiSmmCoreSmmServicesTableLib.c │ │ ├── PiSmmCoreSmmServicesTableLib.inf │ │ └── PiSmmCoreSmmServicesTableLib.uni │ ├── PlatformBootManagerLibNull │ │ ├── PlatformBootManager.c │ │ ├── PlatformBootManagerLibNull.inf │ │ └── PlatformBootManagerLibNull.uni │ ├── PlatformHookLibSerialPortPpi │ │ ├── PlatformHookLibSerialPortPpi.c │ │ ├── PlatformHookLibSerialPortPpi.inf │ │ └── PlatformHookLibSerialPortPpi.uni │ ├── PlatformVarCleanupLib │ │ ├── PlatVarCleanup.h │ │ ├── PlatVarCleanup.vfr │ │ ├── PlatVarCleanupHii.h │ │ ├── PlatVarCleanupLib.c │ │ ├── PlatformVarCleanupLib.inf │ │ ├── PlatformVarCleanupLib.uni │ │ └── VfrStrings.uni │ ├── ResetUtilityLib │ │ ├── ResetUtility.c │ │ └── ResetUtilityLib.inf │ ├── RuntimeDxeReportStatusCodeLib │ │ ├── ReportStatusCodeLib.c │ │ ├── RuntimeDxeReportStatusCodeLib.inf │ │ └── RuntimeDxeReportStatusCodeLib.uni │ ├── RuntimeResetSystemLib │ │ ├── RuntimeResetSystemLib.c │ │ ├── RuntimeResetSystemLib.inf │ │ └── RuntimeResetSystemLib.uni │ ├── SmmCorePerformanceLib │ │ ├── SmmCorePerformanceLib.c │ │ ├── SmmCorePerformanceLib.inf │ │ ├── SmmCorePerformanceLib.uni │ │ └── SmmCorePerformanceLibInternal.h │ ├── SmmCorePlatformHookLibNull │ │ ├── SmmCorePlatformHookLibNull.c │ │ ├── SmmCorePlatformHookLibNull.inf │ │ └── SmmCorePlatformHookLibNull.uni │ ├── SmmIpmiLibSmmIpmiProtocol │ │ ├── SmmIpmiLibSmmIpmiProtocol.c │ │ ├── SmmIpmiLibSmmIpmiProtocol.inf │ │ └── SmmIpmiLibSmmIpmiProtocol.uni │ ├── SmmLockBoxLib │ │ ├── SmmLockBoxDxeLib.c │ │ ├── SmmLockBoxDxeLib.inf │ │ ├── SmmLockBoxDxeLib.uni │ │ ├── SmmLockBoxLibPrivate.h │ │ ├── SmmLockBoxPeiLib.c │ │ ├── SmmLockBoxPeiLib.inf │ │ ├── SmmLockBoxPeiLib.uni │ │ ├── SmmLockBoxSmmLib.c │ │ ├── SmmLockBoxSmmLib.inf │ │ └── SmmLockBoxSmmLib.uni │ ├── SmmMemoryAllocationProfileLib │ │ ├── MemoryAllocationLib.c │ │ ├── SmmMemoryAllocationProfileLib.inf │ │ ├── SmmMemoryAllocationProfileLib.uni │ │ └── SmmMemoryProfileLib.c │ ├── SmmPerformanceLib │ │ ├── SmmPerformanceLib.c │ │ ├── SmmPerformanceLib.inf │ │ └── SmmPerformanceLib.uni │ ├── SmmReportStatusCodeLib │ │ ├── ReportStatusCodeLib.c │ │ ├── SmmReportStatusCodeLib.inf │ │ └── SmmReportStatusCodeLib.uni │ ├── SmmSmiHandlerProfileLib │ │ ├── SmmSmiHandlerProfileLib.c │ │ ├── SmmSmiHandlerProfileLib.inf │ │ └── SmmSmiHandlerProfileLib.uni │ ├── TpmMeasurementLibNull │ │ ├── TpmMeasurementLibNull.c │ │ ├── TpmMeasurementLibNull.inf │ │ └── TpmMeasurementLibNull.uni │ ├── UefiBootManagerLib │ │ ├── BmBoot.c │ │ ├── BmBootDescription.c │ │ ├── BmConnect.c │ │ ├── BmConsole.c │ │ ├── BmDriverHealth.c │ │ ├── BmHotkey.c │ │ ├── BmLoadOption.c │ │ ├── BmMisc.c │ │ ├── InternalBm.h │ │ ├── UefiBootManagerLib.inf │ │ └── UefiBootManagerLib.uni │ ├── UefiHiiLib │ │ ├── HiiLanguage.c │ │ ├── HiiLib.c │ │ ├── HiiString.c │ │ ├── InternalHiiLib.h │ │ ├── UefiHiiLib.inf │ │ └── UefiHiiLib.uni │ ├── UefiHiiServicesLib │ │ ├── UefiHiiServicesLib.c │ │ ├── UefiHiiServicesLib.inf │ │ └── UefiHiiServicesLib.uni │ ├── UefiMemoryAllocationProfileLib │ │ ├── DxeMemoryProfileLib.c │ │ ├── MemoryAllocationLib.c │ │ ├── UefiMemoryAllocationProfileLib.inf │ │ └── UefiMemoryAllocationProfileLib.uni │ ├── UefiSortLib │ │ ├── UefiSortLib.c │ │ ├── UefiSortLib.inf │ │ └── UefiSortLib.uni │ ├── VarCheckHiiLib │ │ ├── InternalVarCheckStructure.h │ │ ├── VarCheckHii.h │ │ ├── VarCheckHiiGen.c │ │ ├── VarCheckHiiGen.h │ │ ├── VarCheckHiiGenFromFv.c │ │ ├── VarCheckHiiGenFromHii.c │ │ ├── VarCheckHiiLib.inf │ │ ├── VarCheckHiiLib.uni │ │ └── VarCheckHiiLibNullClass.c │ ├── VarCheckLib │ │ ├── VarCheckLib.c │ │ ├── VarCheckLib.inf │ │ └── VarCheckLib.uni │ ├── VarCheckPcdLib │ │ ├── VarCheckPcdLib.inf │ │ ├── VarCheckPcdLib.uni │ │ ├── VarCheckPcdLibNullClass.c │ │ └── VarCheckPcdStructure.h │ ├── VarCheckPolicyLib │ │ ├── VarCheckPolicyLib.c │ │ ├── VarCheckPolicyLib.inf │ │ └── VarCheckPolicyLib.uni │ ├── VarCheckUefiLib │ │ ├── VarCheckUefiLib.inf │ │ ├── VarCheckUefiLib.uni │ │ └── VarCheckUefiLibNullClass.c │ ├── VariablePolicyHelperLib │ │ ├── VariablePolicyHelperLib.c │ │ ├── VariablePolicyHelperLib.inf │ │ └── VariablePolicyHelperLib.uni │ └── VariablePolicyLib │ │ ├── ReadMe.md │ │ ├── VariablePolicyExtraInitNull.c │ │ ├── VariablePolicyExtraInitRuntimeDxe.c │ │ ├── VariablePolicyLib.c │ │ ├── VariablePolicyLib.inf │ │ ├── VariablePolicyLib.uni │ │ └── VariablePolicyLibRuntimeDxe.inf ├── Logo │ ├── Logo.bmp │ ├── Logo.c │ ├── Logo.idf │ ├── Logo.inf │ ├── Logo.uni │ ├── LogoDxe.inf │ ├── LogoDxe.uni │ ├── LogoDxeExtra.uni │ └── LogoExtra.uni ├── MdeModulePkg.ci.yaml ├── MdeModulePkg.dec ├── MdeModulePkg.dsc ├── MdeModulePkg.uni ├── MdeModulePkgExtra.uni ├── Test │ └── MdeModulePkgHostTest.dsc └── Universal │ ├── Acpi │ ├── AcpiPlatformDxe │ │ ├── AcpiPlatform.c │ │ ├── AcpiPlatform.uni │ │ ├── AcpiPlatformDxe.inf │ │ └── AcpiPlatformExtra.uni │ ├── AcpiTableDxe │ │ ├── AcpiSdt.c │ │ ├── AcpiSdt.h │ │ ├── AcpiTable.c │ │ ├── AcpiTable.h │ │ ├── AcpiTableDxe.inf │ │ ├── AcpiTableDxe.uni │ │ ├── AcpiTableDxeExtra.uni │ │ ├── AcpiTableProtocol.c │ │ ├── Aml.c │ │ ├── AmlChild.c │ │ ├── AmlNamespace.c │ │ ├── AmlOption.c │ │ └── AmlString.c │ ├── BootGraphicsResourceTableDxe │ │ ├── BootGraphicsResourceTableDxe.c │ │ ├── BootGraphicsResourceTableDxe.inf │ │ ├── BootGraphicsResourceTableDxe.uni │ │ └── BootGraphicsResourceTableDxeExtra.uni │ ├── BootScriptExecutorDxe │ │ ├── BootScriptExecutorDxe.inf │ │ ├── BootScriptExecutorDxe.uni │ │ ├── BootScriptExecutorDxeExtra.uni │ │ ├── IA32 │ │ │ ├── S3Asm.nasm │ │ │ └── SetIdtEntry.c │ │ ├── ScriptExecute.c │ │ ├── ScriptExecute.h │ │ └── X64 │ │ │ ├── S3Asm.nasm │ │ │ └── SetIdtEntry.c │ ├── FirmwarePerformanceDataTableDxe │ │ ├── FirmwarePerformanceDxe.c │ │ ├── FirmwarePerformanceDxe.inf │ │ ├── FirmwarePerformanceDxe.uni │ │ └── FirmwarePerformanceDxeExtra.uni │ ├── FirmwarePerformanceDataTablePei │ │ ├── FirmwarePerformancePei.c │ │ ├── FirmwarePerformancePei.inf │ │ ├── FirmwarePerformancePei.uni │ │ └── FirmwarePerformancePeiExtra.uni │ ├── FirmwarePerformanceDataTableSmm │ │ ├── FirmwarePerformanceSmm.c │ │ ├── FirmwarePerformanceSmm.inf │ │ ├── FirmwarePerformanceSmm.uni │ │ └── FirmwarePerformanceSmmExtra.uni │ ├── S3SaveStateDxe │ │ ├── AcpiS3ContextSave.c │ │ ├── InternalS3SaveState.h │ │ ├── S3SaveState.c │ │ ├── S3SaveStateDxe.inf │ │ ├── S3SaveStateDxe.uni │ │ └── S3SaveStateDxeExtra.uni │ └── SmmS3SaveState │ │ ├── InternalSmmSaveState.h │ │ ├── SmmS3SaveState.c │ │ ├── SmmS3SaveState.inf │ │ ├── SmmS3SaveState.uni │ │ └── SmmS3SaveStateExtra.uni │ ├── BdsDxe │ ├── Bds.h │ ├── BdsDxe.inf │ ├── BdsDxe.uni │ ├── BdsDxeExtra.uni │ ├── BdsEntry.c │ ├── HwErrRecSupport.c │ ├── HwErrRecSupport.h │ ├── Language.c │ └── Language.h │ ├── BootManagerPolicyDxe │ ├── BootManagerPolicyDxe.c │ ├── BootManagerPolicyDxe.inf │ ├── BootManagerPolicyDxe.uni │ └── BootManagerPolicyDxeExtra.uni │ ├── CapsuleOnDiskLoadPei │ ├── CapsuleOnDiskLoadPei.c │ ├── CapsuleOnDiskLoadPei.inf │ ├── CapsuleOnDiskLoadPei.uni │ └── CapsuleOnDiskLoadPeiExtra.uni │ ├── CapsulePei │ ├── Capsule.h │ ├── CapsulePei.inf │ ├── CapsulePei.uni │ ├── CapsulePeiExtra.uni │ ├── CapsuleX64.inf │ ├── CapsuleX64.uni │ ├── CapsuleX64Extra.uni │ ├── Common │ │ ├── CapsuleCoalesce.c │ │ └── CommonHeader.h │ ├── UefiCapsule.c │ └── X64 │ │ ├── PageFaultHandler.nasm │ │ └── X64Entry.c │ ├── CapsuleRuntimeDxe │ ├── Arm │ │ └── CapsuleReset.c │ ├── CapsuleCache.c │ ├── CapsuleCacheNull.c │ ├── CapsuleReset.c │ ├── CapsuleRuntimeDxe.inf │ ├── CapsuleRuntimeDxe.uni │ ├── CapsuleRuntimeDxeExtra.uni │ ├── CapsuleService.c │ ├── CapsuleService.h │ ├── SaveLongModeContext.c │ └── X64 │ │ └── SaveLongModeContext.c │ ├── Console │ ├── ConPlatformDxe │ │ ├── ComponentName.c │ │ ├── ConPlatform.c │ │ ├── ConPlatform.h │ │ ├── ConPlatformDxe.inf │ │ ├── ConPlatformDxe.uni │ │ └── ConPlatformDxeExtra.uni │ ├── ConSplitterDxe │ │ ├── ComponentName.c │ │ ├── ConSplitter.c │ │ ├── ConSplitter.h │ │ ├── ConSplitterDxe.inf │ │ ├── ConSplitterDxe.uni │ │ ├── ConSplitterDxeExtra.uni │ │ └── ConSplitterGraphics.c │ ├── GraphicsConsoleDxe │ │ ├── ComponentName.c │ │ ├── GraphicsConsole.c │ │ ├── GraphicsConsole.h │ │ ├── GraphicsConsoleDxe.inf │ │ ├── GraphicsConsoleDxe.uni │ │ ├── GraphicsConsoleDxeExtra.uni │ │ └── LaffStd.c │ ├── GraphicsOutputDxe │ │ ├── ComponentName.c │ │ ├── GraphicsOutput.c │ │ ├── GraphicsOutput.h │ │ └── GraphicsOutputDxe.inf │ └── TerminalDxe │ │ ├── Ansi.c │ │ ├── ComponentName.c │ │ ├── Terminal.c │ │ ├── Terminal.h │ │ ├── TerminalConIn.c │ │ ├── TerminalConOut.c │ │ ├── TerminalDxe.inf │ │ ├── TerminalDxe.uni │ │ ├── TerminalDxeExtra.uni │ │ └── Vtutf8.c │ ├── DebugPortDxe │ ├── ComponentName.c │ ├── DebugPort.c │ ├── DebugPort.h │ ├── DebugPortDxe.inf │ ├── DebugPortDxe.uni │ └── DebugPortDxeExtra.uni │ ├── DebugServicePei │ ├── DebugService.h │ ├── DebugServicePei.c │ ├── DebugServicePei.inf │ └── DebugServicePei.uni │ ├── DebugSupportDxe │ ├── DebugSupport.c │ ├── DebugSupportDxe.inf │ ├── DebugSupportDxe.uni │ ├── DebugSupportDxeExtra.uni │ ├── Ia32 │ │ ├── AsmFuncs.nasm │ │ ├── DebugSupport.h │ │ ├── PlDebugSupport.c │ │ ├── PlDebugSupport.h │ │ └── PlDebugSupportIa32.c │ └── X64 │ │ ├── AsmFuncs.nasm │ │ ├── PlDebugSupport.h │ │ └── PlDebugSupportX64.c │ ├── DevicePathDxe │ ├── DevicePath.c │ ├── DevicePathDxe.inf │ ├── DevicePathDxe.uni │ └── DevicePathDxeExtra.uni │ ├── Disk │ ├── CdExpressPei │ │ ├── CdExpressPei.inf │ │ ├── CdExpressPei.uni │ │ ├── CdExpressPeiExtra.uni │ │ ├── PeiCdExpress.c │ │ └── PeiCdExpress.h │ ├── DiskIoDxe │ │ ├── ComponentName.c │ │ ├── DiskIo.c │ │ ├── DiskIo.h │ │ ├── DiskIoDxe.inf │ │ ├── DiskIoDxe.uni │ │ └── DiskIoDxeExtra.uni │ ├── PartitionDxe │ │ ├── ComponentName.c │ │ ├── ElTorito.c │ │ ├── Gpt.c │ │ ├── Mbr.c │ │ ├── Partition.c │ │ ├── Partition.h │ │ ├── PartitionDxe.inf │ │ ├── PartitionDxe.uni │ │ ├── PartitionDxeExtra.uni │ │ └── Udf.c │ ├── RamDiskDxe │ │ ├── RamDisk.asl │ │ ├── RamDiskBlockIo.c │ │ ├── RamDiskDriver.c │ │ ├── RamDiskDxe.inf │ │ ├── RamDiskDxe.uni │ │ ├── RamDiskFileExplorer.c │ │ ├── RamDiskHii.vfr │ │ ├── RamDiskHiiStrings.uni │ │ ├── RamDiskImpl.c │ │ ├── RamDiskImpl.h │ │ ├── RamDiskNVData.h │ │ └── RamDiskProtocol.c │ ├── UdfDxe │ │ ├── ComponentName.c │ │ ├── File.c │ │ ├── FileName.c │ │ ├── FileSystemOperations.c │ │ ├── Udf.c │ │ ├── Udf.h │ │ └── UdfDxe.inf │ └── UnicodeCollation │ │ └── EnglishDxe │ │ ├── EnglishDxe.inf │ │ ├── EnglishDxe.uni │ │ ├── EnglishDxeExtra.uni │ │ ├── UnicodeCollationEng.c │ │ └── UnicodeCollationEng.h │ ├── DisplayEngineDxe │ ├── DisplayEngine.uni │ ├── DisplayEngineDxe.inf │ ├── DisplayEngineExtra.uni │ ├── FormDisplay.c │ ├── FormDisplay.h │ ├── FormDisplayStr.uni │ ├── InputHandler.c │ ├── Popup.c │ └── ProcessOptions.c │ ├── DriverHealthManagerDxe │ ├── DriverHealthConfigureVfr.Vfr │ ├── DriverHealthManagerDxe.c │ ├── DriverHealthManagerDxe.h │ ├── DriverHealthManagerDxe.inf │ ├── DriverHealthManagerDxe.uni │ ├── DriverHealthManagerDxeExtra.uni │ ├── DriverHealthManagerStrings.uni │ ├── DriverHealthManagerVfr.Vfr │ └── DriverHealthManagerVfr.h │ ├── DriverSampleDxe │ ├── DriverSample.c │ ├── DriverSample.h │ ├── DriverSample.uni │ ├── DriverSampleDxe.inf │ ├── DriverSampleExtra.uni │ ├── Inventory.vfr │ ├── InventoryStrings.uni │ ├── NVDataStruc.h │ ├── Vfr.vfr │ └── VfrStrings.uni │ ├── EbcDxe │ ├── AArch64 │ │ ├── EbcLowLevel.S │ │ └── EbcSupport.c │ ├── EbcDebugger.inf │ ├── EbcDebugger.uni │ ├── EbcDebugger │ │ ├── EbcDebuggerConfig.c │ │ ├── Edb.c │ │ ├── Edb.h │ │ ├── EdbCmdBranch.c │ │ ├── EdbCmdBreak.c │ │ ├── EdbCmdBreakpoint.c │ │ ├── EdbCmdExtIo.c │ │ ├── EdbCmdExtPci.c │ │ ├── EdbCmdGo.c │ │ ├── EdbCmdHelp.c │ │ ├── EdbCmdMemory.c │ │ ├── EdbCmdQuit.c │ │ ├── EdbCmdRegister.c │ │ ├── EdbCmdScope.c │ │ ├── EdbCmdStep.c │ │ ├── EdbCmdSymbol.c │ │ ├── EdbCommand.c │ │ ├── EdbCommand.h │ │ ├── EdbCommon.h │ │ ├── EdbDisasm.c │ │ ├── EdbDisasm.h │ │ ├── EdbDisasmSupport.c │ │ ├── EdbDisasmSupport.h │ │ ├── EdbHook.c │ │ ├── EdbHook.h │ │ ├── EdbSupport.h │ │ ├── EdbSupportFile.c │ │ ├── EdbSupportString.c │ │ ├── EdbSupportUI.c │ │ ├── EdbSymbol.c │ │ └── EdbSymbol.h │ ├── EbcDebuggerConfig.inf │ ├── EbcDebuggerConfig.uni │ ├── EbcDebuggerConfigExtra.uni │ ├── EbcDebuggerExtra.uni │ ├── EbcDebuggerHook.c │ ├── EbcDebuggerHook.h │ ├── EbcDxe.inf │ ├── EbcDxe.uni │ ├── EbcDxeExtra.uni │ ├── EbcExecute.c │ ├── EbcExecute.h │ ├── EbcInt.c │ ├── EbcInt.h │ ├── Ia32 │ │ ├── EbcLowLevel.nasm │ │ └── EbcSupport.c │ └── X64 │ │ ├── EbcLowLevel.nasm │ │ └── EbcSupport.c │ ├── EsrtDxe │ ├── EsrtDxe.c │ ├── EsrtDxe.inf │ ├── EsrtDxe.uni │ ├── EsrtDxeExtra.uni │ ├── EsrtImpl.c │ └── EsrtImpl.h │ ├── EsrtFmpDxe │ ├── EsrtFmp.c │ ├── EsrtFmpDebugPrint.c │ ├── EsrtFmpDxe.inf │ ├── EsrtFmpDxe.uni │ └── EsrtFmpDxeExtra.uni │ ├── FaultTolerantWriteDxe │ ├── FaultTolerantWrite.c │ ├── FaultTolerantWrite.h │ ├── FaultTolerantWriteDxe.c │ ├── FaultTolerantWriteDxe.inf │ ├── FaultTolerantWriteDxe.uni │ ├── FaultTolerantWriteDxeExtra.uni │ ├── FaultTolerantWriteSmm.c │ ├── FaultTolerantWriteSmm.inf │ ├── FaultTolerantWriteSmmCommon.h │ ├── FaultTolerantWriteSmmDxe.c │ ├── FaultTolerantWriteSmmDxe.h │ ├── FaultTolerantWriteSmmDxe.inf │ ├── FaultTolerantWriteSmmDxe.uni │ ├── FaultTolerantWriteSmmDxeExtra.uni │ ├── FaultTolerantWriteStandaloneMm.c │ ├── FaultTolerantWriteStandaloneMm.inf │ ├── FaultTolerantWriteTraditionalMm.c │ ├── FtwMisc.c │ ├── SmmFaultTolerantWriteDxe.uni │ ├── SmmFaultTolerantWriteDxeExtra.uni │ └── UpdateWorkingBlock.c │ ├── FaultTolerantWritePei │ ├── FaultTolerantWritePei.c │ ├── FaultTolerantWritePei.inf │ ├── FaultTolerantWritePei.uni │ └── FaultTolerantWritePeiExtra.uni │ ├── FileExplorerDxe │ ├── FileExplorerDxe.c │ ├── FileExplorerDxe.inf │ ├── FileExplorerDxe.uni │ └── FileExplorerDxeExtra.uni │ ├── FvSimpleFileSystemDxe │ ├── ComponentName.c │ ├── FvSimpleFileSystem.c │ ├── FvSimpleFileSystem.uni │ ├── FvSimpleFileSystemDxe.inf │ ├── FvSimpleFileSystemEntryPoint.c │ ├── FvSimpleFileSystemExtra.uni │ └── FvSimpleFileSystemInternal.h │ ├── HiiDatabaseDxe │ ├── ConfigKeywordHandler.c │ ├── ConfigRouting.c │ ├── Database.c │ ├── Font.c │ ├── HiiDatabase.h │ ├── HiiDatabase.uni │ ├── HiiDatabaseDxe.inf │ ├── HiiDatabaseEntry.c │ ├── HiiDatabaseExtra.uni │ ├── Image.c │ ├── ImageEx.c │ └── String.c │ ├── HiiResourcesSampleDxe │ ├── HiiResourcesSample.c │ ├── HiiResourcesSample.uni │ ├── HiiResourcesSampleDxe.inf │ ├── HiiResourcesSampleExtra.uni │ ├── Sample.vfr │ └── SampleStrings.uni │ ├── LegacyRegion2Dxe │ ├── LegacyRegion2.c │ ├── LegacyRegion2.h │ ├── LegacyRegion2Dxe.inf │ ├── LegacyRegion2Dxe.uni │ └── LegacyRegion2DxeExtra.uni │ ├── LoadFileOnFv2 │ ├── LoadFileOnFv2.c │ ├── LoadFileOnFv2.inf │ ├── LoadFileOnFv2.uni │ └── LoadFileOnFv2Extra.uni │ ├── LockBox │ └── SmmLockBox │ │ ├── SmmLockBox.c │ │ ├── SmmLockBox.inf │ │ ├── SmmLockBox.uni │ │ └── SmmLockBoxExtra.uni │ ├── MemoryTest │ ├── GenericMemoryTestDxe │ │ ├── GenericMemoryTestDxe.inf │ │ ├── GenericMemoryTestDxe.uni │ │ ├── GenericMemoryTestDxeExtra.uni │ │ ├── LightMemoryTest.c │ │ └── LightMemoryTest.h │ └── NullMemoryTestDxe │ │ ├── NullMemoryTest.c │ │ ├── NullMemoryTest.h │ │ ├── NullMemoryTestDxe.inf │ │ ├── NullMemoryTestDxe.uni │ │ └── NullMemoryTestDxeExtra.uni │ ├── Metronome │ ├── Metronome.c │ ├── Metronome.h │ ├── Metronome.inf │ ├── Metronome.uni │ └── MetronomeExtra.uni │ ├── MonotonicCounterRuntimeDxe │ ├── MonotonicCounter.c │ ├── MonotonicCounterRuntimeDxe.inf │ ├── MonotonicCounterRuntimeDxe.uni │ └── MonotonicCounterRuntimeDxeExtra.uni │ ├── PCD │ ├── Dxe │ │ ├── Pcd.c │ │ ├── Pcd.inf │ │ ├── PcdDxe.uni │ │ ├── PcdDxeExtra.uni │ │ ├── Service.c │ │ └── Service.h │ └── Pei │ │ ├── Pcd.c │ │ ├── Pcd.inf │ │ ├── PcdPeim.uni │ │ ├── PcdPeimExtra.uni │ │ ├── Service.c │ │ └── Service.h │ ├── PcatSingleSegmentPciCfg2Pei │ ├── PcatSingleSegmentPciCfg2Pei.inf │ ├── PcatSingleSegmentPciCfg2Pei.uni │ ├── PcatSingleSegmentPciCfg2PeiExtra.uni │ └── PciCfg2.c │ ├── PlatformDriOverrideDxe │ ├── InternalPlatDriOverrideDxe.h │ ├── PlatDriOverrideDxe.c │ ├── PlatDriOverrideDxe.uni │ ├── PlatDriOverrideDxeExtra.uni │ ├── PlatDriOverrideLib.c │ ├── PlatOverMngr.h │ ├── PlatformDriOverrideDxe.inf │ ├── Vfr.vfr │ └── VfrStrings.uni │ ├── PrintDxe │ ├── Print.c │ ├── PrintDxe.inf │ ├── PrintDxe.uni │ └── PrintDxeExtra.uni │ ├── RegularExpressionDxe │ ├── OnigurumaUefiPort.c │ ├── OnigurumaUefiPort.h │ ├── RegularExpressionDxe.c │ ├── RegularExpressionDxe.h │ ├── RegularExpressionDxe.inf │ ├── config.h │ ├── stdarg.h │ ├── stddef.h │ ├── stdio.h │ ├── stdlib.h │ └── string.h │ ├── ReportStatusCodeRouter │ ├── Pei │ │ ├── ReportStatusCodeRouterPei.c │ │ ├── ReportStatusCodeRouterPei.h │ │ ├── ReportStatusCodeRouterPei.inf │ │ ├── ReportStatusCodeRouterPei.uni │ │ └── ReportStatusCodeRouterPeiExtra.uni │ ├── RuntimeDxe │ │ ├── ReportStatusCodeRouterRuntimeDxe.c │ │ ├── ReportStatusCodeRouterRuntimeDxe.h │ │ ├── ReportStatusCodeRouterRuntimeDxe.inf │ │ ├── ReportStatusCodeRouterRuntimeDxe.uni │ │ └── ReportStatusCodeRouterRuntimeDxeExtra.uni │ └── Smm │ │ ├── ReportStatusCodeRouterSmm.c │ │ ├── ReportStatusCodeRouterSmm.h │ │ ├── ReportStatusCodeRouterSmm.inf │ │ ├── ReportStatusCodeRouterSmm.uni │ │ └── ReportStatusCodeRouterSmmExtra.uni │ ├── ResetSystemPei │ ├── ResetSystem.c │ ├── ResetSystem.h │ ├── ResetSystemPei.inf │ ├── ResetSystemPei.uni │ └── ResetSystemPeiExtra.uni │ ├── ResetSystemRuntimeDxe │ ├── ResetSystem.c │ ├── ResetSystem.h │ ├── ResetSystemRuntimeDxe.inf │ ├── ResetSystemRuntimeDxe.uni │ └── ResetSystemRuntimeDxeExtra.uni │ ├── SectionExtractionDxe │ ├── SectionExtractionDxe.c │ ├── SectionExtractionDxe.inf │ ├── SectionExtractionDxe.uni │ └── SectionExtractionDxeExtra.uni │ ├── SectionExtractionPei │ ├── SectionExtractionPei.c │ ├── SectionExtractionPei.inf │ ├── SectionExtractionPei.uni │ └── SectionExtractionPeiExtra.uni │ ├── SecurityStubDxe │ ├── Defer3rdPartyImageLoad.c │ ├── Defer3rdPartyImageLoad.h │ ├── SecurityStub.c │ ├── SecurityStubDxe.inf │ ├── SecurityStubDxe.uni │ └── SecurityStubDxeExtra.uni │ ├── SerialDxe │ ├── SerialDxe.inf │ ├── SerialDxe.uni │ ├── SerialDxeExtra.uni │ └── SerialIo.c │ ├── SetupBrowserDxe │ ├── Expression.c │ ├── Expression.h │ ├── IfrParse.c │ ├── Presentation.c │ ├── Setup.c │ ├── Setup.h │ ├── SetupBrowser.uni │ ├── SetupBrowserDxe.inf │ └── SetupBrowserExtra.uni │ ├── SmbiosDxe │ ├── SmbiosDxe.c │ ├── SmbiosDxe.h │ ├── SmbiosDxe.inf │ ├── SmbiosDxe.uni │ └── SmbiosDxeExtra.uni │ ├── SmbiosMeasurementDxe │ ├── SmbiosMeasurementDxe.c │ ├── SmbiosMeasurementDxe.inf │ ├── SmbiosMeasurementDxe.uni │ └── SmbiosMeasurementDxeExtra.uni │ ├── SmmCommunicationBufferDxe │ ├── SmmCommunicationBufferDxe.c │ ├── SmmCommunicationBufferDxe.inf │ ├── SmmCommunicationBufferDxe.uni │ └── SmmCommunicationBufferExtraDxe.uni │ ├── StatusCodeHandler │ ├── Pei │ │ ├── MemoryStausCodeWorker.c │ │ ├── SerialStatusCodeWorker.c │ │ ├── StatusCodeHandlerPei.c │ │ ├── StatusCodeHandlerPei.h │ │ ├── StatusCodeHandlerPei.inf │ │ ├── StatusCodeHandlerPei.uni │ │ └── StatusCodeHandlerPeiExtra.uni │ ├── RuntimeDxe │ │ ├── MemoryStatusCodeWorker.c │ │ ├── SerialStatusCodeWorker.c │ │ ├── StatusCodeHandlerRuntimeDxe.c │ │ ├── StatusCodeHandlerRuntimeDxe.h │ │ ├── StatusCodeHandlerRuntimeDxe.inf │ │ ├── StatusCodeHandlerRuntimeDxe.uni │ │ └── StatusCodeHandlerRuntimeDxeExtra.uni │ └── Smm │ │ ├── MemoryStatusCodeWorker.c │ │ ├── SerialStatusCodeWorker.c │ │ ├── StatusCodeHandlerSmm.c │ │ ├── StatusCodeHandlerSmm.h │ │ ├── StatusCodeHandlerSmm.inf │ │ ├── StatusCodeHandlerSmm.uni │ │ └── StatusCodeHandlerSmmExtra.uni │ ├── TimestampDxe │ ├── TimestampDxe.c │ ├── TimestampDxe.inf │ ├── TimestampDxe.uni │ └── TimestampDxeExtra.uni │ ├── Variable │ ├── Pei │ │ ├── PeiVariable.uni │ │ ├── PeiVariableExtra.uni │ │ ├── Variable.c │ │ ├── Variable.h │ │ └── VariablePei.inf │ └── RuntimeDxe │ │ ├── Measurement.c │ │ ├── PrivilegePolymorphic.h │ │ ├── Reclaim.c │ │ ├── SpeculationBarrierDxe.c │ │ ├── SpeculationBarrierSmm.c │ │ ├── TcgMorLockDxe.c │ │ ├── TcgMorLockSmm.c │ │ ├── VarCheck.c │ │ ├── Variable.c │ │ ├── Variable.h │ │ ├── VariableDxe.c │ │ ├── VariableExLib.c │ │ ├── VariableLockRequestToLock.c │ │ ├── VariableNonVolatile.c │ │ ├── VariableNonVolatile.h │ │ ├── VariableParsing.c │ │ ├── VariableParsing.h │ │ ├── VariablePolicySmmDxe.c │ │ ├── VariableRuntimeCache.c │ │ ├── VariableRuntimeCache.h │ │ ├── VariableRuntimeDxe.inf │ │ ├── VariableRuntimeDxe.uni │ │ ├── VariableRuntimeDxeExtra.uni │ │ ├── VariableSmm.c │ │ ├── VariableSmm.inf │ │ ├── VariableSmm.uni │ │ ├── VariableSmmExtra.uni │ │ ├── VariableSmmRuntimeDxe.c │ │ ├── VariableSmmRuntimeDxe.inf │ │ ├── VariableSmmRuntimeDxe.uni │ │ ├── VariableSmmRuntimeDxeExtra.uni │ │ ├── VariableStandaloneMm.c │ │ ├── VariableStandaloneMm.inf │ │ └── VariableTraditionalMm.c │ └── WatchdogTimerDxe │ ├── WatchdogTimer.c │ ├── WatchdogTimer.h │ ├── WatchdogTimer.inf │ ├── WatchdogTimer.uni │ └── WatchdogTimerExtra.uni ├── MdePkg ├── Include │ ├── AArch64 │ │ └── ProcessorBind.h │ ├── Arm │ │ └── ProcessorBind.h │ ├── Base.h │ ├── Ebc │ │ └── ProcessorBind.h │ ├── Guid │ │ ├── Acpi.h │ │ ├── Apriori.h │ │ ├── AprioriFileName.h │ │ ├── Btt.h │ │ ├── CapsuleReport.h │ │ ├── Cper.h │ │ ├── DebugImageInfoTable.h │ │ ├── DxeServices.h │ │ ├── EventGroup.h │ │ ├── EventLegacyBios.h │ │ ├── FileInfo.h │ │ ├── FileSystemInfo.h │ │ ├── FileSystemVolumeLabelInfo.h │ │ ├── FirmwareContentsSigned.h │ │ ├── FirmwareFileSystem2.h │ │ ├── FirmwareFileSystem3.h │ │ ├── FmpCapsule.h │ │ ├── GlobalVariable.h │ │ ├── Gpt.h │ │ ├── GraphicsInfoHob.h │ │ ├── HardwareErrorVariable.h │ │ ├── HiiFormMapMethodGuid.h │ │ ├── HiiKeyBoardLayout.h │ │ ├── HiiPlatformSetupFormset.h │ │ ├── HobList.h │ │ ├── ImageAuthentication.h │ │ ├── JsonCapsule.h │ │ ├── MdePkgTokenSpace.h │ │ ├── MemoryAllocationHob.h │ │ ├── MemoryAttributesTable.h │ │ ├── MemoryOverwriteControl.h │ │ ├── Mps.h │ │ ├── PcAnsi.h │ │ ├── RtPropertiesTable.h │ │ ├── SmBios.h │ │ ├── SmramMemoryReserve.h │ │ ├── StatusCodeDataTypeId.h │ │ ├── SystemResourceTable.h │ │ ├── VectorHandoffTable.h │ │ └── WinCertificate.h │ ├── Ia32 │ │ ├── Nasm.inc │ │ └── ProcessorBind.h │ ├── IndustryStandard │ │ ├── Acpi.h │ │ ├── Acpi10.h │ │ ├── Acpi20.h │ │ ├── Acpi30.h │ │ ├── Acpi40.h │ │ ├── Acpi50.h │ │ ├── Acpi51.h │ │ ├── Acpi60.h │ │ ├── Acpi61.h │ │ ├── Acpi62.h │ │ ├── Acpi63.h │ │ ├── AcpiAml.h │ │ ├── AlertStandardFormatTable.h │ │ ├── Atapi.h │ │ ├── Bluetooth.h │ │ ├── Bmp.h │ │ ├── Cxl.h │ │ ├── Cxl11.h │ │ ├── DebugPort2Table.h │ │ ├── DebugPortTable.h │ │ ├── Dhcp.h │ │ ├── DmaRemappingReportingTable.h │ │ ├── ElTorito.h │ │ ├── Emmc.h │ │ ├── HighPrecisionEventTimerTable.h │ │ ├── Hsti.h │ │ ├── Http11.h │ │ ├── IScsiBootFirmwareTable.h │ │ ├── IoRemappingTable.h │ │ ├── Ipmi.h │ │ ├── IpmiFruInformationStorage.h │ │ ├── IpmiNetFnApp.h │ │ ├── IpmiNetFnBridge.h │ │ ├── IpmiNetFnChassis.h │ │ ├── IpmiNetFnFirmware.h │ │ ├── IpmiNetFnGroupExtension.h │ │ ├── IpmiNetFnSensorEvent.h │ │ ├── IpmiNetFnStorage.h │ │ ├── IpmiNetFnTransport.h │ │ ├── LegacyBiosMpTable.h │ │ ├── LowPowerIdleTable.h │ │ ├── Mbr.h │ │ ├── MemoryMappedConfigurationSpaceAccessTable.h │ │ ├── MemoryOverwriteRequestControlLock.h │ │ ├── Nvme.h │ │ ├── Pci.h │ │ ├── Pci22.h │ │ ├── Pci23.h │ │ ├── Pci30.h │ │ ├── PciCodeId.h │ │ ├── PciExpress21.h │ │ ├── PciExpress30.h │ │ ├── PciExpress31.h │ │ ├── PciExpress40.h │ │ ├── PciExpress50.h │ │ ├── PeImage.h │ │ ├── Scsi.h │ │ ├── Sd.h │ │ ├── SdramSpd.h │ │ ├── SdramSpdDdr3.h │ │ ├── SdramSpdDdr4.h │ │ ├── SdramSpdLpDdr.h │ │ ├── SerialPortConsoleRedirectionTable.h │ │ ├── ServiceProcessorManagementInterfaceTable.h │ │ ├── SmBios.h │ │ ├── SmBus.h │ │ ├── Spdm.h │ │ ├── TcgPhysicalPresence.h │ │ ├── TcgStorageCore.h │ │ ├── TcgStorageOpal.h │ │ ├── TcpaAcpi.h │ │ ├── Tls1.h │ │ ├── Tpm12.h │ │ ├── Tpm20.h │ │ ├── Tpm2Acpi.h │ │ ├── TpmPtp.h │ │ ├── TpmTis.h │ │ ├── Udf.h │ │ ├── UefiTcgPlatform.h │ │ ├── Usb.h │ │ ├── WatchdogActionTable.h │ │ ├── WatchdogResourceTable.h │ │ ├── WindowsSmmSecurityMitigationTable.h │ │ └── WindowsUxCapsule.h │ ├── Library │ │ ├── BaseLib.h │ │ ├── BaseMemoryLib.h │ │ ├── CacheMaintenanceLib.h │ │ ├── CpuLib.h │ │ ├── DebugLib.h │ │ ├── DebugPrintErrorLevelLib.h │ │ ├── DevicePathLib.h │ │ ├── DxeCoreEntryPoint.h │ │ ├── DxeServicesLib.h │ │ ├── DxeServicesTableLib.h │ │ ├── ExtractGuidedSectionLib.h │ │ ├── FileHandleLib.h │ │ ├── HobLib.h │ │ ├── HstiLib.h │ │ ├── IoLib.h │ │ ├── MemoryAllocationLib.h │ │ ├── MmServicesTableLib.h │ │ ├── OrderedCollectionLib.h │ │ ├── PcdLib.h │ │ ├── PciCf8Lib.h │ │ ├── PciExpressLib.h │ │ ├── PciLib.h │ │ ├── PciSegmentInfoLib.h │ │ ├── PciSegmentLib.h │ │ ├── PeCoffExtraActionLib.h │ │ ├── PeCoffGetEntryPointLib.h │ │ ├── PeCoffLib.h │ │ ├── PeiCoreEntryPoint.h │ │ ├── PeiServicesLib.h │ │ ├── PeiServicesTablePointerLib.h │ │ ├── PeimEntryPoint.h │ │ ├── PerformanceLib.h │ │ ├── PostCodeLib.h │ │ ├── PrintLib.h │ │ ├── ReportStatusCodeLib.h │ │ ├── ResourcePublicationLib.h │ │ ├── RngLib.h │ │ ├── S3BootScriptLib.h │ │ ├── S3IoLib.h │ │ ├── S3PciLib.h │ │ ├── S3PciSegmentLib.h │ │ ├── S3SmbusLib.h │ │ ├── S3StallLib.h │ │ ├── SafeIntLib.h │ │ ├── SerialPortLib.h │ │ ├── SmbusLib.h │ │ ├── SmiHandlerProfileLib.h │ │ ├── SmmIoLib.h │ │ ├── SmmLib.h │ │ ├── SmmMemLib.h │ │ ├── SmmPeriodicSmiLib.h │ │ ├── SmmServicesTableLib.h │ │ ├── StandaloneMmDriverEntryPoint.h │ │ ├── SynchronizationLib.h │ │ ├── TimerLib.h │ │ ├── UefiApplicationEntryPoint.h │ │ ├── UefiBootServicesTableLib.h │ │ ├── UefiDecompressLib.h │ │ ├── UefiDriverEntryPoint.h │ │ ├── UefiLib.h │ │ ├── UefiRuntimeLib.h │ │ ├── UefiRuntimeServicesTableLib.h │ │ ├── UefiScsiLib.h │ │ ├── UefiUsbLib.h │ │ └── UnitTestLib.h │ ├── Pi │ │ ├── PiBootMode.h │ │ ├── PiDependency.h │ │ ├── PiDxeCis.h │ │ ├── PiFirmwareFile.h │ │ ├── PiFirmwareVolume.h │ │ ├── PiHob.h │ │ ├── PiI2c.h │ │ ├── PiMmCis.h │ │ ├── PiMultiPhase.h │ │ ├── PiPeiCis.h │ │ ├── PiS3BootScript.h │ │ ├── PiSmmCis.h │ │ └── PiStatusCode.h │ ├── PiDxe.h │ ├── PiMm.h │ ├── PiPei.h │ ├── PiSmm.h │ ├── Ppi │ │ ├── BlockIo.h │ │ ├── BlockIo2.h │ │ ├── BootInRecoveryMode.h │ │ ├── Capsule.h │ │ ├── CpuIo.h │ │ ├── Decompress.h │ │ ├── DelayedDispatch.h │ │ ├── DeviceRecoveryModule.h │ │ ├── DxeIpl.h │ │ ├── EndOfPeiPhase.h │ │ ├── FirmwareVolume.h │ │ ├── FirmwareVolumeInfo.h │ │ ├── FirmwareVolumeInfo2.h │ │ ├── Graphics.h │ │ ├── GuidedSectionExtraction.h │ │ ├── I2cMaster.h │ │ ├── IsaHc.h │ │ ├── LoadFile.h │ │ ├── LoadImage.h │ │ ├── MasterBootMode.h │ │ ├── MemoryDiscovered.h │ │ ├── MmAccess.h │ │ ├── MmControl.h │ │ ├── MpServices.h │ │ ├── Pcd.h │ │ ├── PcdInfo.h │ │ ├── PciCfg2.h │ │ ├── PeiCoreFvLocation.h │ │ ├── PiPcd.h │ │ ├── PiPcdInfo.h │ │ ├── ReadOnlyVariable2.h │ │ ├── RecoveryModule.h │ │ ├── ReportStatusCodeHandler.h │ │ ├── Reset.h │ │ ├── Reset2.h │ │ ├── S3Resume2.h │ │ ├── SecHobData.h │ │ ├── SecPlatformInformation.h │ │ ├── SecPlatformInformation2.h │ │ ├── Security2.h │ │ ├── Smbus2.h │ │ ├── Stall.h │ │ ├── StatusCode.h │ │ ├── SuperIo.h │ │ ├── TemporaryRamDone.h │ │ ├── TemporaryRamSupport.h │ │ └── VectorHandoffInfo.h │ ├── Protocol │ │ ├── AbsolutePointer.h │ │ ├── AcpiSystemDescriptionTable.h │ │ ├── AcpiTable.h │ │ ├── AdapterInformation.h │ │ ├── Arp.h │ │ ├── AtaPassThru.h │ │ ├── AuthenticationInfo.h │ │ ├── Bds.h │ │ ├── Bis.h │ │ ├── BlockIo.h │ │ ├── BlockIo2.h │ │ ├── BlockIoCrypto.h │ │ ├── BluetoothAttribute.h │ │ ├── BluetoothConfig.h │ │ ├── BluetoothHc.h │ │ ├── BluetoothIo.h │ │ ├── BluetoothLeConfig.h │ │ ├── BootManagerPolicy.h │ │ ├── BusSpecificDriverOverride.h │ │ ├── Capsule.h │ │ ├── ComponentName.h │ │ ├── ComponentName2.h │ │ ├── Cpu.h │ │ ├── CpuIo2.h │ │ ├── DebugPort.h │ │ ├── DebugSupport.h │ │ ├── Decompress.h │ │ ├── DeferredImageLoad.h │ │ ├── DeviceIo.h │ │ ├── DevicePath.h │ │ ├── DevicePathFromText.h │ │ ├── DevicePathToText.h │ │ ├── DevicePathUtilities.h │ │ ├── Dhcp4.h │ │ ├── Dhcp6.h │ │ ├── DiskInfo.h │ │ ├── DiskIo.h │ │ ├── DiskIo2.h │ │ ├── Dns4.h │ │ ├── Dns6.h │ │ ├── DriverBinding.h │ │ ├── DriverConfiguration.h │ │ ├── DriverConfiguration2.h │ │ ├── DriverDiagnostics.h │ │ ├── DriverDiagnostics2.h │ │ ├── DriverFamilyOverride.h │ │ ├── DriverHealth.h │ │ ├── DriverSupportedEfiVersion.h │ │ ├── DxeMmReadyToLock.h │ │ ├── DxeSmmReadyToLock.h │ │ ├── Eap.h │ │ ├── EapConfiguration.h │ │ ├── EapManagement.h │ │ ├── EapManagement2.h │ │ ├── Ebc.h │ │ ├── EdidActive.h │ │ ├── EdidDiscovered.h │ │ ├── EdidOverride.h │ │ ├── EraseBlock.h │ │ ├── FirmwareManagement.h │ │ ├── FirmwareVolume2.h │ │ ├── FirmwareVolumeBlock.h │ │ ├── FormBrowser2.h │ │ ├── Ftp4.h │ │ ├── GraphicsOutput.h │ │ ├── GuidedSectionExtraction.h │ │ ├── Hash.h │ │ ├── Hash2.h │ │ ├── HiiConfigAccess.h │ │ ├── HiiConfigKeyword.h │ │ ├── HiiConfigRouting.h │ │ ├── HiiDatabase.h │ │ ├── HiiFont.h │ │ ├── HiiImage.h │ │ ├── HiiImageDecoder.h │ │ ├── HiiImageEx.h │ │ ├── HiiPackageList.h │ │ ├── HiiPopup.h │ │ ├── HiiString.h │ │ ├── Http.h │ │ ├── HttpBootCallback.h │ │ ├── HttpUtilities.h │ │ ├── I2cBusConfigurationManagement.h │ │ ├── I2cEnumerate.h │ │ ├── I2cHost.h │ │ ├── I2cIo.h │ │ ├── I2cMaster.h │ │ ├── IScsiInitiatorName.h │ │ ├── IdeControllerInit.h │ │ ├── IncompatiblePciDeviceSupport.h │ │ ├── Ip4.h │ │ ├── Ip4Config.h │ │ ├── Ip4Config2.h │ │ ├── Ip6.h │ │ ├── Ip6Config.h │ │ ├── IpSec.h │ │ ├── IpSecConfig.h │ │ ├── IsaHc.h │ │ ├── Kms.h │ │ ├── LegacyRegion2.h │ │ ├── LegacySpiController.h │ │ ├── LegacySpiFlash.h │ │ ├── LegacySpiSmmController.h │ │ ├── LegacySpiSmmFlash.h │ │ ├── LoadFile.h │ │ ├── LoadFile2.h │ │ ├── LoadedImage.h │ │ ├── ManagedNetwork.h │ │ ├── Metronome.h │ │ ├── MmAccess.h │ │ ├── MmBase.h │ │ ├── MmCommunication.h │ │ ├── MmCommunication2.h │ │ ├── MmConfiguration.h │ │ ├── MmControl.h │ │ ├── MmCpu.h │ │ ├── MmCpuIo.h │ │ ├── MmEndOfDxe.h │ │ ├── MmGpiDispatch.h │ │ ├── MmIoTrapDispatch.h │ │ ├── MmMp.h │ │ ├── MmPciRootBridgeIo.h │ │ ├── MmPeriodicTimerDispatch.h │ │ ├── MmPowerButtonDispatch.h │ │ ├── MmReadyToLock.h │ │ ├── MmReportStatusCodeHandler.h │ │ ├── MmStandbyButtonDispatch.h │ │ ├── MmStatusCode.h │ │ ├── MmSwDispatch.h │ │ ├── MmSxDispatch.h │ │ ├── MmUsbDispatch.h │ │ ├── MonotonicCounter.h │ │ ├── MpService.h │ │ ├── Mtftp4.h │ │ ├── Mtftp6.h │ │ ├── NetworkInterfaceIdentifier.h │ │ ├── NvdimmLabel.h │ │ ├── NvmExpressPassthru.h │ │ ├── PartitionInfo.h │ │ ├── Pcd.h │ │ ├── PcdInfo.h │ │ ├── PciEnumerationComplete.h │ │ ├── PciHostBridgeResourceAllocation.h │ │ ├── PciHotPlugInit.h │ │ ├── PciHotPlugRequest.h │ │ ├── PciIo.h │ │ ├── PciOverride.h │ │ ├── PciPlatform.h │ │ ├── PciRootBridgeIo.h │ │ ├── PiPcd.h │ │ ├── PiPcdInfo.h │ │ ├── Pkcs7Verify.h │ │ ├── PlatformDriverOverride.h │ │ ├── PlatformToDriverConfiguration.h │ │ ├── PxeBaseCode.h │ │ ├── PxeBaseCodeCallBack.h │ │ ├── RamDisk.h │ │ ├── RealTimeClock.h │ │ ├── RegularExpressionProtocol.h │ │ ├── ReportStatusCodeHandler.h │ │ ├── Reset.h │ │ ├── ResetNotification.h │ │ ├── Rest.h │ │ ├── RestEx.h │ │ ├── RestJsonStructure.h │ │ ├── Rng.h │ │ ├── Runtime.h │ │ ├── S3SaveState.h │ │ ├── S3SmmSaveState.h │ │ ├── ScsiIo.h │ │ ├── ScsiPassThru.h │ │ ├── ScsiPassThruExt.h │ │ ├── SdMmcPassThru.h │ │ ├── Security.h │ │ ├── Security2.h │ │ ├── SecurityPolicy.h │ │ ├── SerialIo.h │ │ ├── ServiceBinding.h │ │ ├── Shell.h │ │ ├── ShellDynamicCommand.h │ │ ├── ShellParameters.h │ │ ├── SimpleFileSystem.h │ │ ├── SimpleNetwork.h │ │ ├── SimplePointer.h │ │ ├── SimpleTextIn.h │ │ ├── SimpleTextInEx.h │ │ ├── SimpleTextOut.h │ │ ├── SmartCardEdge.h │ │ ├── SmartCardReader.h │ │ ├── Smbios.h │ │ ├── SmbusHc.h │ │ ├── SmmAccess2.h │ │ ├── SmmBase2.h │ │ ├── SmmCommunication.h │ │ ├── SmmConfiguration.h │ │ ├── SmmControl2.h │ │ ├── SmmCpu.h │ │ ├── SmmCpuIo2.h │ │ ├── SmmEndOfDxe.h │ │ ├── SmmGpiDispatch2.h │ │ ├── SmmIoTrapDispatch2.h │ │ ├── SmmPciRootBridgeIo.h │ │ ├── SmmPeriodicTimerDispatch2.h │ │ ├── SmmPowerButtonDispatch2.h │ │ ├── SmmReadyToLock.h │ │ ├── SmmReportStatusCodeHandler.h │ │ ├── SmmStandbyButtonDispatch2.h │ │ ├── SmmStatusCode.h │ │ ├── SmmSwDispatch2.h │ │ ├── SmmSxDispatch2.h │ │ ├── SmmUsbDispatch2.h │ │ ├── SpiConfiguration.h │ │ ├── SpiHc.h │ │ ├── SpiIo.h │ │ ├── SpiNorFlash.h │ │ ├── SpiSmmConfiguration.h │ │ ├── SpiSmmHc.h │ │ ├── SpiSmmNorFlash.h │ │ ├── StatusCode.h │ │ ├── StorageSecurityCommand.h │ │ ├── SuperIo.h │ │ ├── SuperIoControl.h │ │ ├── Supplicant.h │ │ ├── TapeIo.h │ │ ├── Tcg2Protocol.h │ │ ├── TcgService.h │ │ ├── Tcp4.h │ │ ├── Tcp6.h │ │ ├── Timer.h │ │ ├── Timestamp.h │ │ ├── Tls.h │ │ ├── TlsConfig.h │ │ ├── TrEEProtocol.h │ │ ├── Udp4.h │ │ ├── Udp6.h │ │ ├── UfsDeviceConfig.h │ │ ├── UgaDraw.h │ │ ├── UgaIo.h │ │ ├── UnicodeCollation.h │ │ ├── Usb2HostController.h │ │ ├── UsbFunctionIo.h │ │ ├── UsbHostController.h │ │ ├── UsbIo.h │ │ ├── UserCredential.h │ │ ├── UserCredential2.h │ │ ├── UserManager.h │ │ ├── Variable.h │ │ ├── VariableWrite.h │ │ ├── VlanConfig.h │ │ ├── WatchdogTimer.h │ │ ├── WiFi.h │ │ └── WiFi2.h │ ├── Register │ │ ├── Amd │ │ │ ├── Cpuid.h │ │ │ ├── Fam17Msr.h │ │ │ ├── Ghcb.h │ │ │ └── Msr.h │ │ └── Intel │ │ │ ├── ArchitecturalMsr.h │ │ │ ├── Cpuid.h │ │ │ ├── LocalApic.h │ │ │ ├── Microcode.h │ │ │ ├── Msr.h │ │ │ ├── Msr │ │ │ ├── AtomMsr.h │ │ │ ├── BroadwellMsr.h │ │ │ ├── Core2Msr.h │ │ │ ├── CoreMsr.h │ │ │ ├── GoldmontMsr.h │ │ │ ├── GoldmontPlusMsr.h │ │ │ ├── HaswellEMsr.h │ │ │ ├── HaswellMsr.h │ │ │ ├── IvyBridgeMsr.h │ │ │ ├── NehalemMsr.h │ │ │ ├── P6Msr.h │ │ │ ├── Pentium4Msr.h │ │ │ ├── PentiumMMsr.h │ │ │ ├── PentiumMsr.h │ │ │ ├── SandyBridgeMsr.h │ │ │ ├── SilvermontMsr.h │ │ │ ├── SkylakeMsr.h │ │ │ ├── Xeon5600Msr.h │ │ │ ├── XeonDMsr.h │ │ │ ├── XeonE7Msr.h │ │ │ └── XeonPhiMsr.h │ │ │ ├── SmramSaveStateMap.h │ │ │ ├── StmApi.h │ │ │ ├── StmResourceDescriptor.h │ │ │ └── StmStatusCode.h │ ├── RiscV64 │ │ └── ProcessorBind.h │ ├── Uefi.h │ ├── Uefi │ │ ├── UefiAcpiDataTable.h │ │ ├── UefiBaseType.h │ │ ├── UefiGpt.h │ │ ├── UefiInternalFormRepresentation.h │ │ ├── UefiMultiPhase.h │ │ ├── UefiPxe.h │ │ └── UefiSpec.h │ └── X64 │ │ ├── Nasm.inc │ │ └── ProcessorBind.h ├── Library │ ├── BaseCacheMaintenanceLib │ │ ├── ArmCache.c │ │ ├── BaseCacheMaintenanceLib.inf │ │ ├── BaseCacheMaintenanceLib.uni │ │ ├── EbcCache.c │ │ ├── RiscVCache.c │ │ └── X86Cache.c │ ├── BaseCacheMaintenanceLibNull │ │ ├── BaseCacheMaintenanceLibNull.c │ │ ├── BaseCacheMaintenanceLibNull.inf │ │ └── BaseCacheMaintenanceLibNull.uni │ ├── BaseCpuLib │ │ ├── AArch64 │ │ │ ├── CpuFlushTlb.S │ │ │ ├── CpuFlushTlb.asm │ │ │ ├── CpuSleep.S │ │ │ └── CpuSleep.asm │ │ ├── Arm │ │ │ ├── CpuFlushTlb.S │ │ │ ├── CpuFlushTlb.asm │ │ │ ├── CpuSleep.S │ │ │ └── CpuSleep.asm │ │ ├── BaseCpuLib.inf │ │ ├── BaseCpuLib.uni │ │ ├── Ebc │ │ │ └── CpuSleepFlushTlb.c │ │ ├── Ia32 │ │ │ ├── CpuFlushTlb.c │ │ │ ├── CpuFlushTlb.nasm │ │ │ ├── CpuFlushTlbGcc.c │ │ │ ├── CpuSleep.c │ │ │ ├── CpuSleep.nasm │ │ │ └── CpuSleepGcc.c │ │ ├── RiscV │ │ │ └── Cpu.S │ │ └── X64 │ │ │ ├── CpuFlushTlb.nasm │ │ │ └── CpuSleep.nasm │ ├── BaseCpuLibNull │ │ ├── BaseCpuLibNull.c │ │ ├── BaseCpuLibNull.inf │ │ └── BaseCpuLibNull.uni │ ├── BaseDebugLibNull │ │ ├── BaseDebugLibNull.inf │ │ ├── BaseDebugLibNull.uni │ │ └── DebugLib.c │ ├── BaseDebugLibSerialPort │ │ ├── BaseDebugLibSerialPort.inf │ │ ├── BaseDebugLibSerialPort.uni │ │ └── DebugLib.c │ ├── BaseDebugPrintErrorLevelLib │ │ ├── BaseDebugPrintErrorLevelLib.c │ │ ├── BaseDebugPrintErrorLevelLib.inf │ │ └── BaseDebugPrintErrorLevelLib.uni │ ├── BaseExtractGuidedSectionLib │ │ ├── BaseExtractGuidedSectionLib.c │ │ ├── BaseExtractGuidedSectionLib.inf │ │ └── BaseExtractGuidedSectionLib.uni │ ├── BaseIoLibIntrinsic │ │ ├── AArch64 │ │ │ ├── ArmVirtMmio.S │ │ │ └── ArmVirtMmio.asm │ │ ├── Arm │ │ │ ├── ArmVirtMmio.S │ │ │ └── ArmVirtMmio.asm │ │ ├── BaseIoLibIntrinsic.inf │ │ ├── BaseIoLibIntrinsic.uni │ │ ├── BaseIoLibIntrinsicArmVirt.inf │ │ ├── BaseIoLibIntrinsicArmVirt.uni │ │ ├── BaseIoLibIntrinsicInternal.h │ │ ├── BaseIoLibIntrinsicSev.inf │ │ ├── Ia32 │ │ │ ├── IoFifo.nasm │ │ │ └── IoFifoSev.nasm │ │ ├── IoHighLevel.c │ │ ├── IoLib.c │ │ ├── IoLibArmVirt.c │ │ ├── IoLibEbc.c │ │ ├── IoLibGcc.c │ │ ├── IoLibMmioBuffer.c │ │ ├── IoLibMsc.c │ │ ├── IoLibNoIo.c │ │ └── X64 │ │ │ ├── IoFifo.nasm │ │ │ └── IoFifoSev.nasm │ ├── BaseLib │ │ ├── AArch64 │ │ │ ├── CpuBreakpoint.S │ │ │ ├── CpuBreakpoint.asm │ │ │ ├── DisableInterrupts.S │ │ │ ├── DisableInterrupts.asm │ │ │ ├── EnableInterrupts.S │ │ │ ├── EnableInterrupts.asm │ │ │ ├── GetInterruptsState.S │ │ │ ├── GetInterruptsState.asm │ │ │ ├── MemoryFence.S │ │ │ ├── MemoryFence.asm │ │ │ ├── SetJumpLongJump.S │ │ │ ├── SetJumpLongJump.asm │ │ │ ├── SpeculationBarrier.S │ │ │ ├── SpeculationBarrier.asm │ │ │ ├── SwitchStack.S │ │ │ └── SwitchStack.asm │ │ ├── ARShiftU64.c │ │ ├── Arm │ │ │ ├── CpuBreakpoint.S │ │ │ ├── CpuBreakpoint.asm │ │ │ ├── CpuPause.asm │ │ │ ├── DisableInterrupts.S │ │ │ ├── DisableInterrupts.asm │ │ │ ├── EnableInterrupts.S │ │ │ ├── EnableInterrupts.asm │ │ │ ├── GetInterruptsState.S │ │ │ ├── GetInterruptsState.asm │ │ │ ├── InternalSwitchStack.c │ │ │ ├── Math64.S │ │ │ ├── MemoryFence.S │ │ │ ├── MemoryFence.asm │ │ │ ├── SetJumpLongJump.S │ │ │ ├── SetJumpLongJump.asm │ │ │ ├── SpeculationBarrier.S │ │ │ ├── SpeculationBarrier.asm │ │ │ ├── SwitchStack.S │ │ │ ├── SwitchStack.asm │ │ │ └── Unaligned.c │ │ ├── BaseLib.inf │ │ ├── BaseLib.uni │ │ ├── BaseLibInternals.h │ │ ├── BitField.c │ │ ├── CheckSum.c │ │ ├── ChkStkGcc.c │ │ ├── Cpu.c │ │ ├── CpuDeadLoop.c │ │ ├── DivS64x64Remainder.c │ │ ├── DivU64x32.c │ │ ├── DivU64x32Remainder.c │ │ ├── DivU64x64Remainder.c │ │ ├── Ebc │ │ │ ├── CpuBreakpoint.c │ │ │ ├── SetJumpLongJump.c │ │ │ ├── SpeculationBarrier.c │ │ │ └── SwitchStack.c │ │ ├── FilePaths.c │ │ ├── GetPowerOfTwo32.c │ │ ├── GetPowerOfTwo64.c │ │ ├── HighBitSet32.c │ │ ├── HighBitSet64.c │ │ ├── Ia32 │ │ │ ├── ARShiftU64.c │ │ │ ├── ARShiftU64.nasm │ │ │ ├── CpuBreakpoint.c │ │ │ ├── CpuBreakpoint.nasm │ │ │ ├── CpuId.c │ │ │ ├── CpuId.nasm │ │ │ ├── CpuIdEx.c │ │ │ ├── CpuIdEx.nasm │ │ │ ├── CpuPause.c │ │ │ ├── CpuPause.nasm │ │ │ ├── DisableCache.c │ │ │ ├── DisableCache.nasm │ │ │ ├── DisableInterrupts.c │ │ │ ├── DisableInterrupts.nasm │ │ │ ├── DisablePaging32.c │ │ │ ├── DisablePaging32.nasm │ │ │ ├── DivS64x64Remainder.c │ │ │ ├── DivU64x32.c │ │ │ ├── DivU64x32.nasm │ │ │ ├── DivU64x32Remainder.c │ │ │ ├── DivU64x32Remainder.nasm │ │ │ ├── DivU64x64Remainder.nasm │ │ │ ├── EnableCache.c │ │ │ ├── EnableCache.nasm │ │ │ ├── EnableDisableInterrupts.c │ │ │ ├── EnableDisableInterrupts.nasm │ │ │ ├── EnableInterrupts.c │ │ │ ├── EnableInterrupts.nasm │ │ │ ├── EnablePaging32.c │ │ │ ├── EnablePaging32.nasm │ │ │ ├── EnablePaging64.nasm │ │ │ ├── FlushCacheLine.c │ │ │ ├── FlushCacheLine.nasm │ │ │ ├── FxRestore.c │ │ │ ├── FxRestore.nasm │ │ │ ├── FxSave.c │ │ │ ├── FxSave.nasm │ │ │ ├── GccInline.c │ │ │ ├── GccInlinePriv.c │ │ │ ├── InternalSwitchStack.c │ │ │ ├── InternalSwitchStack.nasm │ │ │ ├── Invd.c │ │ │ ├── Invd.nasm │ │ │ ├── LRotU64.c │ │ │ ├── LRotU64.nasm │ │ │ ├── LShiftU64.c │ │ │ ├── LShiftU64.nasm │ │ │ ├── Lfence.nasm │ │ │ ├── LongJump.nasm │ │ │ ├── ModU64x32.c │ │ │ ├── ModU64x32.nasm │ │ │ ├── Monitor.c │ │ │ ├── Monitor.nasm │ │ │ ├── MultU64x32.c │ │ │ ├── MultU64x32.nasm │ │ │ ├── MultU64x64.c │ │ │ ├── MultU64x64.nasm │ │ │ ├── Mwait.c │ │ │ ├── Mwait.nasm │ │ │ ├── Non-existing.c │ │ │ ├── RRotU64.c │ │ │ ├── RRotU64.nasm │ │ │ ├── RShiftU64.c │ │ │ ├── RShiftU64.nasm │ │ │ ├── RdRand.nasm │ │ │ ├── ReadCr0.c │ │ │ ├── ReadCr0.nasm │ │ │ ├── ReadCr2.c │ │ │ ├── ReadCr2.nasm │ │ │ ├── ReadCr3.c │ │ │ ├── ReadCr3.nasm │ │ │ ├── ReadCr4.c │ │ │ ├── ReadCr4.nasm │ │ │ ├── ReadCs.c │ │ │ ├── ReadCs.nasm │ │ │ ├── ReadDr0.c │ │ │ ├── ReadDr0.nasm │ │ │ ├── ReadDr1.c │ │ │ ├── ReadDr1.nasm │ │ │ ├── ReadDr2.c │ │ │ ├── ReadDr2.nasm │ │ │ ├── ReadDr3.c │ │ │ ├── ReadDr3.nasm │ │ │ ├── ReadDr4.c │ │ │ ├── ReadDr4.nasm │ │ │ ├── ReadDr5.c │ │ │ ├── ReadDr5.nasm │ │ │ ├── ReadDr6.c │ │ │ ├── ReadDr6.nasm │ │ │ ├── ReadDr7.c │ │ │ ├── ReadDr7.nasm │ │ │ ├── ReadDs.c │ │ │ ├── ReadDs.nasm │ │ │ ├── ReadEflags.c │ │ │ ├── ReadEflags.nasm │ │ │ ├── ReadEs.c │ │ │ ├── ReadEs.nasm │ │ │ ├── ReadFs.c │ │ │ ├── ReadFs.nasm │ │ │ ├── ReadGdtr.c │ │ │ ├── ReadGdtr.nasm │ │ │ ├── ReadGs.c │ │ │ ├── ReadGs.nasm │ │ │ ├── ReadIdtr.c │ │ │ ├── ReadIdtr.nasm │ │ │ ├── ReadLdtr.c │ │ │ ├── ReadLdtr.nasm │ │ │ ├── ReadMm0.c │ │ │ ├── ReadMm0.nasm │ │ │ ├── ReadMm1.c │ │ │ ├── ReadMm1.nasm │ │ │ ├── ReadMm2.c │ │ │ ├── ReadMm2.nasm │ │ │ ├── ReadMm3.c │ │ │ ├── ReadMm3.nasm │ │ │ ├── ReadMm4.c │ │ │ ├── ReadMm4.nasm │ │ │ ├── ReadMm5.c │ │ │ ├── ReadMm5.nasm │ │ │ ├── ReadMm6.c │ │ │ ├── ReadMm6.nasm │ │ │ ├── ReadMm7.c │ │ │ ├── ReadMm7.nasm │ │ │ ├── ReadMsr64.c │ │ │ ├── ReadMsr64.nasm │ │ │ ├── ReadPmc.c │ │ │ ├── ReadPmc.nasm │ │ │ ├── ReadSs.c │ │ │ ├── ReadSs.nasm │ │ │ ├── ReadTr.c │ │ │ ├── ReadTr.nasm │ │ │ ├── ReadTsc.c │ │ │ ├── ReadTsc.nasm │ │ │ ├── SetJump.nasm │ │ │ ├── SwapBytes64.c │ │ │ ├── SwapBytes64.nasm │ │ │ ├── Thunk16.nasm │ │ │ ├── VmgExit.nasm │ │ │ ├── Wbinvd.c │ │ │ ├── Wbinvd.nasm │ │ │ ├── WriteCr0.c │ │ │ ├── WriteCr0.nasm │ │ │ ├── WriteCr2.c │ │ │ ├── WriteCr2.nasm │ │ │ ├── WriteCr3.c │ │ │ ├── WriteCr3.nasm │ │ │ ├── WriteCr4.c │ │ │ ├── WriteCr4.nasm │ │ │ ├── WriteDr0.c │ │ │ ├── WriteDr0.nasm │ │ │ ├── WriteDr1.c │ │ │ ├── WriteDr1.nasm │ │ │ ├── WriteDr2.c │ │ │ ├── WriteDr2.nasm │ │ │ ├── WriteDr3.c │ │ │ ├── WriteDr3.nasm │ │ │ ├── WriteDr4.c │ │ │ ├── WriteDr4.nasm │ │ │ ├── WriteDr5.c │ │ │ ├── WriteDr5.nasm │ │ │ ├── WriteDr6.c │ │ │ ├── WriteDr6.nasm │ │ │ ├── WriteDr7.c │ │ │ ├── WriteDr7.nasm │ │ │ ├── WriteGdtr.c │ │ │ ├── WriteGdtr.nasm │ │ │ ├── WriteIdtr.c │ │ │ ├── WriteIdtr.nasm │ │ │ ├── WriteLdtr.c │ │ │ ├── WriteLdtr.nasm │ │ │ ├── WriteMm0.c │ │ │ ├── WriteMm0.nasm │ │ │ ├── WriteMm1.c │ │ │ ├── WriteMm1.nasm │ │ │ ├── WriteMm2.c │ │ │ ├── WriteMm2.nasm │ │ │ ├── WriteMm3.c │ │ │ ├── WriteMm3.nasm │ │ │ ├── WriteMm4.c │ │ │ ├── WriteMm4.nasm │ │ │ ├── WriteMm5.c │ │ │ ├── WriteMm5.nasm │ │ │ ├── WriteMm6.c │ │ │ ├── WriteMm6.nasm │ │ │ ├── WriteMm7.c │ │ │ ├── WriteMm7.nasm │ │ │ ├── WriteMsr64.c │ │ │ ├── WriteMsr64.nasm │ │ │ ├── WriteTr.nasm │ │ │ └── XGetBv.nasm │ │ ├── LRotU32.c │ │ ├── LRotU64.c │ │ ├── LShiftU64.c │ │ ├── LinkedList.c │ │ ├── LongJump.c │ │ ├── LowBitSet32.c │ │ ├── LowBitSet64.c │ │ ├── Math64.c │ │ ├── ModU64x32.c │ │ ├── MultS64x64.c │ │ ├── MultU64x32.c │ │ ├── MultU64x64.c │ │ ├── RRotU32.c │ │ ├── RRotU64.c │ │ ├── RShiftU64.c │ │ ├── RiscV64 │ │ │ ├── CpuBreakpoint.c │ │ │ ├── CpuPause.c │ │ │ ├── DisableInterrupts.c │ │ │ ├── EnableInterrupts.c │ │ │ ├── FlushCache.S │ │ │ ├── GetInterruptState.c │ │ │ ├── InternalSwitchStack.c │ │ │ ├── RiscVCpuBreakpoint.S │ │ │ ├── RiscVCpuPause.S │ │ │ ├── RiscVInterrupt.S │ │ │ └── RiscVSetJumpLongJump.S │ │ ├── SafeString.c │ │ ├── SetJump.c │ │ ├── String.c │ │ ├── SwapBytes16.c │ │ ├── SwapBytes32.c │ │ ├── SwapBytes64.c │ │ ├── SwitchStack.c │ │ ├── Unaligned.c │ │ ├── UnitTestHost.c │ │ ├── UnitTestHost.h │ │ ├── UnitTestHostBaseLib.inf │ │ ├── UnitTestHostBaseLib.uni │ │ ├── X64 │ │ │ ├── CpuBreakpoint.c │ │ │ ├── CpuBreakpoint.nasm │ │ │ ├── CpuId.nasm │ │ │ ├── CpuIdEx.nasm │ │ │ ├── CpuPause.nasm │ │ │ ├── DisableCache.nasm │ │ │ ├── DisableInterrupts.nasm │ │ │ ├── DisablePaging64.nasm │ │ │ ├── EnableCache.nasm │ │ │ ├── EnableDisableInterrupts.nasm │ │ │ ├── EnableInterrupts.nasm │ │ │ ├── FlushCacheLine.nasm │ │ │ ├── FxRestore.nasm │ │ │ ├── FxSave.nasm │ │ │ ├── GccInline.c │ │ │ ├── GccInlinePriv.c │ │ │ ├── Invd.nasm │ │ │ ├── Lfence.nasm │ │ │ ├── LongJump.nasm │ │ │ ├── Monitor.nasm │ │ │ ├── Mwait.nasm │ │ │ ├── Non-existing.c │ │ │ ├── RdRand.nasm │ │ │ ├── ReadCr0.nasm │ │ │ ├── ReadCr2.nasm │ │ │ ├── ReadCr3.nasm │ │ │ ├── ReadCr4.nasm │ │ │ ├── ReadCs.nasm │ │ │ ├── ReadDr0.nasm │ │ │ ├── ReadDr1.nasm │ │ │ ├── ReadDr2.nasm │ │ │ ├── ReadDr3.nasm │ │ │ ├── ReadDr4.nasm │ │ │ ├── ReadDr5.nasm │ │ │ ├── ReadDr6.nasm │ │ │ ├── ReadDr7.nasm │ │ │ ├── ReadDs.nasm │ │ │ ├── ReadEflags.nasm │ │ │ ├── ReadEs.nasm │ │ │ ├── ReadFs.nasm │ │ │ ├── ReadGdtr.nasm │ │ │ ├── ReadGs.nasm │ │ │ ├── ReadIdtr.nasm │ │ │ ├── ReadLdtr.nasm │ │ │ ├── ReadMm0.nasm │ │ │ ├── ReadMm1.nasm │ │ │ ├── ReadMm2.nasm │ │ │ ├── ReadMm3.nasm │ │ │ ├── ReadMm4.nasm │ │ │ ├── ReadMm5.nasm │ │ │ ├── ReadMm6.nasm │ │ │ ├── ReadMm7.nasm │ │ │ ├── ReadMsr64.c │ │ │ ├── ReadMsr64.nasm │ │ │ ├── ReadPmc.nasm │ │ │ ├── ReadSs.nasm │ │ │ ├── ReadTr.nasm │ │ │ ├── ReadTsc.nasm │ │ │ ├── SetJump.nasm │ │ │ ├── SwitchStack.nasm │ │ │ ├── Thunk16.nasm │ │ │ ├── VmgExit.nasm │ │ │ ├── Wbinvd.nasm │ │ │ ├── WriteCr0.nasm │ │ │ ├── WriteCr2.nasm │ │ │ ├── WriteCr3.nasm │ │ │ ├── WriteCr4.nasm │ │ │ ├── WriteDr0.nasm │ │ │ ├── WriteDr1.nasm │ │ │ ├── WriteDr2.nasm │ │ │ ├── WriteDr3.nasm │ │ │ ├── WriteDr4.nasm │ │ │ ├── WriteDr5.nasm │ │ │ ├── WriteDr6.nasm │ │ │ ├── WriteDr7.nasm │ │ │ ├── WriteGdtr.nasm │ │ │ ├── WriteIdtr.nasm │ │ │ ├── WriteLdtr.nasm │ │ │ ├── WriteMm0.nasm │ │ │ ├── WriteMm1.nasm │ │ │ ├── WriteMm2.nasm │ │ │ ├── WriteMm3.nasm │ │ │ ├── WriteMm4.nasm │ │ │ ├── WriteMm5.nasm │ │ │ ├── WriteMm6.nasm │ │ │ ├── WriteMm7.nasm │ │ │ ├── WriteMsr64.c │ │ │ ├── WriteMsr64.nasm │ │ │ ├── WriteTr.nasm │ │ │ └── XGetBv.nasm │ │ ├── X86DisablePaging32.c │ │ ├── X86DisablePaging64.c │ │ ├── X86EnablePaging32.c │ │ ├── X86EnablePaging64.c │ │ ├── X86FxRestore.c │ │ ├── X86FxSave.c │ │ ├── X86GetInterruptState.c │ │ ├── X86MemoryFence.c │ │ ├── X86Msr.c │ │ ├── X86PatchInstruction.c │ │ ├── X86RdRand.c │ │ ├── X86ReadGdtr.c │ │ ├── X86ReadIdtr.c │ │ ├── X86SpeculationBarrier.c │ │ ├── X86Thunk.c │ │ ├── X86UnitTestHost.c │ │ ├── X86WriteGdtr.c │ │ └── X86WriteIdtr.c │ ├── BaseMemoryLib │ │ ├── BaseMemoryLib.inf │ │ ├── BaseMemoryLib.uni │ │ ├── CompareMemWrapper.c │ │ ├── CopyMem.c │ │ ├── CopyMemWrapper.c │ │ ├── IsZeroBufferWrapper.c │ │ ├── MemLibGeneric.c │ │ ├── MemLibGuid.c │ │ ├── MemLibInternals.h │ │ ├── ScanMem16Wrapper.c │ │ ├── ScanMem32Wrapper.c │ │ ├── ScanMem64Wrapper.c │ │ ├── ScanMem8Wrapper.c │ │ ├── SetMem.c │ │ ├── SetMem16Wrapper.c │ │ ├── SetMem32Wrapper.c │ │ ├── SetMem64Wrapper.c │ │ ├── SetMemWrapper.c │ │ └── ZeroMemWrapper.c │ ├── BaseMemoryLibMmx │ │ ├── BaseMemoryLibMmx.inf │ │ ├── BaseMemoryLibMmx.uni │ │ ├── CompareMemWrapper.c │ │ ├── CopyMemWrapper.c │ │ ├── Ia32 │ │ │ ├── CompareMem.nasm │ │ │ ├── CopyMem.nasm │ │ │ ├── IsZeroBuffer.nasm │ │ │ ├── ScanMem16.nasm │ │ │ ├── ScanMem32.nasm │ │ │ ├── ScanMem64.nasm │ │ │ ├── ScanMem8.nasm │ │ │ ├── SetMem.nasm │ │ │ ├── SetMem16.nasm │ │ │ ├── SetMem32.nasm │ │ │ ├── SetMem64.nasm │ │ │ └── ZeroMem.nasm │ │ ├── IsZeroBufferWrapper.c │ │ ├── MemLibGuid.c │ │ ├── MemLibInternals.h │ │ ├── ScanMem16Wrapper.c │ │ ├── ScanMem32Wrapper.c │ │ ├── ScanMem64Wrapper.c │ │ ├── ScanMem8Wrapper.c │ │ ├── SetMem16Wrapper.c │ │ ├── SetMem32Wrapper.c │ │ ├── SetMem64Wrapper.c │ │ ├── SetMemWrapper.c │ │ ├── X64 │ │ │ ├── CompareMem.nasm │ │ │ ├── CopyMem.nasm │ │ │ ├── IsZeroBuffer.nasm │ │ │ ├── ScanMem16.nasm │ │ │ ├── ScanMem32.nasm │ │ │ ├── ScanMem64.nasm │ │ │ ├── ScanMem8.nasm │ │ │ ├── SetMem.nasm │ │ │ ├── SetMem16.nasm │ │ │ ├── SetMem32.nasm │ │ │ ├── SetMem64.nasm │ │ │ └── ZeroMem.nasm │ │ └── ZeroMemWrapper.c │ ├── BaseMemoryLibOptDxe │ │ ├── AArch64 │ │ │ ├── CompareGuid.S │ │ │ ├── CompareMem.S │ │ │ ├── CopyMem.S │ │ │ ├── ScanMem.S │ │ │ └── SetMem.S │ │ ├── Arm │ │ │ ├── CompareGuid.S │ │ │ ├── CompareGuid.asm │ │ │ ├── CompareMem.S │ │ │ ├── CompareMem.asm │ │ │ ├── CopyMem.S │ │ │ ├── CopyMem.asm │ │ │ ├── MemLibGuid.c │ │ │ ├── ScanMem.S │ │ │ ├── ScanMem.asm │ │ │ ├── ScanMemGeneric.c │ │ │ ├── SetMem.S │ │ │ └── SetMem.asm │ │ ├── BaseMemoryLibOptDxe.inf │ │ ├── BaseMemoryLibOptDxe.uni │ │ ├── CompareMemWrapper.c │ │ ├── CopyMemWrapper.c │ │ ├── Ia32 │ │ │ ├── CompareMem.nasm │ │ │ ├── CopyMem.nasm │ │ │ ├── IsZeroBuffer.nasm │ │ │ ├── ScanMem16.nasm │ │ │ ├── ScanMem32.nasm │ │ │ ├── ScanMem64.nasm │ │ │ ├── ScanMem8.nasm │ │ │ ├── SetMem.nasm │ │ │ ├── SetMem16.nasm │ │ │ ├── SetMem32.nasm │ │ │ ├── SetMem64.nasm │ │ │ └── ZeroMem.nasm │ │ ├── IsZeroBufferWrapper.c │ │ ├── MemLibGuid.c │ │ ├── MemLibInternals.h │ │ ├── ScanMem16Wrapper.c │ │ ├── ScanMem32Wrapper.c │ │ ├── ScanMem64Wrapper.c │ │ ├── ScanMem8Wrapper.c │ │ ├── SetMem16Wrapper.c │ │ ├── SetMem32Wrapper.c │ │ ├── SetMem64Wrapper.c │ │ ├── SetMemWrapper.c │ │ ├── X64 │ │ │ ├── CompareMem.nasm │ │ │ ├── CopyMem.nasm │ │ │ ├── IsZeroBuffer.nasm │ │ │ ├── ScanMem16.nasm │ │ │ ├── ScanMem32.nasm │ │ │ ├── ScanMem64.nasm │ │ │ ├── ScanMem8.nasm │ │ │ ├── SetMem.nasm │ │ │ ├── SetMem16.nasm │ │ │ ├── SetMem32.nasm │ │ │ ├── SetMem64.nasm │ │ │ └── ZeroMem.nasm │ │ └── ZeroMemWrapper.c │ ├── BaseMemoryLibOptPei │ │ ├── BaseMemoryLibOptPei.inf │ │ ├── BaseMemoryLibOptPei.uni │ │ ├── CompareMemWrapper.c │ │ ├── CopyMemWrapper.c │ │ ├── Ia32 │ │ │ ├── CompareMem.nasm │ │ │ ├── CopyMem.nasm │ │ │ ├── IsZeroBuffer.nasm │ │ │ ├── ScanMem16.nasm │ │ │ ├── ScanMem32.nasm │ │ │ ├── ScanMem64.nasm │ │ │ ├── ScanMem8.nasm │ │ │ ├── SetMem.nasm │ │ │ ├── SetMem16.nasm │ │ │ ├── SetMem32.nasm │ │ │ ├── SetMem64.nasm │ │ │ └── ZeroMem.nasm │ │ ├── IsZeroBufferWrapper.c │ │ ├── MemLibGuid.c │ │ ├── MemLibInternals.h │ │ ├── ScanMem16Wrapper.c │ │ ├── ScanMem32Wrapper.c │ │ ├── ScanMem64Wrapper.c │ │ ├── ScanMem8Wrapper.c │ │ ├── SetMem16Wrapper.c │ │ ├── SetMem32Wrapper.c │ │ ├── SetMem64Wrapper.c │ │ ├── SetMemWrapper.c │ │ ├── X64 │ │ │ ├── CompareMem.nasm │ │ │ ├── CopyMem.nasm │ │ │ ├── IsZeroBuffer.nasm │ │ │ ├── ScanMem16.nasm │ │ │ ├── ScanMem32.nasm │ │ │ ├── ScanMem64.nasm │ │ │ ├── ScanMem8.nasm │ │ │ ├── SetMem.nasm │ │ │ ├── SetMem16.nasm │ │ │ ├── SetMem32.nasm │ │ │ ├── SetMem64.nasm │ │ │ └── ZeroMem.nasm │ │ └── ZeroMemWrapper.c │ ├── BaseMemoryLibRepStr │ │ ├── BaseMemoryLibRepStr.inf │ │ ├── BaseMemoryLibRepStr.uni │ │ ├── CompareMemWrapper.c │ │ ├── CopyMemWrapper.c │ │ ├── Ia32 │ │ │ ├── CompareMem.nasm │ │ │ ├── CopyMem.nasm │ │ │ ├── IsZeroBuffer.nasm │ │ │ ├── ScanMem16.nasm │ │ │ ├── ScanMem32.nasm │ │ │ ├── ScanMem64.nasm │ │ │ ├── ScanMem8.nasm │ │ │ ├── SetMem.nasm │ │ │ ├── SetMem16.nasm │ │ │ ├── SetMem32.nasm │ │ │ ├── SetMem64.nasm │ │ │ └── ZeroMem.nasm │ │ ├── IsZeroBufferWrapper.c │ │ ├── MemLibGuid.c │ │ ├── MemLibInternals.h │ │ ├── ScanMem16Wrapper.c │ │ ├── ScanMem32Wrapper.c │ │ ├── ScanMem64Wrapper.c │ │ ├── ScanMem8Wrapper.c │ │ ├── SetMem16Wrapper.c │ │ ├── SetMem32Wrapper.c │ │ ├── SetMem64Wrapper.c │ │ ├── SetMemWrapper.c │ │ ├── X64 │ │ │ ├── CompareMem.nasm │ │ │ ├── CopyMem.nasm │ │ │ ├── IsZeroBuffer.nasm │ │ │ ├── ScanMem16.nasm │ │ │ ├── ScanMem32.nasm │ │ │ ├── ScanMem64.nasm │ │ │ ├── ScanMem8.nasm │ │ │ ├── SetMem.nasm │ │ │ ├── SetMem16.nasm │ │ │ ├── SetMem32.nasm │ │ │ ├── SetMem64.nasm │ │ │ └── ZeroMem.nasm │ │ └── ZeroMemWrapper.c │ ├── BaseMemoryLibSse2 │ │ ├── BaseMemoryLibSse2.inf │ │ ├── BaseMemoryLibSse2.uni │ │ ├── CompareMemWrapper.c │ │ ├── CopyMemWrapper.c │ │ ├── Ia32 │ │ │ ├── CompareMem.nasm │ │ │ ├── CopyMem.nasm │ │ │ ├── IsZeroBuffer.nasm │ │ │ ├── ScanMem16.nasm │ │ │ ├── ScanMem32.nasm │ │ │ ├── ScanMem64.nasm │ │ │ ├── ScanMem8.nasm │ │ │ ├── SetMem.nasm │ │ │ ├── SetMem16.nasm │ │ │ ├── SetMem32.nasm │ │ │ ├── SetMem64.nasm │ │ │ └── ZeroMem.nasm │ │ ├── IsZeroBufferWrapper.c │ │ ├── MemLibGuid.c │ │ ├── MemLibInternals.h │ │ ├── ScanMem16Wrapper.c │ │ ├── ScanMem32Wrapper.c │ │ ├── ScanMem64Wrapper.c │ │ ├── ScanMem8Wrapper.c │ │ ├── SetMem16Wrapper.c │ │ ├── SetMem32Wrapper.c │ │ ├── SetMem64Wrapper.c │ │ ├── SetMemWrapper.c │ │ ├── X64 │ │ │ ├── CompareMem.nasm │ │ │ ├── CopyMem.nasm │ │ │ ├── IsZeroBuffer.nasm │ │ │ ├── ScanMem16.nasm │ │ │ ├── ScanMem32.nasm │ │ │ ├── ScanMem64.nasm │ │ │ ├── ScanMem8.nasm │ │ │ ├── SetMem.nasm │ │ │ ├── SetMem16.nasm │ │ │ ├── SetMem32.nasm │ │ │ ├── SetMem64.nasm │ │ │ └── ZeroMem.nasm │ │ └── ZeroMemWrapper.c │ ├── BaseOrderedCollectionRedBlackTreeLib │ │ ├── BaseOrderedCollectionRedBlackTreeLib.c │ │ ├── BaseOrderedCollectionRedBlackTreeLib.inf │ │ └── BaseOrderedCollectionRedBlackTreeLib.uni │ ├── BasePcdLibNull │ │ ├── BasePcdLibNull.inf │ │ ├── BasePcdLibNull.uni │ │ └── PcdLib.c │ ├── BasePciCf8Lib │ │ ├── BasePciCf8Lib.inf │ │ ├── BasePciCf8Lib.uni │ │ └── PciCf8Lib.c │ ├── BasePciExpressLib │ │ ├── BasePciExpressLib.inf │ │ ├── BasePciExpressLib.uni │ │ └── PciExpressLib.c │ ├── BasePciLibCf8 │ │ ├── BasePciLibCf8.inf │ │ ├── BasePciLibCf8.uni │ │ └── PciLib.c │ ├── BasePciLibPciExpress │ │ ├── BasePciLibPciExpress.inf │ │ ├── BasePciLibPciExpress.uni │ │ └── PciLib.c │ ├── BasePciSegmentInfoLibNull │ │ ├── BasePciSegmentInfoLibNull.inf │ │ ├── BasePciSegmentInfoLibNull.uni │ │ └── PciSegmentInfoLib.c │ ├── BasePciSegmentLibPci │ │ ├── BasePciSegmentLibPci.inf │ │ ├── BasePciSegmentLibPci.uni │ │ └── PciSegmentLib.c │ ├── BasePeCoffExtraActionLibNull │ │ ├── BasePeCoffExtraActionLibNull.inf │ │ ├── PeCoffExtraActionLib.c │ │ └── PeCoffExtraActionLibNull.uni │ ├── BasePeCoffGetEntryPointLib │ │ ├── BasePeCoffGetEntryPointLib.inf │ │ ├── BasePeCoffGetEntryPointLib.uni │ │ └── PeCoffGetEntryPoint.c │ ├── BasePeCoffLib │ │ ├── Arm │ │ │ └── PeCoffLoaderEx.c │ │ ├── BasePeCoff.c │ │ ├── BasePeCoffLib.inf │ │ ├── BasePeCoffLib.uni │ │ ├── BasePeCoffLibInternals.h │ │ ├── PeCoffLoaderEx.c │ │ └── RiscV │ │ │ └── PeCoffLoaderEx.c │ ├── BasePerformanceLibNull │ │ ├── BasePerformanceLibNull.inf │ │ ├── BasePerformanceLibNull.uni │ │ └── PerformanceLib.c │ ├── BasePostCodeLibDebug │ │ ├── BasePostCodeLibDebug.inf │ │ ├── BasePostCodeLibDebug.uni │ │ └── PostCode.c │ ├── BasePostCodeLibPort80 │ │ ├── BasePostCodeLibPort80.inf │ │ ├── BasePostCodeLibPort80.uni │ │ └── PostCode.c │ ├── BasePrintLib │ │ ├── BasePrintLib.inf │ │ ├── BasePrintLib.uni │ │ ├── PrintLib.c │ │ ├── PrintLibInternal.c │ │ └── PrintLibInternal.h │ ├── BaseReportStatusCodeLibNull │ │ ├── BaseReportStatusCodeLib.c │ │ ├── BaseReportStatusCodeLibNull.inf │ │ └── BaseReportStatusCodeLibNull.uni │ ├── BaseRngLib │ │ ├── BaseRng.c │ │ ├── BaseRngLib.inf │ │ └── BaseRngLib.uni │ ├── BaseRngLibNull │ │ ├── BaseRngLibNull.c │ │ ├── BaseRngLibNull.inf │ │ └── BaseRngLibNull.uni │ ├── BaseRngLibTimerLib │ │ ├── BaseRngLibTimerLib.inf │ │ ├── BaseRngLibTimerLib.uni │ │ └── RngLibTimer.c │ ├── BaseS3BootScriptLibNull │ │ ├── BaseS3BootScriptLibNull.inf │ │ ├── BaseS3BootScriptLibNull.uni │ │ └── BootScriptLib.c │ ├── BaseS3IoLib │ │ ├── BaseS3IoLib.inf │ │ ├── BaseS3IoLib.uni │ │ └── S3IoLib.c │ ├── BaseS3PciLib │ │ ├── BaseS3PciLib.inf │ │ ├── BaseS3PciLib.uni │ │ └── S3PciLib.c │ ├── BaseS3PciSegmentLib │ │ ├── BaseS3PciSegmentLib.inf │ │ ├── BaseS3PciSegmentLib.uni │ │ └── S3PciSegmentLib.c │ ├── BaseS3SmbusLib │ │ ├── BaseS3SmbusLib.inf │ │ ├── BaseS3SmbusLib.uni │ │ └── S3SmbusLib.c │ ├── BaseS3StallLib │ │ ├── BaseS3StallLib.inf │ │ ├── BaseS3StallLib.uni │ │ └── S3StallLib.c │ ├── BaseSafeIntLib │ │ ├── BaseSafeIntLib.inf │ │ ├── SafeIntLib.c │ │ ├── SafeIntLib32.c │ │ ├── SafeIntLib64.c │ │ └── SafeIntLibEbc.c │ ├── BaseSerialPortLibNull │ │ ├── BaseSerialPortLibNull.c │ │ ├── BaseSerialPortLibNull.inf │ │ └── BaseSerialPortLibNull.uni │ ├── BaseSmbusLibNull │ │ ├── BaseSmbusLibNull.c │ │ ├── BaseSmbusLibNull.inf │ │ └── BaseSmbusLibNull.uni │ ├── BaseStackCheckLib │ │ ├── BaseStackCheckGcc.c │ │ ├── BaseStackCheckLib.inf │ │ ├── BaseStackCheckLib.uni │ │ └── BaseStackCheckNull.c │ ├── BaseSynchronizationLib │ │ ├── AArch64 │ │ │ ├── Synchronization.S │ │ │ └── Synchronization.asm │ │ ├── Arm │ │ │ ├── Synchronization.S │ │ │ └── Synchronization.asm │ │ ├── BaseSynchronizationLib.inf │ │ ├── BaseSynchronizationLib.uni │ │ ├── BaseSynchronizationLibInternals.h │ │ ├── Ebc │ │ │ └── Synchronization.c │ │ ├── Ia32 │ │ │ ├── GccInline.c │ │ │ ├── InterlockedCompareExchange16.c │ │ │ ├── InterlockedCompareExchange16.nasm │ │ │ ├── InterlockedCompareExchange32.c │ │ │ ├── InterlockedCompareExchange32.nasm │ │ │ ├── InterlockedCompareExchange64.c │ │ │ ├── InterlockedCompareExchange64.nasm │ │ │ ├── InterlockedDecrement.nasm │ │ │ ├── InterlockedIncrement.nasm │ │ │ └── InternalGetSpinLockProperties.c │ │ ├── InterlockedDecrementMsc.c │ │ ├── InterlockedIncrementMsc.c │ │ ├── RiscV64 │ │ │ └── Synchronization.S │ │ ├── Synchronization.c │ │ ├── SynchronizationGcc.c │ │ ├── SynchronizationMsc.c │ │ └── X64 │ │ │ ├── GccInline.c │ │ │ ├── InterlockedCompareExchange16.c │ │ │ ├── InterlockedCompareExchange16.nasm │ │ │ ├── InterlockedCompareExchange32.c │ │ │ ├── InterlockedCompareExchange32.nasm │ │ │ ├── InterlockedCompareExchange64.c │ │ │ ├── InterlockedCompareExchange64.nasm │ │ │ ├── InterlockedDecrement.nasm │ │ │ └── InterlockedIncrement.nasm │ ├── BaseTimerLibNullTemplate │ │ ├── BaseTimerLibNullTemplate.inf │ │ ├── BaseTimerLibNullTemplate.uni │ │ └── TimerLibNull.c │ ├── BaseUefiDecompressLib │ │ ├── BaseUefiDecompressLib.c │ │ ├── BaseUefiDecompressLib.inf │ │ ├── BaseUefiDecompressLib.uni │ │ ├── BaseUefiDecompressLibInternals.h │ │ ├── BaseUefiTianoCustomDecompressLib.c │ │ └── BaseUefiTianoCustomDecompressLib.inf │ ├── DxeCoreEntryPoint │ │ ├── DxeCoreEntryPoint.c │ │ ├── DxeCoreEntryPoint.inf │ │ └── DxeCoreEntryPoint.uni │ ├── DxeCoreHobLib │ │ ├── DxeCoreHobLib.inf │ │ ├── DxeCoreHobLib.uni │ │ └── HobLib.c │ ├── DxeExtractGuidedSectionLib │ │ ├── DxeExtractGuidedSectionLib.c │ │ ├── DxeExtractGuidedSectionLib.inf │ │ └── DxeExtractGuidedSectionLib.uni │ ├── DxeHobLib │ │ ├── DxeHobLib.inf │ │ ├── DxeHobLib.uni │ │ └── HobLib.c │ ├── DxeHstiLib │ │ ├── DxeHstiLib.inf │ │ ├── DxeHstiLib.uni │ │ ├── HstiAip.c │ │ ├── HstiDxe.c │ │ └── HstiDxe.h │ ├── DxeIoLibCpuIo2 │ │ ├── DxeCpuIo2LibInternal.h │ │ ├── DxeIoLibCpuIo2.inf │ │ ├── DxeIoLibCpuIo2.uni │ │ ├── IoHighLevel.c │ │ ├── IoLib.c │ │ └── IoLibMmioBuffer.c │ ├── DxePcdLib │ │ ├── DxePcdLib.c │ │ ├── DxePcdLib.inf │ │ └── DxePcdLib.uni │ ├── DxeRngLib │ │ ├── DxeRngLib.c │ │ ├── DxeRngLib.inf │ │ └── DxeRngLib.uni │ ├── DxeRuntimeDebugLibSerialPort │ │ ├── DebugLib.c │ │ ├── DxeRuntimeDebugLibSerialPort.inf │ │ └── DxeRuntimeDebugLibSerialPort.uni │ ├── DxeRuntimePciExpressLib │ │ ├── DxeRuntimePciExpressLib.inf │ │ ├── DxeRuntimePciExpressLib.uni │ │ └── PciExpressLib.c │ ├── DxeServicesLib │ │ ├── Allocate.c │ │ ├── DxeServicesLib.c │ │ ├── DxeServicesLib.inf │ │ ├── DxeServicesLib.uni │ │ └── X64 │ │ │ └── Allocate.c │ ├── DxeServicesTableLib │ │ ├── DxeServicesTableLib.c │ │ ├── DxeServicesTableLib.inf │ │ └── DxeServicesTableLib.uni │ ├── DxeSmbusLib │ │ ├── DxeSmbusLib.c │ │ ├── DxeSmbusLib.inf │ │ ├── DxeSmbusLib.uni │ │ ├── InternalSmbusLib.h │ │ └── SmbusLib.c │ ├── MmServicesTableLib │ │ ├── MmServicesTableLib.c │ │ ├── MmServicesTableLib.inf │ │ └── MmServicesTableLib.uni │ ├── PciSegmentLibSegmentInfo │ │ ├── BasePciSegmentLib.c │ │ ├── BasePciSegmentLibSegmentInfo.inf │ │ ├── BasePciSegmentLibSegmentInfo.uni │ │ ├── DxeRuntimePciSegmentLib.c │ │ ├── DxeRuntimePciSegmentLibSegmentInfo.inf │ │ ├── DxeRuntimePciSegmentLibSegmentInfo.uni │ │ ├── PciSegmentLibCommon.c │ │ └── PciSegmentLibCommon.h │ ├── PeiCoreEntryPoint │ │ ├── PeiCoreEntryPoint.c │ │ ├── PeiCoreEntryPoint.inf │ │ └── PeiCoreEntryPoint.uni │ ├── PeiDxePostCodeLibReportStatusCode │ │ ├── PeiDxePostCodeLibReportStatusCode.inf │ │ ├── PeiDxePostCodeLibReportStatusCode.uni │ │ └── PostCode.c │ ├── PeiExtractGuidedSectionLib │ │ ├── PeiExtractGuidedSectionLib.c │ │ ├── PeiExtractGuidedSectionLib.inf │ │ └── PeiExtractGuidedSectionLib.uni │ ├── PeiHobLib │ │ ├── HobLib.c │ │ ├── PeiHobLib.inf │ │ └── PeiHobLib.uni │ ├── PeiIoLibCpuIo │ │ ├── IoHighLevel.c │ │ ├── IoLib.c │ │ ├── IoLibMmioBuffer.c │ │ ├── PeiIoLibCpuIo.inf │ │ └── PeiIoLibCpuIo.uni │ ├── PeiMemoryAllocationLib │ │ ├── MemoryAllocationLib.c │ │ ├── PeiMemoryAllocationLib.inf │ │ └── PeiMemoryAllocationLib.uni │ ├── PeiMemoryLib │ │ ├── CompareMemWrapper.c │ │ ├── CopyMemWrapper.c │ │ ├── IsZeroBufferWrapper.c │ │ ├── MemLib.c │ │ ├── MemLibGeneric.c │ │ ├── MemLibGuid.c │ │ ├── MemLibInternals.h │ │ ├── PeiMemoryLib.inf │ │ ├── PeiMemoryLib.uni │ │ ├── ScanMem16Wrapper.c │ │ ├── ScanMem32Wrapper.c │ │ ├── ScanMem64Wrapper.c │ │ ├── ScanMem8Wrapper.c │ │ ├── SetMem16Wrapper.c │ │ ├── SetMem32Wrapper.c │ │ ├── SetMem64Wrapper.c │ │ ├── SetMemWrapper.c │ │ └── ZeroMemWrapper.c │ ├── PeiPcdLib │ │ ├── PeiPcdLib.c │ │ ├── PeiPcdLib.inf │ │ └── PeiPcdLib.uni │ ├── PeiPciLibPciCfg2 │ │ ├── PciLib.c │ │ ├── PeiPciLibPciCfg2.inf │ │ └── PeiPciLibPciCfg2.uni │ ├── PeiPciSegmentLibPciCfg2 │ │ ├── PciSegmentLib.c │ │ ├── PeiPciSegmentLibPciCfg2.inf │ │ └── PeiPciSegmentLibPciCfg2.uni │ ├── PeiResourcePublicationLib │ │ ├── PeiResourcePublicationLib.c │ │ ├── PeiResourcePublicationLib.inf │ │ └── PeiResourcePublicationLib.uni │ ├── PeiServicesLib │ │ ├── PeiServicesLib.c │ │ ├── PeiServicesLib.inf │ │ └── PeiServicesLib.uni │ ├── PeiServicesTablePointerLib │ │ ├── PeiServicesTablePointer.c │ │ ├── PeiServicesTablePointerLib.inf │ │ └── PeiServicesTablePointerLib.uni │ ├── PeiServicesTablePointerLibIdt │ │ ├── PeiServicesTablePointer.c │ │ ├── PeiServicesTablePointerLibIdt.inf │ │ └── PeiServicesTablePointerLibIdt.uni │ ├── PeiSmbusLibSmbus2Ppi │ │ ├── InternalSmbusLib.h │ │ ├── PeiSmbusLib.c │ │ ├── PeiSmbusLibSmbus2Ppi.inf │ │ ├── PeiSmbusLibSmbus2Ppi.uni │ │ └── SmbusLib.c │ ├── PeimEntryPoint │ │ ├── PeimEntryPoint.c │ │ ├── PeimEntryPoint.inf │ │ └── PeimEntryPoint.uni │ ├── SecPeiDxeTimerLibCpu │ │ ├── SecPeiDxeTimerLibCpu.inf │ │ ├── SecPeiDxeTimerLibCpu.uni │ │ └── X86TimerLib.c │ ├── SmiHandlerProfileLibNull │ │ ├── SmiHandlerProfileLibNull.c │ │ ├── SmiHandlerProfileLibNull.inf │ │ └── SmiHandlerProfileLibNull.uni │ ├── SmmIoLib │ │ ├── SmmIoLib.c │ │ ├── SmmIoLib.inf │ │ └── SmmIoLib.uni │ ├── SmmIoLibSmmCpuIo2 │ │ ├── IoHighLevel.c │ │ ├── IoLib.c │ │ ├── IoLibMmioBuffer.c │ │ ├── SmmCpuIoLibInternal.h │ │ ├── SmmIoLibSmmCpuIo2.inf │ │ └── SmmIoLibSmmCpuIo2.uni │ ├── SmmLibNull │ │ ├── SmmLibNull.c │ │ ├── SmmLibNull.inf │ │ └── SmmLibNull.uni │ ├── SmmMemLib │ │ ├── SmmMemLib.c │ │ ├── SmmMemLib.inf │ │ └── SmmMemLib.uni │ ├── SmmMemoryAllocationLib │ │ ├── MemoryAllocationLib.c │ │ ├── SmmMemoryAllocationLib.inf │ │ └── SmmMemoryAllocationLib.uni │ ├── SmmPciExpressLib │ │ ├── PciExpressLib.c │ │ └── SmmPciExpressLib.inf │ ├── SmmPciLibPciRootBridgeIo │ │ ├── PciLib.c │ │ ├── SmmPciLibPciRootBridgeIo.inf │ │ └── SmmPciLibPciRootBridgeIo.uni │ ├── SmmPeriodicSmiLib │ │ ├── SmmPeriodicSmiLib.c │ │ ├── SmmPeriodicSmiLib.inf │ │ └── SmmPeriodicSmiLib.uni │ ├── SmmServicesTableLib │ │ ├── SmmServicesTableLib.c │ │ ├── SmmServicesTableLib.inf │ │ └── SmmServicesTableLib.uni │ ├── StandaloneMmDriverEntryPoint │ │ ├── StandaloneMmDriverEntryPoint.c │ │ ├── StandaloneMmDriverEntryPoint.inf │ │ └── StandaloneMmDriverEntryPoint.uni │ ├── StandaloneMmServicesTableLib │ │ ├── StandaloneMmServicesTableLib.c │ │ ├── StandaloneMmServicesTableLib.inf │ │ └── StandaloneMmServicesTableLib.uni │ ├── UefiApplicationEntryPoint │ │ ├── ApplicationEntryPoint.c │ │ ├── UefiApplicationEntryPoint.inf │ │ └── UefiApplicationEntryPoint.uni │ ├── UefiBootServicesTableLib │ │ ├── UefiBootServicesTableLib.c │ │ ├── UefiBootServicesTableLib.inf │ │ └── UefiBootServicesTableLib.uni │ ├── UefiDebugLibConOut │ │ ├── DebugLib.c │ │ ├── DebugLibConstructor.c │ │ ├── UefiDebugLibConOut.inf │ │ └── UefiDebugLibConOut.uni │ ├── UefiDebugLibDebugPortProtocol │ │ ├── DebugLib.c │ │ ├── DebugLibConstructor.c │ │ ├── UefiDebugLibDebugPortProtocol.inf │ │ └── UefiDebugLibDebugPortProtocol.uni │ ├── UefiDebugLibStdErr │ │ ├── DebugLib.c │ │ ├── DebugLibConstructor.c │ │ ├── UefiDebugLibStdErr.inf │ │ └── UefiDebugLibStdErr.uni │ ├── UefiDevicePathLib │ │ ├── DevicePathFromText.c │ │ ├── DevicePathToText.c │ │ ├── DevicePathUtilities.c │ │ ├── UefiDevicePathLib.c │ │ ├── UefiDevicePathLib.h │ │ ├── UefiDevicePathLib.inf │ │ ├── UefiDevicePathLib.uni │ │ ├── UefiDevicePathLibOptionalDevicePathProtocol.c │ │ ├── UefiDevicePathLibOptionalDevicePathProtocol.inf │ │ └── UefiDevicePathLibOptionalDevicePathProtocol.uni │ ├── UefiDevicePathLibDevicePathProtocol │ │ ├── UefiDevicePathLib.c │ │ ├── UefiDevicePathLibDevicePathProtocol.inf │ │ └── UefiDevicePathLibDevicePathProtocol.uni │ ├── UefiDriverEntryPoint │ │ ├── DriverEntryPoint.c │ │ ├── UefiDriverEntryPoint.inf │ │ └── UefiDriverEntryPoint.uni │ ├── UefiFileHandleLib │ │ ├── UefiFileHandleLib.c │ │ ├── UefiFileHandleLib.inf │ │ └── UefiFileHandleLib.uni │ ├── UefiLib │ │ ├── Acpi.c │ │ ├── Console.c │ │ ├── UefiDriverModel.c │ │ ├── UefiLib.c │ │ ├── UefiLib.inf │ │ ├── UefiLib.uni │ │ ├── UefiLibInternal.h │ │ ├── UefiLibPrint.c │ │ └── UefiNotTiano.c │ ├── UefiMemoryAllocationLib │ │ ├── MemoryAllocationLib.c │ │ ├── UefiMemoryAllocationLib.inf │ │ └── UefiMemoryAllocationLib.uni │ ├── UefiMemoryLib │ │ ├── CompareMemWrapper.c │ │ ├── CopyMemWrapper.c │ │ ├── IsZeroBufferWrapper.c │ │ ├── MemLib.c │ │ ├── MemLibGeneric.c │ │ ├── MemLibGuid.c │ │ ├── MemLibInternals.h │ │ ├── ScanMem16Wrapper.c │ │ ├── ScanMem32Wrapper.c │ │ ├── ScanMem64Wrapper.c │ │ ├── ScanMem8Wrapper.c │ │ ├── SetMem16Wrapper.c │ │ ├── SetMem32Wrapper.c │ │ ├── SetMem64Wrapper.c │ │ ├── SetMemWrapper.c │ │ ├── UefiMemoryLib.inf │ │ ├── UefiMemoryLib.uni │ │ └── ZeroMemWrapper.c │ ├── UefiPciLibPciRootBridgeIo │ │ ├── PciLib.c │ │ ├── UefiPciLibPciRootBridgeIo.inf │ │ └── UefiPciLibPciRootBridgeIo.uni │ ├── UefiPciSegmentLibPciRootBridgeIo │ │ ├── PciSegmentLib.c │ │ ├── PciSegmentLib.h │ │ ├── UefiPciSegmentLibPciRootBridgeIo.inf │ │ └── UefiPciSegmentLibPciRootBridgeIo.uni │ ├── UefiRuntimeLib │ │ ├── RuntimeLib.c │ │ ├── UefiRuntimeLib.inf │ │ └── UefiRuntimeLib.uni │ ├── UefiRuntimeServicesTableLib │ │ ├── UefiRuntimeServicesTableLib.c │ │ ├── UefiRuntimeServicesTableLib.inf │ │ └── UefiRuntimeServicesTableLib.uni │ ├── UefiScsiLib │ │ ├── UefiScsiLib.c │ │ ├── UefiScsiLib.inf │ │ └── UefiScsiLib.uni │ └── UefiUsbLib │ │ ├── Hid.c │ │ ├── UefiUsbLib.inf │ │ ├── UefiUsbLib.uni │ │ ├── UefiUsbLibInternal.h │ │ └── UsbDxeLib.c ├── MdePkg.ci.yaml ├── MdePkg.dec ├── MdePkg.dsc ├── MdePkg.uni ├── MdePkgExtra.uni └── Test │ ├── MdePkgHostTest.dsc │ └── UnitTest │ ├── Include │ └── Library │ │ └── UnitTestHostBaseLib.h │ └── Library │ ├── BaseLib │ ├── Base64UnitTest.c │ ├── BaseLibUnitTestsHost.inf │ └── BaseLibUnitTestsUefi.inf │ └── BaseSafeIntLib │ ├── SafeIntLibUintnIntnUnitTests32.c │ ├── SafeIntLibUintnIntnUnitTests64.c │ ├── TestBaseSafeIntLib.c │ ├── TestBaseSafeIntLib.h │ ├── TestBaseSafeIntLib.uni │ ├── TestBaseSafeIntLibDxe.inf │ ├── TestBaseSafeIntLibHost.inf │ ├── TestBaseSafeIntLibPei.inf │ ├── TestBaseSafeIntLibSmm.inf │ └── TestBaseSafeIntLibUefiShell.inf ├── NetworkPkg ├── Application │ └── VConfig │ │ ├── VConfig.c │ │ ├── VConfig.inf │ │ ├── VConfig.uni │ │ ├── VConfigExtra.uni │ │ └── VConfigStrings.uni ├── ArpDxe │ ├── ArpDriver.c │ ├── ArpDriver.h │ ├── ArpDxe.inf │ ├── ArpDxe.uni │ ├── ArpDxeExtra.uni │ ├── ArpImpl.c │ ├── ArpImpl.h │ ├── ArpMain.c │ └── ComponentName.c ├── Dhcp4Dxe │ ├── ComponentName.c │ ├── Dhcp4Driver.c │ ├── Dhcp4Driver.h │ ├── Dhcp4Dxe.inf │ ├── Dhcp4Dxe.uni │ ├── Dhcp4DxeExtra.uni │ ├── Dhcp4Impl.c │ ├── Dhcp4Impl.h │ ├── Dhcp4Io.c │ ├── Dhcp4Io.h │ ├── Dhcp4Option.c │ └── Dhcp4Option.h ├── Dhcp6Dxe │ ├── ComponentName.c │ ├── Dhcp6Driver.c │ ├── Dhcp6Driver.h │ ├── Dhcp6Dxe.inf │ ├── Dhcp6Dxe.uni │ ├── Dhcp6DxeExtra.uni │ ├── Dhcp6Impl.c │ ├── Dhcp6Impl.h │ ├── Dhcp6Io.c │ ├── Dhcp6Io.h │ ├── Dhcp6Utility.c │ └── Dhcp6Utility.h ├── DnsDxe │ ├── ComponentName.c │ ├── DnsDhcp.c │ ├── DnsDhcp.h │ ├── DnsDriver.c │ ├── DnsDriver.h │ ├── DnsDxe.inf │ ├── DnsDxe.uni │ ├── DnsDxeExtra.uni │ ├── DnsImpl.c │ ├── DnsImpl.h │ └── DnsProtocol.c ├── DpcDxe │ ├── Dpc.c │ ├── Dpc.h │ ├── DpcDxe.inf │ ├── DpcDxe.uni │ └── DpcDxeExtra.uni ├── HttpBootDxe │ ├── HttpBootClient.c │ ├── HttpBootClient.h │ ├── HttpBootComponentName.c │ ├── HttpBootComponentName.h │ ├── HttpBootConfig.c │ ├── HttpBootConfig.h │ ├── HttpBootConfigNVDataStruc.h │ ├── HttpBootConfigStrings.uni │ ├── HttpBootConfigVfr.vfr │ ├── HttpBootDhcp4.c │ ├── HttpBootDhcp4.h │ ├── HttpBootDhcp6.c │ ├── HttpBootDhcp6.h │ ├── HttpBootDxe.c │ ├── HttpBootDxe.h │ ├── HttpBootDxe.inf │ ├── HttpBootDxe.uni │ ├── HttpBootDxeExtra.uni │ ├── HttpBootImpl.c │ ├── HttpBootImpl.h │ ├── HttpBootSupport.c │ └── HttpBootSupport.h ├── HttpDxe │ ├── ComponentName.c │ ├── ComponentName.h │ ├── HttpDns.c │ ├── HttpDns.h │ ├── HttpDriver.c │ ├── HttpDriver.h │ ├── HttpDxe.inf │ ├── HttpDxe.uni │ ├── HttpDxeExtra.uni │ ├── HttpImpl.c │ ├── HttpImpl.h │ ├── HttpProto.c │ ├── HttpProto.h │ ├── HttpsSupport.c │ └── HttpsSupport.h ├── HttpUtilitiesDxe │ ├── HttpUtilitiesDxe.c │ ├── HttpUtilitiesDxe.h │ ├── HttpUtilitiesDxe.inf │ ├── HttpUtilitiesDxe.uni │ ├── HttpUtilitiesDxeExtra.uni │ └── HttpUtilitiesProtocol.c ├── IScsiDxe │ ├── ComponentName.c │ ├── IScsiAuthenticationInfo.c │ ├── IScsiCHAP.c │ ├── IScsiCHAP.h │ ├── IScsiConfig.c │ ├── IScsiConfig.h │ ├── IScsiConfigNVDataStruc.h │ ├── IScsiConfigStrings.uni │ ├── IScsiConfigVfr.vfr │ ├── IScsiDhcp.c │ ├── IScsiDhcp.h │ ├── IScsiDhcp6.c │ ├── IScsiDhcp6.h │ ├── IScsiDns.c │ ├── IScsiDns.h │ ├── IScsiDriver.c │ ├── IScsiDriver.h │ ├── IScsiDxe.inf │ ├── IScsiDxe.uni │ ├── IScsiDxeExtra.uni │ ├── IScsiExtScsiPassThru.c │ ├── IScsiIbft.c │ ├── IScsiIbft.h │ ├── IScsiImpl.h │ ├── IScsiInitiatorName.c │ ├── IScsiMisc.c │ ├── IScsiMisc.h │ ├── IScsiProto.c │ └── IScsiProto.h ├── Include │ ├── Guid │ │ ├── HttpBootConfigHii.h │ │ ├── HttpTlsCipherList.h │ │ ├── IScsiConfigHii.h │ │ ├── Ip4Config2Hii.h │ │ ├── Ip4IScsiConfigHii.h │ │ ├── Ip6ConfigHii.h │ │ ├── TlsAuthConfigHii.h │ │ ├── TlsAuthentication.h │ │ ├── VlanConfigHii.h │ │ └── WifiConnectionManagerConfigHii.h │ ├── Library │ │ ├── DpcLib.h │ │ ├── HttpLib.h │ │ ├── IpIoLib.h │ │ ├── NetLib.h │ │ ├── TcpIoLib.h │ │ └── UdpIoLib.h │ └── Protocol │ │ └── Dpc.h ├── Ip4Dxe │ ├── ComponentName.c │ ├── Ip4Common.c │ ├── Ip4Common.h │ ├── Ip4Config2.vfr │ ├── Ip4Config2Impl.c │ ├── Ip4Config2Impl.h │ ├── Ip4Config2Nv.c │ ├── Ip4Config2Nv.h │ ├── Ip4Driver.c │ ├── Ip4Driver.h │ ├── Ip4Dxe.inf │ ├── Ip4Dxe.uni │ ├── Ip4DxeExtra.uni │ ├── Ip4DxeStrings.uni │ ├── Ip4Icmp.c │ ├── Ip4Icmp.h │ ├── Ip4If.c │ ├── Ip4If.h │ ├── Ip4Igmp.c │ ├── Ip4Igmp.h │ ├── Ip4Impl.c │ ├── Ip4Impl.h │ ├── Ip4Input.c │ ├── Ip4Input.h │ ├── Ip4NvData.h │ ├── Ip4Option.c │ ├── Ip4Option.h │ ├── Ip4Output.c │ ├── Ip4Output.h │ ├── Ip4Route.c │ └── Ip4Route.h ├── Ip6Dxe │ ├── ComponentName.c │ ├── Ip6Common.c │ ├── Ip6Common.h │ ├── Ip6Config.vfr │ ├── Ip6ConfigImpl.c │ ├── Ip6ConfigImpl.h │ ├── Ip6ConfigNv.c │ ├── Ip6ConfigNv.h │ ├── Ip6Driver.c │ ├── Ip6Driver.h │ ├── Ip6Dxe.inf │ ├── Ip6Dxe.uni │ ├── Ip6DxeExtra.uni │ ├── Ip6DxeStrings.uni │ ├── Ip6Icmp.c │ ├── Ip6Icmp.h │ ├── Ip6If.c │ ├── Ip6If.h │ ├── Ip6Impl.c │ ├── Ip6Impl.h │ ├── Ip6Input.c │ ├── Ip6Input.h │ ├── Ip6Mld.c │ ├── Ip6Mld.h │ ├── Ip6Nd.c │ ├── Ip6Nd.h │ ├── Ip6NvData.h │ ├── Ip6Option.c │ ├── Ip6Option.h │ ├── Ip6Output.c │ ├── Ip6Output.h │ ├── Ip6Route.c │ └── Ip6Route.h ├── Library │ ├── DxeDpcLib │ │ ├── DpcLib.c │ │ ├── DxeDpcLib.inf │ │ └── DxeDpcLib.uni │ ├── DxeHttpLib │ │ ├── DxeHttpLib.c │ │ ├── DxeHttpLib.h │ │ ├── DxeHttpLib.inf │ │ └── DxeHttpLib.uni │ ├── DxeIpIoLib │ │ ├── DxeIpIoLib.c │ │ ├── DxeIpIoLib.inf │ │ └── DxeIpIoLib.uni │ ├── DxeNetLib │ │ ├── DxeNetLib.c │ │ ├── DxeNetLib.inf │ │ ├── DxeNetLib.uni │ │ └── NetBuffer.c │ ├── DxeTcpIoLib │ │ ├── DxeTcpIoLib.c │ │ ├── DxeTcpIoLib.inf │ │ └── DxeTcpIoLib.uni │ └── DxeUdpIoLib │ │ ├── DxeUdpIoLib.c │ │ ├── DxeUdpIoLib.inf │ │ └── DxeUpdIoLib.uni ├── MnpDxe │ ├── ComponentName.c │ ├── ComponentName.h │ ├── MnpConfig.c │ ├── MnpDriver.c │ ├── MnpDriver.h │ ├── MnpDxe.inf │ ├── MnpDxe.uni │ ├── MnpDxeExtra.uni │ ├── MnpImpl.h │ ├── MnpIo.c │ ├── MnpMain.c │ ├── MnpVlan.c │ └── MnpVlan.h ├── Mtftp4Dxe │ ├── ComponentName.c │ ├── Mtftp4Driver.c │ ├── Mtftp4Driver.h │ ├── Mtftp4Dxe.inf │ ├── Mtftp4Dxe.uni │ ├── Mtftp4DxeExtra.uni │ ├── Mtftp4Impl.c │ ├── Mtftp4Impl.h │ ├── Mtftp4Option.c │ ├── Mtftp4Option.h │ ├── Mtftp4Rrq.c │ ├── Mtftp4Support.c │ ├── Mtftp4Support.h │ └── Mtftp4Wrq.c ├── Mtftp6Dxe │ ├── ComponentName.c │ ├── Mtftp6Driver.c │ ├── Mtftp6Driver.h │ ├── Mtftp6Dxe.inf │ ├── Mtftp6Dxe.uni │ ├── Mtftp6DxeExtra.uni │ ├── Mtftp6Impl.c │ ├── Mtftp6Impl.h │ ├── Mtftp6Option.c │ ├── Mtftp6Option.h │ ├── Mtftp6Rrq.c │ ├── Mtftp6Support.c │ ├── Mtftp6Support.h │ └── Mtftp6Wrq.c ├── Network.dsc.inc ├── Network.fdf.inc ├── NetworkBuildOptions.dsc.inc ├── NetworkComponents.dsc.inc ├── NetworkDefines.dsc.inc ├── NetworkLibs.dsc.inc ├── NetworkPcds.dsc.inc ├── NetworkPkg.ci.yaml ├── NetworkPkg.dec ├── NetworkPkg.dsc ├── NetworkPkg.uni ├── NetworkPkgExtra.uni ├── SnpDxe │ ├── Callback.c │ ├── ComponentName.c │ ├── Get_status.c │ ├── Initialize.c │ ├── Mcast_ip_to_mac.c │ ├── Nvdata.c │ ├── Receive.c │ ├── Receive_filters.c │ ├── Reset.c │ ├── Shutdown.c │ ├── Snp.c │ ├── Snp.h │ ├── SnpDxe.inf │ ├── SnpDxe.uni │ ├── SnpDxeExtra.uni │ ├── Start.c │ ├── Station_address.c │ ├── Statistics.c │ ├── Stop.c │ ├── Transmit.c │ └── WaitForPacket.c ├── TcpDxe │ ├── ComponentName.c │ ├── SockImpl.c │ ├── SockImpl.h │ ├── SockInterface.c │ ├── Socket.h │ ├── TcpDispatcher.c │ ├── TcpDriver.c │ ├── TcpDriver.h │ ├── TcpDxe.inf │ ├── TcpDxe.uni │ ├── TcpDxeExtra.uni │ ├── TcpFunc.h │ ├── TcpInput.c │ ├── TcpIo.c │ ├── TcpMain.c │ ├── TcpMain.h │ ├── TcpMisc.c │ ├── TcpOption.c │ ├── TcpOption.h │ ├── TcpOutput.c │ ├── TcpProto.h │ └── TcpTimer.c ├── TlsAuthConfigDxe │ ├── TlsAuthConfigDxe.c │ ├── TlsAuthConfigDxe.inf │ ├── TlsAuthConfigDxe.uni │ ├── TlsAuthConfigDxeExtra.uni │ ├── TlsAuthConfigDxeStrings.uni │ ├── TlsAuthConfigImpl.c │ ├── TlsAuthConfigImpl.h │ ├── TlsAuthConfigNvData.h │ └── TlsAuthConfigVfr.vfr ├── TlsDxe │ ├── TlsConfigProtocol.c │ ├── TlsDriver.c │ ├── TlsDriver.h │ ├── TlsDxe.inf │ ├── TlsDxe.uni │ ├── TlsDxeExtra.uni │ ├── TlsImpl.c │ ├── TlsImpl.h │ └── TlsProtocol.c ├── Udp4Dxe │ ├── ComponentName.c │ ├── Udp4Driver.c │ ├── Udp4Driver.h │ ├── Udp4Dxe.inf │ ├── Udp4Dxe.uni │ ├── Udp4DxeExtra.uni │ ├── Udp4Impl.c │ ├── Udp4Impl.h │ └── Udp4Main.c ├── Udp6Dxe │ ├── ComponentName.c │ ├── Udp6Driver.c │ ├── Udp6Driver.h │ ├── Udp6Dxe.inf │ ├── Udp6Dxe.uni │ ├── Udp6DxeExtra.uni │ ├── Udp6Impl.c │ ├── Udp6Impl.h │ └── Udp6Main.c ├── UefiPxeBcDxe │ ├── ComponentName.c │ ├── PxeBcBoot.c │ ├── PxeBcBoot.h │ ├── PxeBcDhcp4.c │ ├── PxeBcDhcp4.h │ ├── PxeBcDhcp6.c │ ├── PxeBcDhcp6.h │ ├── PxeBcDriver.c │ ├── PxeBcDriver.h │ ├── PxeBcImpl.c │ ├── PxeBcImpl.h │ ├── PxeBcMtftp.c │ ├── PxeBcMtftp.h │ ├── PxeBcSupport.c │ ├── PxeBcSupport.h │ ├── UefiPxeBcDxe.inf │ ├── UefiPxeBcDxe.uni │ └── UefiPxeBcDxeExtra.uni ├── VlanConfigDxe │ ├── ComponentName.c │ ├── VlanConfig.vfr │ ├── VlanConfigDriver.c │ ├── VlanConfigDxe.inf │ ├── VlanConfigDxe.uni │ ├── VlanConfigDxeExtra.uni │ ├── VlanConfigImpl.c │ ├── VlanConfigImpl.h │ ├── VlanConfigNvData.h │ └── VlanConfigStrings.uni └── WifiConnectionManagerDxe │ ├── EapContext.h │ ├── WifiConnectionManagerDxe.inf │ ├── WifiConnectionManagerDxe.vfr │ ├── WifiConnectionManagerDxeStrings.uni │ ├── WifiConnectionMgrComponentName.c │ ├── WifiConnectionMgrComponentName.h │ ├── WifiConnectionMgrConfig.h │ ├── WifiConnectionMgrConfigHii.h │ ├── WifiConnectionMgrConfigNVDataStruct.h │ ├── WifiConnectionMgrDriver.c │ ├── WifiConnectionMgrDriverBinding.h │ ├── WifiConnectionMgrDxe.h │ ├── WifiConnectionMgrFileUtil.c │ ├── WifiConnectionMgrFileUtil.h │ ├── WifiConnectionMgrHiiConfigAccess.c │ ├── WifiConnectionMgrHiiConfigAccess.h │ ├── WifiConnectionMgrImpl.c │ ├── WifiConnectionMgrImpl.h │ ├── WifiConnectionMgrMisc.c │ └── WifiConnectionMgrMisc.h ├── OvmfPkg ├── 8254TimerDxe │ ├── 8254Timer.inf │ ├── Timer.c │ ├── Timer.h │ ├── Timer.uni │ └── TimerExtra.uni ├── 8259InterruptControllerDxe │ ├── 8259.c │ ├── 8259.h │ ├── 8259.inf │ ├── Legacy8259.uni │ └── Legacy8259Extra.uni ├── AcpiPlatformDxe │ ├── AcpiPlatform.c │ ├── AcpiPlatform.h │ ├── AcpiPlatformDxe.inf │ ├── BootScript.c │ ├── EntryPoint.c │ ├── PciDecoding.c │ ├── Qemu.c │ ├── QemuFwCfgAcpi.c │ ├── QemuFwCfgAcpiPlatform.c │ ├── QemuFwCfgAcpiPlatformDxe.inf │ ├── QemuLoader.h │ └── Xen.c ├── AcpiTables │ ├── AcpiTables.inf │ ├── Dsdt.asl │ ├── Facp.aslc │ ├── Facs.aslc │ ├── Madt.aslc │ ├── Platform.h │ └── Ssdt.asl ├── AmdSevDxe │ ├── AmdSevDxe.c │ └── AmdSevDxe.inf ├── Bhyve │ ├── AcpiPlatformDxe │ │ ├── AcpiPlatform.c │ │ ├── AcpiPlatform.h │ │ ├── AcpiPlatformDxe.inf │ │ ├── Bhyve.c │ │ ├── EntryPoint.c │ │ └── PciDecoding.c │ ├── AcpiTables │ │ ├── AcpiTables.inf │ │ ├── Dsdt.asl │ │ ├── Facp.aslc │ │ ├── Facs.aslc │ │ ├── Hpet.aslc │ │ ├── Madt.aslc │ │ ├── Mcfg.aslc │ │ ├── Platform.h │ │ ├── Spcr.aslc │ │ └── Ssdt.asl │ ├── BhyveDefines.fdf.inc │ ├── BhyveRfbDxe │ │ ├── BhyveRfbDxe.inf │ │ ├── ComponentName.c │ │ ├── Gop.h │ │ ├── GopDriver.c │ │ ├── GopScreen.c │ │ ├── VbeShim.asm │ │ ├── VbeShim.c │ │ ├── VbeShim.h │ │ └── VbeShim.sh │ ├── BhyveX64.dsc │ ├── BhyveX64.fdf │ ├── FvmainCompactScratchEnd.fdf.inc │ ├── License.txt │ ├── PlatformPei │ │ ├── AmdSev.c │ │ ├── ClearCache.c │ │ ├── Cmos.c │ │ ├── Cmos.h │ │ ├── FeatureControl.c │ │ ├── Fv.c │ │ ├── MemDetect.c │ │ ├── Platform.c │ │ ├── Platform.h │ │ └── PlatformPei.inf │ ├── ResetVector │ │ ├── Ia32 │ │ │ └── PageTables64.asm │ │ ├── ResetVector.inf │ │ └── ResetVector.nasmb │ ├── SmbiosPlatformDxe │ │ ├── Bhyve.c │ │ ├── SmbiosPlatformDxe.c │ │ ├── SmbiosPlatformDxe.h │ │ └── SmbiosPlatformDxe.inf │ └── VarStore.fdf.inc ├── CompatImageLoaderDxe │ ├── CompatImageLoaderDxe.c │ └── CompatImageLoaderDxe.inf ├── CpuHotplugSmm │ ├── ApicId.h │ ├── CpuHotplug.c │ ├── CpuHotplugSmm.inf │ ├── FirstSmiHandler.nasm │ ├── FirstSmiHandlerContext.h │ ├── PostSmmPen.nasm │ ├── QemuCpuhp.c │ ├── QemuCpuhp.h │ ├── Smbase.c │ └── Smbase.h ├── CpuS3DataDxe │ ├── CpuS3Data.c │ └── CpuS3DataDxe.inf ├── Csm │ ├── BiosThunk │ │ └── VideoDxe │ │ │ ├── BiosVideo.c │ │ │ ├── BiosVideo.h │ │ │ ├── BiosVideoDxe.uni │ │ │ ├── BiosVideoDxeExtra.uni │ │ │ ├── ComponentName.c │ │ │ ├── VesaBiosExtensions.h │ │ │ └── VideoDxe.inf │ ├── Csm16 │ │ ├── Csm16.inf │ │ └── ReadMe.txt │ ├── CsmSupportLib │ │ ├── CsmSupportLib.c │ │ ├── CsmSupportLib.h │ │ ├── CsmSupportLib.inf │ │ ├── LegacyInterrupt.c │ │ ├── LegacyInterrupt.h │ │ ├── LegacyPlatform.c │ │ ├── LegacyPlatform.h │ │ ├── LegacyRegion.c │ │ └── LegacyRegion.h │ ├── Include │ │ ├── Framework │ │ │ ├── BootScript.h │ │ │ ├── DxeCis.h │ │ │ ├── FirmwareVolumeHeader.h │ │ │ ├── FirmwareVolumeImageFormat.h │ │ │ ├── FrameworkInternalFormRepresentation.h │ │ │ ├── Hob.h │ │ │ └── StatusCode.h │ │ ├── FrameworkDxe.h │ │ ├── Guid │ │ │ ├── LegacyBios.h │ │ │ └── LegacyDevOrder.h │ │ └── Protocol │ │ │ ├── FirmwareVolume.h │ │ │ ├── IsaAcpi.h │ │ │ ├── IsaIo.h │ │ │ ├── LegacyBios.h │ │ │ ├── LegacyBiosPlatform.h │ │ │ ├── LegacyInterrupt.h │ │ │ └── VgaMiniPort.h │ ├── LegacyBiosDxe │ │ ├── IA32 │ │ │ └── InterruptTable.nasm │ │ ├── LegacyBbs.c │ │ ├── LegacyBda.c │ │ ├── LegacyBios.c │ │ ├── LegacyBiosDxe.inf │ │ ├── LegacyBiosDxe.uni │ │ ├── LegacyBiosDxeExtra.uni │ │ ├── LegacyBiosInterface.h │ │ ├── LegacyBootSupport.c │ │ ├── LegacyCmos.c │ │ ├── LegacyIde.c │ │ ├── LegacyPci.c │ │ ├── LegacySio.c │ │ ├── Thunk.c │ │ └── X64 │ │ │ └── InterruptTable.nasm │ ├── LegacyBootMaintUiLib │ │ ├── LegacyBootMaintUi.c │ │ ├── LegacyBootMaintUi.h │ │ ├── LegacyBootMaintUiLib.inf │ │ ├── LegacyBootMaintUiLib.uni │ │ ├── LegacyBootMaintUiStrings.uni │ │ ├── LegacyBootMaintUiVfr.Vfr │ │ └── LegacyBootMaintUiVfr.h │ └── LegacyBootManagerLib │ │ ├── InternalLegacyBm.h │ │ ├── LegacyBm.c │ │ ├── LegacyBootManagerLib.inf │ │ └── LegacyBootManagerLib.uni ├── EmuVariableFvbRuntimeDxe │ ├── Fvb.c │ ├── Fvb.h │ └── Fvb.inf ├── EnrollDefaultKeys │ ├── AuthData.c │ ├── EnrollDefaultKeys.c │ ├── EnrollDefaultKeys.h │ └── EnrollDefaultKeys.inf ├── FvmainCompactScratchEnd.fdf.inc ├── Include │ ├── Guid │ │ ├── LinuxEfiInitrdMedia.h │ │ ├── MicrosoftVendor.h │ │ ├── OvmfPkKek1AppPrefix.h │ │ ├── OvmfPlatformConfig.h │ │ ├── QemuKernelLoaderFsMedia.h │ │ ├── QemuRamfb.h │ │ ├── RootBridgesConnectedEventGroup.h │ │ ├── VirtioMmioTransport.h │ │ ├── XenBusRootDevice.h │ │ └── XenInfo.h │ ├── IndustryStandard │ │ ├── Bhyve.h │ │ ├── E820.h │ │ ├── FusionMptScsi.h │ │ ├── I440FxPiix4.h │ │ ├── InstructionParsing.h │ │ ├── LegacyVgaBios.h │ │ ├── LinuxBzimage.h │ │ ├── LsiScsi.h │ │ ├── PvScsi.h │ │ ├── Q35MchIch9.h │ │ ├── QemuCpuHotplug.h │ │ ├── QemuFwCfg.h │ │ ├── QemuPciBridgeCapabilities.h │ │ ├── QemuTpm.h │ │ ├── Virtio.h │ │ ├── Virtio095.h │ │ ├── Virtio095Net.h │ │ ├── Virtio10.h │ │ ├── Virtio10Net.h │ │ ├── VirtioBlk.h │ │ ├── VirtioGpu.h │ │ ├── VirtioNet.h │ │ ├── VirtioScsi.h │ │ └── Xen │ │ │ ├── README │ │ │ ├── arch-arm │ │ │ └── xen.h │ │ │ ├── arch-x86 │ │ │ ├── hvm │ │ │ │ └── start_info.h │ │ │ ├── xen-x86_32.h │ │ │ ├── xen-x86_64.h │ │ │ └── xen.h │ │ │ ├── event_channel.h │ │ │ ├── grant_table.h │ │ │ ├── hvm │ │ │ ├── hvm_op.h │ │ │ └── params.h │ │ │ ├── io │ │ │ ├── blkif.h │ │ │ ├── console.h │ │ │ ├── protocols.h │ │ │ ├── ring.h │ │ │ ├── xenbus.h │ │ │ └── xs_wire.h │ │ │ ├── memory.h │ │ │ ├── xen-compat.h │ │ │ └── xen.h │ ├── Library │ │ ├── BhyveFwCtlLib.h │ │ ├── LoadLinuxLib.h │ │ ├── MemEncryptSevLib.h │ │ ├── NvVarsFileLib.h │ │ ├── PciCapLib.h │ │ ├── PciCapPciIoLib.h │ │ ├── PciCapPciSegmentLib.h │ │ ├── PlatformBmPrintScLib.h │ │ ├── PlatformFvbLib.h │ │ ├── QemuBootOrderLib.h │ │ ├── QemuFwCfgLib.h │ │ ├── QemuFwCfgS3Lib.h │ │ ├── QemuFwCfgSimpleParserLib.h │ │ ├── QemuLoadImageLib.h │ │ ├── SerializeVariablesLib.h │ │ ├── VirtioLib.h │ │ ├── VirtioMmioDeviceLib.h │ │ ├── XenHypercallLib.h │ │ ├── XenIoMmioLib.h │ │ └── XenPlatformLib.h │ ├── OvmfPlatforms.h │ ├── Protocol │ │ ├── Legacy8259.h │ │ ├── OvmfLoadedX86LinuxKernel.h │ │ ├── VirtioDevice.h │ │ ├── XenBus.h │ │ └── XenIo.h │ └── Register │ │ └── QemuSmramSaveStateMap.h ├── IncompatiblePciDeviceSupportDxe │ ├── IncompatiblePciDeviceSupport.c │ └── IncompatiblePciDeviceSupport.inf ├── IoMmuDxe │ ├── AmdSevIoMmu.c │ ├── AmdSevIoMmu.h │ ├── IoMmuDxe.c │ └── IoMmuDxe.inf ├── Library │ ├── AcpiTimerLib │ │ ├── AcpiTimerLib.c │ │ ├── AcpiTimerLib.h │ │ ├── BaseAcpiTimerLib.c │ │ ├── BaseAcpiTimerLib.inf │ │ ├── BaseAcpiTimerLibBhyve.c │ │ ├── BaseAcpiTimerLibBhyve.inf │ │ ├── BaseRomAcpiTimerLib.c │ │ ├── BaseRomAcpiTimerLib.inf │ │ ├── DxeAcpiTimerLib.c │ │ └── DxeAcpiTimerLib.inf │ ├── BaseMemEncryptSevLib │ │ ├── BaseMemEncryptSevLib.inf │ │ ├── Ia32 │ │ │ └── MemEncryptSevLib.c │ │ ├── MemEncryptSevLibInternal.c │ │ └── X64 │ │ │ ├── MemEncryptSevLib.c │ │ │ ├── VirtualMemory.c │ │ │ └── VirtualMemory.h │ ├── BasePciCapLib │ │ ├── BasePciCapLib.c │ │ ├── BasePciCapLib.h │ │ └── BasePciCapLib.inf │ ├── BasePciCapPciSegmentLib │ │ ├── BasePciCapPciSegmentLib.c │ │ ├── BasePciCapPciSegmentLib.h │ │ └── BasePciCapPciSegmentLib.inf │ ├── BhyveFwCtlLib │ │ ├── BhyveFwCtlLib.c │ │ └── BhyveFwCtlLib.inf │ ├── DxePciLibI440FxQ35 │ │ ├── DxePciLibI440FxQ35.inf │ │ └── PciLib.c │ ├── EmuVariableFvbLib │ │ ├── EmuVariableFvbLib.c │ │ └── EmuVariableFvbLib.inf │ ├── GenericQemuLoadImageLib │ │ ├── GenericQemuLoadImageLib.c │ │ └── GenericQemuLoadImageLib.inf │ ├── LoadLinuxLib │ │ ├── Ia32 │ │ │ └── JumpToKernel.nasm │ │ ├── Linux.c │ │ ├── LinuxGdt.c │ │ ├── LoadLinuxLib.h │ │ ├── LoadLinuxLib.inf │ │ └── X64 │ │ │ └── JumpToKernel.nasm │ ├── LockBoxLib │ │ ├── LockBoxBase.c │ │ ├── LockBoxBaseLib.inf │ │ ├── LockBoxDxe.c │ │ ├── LockBoxDxeLib.inf │ │ ├── LockBoxLib.c │ │ └── LockBoxLib.h │ ├── NvVarsFileLib │ │ ├── FsAccess.c │ │ ├── NvVarsFileLib.c │ │ ├── NvVarsFileLib.h │ │ └── NvVarsFileLib.inf │ ├── PciHostBridgeLib │ │ ├── PciHostBridge.h │ │ ├── PciHostBridgeLib.c │ │ ├── PciHostBridgeLib.inf │ │ └── XenSupport.c │ ├── PlatformBmPrintScLib │ │ ├── PlatformBmPrintScLib.inf │ │ └── StatusCodeHandler.c │ ├── PlatformBootManagerLib │ │ ├── BdsPlatform.c │ │ ├── BdsPlatform.h │ │ ├── PlatformBootManagerLib.inf │ │ ├── PlatformData.c │ │ └── QemuKernel.c │ ├── PlatformBootManagerLibBhyve │ │ ├── BdsPlatform.c │ │ ├── BdsPlatform.h │ │ ├── PlatformBootManagerLibBhyve.inf │ │ └── PlatformData.c │ ├── PlatformDebugLibIoPort │ │ ├── DebugIoPortNocheck.c │ │ ├── DebugIoPortQemu.c │ │ ├── DebugLib.c │ │ ├── DebugLibDetect.c │ │ ├── DebugLibDetect.h │ │ ├── DebugLibDetectRom.c │ │ ├── PlatformDebugLibIoPort.inf │ │ ├── PlatformRomDebugLibIoPort.inf │ │ └── PlatformRomDebugLibIoPortNocheck.inf │ ├── PlatformFvbLibNull │ │ ├── PlatformFvbLibNull.c │ │ └── PlatformFvbLibNull.inf │ ├── PlatformHasIoMmuLib │ │ ├── PlatformHasIoMmuLib.c │ │ └── PlatformHasIoMmuLib.inf │ ├── PlatformSecureLib │ │ ├── PlatformSecureLib.c │ │ └── PlatformSecureLib.inf │ ├── PxeBcPcdProducerLib │ │ ├── PxeBcPcd.c │ │ └── PxeBcPcdProducerLib.inf │ ├── QemuBootOrderLib │ │ ├── ExtraRootBusMap.c │ │ ├── ExtraRootBusMap.h │ │ ├── QemuBootOrderLib.c │ │ └── QemuBootOrderLib.inf │ ├── QemuFwCfgLib │ │ ├── QemuFwCfgDxe.c │ │ ├── QemuFwCfgDxeLib.inf │ │ ├── QemuFwCfgLib.c │ │ ├── QemuFwCfgLibInternal.h │ │ ├── QemuFwCfgLibNull.inf │ │ ├── QemuFwCfgNull.c │ │ ├── QemuFwCfgPei.c │ │ ├── QemuFwCfgPeiLib.inf │ │ ├── QemuFwCfgSec.c │ │ └── QemuFwCfgSecLib.inf │ ├── QemuFwCfgS3Lib │ │ ├── BaseQemuFwCfgS3LibNull.inf │ │ ├── DxeQemuFwCfgS3LibFwCfg.inf │ │ ├── PeiQemuFwCfgS3LibFwCfg.inf │ │ ├── QemuFwCfgS3Base.c │ │ ├── QemuFwCfgS3BasePei.c │ │ ├── QemuFwCfgS3Dxe.c │ │ ├── QemuFwCfgS3Pei.c │ │ └── QemuFwCfgS3PeiDxe.c │ ├── QemuFwCfgSimpleParserLib │ │ ├── QemuFwCfgSimpleParser.c │ │ └── QemuFwCfgSimpleParserLib.inf │ ├── ResetSystemLib │ │ ├── BaseResetShutdown.c │ │ ├── BaseResetShutdownBhyve.c │ │ ├── BaseResetSystemLib.inf │ │ ├── BaseResetSystemLibBhyve.inf │ │ ├── DxeResetShutdown.c │ │ ├── DxeResetSystemLib.inf │ │ └── ResetSystemLib.c │ ├── SerializeVariablesLib │ │ ├── SerializeVariablesLib.c │ │ ├── SerializeVariablesLib.h │ │ └── SerializeVariablesLib.inf │ ├── SmbiosVersionLib │ │ ├── DetectSmbiosVersionLib.c │ │ └── DetectSmbiosVersionLib.inf │ ├── SmmCpuFeaturesLib │ │ ├── SmmCpuFeaturesLib.c │ │ └── SmmCpuFeaturesLib.inf │ ├── SmmCpuPlatformHookLibQemu │ │ ├── SmmCpuPlatformHookLibQemu.c │ │ └── SmmCpuPlatformHookLibQemu.inf │ ├── Tcg2PhysicalPresenceLibNull │ │ ├── DxeTcg2PhysicalPresenceLib.c │ │ └── DxeTcg2PhysicalPresenceLib.inf │ ├── Tcg2PhysicalPresenceLibQemu │ │ ├── DxeTcg2PhysicalPresenceLib.c │ │ ├── DxeTcg2PhysicalPresenceLib.inf │ │ └── PhysicalPresenceStrings.uni │ ├── TlsAuthConfigLib │ │ ├── TlsAuthConfigLib.c │ │ └── TlsAuthConfigLib.inf │ ├── UefiPciCapPciIoLib │ │ ├── UefiPciCapPciIoLib.c │ │ ├── UefiPciCapPciIoLib.h │ │ └── UefiPciCapPciIoLib.inf │ ├── VirtioLib │ │ ├── VirtioLib.c │ │ └── VirtioLib.inf │ ├── VirtioMmioDeviceLib │ │ ├── VirtioMmioDevice.c │ │ ├── VirtioMmioDevice.h │ │ ├── VirtioMmioDeviceFunctions.c │ │ └── VirtioMmioDeviceLib.inf │ ├── VmgExitLib │ │ ├── VmgExitLib.c │ │ ├── VmgExitLib.inf │ │ └── VmgExitVcHandler.c │ ├── X86QemuLoadImageLib │ │ ├── X86QemuLoadImageLib.c │ │ └── X86QemuLoadImageLib.inf │ ├── XenConsoleSerialPortLib │ │ ├── XenConsoleSerialPortLib.c │ │ └── XenConsoleSerialPortLib.inf │ ├── XenHypercallLib │ │ ├── Aarch64 │ │ │ └── Hypercall.S │ │ ├── Arm │ │ │ └── Hypercall.S │ │ ├── ArmXenHypercall.c │ │ ├── Ia32 │ │ │ └── hypercall.nasm │ │ ├── X64 │ │ │ └── hypercall.nasm │ │ ├── X86XenHypercall.c │ │ ├── XenHypercall.c │ │ └── XenHypercallLib.inf │ ├── XenIoMmioLib │ │ ├── XenIoMmioLib.c │ │ └── XenIoMmioLib.inf │ ├── XenPlatformLib │ │ ├── XenPlatformLib.c │ │ └── XenPlatformLib.inf │ └── XenRealTimeClockLib │ │ ├── XenRealTimeClockLib.c │ │ └── XenRealTimeClockLib.inf ├── License.txt ├── LinuxInitrdDynamicShellCommand │ ├── LinuxInitrdDynamicShellCommand.c │ ├── LinuxInitrdDynamicShellCommand.inf │ └── LinuxInitrdDynamicShellCommand.uni ├── LsiScsiDxe │ ├── LsiScsi.c │ ├── LsiScsi.h │ └── LsiScsiDxe.inf ├── MptScsiDxe │ ├── MptScsi.c │ └── MptScsiDxe.inf ├── OvmfPkg.ci.yaml ├── OvmfPkg.dec ├── OvmfPkgDefines.fdf.inc ├── OvmfPkgIa32.dsc ├── OvmfPkgIa32.fdf ├── OvmfPkgIa32X64.dsc ├── OvmfPkgIa32X64.fdf ├── OvmfPkgX64.dsc ├── OvmfPkgX64.fdf ├── OvmfXen.dsc ├── OvmfXen.fdf ├── OvmfXenElfHeaderGenerator.c ├── PciHotPlugInitDxe │ ├── PciHotPlugInit.c │ └── PciHotPlugInit.inf ├── PlatformCI │ ├── .azurepipelines │ │ ├── Ubuntu-GCC5.yml │ │ └── Windows-VS2019.yml │ ├── PlatformBuild.py │ ├── ReadMe.md │ └── iasl_ext_dep.yaml ├── PlatformDxe │ ├── Platform.c │ ├── Platform.h │ ├── Platform.inf │ ├── Platform.uni │ ├── PlatformConfig.c │ ├── PlatformConfig.h │ └── PlatformForms.vfr ├── PlatformPei │ ├── AmdSev.c │ ├── ClearCache.c │ ├── Cmos.c │ ├── Cmos.h │ ├── FeatureControl.c │ ├── Fv.c │ ├── MemDetect.c │ ├── MemTypeInfo.c │ ├── Platform.c │ ├── Platform.h │ ├── PlatformPei.inf │ ├── Xen.c │ └── Xen.h ├── PvScsiDxe │ ├── PvScsi.c │ ├── PvScsi.h │ └── PvScsiDxe.inf ├── QemuFlashFvbServicesRuntimeDxe │ ├── FvbInfo.c │ ├── FvbServicesRuntimeDxe.inf │ ├── FvbServicesSmm.inf │ ├── FwBlockService.c │ ├── FwBlockService.h │ ├── FwBlockServiceDxe.c │ ├── FwBlockServiceSmm.c │ ├── QemuFlash.c │ ├── QemuFlash.h │ ├── QemuFlashDxe.c │ └── QemuFlashSmm.c ├── QemuKernelLoaderFsDxe │ ├── QemuKernelLoaderFsDxe.c │ └── QemuKernelLoaderFsDxe.inf ├── QemuRamfbDxe │ ├── QemuRamfb.c │ └── QemuRamfbDxe.inf ├── QemuVideoDxe │ ├── ComponentName.c │ ├── Driver.c │ ├── Gop.c │ ├── Initialize.c │ ├── Qemu.h │ ├── QemuVideoDxe.inf │ ├── VbeShim.asm │ ├── VbeShim.c │ ├── VbeShim.h │ └── VbeShim.sh ├── README ├── ResetVector │ ├── Ia16 │ │ └── ResetVectorVtf0.asm │ ├── Ia32 │ │ └── PageTables64.asm │ ├── ResetVector.inf │ └── ResetVector.nasmb ├── SataControllerDxe │ ├── ComponentName.c │ ├── SataController.c │ ├── SataController.h │ └── SataControllerDxe.inf ├── Sec │ ├── Ia32 │ │ └── SecEntry.nasm │ ├── SecMain.c │ ├── SecMain.inf │ └── X64 │ │ └── SecEntry.nasm ├── SioBusDxe │ ├── ComponentName.c │ ├── SioBusDxe.c │ ├── SioBusDxe.h │ ├── SioBusDxe.inf │ ├── SioBusDxe.uni │ ├── SioService.c │ └── SioService.h ├── SmbiosPlatformDxe │ ├── ArmXen.c │ ├── Qemu.c │ ├── SmbiosPlatformDxe.c │ ├── SmbiosPlatformDxe.h │ ├── SmbiosPlatformDxe.inf │ └── X86Xen.c ├── SmmAccess │ ├── SmmAccess2Dxe.c │ ├── SmmAccess2Dxe.inf │ ├── SmmAccessPei.c │ ├── SmmAccessPei.inf │ ├── SmramInternal.c │ └── SmramInternal.h ├── SmmControl2Dxe │ ├── SmiFeatures.c │ ├── SmiFeatures.h │ ├── SmmControl2Dxe.c │ └── SmmControl2Dxe.inf ├── Tcg │ └── Tcg2Config │ │ ├── Tcg2ConfigPei.inf │ │ ├── Tcg2ConfigPeim.c │ │ ├── Tpm12Support.c │ │ ├── Tpm12Support.h │ │ └── Tpm12SupportNull.c ├── VarStore.fdf.inc ├── Virtio10Dxe │ ├── Virtio10.c │ ├── Virtio10.h │ └── Virtio10.inf ├── VirtioBlkDxe │ ├── VirtioBlk.c │ ├── VirtioBlk.h │ └── VirtioBlk.inf ├── VirtioGpuDxe │ ├── Commands.c │ ├── DriverBinding.c │ ├── Gop.c │ ├── VirtioGpu.h │ └── VirtioGpu.inf ├── VirtioNetDxe │ ├── ComponentName.c │ ├── DriverBinding.c │ ├── EntryPoint.c │ ├── Events.c │ ├── SnpGetStatus.c │ ├── SnpInitialize.c │ ├── SnpMcastIpToMac.c │ ├── SnpReceive.c │ ├── SnpReceiveFilters.c │ ├── SnpSharedHelpers.c │ ├── SnpShutdown.c │ ├── SnpStart.c │ ├── SnpStop.c │ ├── SnpTransmit.c │ ├── SnpUnsupported.c │ ├── TechNotes.txt │ ├── VirtioNet.h │ └── VirtioNet.inf ├── VirtioPciDeviceDxe │ ├── VirtioPciDevice.c │ ├── VirtioPciDevice.h │ ├── VirtioPciDeviceDxe.inf │ └── VirtioPciFunctions.c ├── VirtioRngDxe │ ├── VirtioRng.c │ ├── VirtioRng.h │ └── VirtioRng.inf ├── VirtioScsiDxe │ ├── VirtioScsi.c │ ├── VirtioScsi.h │ └── VirtioScsi.inf ├── XenBusDxe │ ├── ComponentName.c │ ├── ComponentName.h │ ├── DriverBinding.h │ ├── EventChannel.c │ ├── EventChannel.h │ ├── GrantTable.c │ ├── GrantTable.h │ ├── Helpers.c │ ├── TestAndClearBit.c │ ├── XenBus.c │ ├── XenBus.h │ ├── XenBusDxe.c │ ├── XenBusDxe.h │ ├── XenBusDxe.inf │ ├── XenStore.c │ └── XenStore.h ├── XenIoPciDxe │ ├── XenIoPciDxe.c │ └── XenIoPciDxe.inf ├── XenIoPvhDxe │ ├── XenIoPvhDxe.c │ └── XenIoPvhDxe.inf ├── XenPlatformPei │ ├── AmdSev.c │ ├── ClearCache.c │ ├── Cmos.c │ ├── Cmos.h │ ├── Fv.c │ ├── MemDetect.c │ ├── Platform.c │ ├── Platform.h │ ├── Xen.c │ ├── Xen.h │ └── XenPlatformPei.inf ├── XenPvBlkDxe │ ├── BlockFront.c │ ├── BlockFront.h │ ├── BlockIo.c │ ├── BlockIo.h │ ├── ComponentName.c │ ├── ComponentName.h │ ├── DriverBinding.h │ ├── XenPvBlkDxe.c │ ├── XenPvBlkDxe.h │ └── XenPvBlkDxe.inf ├── XenResetVector │ ├── Ia16 │ │ ├── Real16ToFlat32.asm │ │ └── ResetVectorVtf0.asm │ ├── Ia32 │ │ ├── Flat32ToFlat64.asm │ │ ├── PageTables64.asm │ │ ├── SearchForBfvBase.asm │ │ └── XenPVHMain.asm │ ├── XenResetVector.inf │ └── XenResetVector.nasmb ├── XenTimerDxe │ ├── XenTimerDxe.c │ ├── XenTimerDxe.h │ └── XenTimerDxe.inf └── build.sh ├── PcAtChipsetPkg ├── Bus │ └── Pci │ │ └── IdeControllerDxe │ │ ├── ComponentName.c │ │ ├── IdeController.c │ │ ├── IdeController.h │ │ ├── IdeController.uni │ │ ├── IdeControllerDxe.inf │ │ └── IdeControllerExtra.uni ├── HpetTimerDxe │ ├── HpetTimer.c │ ├── HpetTimerDxe.inf │ ├── HpetTimerDxe.uni │ └── HpetTimerDxeExtra.uni ├── Include │ ├── Guid │ │ └── PcAtChipsetTokenSpace.h │ ├── Library │ │ └── IoApicLib.h │ └── Register │ │ ├── Hpet.h │ │ └── IoApic.h ├── Library │ ├── AcpiTimerLib │ │ ├── AcpiTimerLib.c │ │ ├── BaseAcpiTimerLib.c │ │ ├── BaseAcpiTimerLib.inf │ │ ├── BaseAcpiTimerLib.uni │ │ ├── DxeAcpiTimerLib.c │ │ ├── DxeAcpiTimerLib.inf │ │ ├── DxeAcpiTimerLib.uni │ │ ├── PeiAcpiTimerLib.c │ │ ├── PeiAcpiTimerLib.inf │ │ └── PeiAcpiTimerLib.uni │ ├── BaseIoApicLib │ │ ├── BaseIoApicLib.inf │ │ ├── BaseIoApicLib.uni │ │ └── IoApicLib.c │ ├── ResetSystemLib │ │ ├── ResetSystemLib.c │ │ ├── ResetSystemLib.inf │ │ └── ResetSystemLib.uni │ └── SerialIoLib │ │ ├── PcAtSerialPortLib.uni │ │ ├── SerialIoLib.inf │ │ └── SerialPortLib.c ├── PcAtChipsetPkg.ci.yaml ├── PcAtChipsetPkg.dec ├── PcAtChipsetPkg.dsc ├── PcAtChipsetPkg.uni ├── PcAtChipsetPkgExtra.uni └── PcatRealTimeClockRuntimeDxe │ ├── PcRtc.c │ ├── PcRtc.h │ ├── PcRtc.uni │ ├── PcRtcEntry.c │ ├── PcRtcExtra.uni │ └── PcatRealTimeClockRuntimeDxe.inf ├── ReadMe.rst ├── RedfishPkg ├── Include │ ├── IndustryStandard │ │ └── RedfishHostInterface.h │ ├── Library │ │ └── RedfishHostInterfaceLib.h │ ├── Pcd │ │ └── RestExServiceDevicePath.h │ └── Protocol │ │ └── RedfishDiscover.h ├── Library │ └── PlatformHostInterfaceLibNull │ │ ├── PlatformHostInterfaceLibNull.c │ │ └── PlatformHostInterfaceLibNull.inf ├── Redfish.dsc.inc ├── Redfish.fdf.inc ├── RedfishComponents.dsc.inc ├── RedfishDefines.dsc.inc ├── RedfishHostInterfaceDxe │ ├── RedfishHostInterfaceDxe.c │ └── RedfishHostInterfaceDxe.inf ├── RedfishLibs.dsc.inc ├── RedfishPkg.ci.yaml ├── RedfishPkg.dec ├── RedfishPkg.dsc └── RestJsonStructureDxe │ ├── RestJsonStructureDxe.c │ ├── RestJsonStructureDxe.inf │ └── RestJsonStructureInternal.h ├── SecurityPkg ├── FvReportPei │ ├── FvReportPei.c │ ├── FvReportPei.h │ ├── FvReportPei.inf │ ├── FvReportPei.uni │ └── FvReportPeiPeiExtra.uni ├── Hash2DxeCrypto │ ├── Driver.c │ ├── Driver.h │ ├── Hash2DxeCrypto.c │ ├── Hash2DxeCrypto.inf │ ├── Hash2DxeCrypto.uni │ └── Hash2DxeCryptoExtra.uni ├── HddPassword │ ├── HddPassword.vfr │ ├── HddPasswordCommon.h │ ├── HddPasswordDxe.c │ ├── HddPasswordDxe.h │ ├── HddPasswordDxe.inf │ ├── HddPasswordHiiDataStruc.h │ ├── HddPasswordPei.c │ ├── HddPasswordPei.h │ ├── HddPasswordPei.inf │ └── HddPasswordStrings.uni ├── Include │ ├── Guid │ │ ├── AuthenticatedVariableFormat.h │ │ ├── MeasuredFvHob.h │ │ ├── PhysicalPresenceData.h │ │ ├── PwdCredentialProviderHii.h │ │ ├── SecureBootConfigHii.h │ │ ├── SecurityPkgTokenSpace.h │ │ ├── Tcg2ConfigHii.h │ │ ├── Tcg2PhysicalPresenceData.h │ │ ├── TcgConfigHii.h │ │ ├── TcgEventHob.h │ │ └── TpmInstance.h │ ├── Library │ │ ├── HashLib.h │ │ ├── PlatformSecureLib.h │ │ ├── RpmcLib.h │ │ ├── Tcg2PhysicalPresenceLib.h │ │ ├── Tcg2PpVendorLib.h │ │ ├── TcgEventLogRecordLib.h │ │ ├── TcgPhysicalPresenceLib.h │ │ ├── TcgPpVendorLib.h │ │ ├── TcgStorageCoreLib.h │ │ ├── TcgStorageOpalLib.h │ │ ├── Tpm12CommandLib.h │ │ ├── Tpm12DeviceLib.h │ │ ├── Tpm2CommandLib.h │ │ ├── Tpm2DeviceLib.h │ │ ├── TpmCommLib.h │ │ └── VariableKeyLib.h │ └── Ppi │ │ ├── FirmwareVolumeInfoMeasurementExcluded.h │ │ ├── FirmwareVolumeInfoPrehashedFV.h │ │ ├── FirmwareVolumeInfoStoredHashFv.h │ │ ├── LockPhysicalPresence.h │ │ ├── Tcg.h │ │ └── TpmInitialized.h ├── Library │ ├── AuthVariableLib │ │ ├── AuthService.c │ │ ├── AuthServiceInternal.h │ │ ├── AuthVariableLib.c │ │ ├── AuthVariableLib.inf │ │ └── AuthVariableLib.uni │ ├── DxeImageAuthenticationStatusLib │ │ ├── DxeImageAuthenticationStatusLib.c │ │ ├── DxeImageAuthenticationStatusLib.inf │ │ └── DxeImageAuthenticationStatusLib.uni │ ├── DxeImageVerificationLib │ │ ├── DxeImageVerificationLib.c │ │ ├── DxeImageVerificationLib.h │ │ ├── DxeImageVerificationLib.inf │ │ ├── DxeImageVerificationLib.uni │ │ └── Measurement.c │ ├── DxeRsa2048Sha256GuidedSectionExtractLib │ │ ├── DxeRsa2048Sha256GuidedSectionExtractLib.c │ │ ├── DxeRsa2048Sha256GuidedSectionExtractLib.inf │ │ └── DxeRsa2048Sha256GuidedSectionExtractLib.uni │ ├── DxeTcg2PhysicalPresenceLib │ │ ├── DxeTcg2PhysicalPresenceLib.c │ │ ├── DxeTcg2PhysicalPresenceLib.inf │ │ ├── DxeTcg2PhysicalPresenceLib.uni │ │ └── PhysicalPresenceStrings.uni │ ├── DxeTcgPhysicalPresenceLib │ │ ├── DxeTcgPhysicalPresenceLib.c │ │ ├── DxeTcgPhysicalPresenceLib.inf │ │ ├── DxeTcgPhysicalPresenceLib.uni │ │ └── PhysicalPresenceStrings.uni │ ├── DxeTpm2MeasureBootLib │ │ ├── DxeTpm2MeasureBootLib.c │ │ ├── DxeTpm2MeasureBootLib.inf │ │ └── DxeTpm2MeasureBootLib.uni │ ├── DxeTpmMeasureBootLib │ │ ├── DxeTpmMeasureBootLib.c │ │ ├── DxeTpmMeasureBootLib.inf │ │ └── DxeTpmMeasureBootLib.uni │ ├── DxeTpmMeasurementLib │ │ ├── DxeTpmMeasurementLib.c │ │ ├── DxeTpmMeasurementLib.inf │ │ └── DxeTpmMeasurementLib.uni │ ├── FmpAuthenticationLibPkcs7 │ │ ├── FmpAuthenticationLibPkcs7.c │ │ ├── FmpAuthenticationLibPkcs7.inf │ │ └── FmpAuthenticationLibPkcs7.uni │ ├── FmpAuthenticationLibRsa2048Sha256 │ │ ├── FmpAuthenticationLibRsa2048Sha256.c │ │ ├── FmpAuthenticationLibRsa2048Sha256.inf │ │ └── FmpAuthenticationLibRsa2048Sha256.uni │ ├── HashInstanceLibSha1 │ │ ├── HashInstanceLibSha1.c │ │ ├── HashInstanceLibSha1.inf │ │ └── HashInstanceLibSha1.uni │ ├── HashInstanceLibSha256 │ │ ├── HashInstanceLibSha256.c │ │ ├── HashInstanceLibSha256.inf │ │ └── HashInstanceLibSha256.uni │ ├── HashInstanceLibSha384 │ │ ├── HashInstanceLibSha384.c │ │ ├── HashInstanceLibSha384.inf │ │ └── HashInstanceLibSha384.uni │ ├── HashInstanceLibSha512 │ │ ├── HashInstanceLibSha512.c │ │ ├── HashInstanceLibSha512.inf │ │ └── HashInstanceLibSha512.uni │ ├── HashInstanceLibSm3 │ │ ├── HashInstanceLibSm3.c │ │ ├── HashInstanceLibSm3.inf │ │ └── HashInstanceLibSm3.uni │ ├── HashLibBaseCryptoRouter │ │ ├── HashLibBaseCryptoRouterCommon.c │ │ ├── HashLibBaseCryptoRouterCommon.h │ │ ├── HashLibBaseCryptoRouterDxe.c │ │ ├── HashLibBaseCryptoRouterDxe.inf │ │ ├── HashLibBaseCryptoRouterDxe.uni │ │ ├── HashLibBaseCryptoRouterPei.c │ │ ├── HashLibBaseCryptoRouterPei.inf │ │ └── HashLibBaseCryptoRouterPei.uni │ ├── HashLibTpm2 │ │ ├── HashLibTpm2.c │ │ ├── HashLibTpm2.inf │ │ └── HashLibTpm2.uni │ ├── PeiRsa2048Sha256GuidedSectionExtractLib │ │ ├── PeiRsa2048Sha256GuidedSectionExtractLib.c │ │ ├── PeiRsa2048Sha256GuidedSectionExtractLib.inf │ │ └── PeiRsa2048Sha256GuidedSectionExtractLib.uni │ ├── PeiTcg2PhysicalPresenceLib │ │ ├── PeiTcg2PhysicalPresenceLib.c │ │ ├── PeiTcg2PhysicalPresenceLib.inf │ │ └── PeiTcg2PhysicalPresenceLib.uni │ ├── PeiTpmMeasurementLib │ │ ├── PeiTpmMeasurementLib.c │ │ ├── PeiTpmMeasurementLib.inf │ │ └── PeiTpmMeasurementLib.uni │ ├── PlatformSecureLibNull │ │ ├── PlatformSecureLibNull.c │ │ ├── PlatformSecureLibNull.inf │ │ └── PlatformSecureLibNull.uni │ ├── RpmcLibNull │ │ ├── RpmcLibNull.c │ │ └── RpmcLibNull.inf │ ├── SmmTcg2PhysicalPresenceLib │ │ ├── SmmTcg2PhysicalPresenceLib.c │ │ ├── SmmTcg2PhysicalPresenceLib.inf │ │ └── SmmTcg2PhysicalPresenceLib.uni │ ├── Tcg2PpVendorLibNull │ │ ├── Tcg2PpVendorLibNull.c │ │ ├── Tcg2PpVendorLibNull.inf │ │ └── Tcg2PpVendorLibNull.uni │ ├── TcgEventLogRecordLib │ │ ├── TcgEventLogRecordLib.c │ │ ├── TcgEventLogRecordLib.inf │ │ └── TcgEventLogRecordLib.uni │ ├── TcgPpVendorLibNull │ │ ├── TcgPpVendorLibNull.c │ │ ├── TcgPpVendorLibNull.inf │ │ └── TcgPpVendorLibNull.uni │ ├── TcgStorageCoreLib │ │ ├── TcgStorageCore.c │ │ ├── TcgStorageCoreLib.inf │ │ └── TcgStorageUtil.c │ ├── TcgStorageOpalLib │ │ ├── TcgStorageOpalCore.c │ │ ├── TcgStorageOpalLib.inf │ │ ├── TcgStorageOpalLibInternal.h │ │ └── TcgStorageOpalUtil.c │ ├── Tpm12CommandLib │ │ ├── Tpm12CommandLib.inf │ │ ├── Tpm12CommandLib.uni │ │ ├── Tpm12GetCapability.c │ │ ├── Tpm12NvStorage.c │ │ ├── Tpm12Ownership.c │ │ ├── Tpm12Pcr.c │ │ ├── Tpm12PhysicalPresence.c │ │ ├── Tpm12SelfTest.c │ │ └── Tpm12Startup.c │ ├── Tpm12DeviceLibDTpm │ │ ├── Tpm12DeviceLibDTpm.inf │ │ ├── Tpm12DeviceLibDTpm.uni │ │ └── Tpm12Tis.c │ ├── Tpm12DeviceLibTcg │ │ ├── Tpm12DeviceLibTcg.c │ │ ├── Tpm12DeviceLibTcg.inf │ │ └── Tpm12DeviceLibTcg.uni │ ├── Tpm2CommandLib │ │ ├── Tpm2Capability.c │ │ ├── Tpm2CommandLib.inf │ │ ├── Tpm2CommandLib.uni │ │ ├── Tpm2Context.c │ │ ├── Tpm2DictionaryAttack.c │ │ ├── Tpm2EnhancedAuthorization.c │ │ ├── Tpm2Help.c │ │ ├── Tpm2Hierarchy.c │ │ ├── Tpm2Integrity.c │ │ ├── Tpm2Miscellaneous.c │ │ ├── Tpm2NVStorage.c │ │ ├── Tpm2Object.c │ │ ├── Tpm2Sequences.c │ │ ├── Tpm2Session.c │ │ ├── Tpm2Startup.c │ │ └── Tpm2Test.c │ ├── Tpm2DeviceLibDTpm │ │ ├── Tpm2DeviceLibDTpm.c │ │ ├── Tpm2DeviceLibDTpm.inf │ │ ├── Tpm2DeviceLibDTpm.uni │ │ ├── Tpm2InstanceLibDTpm.c │ │ ├── Tpm2InstanceLibDTpm.inf │ │ ├── Tpm2InstanceLibDTpm.uni │ │ ├── Tpm2Ptp.c │ │ └── Tpm2Tis.c │ ├── Tpm2DeviceLibRouter │ │ ├── Tpm2DeviceLibRouterDxe.c │ │ ├── Tpm2DeviceLibRouterDxe.inf │ │ ├── Tpm2DeviceLibRouterDxe.uni │ │ ├── Tpm2DeviceLibRouterPei.c │ │ ├── Tpm2DeviceLibRouterPei.inf │ │ └── Tpm2DeviceLibRouterPei.uni │ ├── Tpm2DeviceLibTcg2 │ │ ├── Tpm2DeviceLibTcg2.c │ │ ├── Tpm2DeviceLibTcg2.inf │ │ └── Tpm2DeviceLibTcg2.uni │ ├── TpmCommLib │ │ ├── CommonHeader.h │ │ ├── TisPc.c │ │ ├── TpmComm.c │ │ ├── TpmCommLib.inf │ │ └── TpmCommLib.uni │ └── VariableKeyLibNull │ │ ├── VariableKeyLibNull.c │ │ └── VariableKeyLibNull.inf ├── Pkcs7Verify │ └── Pkcs7VerifyDxe │ │ ├── Pkcs7VerifyDxe.c │ │ ├── Pkcs7VerifyDxe.inf │ │ ├── Pkcs7VerifyDxe.uni │ │ └── Pkcs7VerifyDxeExtra.uni ├── RandomNumberGenerator │ └── RngDxe │ │ ├── AesCore.c │ │ ├── AesCore.h │ │ ├── RdRand.c │ │ ├── RdRand.h │ │ ├── RngDxe.c │ │ ├── RngDxe.inf │ │ ├── RngDxe.uni │ │ └── RngDxeExtra.uni ├── SecurityPkg.ci.yaml ├── SecurityPkg.dec ├── SecurityPkg.dsc ├── SecurityPkg.uni ├── SecurityPkgExtra.uni ├── Tcg │ ├── MemoryOverwriteControl │ │ ├── TcgMor.c │ │ ├── TcgMor.h │ │ ├── TcgMor.inf │ │ ├── TcgMor.uni │ │ └── TcgMorExtra.uni │ ├── MemoryOverwriteRequestControlLock │ │ ├── TcgMorLock.c │ │ ├── TcgMorLock.h │ │ ├── TcgMorLock.uni │ │ ├── TcgMorLockExtra.uni │ │ ├── TcgMorLockSmm.c │ │ └── TcgMorLockSmm.inf │ ├── Opal │ │ └── OpalPassword │ │ │ ├── ComponentName.c │ │ │ ├── OpalDriver.c │ │ │ ├── OpalDriver.h │ │ │ ├── OpalHii.c │ │ │ ├── OpalHii.h │ │ │ ├── OpalHiiCallbacks.c │ │ │ ├── OpalHiiFormStrings.uni │ │ │ ├── OpalHiiFormValues.h │ │ │ ├── OpalPasswordCommon.h │ │ │ ├── OpalPasswordDxe.inf │ │ │ ├── OpalPasswordForm.vfr │ │ │ ├── OpalPasswordPei.c │ │ │ ├── OpalPasswordPei.h │ │ │ └── OpalPasswordPei.inf │ ├── PhysicalPresencePei │ │ ├── PhysicalPresencePei.c │ │ ├── PhysicalPresencePei.inf │ │ ├── PhysicalPresencePei.uni │ │ └── PhysicalPresencePeiExtra.uni │ ├── Tcg2Config │ │ ├── Tcg2Config.vfr │ │ ├── Tcg2ConfigDriver.c │ │ ├── Tcg2ConfigDxe.inf │ │ ├── Tcg2ConfigDxe.uni │ │ ├── Tcg2ConfigDxeExtra.uni │ │ ├── Tcg2ConfigImpl.c │ │ ├── Tcg2ConfigImpl.h │ │ ├── Tcg2ConfigNvData.h │ │ ├── Tcg2ConfigPei.inf │ │ ├── Tcg2ConfigPei.uni │ │ ├── Tcg2ConfigPeiExtra.uni │ │ ├── Tcg2ConfigPeim.c │ │ ├── Tcg2ConfigStrings.uni │ │ ├── Tcg2Internal.h │ │ └── TpmDetection.c │ ├── Tcg2Dxe │ │ ├── MeasureBootPeCoff.c │ │ ├── Tcg2Dxe.c │ │ ├── Tcg2Dxe.inf │ │ ├── Tcg2Dxe.uni │ │ └── Tcg2DxeExtra.uni │ ├── Tcg2Pei │ │ ├── Tcg2Pei.c │ │ ├── Tcg2Pei.inf │ │ ├── Tcg2Pei.uni │ │ └── Tcg2PeiExtra.uni │ ├── Tcg2Smm │ │ ├── Tcg2Smm.c │ │ ├── Tcg2Smm.h │ │ ├── Tcg2Smm.inf │ │ ├── Tcg2Smm.uni │ │ ├── Tcg2SmmExtra.uni │ │ └── Tpm.asl │ ├── TcgConfigDxe │ │ ├── TcgConfig.vfr │ │ ├── TcgConfigDriver.c │ │ ├── TcgConfigDxe.inf │ │ ├── TcgConfigDxe.uni │ │ ├── TcgConfigDxeExtra.uni │ │ ├── TcgConfigImpl.c │ │ ├── TcgConfigImpl.h │ │ ├── TcgConfigNvData.h │ │ └── TcgConfigStrings.uni │ ├── TcgDxe │ │ ├── TcgDxe.c │ │ ├── TcgDxe.inf │ │ ├── TcgDxe.uni │ │ └── TcgDxeExtra.uni │ ├── TcgPei │ │ ├── TcgPei.c │ │ ├── TcgPei.inf │ │ ├── TcgPei.uni │ │ └── TcgPeiExtra.uni │ └── TcgSmm │ │ ├── TcgSmm.c │ │ ├── TcgSmm.h │ │ ├── TcgSmm.inf │ │ ├── TcgSmm.uni │ │ ├── TcgSmmExtra.uni │ │ └── Tpm.asl └── VariableAuthenticated │ └── SecureBootConfigDxe │ ├── SecureBootConfig.vfr │ ├── SecureBootConfigDevicePath.c │ ├── SecureBootConfigDriver.c │ ├── SecureBootConfigDxe.inf │ ├── SecureBootConfigDxe.uni │ ├── SecureBootConfigDxeExtra.uni │ ├── SecureBootConfigFileExplorer.c │ ├── SecureBootConfigImpl.c │ ├── SecureBootConfigImpl.h │ ├── SecureBootConfigMisc.c │ ├── SecureBootConfigNvData.h │ └── SecureBootConfigStrings.uni ├── ShellPkg ├── Application │ ├── AcpiViewApp │ │ ├── AcpiViewApp.c │ │ ├── AcpiViewApp.inf │ │ └── AcpiViewApp.uni │ ├── Shell │ │ ├── ConsoleLogger.c │ │ ├── ConsoleLogger.h │ │ ├── ConsoleWrappers.c │ │ ├── ConsoleWrappers.h │ │ ├── FileHandleInternal.h │ │ ├── FileHandleWrappers.c │ │ ├── FileHandleWrappers.h │ │ ├── Shell.c │ │ ├── Shell.h │ │ ├── Shell.inf │ │ ├── Shell.uni │ │ ├── ShellEnvVar.c │ │ ├── ShellEnvVar.h │ │ ├── ShellManParser.c │ │ ├── ShellManParser.h │ │ ├── ShellParametersProtocol.c │ │ ├── ShellParametersProtocol.h │ │ ├── ShellProtocol.c │ │ └── ShellProtocol.h │ ├── ShellCTestApp │ │ ├── README.txt │ │ ├── ShellCTestApp.c │ │ ├── ShellCTestApp.inf │ │ ├── TestArgv.log │ │ └── TestArgv.nsh │ ├── ShellExecTestApp │ │ ├── SA.c │ │ └── SA.inf │ └── ShellSortTestApp │ │ ├── ShellSortTestApp.c │ │ └── ShellSortTestApp.inf ├── DynamicCommand │ ├── DpDynamicCommand │ │ ├── Dp.c │ │ ├── Dp.h │ │ ├── Dp.uni │ │ ├── DpApp.c │ │ ├── DpApp.inf │ │ ├── DpDynamicCommand.c │ │ ├── DpDynamicCommand.inf │ │ ├── DpInternal.h │ │ ├── DpTrace.c │ │ ├── DpUtilities.c │ │ ├── Literals.c │ │ └── Literals.h │ ├── HttpDynamicCommand │ │ ├── Http.c │ │ ├── Http.h │ │ ├── Http.uni │ │ ├── HttpApp.c │ │ ├── HttpApp.inf │ │ ├── HttpDynamicCommand.c │ │ └── HttpDynamicCommand.inf │ └── TftpDynamicCommand │ │ ├── Tftp.c │ │ ├── Tftp.h │ │ ├── Tftp.uni │ │ ├── TftpApp.c │ │ ├── TftpApp.inf │ │ ├── TftpDynamicCommand.c │ │ └── TftpDynamicCommand.inf ├── Include │ ├── Guid │ │ ├── ShellAliasGuid.h │ │ ├── ShellEnvironment2Ext.h │ │ ├── ShellLibHiiGuid.h │ │ ├── ShellMapGuid.h │ │ ├── ShellPkgTokenSpace.h │ │ └── ShellVariableGuid.h │ ├── Library │ │ ├── AcpiViewCommandLib.h │ │ ├── BcfgCommandLib.h │ │ ├── HandleParsingLib.h │ │ ├── ShellCEntryLib.h │ │ ├── ShellCommandLib.h │ │ └── ShellLib.h │ └── Protocol │ │ ├── EfiShellEnvironment2.h │ │ └── EfiShellInterface.h ├── Library │ ├── UefiHandleParsingLib │ │ ├── UefiHandleParsingLib.c │ │ ├── UefiHandleParsingLib.h │ │ ├── UefiHandleParsingLib.inf │ │ └── UefiHandleParsingLib.uni │ ├── UefiShellAcpiViewCommandLib │ │ ├── AcpiParser.c │ │ ├── AcpiParser.h │ │ ├── AcpiTableParser.c │ │ ├── AcpiTableParser.h │ │ ├── AcpiView.c │ │ ├── AcpiView.h │ │ ├── AcpiViewConfig.c │ │ ├── AcpiViewConfig.h │ │ ├── Arm │ │ │ ├── SbbrValidator.c │ │ │ └── SbbrValidator.h │ │ ├── Parsers │ │ │ ├── Bgrt │ │ │ │ └── BgrtParser.c │ │ │ ├── Dbg2 │ │ │ │ └── Dbg2Parser.c │ │ │ ├── Dsdt │ │ │ │ └── DsdtParser.c │ │ │ ├── Facs │ │ │ │ └── FacsParser.c │ │ │ ├── Fadt │ │ │ │ └── FadtParser.c │ │ │ ├── Gtdt │ │ │ │ └── GtdtParser.c │ │ │ ├── Iort │ │ │ │ └── IortParser.c │ │ │ ├── Madt │ │ │ │ ├── MadtParser.c │ │ │ │ └── MadtParser.h │ │ │ ├── Mcfg │ │ │ │ └── McfgParser.c │ │ │ ├── Pptt │ │ │ │ ├── PpttParser.c │ │ │ │ └── PpttParser.h │ │ │ ├── Rsdp │ │ │ │ └── RsdpParser.c │ │ │ ├── Slit │ │ │ │ └── SlitParser.c │ │ │ ├── Spcr │ │ │ │ └── SpcrParser.c │ │ │ ├── Srat │ │ │ │ └── SratParser.c │ │ │ ├── Ssdt │ │ │ │ └── SsdtParser.c │ │ │ └── Xsdt │ │ │ │ └── XsdtParser.c │ │ ├── UefiShellAcpiViewCommandLib.c │ │ ├── UefiShellAcpiViewCommandLib.inf │ │ └── UefiShellAcpiViewCommandLib.uni │ ├── UefiShellBcfgCommandLib │ │ ├── UefiShellBcfgCommandLib.c │ │ ├── UefiShellBcfgCommandLib.inf │ │ └── UefiShellBcfgCommandLib.uni │ ├── UefiShellCEntryLib │ │ ├── UefiShellCEntryLib.c │ │ └── UefiShellCEntryLib.inf │ ├── UefiShellCommandLib │ │ ├── ConsistMapping.c │ │ ├── UefiShellCommandLib.c │ │ ├── UefiShellCommandLib.h │ │ └── UefiShellCommandLib.inf │ ├── UefiShellDebug1CommandsLib │ │ ├── Comp.c │ │ ├── Compress.c │ │ ├── Compress.h │ │ ├── Dblk.c │ │ ├── Dmem.c │ │ ├── DmpStore.c │ │ ├── Edit │ │ │ ├── Edit.c │ │ │ ├── FileBuffer.c │ │ │ ├── FileBuffer.h │ │ │ ├── MainTextEditor.c │ │ │ ├── MainTextEditor.h │ │ │ ├── Misc.c │ │ │ ├── Misc.h │ │ │ ├── TextEditStrings.uni │ │ │ ├── TextEditor.h │ │ │ └── TextEditorTypes.h │ │ ├── EditInputBar.c │ │ ├── EditInputBar.h │ │ ├── EditMenuBar.c │ │ ├── EditMenuBar.h │ │ ├── EditStatusBar.c │ │ ├── EditStatusBar.h │ │ ├── EditTitleBar.c │ │ ├── EditTitleBar.h │ │ ├── EfiCompress.c │ │ ├── EfiDecompress.c │ │ ├── HexEdit │ │ │ ├── BufferImage.c │ │ │ ├── BufferImage.h │ │ │ ├── Clipboard.c │ │ │ ├── Clipboard.h │ │ │ ├── DiskImage.c │ │ │ ├── DiskImage.h │ │ │ ├── FileImage.c │ │ │ ├── FileImage.h │ │ │ ├── HexEdit.c │ │ │ ├── HexEditor.h │ │ │ ├── HexEditorTypes.h │ │ │ ├── HexeditStrings.uni │ │ │ ├── MainHexEditor.c │ │ │ ├── MainHexEditor.h │ │ │ ├── MemImage.c │ │ │ ├── MemImage.h │ │ │ ├── Misc.c │ │ │ └── Misc.h │ │ ├── LoadPciRom.c │ │ ├── MemMap.c │ │ ├── Mm.c │ │ ├── Mode.c │ │ ├── Pci.c │ │ ├── Pci.h │ │ ├── SerMode.c │ │ ├── SetSize.c │ │ ├── SetVar.c │ │ ├── SmbiosView │ │ │ ├── EventLogInfo.c │ │ │ ├── EventLogInfo.h │ │ │ ├── LibSmbiosView.c │ │ │ ├── LibSmbiosView.h │ │ │ ├── PrintInfo.c │ │ │ ├── PrintInfo.h │ │ │ ├── QueryTable.c │ │ │ ├── QueryTable.h │ │ │ ├── SmbiosView.c │ │ │ ├── SmbiosView.h │ │ │ └── SmbiosViewStrings.uni │ │ ├── UefiShellDebug1CommandsLib.c │ │ ├── UefiShellDebug1CommandsLib.h │ │ ├── UefiShellDebug1CommandsLib.inf │ │ └── UefiShellDebug1CommandsLib.uni │ ├── UefiShellDriver1CommandsLib │ │ ├── Connect.c │ │ ├── DevTree.c │ │ ├── Devices.c │ │ ├── Dh.c │ │ ├── Disconnect.c │ │ ├── Drivers.c │ │ ├── DrvCfg.c │ │ ├── DrvDiag.c │ │ ├── OpenInfo.c │ │ ├── Reconnect.c │ │ ├── UefiShellDriver1CommandsLib.c │ │ ├── UefiShellDriver1CommandsLib.h │ │ ├── UefiShellDriver1CommandsLib.inf │ │ ├── UefiShellDriver1CommandsLib.uni │ │ └── Unload.c │ ├── UefiShellInstall1CommandsLib │ │ ├── UefiShellInstall1CommandsLib.c │ │ └── UefiShellInstall1CommandsLib.inf │ ├── UefiShellLevel1CommandsLib │ │ ├── Exit.c │ │ ├── For.c │ │ ├── Goto.c │ │ ├── If.c │ │ ├── Shift.c │ │ ├── Stall.c │ │ ├── UefiShellLevel1CommandsLib.c │ │ ├── UefiShellLevel1CommandsLib.h │ │ ├── UefiShellLevel1CommandsLib.inf │ │ └── UefiShellLevel1CommandsLib.uni │ ├── UefiShellLevel2CommandsLib │ │ ├── Attrib.c │ │ ├── Cd.c │ │ ├── Cp.c │ │ ├── Load.c │ │ ├── Ls.c │ │ ├── Map.c │ │ ├── MkDir.c │ │ ├── Mv.c │ │ ├── Parse.c │ │ ├── Reset.c │ │ ├── Rm.c │ │ ├── Set.c │ │ ├── TimeDate.c │ │ ├── UefiShellLevel2CommandsLib.c │ │ ├── UefiShellLevel2CommandsLib.h │ │ ├── UefiShellLevel2CommandsLib.inf │ │ ├── UefiShellLevel2CommandsLib.uni │ │ └── Vol.c │ ├── UefiShellLevel3CommandsLib │ │ ├── Alias.c │ │ ├── Cls.c │ │ ├── Echo.c │ │ ├── GetMtc.c │ │ ├── Help.c │ │ ├── Pause.c │ │ ├── Touch.c │ │ ├── Type.c │ │ ├── UefiShellLevel3CommandsLib.c │ │ ├── UefiShellLevel3CommandsLib.h │ │ ├── UefiShellLevel3CommandsLib.inf │ │ ├── UefiShellLevel3CommandsLib.uni │ │ └── Ver.c │ ├── UefiShellLib │ │ ├── UefiShellLib.c │ │ ├── UefiShellLib.h │ │ └── UefiShellLib.inf │ ├── UefiShellNetwork1CommandsLib │ │ ├── Ifconfig.c │ │ ├── Ping.c │ │ ├── UefiShellNetwork1CommandsLib.c │ │ ├── UefiShellNetwork1CommandsLib.h │ │ ├── UefiShellNetwork1CommandsLib.inf │ │ └── UefiShellNetwork1CommandsLib.uni │ └── UefiShellNetwork2CommandsLib │ │ ├── Ifconfig6.c │ │ ├── Ping6.c │ │ ├── UefiShellNetwork2CommandsLib.c │ │ ├── UefiShellNetwork2CommandsLib.h │ │ ├── UefiShellNetwork2CommandsLib.inf │ │ └── UefiShellNetwork2CommandsLib.uni ├── ShellPkg.ci.yaml ├── ShellPkg.dec └── ShellPkg.dsc ├── SignedCapsulePkg ├── Include │ ├── Guid │ │ └── EdkiiSystemFmpCapsule.h │ └── Library │ │ ├── EdkiiSystemCapsuleLib.h │ │ ├── IniParsingLib.h │ │ └── PlatformFlashAccessLib.h ├── Library │ ├── EdkiiSystemCapsuleLib │ │ ├── EdkiiSystemCapsuleLib.c │ │ ├── EdkiiSystemCapsuleLib.inf │ │ └── EdkiiSystemCapsuleLib.uni │ ├── IniParsingLib │ │ ├── IniParsingLib.c │ │ ├── IniParsingLib.inf │ │ └── IniParsingLib.uni │ └── PlatformFlashAccessLibNull │ │ ├── PlatformFlashAccessLibNull.c │ │ ├── PlatformFlashAccessLibNull.inf │ │ └── PlatformFlashAccessLibNull.uni ├── Readme.md ├── SignedCapsulePkg.dec ├── SignedCapsulePkg.dsc └── Universal │ ├── RecoveryModuleLoadPei │ ├── ParseConfigProfile.c │ ├── RecoveryModuleLoadPei.c │ ├── RecoveryModuleLoadPei.h │ ├── RecoveryModuleLoadPei.inf │ ├── RecoveryModuleLoadPei.uni │ └── RecoveryModuleLoadPeiExtra.uni │ └── SystemFirmwareUpdate │ ├── ParseConfigProfile.c │ ├── SystemFirmwareCommonDxe.c │ ├── SystemFirmwareDxe.h │ ├── SystemFirmwareReportDxe.c │ ├── SystemFirmwareReportDxe.inf │ ├── SystemFirmwareReportDxe.uni │ ├── SystemFirmwareReportDxeExtra.uni │ ├── SystemFirmwareUpdateDxe.c │ ├── SystemFirmwareUpdateDxe.inf │ ├── SystemFirmwareUpdateDxe.uni │ └── SystemFirmwareUpdateDxeExtra.uni ├── SourceLevelDebugPkg ├── DebugAgentDxe │ ├── DebugAgentDxe.c │ ├── DebugAgentDxe.inf │ ├── DebugAgentDxe.uni │ └── DebugAgentDxeExtra.uni ├── DebugAgentPei │ ├── DebugAgentPei.c │ ├── DebugAgentPei.inf │ ├── DebugAgentPei.uni │ └── DebugAgentPeiExtra.uni ├── Include │ ├── Guid │ │ └── DebugAgentGuid.h │ ├── Ia32 │ │ └── ProcessorContext.h │ ├── ImageDebugSupport.h │ ├── Library │ │ └── DebugCommunicationLib.h │ └── TransferProtocol.h ├── Library │ ├── DebugAgent │ │ ├── DebugAgentCommon │ │ │ ├── DebugAgent.c │ │ │ ├── DebugAgent.h │ │ │ ├── DebugMp.c │ │ │ ├── DebugMp.h │ │ │ ├── DebugTimer.c │ │ │ ├── DebugTimer.h │ │ │ ├── Ia32 │ │ │ │ ├── ArchDebugSupport.c │ │ │ │ ├── ArchDebugSupport.h │ │ │ │ ├── AsmFuncs.nasm │ │ │ │ └── DebugException.h │ │ │ └── X64 │ │ │ │ ├── ArchDebugSupport.c │ │ │ │ ├── ArchDebugSupport.h │ │ │ │ ├── AsmFuncs.nasm │ │ │ │ └── DebugException.h │ │ ├── DxeDebugAgent │ │ │ ├── DxeDebugAgentLib.c │ │ │ ├── DxeDebugAgentLib.h │ │ │ └── SerialIo.c │ │ ├── DxeDebugAgentLib.inf │ │ ├── DxeDebugAgentLib.uni │ │ ├── SecPeiDebugAgent │ │ │ ├── SecPeiDebugAgentLib.c │ │ │ └── SecPeiDebugAgentLib.h │ │ ├── SecPeiDebugAgentLib.inf │ │ ├── SecPeiDebugAgentLib.uni │ │ ├── SmmDebugAgent │ │ │ ├── SmmDebugAgentLib.c │ │ │ └── SmmDebugAgentLib.h │ │ ├── SmmDebugAgentLib.inf │ │ └── SmmDebugAgentLib.uni │ ├── DebugCommunicationLibSerialPort │ │ ├── DebugCommunicationLibSerialPort.c │ │ ├── DebugCommunicationLibSerialPort.inf │ │ └── DebugCommunicationLibSerialPort.uni │ ├── DebugCommunicationLibUsb │ │ ├── DebugCommunicationLibUsb.c │ │ ├── DebugCommunicationLibUsb.inf │ │ └── DebugCommunicationLibUsb.uni │ ├── DebugCommunicationLibUsb3 │ │ ├── DebugCommunicationLibUsb3Common.c │ │ ├── DebugCommunicationLibUsb3Dxe.c │ │ ├── DebugCommunicationLibUsb3Dxe.inf │ │ ├── DebugCommunicationLibUsb3Dxe.uni │ │ ├── DebugCommunicationLibUsb3Internal.h │ │ ├── DebugCommunicationLibUsb3Pei.c │ │ ├── DebugCommunicationLibUsb3Pei.inf │ │ ├── DebugCommunicationLibUsb3Pei.uni │ │ └── DebugCommunicationLibUsb3Transfer.c │ └── PeCoffExtraActionLibDebug │ │ ├── Ia32 │ │ ├── IntHandler.nasm │ │ └── IntHandlerFuncs.c │ │ ├── PeCoffExtraActionLib.c │ │ ├── PeCoffExtraActionLib.h │ │ ├── PeCoffExtraActionLib.uni │ │ ├── PeCoffExtraActionLibDebug.inf │ │ └── X64 │ │ ├── IntHandler.nasm │ │ └── IntHandlerFuncs.c ├── Readme.txt ├── SourceLevelDebugPkg.dec ├── SourceLevelDebugPkg.dsc ├── SourceLevelDebugPkg.uni └── SourceLevelDebugPkgExtra.uni ├── StandaloneMmPkg ├── Core │ ├── Dependency.c │ ├── Dispatcher.c │ ├── FwVol.c │ ├── Handle.c │ ├── InstallConfigurationTable.c │ ├── Locate.c │ ├── Mmi.c │ ├── Notify.c │ ├── Page.c │ ├── Pool.c │ ├── StandaloneMmCore.c │ ├── StandaloneMmCore.h │ ├── StandaloneMmCore.inf │ └── StandaloneMmCorePrivateData.h ├── Drivers │ └── StandaloneMmCpu │ │ └── AArch64 │ │ ├── EventHandle.c │ │ ├── StandaloneMmCpu.c │ │ ├── StandaloneMmCpu.h │ │ └── StandaloneMmCpu.inf ├── Include │ ├── Guid │ │ ├── MmCoreData.h │ │ ├── MmFvDispatch.h │ │ ├── MmramMemoryReserve.h │ │ └── MpInformation.h │ ├── Library │ │ ├── AArch64 │ │ │ └── StandaloneMmCoreEntryPoint.h │ │ ├── FvLib.h │ │ ├── StandaloneMmCoreEntryPoint.h │ │ ├── StandaloneMmDriverEntryPoint.h │ │ └── StandaloneMmMemLib.h │ └── StandaloneMm.h ├── Library │ ├── FvLib │ │ ├── FvLib.c │ │ └── FvLib.inf │ ├── StandaloneMmCoreEntryPoint │ │ ├── AArch64 │ │ │ ├── CreateHobList.c │ │ │ ├── SetPermissions.c │ │ │ └── StandaloneMmCoreEntryPoint.c │ │ └── StandaloneMmCoreEntryPoint.inf │ ├── StandaloneMmCoreHobLib │ │ ├── AArch64 │ │ │ └── StandaloneMmCoreHobLibInternal.c │ │ ├── StandaloneMmCoreHobLib.c │ │ └── StandaloneMmCoreHobLib.inf │ ├── StandaloneMmCoreMemoryAllocationLib │ │ ├── StandaloneMmCoreMemoryAllocationLib.c │ │ ├── StandaloneMmCoreMemoryAllocationLib.inf │ │ └── StandaloneMmCoreMemoryAllocationServices.h │ ├── StandaloneMmHobLib │ │ ├── StandaloneMmHobLib.c │ │ └── StandaloneMmHobLib.inf │ ├── StandaloneMmMemLib │ │ ├── AArch64 │ │ │ └── StandaloneMmMemLibInternal.c │ │ ├── StandaloneMmMemLib.c │ │ └── StandaloneMmMemLib.inf │ ├── StandaloneMmMemoryAllocationLib │ │ ├── StandaloneMmMemoryAllocationLib.c │ │ └── StandaloneMmMemoryAllocationLib.inf │ ├── StandaloneMmPeCoffExtraActionLib │ │ ├── AArch64 │ │ │ └── StandaloneMmPeCoffExtraActionLib.c │ │ └── StandaloneMmPeCoffExtraActionLib.inf │ └── VariableMmDependency │ │ ├── VariableMmDependency.c │ │ └── VariableMmDependency.inf ├── StandaloneMmPkg.dec └── StandaloneMmPkg.dsc ├── UefiCpuPkg ├── Application │ └── Cpuid │ │ ├── Cpuid.c │ │ ├── Cpuid.inf │ │ ├── Cpuid.uni │ │ └── CpuidExtra.uni ├── CpuDxe │ ├── CpuDxe.c │ ├── CpuDxe.h │ ├── CpuDxe.inf │ ├── CpuDxe.uni │ ├── CpuDxeExtra.uni │ ├── CpuGdt.c │ ├── CpuGdt.h │ ├── CpuMp.c │ ├── CpuMp.h │ ├── CpuPageTable.c │ ├── CpuPageTable.h │ ├── Ia32 │ │ ├── CpuAsm.nasm │ │ └── PagingAttribute.c │ └── X64 │ │ ├── CpuAsm.nasm │ │ └── PagingAttribute.c ├── CpuFeatures │ ├── CpuFeaturesDxe.c │ ├── CpuFeaturesDxe.inf │ ├── CpuFeaturesDxe.uni │ ├── CpuFeaturesDxeExtra.uni │ ├── CpuFeaturesPei.c │ ├── CpuFeaturesPei.inf │ ├── CpuFeaturesPei.uni │ └── CpuFeaturesPeiExtra.uni ├── CpuIo2Dxe │ ├── CpuIo2Dxe.c │ ├── CpuIo2Dxe.h │ ├── CpuIo2Dxe.inf │ ├── CpuIo2Dxe.uni │ └── CpuIo2DxeExtra.uni ├── CpuIo2Smm │ ├── CpuIo2Smm.c │ ├── CpuIo2Smm.h │ ├── CpuIo2Smm.inf │ ├── CpuIo2Smm.uni │ └── CpuIo2SmmExtra.uni ├── CpuIoPei │ ├── CpuIoPei.c │ ├── CpuIoPei.h │ ├── CpuIoPei.inf │ ├── CpuIoPei.uni │ └── CpuIoPeiExtra.uni ├── CpuMpPei │ ├── CpuBist.c │ ├── CpuMp2Pei.c │ ├── CpuMpPei.c │ ├── CpuMpPei.h │ ├── CpuMpPei.inf │ ├── CpuMpPei.uni │ ├── CpuMpPeiExtra.uni │ └── CpuPaging.c ├── CpuS3DataDxe │ ├── CpuS3Data.c │ ├── CpuS3DataDxe.inf │ ├── CpuS3DataDxe.uni │ └── CpuS3DataDxeExtra.uni ├── Include │ ├── AcpiCpuData.h │ ├── CpuHotPlugData.h │ ├── Guid │ │ ├── CpuFeaturesInitDone.h │ │ ├── CpuFeaturesSetDone.h │ │ ├── MicrocodePatchHob.h │ │ └── MsegSmram.h │ ├── Library │ │ ├── LocalApicLib.h │ │ ├── MpInitLib.h │ │ ├── MtrrLib.h │ │ ├── PlatformSecLib.h │ │ ├── RegisterCpuFeaturesLib.h │ │ ├── SmmCpuFeaturesLib.h │ │ ├── SmmCpuPlatformHookLib.h │ │ ├── UefiCpuLib.h │ │ └── VmgExitLib.h │ ├── Ppi │ │ ├── MpServices2.h │ │ ├── RepublishSecPpi.h │ │ └── ShadowMicrocode.h │ ├── Protocol │ │ ├── SmMonitorInit.h │ │ └── SmmCpuService.h │ ├── Register │ │ ├── ArchitecturalMsr.h │ │ ├── Cpuid.h │ │ ├── LocalApic.h │ │ ├── Microcode.h │ │ ├── Msr.h │ │ ├── SmramSaveStateMap.h │ │ └── StmApi.h │ └── StuffRsbNasm.inc ├── Library │ ├── BaseUefiCpuLib │ │ ├── BaseUefiCpuLib.c │ │ ├── BaseUefiCpuLib.inf │ │ ├── BaseUefiCpuLib.uni │ │ ├── Ia32 │ │ │ └── InitializeFpu.nasm │ │ └── X64 │ │ │ └── InitializeFpu.nasm │ ├── BaseXApicLib │ │ ├── BaseXApicLib.c │ │ ├── BaseXApicLib.inf │ │ └── BaseXApicLib.uni │ ├── BaseXApicX2ApicLib │ │ ├── BaseXApicX2ApicLib.c │ │ ├── BaseXApicX2ApicLib.inf │ │ └── BaseXApicX2ApicLib.uni │ ├── CpuCommonFeaturesLib │ │ ├── Aesni.c │ │ ├── C1e.c │ │ ├── ClockModulation.c │ │ ├── CpuCommonFeatures.h │ │ ├── CpuCommonFeaturesLib.c │ │ ├── CpuCommonFeaturesLib.inf │ │ ├── CpuCommonFeaturesLib.uni │ │ ├── Eist.c │ │ ├── FastStrings.c │ │ ├── FeatureControl.c │ │ ├── LimitCpuIdMaxval.c │ │ ├── MachineCheck.c │ │ ├── MonitorMwait.c │ │ ├── PendingBreak.c │ │ ├── Ppin.c │ │ ├── ProcTrace.c │ │ └── X2Apic.c │ ├── CpuExceptionHandlerLib │ │ ├── CpuExceptionCommon.c │ │ ├── CpuExceptionCommon.h │ │ ├── DxeCpuExceptionHandlerLib.inf │ │ ├── DxeCpuExceptionHandlerLib.uni │ │ ├── DxeException.c │ │ ├── Ia32 │ │ │ ├── ArchExceptionHandler.c │ │ │ ├── ArchInterruptDefs.h │ │ │ ├── ExceptionHandlerAsm.nasm │ │ │ └── ExceptionTssEntryAsm.nasm │ │ ├── PeiCpuException.c │ │ ├── PeiCpuExceptionHandlerLib.inf │ │ ├── PeiCpuExceptionHandlerLib.uni │ │ ├── PeiDxeSmmCpuException.c │ │ ├── SecPeiCpuException.c │ │ ├── SecPeiCpuExceptionHandlerLib.inf │ │ ├── SecPeiCpuExceptionHandlerLib.uni │ │ ├── SmmCpuExceptionHandlerLib.inf │ │ ├── SmmCpuExceptionHandlerLib.uni │ │ ├── SmmException.c │ │ ├── X64 │ │ │ ├── ArchExceptionHandler.c │ │ │ ├── ArchInterruptDefs.h │ │ │ ├── ExceptionHandlerAsm.nasm │ │ │ └── Xcode5ExceptionHandlerAsm.nasm │ │ ├── Xcode5SecPeiCpuExceptionHandlerLib.inf │ │ └── Xcode5SecPeiCpuExceptionHandlerLib.uni │ ├── CpuTimerLib │ │ ├── BaseCpuTimerLib.c │ │ ├── BaseCpuTimerLib.inf │ │ ├── BaseCpuTimerLib.uni │ │ ├── CpuTimerLib.c │ │ ├── DxeCpuTimerLib.c │ │ ├── DxeCpuTimerLib.inf │ │ ├── DxeCpuTimerLib.uni │ │ ├── PeiCpuTimerLib.c │ │ ├── PeiCpuTimerLib.inf │ │ └── PeiCpuTimerLib.uni │ ├── MpInitLib │ │ ├── DxeMpInitLib.inf │ │ ├── DxeMpInitLib.uni │ │ ├── DxeMpLib.c │ │ ├── Ia32 │ │ │ ├── MpEqu.inc │ │ │ └── MpFuncs.nasm │ │ ├── Microcode.c │ │ ├── MpLib.c │ │ ├── MpLib.h │ │ ├── PeiMpInitLib.inf │ │ ├── PeiMpInitLib.uni │ │ ├── PeiMpLib.c │ │ └── X64 │ │ │ ├── MpEqu.inc │ │ │ └── MpFuncs.nasm │ ├── MpInitLibUp │ │ ├── MpInitLibUp.c │ │ ├── MpInitLibUp.inf │ │ └── MpInitLibUp.uni │ ├── MtrrLib │ │ ├── MtrrLib.c │ │ ├── MtrrLib.inf │ │ ├── MtrrLib.uni │ │ └── UnitTest │ │ │ ├── MtrrLibUnitTest.c │ │ │ ├── MtrrLibUnitTest.h │ │ │ ├── MtrrLibUnitTestHost.inf │ │ │ ├── RandomNumber.c │ │ │ └── Support.c │ ├── PlatformSecLibNull │ │ ├── PlatformSecLibNull.c │ │ ├── PlatformSecLibNull.inf │ │ └── PlatformSecLibNull.uni │ ├── RegisterCpuFeaturesLib │ │ ├── CpuFeaturesInitialize.c │ │ ├── DxeRegisterCpuFeaturesLib.c │ │ ├── DxeRegisterCpuFeaturesLib.inf │ │ ├── PeiRegisterCpuFeaturesLib.c │ │ ├── PeiRegisterCpuFeaturesLib.inf │ │ ├── RegisterCpuFeatures.h │ │ ├── RegisterCpuFeaturesLib.c │ │ └── RegisterCpuFeaturesLib.uni │ ├── SecPeiDxeTimerLibUefiCpu │ │ ├── SecPeiDxeTimerLibUefiCpu.inf │ │ ├── SecPeiDxeTimerLibUefiCpu.uni │ │ └── X86TimerLib.c │ ├── SmmCpuFeaturesLib │ │ ├── Ia32 │ │ │ ├── SmiEntry.nasm │ │ │ ├── SmiException.nasm │ │ │ └── SmmStmSupport.c │ │ ├── SmmCpuFeaturesLib.c │ │ ├── SmmCpuFeaturesLib.inf │ │ ├── SmmCpuFeaturesLib.uni │ │ ├── SmmCpuFeaturesLibNoStm.c │ │ ├── SmmCpuFeaturesLibStm.inf │ │ ├── SmmStm.c │ │ ├── SmmStm.h │ │ └── X64 │ │ │ ├── SmiEntry.nasm │ │ │ ├── SmiException.nasm │ │ │ └── SmmStmSupport.c │ ├── SmmCpuPlatformHookLibNull │ │ ├── SmmCpuPlatformHookLibNull.c │ │ ├── SmmCpuPlatformHookLibNull.inf │ │ └── SmmCpuPlatformHookLibNull.uni │ └── VmgExitLibNull │ │ ├── VmgExitLibNull.c │ │ ├── VmgExitLibNull.inf │ │ └── VmgExitLibNull.uni ├── PiSmmCommunication │ ├── PiSmmCommunicationPei.c │ ├── PiSmmCommunicationPei.inf │ ├── PiSmmCommunicationPei.uni │ ├── PiSmmCommunicationPeiExtra.uni │ ├── PiSmmCommunicationPrivate.h │ ├── PiSmmCommunicationSmm.c │ ├── PiSmmCommunicationSmm.inf │ ├── PiSmmCommunicationSmm.uni │ └── PiSmmCommunicationSmmExtra.uni ├── PiSmmCpuDxeSmm │ ├── CpuS3.c │ ├── CpuService.c │ ├── CpuService.h │ ├── Ia32 │ │ ├── Cet.nasm │ │ ├── MpFuncs.nasm │ │ ├── PageTbl.c │ │ ├── Semaphore.c │ │ ├── SmiEntry.nasm │ │ ├── SmiException.nasm │ │ ├── SmmFuncsArch.c │ │ ├── SmmInit.nasm │ │ ├── SmmProfileArch.c │ │ └── SmmProfileArch.h │ ├── MpService.c │ ├── PiSmmCpuDxeSmm.c │ ├── PiSmmCpuDxeSmm.h │ ├── PiSmmCpuDxeSmm.inf │ ├── PiSmmCpuDxeSmm.uni │ ├── PiSmmCpuDxeSmmExtra.uni │ ├── SmmCpuMemoryManagement.c │ ├── SmmMp.c │ ├── SmmMp.h │ ├── SmmProfile.c │ ├── SmmProfile.h │ ├── SmmProfileInternal.h │ ├── SmramSaveState.c │ ├── SyncTimer.c │ └── X64 │ │ ├── Cet.nasm │ │ ├── MpFuncs.nasm │ │ ├── PageTbl.c │ │ ├── Semaphore.c │ │ ├── SmiEntry.nasm │ │ ├── SmiException.nasm │ │ ├── SmmFuncsArch.c │ │ ├── SmmInit.nasm │ │ ├── SmmProfileArch.c │ │ └── SmmProfileArch.h ├── ResetVector │ ├── FixupVtf │ │ ├── ResetVector.uni │ │ ├── ResetVectorExtra.uni │ │ ├── Vtf.inf │ │ └── Vtf.nasmb │ └── Vtf0 │ │ ├── Bin │ │ ├── ResetVector.ia32.port80.raw │ │ ├── ResetVector.ia32.raw │ │ ├── ResetVector.ia32.serial.raw │ │ ├── ResetVector.inf │ │ ├── ResetVector.uni │ │ ├── ResetVector.x64.port80.raw │ │ ├── ResetVector.x64.raw │ │ ├── ResetVector.x64.serial.raw │ │ └── ResetVectorExtra.uni │ │ ├── Build.py │ │ ├── CommonMacros.inc │ │ ├── DebugDisabled.asm │ │ ├── Ia16 │ │ ├── Init16.asm │ │ ├── Real16ToFlat32.asm │ │ └── ResetVectorVtf0.asm │ │ ├── Ia32 │ │ ├── Flat32ToFlat64.asm │ │ ├── PageTables64.asm │ │ ├── SearchForBfvBase.asm │ │ └── SearchForSecEntry.asm │ │ ├── Main.asm │ │ ├── Port80Debug.asm │ │ ├── PostCodes.inc │ │ ├── ReadMe.txt │ │ ├── ResetVector.uni │ │ ├── ResetVectorExtra.uni │ │ ├── SerialDebug.asm │ │ ├── Tools │ │ └── FixupForRawSection.py │ │ ├── Vtf0.inf │ │ ├── Vtf0.nasmb │ │ └── X64 │ │ └── PageTables.asm ├── SecCore │ ├── FindPeiCore.c │ ├── Ia32 │ │ └── ResetVec.nasmb │ ├── SecBist.c │ ├── SecCore.inf │ ├── SecCore.uni │ ├── SecCoreExtra.uni │ ├── SecMain.c │ └── SecMain.h ├── SecMigrationPei │ ├── SecMigrationPei.c │ ├── SecMigrationPei.h │ ├── SecMigrationPei.inf │ └── SecMigrationPei.uni ├── Test │ └── UefiCpuPkgHostTest.dsc ├── UefiCpuPkg.ci.yaml ├── UefiCpuPkg.dec ├── UefiCpuPkg.dsc ├── UefiCpuPkg.uni ├── UefiCpuPkgExtra.uni └── Universal │ └── Acpi │ └── S3Resume2Pei │ ├── Ia32 │ └── AsmFuncs.nasm │ ├── S3Resume.c │ ├── S3Resume2Pei.inf │ ├── S3Resume2Pei.uni │ ├── S3Resume2PeiExtra.uni │ └── X64 │ └── AsmFuncs.nasm ├── UefiPayloadPkg ├── BlSupportDxe │ ├── BlSupportDxe.c │ ├── BlSupportDxe.h │ └── BlSupportDxe.inf ├── BlSupportPei │ ├── BlSupportPei.c │ ├── BlSupportPei.h │ └── BlSupportPei.inf ├── BuildAndIntegrationInstructions.txt ├── GraphicsOutputDxe │ ├── ComponentName.c │ ├── GraphicsOutput.c │ ├── GraphicsOutput.h │ └── GraphicsOutputDxe.inf ├── Include │ ├── Coreboot.h │ ├── Guid │ │ ├── AcpiBoardInfoGuid.h │ │ ├── MemoryMapInfoGuid.h │ │ ├── SerialPortInfoGuid.h │ │ └── SystemTableInfoGuid.h │ └── Library │ │ ├── BlParseLib.h │ │ └── PlatformSupportLib.h ├── Library │ ├── AcpiTimerLib │ │ ├── AcpiTimerLib.c │ │ └── AcpiTimerLib.inf │ ├── CbParseLib │ │ ├── CbParseLib.c │ │ └── CbParseLib.inf │ ├── PciHostBridgeLib │ │ ├── PciHostBridge.h │ │ ├── PciHostBridgeLib.c │ │ ├── PciHostBridgeLib.inf │ │ └── PciHostBridgeSupport.c │ ├── PciSegmentInfoLibAcpiBoardInfo │ │ ├── PciSegmentInfoLibAcpiBoardInfo.c │ │ └── PciSegmentInfoLibAcpiBoardInfo.inf │ ├── PlatformBootManagerLib │ │ ├── PlatformBootManager.c │ │ ├── PlatformBootManager.h │ │ ├── PlatformBootManagerLib.inf │ │ ├── PlatformConsole.c │ │ ├── PlatformConsole.h │ │ └── PlatformData.c │ ├── PlatformHookLib │ │ ├── PlatformHookLib.c │ │ └── PlatformHookLib.inf │ ├── PlatformSupportLibNull │ │ ├── PlatformSupportLibNull.c │ │ └── PlatformSupportLibNull.inf │ ├── ResetSystemLib │ │ ├── ResetSystemLib.c │ │ └── ResetSystemLib.inf │ └── SblParseLib │ │ ├── SblParseLib.c │ │ └── SblParseLib.inf ├── SecCore │ ├── FindPeiCore.c │ ├── Ia32 │ │ ├── SecEntry.nasm │ │ └── Stack.nasm │ ├── SecCore.inf │ ├── SecMain.c │ └── SecMain.h ├── UefiPayloadPkg.dec ├── UefiPayloadPkg.fdf ├── UefiPayloadPkgIa32.dsc └── UefiPayloadPkgIa32X64.dsc ├── UnitTestFrameworkPkg ├── Library │ ├── CmockaLib │ │ ├── CmockaLib.inf │ │ └── CmockaLib.uni │ ├── Posix │ │ ├── DebugLibPosix │ │ │ ├── DebugLibPosix.c │ │ │ ├── DebugLibPosix.inf │ │ │ └── DebugLibPosix.uni │ │ └── MemoryAllocationLibPosix │ │ │ ├── MemoryAllocationLibPosix.c │ │ │ ├── MemoryAllocationLibPosix.inf │ │ │ └── MemoryAllocationLibPosix.uni │ ├── UnitTestBootLibNull │ │ ├── UnitTestBootLibNull.c │ │ ├── UnitTestBootLibNull.inf │ │ └── UnitTestBootLibNull.uni │ ├── UnitTestBootLibUsbClass │ │ ├── UnitTestBootLibUsbClass.c │ │ ├── UnitTestBootLibUsbClass.inf │ │ └── UnitTestBootLibUsbClass.uni │ ├── UnitTestDebugAssertLib │ │ ├── UnitTestDebugAssertLib.c │ │ ├── UnitTestDebugAssertLib.inf │ │ └── UnitTestDebugAssertLib.uni │ ├── UnitTestLib │ │ ├── Assert.c │ │ ├── AssertCmocka.c │ │ ├── Log.c │ │ ├── RunTests.c │ │ ├── RunTestsCmocka.c │ │ ├── UnitTestLib.c │ │ ├── UnitTestLib.inf │ │ ├── UnitTestLib.uni │ │ ├── UnitTestLibCmocka.inf │ │ └── UnitTestLibCmocka.uni │ ├── UnitTestPersistenceLibNull │ │ ├── UnitTestPersistenceLibNull.c │ │ ├── UnitTestPersistenceLibNull.inf │ │ └── UnitTestPersistenceLibNull.uni │ ├── UnitTestPersistenceLibSimpleFileSystem │ │ ├── UnitTestPersistenceLibSimpleFileSystem.c │ │ ├── UnitTestPersistenceLibSimpleFileSystem.inf │ │ └── UnitTestPersistenceLibSimpleFileSystem.uni │ └── UnitTestResultReportLib │ │ ├── UnitTestResultReportLib.c │ │ ├── UnitTestResultReportLibConOut.c │ │ ├── UnitTestResultReportLibConOut.inf │ │ ├── UnitTestResultReportLibConOut.uni │ │ ├── UnitTestResultReportLibDebugLib.c │ │ ├── UnitTestResultReportLibDebugLib.inf │ │ └── UnitTestResultReportLibDebugLib.uni ├── PrivateInclude │ ├── Library │ │ ├── UnitTestBootLib.h │ │ ├── UnitTestPersistenceLib.h │ │ └── UnitTestResultReportLib.h │ └── UnitTestFrameworkTypes.h ├── ReadMe.md ├── Test │ ├── UnitTest │ │ └── Sample │ │ │ └── SampleUnitTest │ │ │ ├── SampleUnitTest.c │ │ │ ├── SampleUnitTestDxe.inf │ │ │ ├── SampleUnitTestHost.inf │ │ │ ├── SampleUnitTestPei.inf │ │ │ ├── SampleUnitTestSmm.inf │ │ │ └── SampleUnitTestUefiShell.inf │ └── UnitTestFrameworkPkgHostTest.dsc ├── UnitTestFrameworkPkg.ci.yaml ├── UnitTestFrameworkPkg.dec ├── UnitTestFrameworkPkg.dsc ├── UnitTestFrameworkPkg.uni ├── UnitTestFrameworkPkgHost.dsc.inc └── UnitTestFrameworkPkgTarget.dsc.inc ├── edksetup.bat ├── edksetup.sh └── pip-requirements.txt /.azurepipelines/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/.azurepipelines/ReadMe.md -------------------------------------------------------------------------------- /.azurepipelines/Ubuntu-GCC5.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/.azurepipelines/Ubuntu-GCC5.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/.gitmodules -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/.mailmap -------------------------------------------------------------------------------- /.mergify/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/.mergify/config.yml -------------------------------------------------------------------------------- /.pytool/CISettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/.pytool/CISettings.py -------------------------------------------------------------------------------- /.pytool/Plugin/EccCheck/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/.pytool/Plugin/EccCheck/Readme.md -------------------------------------------------------------------------------- /.pytool/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/.pytool/Readme.md -------------------------------------------------------------------------------- /ArmPkg/ArmPkg.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/ArmPkg/ArmPkg.dec -------------------------------------------------------------------------------- /ArmPkg/ArmPkg.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/ArmPkg/ArmPkg.dsc -------------------------------------------------------------------------------- /ArmPkg/Drivers/ArmGic/ArmGicDxe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/ArmPkg/Drivers/ArmGic/ArmGicDxe.c -------------------------------------------------------------------------------- /ArmPkg/Drivers/ArmGic/ArmGicDxe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/ArmPkg/Drivers/ArmGic/ArmGicDxe.h -------------------------------------------------------------------------------- /ArmPkg/Drivers/ArmGic/ArmGicLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/ArmPkg/Drivers/ArmGic/ArmGicLib.c -------------------------------------------------------------------------------- /ArmPkg/Drivers/ArmScmiDxe/Scmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/ArmPkg/Drivers/ArmScmiDxe/Scmi.c -------------------------------------------------------------------------------- /ArmPkg/Drivers/CpuDxe/Arm/Mmu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/ArmPkg/Drivers/CpuDxe/Arm/Mmu.c -------------------------------------------------------------------------------- /ArmPkg/Drivers/CpuDxe/CpuDxe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/ArmPkg/Drivers/CpuDxe/CpuDxe.c -------------------------------------------------------------------------------- /ArmPkg/Drivers/CpuDxe/CpuDxe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/ArmPkg/Drivers/CpuDxe/CpuDxe.h -------------------------------------------------------------------------------- /ArmPkg/Drivers/CpuDxe/CpuDxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/ArmPkg/Drivers/CpuDxe/CpuDxe.inf -------------------------------------------------------------------------------- /ArmPkg/Drivers/CpuDxe/CpuMpCore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/ArmPkg/Drivers/CpuDxe/CpuMpCore.c -------------------------------------------------------------------------------- /ArmPkg/Drivers/CpuDxe/Exception.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/ArmPkg/Drivers/CpuDxe/Exception.c -------------------------------------------------------------------------------- /ArmPkg/Drivers/CpuPei/CpuPei.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/ArmPkg/Drivers/CpuPei/CpuPei.c -------------------------------------------------------------------------------- /ArmPkg/Drivers/CpuPei/CpuPei.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/ArmPkg/Drivers/CpuPei/CpuPei.inf -------------------------------------------------------------------------------- /ArmPkg/Include/AsmMacroExport.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/ArmPkg/Include/AsmMacroExport.inc -------------------------------------------------------------------------------- /ArmPkg/Include/AsmMacroIoLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/ArmPkg/Include/AsmMacroIoLib.h -------------------------------------------------------------------------------- /ArmPkg/Include/AsmMacroIoLib.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/ArmPkg/Include/AsmMacroIoLib.inc -------------------------------------------------------------------------------- /ArmPkg/Include/AsmMacroIoLibV8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/ArmPkg/Include/AsmMacroIoLibV8.h -------------------------------------------------------------------------------- /ArmPkg/Include/Chipset/AArch64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/ArmPkg/Include/Chipset/AArch64.h -------------------------------------------------------------------------------- /ArmPkg/Include/Chipset/ArmV7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/ArmPkg/Include/Chipset/ArmV7.h -------------------------------------------------------------------------------- /ArmPkg/Include/Chipset/ArmV7Mmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/ArmPkg/Include/Chipset/ArmV7Mmu.h -------------------------------------------------------------------------------- /ArmPkg/Include/Library/ArmLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/ArmPkg/Include/Library/ArmLib.h -------------------------------------------------------------------------------- /ArmPkg/Include/Library/OpteeLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/ArmPkg/Include/Library/OpteeLib.h -------------------------------------------------------------------------------- /ArmPkg/Include/Protocol/ArmScmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/ArmPkg/Include/Protocol/ArmScmi.h -------------------------------------------------------------------------------- /ArmPkg/Library/ArmLib/ArmLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/ArmPkg/Library/ArmLib/ArmLib.c -------------------------------------------------------------------------------- /ArmPkg/Library/OpteeLib/Optee.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/ArmPkg/Library/OpteeLib/Optee.c -------------------------------------------------------------------------------- /ArmPlatformPkg/ArmPlatformPkg.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/ArmPlatformPkg/ArmPlatformPkg.dec -------------------------------------------------------------------------------- /ArmPlatformPkg/ArmPlatformPkg.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/ArmPlatformPkg/ArmPlatformPkg.dsc -------------------------------------------------------------------------------- /ArmPlatformPkg/PrePi/MainMPCore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/ArmPlatformPkg/PrePi/MainMPCore.c -------------------------------------------------------------------------------- /ArmPlatformPkg/PrePi/PrePi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/ArmPlatformPkg/PrePi/PrePi.c -------------------------------------------------------------------------------- /ArmPlatformPkg/PrePi/PrePi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/ArmPlatformPkg/PrePi/PrePi.h -------------------------------------------------------------------------------- /ArmPlatformPkg/Scripts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/ArmPlatformPkg/Scripts/Makefile -------------------------------------------------------------------------------- /ArmVirtPkg/ArmVirt.dsc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/ArmVirtPkg/ArmVirt.dsc.inc -------------------------------------------------------------------------------- /ArmVirtPkg/ArmVirtKvmTool.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/ArmVirtPkg/ArmVirtKvmTool.dsc -------------------------------------------------------------------------------- /ArmVirtPkg/ArmVirtKvmTool.fdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/ArmVirtPkg/ArmVirtKvmTool.fdf -------------------------------------------------------------------------------- /ArmVirtPkg/ArmVirtPkg.ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/ArmVirtPkg/ArmVirtPkg.ci.yaml -------------------------------------------------------------------------------- /ArmVirtPkg/ArmVirtPkg.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/ArmVirtPkg/ArmVirtPkg.dec -------------------------------------------------------------------------------- /ArmVirtPkg/ArmVirtQemu.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/ArmVirtPkg/ArmVirtQemu.dsc -------------------------------------------------------------------------------- /ArmVirtPkg/ArmVirtQemu.fdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/ArmVirtPkg/ArmVirtQemu.fdf -------------------------------------------------------------------------------- /ArmVirtPkg/ArmVirtQemuKernel.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/ArmVirtPkg/ArmVirtQemuKernel.dsc -------------------------------------------------------------------------------- /ArmVirtPkg/ArmVirtQemuKernel.fdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/ArmVirtPkg/ArmVirtQemuKernel.fdf -------------------------------------------------------------------------------- /ArmVirtPkg/ArmVirtRules.fdf.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/ArmVirtPkg/ArmVirtRules.fdf.inc -------------------------------------------------------------------------------- /ArmVirtPkg/ArmVirtXen.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/ArmVirtPkg/ArmVirtXen.dsc -------------------------------------------------------------------------------- /ArmVirtPkg/ArmVirtXen.fdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/ArmVirtPkg/ArmVirtXen.fdf -------------------------------------------------------------------------------- /ArmVirtPkg/PlatformCI/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/ArmVirtPkg/PlatformCI/ReadMe.md -------------------------------------------------------------------------------- /ArmVirtPkg/PrePi/Arm/ArchPrePi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/ArmVirtPkg/PrePi/Arm/ArchPrePi.c -------------------------------------------------------------------------------- /ArmVirtPkg/PrePi/FdtParser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/ArmVirtPkg/PrePi/FdtParser.c -------------------------------------------------------------------------------- /ArmVirtPkg/PrePi/PrePi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/ArmVirtPkg/PrePi/PrePi.c -------------------------------------------------------------------------------- /ArmVirtPkg/PrePi/PrePi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/ArmVirtPkg/PrePi/PrePi.h -------------------------------------------------------------------------------- /ArmVirtPkg/VarStore.fdf.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/ArmVirtPkg/VarStore.fdf.inc -------------------------------------------------------------------------------- /BaseTools/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/BaseTools/.gitignore -------------------------------------------------------------------------------- /BaseTools/Bin/iasl_ext_dep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/BaseTools/Bin/iasl_ext_dep.yaml -------------------------------------------------------------------------------- /BaseTools/Bin/nasm_ext_dep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/BaseTools/Bin/nasm_ext_dep.yaml -------------------------------------------------------------------------------- /BaseTools/BuildEnv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/BaseTools/BuildEnv -------------------------------------------------------------------------------- /BaseTools/Conf/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/BaseTools/Conf/ReadMe.txt -------------------------------------------------------------------------------- /BaseTools/Conf/diff.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/BaseTools/Conf/diff.order -------------------------------------------------------------------------------- /BaseTools/Conf/gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/BaseTools/Conf/gitattributes -------------------------------------------------------------------------------- /BaseTools/Conf/target.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/BaseTools/Conf/target.template -------------------------------------------------------------------------------- /BaseTools/Conf/tools_def.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/BaseTools/Conf/tools_def.template -------------------------------------------------------------------------------- /BaseTools/Edk2ToolsBuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/BaseTools/Edk2ToolsBuild.py -------------------------------------------------------------------------------- /BaseTools/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/BaseTools/GNUmakefile -------------------------------------------------------------------------------- /BaseTools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/BaseTools/Makefile -------------------------------------------------------------------------------- /BaseTools/ReadMe.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/BaseTools/ReadMe.rst -------------------------------------------------------------------------------- /BaseTools/Scripts/BinToPcd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/BaseTools/Scripts/BinToPcd.py -------------------------------------------------------------------------------- /BaseTools/Scripts/ConvertUni.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/BaseTools/Scripts/ConvertUni.py -------------------------------------------------------------------------------- /BaseTools/Scripts/GccBase.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/BaseTools/Scripts/GccBase.lds -------------------------------------------------------------------------------- /BaseTools/Scripts/PatchCheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/BaseTools/Scripts/PatchCheck.py -------------------------------------------------------------------------------- /BaseTools/Scripts/RunMakefile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/BaseTools/Scripts/RunMakefile.py -------------------------------------------------------------------------------- /BaseTools/Scripts/SetupGit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/BaseTools/Scripts/SetupGit.py -------------------------------------------------------------------------------- /BaseTools/Source/C/Common/Crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/BaseTools/Source/C/Common/Crc32.c -------------------------------------------------------------------------------- /BaseTools/Source/C/Common/Crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/BaseTools/Source/C/Common/Crc32.h -------------------------------------------------------------------------------- /BaseTools/Source/C/Common/FvLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/BaseTools/Source/C/Common/FvLib.c -------------------------------------------------------------------------------- /BaseTools/Source/C/Common/FvLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/BaseTools/Source/C/Common/FvLib.h -------------------------------------------------------------------------------- /BaseTools/Source/C/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/BaseTools/Source/C/GNUmakefile -------------------------------------------------------------------------------- /BaseTools/Source/C/GenFv/GenFv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/BaseTools/Source/C/GenFv/GenFv.c -------------------------------------------------------------------------------- /BaseTools/Source/C/GenFv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/BaseTools/Source/C/GenFv/Makefile -------------------------------------------------------------------------------- /BaseTools/Source/C/GenFw/GenFw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/BaseTools/Source/C/GenFw/GenFw.c -------------------------------------------------------------------------------- /BaseTools/Source/C/GenFw/GenFw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/BaseTools/Source/C/GenFw/GenFw.h -------------------------------------------------------------------------------- /BaseTools/Source/C/GenFw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/BaseTools/Source/C/GenFw/Makefile -------------------------------------------------------------------------------- /BaseTools/Source/C/GenFw/elf32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/BaseTools/Source/C/GenFw/elf32.h -------------------------------------------------------------------------------- /BaseTools/Source/C/GenFw/elf64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/BaseTools/Source/C/GenFw/elf64.h -------------------------------------------------------------------------------- /BaseTools/Source/C/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/BaseTools/Source/C/Makefile -------------------------------------------------------------------------------- /BaseTools/Source/C/Split/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/BaseTools/Source/C/Split/Makefile -------------------------------------------------------------------------------- /BaseTools/Source/C/Split/Split.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/BaseTools/Source/C/Split/Split.c -------------------------------------------------------------------------------- /BaseTools/Source/C/VfrCompile/Pccts/h/config.h: -------------------------------------------------------------------------------- 1 | #include "pcctscfg.h" 2 | -------------------------------------------------------------------------------- /BaseTools/Source/Python/Ecc/C.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/BaseTools/Source/Python/Ecc/C.g -------------------------------------------------------------------------------- /BaseTools/Source/Python/Ecc/CParser3/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BaseTools/Source/Python/Ecc/CParser4/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BaseTools/Source/Python/Ecc/c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/BaseTools/Source/Python/Ecc/c.py -------------------------------------------------------------------------------- /BaseTools/Source/Python/Eot/CParser3/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BaseTools/Source/Python/Eot/CParser4/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BaseTools/Source/Python/Eot/c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/BaseTools/Source/Python/Eot/c.py -------------------------------------------------------------------------------- /BaseTools/Source/Python/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/BaseTools/Source/Python/Makefile -------------------------------------------------------------------------------- /BaseTools/Tests/CToolsTests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/BaseTools/Tests/CToolsTests.py -------------------------------------------------------------------------------- /BaseTools/Tests/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/BaseTools/Tests/GNUmakefile -------------------------------------------------------------------------------- /BaseTools/Tests/PythonTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/BaseTools/Tests/PythonTest.py -------------------------------------------------------------------------------- /BaseTools/Tests/RunTests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/BaseTools/Tests/RunTests.py -------------------------------------------------------------------------------- /BaseTools/Tests/TestTools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/BaseTools/Tests/TestTools.py -------------------------------------------------------------------------------- /BaseTools/Tests/TianoCompress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/BaseTools/Tests/TianoCompress.py -------------------------------------------------------------------------------- /BaseTools/basetools_path_env.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/BaseTools/basetools_path_env.yaml -------------------------------------------------------------------------------- /BaseTools/get_vsvars.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/BaseTools/get_vsvars.bat -------------------------------------------------------------------------------- /BaseTools/set_vsprefix_envs.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/BaseTools/set_vsprefix_envs.bat -------------------------------------------------------------------------------- /BaseTools/toolsetup.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/BaseTools/toolsetup.bat -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Conf/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /Conf/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/Conf/ReadMe.txt -------------------------------------------------------------------------------- /CryptoPkg/CryptoPkg.ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/CryptoPkg/CryptoPkg.ci.yaml -------------------------------------------------------------------------------- /CryptoPkg/CryptoPkg.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/CryptoPkg/CryptoPkg.dec -------------------------------------------------------------------------------- /CryptoPkg/CryptoPkg.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/CryptoPkg/CryptoPkg.dsc -------------------------------------------------------------------------------- /CryptoPkg/CryptoPkg.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/CryptoPkg/CryptoPkg.uni -------------------------------------------------------------------------------- /CryptoPkg/CryptoPkgExtra.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/CryptoPkg/CryptoPkgExtra.uni -------------------------------------------------------------------------------- /CryptoPkg/Driver/Crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/CryptoPkg/Driver/Crypto.c -------------------------------------------------------------------------------- /CryptoPkg/Driver/Crypto.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/CryptoPkg/Driver/Crypto.uni -------------------------------------------------------------------------------- /CryptoPkg/Driver/CryptoDxe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/CryptoPkg/Driver/CryptoDxe.c -------------------------------------------------------------------------------- /CryptoPkg/Driver/CryptoDxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/CryptoPkg/Driver/CryptoDxe.inf -------------------------------------------------------------------------------- /CryptoPkg/Driver/CryptoPei.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/CryptoPkg/Driver/CryptoPei.c -------------------------------------------------------------------------------- /CryptoPkg/Driver/CryptoPei.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/CryptoPkg/Driver/CryptoPei.inf -------------------------------------------------------------------------------- /CryptoPkg/Driver/CryptoSmm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/CryptoPkg/Driver/CryptoSmm.c -------------------------------------------------------------------------------- /CryptoPkg/Driver/CryptoSmm.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/CryptoPkg/Driver/CryptoSmm.inf -------------------------------------------------------------------------------- /CryptoPkg/Library/Include/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/CryptoPkg/Library/Include/ctype.h -------------------------------------------------------------------------------- /CryptoPkg/Library/Include/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/CryptoPkg/Library/Include/errno.h -------------------------------------------------------------------------------- /CryptoPkg/Library/Include/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/CryptoPkg/Library/Include/stdio.h -------------------------------------------------------------------------------- /CryptoPkg/Library/Include/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/CryptoPkg/Library/Include/time.h -------------------------------------------------------------------------------- /CryptoPkg/Private/Ppi/Crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/CryptoPkg/Private/Ppi/Crypto.h -------------------------------------------------------------------------------- /DynamicTablesPkg/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/DynamicTablesPkg/Readme.md -------------------------------------------------------------------------------- /EmbeddedPkg/EmbeddedPkg.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/EmbeddedPkg/EmbeddedPkg.dec -------------------------------------------------------------------------------- /EmbeddedPkg/EmbeddedPkg.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/EmbeddedPkg/EmbeddedPkg.dsc -------------------------------------------------------------------------------- /EmbeddedPkg/GdbStub/GdbStub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/EmbeddedPkg/GdbStub/GdbStub.c -------------------------------------------------------------------------------- /EmbeddedPkg/GdbStub/GdbStub.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/EmbeddedPkg/GdbStub/GdbStub.inf -------------------------------------------------------------------------------- /EmbeddedPkg/GdbStub/SerialIo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/EmbeddedPkg/GdbStub/SerialIo.c -------------------------------------------------------------------------------- /EmbeddedPkg/Include/Guid/Fdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/EmbeddedPkg/Include/Guid/Fdt.h -------------------------------------------------------------------------------- /EmbeddedPkg/Include/Guid/FdtHob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/EmbeddedPkg/Include/Guid/FdtHob.h -------------------------------------------------------------------------------- /EmbeddedPkg/Include/fdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/EmbeddedPkg/Include/fdt.h -------------------------------------------------------------------------------- /EmbeddedPkg/Include/libfdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/EmbeddedPkg/Include/libfdt.h -------------------------------------------------------------------------------- /EmbeddedPkg/Include/libfdt_env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/EmbeddedPkg/Include/libfdt_env.h -------------------------------------------------------------------------------- /EmbeddedPkg/Library/FdtLib/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/EmbeddedPkg/Library/FdtLib/TODO -------------------------------------------------------------------------------- /EmbeddedPkg/Library/FdtLib/fdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/EmbeddedPkg/Library/FdtLib/fdt.c -------------------------------------------------------------------------------- /EmulatorPkg/CpuRuntimeDxe/Cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/EmulatorPkg/CpuRuntimeDxe/Cpu.c -------------------------------------------------------------------------------- /EmulatorPkg/CpuRuntimeDxe/Cpu.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/EmulatorPkg/CpuRuntimeDxe/Cpu.inf -------------------------------------------------------------------------------- /EmulatorPkg/CpuRuntimeDxe/CpuIo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/EmulatorPkg/CpuRuntimeDxe/CpuIo.c -------------------------------------------------------------------------------- /EmulatorPkg/EmuGopDxe/Gop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/EmulatorPkg/EmuGopDxe/Gop.h -------------------------------------------------------------------------------- /EmulatorPkg/EmuGopDxe/GopDriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/EmulatorPkg/EmuGopDxe/GopDriver.c -------------------------------------------------------------------------------- /EmulatorPkg/EmuGopDxe/GopInput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/EmulatorPkg/EmuGopDxe/GopInput.c -------------------------------------------------------------------------------- /EmulatorPkg/EmuGopDxe/GopScreen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/EmulatorPkg/EmuGopDxe/GopScreen.c -------------------------------------------------------------------------------- /EmulatorPkg/EmuSnpDxe/EmuSnpDxe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/EmulatorPkg/EmuSnpDxe/EmuSnpDxe.c -------------------------------------------------------------------------------- /EmulatorPkg/EmuSnpDxe/EmuSnpDxe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/EmulatorPkg/EmuSnpDxe/EmuSnpDxe.h -------------------------------------------------------------------------------- /EmulatorPkg/EmulatorPkg.ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/EmulatorPkg/EmulatorPkg.ci.yaml -------------------------------------------------------------------------------- /EmulatorPkg/EmulatorPkg.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/EmulatorPkg/EmulatorPkg.dec -------------------------------------------------------------------------------- /EmulatorPkg/EmulatorPkg.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/EmulatorPkg/EmulatorPkg.dsc -------------------------------------------------------------------------------- /EmulatorPkg/EmulatorPkg.fdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/EmulatorPkg/EmulatorPkg.fdf -------------------------------------------------------------------------------- /EmulatorPkg/PlatformCI/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/EmulatorPkg/PlatformCI/ReadMe.md -------------------------------------------------------------------------------- /EmulatorPkg/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/EmulatorPkg/Readme.md -------------------------------------------------------------------------------- /EmulatorPkg/Sec/Ia32/SwitchRam.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/EmulatorPkg/Sec/Ia32/SwitchRam.S -------------------------------------------------------------------------------- /EmulatorPkg/Sec/Ia32/TempRam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/EmulatorPkg/Sec/Ia32/TempRam.c -------------------------------------------------------------------------------- /EmulatorPkg/Sec/Sec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/EmulatorPkg/Sec/Sec.c -------------------------------------------------------------------------------- /EmulatorPkg/Sec/Sec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/EmulatorPkg/Sec/Sec.h -------------------------------------------------------------------------------- /EmulatorPkg/Sec/Sec.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/EmulatorPkg/Sec/Sec.inf -------------------------------------------------------------------------------- /EmulatorPkg/Sec/X64/SwitchRam.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/EmulatorPkg/Sec/X64/SwitchRam.S -------------------------------------------------------------------------------- /EmulatorPkg/Sec/X64/SwitchRam.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/EmulatorPkg/Sec/X64/SwitchRam.asm -------------------------------------------------------------------------------- /EmulatorPkg/TimerDxe/Timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/EmulatorPkg/TimerDxe/Timer.c -------------------------------------------------------------------------------- /EmulatorPkg/TimerDxe/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/EmulatorPkg/TimerDxe/Timer.h -------------------------------------------------------------------------------- /EmulatorPkg/TimerDxe/Timer.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/EmulatorPkg/TimerDxe/Timer.inf -------------------------------------------------------------------------------- /EmulatorPkg/Unix/.gdbinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/EmulatorPkg/Unix/.gdbinit -------------------------------------------------------------------------------- /EmulatorPkg/Unix/GdbRun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/EmulatorPkg/Unix/GdbRun.sh -------------------------------------------------------------------------------- /EmulatorPkg/Unix/Host/BlockIo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/EmulatorPkg/Unix/Host/BlockIo.c -------------------------------------------------------------------------------- /EmulatorPkg/Unix/Host/EmuThunk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/EmulatorPkg/Unix/Host/EmuThunk.c -------------------------------------------------------------------------------- /EmulatorPkg/Unix/Host/Gasket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/EmulatorPkg/Unix/Host/Gasket.h -------------------------------------------------------------------------------- /EmulatorPkg/Unix/Host/Host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/EmulatorPkg/Unix/Host/Host.c -------------------------------------------------------------------------------- /EmulatorPkg/Unix/Host/Host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/EmulatorPkg/Unix/Host/Host.h -------------------------------------------------------------------------------- /EmulatorPkg/Unix/Host/Host.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/EmulatorPkg/Unix/Host/Host.inf -------------------------------------------------------------------------------- /EmulatorPkg/Unix/Host/Pthreads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/EmulatorPkg/Unix/Host/Pthreads.c -------------------------------------------------------------------------------- /EmulatorPkg/Unix/Host/X11IncludeHack: -------------------------------------------------------------------------------- 1 | /opt/X11/include -------------------------------------------------------------------------------- /EmulatorPkg/Unix/lldbefi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/EmulatorPkg/Unix/lldbefi.py -------------------------------------------------------------------------------- /EmulatorPkg/Unix/lldbinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/EmulatorPkg/Unix/lldbinit -------------------------------------------------------------------------------- /EmulatorPkg/Win/Host/WinBlockIo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/EmulatorPkg/Win/Host/WinBlockIo.c -------------------------------------------------------------------------------- /EmulatorPkg/Win/Host/WinGop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/EmulatorPkg/Win/Host/WinGop.h -------------------------------------------------------------------------------- /EmulatorPkg/Win/Host/WinHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/EmulatorPkg/Win/Host/WinHost.c -------------------------------------------------------------------------------- /EmulatorPkg/Win/Host/WinHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/EmulatorPkg/Win/Host/WinHost.h -------------------------------------------------------------------------------- /EmulatorPkg/Win/Host/WinHost.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/EmulatorPkg/Win/Host/WinHost.inf -------------------------------------------------------------------------------- /EmulatorPkg/Win/Host/WinInclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/EmulatorPkg/Win/Host/WinInclude.h -------------------------------------------------------------------------------- /EmulatorPkg/Win/Host/WinThunk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/EmulatorPkg/Win/Host/WinThunk.c -------------------------------------------------------------------------------- /EmulatorPkg/Win/VS2017/Win.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/EmulatorPkg/Win/VS2017/Win.sln -------------------------------------------------------------------------------- /EmulatorPkg/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/EmulatorPkg/build.sh -------------------------------------------------------------------------------- /FatPkg/EnhancedFatDxe/Data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/FatPkg/EnhancedFatDxe/Data.c -------------------------------------------------------------------------------- /FatPkg/EnhancedFatDxe/Delete.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/FatPkg/EnhancedFatDxe/Delete.c -------------------------------------------------------------------------------- /FatPkg/EnhancedFatDxe/DiskCache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/FatPkg/EnhancedFatDxe/DiskCache.c -------------------------------------------------------------------------------- /FatPkg/EnhancedFatDxe/Fat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/FatPkg/EnhancedFatDxe/Fat.c -------------------------------------------------------------------------------- /FatPkg/EnhancedFatDxe/Fat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/FatPkg/EnhancedFatDxe/Fat.h -------------------------------------------------------------------------------- /FatPkg/EnhancedFatDxe/Fat.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/FatPkg/EnhancedFatDxe/Fat.inf -------------------------------------------------------------------------------- /FatPkg/EnhancedFatDxe/Fat.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/FatPkg/EnhancedFatDxe/Fat.uni -------------------------------------------------------------------------------- /FatPkg/EnhancedFatDxe/FileName.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/FatPkg/EnhancedFatDxe/FileName.c -------------------------------------------------------------------------------- /FatPkg/EnhancedFatDxe/FileSpace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/FatPkg/EnhancedFatDxe/FileSpace.c -------------------------------------------------------------------------------- /FatPkg/EnhancedFatDxe/Flush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/FatPkg/EnhancedFatDxe/Flush.c -------------------------------------------------------------------------------- /FatPkg/EnhancedFatDxe/Hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/FatPkg/EnhancedFatDxe/Hash.c -------------------------------------------------------------------------------- /FatPkg/EnhancedFatDxe/Info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/FatPkg/EnhancedFatDxe/Info.c -------------------------------------------------------------------------------- /FatPkg/EnhancedFatDxe/Init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/FatPkg/EnhancedFatDxe/Init.c -------------------------------------------------------------------------------- /FatPkg/EnhancedFatDxe/Misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/FatPkg/EnhancedFatDxe/Misc.c -------------------------------------------------------------------------------- /FatPkg/EnhancedFatDxe/Open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/FatPkg/EnhancedFatDxe/Open.c -------------------------------------------------------------------------------- /FatPkg/EnhancedFatDxe/ReadWrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/FatPkg/EnhancedFatDxe/ReadWrite.c -------------------------------------------------------------------------------- /FatPkg/FatPei/Eltorito.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/FatPkg/FatPei/Eltorito.c -------------------------------------------------------------------------------- /FatPkg/FatPei/FatLiteAccess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/FatPkg/FatPei/FatLiteAccess.c -------------------------------------------------------------------------------- /FatPkg/FatPei/FatLiteApi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/FatPkg/FatPei/FatLiteApi.c -------------------------------------------------------------------------------- /FatPkg/FatPei/FatLiteApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/FatPkg/FatPei/FatLiteApi.h -------------------------------------------------------------------------------- /FatPkg/FatPei/FatLiteFmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/FatPkg/FatPei/FatLiteFmt.h -------------------------------------------------------------------------------- /FatPkg/FatPei/FatLiteLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/FatPkg/FatPei/FatLiteLib.c -------------------------------------------------------------------------------- /FatPkg/FatPei/FatLitePeim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/FatPkg/FatPei/FatLitePeim.h -------------------------------------------------------------------------------- /FatPkg/FatPei/FatPei.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/FatPkg/FatPei/FatPei.inf -------------------------------------------------------------------------------- /FatPkg/FatPei/FatPei.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/FatPkg/FatPei/FatPei.uni -------------------------------------------------------------------------------- /FatPkg/FatPei/FatPeiExtra.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/FatPkg/FatPei/FatPeiExtra.uni -------------------------------------------------------------------------------- /FatPkg/FatPei/Gpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/FatPkg/FatPei/Gpt.c -------------------------------------------------------------------------------- /FatPkg/FatPei/Mbr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/FatPkg/FatPei/Mbr.c -------------------------------------------------------------------------------- /FatPkg/FatPei/Part.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/FatPkg/FatPei/Part.c -------------------------------------------------------------------------------- /FatPkg/FatPkg.ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/FatPkg/FatPkg.ci.yaml -------------------------------------------------------------------------------- /FatPkg/FatPkg.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/FatPkg/FatPkg.dec -------------------------------------------------------------------------------- /FatPkg/FatPkg.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/FatPkg/FatPkg.dsc -------------------------------------------------------------------------------- /FatPkg/FatPkg.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/FatPkg/FatPkg.uni -------------------------------------------------------------------------------- /FatPkg/FatPkgExtra.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/FatPkg/FatPkgExtra.uni -------------------------------------------------------------------------------- /FmpDevicePkg/FmpDevicePkg.ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/FmpDevicePkg/FmpDevicePkg.ci.yaml -------------------------------------------------------------------------------- /FmpDevicePkg/FmpDevicePkg.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/FmpDevicePkg/FmpDevicePkg.dec -------------------------------------------------------------------------------- /FmpDevicePkg/FmpDevicePkg.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/FmpDevicePkg/FmpDevicePkg.dsc -------------------------------------------------------------------------------- /FmpDevicePkg/FmpDevicePkg.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/FmpDevicePkg/FmpDevicePkg.uni -------------------------------------------------------------------------------- /FmpDevicePkg/FmpDxe/FmpDxe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/FmpDevicePkg/FmpDxe/FmpDxe.c -------------------------------------------------------------------------------- /FmpDevicePkg/FmpDxe/FmpDxe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/FmpDevicePkg/FmpDxe/FmpDxe.h -------------------------------------------------------------------------------- /FmpDevicePkg/FmpDxe/FmpDxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/FmpDevicePkg/FmpDxe/FmpDxe.inf -------------------------------------------------------------------------------- /FmpDevicePkg/FmpDxe/FmpDxe.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/FmpDevicePkg/FmpDxe/FmpDxe.uni -------------------------------------------------------------------------------- /FmpDevicePkg/FmpDxe/FmpDxeLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/FmpDevicePkg/FmpDxe/FmpDxeLib.inf -------------------------------------------------------------------------------- /IntelFsp2Pkg/FspSecCore/SecFsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/IntelFsp2Pkg/FspSecCore/SecFsp.c -------------------------------------------------------------------------------- /IntelFsp2Pkg/FspSecCore/SecFsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/IntelFsp2Pkg/FspSecCore/SecFsp.h -------------------------------------------------------------------------------- /IntelFsp2Pkg/FspSecCore/SecMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/IntelFsp2Pkg/FspSecCore/SecMain.c -------------------------------------------------------------------------------- /IntelFsp2Pkg/FspSecCore/SecMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/IntelFsp2Pkg/FspSecCore/SecMain.h -------------------------------------------------------------------------------- /IntelFsp2Pkg/Include/FspEas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/IntelFsp2Pkg/Include/FspEas.h -------------------------------------------------------------------------------- /IntelFsp2Pkg/IntelFsp2Pkg.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/IntelFsp2Pkg/IntelFsp2Pkg.dec -------------------------------------------------------------------------------- /IntelFsp2Pkg/IntelFsp2Pkg.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/IntelFsp2Pkg/IntelFsp2Pkg.dsc -------------------------------------------------------------------------------- /IntelFsp2Pkg/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/IntelFsp2Pkg/Readme.md -------------------------------------------------------------------------------- /IntelFsp2Pkg/Tools/GenCfgOpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/IntelFsp2Pkg/Tools/GenCfgOpt.py -------------------------------------------------------------------------------- /IntelFsp2Pkg/Tools/PatchFv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/IntelFsp2Pkg/Tools/PatchFv.py -------------------------------------------------------------------------------- /IntelFsp2Pkg/Tools/SplitFspBin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/IntelFsp2Pkg/Tools/SplitFspBin.py -------------------------------------------------------------------------------- /IntelFsp2WrapperPkg/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/IntelFsp2WrapperPkg/Readme.md -------------------------------------------------------------------------------- /License-History.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/License-History.txt -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/License.txt -------------------------------------------------------------------------------- /Maintainers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/Maintainers.txt -------------------------------------------------------------------------------- /MdeModulePkg/Bus/Sd/SdDxe/SdDxe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdeModulePkg/Bus/Sd/SdDxe/SdDxe.c -------------------------------------------------------------------------------- /MdeModulePkg/Bus/Sd/SdDxe/SdDxe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdeModulePkg/Bus/Sd/SdDxe/SdDxe.h -------------------------------------------------------------------------------- /MdeModulePkg/Core/Dxe/DxeCore.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdeModulePkg/Core/Dxe/DxeCore.uni -------------------------------------------------------------------------------- /MdeModulePkg/Core/Dxe/DxeMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdeModulePkg/Core/Dxe/DxeMain.h -------------------------------------------------------------------------------- /MdeModulePkg/Core/Dxe/DxeMain.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdeModulePkg/Core/Dxe/DxeMain.inf -------------------------------------------------------------------------------- /MdeModulePkg/Core/Dxe/Event/Tpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdeModulePkg/Core/Dxe/Event/Tpl.c -------------------------------------------------------------------------------- /MdeModulePkg/Core/Dxe/FwVol/Ffs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdeModulePkg/Core/Dxe/FwVol/Ffs.c -------------------------------------------------------------------------------- /MdeModulePkg/Core/Dxe/Gcd/Gcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdeModulePkg/Core/Dxe/Gcd/Gcd.c -------------------------------------------------------------------------------- /MdeModulePkg/Core/Dxe/Gcd/Gcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdeModulePkg/Core/Dxe/Gcd/Gcd.h -------------------------------------------------------------------------------- /MdeModulePkg/Core/Dxe/Mem/Imem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdeModulePkg/Core/Dxe/Mem/Imem.h -------------------------------------------------------------------------------- /MdeModulePkg/Core/Dxe/Mem/Page.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdeModulePkg/Core/Dxe/Mem/Page.c -------------------------------------------------------------------------------- /MdeModulePkg/Core/Dxe/Mem/Pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdeModulePkg/Core/Dxe/Mem/Pool.c -------------------------------------------------------------------------------- /MdeModulePkg/Core/Pei/Hob/Hob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdeModulePkg/Core/Pei/Hob/Hob.c -------------------------------------------------------------------------------- /MdeModulePkg/Core/Pei/PeiCore.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdeModulePkg/Core/Pei/PeiCore.uni -------------------------------------------------------------------------------- /MdeModulePkg/Core/Pei/PeiMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdeModulePkg/Core/Pei/PeiMain.h -------------------------------------------------------------------------------- /MdeModulePkg/Core/Pei/PeiMain.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdeModulePkg/Core/Pei/PeiMain.inf -------------------------------------------------------------------------------- /MdeModulePkg/Core/Pei/Ppi/Ppi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdeModulePkg/Core/Pei/Ppi/Ppi.c -------------------------------------------------------------------------------- /MdeModulePkg/Core/PiSmmCore/Smi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdeModulePkg/Core/PiSmmCore/Smi.c -------------------------------------------------------------------------------- /MdeModulePkg/Include/Ppi/Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdeModulePkg/Include/Ppi/Debug.h -------------------------------------------------------------------------------- /MdeModulePkg/Include/Ppi/IoMmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdeModulePkg/Include/Ppi/IoMmu.h -------------------------------------------------------------------------------- /MdeModulePkg/Include/Ppi/UsbIo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdeModulePkg/Include/Ppi/UsbIo.h -------------------------------------------------------------------------------- /MdeModulePkg/Logo/Logo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdeModulePkg/Logo/Logo.bmp -------------------------------------------------------------------------------- /MdeModulePkg/Logo/Logo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdeModulePkg/Logo/Logo.c -------------------------------------------------------------------------------- /MdeModulePkg/Logo/Logo.idf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdeModulePkg/Logo/Logo.idf -------------------------------------------------------------------------------- /MdeModulePkg/Logo/Logo.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdeModulePkg/Logo/Logo.inf -------------------------------------------------------------------------------- /MdeModulePkg/Logo/Logo.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdeModulePkg/Logo/Logo.uni -------------------------------------------------------------------------------- /MdeModulePkg/Logo/LogoDxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdeModulePkg/Logo/LogoDxe.inf -------------------------------------------------------------------------------- /MdeModulePkg/Logo/LogoDxe.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdeModulePkg/Logo/LogoDxe.uni -------------------------------------------------------------------------------- /MdeModulePkg/Logo/LogoExtra.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdeModulePkg/Logo/LogoExtra.uni -------------------------------------------------------------------------------- /MdeModulePkg/MdeModulePkg.ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdeModulePkg/MdeModulePkg.ci.yaml -------------------------------------------------------------------------------- /MdeModulePkg/MdeModulePkg.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdeModulePkg/MdeModulePkg.dec -------------------------------------------------------------------------------- /MdeModulePkg/MdeModulePkg.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdeModulePkg/MdeModulePkg.dsc -------------------------------------------------------------------------------- /MdeModulePkg/MdeModulePkg.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdeModulePkg/MdeModulePkg.uni -------------------------------------------------------------------------------- /MdePkg/Include/Base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Base.h -------------------------------------------------------------------------------- /MdePkg/Include/Guid/Acpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Guid/Acpi.h -------------------------------------------------------------------------------- /MdePkg/Include/Guid/Apriori.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Guid/Apriori.h -------------------------------------------------------------------------------- /MdePkg/Include/Guid/Btt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Guid/Btt.h -------------------------------------------------------------------------------- /MdePkg/Include/Guid/Cper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Guid/Cper.h -------------------------------------------------------------------------------- /MdePkg/Include/Guid/DxeServices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Guid/DxeServices.h -------------------------------------------------------------------------------- /MdePkg/Include/Guid/EventGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Guid/EventGroup.h -------------------------------------------------------------------------------- /MdePkg/Include/Guid/FileInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Guid/FileInfo.h -------------------------------------------------------------------------------- /MdePkg/Include/Guid/FmpCapsule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Guid/FmpCapsule.h -------------------------------------------------------------------------------- /MdePkg/Include/Guid/Gpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Guid/Gpt.h -------------------------------------------------------------------------------- /MdePkg/Include/Guid/HobList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Guid/HobList.h -------------------------------------------------------------------------------- /MdePkg/Include/Guid/JsonCapsule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Guid/JsonCapsule.h -------------------------------------------------------------------------------- /MdePkg/Include/Guid/Mps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Guid/Mps.h -------------------------------------------------------------------------------- /MdePkg/Include/Guid/PcAnsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Guid/PcAnsi.h -------------------------------------------------------------------------------- /MdePkg/Include/Guid/SmBios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Guid/SmBios.h -------------------------------------------------------------------------------- /MdePkg/Include/Ia32/Nasm.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Ia32/Nasm.inc -------------------------------------------------------------------------------- /MdePkg/Include/Library/BaseLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Library/BaseLib.h -------------------------------------------------------------------------------- /MdePkg/Include/Library/CpuLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Library/CpuLib.h -------------------------------------------------------------------------------- /MdePkg/Include/Library/DebugLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Library/DebugLib.h -------------------------------------------------------------------------------- /MdePkg/Include/Library/HobLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Library/HobLib.h -------------------------------------------------------------------------------- /MdePkg/Include/Library/HstiLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Library/HstiLib.h -------------------------------------------------------------------------------- /MdePkg/Include/Library/IoLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Library/IoLib.h -------------------------------------------------------------------------------- /MdePkg/Include/Library/PcdLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Library/PcdLib.h -------------------------------------------------------------------------------- /MdePkg/Include/Library/PciLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Library/PciLib.h -------------------------------------------------------------------------------- /MdePkg/Include/Library/PrintLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Library/PrintLib.h -------------------------------------------------------------------------------- /MdePkg/Include/Library/RngLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Library/RngLib.h -------------------------------------------------------------------------------- /MdePkg/Include/Library/S3IoLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Library/S3IoLib.h -------------------------------------------------------------------------------- /MdePkg/Include/Library/S3PciLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Library/S3PciLib.h -------------------------------------------------------------------------------- /MdePkg/Include/Library/SmbusLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Library/SmbusLib.h -------------------------------------------------------------------------------- /MdePkg/Include/Library/SmmIoLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Library/SmmIoLib.h -------------------------------------------------------------------------------- /MdePkg/Include/Library/SmmLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Library/SmmLib.h -------------------------------------------------------------------------------- /MdePkg/Include/Library/TimerLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Library/TimerLib.h -------------------------------------------------------------------------------- /MdePkg/Include/Library/UefiLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Library/UefiLib.h -------------------------------------------------------------------------------- /MdePkg/Include/Pi/PiBootMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Pi/PiBootMode.h -------------------------------------------------------------------------------- /MdePkg/Include/Pi/PiDependency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Pi/PiDependency.h -------------------------------------------------------------------------------- /MdePkg/Include/Pi/PiDxeCis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Pi/PiDxeCis.h -------------------------------------------------------------------------------- /MdePkg/Include/Pi/PiHob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Pi/PiHob.h -------------------------------------------------------------------------------- /MdePkg/Include/Pi/PiI2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Pi/PiI2c.h -------------------------------------------------------------------------------- /MdePkg/Include/Pi/PiMmCis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Pi/PiMmCis.h -------------------------------------------------------------------------------- /MdePkg/Include/Pi/PiMultiPhase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Pi/PiMultiPhase.h -------------------------------------------------------------------------------- /MdePkg/Include/Pi/PiPeiCis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Pi/PiPeiCis.h -------------------------------------------------------------------------------- /MdePkg/Include/Pi/PiSmmCis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Pi/PiSmmCis.h -------------------------------------------------------------------------------- /MdePkg/Include/Pi/PiStatusCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Pi/PiStatusCode.h -------------------------------------------------------------------------------- /MdePkg/Include/PiDxe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/PiDxe.h -------------------------------------------------------------------------------- /MdePkg/Include/PiMm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/PiMm.h -------------------------------------------------------------------------------- /MdePkg/Include/PiPei.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/PiPei.h -------------------------------------------------------------------------------- /MdePkg/Include/PiSmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/PiSmm.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/BlockIo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Ppi/BlockIo.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/BlockIo2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Ppi/BlockIo2.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/Capsule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Ppi/Capsule.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/CpuIo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Ppi/CpuIo.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/Decompress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Ppi/Decompress.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/DxeIpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Ppi/DxeIpl.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/Graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Ppi/Graphics.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/I2cMaster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Ppi/I2cMaster.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/IsaHc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Ppi/IsaHc.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/LoadFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Ppi/LoadFile.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/LoadImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Ppi/LoadImage.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/MmAccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Ppi/MmAccess.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/MmControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Ppi/MmControl.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/MpServices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Ppi/MpServices.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/Pcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Ppi/Pcd.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/PcdInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Ppi/PcdInfo.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/PciCfg2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Ppi/PciCfg2.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/PiPcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Ppi/PiPcd.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/PiPcdInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Ppi/PiPcdInfo.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/Reset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Ppi/Reset.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/Reset2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Ppi/Reset2.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/S3Resume2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Ppi/S3Resume2.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/SecHobData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Ppi/SecHobData.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/Security2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Ppi/Security2.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/Smbus2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Ppi/Smbus2.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/Stall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Ppi/Stall.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/StatusCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Ppi/StatusCode.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/SuperIo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Ppi/SuperIo.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/Arp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Protocol/Arp.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/Bds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Protocol/Bds.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/Bis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Protocol/Bis.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/BlockIo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Protocol/BlockIo.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/Capsule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Protocol/Capsule.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/Cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Protocol/Cpu.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/CpuIo2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Protocol/CpuIo2.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/Dhcp4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Protocol/Dhcp4.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/Dhcp6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Protocol/Dhcp6.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/DiskIo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Protocol/DiskIo.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/DiskIo2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Protocol/DiskIo2.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/Dns4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Protocol/Dns4.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/Dns6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Protocol/Dns6.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/Eap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Protocol/Eap.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/Ebc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Protocol/Ebc.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/Ftp4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Protocol/Ftp4.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/Hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Protocol/Hash.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/Hash2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Protocol/Hash2.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/HiiFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Protocol/HiiFont.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/Http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Protocol/Http.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/I2cHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Protocol/I2cHost.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/I2cIo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Protocol/I2cIo.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/Ip4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Protocol/Ip4.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/Ip6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Protocol/Ip6.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/IpSec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Protocol/IpSec.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/IsaHc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Protocol/IsaHc.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/Kms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Protocol/Kms.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/MmBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Protocol/MmBase.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/MmCpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Protocol/MmCpu.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/MmCpuIo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Protocol/MmCpuIo.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/MmMp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Protocol/MmMp.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/Mtftp4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Protocol/Mtftp4.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/Mtftp6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Protocol/Mtftp6.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/Pcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Protocol/Pcd.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/PcdInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Protocol/PcdInfo.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/PciIo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Protocol/PciIo.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/PiPcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Protocol/PiPcd.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/RamDisk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Protocol/RamDisk.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/Reset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Protocol/Reset.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/Rest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Protocol/Rest.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/RestEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Protocol/RestEx.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/Rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Protocol/Rng.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/Runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Protocol/Runtime.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/ScsiIo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Protocol/ScsiIo.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/Shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Protocol/Shell.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/Smbios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Protocol/Smbios.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/SmbusHc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Protocol/SmbusHc.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/SmmCpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Protocol/SmmCpu.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/SpiHc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Protocol/SpiHc.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/SpiIo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Protocol/SpiIo.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/SuperIo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Protocol/SuperIo.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/TapeIo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Protocol/TapeIo.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/Tcp4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Protocol/Tcp4.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/Tcp6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Protocol/Tcp6.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Protocol/Timer.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/Tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Protocol/Tls.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/Udp4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Protocol/Udp4.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/Udp6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Protocol/Udp6.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/UgaDraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Protocol/UgaDraw.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/UgaIo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Protocol/UgaIo.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/UsbIo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Protocol/UsbIo.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/WiFi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Protocol/WiFi.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/WiFi2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Protocol/WiFi2.h -------------------------------------------------------------------------------- /MdePkg/Include/Register/Amd/Msr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Register/Amd/Msr.h -------------------------------------------------------------------------------- /MdePkg/Include/Uefi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Uefi.h -------------------------------------------------------------------------------- /MdePkg/Include/Uefi/UefiGpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Uefi/UefiGpt.h -------------------------------------------------------------------------------- /MdePkg/Include/Uefi/UefiPxe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Uefi/UefiPxe.h -------------------------------------------------------------------------------- /MdePkg/Include/Uefi/UefiSpec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/Uefi/UefiSpec.h -------------------------------------------------------------------------------- /MdePkg/Include/X64/Nasm.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Include/X64/Nasm.inc -------------------------------------------------------------------------------- /MdePkg/Library/BaseLib/BitField.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Library/BaseLib/BitField.c -------------------------------------------------------------------------------- /MdePkg/Library/BaseLib/CheckSum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Library/BaseLib/CheckSum.c -------------------------------------------------------------------------------- /MdePkg/Library/BaseLib/Cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Library/BaseLib/Cpu.c -------------------------------------------------------------------------------- /MdePkg/Library/BaseLib/LRotU32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Library/BaseLib/LRotU32.c -------------------------------------------------------------------------------- /MdePkg/Library/BaseLib/LRotU64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Library/BaseLib/LRotU64.c -------------------------------------------------------------------------------- /MdePkg/Library/BaseLib/LongJump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Library/BaseLib/LongJump.c -------------------------------------------------------------------------------- /MdePkg/Library/BaseLib/Math64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Library/BaseLib/Math64.c -------------------------------------------------------------------------------- /MdePkg/Library/BaseLib/RRotU32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Library/BaseLib/RRotU32.c -------------------------------------------------------------------------------- /MdePkg/Library/BaseLib/RRotU64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Library/BaseLib/RRotU64.c -------------------------------------------------------------------------------- /MdePkg/Library/BaseLib/SetJump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Library/BaseLib/SetJump.c -------------------------------------------------------------------------------- /MdePkg/Library/BaseLib/String.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Library/BaseLib/String.c -------------------------------------------------------------------------------- /MdePkg/Library/BaseLib/X86Msr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Library/BaseLib/X86Msr.c -------------------------------------------------------------------------------- /MdePkg/Library/BaseLib/X86Thunk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Library/BaseLib/X86Thunk.c -------------------------------------------------------------------------------- /MdePkg/Library/DxeHobLib/HobLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Library/DxeHobLib/HobLib.c -------------------------------------------------------------------------------- /MdePkg/Library/PeiHobLib/HobLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Library/PeiHobLib/HobLib.c -------------------------------------------------------------------------------- /MdePkg/Library/UefiLib/Acpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Library/UefiLib/Acpi.c -------------------------------------------------------------------------------- /MdePkg/Library/UefiLib/Console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Library/UefiLib/Console.c -------------------------------------------------------------------------------- /MdePkg/Library/UefiLib/UefiLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Library/UefiLib/UefiLib.c -------------------------------------------------------------------------------- /MdePkg/Library/UefiUsbLib/Hid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Library/UefiUsbLib/Hid.c -------------------------------------------------------------------------------- /MdePkg/MdePkg.ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/MdePkg.ci.yaml -------------------------------------------------------------------------------- /MdePkg/MdePkg.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/MdePkg.dec -------------------------------------------------------------------------------- /MdePkg/MdePkg.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/MdePkg.dsc -------------------------------------------------------------------------------- /MdePkg/MdePkg.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/MdePkg.uni -------------------------------------------------------------------------------- /MdePkg/MdePkgExtra.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/MdePkgExtra.uni -------------------------------------------------------------------------------- /MdePkg/Test/MdePkgHostTest.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/MdePkg/Test/MdePkgHostTest.dsc -------------------------------------------------------------------------------- /NetworkPkg/ArpDxe/ArpDriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/ArpDxe/ArpDriver.c -------------------------------------------------------------------------------- /NetworkPkg/ArpDxe/ArpDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/ArpDxe/ArpDriver.h -------------------------------------------------------------------------------- /NetworkPkg/ArpDxe/ArpDxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/ArpDxe/ArpDxe.inf -------------------------------------------------------------------------------- /NetworkPkg/ArpDxe/ArpDxe.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/ArpDxe/ArpDxe.uni -------------------------------------------------------------------------------- /NetworkPkg/ArpDxe/ArpDxeExtra.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/ArpDxe/ArpDxeExtra.uni -------------------------------------------------------------------------------- /NetworkPkg/ArpDxe/ArpImpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/ArpDxe/ArpImpl.c -------------------------------------------------------------------------------- /NetworkPkg/ArpDxe/ArpImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/ArpDxe/ArpImpl.h -------------------------------------------------------------------------------- /NetworkPkg/ArpDxe/ArpMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/ArpDxe/ArpMain.c -------------------------------------------------------------------------------- /NetworkPkg/ArpDxe/ComponentName.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/ArpDxe/ComponentName.c -------------------------------------------------------------------------------- /NetworkPkg/Dhcp4Dxe/Dhcp4Driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Dhcp4Dxe/Dhcp4Driver.c -------------------------------------------------------------------------------- /NetworkPkg/Dhcp4Dxe/Dhcp4Driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Dhcp4Dxe/Dhcp4Driver.h -------------------------------------------------------------------------------- /NetworkPkg/Dhcp4Dxe/Dhcp4Dxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Dhcp4Dxe/Dhcp4Dxe.inf -------------------------------------------------------------------------------- /NetworkPkg/Dhcp4Dxe/Dhcp4Dxe.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Dhcp4Dxe/Dhcp4Dxe.uni -------------------------------------------------------------------------------- /NetworkPkg/Dhcp4Dxe/Dhcp4Impl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Dhcp4Dxe/Dhcp4Impl.c -------------------------------------------------------------------------------- /NetworkPkg/Dhcp4Dxe/Dhcp4Impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Dhcp4Dxe/Dhcp4Impl.h -------------------------------------------------------------------------------- /NetworkPkg/Dhcp4Dxe/Dhcp4Io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Dhcp4Dxe/Dhcp4Io.c -------------------------------------------------------------------------------- /NetworkPkg/Dhcp4Dxe/Dhcp4Io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Dhcp4Dxe/Dhcp4Io.h -------------------------------------------------------------------------------- /NetworkPkg/Dhcp4Dxe/Dhcp4Option.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Dhcp4Dxe/Dhcp4Option.c -------------------------------------------------------------------------------- /NetworkPkg/Dhcp4Dxe/Dhcp4Option.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Dhcp4Dxe/Dhcp4Option.h -------------------------------------------------------------------------------- /NetworkPkg/Dhcp6Dxe/Dhcp6Driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Dhcp6Dxe/Dhcp6Driver.c -------------------------------------------------------------------------------- /NetworkPkg/Dhcp6Dxe/Dhcp6Driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Dhcp6Dxe/Dhcp6Driver.h -------------------------------------------------------------------------------- /NetworkPkg/Dhcp6Dxe/Dhcp6Dxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Dhcp6Dxe/Dhcp6Dxe.inf -------------------------------------------------------------------------------- /NetworkPkg/Dhcp6Dxe/Dhcp6Dxe.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Dhcp6Dxe/Dhcp6Dxe.uni -------------------------------------------------------------------------------- /NetworkPkg/Dhcp6Dxe/Dhcp6Impl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Dhcp6Dxe/Dhcp6Impl.c -------------------------------------------------------------------------------- /NetworkPkg/Dhcp6Dxe/Dhcp6Impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Dhcp6Dxe/Dhcp6Impl.h -------------------------------------------------------------------------------- /NetworkPkg/Dhcp6Dxe/Dhcp6Io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Dhcp6Dxe/Dhcp6Io.c -------------------------------------------------------------------------------- /NetworkPkg/Dhcp6Dxe/Dhcp6Io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Dhcp6Dxe/Dhcp6Io.h -------------------------------------------------------------------------------- /NetworkPkg/DnsDxe/ComponentName.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/DnsDxe/ComponentName.c -------------------------------------------------------------------------------- /NetworkPkg/DnsDxe/DnsDhcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/DnsDxe/DnsDhcp.c -------------------------------------------------------------------------------- /NetworkPkg/DnsDxe/DnsDhcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/DnsDxe/DnsDhcp.h -------------------------------------------------------------------------------- /NetworkPkg/DnsDxe/DnsDriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/DnsDxe/DnsDriver.c -------------------------------------------------------------------------------- /NetworkPkg/DnsDxe/DnsDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/DnsDxe/DnsDriver.h -------------------------------------------------------------------------------- /NetworkPkg/DnsDxe/DnsDxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/DnsDxe/DnsDxe.inf -------------------------------------------------------------------------------- /NetworkPkg/DnsDxe/DnsDxe.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/DnsDxe/DnsDxe.uni -------------------------------------------------------------------------------- /NetworkPkg/DnsDxe/DnsDxeExtra.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/DnsDxe/DnsDxeExtra.uni -------------------------------------------------------------------------------- /NetworkPkg/DnsDxe/DnsImpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/DnsDxe/DnsImpl.c -------------------------------------------------------------------------------- /NetworkPkg/DnsDxe/DnsImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/DnsDxe/DnsImpl.h -------------------------------------------------------------------------------- /NetworkPkg/DnsDxe/DnsProtocol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/DnsDxe/DnsProtocol.c -------------------------------------------------------------------------------- /NetworkPkg/DpcDxe/Dpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/DpcDxe/Dpc.c -------------------------------------------------------------------------------- /NetworkPkg/DpcDxe/Dpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/DpcDxe/Dpc.h -------------------------------------------------------------------------------- /NetworkPkg/DpcDxe/DpcDxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/DpcDxe/DpcDxe.inf -------------------------------------------------------------------------------- /NetworkPkg/DpcDxe/DpcDxe.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/DpcDxe/DpcDxe.uni -------------------------------------------------------------------------------- /NetworkPkg/DpcDxe/DpcDxeExtra.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/DpcDxe/DpcDxeExtra.uni -------------------------------------------------------------------------------- /NetworkPkg/HttpDxe/HttpDns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/HttpDxe/HttpDns.c -------------------------------------------------------------------------------- /NetworkPkg/HttpDxe/HttpDns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/HttpDxe/HttpDns.h -------------------------------------------------------------------------------- /NetworkPkg/HttpDxe/HttpDriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/HttpDxe/HttpDriver.c -------------------------------------------------------------------------------- /NetworkPkg/HttpDxe/HttpDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/HttpDxe/HttpDriver.h -------------------------------------------------------------------------------- /NetworkPkg/HttpDxe/HttpDxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/HttpDxe/HttpDxe.inf -------------------------------------------------------------------------------- /NetworkPkg/HttpDxe/HttpDxe.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/HttpDxe/HttpDxe.uni -------------------------------------------------------------------------------- /NetworkPkg/HttpDxe/HttpImpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/HttpDxe/HttpImpl.c -------------------------------------------------------------------------------- /NetworkPkg/HttpDxe/HttpImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/HttpDxe/HttpImpl.h -------------------------------------------------------------------------------- /NetworkPkg/HttpDxe/HttpProto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/HttpDxe/HttpProto.c -------------------------------------------------------------------------------- /NetworkPkg/HttpDxe/HttpProto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/HttpDxe/HttpProto.h -------------------------------------------------------------------------------- /NetworkPkg/HttpDxe/HttpsSupport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/HttpDxe/HttpsSupport.c -------------------------------------------------------------------------------- /NetworkPkg/HttpDxe/HttpsSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/HttpDxe/HttpsSupport.h -------------------------------------------------------------------------------- /NetworkPkg/IScsiDxe/IScsiCHAP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/IScsiDxe/IScsiCHAP.c -------------------------------------------------------------------------------- /NetworkPkg/IScsiDxe/IScsiCHAP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/IScsiDxe/IScsiCHAP.h -------------------------------------------------------------------------------- /NetworkPkg/IScsiDxe/IScsiConfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/IScsiDxe/IScsiConfig.c -------------------------------------------------------------------------------- /NetworkPkg/IScsiDxe/IScsiConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/IScsiDxe/IScsiConfig.h -------------------------------------------------------------------------------- /NetworkPkg/IScsiDxe/IScsiDhcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/IScsiDxe/IScsiDhcp.c -------------------------------------------------------------------------------- /NetworkPkg/IScsiDxe/IScsiDhcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/IScsiDxe/IScsiDhcp.h -------------------------------------------------------------------------------- /NetworkPkg/IScsiDxe/IScsiDhcp6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/IScsiDxe/IScsiDhcp6.c -------------------------------------------------------------------------------- /NetworkPkg/IScsiDxe/IScsiDhcp6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/IScsiDxe/IScsiDhcp6.h -------------------------------------------------------------------------------- /NetworkPkg/IScsiDxe/IScsiDns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/IScsiDxe/IScsiDns.c -------------------------------------------------------------------------------- /NetworkPkg/IScsiDxe/IScsiDns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/IScsiDxe/IScsiDns.h -------------------------------------------------------------------------------- /NetworkPkg/IScsiDxe/IScsiDriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/IScsiDxe/IScsiDriver.c -------------------------------------------------------------------------------- /NetworkPkg/IScsiDxe/IScsiDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/IScsiDxe/IScsiDriver.h -------------------------------------------------------------------------------- /NetworkPkg/IScsiDxe/IScsiDxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/IScsiDxe/IScsiDxe.inf -------------------------------------------------------------------------------- /NetworkPkg/IScsiDxe/IScsiDxe.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/IScsiDxe/IScsiDxe.uni -------------------------------------------------------------------------------- /NetworkPkg/IScsiDxe/IScsiIbft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/IScsiDxe/IScsiIbft.c -------------------------------------------------------------------------------- /NetworkPkg/IScsiDxe/IScsiIbft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/IScsiDxe/IScsiIbft.h -------------------------------------------------------------------------------- /NetworkPkg/IScsiDxe/IScsiImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/IScsiDxe/IScsiImpl.h -------------------------------------------------------------------------------- /NetworkPkg/IScsiDxe/IScsiMisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/IScsiDxe/IScsiMisc.c -------------------------------------------------------------------------------- /NetworkPkg/IScsiDxe/IScsiMisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/IScsiDxe/IScsiMisc.h -------------------------------------------------------------------------------- /NetworkPkg/IScsiDxe/IScsiProto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/IScsiDxe/IScsiProto.c -------------------------------------------------------------------------------- /NetworkPkg/IScsiDxe/IScsiProto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/IScsiDxe/IScsiProto.h -------------------------------------------------------------------------------- /NetworkPkg/Include/Protocol/Dpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Include/Protocol/Dpc.h -------------------------------------------------------------------------------- /NetworkPkg/Ip4Dxe/ComponentName.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Ip4Dxe/ComponentName.c -------------------------------------------------------------------------------- /NetworkPkg/Ip4Dxe/Ip4Common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Ip4Dxe/Ip4Common.c -------------------------------------------------------------------------------- /NetworkPkg/Ip4Dxe/Ip4Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Ip4Dxe/Ip4Common.h -------------------------------------------------------------------------------- /NetworkPkg/Ip4Dxe/Ip4Config2.vfr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Ip4Dxe/Ip4Config2.vfr -------------------------------------------------------------------------------- /NetworkPkg/Ip4Dxe/Ip4Config2Nv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Ip4Dxe/Ip4Config2Nv.c -------------------------------------------------------------------------------- /NetworkPkg/Ip4Dxe/Ip4Config2Nv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Ip4Dxe/Ip4Config2Nv.h -------------------------------------------------------------------------------- /NetworkPkg/Ip4Dxe/Ip4Driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Ip4Dxe/Ip4Driver.c -------------------------------------------------------------------------------- /NetworkPkg/Ip4Dxe/Ip4Driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Ip4Dxe/Ip4Driver.h -------------------------------------------------------------------------------- /NetworkPkg/Ip4Dxe/Ip4Dxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Ip4Dxe/Ip4Dxe.inf -------------------------------------------------------------------------------- /NetworkPkg/Ip4Dxe/Ip4Dxe.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Ip4Dxe/Ip4Dxe.uni -------------------------------------------------------------------------------- /NetworkPkg/Ip4Dxe/Ip4DxeExtra.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Ip4Dxe/Ip4DxeExtra.uni -------------------------------------------------------------------------------- /NetworkPkg/Ip4Dxe/Ip4Icmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Ip4Dxe/Ip4Icmp.c -------------------------------------------------------------------------------- /NetworkPkg/Ip4Dxe/Ip4Icmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Ip4Dxe/Ip4Icmp.h -------------------------------------------------------------------------------- /NetworkPkg/Ip4Dxe/Ip4If.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Ip4Dxe/Ip4If.c -------------------------------------------------------------------------------- /NetworkPkg/Ip4Dxe/Ip4If.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Ip4Dxe/Ip4If.h -------------------------------------------------------------------------------- /NetworkPkg/Ip4Dxe/Ip4Igmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Ip4Dxe/Ip4Igmp.c -------------------------------------------------------------------------------- /NetworkPkg/Ip4Dxe/Ip4Igmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Ip4Dxe/Ip4Igmp.h -------------------------------------------------------------------------------- /NetworkPkg/Ip4Dxe/Ip4Impl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Ip4Dxe/Ip4Impl.c -------------------------------------------------------------------------------- /NetworkPkg/Ip4Dxe/Ip4Impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Ip4Dxe/Ip4Impl.h -------------------------------------------------------------------------------- /NetworkPkg/Ip4Dxe/Ip4Input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Ip4Dxe/Ip4Input.c -------------------------------------------------------------------------------- /NetworkPkg/Ip4Dxe/Ip4Input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Ip4Dxe/Ip4Input.h -------------------------------------------------------------------------------- /NetworkPkg/Ip4Dxe/Ip4NvData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Ip4Dxe/Ip4NvData.h -------------------------------------------------------------------------------- /NetworkPkg/Ip4Dxe/Ip4Option.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Ip4Dxe/Ip4Option.c -------------------------------------------------------------------------------- /NetworkPkg/Ip4Dxe/Ip4Option.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Ip4Dxe/Ip4Option.h -------------------------------------------------------------------------------- /NetworkPkg/Ip4Dxe/Ip4Output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Ip4Dxe/Ip4Output.c -------------------------------------------------------------------------------- /NetworkPkg/Ip4Dxe/Ip4Output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Ip4Dxe/Ip4Output.h -------------------------------------------------------------------------------- /NetworkPkg/Ip4Dxe/Ip4Route.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Ip4Dxe/Ip4Route.c -------------------------------------------------------------------------------- /NetworkPkg/Ip4Dxe/Ip4Route.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Ip4Dxe/Ip4Route.h -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/ComponentName.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Ip6Dxe/ComponentName.c -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6Common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Ip6Dxe/Ip6Common.c -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Ip6Dxe/Ip6Common.h -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6Config.vfr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Ip6Dxe/Ip6Config.vfr -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6ConfigImpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Ip6Dxe/Ip6ConfigImpl.c -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6ConfigImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Ip6Dxe/Ip6ConfigImpl.h -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6ConfigNv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Ip6Dxe/Ip6ConfigNv.c -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6ConfigNv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Ip6Dxe/Ip6ConfigNv.h -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6Driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Ip6Dxe/Ip6Driver.c -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6Driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Ip6Dxe/Ip6Driver.h -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6Dxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Ip6Dxe/Ip6Dxe.inf -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6Dxe.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Ip6Dxe/Ip6Dxe.uni -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6DxeExtra.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Ip6Dxe/Ip6DxeExtra.uni -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6Icmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Ip6Dxe/Ip6Icmp.c -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6Icmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Ip6Dxe/Ip6Icmp.h -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6If.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Ip6Dxe/Ip6If.c -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6If.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Ip6Dxe/Ip6If.h -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6Impl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Ip6Dxe/Ip6Impl.c -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6Impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Ip6Dxe/Ip6Impl.h -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6Input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Ip6Dxe/Ip6Input.c -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6Input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Ip6Dxe/Ip6Input.h -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6Mld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Ip6Dxe/Ip6Mld.c -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6Mld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Ip6Dxe/Ip6Mld.h -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6Nd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Ip6Dxe/Ip6Nd.c -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6Nd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Ip6Dxe/Ip6Nd.h -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6NvData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Ip6Dxe/Ip6NvData.h -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6Option.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Ip6Dxe/Ip6Option.c -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6Option.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Ip6Dxe/Ip6Option.h -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6Output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Ip6Dxe/Ip6Output.c -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6Output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Ip6Dxe/Ip6Output.h -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6Route.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Ip6Dxe/Ip6Route.c -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6Route.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Ip6Dxe/Ip6Route.h -------------------------------------------------------------------------------- /NetworkPkg/MnpDxe/ComponentName.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/MnpDxe/ComponentName.c -------------------------------------------------------------------------------- /NetworkPkg/MnpDxe/ComponentName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/MnpDxe/ComponentName.h -------------------------------------------------------------------------------- /NetworkPkg/MnpDxe/MnpConfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/MnpDxe/MnpConfig.c -------------------------------------------------------------------------------- /NetworkPkg/MnpDxe/MnpDriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/MnpDxe/MnpDriver.c -------------------------------------------------------------------------------- /NetworkPkg/MnpDxe/MnpDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/MnpDxe/MnpDriver.h -------------------------------------------------------------------------------- /NetworkPkg/MnpDxe/MnpDxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/MnpDxe/MnpDxe.inf -------------------------------------------------------------------------------- /NetworkPkg/MnpDxe/MnpDxe.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/MnpDxe/MnpDxe.uni -------------------------------------------------------------------------------- /NetworkPkg/MnpDxe/MnpDxeExtra.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/MnpDxe/MnpDxeExtra.uni -------------------------------------------------------------------------------- /NetworkPkg/MnpDxe/MnpImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/MnpDxe/MnpImpl.h -------------------------------------------------------------------------------- /NetworkPkg/MnpDxe/MnpIo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/MnpDxe/MnpIo.c -------------------------------------------------------------------------------- /NetworkPkg/MnpDxe/MnpMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/MnpDxe/MnpMain.c -------------------------------------------------------------------------------- /NetworkPkg/MnpDxe/MnpVlan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/MnpDxe/MnpVlan.c -------------------------------------------------------------------------------- /NetworkPkg/MnpDxe/MnpVlan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/MnpDxe/MnpVlan.h -------------------------------------------------------------------------------- /NetworkPkg/Mtftp4Dxe/Mtftp4Impl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Mtftp4Dxe/Mtftp4Impl.c -------------------------------------------------------------------------------- /NetworkPkg/Mtftp4Dxe/Mtftp4Impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Mtftp4Dxe/Mtftp4Impl.h -------------------------------------------------------------------------------- /NetworkPkg/Mtftp4Dxe/Mtftp4Rrq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Mtftp4Dxe/Mtftp4Rrq.c -------------------------------------------------------------------------------- /NetworkPkg/Mtftp4Dxe/Mtftp4Wrq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Mtftp4Dxe/Mtftp4Wrq.c -------------------------------------------------------------------------------- /NetworkPkg/Mtftp6Dxe/Mtftp6Impl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Mtftp6Dxe/Mtftp6Impl.c -------------------------------------------------------------------------------- /NetworkPkg/Mtftp6Dxe/Mtftp6Impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Mtftp6Dxe/Mtftp6Impl.h -------------------------------------------------------------------------------- /NetworkPkg/Mtftp6Dxe/Mtftp6Rrq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Mtftp6Dxe/Mtftp6Rrq.c -------------------------------------------------------------------------------- /NetworkPkg/Mtftp6Dxe/Mtftp6Wrq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Mtftp6Dxe/Mtftp6Wrq.c -------------------------------------------------------------------------------- /NetworkPkg/Network.dsc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Network.dsc.inc -------------------------------------------------------------------------------- /NetworkPkg/Network.fdf.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Network.fdf.inc -------------------------------------------------------------------------------- /NetworkPkg/NetworkDefines.dsc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/NetworkDefines.dsc.inc -------------------------------------------------------------------------------- /NetworkPkg/NetworkLibs.dsc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/NetworkLibs.dsc.inc -------------------------------------------------------------------------------- /NetworkPkg/NetworkPcds.dsc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/NetworkPcds.dsc.inc -------------------------------------------------------------------------------- /NetworkPkg/NetworkPkg.ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/NetworkPkg.ci.yaml -------------------------------------------------------------------------------- /NetworkPkg/NetworkPkg.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/NetworkPkg.dec -------------------------------------------------------------------------------- /NetworkPkg/NetworkPkg.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/NetworkPkg.dsc -------------------------------------------------------------------------------- /NetworkPkg/NetworkPkg.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/NetworkPkg.uni -------------------------------------------------------------------------------- /NetworkPkg/NetworkPkgExtra.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/NetworkPkgExtra.uni -------------------------------------------------------------------------------- /NetworkPkg/SnpDxe/Callback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/SnpDxe/Callback.c -------------------------------------------------------------------------------- /NetworkPkg/SnpDxe/ComponentName.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/SnpDxe/ComponentName.c -------------------------------------------------------------------------------- /NetworkPkg/SnpDxe/Get_status.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/SnpDxe/Get_status.c -------------------------------------------------------------------------------- /NetworkPkg/SnpDxe/Initialize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/SnpDxe/Initialize.c -------------------------------------------------------------------------------- /NetworkPkg/SnpDxe/Nvdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/SnpDxe/Nvdata.c -------------------------------------------------------------------------------- /NetworkPkg/SnpDxe/Receive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/SnpDxe/Receive.c -------------------------------------------------------------------------------- /NetworkPkg/SnpDxe/Reset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/SnpDxe/Reset.c -------------------------------------------------------------------------------- /NetworkPkg/SnpDxe/Shutdown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/SnpDxe/Shutdown.c -------------------------------------------------------------------------------- /NetworkPkg/SnpDxe/Snp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/SnpDxe/Snp.c -------------------------------------------------------------------------------- /NetworkPkg/SnpDxe/Snp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/SnpDxe/Snp.h -------------------------------------------------------------------------------- /NetworkPkg/SnpDxe/SnpDxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/SnpDxe/SnpDxe.inf -------------------------------------------------------------------------------- /NetworkPkg/SnpDxe/SnpDxe.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/SnpDxe/SnpDxe.uni -------------------------------------------------------------------------------- /NetworkPkg/SnpDxe/SnpDxeExtra.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/SnpDxe/SnpDxeExtra.uni -------------------------------------------------------------------------------- /NetworkPkg/SnpDxe/Start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/SnpDxe/Start.c -------------------------------------------------------------------------------- /NetworkPkg/SnpDxe/Statistics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/SnpDxe/Statistics.c -------------------------------------------------------------------------------- /NetworkPkg/SnpDxe/Stop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/SnpDxe/Stop.c -------------------------------------------------------------------------------- /NetworkPkg/SnpDxe/Transmit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/SnpDxe/Transmit.c -------------------------------------------------------------------------------- /NetworkPkg/SnpDxe/WaitForPacket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/SnpDxe/WaitForPacket.c -------------------------------------------------------------------------------- /NetworkPkg/TcpDxe/ComponentName.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/TcpDxe/ComponentName.c -------------------------------------------------------------------------------- /NetworkPkg/TcpDxe/SockImpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/TcpDxe/SockImpl.c -------------------------------------------------------------------------------- /NetworkPkg/TcpDxe/SockImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/TcpDxe/SockImpl.h -------------------------------------------------------------------------------- /NetworkPkg/TcpDxe/SockInterface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/TcpDxe/SockInterface.c -------------------------------------------------------------------------------- /NetworkPkg/TcpDxe/Socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/TcpDxe/Socket.h -------------------------------------------------------------------------------- /NetworkPkg/TcpDxe/TcpDriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/TcpDxe/TcpDriver.c -------------------------------------------------------------------------------- /NetworkPkg/TcpDxe/TcpDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/TcpDxe/TcpDriver.h -------------------------------------------------------------------------------- /NetworkPkg/TcpDxe/TcpDxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/TcpDxe/TcpDxe.inf -------------------------------------------------------------------------------- /NetworkPkg/TcpDxe/TcpDxe.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/TcpDxe/TcpDxe.uni -------------------------------------------------------------------------------- /NetworkPkg/TcpDxe/TcpFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/TcpDxe/TcpFunc.h -------------------------------------------------------------------------------- /NetworkPkg/TcpDxe/TcpInput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/TcpDxe/TcpInput.c -------------------------------------------------------------------------------- /NetworkPkg/TcpDxe/TcpIo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/TcpDxe/TcpIo.c -------------------------------------------------------------------------------- /NetworkPkg/TcpDxe/TcpMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/TcpDxe/TcpMain.c -------------------------------------------------------------------------------- /NetworkPkg/TcpDxe/TcpMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/TcpDxe/TcpMain.h -------------------------------------------------------------------------------- /NetworkPkg/TcpDxe/TcpMisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/TcpDxe/TcpMisc.c -------------------------------------------------------------------------------- /NetworkPkg/TcpDxe/TcpOption.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/TcpDxe/TcpOption.c -------------------------------------------------------------------------------- /NetworkPkg/TcpDxe/TcpOption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/TcpDxe/TcpOption.h -------------------------------------------------------------------------------- /NetworkPkg/TcpDxe/TcpOutput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/TcpDxe/TcpOutput.c -------------------------------------------------------------------------------- /NetworkPkg/TcpDxe/TcpProto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/TcpDxe/TcpProto.h -------------------------------------------------------------------------------- /NetworkPkg/TcpDxe/TcpTimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/TcpDxe/TcpTimer.c -------------------------------------------------------------------------------- /NetworkPkg/TlsDxe/TlsDriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/TlsDxe/TlsDriver.c -------------------------------------------------------------------------------- /NetworkPkg/TlsDxe/TlsDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/TlsDxe/TlsDriver.h -------------------------------------------------------------------------------- /NetworkPkg/TlsDxe/TlsDxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/TlsDxe/TlsDxe.inf -------------------------------------------------------------------------------- /NetworkPkg/TlsDxe/TlsDxe.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/TlsDxe/TlsDxe.uni -------------------------------------------------------------------------------- /NetworkPkg/TlsDxe/TlsImpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/TlsDxe/TlsImpl.c -------------------------------------------------------------------------------- /NetworkPkg/TlsDxe/TlsImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/TlsDxe/TlsImpl.h -------------------------------------------------------------------------------- /NetworkPkg/TlsDxe/TlsProtocol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/TlsDxe/TlsProtocol.c -------------------------------------------------------------------------------- /NetworkPkg/Udp4Dxe/Udp4Driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Udp4Dxe/Udp4Driver.c -------------------------------------------------------------------------------- /NetworkPkg/Udp4Dxe/Udp4Driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Udp4Dxe/Udp4Driver.h -------------------------------------------------------------------------------- /NetworkPkg/Udp4Dxe/Udp4Dxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Udp4Dxe/Udp4Dxe.inf -------------------------------------------------------------------------------- /NetworkPkg/Udp4Dxe/Udp4Dxe.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Udp4Dxe/Udp4Dxe.uni -------------------------------------------------------------------------------- /NetworkPkg/Udp4Dxe/Udp4Impl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Udp4Dxe/Udp4Impl.c -------------------------------------------------------------------------------- /NetworkPkg/Udp4Dxe/Udp4Impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Udp4Dxe/Udp4Impl.h -------------------------------------------------------------------------------- /NetworkPkg/Udp4Dxe/Udp4Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Udp4Dxe/Udp4Main.c -------------------------------------------------------------------------------- /NetworkPkg/Udp6Dxe/Udp6Driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Udp6Dxe/Udp6Driver.c -------------------------------------------------------------------------------- /NetworkPkg/Udp6Dxe/Udp6Driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Udp6Dxe/Udp6Driver.h -------------------------------------------------------------------------------- /NetworkPkg/Udp6Dxe/Udp6Dxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Udp6Dxe/Udp6Dxe.inf -------------------------------------------------------------------------------- /NetworkPkg/Udp6Dxe/Udp6Dxe.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Udp6Dxe/Udp6Dxe.uni -------------------------------------------------------------------------------- /NetworkPkg/Udp6Dxe/Udp6Impl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Udp6Dxe/Udp6Impl.c -------------------------------------------------------------------------------- /NetworkPkg/Udp6Dxe/Udp6Impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Udp6Dxe/Udp6Impl.h -------------------------------------------------------------------------------- /NetworkPkg/Udp6Dxe/Udp6Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/NetworkPkg/Udp6Dxe/Udp6Main.c -------------------------------------------------------------------------------- /OvmfPkg/8254TimerDxe/Timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/8254TimerDxe/Timer.c -------------------------------------------------------------------------------- /OvmfPkg/8254TimerDxe/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/8254TimerDxe/Timer.h -------------------------------------------------------------------------------- /OvmfPkg/8254TimerDxe/Timer.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/8254TimerDxe/Timer.uni -------------------------------------------------------------------------------- /OvmfPkg/AcpiPlatformDxe/Qemu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/AcpiPlatformDxe/Qemu.c -------------------------------------------------------------------------------- /OvmfPkg/AcpiPlatformDxe/Xen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/AcpiPlatformDxe/Xen.c -------------------------------------------------------------------------------- /OvmfPkg/AcpiTables/Dsdt.asl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/AcpiTables/Dsdt.asl -------------------------------------------------------------------------------- /OvmfPkg/AcpiTables/Facp.aslc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/AcpiTables/Facp.aslc -------------------------------------------------------------------------------- /OvmfPkg/AcpiTables/Facs.aslc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/AcpiTables/Facs.aslc -------------------------------------------------------------------------------- /OvmfPkg/AcpiTables/Madt.aslc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/AcpiTables/Madt.aslc -------------------------------------------------------------------------------- /OvmfPkg/AcpiTables/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/AcpiTables/Platform.h -------------------------------------------------------------------------------- /OvmfPkg/AcpiTables/Ssdt.asl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/AcpiTables/Ssdt.asl -------------------------------------------------------------------------------- /OvmfPkg/AmdSevDxe/AmdSevDxe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/AmdSevDxe/AmdSevDxe.c -------------------------------------------------------------------------------- /OvmfPkg/AmdSevDxe/AmdSevDxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/AmdSevDxe/AmdSevDxe.inf -------------------------------------------------------------------------------- /OvmfPkg/Bhyve/BhyveRfbDxe/Gop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/Bhyve/BhyveRfbDxe/Gop.h -------------------------------------------------------------------------------- /OvmfPkg/Bhyve/BhyveX64.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/Bhyve/BhyveX64.dsc -------------------------------------------------------------------------------- /OvmfPkg/Bhyve/BhyveX64.fdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/Bhyve/BhyveX64.fdf -------------------------------------------------------------------------------- /OvmfPkg/Bhyve/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/Bhyve/License.txt -------------------------------------------------------------------------------- /OvmfPkg/Bhyve/PlatformPei/Fv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/Bhyve/PlatformPei/Fv.c -------------------------------------------------------------------------------- /OvmfPkg/Bhyve/VarStore.fdf.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/Bhyve/VarStore.fdf.inc -------------------------------------------------------------------------------- /OvmfPkg/CpuHotplugSmm/ApicId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/CpuHotplugSmm/ApicId.h -------------------------------------------------------------------------------- /OvmfPkg/CpuHotplugSmm/Smbase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/CpuHotplugSmm/Smbase.c -------------------------------------------------------------------------------- /OvmfPkg/CpuHotplugSmm/Smbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/CpuHotplugSmm/Smbase.h -------------------------------------------------------------------------------- /OvmfPkg/Csm/Csm16/Csm16.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/Csm/Csm16/Csm16.inf -------------------------------------------------------------------------------- /OvmfPkg/Csm/Csm16/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/Csm/Csm16/ReadMe.txt -------------------------------------------------------------------------------- /OvmfPkg/Include/Guid/XenInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/Include/Guid/XenInfo.h -------------------------------------------------------------------------------- /OvmfPkg/Include/OvmfPlatforms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/Include/OvmfPlatforms.h -------------------------------------------------------------------------------- /OvmfPkg/IoMmuDxe/AmdSevIoMmu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/IoMmuDxe/AmdSevIoMmu.c -------------------------------------------------------------------------------- /OvmfPkg/IoMmuDxe/AmdSevIoMmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/IoMmuDxe/AmdSevIoMmu.h -------------------------------------------------------------------------------- /OvmfPkg/IoMmuDxe/IoMmuDxe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/IoMmuDxe/IoMmuDxe.c -------------------------------------------------------------------------------- /OvmfPkg/IoMmuDxe/IoMmuDxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/IoMmuDxe/IoMmuDxe.inf -------------------------------------------------------------------------------- /OvmfPkg/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/License.txt -------------------------------------------------------------------------------- /OvmfPkg/LsiScsiDxe/LsiScsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/LsiScsiDxe/LsiScsi.c -------------------------------------------------------------------------------- /OvmfPkg/LsiScsiDxe/LsiScsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/LsiScsiDxe/LsiScsi.h -------------------------------------------------------------------------------- /OvmfPkg/MptScsiDxe/MptScsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/MptScsiDxe/MptScsi.c -------------------------------------------------------------------------------- /OvmfPkg/OvmfPkg.ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/OvmfPkg.ci.yaml -------------------------------------------------------------------------------- /OvmfPkg/OvmfPkg.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/OvmfPkg.dec -------------------------------------------------------------------------------- /OvmfPkg/OvmfPkgDefines.fdf.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/OvmfPkgDefines.fdf.inc -------------------------------------------------------------------------------- /OvmfPkg/OvmfPkgIa32.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/OvmfPkgIa32.dsc -------------------------------------------------------------------------------- /OvmfPkg/OvmfPkgIa32.fdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/OvmfPkgIa32.fdf -------------------------------------------------------------------------------- /OvmfPkg/OvmfPkgIa32X64.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/OvmfPkgIa32X64.dsc -------------------------------------------------------------------------------- /OvmfPkg/OvmfPkgIa32X64.fdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/OvmfPkgIa32X64.fdf -------------------------------------------------------------------------------- /OvmfPkg/OvmfPkgX64.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/OvmfPkgX64.dsc -------------------------------------------------------------------------------- /OvmfPkg/OvmfPkgX64.fdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/OvmfPkgX64.fdf -------------------------------------------------------------------------------- /OvmfPkg/OvmfXen.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/OvmfXen.dsc -------------------------------------------------------------------------------- /OvmfPkg/OvmfXen.fdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/OvmfXen.fdf -------------------------------------------------------------------------------- /OvmfPkg/PlatformCI/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/PlatformCI/ReadMe.md -------------------------------------------------------------------------------- /OvmfPkg/PlatformDxe/Platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/PlatformDxe/Platform.c -------------------------------------------------------------------------------- /OvmfPkg/PlatformDxe/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/PlatformDxe/Platform.h -------------------------------------------------------------------------------- /OvmfPkg/PlatformPei/AmdSev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/PlatformPei/AmdSev.c -------------------------------------------------------------------------------- /OvmfPkg/PlatformPei/Cmos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/PlatformPei/Cmos.c -------------------------------------------------------------------------------- /OvmfPkg/PlatformPei/Cmos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/PlatformPei/Cmos.h -------------------------------------------------------------------------------- /OvmfPkg/PlatformPei/Fv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/PlatformPei/Fv.c -------------------------------------------------------------------------------- /OvmfPkg/PlatformPei/MemDetect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/PlatformPei/MemDetect.c -------------------------------------------------------------------------------- /OvmfPkg/PlatformPei/Platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/PlatformPei/Platform.c -------------------------------------------------------------------------------- /OvmfPkg/PlatformPei/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/PlatformPei/Platform.h -------------------------------------------------------------------------------- /OvmfPkg/PlatformPei/Xen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/PlatformPei/Xen.c -------------------------------------------------------------------------------- /OvmfPkg/PlatformPei/Xen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/PlatformPei/Xen.h -------------------------------------------------------------------------------- /OvmfPkg/PvScsiDxe/PvScsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/PvScsiDxe/PvScsi.c -------------------------------------------------------------------------------- /OvmfPkg/PvScsiDxe/PvScsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/PvScsiDxe/PvScsi.h -------------------------------------------------------------------------------- /OvmfPkg/PvScsiDxe/PvScsiDxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/PvScsiDxe/PvScsiDxe.inf -------------------------------------------------------------------------------- /OvmfPkg/QemuVideoDxe/Driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/QemuVideoDxe/Driver.c -------------------------------------------------------------------------------- /OvmfPkg/QemuVideoDxe/Gop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/QemuVideoDxe/Gop.c -------------------------------------------------------------------------------- /OvmfPkg/QemuVideoDxe/Qemu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/QemuVideoDxe/Qemu.h -------------------------------------------------------------------------------- /OvmfPkg/QemuVideoDxe/VbeShim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/QemuVideoDxe/VbeShim.c -------------------------------------------------------------------------------- /OvmfPkg/QemuVideoDxe/VbeShim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/QemuVideoDxe/VbeShim.h -------------------------------------------------------------------------------- /OvmfPkg/QemuVideoDxe/VbeShim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/QemuVideoDxe/VbeShim.sh -------------------------------------------------------------------------------- /OvmfPkg/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/README -------------------------------------------------------------------------------- /OvmfPkg/Sec/Ia32/SecEntry.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/Sec/Ia32/SecEntry.nasm -------------------------------------------------------------------------------- /OvmfPkg/Sec/SecMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/Sec/SecMain.c -------------------------------------------------------------------------------- /OvmfPkg/Sec/SecMain.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/Sec/SecMain.inf -------------------------------------------------------------------------------- /OvmfPkg/Sec/X64/SecEntry.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/Sec/X64/SecEntry.nasm -------------------------------------------------------------------------------- /OvmfPkg/SioBusDxe/SioBusDxe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/SioBusDxe/SioBusDxe.c -------------------------------------------------------------------------------- /OvmfPkg/SioBusDxe/SioBusDxe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/SioBusDxe/SioBusDxe.h -------------------------------------------------------------------------------- /OvmfPkg/SioBusDxe/SioBusDxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/SioBusDxe/SioBusDxe.inf -------------------------------------------------------------------------------- /OvmfPkg/SioBusDxe/SioBusDxe.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/SioBusDxe/SioBusDxe.uni -------------------------------------------------------------------------------- /OvmfPkg/SioBusDxe/SioService.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/SioBusDxe/SioService.c -------------------------------------------------------------------------------- /OvmfPkg/SioBusDxe/SioService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/SioBusDxe/SioService.h -------------------------------------------------------------------------------- /OvmfPkg/VarStore.fdf.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/VarStore.fdf.inc -------------------------------------------------------------------------------- /OvmfPkg/Virtio10Dxe/Virtio10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/Virtio10Dxe/Virtio10.c -------------------------------------------------------------------------------- /OvmfPkg/Virtio10Dxe/Virtio10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/Virtio10Dxe/Virtio10.h -------------------------------------------------------------------------------- /OvmfPkg/VirtioGpuDxe/Commands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/VirtioGpuDxe/Commands.c -------------------------------------------------------------------------------- /OvmfPkg/VirtioGpuDxe/Gop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/VirtioGpuDxe/Gop.c -------------------------------------------------------------------------------- /OvmfPkg/VirtioNetDxe/Events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/VirtioNetDxe/Events.c -------------------------------------------------------------------------------- /OvmfPkg/VirtioNetDxe/SnpStart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/VirtioNetDxe/SnpStart.c -------------------------------------------------------------------------------- /OvmfPkg/VirtioNetDxe/SnpStop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/VirtioNetDxe/SnpStop.c -------------------------------------------------------------------------------- /OvmfPkg/XenBusDxe/GrantTable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/XenBusDxe/GrantTable.c -------------------------------------------------------------------------------- /OvmfPkg/XenBusDxe/GrantTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/XenBusDxe/GrantTable.h -------------------------------------------------------------------------------- /OvmfPkg/XenBusDxe/Helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/XenBusDxe/Helpers.c -------------------------------------------------------------------------------- /OvmfPkg/XenBusDxe/XenBus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/XenBusDxe/XenBus.c -------------------------------------------------------------------------------- /OvmfPkg/XenBusDxe/XenBus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/XenBusDxe/XenBus.h -------------------------------------------------------------------------------- /OvmfPkg/XenBusDxe/XenBusDxe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/XenBusDxe/XenBusDxe.c -------------------------------------------------------------------------------- /OvmfPkg/XenBusDxe/XenBusDxe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/XenBusDxe/XenBusDxe.h -------------------------------------------------------------------------------- /OvmfPkg/XenBusDxe/XenBusDxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/XenBusDxe/XenBusDxe.inf -------------------------------------------------------------------------------- /OvmfPkg/XenBusDxe/XenStore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/XenBusDxe/XenStore.c -------------------------------------------------------------------------------- /OvmfPkg/XenBusDxe/XenStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/XenBusDxe/XenStore.h -------------------------------------------------------------------------------- /OvmfPkg/XenPlatformPei/AmdSev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/XenPlatformPei/AmdSev.c -------------------------------------------------------------------------------- /OvmfPkg/XenPlatformPei/Cmos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/XenPlatformPei/Cmos.c -------------------------------------------------------------------------------- /OvmfPkg/XenPlatformPei/Cmos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/XenPlatformPei/Cmos.h -------------------------------------------------------------------------------- /OvmfPkg/XenPlatformPei/Fv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/XenPlatformPei/Fv.c -------------------------------------------------------------------------------- /OvmfPkg/XenPlatformPei/Xen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/XenPlatformPei/Xen.c -------------------------------------------------------------------------------- /OvmfPkg/XenPlatformPei/Xen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/XenPlatformPei/Xen.h -------------------------------------------------------------------------------- /OvmfPkg/XenPvBlkDxe/BlockIo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/XenPvBlkDxe/BlockIo.c -------------------------------------------------------------------------------- /OvmfPkg/XenPvBlkDxe/BlockIo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/XenPvBlkDxe/BlockIo.h -------------------------------------------------------------------------------- /OvmfPkg/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/OvmfPkg/build.sh -------------------------------------------------------------------------------- /ReadMe.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/ReadMe.rst -------------------------------------------------------------------------------- /RedfishPkg/Redfish.dsc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/RedfishPkg/Redfish.dsc.inc -------------------------------------------------------------------------------- /RedfishPkg/Redfish.fdf.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/RedfishPkg/Redfish.fdf.inc -------------------------------------------------------------------------------- /RedfishPkg/RedfishLibs.dsc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/RedfishPkg/RedfishLibs.dsc.inc -------------------------------------------------------------------------------- /RedfishPkg/RedfishPkg.ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/RedfishPkg/RedfishPkg.ci.yaml -------------------------------------------------------------------------------- /RedfishPkg/RedfishPkg.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/RedfishPkg/RedfishPkg.dec -------------------------------------------------------------------------------- /RedfishPkg/RedfishPkg.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/RedfishPkg/RedfishPkg.dsc -------------------------------------------------------------------------------- /SecurityPkg/Include/Ppi/Tcg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/SecurityPkg/Include/Ppi/Tcg.h -------------------------------------------------------------------------------- /SecurityPkg/SecurityPkg.ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/SecurityPkg/SecurityPkg.ci.yaml -------------------------------------------------------------------------------- /SecurityPkg/SecurityPkg.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/SecurityPkg/SecurityPkg.dec -------------------------------------------------------------------------------- /SecurityPkg/SecurityPkg.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/SecurityPkg/SecurityPkg.dsc -------------------------------------------------------------------------------- /SecurityPkg/SecurityPkg.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/SecurityPkg/SecurityPkg.uni -------------------------------------------------------------------------------- /SecurityPkg/Tcg/Tcg2Smm/Tpm.asl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/SecurityPkg/Tcg/Tcg2Smm/Tpm.asl -------------------------------------------------------------------------------- /SecurityPkg/Tcg/TcgDxe/TcgDxe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/SecurityPkg/Tcg/TcgDxe/TcgDxe.c -------------------------------------------------------------------------------- /SecurityPkg/Tcg/TcgPei/TcgPei.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/SecurityPkg/Tcg/TcgPei/TcgPei.c -------------------------------------------------------------------------------- /SecurityPkg/Tcg/TcgSmm/TcgSmm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/SecurityPkg/Tcg/TcgSmm/TcgSmm.c -------------------------------------------------------------------------------- /SecurityPkg/Tcg/TcgSmm/TcgSmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/SecurityPkg/Tcg/TcgSmm/TcgSmm.h -------------------------------------------------------------------------------- /SecurityPkg/Tcg/TcgSmm/Tpm.asl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/SecurityPkg/Tcg/TcgSmm/Tpm.asl -------------------------------------------------------------------------------- /ShellPkg/ShellPkg.ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/ShellPkg/ShellPkg.ci.yaml -------------------------------------------------------------------------------- /ShellPkg/ShellPkg.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/ShellPkg/ShellPkg.dec -------------------------------------------------------------------------------- /ShellPkg/ShellPkg.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/ShellPkg/ShellPkg.dsc -------------------------------------------------------------------------------- /SignedCapsulePkg/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/SignedCapsulePkg/Readme.md -------------------------------------------------------------------------------- /SourceLevelDebugPkg/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/SourceLevelDebugPkg/Readme.txt -------------------------------------------------------------------------------- /StandaloneMmPkg/Core/FwVol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/StandaloneMmPkg/Core/FwVol.c -------------------------------------------------------------------------------- /StandaloneMmPkg/Core/Handle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/StandaloneMmPkg/Core/Handle.c -------------------------------------------------------------------------------- /StandaloneMmPkg/Core/Locate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/StandaloneMmPkg/Core/Locate.c -------------------------------------------------------------------------------- /StandaloneMmPkg/Core/Mmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/StandaloneMmPkg/Core/Mmi.c -------------------------------------------------------------------------------- /StandaloneMmPkg/Core/Notify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/StandaloneMmPkg/Core/Notify.c -------------------------------------------------------------------------------- /StandaloneMmPkg/Core/Page.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/StandaloneMmPkg/Core/Page.c -------------------------------------------------------------------------------- /StandaloneMmPkg/Core/Pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/StandaloneMmPkg/Core/Pool.c -------------------------------------------------------------------------------- /UefiCpuPkg/CpuDxe/CpuDxe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/UefiCpuPkg/CpuDxe/CpuDxe.c -------------------------------------------------------------------------------- /UefiCpuPkg/CpuDxe/CpuDxe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/UefiCpuPkg/CpuDxe/CpuDxe.h -------------------------------------------------------------------------------- /UefiCpuPkg/CpuDxe/CpuDxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/UefiCpuPkg/CpuDxe/CpuDxe.inf -------------------------------------------------------------------------------- /UefiCpuPkg/CpuDxe/CpuDxe.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/UefiCpuPkg/CpuDxe/CpuDxe.uni -------------------------------------------------------------------------------- /UefiCpuPkg/CpuDxe/CpuGdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/UefiCpuPkg/CpuDxe/CpuGdt.c -------------------------------------------------------------------------------- /UefiCpuPkg/CpuDxe/CpuGdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/UefiCpuPkg/CpuDxe/CpuGdt.h -------------------------------------------------------------------------------- /UefiCpuPkg/CpuDxe/CpuMp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/UefiCpuPkg/CpuDxe/CpuMp.c -------------------------------------------------------------------------------- /UefiCpuPkg/CpuDxe/CpuMp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/UefiCpuPkg/CpuDxe/CpuMp.h -------------------------------------------------------------------------------- /UefiCpuPkg/CpuIoPei/CpuIoPei.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/UefiCpuPkg/CpuIoPei/CpuIoPei.c -------------------------------------------------------------------------------- /UefiCpuPkg/CpuIoPei/CpuIoPei.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/UefiCpuPkg/CpuIoPei/CpuIoPei.h -------------------------------------------------------------------------------- /UefiCpuPkg/CpuMpPei/CpuBist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/UefiCpuPkg/CpuMpPei/CpuBist.c -------------------------------------------------------------------------------- /UefiCpuPkg/CpuMpPei/CpuMp2Pei.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/UefiCpuPkg/CpuMpPei/CpuMp2Pei.c -------------------------------------------------------------------------------- /UefiCpuPkg/CpuMpPei/CpuMpPei.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/UefiCpuPkg/CpuMpPei/CpuMpPei.c -------------------------------------------------------------------------------- /UefiCpuPkg/CpuMpPei/CpuMpPei.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/UefiCpuPkg/CpuMpPei/CpuMpPei.h -------------------------------------------------------------------------------- /UefiCpuPkg/CpuMpPei/CpuPaging.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/UefiCpuPkg/CpuMpPei/CpuPaging.c -------------------------------------------------------------------------------- /UefiCpuPkg/SecCore/SecBist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/UefiCpuPkg/SecCore/SecBist.c -------------------------------------------------------------------------------- /UefiCpuPkg/SecCore/SecCore.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/UefiCpuPkg/SecCore/SecCore.inf -------------------------------------------------------------------------------- /UefiCpuPkg/SecCore/SecCore.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/UefiCpuPkg/SecCore/SecCore.uni -------------------------------------------------------------------------------- /UefiCpuPkg/SecCore/SecMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/UefiCpuPkg/SecCore/SecMain.c -------------------------------------------------------------------------------- /UefiCpuPkg/SecCore/SecMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/UefiCpuPkg/SecCore/SecMain.h -------------------------------------------------------------------------------- /UefiCpuPkg/UefiCpuPkg.ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/UefiCpuPkg/UefiCpuPkg.ci.yaml -------------------------------------------------------------------------------- /UefiCpuPkg/UefiCpuPkg.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/UefiCpuPkg/UefiCpuPkg.dec -------------------------------------------------------------------------------- /UefiCpuPkg/UefiCpuPkg.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/UefiCpuPkg/UefiCpuPkg.dsc -------------------------------------------------------------------------------- /UefiCpuPkg/UefiCpuPkg.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/UefiCpuPkg/UefiCpuPkg.uni -------------------------------------------------------------------------------- /UefiCpuPkg/UefiCpuPkgExtra.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/UefiCpuPkg/UefiCpuPkgExtra.uni -------------------------------------------------------------------------------- /UnitTestFrameworkPkg/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/UnitTestFrameworkPkg/ReadMe.md -------------------------------------------------------------------------------- /edksetup.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/edksetup.bat -------------------------------------------------------------------------------- /edksetup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/edksetup.sh -------------------------------------------------------------------------------- /pip-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altera-opensource/uefi-socfpga/HEAD/pip-requirements.txt --------------------------------------------------------------------------------