├── .azurepipelines ├── MuDevOpsWrapper.yml ├── Ubuntu-GCC5.yml └── Windows-VS.yml ├── .devcontainer └── devcontainer.json ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ ├── documentation_request.yml │ └── feature_request.yml ├── advanced-issue-labeler.yml ├── codecov.yml ├── dependabot.yml ├── pull_request_template.md ├── release-draft-config-n-1-dev.yml ├── release-draft-config-n-1.yml ├── release-draft-config-n-dev.yml ├── release-draft-config-n.yml └── workflows │ ├── auto-approve.yml │ ├── auto-merge.yml │ ├── backport-to-release-branch.yml │ ├── codeql.yml │ ├── issue-assignment.yml │ ├── label-issues.yml │ ├── label-issues │ ├── file-paths.yml │ └── regex-pull-requests.yml │ ├── label-sync.yml │ ├── pull-request-formatting-validator.yml │ ├── release-draft.yml │ ├── scheduled-maintenance.yml │ ├── stale.yml │ └── triage-issues.yml ├── .gitignore ├── .markdownlint.yaml ├── .markdownlintignore ├── .pytool └── CISettings.py ├── BoardModulePkg ├── BoardModulePkg.ci.yaml ├── BoardModulePkg.dec ├── BoardModulePkg.dsc ├── Include │ ├── Guid │ │ ├── BiosId.h │ │ └── BiosInfo.h │ └── Library │ │ ├── BiosIdLib.h │ │ ├── CmosAccessLib.h │ │ └── PlatformCmosAccessLib.h ├── Library │ ├── BiosIdLib │ │ ├── BiosIdCommon.c │ │ ├── DxeBiosIdLib.c │ │ ├── DxeBiosIdLib.inf │ │ ├── PeiBiosIdLib.c │ │ ├── PeiBiosIdLib.inf │ │ ├── StandaloneMmBiosIdLib.c │ │ └── StandaloneMmBiosIdLib.inf │ ├── CmosAccessLib │ │ ├── CmosAccessLib.c │ │ ├── CmosAccessLib.inf │ │ └── CmosAccessLibInternal.h │ └── PlatformCmosAccessLibNull │ │ ├── PlatformCmosAccessLibNull.c │ │ └── PlatformCmosAccessLibNull.inf └── Test │ ├── BoardModulePkgHostTest.dsc │ └── Mock │ ├── Include │ └── GoogleTest │ │ └── Library │ │ └── MockBiosIdLib.h │ └── Library │ └── GoogleTest │ └── MockBiosIdLib │ ├── MockBiosIdLib.cpp │ └── MockBiosIdLib.inf ├── CONTRIBUTING.md ├── License-History.txt ├── License.txt ├── MinPlatformPkg ├── Acpi │ ├── AcpiSmm │ │ ├── AcpiMm.c │ │ ├── AcpiMm.h │ │ ├── AcpiSmm.inf │ │ ├── AcpiStandaloneMm.c │ │ ├── AcpiStandaloneMm.inf │ │ └── AcpiTraditionalMm.c │ ├── AcpiTables │ │ ├── AcpiPlatform.c │ │ ├── AcpiPlatform.h │ │ ├── AcpiPlatform.inf │ │ ├── Facs │ │ │ └── Facs.c │ │ ├── Fadt │ │ │ └── Fadt.c │ │ ├── Hpet │ │ │ └── Hpet.c │ │ └── Wsmt │ │ │ └── Wsmt.c │ ├── Library │ │ ├── BoardAcpiEnableLibNull │ │ │ ├── BoardAcpiEnableLibNull.c │ │ │ └── BoardAcpiEnableLibNull.inf │ │ ├── BoardAcpiTableLibNull │ │ │ ├── BoardAcpiTableLibNull.c │ │ │ └── BoardAcpiTableLibNull.inf │ │ ├── DxeAslUpdateLib │ │ │ ├── DxeAslUpdateLib.c │ │ │ └── DxeAslUpdateLib.inf │ │ ├── MultiBoardAcpiSupportLib │ │ │ ├── DxeBoardAcpiTableLib.c │ │ │ ├── DxeMultiBoardAcpiSupportLib.c │ │ │ ├── DxeMultiBoardAcpiSupportLib.inf │ │ │ ├── SmmBoardAcpiEnableLib.c │ │ │ ├── SmmMultiBoardAcpiSupportLib.c │ │ │ └── SmmMultiBoardAcpiSupportLib.inf │ │ └── PhatAcpiLib │ │ │ ├── DxePhatAcpiLib.c │ │ │ └── DxePhatAcpiLib.inf │ └── MinDsdt │ │ ├── MinDsdt.asl │ │ ├── MinDsdt.c │ │ └── MinDsdt.inf ├── Bds │ └── Library │ │ ├── BoardBootManagerLibNull │ │ ├── BoardBootManagerLib.c │ │ └── BoardBootManagerLibNull.inf │ │ └── DxePlatformBootManagerLib │ │ ├── BdsPlatform.c │ │ ├── BdsPlatform.h │ │ └── DxePlatformBootManagerLib.inf ├── Docs │ └── A_Tour_Beyond_BIOS_Open_Source_IA_Firmware_Platform_Design_Guide_in_EFI_Developer_Kit_II - V2.pdf ├── FspWrapper │ ├── Library │ │ ├── DxeFspWrapperPlatformLib │ │ │ ├── DxeFspWrapperPlatformLib.inf │ │ │ └── DxeFspWrapperPlatformResetLib.c │ │ ├── PeiFspWrapperHobProcessLib │ │ │ ├── FspWrapperHobProcessLib.c │ │ │ └── PeiFspWrapperHobProcessLib.inf │ │ ├── PeiFspWrapperPlatformLib │ │ │ ├── PeiFspWrapperPlatformLib.c │ │ │ ├── PeiFspWrapperPlatformLib.inf │ │ │ └── PeiFspWrapperPlatformResetLib.c │ │ └── SecFspWrapperPlatformSecLib │ │ │ ├── FspWrapperPlatformSecLib.c │ │ │ ├── FsptCoreUpd.h │ │ │ ├── Ia32 │ │ │ ├── PeiCoreEntry.nasm │ │ │ ├── SecEntry.nasm │ │ │ └── Stack.nasm │ │ │ ├── PlatformInit.c │ │ │ ├── SecFspWrapperPlatformSecLib.inf │ │ │ ├── SecGetPerformance.c │ │ │ ├── SecPlatformInformation.c │ │ │ ├── SecRamInitData.c │ │ │ ├── SecTempRamDone.c │ │ │ └── X64 │ │ │ ├── PeiCoreEntry.nasm │ │ │ ├── SecEntry.nasm │ │ │ └── Stack.nasm │ ├── MpInfo2HobPei │ │ ├── MpInfo2HobPei.c │ │ └── MpInfo2HobPei.inf │ └── SaveMemoryConfig │ │ ├── SaveMemoryConfig.c │ │ └── SaveMemoryConfig.inf ├── Hsti │ └── HstiIbvPlatformDxe │ │ ├── ExternalDeviceDmaProtection.c │ │ ├── FirmwareTrustConfigurationCryptoStrength.c │ │ ├── FirmwareVersionRollbackProtection.c │ │ ├── HstiIbvPlatformDxe.c │ │ ├── HstiIbvPlatformDxe.h │ │ ├── HstiIbvPlatformDxe.inf │ │ ├── MorSupport.c │ │ ├── NoTestKeyVerification.c │ │ └── SecureBootBypass.c ├── Include │ ├── AcpiS3MemoryNvData.h │ ├── Dsc │ │ ├── CoreCommonLib.dsc │ │ ├── CoreDxeInclude.dsc │ │ ├── CoreDxeLib.dsc │ │ ├── CorePeiInclude.dsc │ │ ├── CorePeiLib.dsc │ │ └── MinPlatformFeaturesPcd.dsc.inc │ ├── Fdf │ │ ├── CommonSpiFvHeaderInfo.fdf │ │ ├── CoreOsBootInclude.fdf │ │ ├── CorePostMemoryInclude.fdf │ │ ├── CorePreMemoryInclude.fdf │ │ ├── CoreSecurityLateInclude.fdf │ │ ├── CoreSecurityPostMemoryInclude.fdf │ │ ├── CoreSecurityPreMemoryInclude.fdf │ │ ├── CoreUefiBootInclude.fdf │ │ └── RuleInclude.fdf │ ├── Fsp.h │ ├── HstiIbvFeatureBit.h │ ├── Library │ │ ├── AslUpdateLib.h │ │ ├── BoardAcpiEnableLib.h │ │ ├── BoardAcpiTableLib.h │ │ ├── BoardBootManagerLib.h │ │ ├── BoardInitLib.h │ │ ├── CompressLib.h │ │ ├── HobVariableLib.h │ │ ├── LargeVariableReadLib.h │ │ ├── LargeVariableWriteLib.h │ │ ├── MultiBoardAcpiSupportLib.h │ │ ├── MultiBoardInitSupportLib.h │ │ ├── PeiLib.h │ │ ├── PhatAcpiLib.h │ │ ├── PlatformConfigCheckLib.h │ │ ├── ReportCpuHobLib.h │ │ ├── ReportFvLib.h │ │ ├── SecBoardInitLib.h │ │ ├── SetCacheMtrrLib.h │ │ ├── SiliconPolicyInitLib.h │ │ ├── SiliconPolicyUpdateLib.h │ │ ├── TestPointCheckLib.h │ │ ├── TestPointLib.h │ │ ├── TestPointMtrrInfoLib.h │ │ ├── TestPointPciSpeedInfoLib.h │ │ ├── TpmPlatformHierarchyLib.h │ │ ├── VariableReadLib.h │ │ └── VariableWriteLib.h │ └── Ppi │ │ ├── BaseMemoryTest.h │ │ ├── PlatformInitTempRamExitPpi.h │ │ └── PlatformMemorySize.h ├── Library │ ├── BaseLargeVariableLib │ │ ├── BaseLargeVariableReadLib.inf │ │ ├── BaseLargeVariableWriteLib.inf │ │ ├── LargeVariableCommon.h │ │ ├── LargeVariableReadLib.c │ │ └── LargeVariableWriteLib.c │ ├── BaseVariableReadLibNull │ │ ├── BaseVariableReadLibNull.c │ │ └── BaseVariableReadLibNull.inf │ ├── CompressLib │ │ ├── CompressLib.c │ │ └── CompressLib.inf │ ├── DxeRuntimeVariableReadLib │ │ ├── DxeRuntimeVariableReadLib.c │ │ └── DxeRuntimeVariableReadLib.inf │ ├── DxeRuntimeVariableWriteLib │ │ ├── DxeRuntimeVariableWriteLib.c │ │ └── DxeRuntimeVariableWriteLib.inf │ ├── PeiHobVariableLibFce │ │ ├── Fce.h │ │ ├── InternalCommonLib.c │ │ ├── PeiHobVariableLibFce.c │ │ ├── PeiHobVariableLibFce.inf │ │ ├── PeiHobVariableLibFceOptSize.c │ │ ├── PeiHobVariableLibFceOptSize.inf │ │ └── Variable.h │ ├── PeiLib │ │ ├── PeiLib.c │ │ └── PeiLib.inf │ ├── PeiVariableReadLib │ │ ├── PeiVariableReadLib.c │ │ └── PeiVariableReadLib.inf │ ├── SerialPortTerminalLib │ │ ├── SerialPortTerminalLib.c │ │ ├── SerialPortTerminalLib.h │ │ └── SerialPortTerminalLib.inf │ ├── SetCacheMtrrLib │ │ ├── SetCacheMtrrLib.c │ │ ├── SetCacheMtrrLib.inf │ │ ├── SetCacheMtrrLibNull.c │ │ └── SetCacheMtrrLibNull.inf │ ├── SmmVariableReadLib │ │ ├── SmmVariableReadCommon.c │ │ ├── StandaloneMmVariableReadLib.inf │ │ ├── StandaloneMmVariableReadLibConstructor.c │ │ ├── TraditionalMmVariableReadLib.inf │ │ └── TraditionalMmVariableReadLibConstructor.c │ ├── SmmVariableWriteLib │ │ ├── SmmVariableWriteCommon.c │ │ ├── StandaloneMmVariableWriteLib.inf │ │ ├── StandaloneMmVariableWriteLibConstructor.c │ │ ├── TraditionalMmVariableWriteLib.inf │ │ └── TraditionalMmVariableWriteLibConstructor.c │ ├── TestPointMtrrInfoLibNull │ │ ├── TestPointMtrrInfoLibNull.c │ │ └── TestPointMtrrInfoLibNull.inf │ └── TestPointPciSpeedInfoLibNull │ │ ├── TestPointPciSpeedInfoLibNull.c │ │ └── TestPointPciSpeedInfoLibNull.inf ├── MinPlatformPkg.ci.yaml ├── MinPlatformPkg.dec ├── MinPlatformPkg.dsc ├── Pci │ └── Library │ │ ├── PciHostBridgeLibSimple │ │ ├── PciHostBridgeLibSimple.c │ │ └── PciHostBridgeLibSimple.inf │ │ └── PciSegmentInfoLibSimple │ │ ├── PciSegmentInfoLibSimple.c │ │ └── PciSegmentInfoLibSimple.inf ├── PlatformInit │ ├── Library │ │ ├── BoardInitLibNull │ │ │ ├── BoardInitLib.c │ │ │ └── BoardInitLibNull.inf │ │ ├── MultiBoardInitSupportLib │ │ │ ├── DxeBoardInitLib.c │ │ │ ├── DxeMultiBoardInitSupportLib.c │ │ │ ├── DxeMultiBoardInitSupportLib.inf │ │ │ ├── PeiBoardInitLib.c │ │ │ ├── PeiMultiBoardInitSupportLib.c │ │ │ └── PeiMultiBoardInitSupportLib.inf │ │ ├── PeiReportFvLib │ │ │ ├── PeiReportFvLib.c │ │ │ └── PeiReportFvLib.inf │ │ ├── ReportCpuHobLib │ │ │ ├── ReportCpuHobLib.c │ │ │ └── ReportCpuHobLib.inf │ │ ├── SecBoardInitLibNull │ │ │ ├── Ia32 │ │ │ │ └── SecBoardInit.nasm │ │ │ ├── SecBoardInitLib.c │ │ │ └── SecBoardInitLibNull.inf │ │ ├── SiliconPolicyInitLibNull │ │ │ ├── SiliconPolicyInitLibNull.c │ │ │ └── SiliconPolicyInitLibNull.inf │ │ └── SiliconPolicyUpdateLibNull │ │ │ ├── SiliconPolicyUpdateLibNull.c │ │ │ └── SiliconPolicyUpdateLibNull.inf │ ├── PlatformInitDxe │ │ ├── PlatformInitDxe.c │ │ └── PlatformInitDxe.inf │ ├── PlatformInitPei │ │ ├── FspSupport.c │ │ ├── FspSupportNull.c │ │ ├── PlatformInitPostMem.c │ │ ├── PlatformInitPostMem.inf │ │ ├── PlatformInitPreMem.c │ │ ├── PlatformInitPreMem.inf │ │ └── PlatformInitPreMemNonFsp.inf │ ├── PlatformInitSmm │ │ ├── EventNotify.h │ │ ├── PlatformInitMm.c │ │ ├── PlatformInitSmm.c │ │ ├── PlatformInitSmm.inf │ │ ├── PlatformInitStandaloneMm.c │ │ └── PlatformInitStandaloneMm.inf │ ├── ReportFv │ │ ├── ReportFvPei.c │ │ └── ReportFvPei.inf │ ├── SiliconPolicyDxe │ │ ├── SiliconPolicyDxe.c │ │ └── SiliconPolicyDxe.inf │ └── SiliconPolicyPei │ │ ├── SiliconPolicyPeiPostMem.c │ │ ├── SiliconPolicyPeiPostMem.inf │ │ ├── SiliconPolicyPeiPreMem.c │ │ └── SiliconPolicyPeiPreMem.inf ├── Services │ └── StallServicePei │ │ ├── StallServicePei.c │ │ └── StallServicePei.inf ├── Test │ ├── Library │ │ ├── PlatformConfigCheckLibNull │ │ │ ├── PlatformConfigCheckLibNull.c │ │ │ └── PlatformConfigCheckLibNull.inf │ │ ├── TestPointCheckLib │ │ │ ├── DxeCheckAcpi.c │ │ │ ├── DxeCheckAcpiDmar.c │ │ │ ├── DxeCheckAcpiHpet.c │ │ │ ├── DxeCheckAcpiMadt.c │ │ │ ├── DxeCheckAcpiMcfg.c │ │ │ ├── DxeCheckAcpiTpm.c │ │ │ ├── DxeCheckAcpiWsmt.c │ │ │ ├── DxeCheckBootVariable.c │ │ │ ├── DxeCheckConsoleVariable.c │ │ │ ├── DxeCheckDevicePath.c │ │ │ ├── DxeCheckDmaProtection.c │ │ │ ├── DxeCheckEsrt.c │ │ │ ├── DxeCheckGcd.c │ │ │ ├── DxeCheckHsti.c │ │ │ ├── DxeCheckLoadedImage.c │ │ │ ├── DxeCheckMemoryAttribute.c │ │ │ ├── DxeCheckMemoryMap.c │ │ │ ├── DxeCheckMemoryTypeInformation.c │ │ │ ├── DxeCheckMtrr.c │ │ │ ├── DxeCheckPci.c │ │ │ ├── DxeCheckPiSignedFvBoot.c │ │ │ ├── DxeCheckSmiHandlerInstrument.c │ │ │ ├── DxeCheckSmmInfo.c │ │ │ ├── DxeCheckTcgMor.c │ │ │ ├── DxeCheckTcgTrustedBoot.c │ │ │ ├── DxeCheckUefiSecureBoot.c │ │ │ ├── DxeCheckVariable.c │ │ │ ├── DxeTestPointCheckLib.c │ │ │ ├── DxeTestPointCheckLib.inf │ │ │ ├── MmCheckCommunicationBuffer.c │ │ │ ├── MmCheckLoadedImage.c │ │ │ ├── MmCheckMemoryAttribute.c │ │ │ ├── MmCheckPaging.c │ │ │ ├── MmCheckSmrr.c │ │ │ ├── MmTestPointCheckLib.c │ │ │ ├── PeiCheckDmaProtection.c │ │ │ ├── PeiCheckFvInfo.c │ │ │ ├── PeiCheckHob.c │ │ │ ├── PeiCheckMtrr.c │ │ │ ├── PeiCheckPci.c │ │ │ ├── PeiCheckSmmInfo.c │ │ │ ├── PeiTestPointCheckLib.c │ │ │ ├── PeiTestPointCheckLib.inf │ │ │ ├── SecCheckCpuInfo.c │ │ │ ├── SecTestPointCheckLib.c │ │ │ ├── SecTestPointCheckLib.inf │ │ │ ├── StandaloneMmCheckMemoryAttribute.c │ │ │ ├── StandaloneMmTestPointCheckLib.c │ │ │ ├── StandaloneMmTestPointCheckLib.inf │ │ │ ├── TestPointCheckMtrr.c │ │ │ ├── TestPointCheckMtrr.h │ │ │ ├── TestPointHelp.c │ │ │ ├── TestPointImageDump.c │ │ │ ├── TestPointImageDump.h │ │ │ ├── TestPointInternal.h │ │ │ ├── TestPointMm.h │ │ │ ├── TraditionalMmTestPointCheckLib.c │ │ │ └── TraditionalMmTestPointCheckLib.inf │ │ ├── TestPointCheckLibNull │ │ │ ├── TestPointCheckLibNull.c │ │ │ └── TestPointCheckLibNull.inf │ │ └── TestPointLib │ │ │ ├── DxeTestPoint.c │ │ │ ├── DxeTestPoint.h │ │ │ ├── DxeTestPointAip.c │ │ │ ├── DxeTestPointLib.inf │ │ │ ├── MmTestPoint.c │ │ │ ├── MmTestPoint.h │ │ │ ├── MmTestPointAip.c │ │ │ ├── MmTestPointCommunication.c │ │ │ ├── PeiTestPoint.c │ │ │ ├── PeiTestPoint.h │ │ │ ├── PeiTestPointLib.inf │ │ │ ├── SmmTestPoint.h │ │ │ ├── SmmTestPointCommunication.c │ │ │ ├── SmmTestPointLib.inf │ │ │ ├── StandaloneMmTestPoint.h │ │ │ ├── StandaloneMmTestPointCommunication.c │ │ │ └── StandaloneMmTestPointLib.inf │ ├── TestPointDumpApp │ │ ├── TestPointDump.c │ │ └── TestPointDumpApp.inf │ └── TestPointStubDxe │ │ ├── TestPointStubDxeMm.c │ │ └── TestPointStubDxeMm.inf └── Tools │ ├── AmlGenOffset │ └── AmlGenOffset.py │ ├── Fsp │ ├── PatchFspBinFvsBaseAddress.py │ ├── RebaseAndPatchFspBinBaseAddress.py │ ├── RebaseFspBinBaseAddress.py │ └── pad.bin │ ├── Help │ └── CheckCodeBase.py │ ├── ParseVar │ └── ParseVar.py │ └── PatchFv │ ├── PatchBfv.py │ ├── PatchBinFv.py │ ├── RebaseBinFv.py │ └── SyncBinFvInf.py ├── ReadMe.rst ├── RepoDetails.md ├── SECURITY.md └── pip-requirements.txt /.azurepipelines/MuDevOpsWrapper.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/.azurepipelines/MuDevOpsWrapper.yml -------------------------------------------------------------------------------- /.azurepipelines/Ubuntu-GCC5.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/.azurepipelines/Ubuntu-GCC5.yml -------------------------------------------------------------------------------- /.azurepipelines/Windows-VS.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/.azurepipelines/Windows-VS.yml -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * -text 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/.github/ISSUE_TEMPLATE/documentation_request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/advanced-issue-labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/.github/advanced-issue-labeler.yml -------------------------------------------------------------------------------- /.github/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/.github/codecov.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/release-draft-config-n-1-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/.github/release-draft-config-n-1-dev.yml -------------------------------------------------------------------------------- /.github/release-draft-config-n-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/.github/release-draft-config-n-1.yml -------------------------------------------------------------------------------- /.github/release-draft-config-n-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/.github/release-draft-config-n-dev.yml -------------------------------------------------------------------------------- /.github/release-draft-config-n.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/.github/release-draft-config-n.yml -------------------------------------------------------------------------------- /.github/workflows/auto-approve.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/.github/workflows/auto-approve.yml -------------------------------------------------------------------------------- /.github/workflows/auto-merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/.github/workflows/auto-merge.yml -------------------------------------------------------------------------------- /.github/workflows/backport-to-release-branch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/.github/workflows/backport-to-release-branch.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/issue-assignment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/.github/workflows/issue-assignment.yml -------------------------------------------------------------------------------- /.github/workflows/label-issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/.github/workflows/label-issues.yml -------------------------------------------------------------------------------- /.github/workflows/label-issues/file-paths.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/.github/workflows/label-issues/file-paths.yml -------------------------------------------------------------------------------- /.github/workflows/label-issues/regex-pull-requests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/.github/workflows/label-issues/regex-pull-requests.yml -------------------------------------------------------------------------------- /.github/workflows/label-sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/.github/workflows/label-sync.yml -------------------------------------------------------------------------------- /.github/workflows/pull-request-formatting-validator.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/.github/workflows/pull-request-formatting-validator.yml -------------------------------------------------------------------------------- /.github/workflows/release-draft.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/.github/workflows/release-draft.yml -------------------------------------------------------------------------------- /.github/workflows/scheduled-maintenance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/.github/workflows/scheduled-maintenance.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.github/workflows/triage-issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/.github/workflows/triage-issues.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/.markdownlint.yaml -------------------------------------------------------------------------------- /.markdownlintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/.markdownlintignore -------------------------------------------------------------------------------- /.pytool/CISettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/.pytool/CISettings.py -------------------------------------------------------------------------------- /BoardModulePkg/BoardModulePkg.ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/BoardModulePkg/BoardModulePkg.ci.yaml -------------------------------------------------------------------------------- /BoardModulePkg/BoardModulePkg.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/BoardModulePkg/BoardModulePkg.dec -------------------------------------------------------------------------------- /BoardModulePkg/BoardModulePkg.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/BoardModulePkg/BoardModulePkg.dsc -------------------------------------------------------------------------------- /BoardModulePkg/Include/Guid/BiosId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/BoardModulePkg/Include/Guid/BiosId.h -------------------------------------------------------------------------------- /BoardModulePkg/Include/Guid/BiosInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/BoardModulePkg/Include/Guid/BiosInfo.h -------------------------------------------------------------------------------- /BoardModulePkg/Include/Library/BiosIdLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/BoardModulePkg/Include/Library/BiosIdLib.h -------------------------------------------------------------------------------- /BoardModulePkg/Include/Library/CmosAccessLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/BoardModulePkg/Include/Library/CmosAccessLib.h -------------------------------------------------------------------------------- /BoardModulePkg/Include/Library/PlatformCmosAccessLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/BoardModulePkg/Include/Library/PlatformCmosAccessLib.h -------------------------------------------------------------------------------- /BoardModulePkg/Library/BiosIdLib/BiosIdCommon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/BoardModulePkg/Library/BiosIdLib/BiosIdCommon.c -------------------------------------------------------------------------------- /BoardModulePkg/Library/BiosIdLib/DxeBiosIdLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/BoardModulePkg/Library/BiosIdLib/DxeBiosIdLib.c -------------------------------------------------------------------------------- /BoardModulePkg/Library/BiosIdLib/DxeBiosIdLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/BoardModulePkg/Library/BiosIdLib/DxeBiosIdLib.inf -------------------------------------------------------------------------------- /BoardModulePkg/Library/BiosIdLib/PeiBiosIdLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/BoardModulePkg/Library/BiosIdLib/PeiBiosIdLib.c -------------------------------------------------------------------------------- /BoardModulePkg/Library/BiosIdLib/PeiBiosIdLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/BoardModulePkg/Library/BiosIdLib/PeiBiosIdLib.inf -------------------------------------------------------------------------------- /BoardModulePkg/Library/BiosIdLib/StandaloneMmBiosIdLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/BoardModulePkg/Library/BiosIdLib/StandaloneMmBiosIdLib.c -------------------------------------------------------------------------------- /BoardModulePkg/Library/BiosIdLib/StandaloneMmBiosIdLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/BoardModulePkg/Library/BiosIdLib/StandaloneMmBiosIdLib.inf -------------------------------------------------------------------------------- /BoardModulePkg/Library/CmosAccessLib/CmosAccessLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/BoardModulePkg/Library/CmosAccessLib/CmosAccessLib.c -------------------------------------------------------------------------------- /BoardModulePkg/Library/CmosAccessLib/CmosAccessLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/BoardModulePkg/Library/CmosAccessLib/CmosAccessLib.inf -------------------------------------------------------------------------------- /BoardModulePkg/Library/CmosAccessLib/CmosAccessLibInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/BoardModulePkg/Library/CmosAccessLib/CmosAccessLibInternal.h -------------------------------------------------------------------------------- /BoardModulePkg/Library/PlatformCmosAccessLibNull/PlatformCmosAccessLibNull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/BoardModulePkg/Library/PlatformCmosAccessLibNull/PlatformCmosAccessLibNull.c -------------------------------------------------------------------------------- /BoardModulePkg/Library/PlatformCmosAccessLibNull/PlatformCmosAccessLibNull.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/BoardModulePkg/Library/PlatformCmosAccessLibNull/PlatformCmosAccessLibNull.inf -------------------------------------------------------------------------------- /BoardModulePkg/Test/BoardModulePkgHostTest.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/BoardModulePkg/Test/BoardModulePkgHostTest.dsc -------------------------------------------------------------------------------- /BoardModulePkg/Test/Mock/Include/GoogleTest/Library/MockBiosIdLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/BoardModulePkg/Test/Mock/Include/GoogleTest/Library/MockBiosIdLib.h -------------------------------------------------------------------------------- /BoardModulePkg/Test/Mock/Library/GoogleTest/MockBiosIdLib/MockBiosIdLib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/BoardModulePkg/Test/Mock/Library/GoogleTest/MockBiosIdLib/MockBiosIdLib.cpp -------------------------------------------------------------------------------- /BoardModulePkg/Test/Mock/Library/GoogleTest/MockBiosIdLib/MockBiosIdLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/BoardModulePkg/Test/Mock/Library/GoogleTest/MockBiosIdLib/MockBiosIdLib.inf -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /License-History.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/License-History.txt -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/License.txt -------------------------------------------------------------------------------- /MinPlatformPkg/Acpi/AcpiSmm/AcpiMm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Acpi/AcpiSmm/AcpiMm.c -------------------------------------------------------------------------------- /MinPlatformPkg/Acpi/AcpiSmm/AcpiMm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Acpi/AcpiSmm/AcpiMm.h -------------------------------------------------------------------------------- /MinPlatformPkg/Acpi/AcpiSmm/AcpiSmm.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Acpi/AcpiSmm/AcpiSmm.inf -------------------------------------------------------------------------------- /MinPlatformPkg/Acpi/AcpiSmm/AcpiStandaloneMm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Acpi/AcpiSmm/AcpiStandaloneMm.c -------------------------------------------------------------------------------- /MinPlatformPkg/Acpi/AcpiSmm/AcpiStandaloneMm.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Acpi/AcpiSmm/AcpiStandaloneMm.inf -------------------------------------------------------------------------------- /MinPlatformPkg/Acpi/AcpiSmm/AcpiTraditionalMm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Acpi/AcpiSmm/AcpiTraditionalMm.c -------------------------------------------------------------------------------- /MinPlatformPkg/Acpi/AcpiTables/AcpiPlatform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Acpi/AcpiTables/AcpiPlatform.c -------------------------------------------------------------------------------- /MinPlatformPkg/Acpi/AcpiTables/AcpiPlatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Acpi/AcpiTables/AcpiPlatform.h -------------------------------------------------------------------------------- /MinPlatformPkg/Acpi/AcpiTables/AcpiPlatform.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Acpi/AcpiTables/AcpiPlatform.inf -------------------------------------------------------------------------------- /MinPlatformPkg/Acpi/AcpiTables/Facs/Facs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Acpi/AcpiTables/Facs/Facs.c -------------------------------------------------------------------------------- /MinPlatformPkg/Acpi/AcpiTables/Fadt/Fadt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Acpi/AcpiTables/Fadt/Fadt.c -------------------------------------------------------------------------------- /MinPlatformPkg/Acpi/AcpiTables/Hpet/Hpet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Acpi/AcpiTables/Hpet/Hpet.c -------------------------------------------------------------------------------- /MinPlatformPkg/Acpi/AcpiTables/Wsmt/Wsmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Acpi/AcpiTables/Wsmt/Wsmt.c -------------------------------------------------------------------------------- /MinPlatformPkg/Acpi/Library/BoardAcpiEnableLibNull/BoardAcpiEnableLibNull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Acpi/Library/BoardAcpiEnableLibNull/BoardAcpiEnableLibNull.c -------------------------------------------------------------------------------- /MinPlatformPkg/Acpi/Library/BoardAcpiEnableLibNull/BoardAcpiEnableLibNull.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Acpi/Library/BoardAcpiEnableLibNull/BoardAcpiEnableLibNull.inf -------------------------------------------------------------------------------- /MinPlatformPkg/Acpi/Library/BoardAcpiTableLibNull/BoardAcpiTableLibNull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Acpi/Library/BoardAcpiTableLibNull/BoardAcpiTableLibNull.c -------------------------------------------------------------------------------- /MinPlatformPkg/Acpi/Library/BoardAcpiTableLibNull/BoardAcpiTableLibNull.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Acpi/Library/BoardAcpiTableLibNull/BoardAcpiTableLibNull.inf -------------------------------------------------------------------------------- /MinPlatformPkg/Acpi/Library/DxeAslUpdateLib/DxeAslUpdateLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Acpi/Library/DxeAslUpdateLib/DxeAslUpdateLib.c -------------------------------------------------------------------------------- /MinPlatformPkg/Acpi/Library/DxeAslUpdateLib/DxeAslUpdateLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Acpi/Library/DxeAslUpdateLib/DxeAslUpdateLib.inf -------------------------------------------------------------------------------- /MinPlatformPkg/Acpi/Library/MultiBoardAcpiSupportLib/DxeBoardAcpiTableLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Acpi/Library/MultiBoardAcpiSupportLib/DxeBoardAcpiTableLib.c -------------------------------------------------------------------------------- /MinPlatformPkg/Acpi/Library/MultiBoardAcpiSupportLib/DxeMultiBoardAcpiSupportLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Acpi/Library/MultiBoardAcpiSupportLib/DxeMultiBoardAcpiSupportLib.c -------------------------------------------------------------------------------- /MinPlatformPkg/Acpi/Library/MultiBoardAcpiSupportLib/DxeMultiBoardAcpiSupportLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Acpi/Library/MultiBoardAcpiSupportLib/DxeMultiBoardAcpiSupportLib.inf -------------------------------------------------------------------------------- /MinPlatformPkg/Acpi/Library/MultiBoardAcpiSupportLib/SmmBoardAcpiEnableLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Acpi/Library/MultiBoardAcpiSupportLib/SmmBoardAcpiEnableLib.c -------------------------------------------------------------------------------- /MinPlatformPkg/Acpi/Library/MultiBoardAcpiSupportLib/SmmMultiBoardAcpiSupportLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Acpi/Library/MultiBoardAcpiSupportLib/SmmMultiBoardAcpiSupportLib.c -------------------------------------------------------------------------------- /MinPlatformPkg/Acpi/Library/MultiBoardAcpiSupportLib/SmmMultiBoardAcpiSupportLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Acpi/Library/MultiBoardAcpiSupportLib/SmmMultiBoardAcpiSupportLib.inf -------------------------------------------------------------------------------- /MinPlatformPkg/Acpi/Library/PhatAcpiLib/DxePhatAcpiLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Acpi/Library/PhatAcpiLib/DxePhatAcpiLib.c -------------------------------------------------------------------------------- /MinPlatformPkg/Acpi/Library/PhatAcpiLib/DxePhatAcpiLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Acpi/Library/PhatAcpiLib/DxePhatAcpiLib.inf -------------------------------------------------------------------------------- /MinPlatformPkg/Acpi/MinDsdt/MinDsdt.asl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Acpi/MinDsdt/MinDsdt.asl -------------------------------------------------------------------------------- /MinPlatformPkg/Acpi/MinDsdt/MinDsdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Acpi/MinDsdt/MinDsdt.c -------------------------------------------------------------------------------- /MinPlatformPkg/Acpi/MinDsdt/MinDsdt.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Acpi/MinDsdt/MinDsdt.inf -------------------------------------------------------------------------------- /MinPlatformPkg/Bds/Library/BoardBootManagerLibNull/BoardBootManagerLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Bds/Library/BoardBootManagerLibNull/BoardBootManagerLib.c -------------------------------------------------------------------------------- /MinPlatformPkg/Bds/Library/BoardBootManagerLibNull/BoardBootManagerLibNull.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Bds/Library/BoardBootManagerLibNull/BoardBootManagerLibNull.inf -------------------------------------------------------------------------------- /MinPlatformPkg/Bds/Library/DxePlatformBootManagerLib/BdsPlatform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Bds/Library/DxePlatformBootManagerLib/BdsPlatform.c -------------------------------------------------------------------------------- /MinPlatformPkg/Bds/Library/DxePlatformBootManagerLib/BdsPlatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Bds/Library/DxePlatformBootManagerLib/BdsPlatform.h -------------------------------------------------------------------------------- /MinPlatformPkg/Bds/Library/DxePlatformBootManagerLib/DxePlatformBootManagerLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Bds/Library/DxePlatformBootManagerLib/DxePlatformBootManagerLib.inf -------------------------------------------------------------------------------- /MinPlatformPkg/Docs/A_Tour_Beyond_BIOS_Open_Source_IA_Firmware_Platform_Design_Guide_in_EFI_Developer_Kit_II - V2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Docs/A_Tour_Beyond_BIOS_Open_Source_IA_Firmware_Platform_Design_Guide_in_EFI_Developer_Kit_II - V2.pdf -------------------------------------------------------------------------------- /MinPlatformPkg/FspWrapper/Library/DxeFspWrapperPlatformLib/DxeFspWrapperPlatformLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/FspWrapper/Library/DxeFspWrapperPlatformLib/DxeFspWrapperPlatformLib.inf -------------------------------------------------------------------------------- /MinPlatformPkg/FspWrapper/Library/DxeFspWrapperPlatformLib/DxeFspWrapperPlatformResetLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/FspWrapper/Library/DxeFspWrapperPlatformLib/DxeFspWrapperPlatformResetLib.c -------------------------------------------------------------------------------- /MinPlatformPkg/FspWrapper/Library/PeiFspWrapperHobProcessLib/FspWrapperHobProcessLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/FspWrapper/Library/PeiFspWrapperHobProcessLib/FspWrapperHobProcessLib.c -------------------------------------------------------------------------------- /MinPlatformPkg/FspWrapper/Library/PeiFspWrapperHobProcessLib/PeiFspWrapperHobProcessLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/FspWrapper/Library/PeiFspWrapperHobProcessLib/PeiFspWrapperHobProcessLib.inf -------------------------------------------------------------------------------- /MinPlatformPkg/FspWrapper/Library/PeiFspWrapperPlatformLib/PeiFspWrapperPlatformLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/FspWrapper/Library/PeiFspWrapperPlatformLib/PeiFspWrapperPlatformLib.c -------------------------------------------------------------------------------- /MinPlatformPkg/FspWrapper/Library/PeiFspWrapperPlatformLib/PeiFspWrapperPlatformLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/FspWrapper/Library/PeiFspWrapperPlatformLib/PeiFspWrapperPlatformLib.inf -------------------------------------------------------------------------------- /MinPlatformPkg/FspWrapper/Library/PeiFspWrapperPlatformLib/PeiFspWrapperPlatformResetLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/FspWrapper/Library/PeiFspWrapperPlatformLib/PeiFspWrapperPlatformResetLib.c -------------------------------------------------------------------------------- /MinPlatformPkg/FspWrapper/Library/SecFspWrapperPlatformSecLib/FspWrapperPlatformSecLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/FspWrapper/Library/SecFspWrapperPlatformSecLib/FspWrapperPlatformSecLib.c -------------------------------------------------------------------------------- /MinPlatformPkg/FspWrapper/Library/SecFspWrapperPlatformSecLib/FsptCoreUpd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/FspWrapper/Library/SecFspWrapperPlatformSecLib/FsptCoreUpd.h -------------------------------------------------------------------------------- /MinPlatformPkg/FspWrapper/Library/SecFspWrapperPlatformSecLib/Ia32/PeiCoreEntry.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/FspWrapper/Library/SecFspWrapperPlatformSecLib/Ia32/PeiCoreEntry.nasm -------------------------------------------------------------------------------- /MinPlatformPkg/FspWrapper/Library/SecFspWrapperPlatformSecLib/Ia32/SecEntry.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/FspWrapper/Library/SecFspWrapperPlatformSecLib/Ia32/SecEntry.nasm -------------------------------------------------------------------------------- /MinPlatformPkg/FspWrapper/Library/SecFspWrapperPlatformSecLib/Ia32/Stack.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/FspWrapper/Library/SecFspWrapperPlatformSecLib/Ia32/Stack.nasm -------------------------------------------------------------------------------- /MinPlatformPkg/FspWrapper/Library/SecFspWrapperPlatformSecLib/PlatformInit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/FspWrapper/Library/SecFspWrapperPlatformSecLib/PlatformInit.c -------------------------------------------------------------------------------- /MinPlatformPkg/FspWrapper/Library/SecFspWrapperPlatformSecLib/SecFspWrapperPlatformSecLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/FspWrapper/Library/SecFspWrapperPlatformSecLib/SecFspWrapperPlatformSecLib.inf -------------------------------------------------------------------------------- /MinPlatformPkg/FspWrapper/Library/SecFspWrapperPlatformSecLib/SecGetPerformance.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/FspWrapper/Library/SecFspWrapperPlatformSecLib/SecGetPerformance.c -------------------------------------------------------------------------------- /MinPlatformPkg/FspWrapper/Library/SecFspWrapperPlatformSecLib/SecPlatformInformation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/FspWrapper/Library/SecFspWrapperPlatformSecLib/SecPlatformInformation.c -------------------------------------------------------------------------------- /MinPlatformPkg/FspWrapper/Library/SecFspWrapperPlatformSecLib/SecRamInitData.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/FspWrapper/Library/SecFspWrapperPlatformSecLib/SecRamInitData.c -------------------------------------------------------------------------------- /MinPlatformPkg/FspWrapper/Library/SecFspWrapperPlatformSecLib/SecTempRamDone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/FspWrapper/Library/SecFspWrapperPlatformSecLib/SecTempRamDone.c -------------------------------------------------------------------------------- /MinPlatformPkg/FspWrapper/Library/SecFspWrapperPlatformSecLib/X64/PeiCoreEntry.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/FspWrapper/Library/SecFspWrapperPlatformSecLib/X64/PeiCoreEntry.nasm -------------------------------------------------------------------------------- /MinPlatformPkg/FspWrapper/Library/SecFspWrapperPlatformSecLib/X64/SecEntry.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/FspWrapper/Library/SecFspWrapperPlatformSecLib/X64/SecEntry.nasm -------------------------------------------------------------------------------- /MinPlatformPkg/FspWrapper/Library/SecFspWrapperPlatformSecLib/X64/Stack.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/FspWrapper/Library/SecFspWrapperPlatformSecLib/X64/Stack.nasm -------------------------------------------------------------------------------- /MinPlatformPkg/FspWrapper/MpInfo2HobPei/MpInfo2HobPei.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/FspWrapper/MpInfo2HobPei/MpInfo2HobPei.c -------------------------------------------------------------------------------- /MinPlatformPkg/FspWrapper/MpInfo2HobPei/MpInfo2HobPei.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/FspWrapper/MpInfo2HobPei/MpInfo2HobPei.inf -------------------------------------------------------------------------------- /MinPlatformPkg/FspWrapper/SaveMemoryConfig/SaveMemoryConfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/FspWrapper/SaveMemoryConfig/SaveMemoryConfig.c -------------------------------------------------------------------------------- /MinPlatformPkg/FspWrapper/SaveMemoryConfig/SaveMemoryConfig.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/FspWrapper/SaveMemoryConfig/SaveMemoryConfig.inf -------------------------------------------------------------------------------- /MinPlatformPkg/Hsti/HstiIbvPlatformDxe/ExternalDeviceDmaProtection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Hsti/HstiIbvPlatformDxe/ExternalDeviceDmaProtection.c -------------------------------------------------------------------------------- /MinPlatformPkg/Hsti/HstiIbvPlatformDxe/FirmwareTrustConfigurationCryptoStrength.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Hsti/HstiIbvPlatformDxe/FirmwareTrustConfigurationCryptoStrength.c -------------------------------------------------------------------------------- /MinPlatformPkg/Hsti/HstiIbvPlatformDxe/FirmwareVersionRollbackProtection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Hsti/HstiIbvPlatformDxe/FirmwareVersionRollbackProtection.c -------------------------------------------------------------------------------- /MinPlatformPkg/Hsti/HstiIbvPlatformDxe/HstiIbvPlatformDxe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Hsti/HstiIbvPlatformDxe/HstiIbvPlatformDxe.c -------------------------------------------------------------------------------- /MinPlatformPkg/Hsti/HstiIbvPlatformDxe/HstiIbvPlatformDxe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Hsti/HstiIbvPlatformDxe/HstiIbvPlatformDxe.h -------------------------------------------------------------------------------- /MinPlatformPkg/Hsti/HstiIbvPlatformDxe/HstiIbvPlatformDxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Hsti/HstiIbvPlatformDxe/HstiIbvPlatformDxe.inf -------------------------------------------------------------------------------- /MinPlatformPkg/Hsti/HstiIbvPlatformDxe/MorSupport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Hsti/HstiIbvPlatformDxe/MorSupport.c -------------------------------------------------------------------------------- /MinPlatformPkg/Hsti/HstiIbvPlatformDxe/NoTestKeyVerification.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Hsti/HstiIbvPlatformDxe/NoTestKeyVerification.c -------------------------------------------------------------------------------- /MinPlatformPkg/Hsti/HstiIbvPlatformDxe/SecureBootBypass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Hsti/HstiIbvPlatformDxe/SecureBootBypass.c -------------------------------------------------------------------------------- /MinPlatformPkg/Include/AcpiS3MemoryNvData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Include/AcpiS3MemoryNvData.h -------------------------------------------------------------------------------- /MinPlatformPkg/Include/Dsc/CoreCommonLib.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Include/Dsc/CoreCommonLib.dsc -------------------------------------------------------------------------------- /MinPlatformPkg/Include/Dsc/CoreDxeInclude.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Include/Dsc/CoreDxeInclude.dsc -------------------------------------------------------------------------------- /MinPlatformPkg/Include/Dsc/CoreDxeLib.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Include/Dsc/CoreDxeLib.dsc -------------------------------------------------------------------------------- /MinPlatformPkg/Include/Dsc/CorePeiInclude.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Include/Dsc/CorePeiInclude.dsc -------------------------------------------------------------------------------- /MinPlatformPkg/Include/Dsc/CorePeiLib.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Include/Dsc/CorePeiLib.dsc -------------------------------------------------------------------------------- /MinPlatformPkg/Include/Dsc/MinPlatformFeaturesPcd.dsc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Include/Dsc/MinPlatformFeaturesPcd.dsc.inc -------------------------------------------------------------------------------- /MinPlatformPkg/Include/Fdf/CommonSpiFvHeaderInfo.fdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Include/Fdf/CommonSpiFvHeaderInfo.fdf -------------------------------------------------------------------------------- /MinPlatformPkg/Include/Fdf/CoreOsBootInclude.fdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Include/Fdf/CoreOsBootInclude.fdf -------------------------------------------------------------------------------- /MinPlatformPkg/Include/Fdf/CorePostMemoryInclude.fdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Include/Fdf/CorePostMemoryInclude.fdf -------------------------------------------------------------------------------- /MinPlatformPkg/Include/Fdf/CorePreMemoryInclude.fdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Include/Fdf/CorePreMemoryInclude.fdf -------------------------------------------------------------------------------- /MinPlatformPkg/Include/Fdf/CoreSecurityLateInclude.fdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Include/Fdf/CoreSecurityLateInclude.fdf -------------------------------------------------------------------------------- /MinPlatformPkg/Include/Fdf/CoreSecurityPostMemoryInclude.fdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Include/Fdf/CoreSecurityPostMemoryInclude.fdf -------------------------------------------------------------------------------- /MinPlatformPkg/Include/Fdf/CoreSecurityPreMemoryInclude.fdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Include/Fdf/CoreSecurityPreMemoryInclude.fdf -------------------------------------------------------------------------------- /MinPlatformPkg/Include/Fdf/CoreUefiBootInclude.fdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Include/Fdf/CoreUefiBootInclude.fdf -------------------------------------------------------------------------------- /MinPlatformPkg/Include/Fdf/RuleInclude.fdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Include/Fdf/RuleInclude.fdf -------------------------------------------------------------------------------- /MinPlatformPkg/Include/Fsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Include/Fsp.h -------------------------------------------------------------------------------- /MinPlatformPkg/Include/HstiIbvFeatureBit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Include/HstiIbvFeatureBit.h -------------------------------------------------------------------------------- /MinPlatformPkg/Include/Library/AslUpdateLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Include/Library/AslUpdateLib.h -------------------------------------------------------------------------------- /MinPlatformPkg/Include/Library/BoardAcpiEnableLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Include/Library/BoardAcpiEnableLib.h -------------------------------------------------------------------------------- /MinPlatformPkg/Include/Library/BoardAcpiTableLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Include/Library/BoardAcpiTableLib.h -------------------------------------------------------------------------------- /MinPlatformPkg/Include/Library/BoardBootManagerLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Include/Library/BoardBootManagerLib.h -------------------------------------------------------------------------------- /MinPlatformPkg/Include/Library/BoardInitLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Include/Library/BoardInitLib.h -------------------------------------------------------------------------------- /MinPlatformPkg/Include/Library/CompressLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Include/Library/CompressLib.h -------------------------------------------------------------------------------- /MinPlatformPkg/Include/Library/HobVariableLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Include/Library/HobVariableLib.h -------------------------------------------------------------------------------- /MinPlatformPkg/Include/Library/LargeVariableReadLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Include/Library/LargeVariableReadLib.h -------------------------------------------------------------------------------- /MinPlatformPkg/Include/Library/LargeVariableWriteLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Include/Library/LargeVariableWriteLib.h -------------------------------------------------------------------------------- /MinPlatformPkg/Include/Library/MultiBoardAcpiSupportLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Include/Library/MultiBoardAcpiSupportLib.h -------------------------------------------------------------------------------- /MinPlatformPkg/Include/Library/MultiBoardInitSupportLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Include/Library/MultiBoardInitSupportLib.h -------------------------------------------------------------------------------- /MinPlatformPkg/Include/Library/PeiLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Include/Library/PeiLib.h -------------------------------------------------------------------------------- /MinPlatformPkg/Include/Library/PhatAcpiLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Include/Library/PhatAcpiLib.h -------------------------------------------------------------------------------- /MinPlatformPkg/Include/Library/PlatformConfigCheckLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Include/Library/PlatformConfigCheckLib.h -------------------------------------------------------------------------------- /MinPlatformPkg/Include/Library/ReportCpuHobLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Include/Library/ReportCpuHobLib.h -------------------------------------------------------------------------------- /MinPlatformPkg/Include/Library/ReportFvLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Include/Library/ReportFvLib.h -------------------------------------------------------------------------------- /MinPlatformPkg/Include/Library/SecBoardInitLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Include/Library/SecBoardInitLib.h -------------------------------------------------------------------------------- /MinPlatformPkg/Include/Library/SetCacheMtrrLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Include/Library/SetCacheMtrrLib.h -------------------------------------------------------------------------------- /MinPlatformPkg/Include/Library/SiliconPolicyInitLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Include/Library/SiliconPolicyInitLib.h -------------------------------------------------------------------------------- /MinPlatformPkg/Include/Library/SiliconPolicyUpdateLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Include/Library/SiliconPolicyUpdateLib.h -------------------------------------------------------------------------------- /MinPlatformPkg/Include/Library/TestPointCheckLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Include/Library/TestPointCheckLib.h -------------------------------------------------------------------------------- /MinPlatformPkg/Include/Library/TestPointLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Include/Library/TestPointLib.h -------------------------------------------------------------------------------- /MinPlatformPkg/Include/Library/TestPointMtrrInfoLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Include/Library/TestPointMtrrInfoLib.h -------------------------------------------------------------------------------- /MinPlatformPkg/Include/Library/TestPointPciSpeedInfoLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Include/Library/TestPointPciSpeedInfoLib.h -------------------------------------------------------------------------------- /MinPlatformPkg/Include/Library/TpmPlatformHierarchyLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Include/Library/TpmPlatformHierarchyLib.h -------------------------------------------------------------------------------- /MinPlatformPkg/Include/Library/VariableReadLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Include/Library/VariableReadLib.h -------------------------------------------------------------------------------- /MinPlatformPkg/Include/Library/VariableWriteLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Include/Library/VariableWriteLib.h -------------------------------------------------------------------------------- /MinPlatformPkg/Include/Ppi/BaseMemoryTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Include/Ppi/BaseMemoryTest.h -------------------------------------------------------------------------------- /MinPlatformPkg/Include/Ppi/PlatformInitTempRamExitPpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Include/Ppi/PlatformInitTempRamExitPpi.h -------------------------------------------------------------------------------- /MinPlatformPkg/Include/Ppi/PlatformMemorySize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Include/Ppi/PlatformMemorySize.h -------------------------------------------------------------------------------- /MinPlatformPkg/Library/BaseLargeVariableLib/BaseLargeVariableReadLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Library/BaseLargeVariableLib/BaseLargeVariableReadLib.inf -------------------------------------------------------------------------------- /MinPlatformPkg/Library/BaseLargeVariableLib/BaseLargeVariableWriteLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Library/BaseLargeVariableLib/BaseLargeVariableWriteLib.inf -------------------------------------------------------------------------------- /MinPlatformPkg/Library/BaseLargeVariableLib/LargeVariableCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Library/BaseLargeVariableLib/LargeVariableCommon.h -------------------------------------------------------------------------------- /MinPlatformPkg/Library/BaseLargeVariableLib/LargeVariableReadLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Library/BaseLargeVariableLib/LargeVariableReadLib.c -------------------------------------------------------------------------------- /MinPlatformPkg/Library/BaseLargeVariableLib/LargeVariableWriteLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Library/BaseLargeVariableLib/LargeVariableWriteLib.c -------------------------------------------------------------------------------- /MinPlatformPkg/Library/BaseVariableReadLibNull/BaseVariableReadLibNull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Library/BaseVariableReadLibNull/BaseVariableReadLibNull.c -------------------------------------------------------------------------------- /MinPlatformPkg/Library/BaseVariableReadLibNull/BaseVariableReadLibNull.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Library/BaseVariableReadLibNull/BaseVariableReadLibNull.inf -------------------------------------------------------------------------------- /MinPlatformPkg/Library/CompressLib/CompressLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Library/CompressLib/CompressLib.c -------------------------------------------------------------------------------- /MinPlatformPkg/Library/CompressLib/CompressLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Library/CompressLib/CompressLib.inf -------------------------------------------------------------------------------- /MinPlatformPkg/Library/DxeRuntimeVariableReadLib/DxeRuntimeVariableReadLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Library/DxeRuntimeVariableReadLib/DxeRuntimeVariableReadLib.c -------------------------------------------------------------------------------- /MinPlatformPkg/Library/DxeRuntimeVariableReadLib/DxeRuntimeVariableReadLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Library/DxeRuntimeVariableReadLib/DxeRuntimeVariableReadLib.inf -------------------------------------------------------------------------------- /MinPlatformPkg/Library/DxeRuntimeVariableWriteLib/DxeRuntimeVariableWriteLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Library/DxeRuntimeVariableWriteLib/DxeRuntimeVariableWriteLib.c -------------------------------------------------------------------------------- /MinPlatformPkg/Library/DxeRuntimeVariableWriteLib/DxeRuntimeVariableWriteLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Library/DxeRuntimeVariableWriteLib/DxeRuntimeVariableWriteLib.inf -------------------------------------------------------------------------------- /MinPlatformPkg/Library/PeiHobVariableLibFce/Fce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Library/PeiHobVariableLibFce/Fce.h -------------------------------------------------------------------------------- /MinPlatformPkg/Library/PeiHobVariableLibFce/InternalCommonLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Library/PeiHobVariableLibFce/InternalCommonLib.c -------------------------------------------------------------------------------- /MinPlatformPkg/Library/PeiHobVariableLibFce/PeiHobVariableLibFce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Library/PeiHobVariableLibFce/PeiHobVariableLibFce.c -------------------------------------------------------------------------------- /MinPlatformPkg/Library/PeiHobVariableLibFce/PeiHobVariableLibFce.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Library/PeiHobVariableLibFce/PeiHobVariableLibFce.inf -------------------------------------------------------------------------------- /MinPlatformPkg/Library/PeiHobVariableLibFce/PeiHobVariableLibFceOptSize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Library/PeiHobVariableLibFce/PeiHobVariableLibFceOptSize.c -------------------------------------------------------------------------------- /MinPlatformPkg/Library/PeiHobVariableLibFce/PeiHobVariableLibFceOptSize.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Library/PeiHobVariableLibFce/PeiHobVariableLibFceOptSize.inf -------------------------------------------------------------------------------- /MinPlatformPkg/Library/PeiHobVariableLibFce/Variable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Library/PeiHobVariableLibFce/Variable.h -------------------------------------------------------------------------------- /MinPlatformPkg/Library/PeiLib/PeiLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Library/PeiLib/PeiLib.c -------------------------------------------------------------------------------- /MinPlatformPkg/Library/PeiLib/PeiLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Library/PeiLib/PeiLib.inf -------------------------------------------------------------------------------- /MinPlatformPkg/Library/PeiVariableReadLib/PeiVariableReadLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Library/PeiVariableReadLib/PeiVariableReadLib.c -------------------------------------------------------------------------------- /MinPlatformPkg/Library/PeiVariableReadLib/PeiVariableReadLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Library/PeiVariableReadLib/PeiVariableReadLib.inf -------------------------------------------------------------------------------- /MinPlatformPkg/Library/SerialPortTerminalLib/SerialPortTerminalLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Library/SerialPortTerminalLib/SerialPortTerminalLib.c -------------------------------------------------------------------------------- /MinPlatformPkg/Library/SerialPortTerminalLib/SerialPortTerminalLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Library/SerialPortTerminalLib/SerialPortTerminalLib.h -------------------------------------------------------------------------------- /MinPlatformPkg/Library/SerialPortTerminalLib/SerialPortTerminalLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Library/SerialPortTerminalLib/SerialPortTerminalLib.inf -------------------------------------------------------------------------------- /MinPlatformPkg/Library/SetCacheMtrrLib/SetCacheMtrrLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Library/SetCacheMtrrLib/SetCacheMtrrLib.c -------------------------------------------------------------------------------- /MinPlatformPkg/Library/SetCacheMtrrLib/SetCacheMtrrLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Library/SetCacheMtrrLib/SetCacheMtrrLib.inf -------------------------------------------------------------------------------- /MinPlatformPkg/Library/SetCacheMtrrLib/SetCacheMtrrLibNull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Library/SetCacheMtrrLib/SetCacheMtrrLibNull.c -------------------------------------------------------------------------------- /MinPlatformPkg/Library/SetCacheMtrrLib/SetCacheMtrrLibNull.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Library/SetCacheMtrrLib/SetCacheMtrrLibNull.inf -------------------------------------------------------------------------------- /MinPlatformPkg/Library/SmmVariableReadLib/SmmVariableReadCommon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Library/SmmVariableReadLib/SmmVariableReadCommon.c -------------------------------------------------------------------------------- /MinPlatformPkg/Library/SmmVariableReadLib/StandaloneMmVariableReadLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Library/SmmVariableReadLib/StandaloneMmVariableReadLib.inf -------------------------------------------------------------------------------- /MinPlatformPkg/Library/SmmVariableReadLib/StandaloneMmVariableReadLibConstructor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Library/SmmVariableReadLib/StandaloneMmVariableReadLibConstructor.c -------------------------------------------------------------------------------- /MinPlatformPkg/Library/SmmVariableReadLib/TraditionalMmVariableReadLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Library/SmmVariableReadLib/TraditionalMmVariableReadLib.inf -------------------------------------------------------------------------------- /MinPlatformPkg/Library/SmmVariableReadLib/TraditionalMmVariableReadLibConstructor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Library/SmmVariableReadLib/TraditionalMmVariableReadLibConstructor.c -------------------------------------------------------------------------------- /MinPlatformPkg/Library/SmmVariableWriteLib/SmmVariableWriteCommon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Library/SmmVariableWriteLib/SmmVariableWriteCommon.c -------------------------------------------------------------------------------- /MinPlatformPkg/Library/SmmVariableWriteLib/StandaloneMmVariableWriteLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Library/SmmVariableWriteLib/StandaloneMmVariableWriteLib.inf -------------------------------------------------------------------------------- /MinPlatformPkg/Library/SmmVariableWriteLib/StandaloneMmVariableWriteLibConstructor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Library/SmmVariableWriteLib/StandaloneMmVariableWriteLibConstructor.c -------------------------------------------------------------------------------- /MinPlatformPkg/Library/SmmVariableWriteLib/TraditionalMmVariableWriteLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Library/SmmVariableWriteLib/TraditionalMmVariableWriteLib.inf -------------------------------------------------------------------------------- /MinPlatformPkg/Library/SmmVariableWriteLib/TraditionalMmVariableWriteLibConstructor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Library/SmmVariableWriteLib/TraditionalMmVariableWriteLibConstructor.c -------------------------------------------------------------------------------- /MinPlatformPkg/Library/TestPointMtrrInfoLibNull/TestPointMtrrInfoLibNull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Library/TestPointMtrrInfoLibNull/TestPointMtrrInfoLibNull.c -------------------------------------------------------------------------------- /MinPlatformPkg/Library/TestPointMtrrInfoLibNull/TestPointMtrrInfoLibNull.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Library/TestPointMtrrInfoLibNull/TestPointMtrrInfoLibNull.inf -------------------------------------------------------------------------------- /MinPlatformPkg/Library/TestPointPciSpeedInfoLibNull/TestPointPciSpeedInfoLibNull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Library/TestPointPciSpeedInfoLibNull/TestPointPciSpeedInfoLibNull.c -------------------------------------------------------------------------------- /MinPlatformPkg/Library/TestPointPciSpeedInfoLibNull/TestPointPciSpeedInfoLibNull.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Library/TestPointPciSpeedInfoLibNull/TestPointPciSpeedInfoLibNull.inf -------------------------------------------------------------------------------- /MinPlatformPkg/MinPlatformPkg.ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/MinPlatformPkg.ci.yaml -------------------------------------------------------------------------------- /MinPlatformPkg/MinPlatformPkg.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/MinPlatformPkg.dec -------------------------------------------------------------------------------- /MinPlatformPkg/MinPlatformPkg.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/MinPlatformPkg.dsc -------------------------------------------------------------------------------- /MinPlatformPkg/Pci/Library/PciHostBridgeLibSimple/PciHostBridgeLibSimple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Pci/Library/PciHostBridgeLibSimple/PciHostBridgeLibSimple.c -------------------------------------------------------------------------------- /MinPlatformPkg/Pci/Library/PciHostBridgeLibSimple/PciHostBridgeLibSimple.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Pci/Library/PciHostBridgeLibSimple/PciHostBridgeLibSimple.inf -------------------------------------------------------------------------------- /MinPlatformPkg/Pci/Library/PciSegmentInfoLibSimple/PciSegmentInfoLibSimple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Pci/Library/PciSegmentInfoLibSimple/PciSegmentInfoLibSimple.c -------------------------------------------------------------------------------- /MinPlatformPkg/Pci/Library/PciSegmentInfoLibSimple/PciSegmentInfoLibSimple.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Pci/Library/PciSegmentInfoLibSimple/PciSegmentInfoLibSimple.inf -------------------------------------------------------------------------------- /MinPlatformPkg/PlatformInit/Library/BoardInitLibNull/BoardInitLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/PlatformInit/Library/BoardInitLibNull/BoardInitLib.c -------------------------------------------------------------------------------- /MinPlatformPkg/PlatformInit/Library/BoardInitLibNull/BoardInitLibNull.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/PlatformInit/Library/BoardInitLibNull/BoardInitLibNull.inf -------------------------------------------------------------------------------- /MinPlatformPkg/PlatformInit/Library/MultiBoardInitSupportLib/DxeBoardInitLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/PlatformInit/Library/MultiBoardInitSupportLib/DxeBoardInitLib.c -------------------------------------------------------------------------------- /MinPlatformPkg/PlatformInit/Library/MultiBoardInitSupportLib/DxeMultiBoardInitSupportLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/PlatformInit/Library/MultiBoardInitSupportLib/DxeMultiBoardInitSupportLib.c -------------------------------------------------------------------------------- /MinPlatformPkg/PlatformInit/Library/MultiBoardInitSupportLib/DxeMultiBoardInitSupportLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/PlatformInit/Library/MultiBoardInitSupportLib/DxeMultiBoardInitSupportLib.inf -------------------------------------------------------------------------------- /MinPlatformPkg/PlatformInit/Library/MultiBoardInitSupportLib/PeiBoardInitLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/PlatformInit/Library/MultiBoardInitSupportLib/PeiBoardInitLib.c -------------------------------------------------------------------------------- /MinPlatformPkg/PlatformInit/Library/MultiBoardInitSupportLib/PeiMultiBoardInitSupportLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/PlatformInit/Library/MultiBoardInitSupportLib/PeiMultiBoardInitSupportLib.c -------------------------------------------------------------------------------- /MinPlatformPkg/PlatformInit/Library/MultiBoardInitSupportLib/PeiMultiBoardInitSupportLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/PlatformInit/Library/MultiBoardInitSupportLib/PeiMultiBoardInitSupportLib.inf -------------------------------------------------------------------------------- /MinPlatformPkg/PlatformInit/Library/PeiReportFvLib/PeiReportFvLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/PlatformInit/Library/PeiReportFvLib/PeiReportFvLib.c -------------------------------------------------------------------------------- /MinPlatformPkg/PlatformInit/Library/PeiReportFvLib/PeiReportFvLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/PlatformInit/Library/PeiReportFvLib/PeiReportFvLib.inf -------------------------------------------------------------------------------- /MinPlatformPkg/PlatformInit/Library/ReportCpuHobLib/ReportCpuHobLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/PlatformInit/Library/ReportCpuHobLib/ReportCpuHobLib.c -------------------------------------------------------------------------------- /MinPlatformPkg/PlatformInit/Library/ReportCpuHobLib/ReportCpuHobLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/PlatformInit/Library/ReportCpuHobLib/ReportCpuHobLib.inf -------------------------------------------------------------------------------- /MinPlatformPkg/PlatformInit/Library/SecBoardInitLibNull/Ia32/SecBoardInit.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/PlatformInit/Library/SecBoardInitLibNull/Ia32/SecBoardInit.nasm -------------------------------------------------------------------------------- /MinPlatformPkg/PlatformInit/Library/SecBoardInitLibNull/SecBoardInitLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/PlatformInit/Library/SecBoardInitLibNull/SecBoardInitLib.c -------------------------------------------------------------------------------- /MinPlatformPkg/PlatformInit/Library/SecBoardInitLibNull/SecBoardInitLibNull.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/PlatformInit/Library/SecBoardInitLibNull/SecBoardInitLibNull.inf -------------------------------------------------------------------------------- /MinPlatformPkg/PlatformInit/Library/SiliconPolicyInitLibNull/SiliconPolicyInitLibNull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/PlatformInit/Library/SiliconPolicyInitLibNull/SiliconPolicyInitLibNull.c -------------------------------------------------------------------------------- /MinPlatformPkg/PlatformInit/Library/SiliconPolicyInitLibNull/SiliconPolicyInitLibNull.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/PlatformInit/Library/SiliconPolicyInitLibNull/SiliconPolicyInitLibNull.inf -------------------------------------------------------------------------------- /MinPlatformPkg/PlatformInit/Library/SiliconPolicyUpdateLibNull/SiliconPolicyUpdateLibNull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/PlatformInit/Library/SiliconPolicyUpdateLibNull/SiliconPolicyUpdateLibNull.c -------------------------------------------------------------------------------- /MinPlatformPkg/PlatformInit/Library/SiliconPolicyUpdateLibNull/SiliconPolicyUpdateLibNull.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/PlatformInit/Library/SiliconPolicyUpdateLibNull/SiliconPolicyUpdateLibNull.inf -------------------------------------------------------------------------------- /MinPlatformPkg/PlatformInit/PlatformInitDxe/PlatformInitDxe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/PlatformInit/PlatformInitDxe/PlatformInitDxe.c -------------------------------------------------------------------------------- /MinPlatformPkg/PlatformInit/PlatformInitDxe/PlatformInitDxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/PlatformInit/PlatformInitDxe/PlatformInitDxe.inf -------------------------------------------------------------------------------- /MinPlatformPkg/PlatformInit/PlatformInitPei/FspSupport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/PlatformInit/PlatformInitPei/FspSupport.c -------------------------------------------------------------------------------- /MinPlatformPkg/PlatformInit/PlatformInitPei/FspSupportNull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/PlatformInit/PlatformInitPei/FspSupportNull.c -------------------------------------------------------------------------------- /MinPlatformPkg/PlatformInit/PlatformInitPei/PlatformInitPostMem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/PlatformInit/PlatformInitPei/PlatformInitPostMem.c -------------------------------------------------------------------------------- /MinPlatformPkg/PlatformInit/PlatformInitPei/PlatformInitPostMem.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/PlatformInit/PlatformInitPei/PlatformInitPostMem.inf -------------------------------------------------------------------------------- /MinPlatformPkg/PlatformInit/PlatformInitPei/PlatformInitPreMem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/PlatformInit/PlatformInitPei/PlatformInitPreMem.c -------------------------------------------------------------------------------- /MinPlatformPkg/PlatformInit/PlatformInitPei/PlatformInitPreMem.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/PlatformInit/PlatformInitPei/PlatformInitPreMem.inf -------------------------------------------------------------------------------- /MinPlatformPkg/PlatformInit/PlatformInitPei/PlatformInitPreMemNonFsp.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/PlatformInit/PlatformInitPei/PlatformInitPreMemNonFsp.inf -------------------------------------------------------------------------------- /MinPlatformPkg/PlatformInit/PlatformInitSmm/EventNotify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/PlatformInit/PlatformInitSmm/EventNotify.h -------------------------------------------------------------------------------- /MinPlatformPkg/PlatformInit/PlatformInitSmm/PlatformInitMm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/PlatformInit/PlatformInitSmm/PlatformInitMm.c -------------------------------------------------------------------------------- /MinPlatformPkg/PlatformInit/PlatformInitSmm/PlatformInitSmm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/PlatformInit/PlatformInitSmm/PlatformInitSmm.c -------------------------------------------------------------------------------- /MinPlatformPkg/PlatformInit/PlatformInitSmm/PlatformInitSmm.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/PlatformInit/PlatformInitSmm/PlatformInitSmm.inf -------------------------------------------------------------------------------- /MinPlatformPkg/PlatformInit/PlatformInitSmm/PlatformInitStandaloneMm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/PlatformInit/PlatformInitSmm/PlatformInitStandaloneMm.c -------------------------------------------------------------------------------- /MinPlatformPkg/PlatformInit/PlatformInitSmm/PlatformInitStandaloneMm.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/PlatformInit/PlatformInitSmm/PlatformInitStandaloneMm.inf -------------------------------------------------------------------------------- /MinPlatformPkg/PlatformInit/ReportFv/ReportFvPei.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/PlatformInit/ReportFv/ReportFvPei.c -------------------------------------------------------------------------------- /MinPlatformPkg/PlatformInit/ReportFv/ReportFvPei.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/PlatformInit/ReportFv/ReportFvPei.inf -------------------------------------------------------------------------------- /MinPlatformPkg/PlatformInit/SiliconPolicyDxe/SiliconPolicyDxe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/PlatformInit/SiliconPolicyDxe/SiliconPolicyDxe.c -------------------------------------------------------------------------------- /MinPlatformPkg/PlatformInit/SiliconPolicyDxe/SiliconPolicyDxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/PlatformInit/SiliconPolicyDxe/SiliconPolicyDxe.inf -------------------------------------------------------------------------------- /MinPlatformPkg/PlatformInit/SiliconPolicyPei/SiliconPolicyPeiPostMem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/PlatformInit/SiliconPolicyPei/SiliconPolicyPeiPostMem.c -------------------------------------------------------------------------------- /MinPlatformPkg/PlatformInit/SiliconPolicyPei/SiliconPolicyPeiPostMem.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/PlatformInit/SiliconPolicyPei/SiliconPolicyPeiPostMem.inf -------------------------------------------------------------------------------- /MinPlatformPkg/PlatformInit/SiliconPolicyPei/SiliconPolicyPeiPreMem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/PlatformInit/SiliconPolicyPei/SiliconPolicyPeiPreMem.c -------------------------------------------------------------------------------- /MinPlatformPkg/PlatformInit/SiliconPolicyPei/SiliconPolicyPeiPreMem.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/PlatformInit/SiliconPolicyPei/SiliconPolicyPeiPreMem.inf -------------------------------------------------------------------------------- /MinPlatformPkg/Services/StallServicePei/StallServicePei.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Services/StallServicePei/StallServicePei.c -------------------------------------------------------------------------------- /MinPlatformPkg/Services/StallServicePei/StallServicePei.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Services/StallServicePei/StallServicePei.inf -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/PlatformConfigCheckLibNull/PlatformConfigCheckLibNull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/PlatformConfigCheckLibNull/PlatformConfigCheckLibNull.c -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/PlatformConfigCheckLibNull/PlatformConfigCheckLibNull.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/PlatformConfigCheckLibNull/PlatformConfigCheckLibNull.inf -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointCheckLib/DxeCheckAcpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointCheckLib/DxeCheckAcpi.c -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointCheckLib/DxeCheckAcpiDmar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointCheckLib/DxeCheckAcpiDmar.c -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointCheckLib/DxeCheckAcpiHpet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointCheckLib/DxeCheckAcpiHpet.c -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointCheckLib/DxeCheckAcpiMadt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointCheckLib/DxeCheckAcpiMadt.c -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointCheckLib/DxeCheckAcpiMcfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointCheckLib/DxeCheckAcpiMcfg.c -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointCheckLib/DxeCheckAcpiTpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointCheckLib/DxeCheckAcpiTpm.c -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointCheckLib/DxeCheckAcpiWsmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointCheckLib/DxeCheckAcpiWsmt.c -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointCheckLib/DxeCheckBootVariable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointCheckLib/DxeCheckBootVariable.c -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointCheckLib/DxeCheckConsoleVariable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointCheckLib/DxeCheckConsoleVariable.c -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointCheckLib/DxeCheckDevicePath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointCheckLib/DxeCheckDevicePath.c -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointCheckLib/DxeCheckDmaProtection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointCheckLib/DxeCheckDmaProtection.c -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointCheckLib/DxeCheckEsrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointCheckLib/DxeCheckEsrt.c -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointCheckLib/DxeCheckGcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointCheckLib/DxeCheckGcd.c -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointCheckLib/DxeCheckHsti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointCheckLib/DxeCheckHsti.c -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointCheckLib/DxeCheckLoadedImage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointCheckLib/DxeCheckLoadedImage.c -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointCheckLib/DxeCheckMemoryAttribute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointCheckLib/DxeCheckMemoryAttribute.c -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointCheckLib/DxeCheckMemoryMap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointCheckLib/DxeCheckMemoryMap.c -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointCheckLib/DxeCheckMemoryTypeInformation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointCheckLib/DxeCheckMemoryTypeInformation.c -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointCheckLib/DxeCheckMtrr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointCheckLib/DxeCheckMtrr.c -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointCheckLib/DxeCheckPci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointCheckLib/DxeCheckPci.c -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointCheckLib/DxeCheckPiSignedFvBoot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointCheckLib/DxeCheckPiSignedFvBoot.c -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointCheckLib/DxeCheckSmiHandlerInstrument.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointCheckLib/DxeCheckSmiHandlerInstrument.c -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointCheckLib/DxeCheckSmmInfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointCheckLib/DxeCheckSmmInfo.c -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointCheckLib/DxeCheckTcgMor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointCheckLib/DxeCheckTcgMor.c -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointCheckLib/DxeCheckTcgTrustedBoot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointCheckLib/DxeCheckTcgTrustedBoot.c -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointCheckLib/DxeCheckUefiSecureBoot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointCheckLib/DxeCheckUefiSecureBoot.c -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointCheckLib/DxeCheckVariable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointCheckLib/DxeCheckVariable.c -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointCheckLib/DxeTestPointCheckLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointCheckLib/DxeTestPointCheckLib.c -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointCheckLib/DxeTestPointCheckLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointCheckLib/DxeTestPointCheckLib.inf -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointCheckLib/MmCheckCommunicationBuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointCheckLib/MmCheckCommunicationBuffer.c -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointCheckLib/MmCheckLoadedImage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointCheckLib/MmCheckLoadedImage.c -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointCheckLib/MmCheckMemoryAttribute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointCheckLib/MmCheckMemoryAttribute.c -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointCheckLib/MmCheckPaging.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointCheckLib/MmCheckPaging.c -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointCheckLib/MmCheckSmrr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointCheckLib/MmCheckSmrr.c -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointCheckLib/MmTestPointCheckLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointCheckLib/MmTestPointCheckLib.c -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointCheckLib/PeiCheckDmaProtection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointCheckLib/PeiCheckDmaProtection.c -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointCheckLib/PeiCheckFvInfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointCheckLib/PeiCheckFvInfo.c -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointCheckLib/PeiCheckHob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointCheckLib/PeiCheckHob.c -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointCheckLib/PeiCheckMtrr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointCheckLib/PeiCheckMtrr.c -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointCheckLib/PeiCheckPci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointCheckLib/PeiCheckPci.c -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointCheckLib/PeiCheckSmmInfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointCheckLib/PeiCheckSmmInfo.c -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointCheckLib/PeiTestPointCheckLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointCheckLib/PeiTestPointCheckLib.c -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointCheckLib/PeiTestPointCheckLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointCheckLib/PeiTestPointCheckLib.inf -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointCheckLib/SecCheckCpuInfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointCheckLib/SecCheckCpuInfo.c -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointCheckLib/SecTestPointCheckLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointCheckLib/SecTestPointCheckLib.c -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointCheckLib/SecTestPointCheckLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointCheckLib/SecTestPointCheckLib.inf -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointCheckLib/StandaloneMmCheckMemoryAttribute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointCheckLib/StandaloneMmCheckMemoryAttribute.c -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointCheckLib/StandaloneMmTestPointCheckLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointCheckLib/StandaloneMmTestPointCheckLib.c -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointCheckLib/StandaloneMmTestPointCheckLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointCheckLib/StandaloneMmTestPointCheckLib.inf -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointCheckLib/TestPointCheckMtrr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointCheckLib/TestPointCheckMtrr.c -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointCheckLib/TestPointCheckMtrr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointCheckLib/TestPointCheckMtrr.h -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointCheckLib/TestPointHelp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointCheckLib/TestPointHelp.c -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointCheckLib/TestPointImageDump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointCheckLib/TestPointImageDump.c -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointCheckLib/TestPointImageDump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointCheckLib/TestPointImageDump.h -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointCheckLib/TestPointInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointCheckLib/TestPointInternal.h -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointCheckLib/TestPointMm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointCheckLib/TestPointMm.h -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointCheckLib/TraditionalMmTestPointCheckLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointCheckLib/TraditionalMmTestPointCheckLib.c -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointCheckLib/TraditionalMmTestPointCheckLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointCheckLib/TraditionalMmTestPointCheckLib.inf -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointCheckLibNull/TestPointCheckLibNull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointCheckLibNull/TestPointCheckLibNull.c -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointCheckLibNull/TestPointCheckLibNull.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointCheckLibNull/TestPointCheckLibNull.inf -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointLib/DxeTestPoint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointLib/DxeTestPoint.c -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointLib/DxeTestPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointLib/DxeTestPoint.h -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointLib/DxeTestPointAip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointLib/DxeTestPointAip.c -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointLib/DxeTestPointLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointLib/DxeTestPointLib.inf -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointLib/MmTestPoint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointLib/MmTestPoint.c -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointLib/MmTestPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointLib/MmTestPoint.h -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointLib/MmTestPointAip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointLib/MmTestPointAip.c -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointLib/MmTestPointCommunication.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointLib/MmTestPointCommunication.c -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointLib/PeiTestPoint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointLib/PeiTestPoint.c -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointLib/PeiTestPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointLib/PeiTestPoint.h -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointLib/PeiTestPointLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointLib/PeiTestPointLib.inf -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointLib/SmmTestPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointLib/SmmTestPoint.h -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointLib/SmmTestPointCommunication.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointLib/SmmTestPointCommunication.c -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointLib/SmmTestPointLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointLib/SmmTestPointLib.inf -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointLib/StandaloneMmTestPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointLib/StandaloneMmTestPoint.h -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointLib/StandaloneMmTestPointCommunication.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointLib/StandaloneMmTestPointCommunication.c -------------------------------------------------------------------------------- /MinPlatformPkg/Test/Library/TestPointLib/StandaloneMmTestPointLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/Library/TestPointLib/StandaloneMmTestPointLib.inf -------------------------------------------------------------------------------- /MinPlatformPkg/Test/TestPointDumpApp/TestPointDump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/TestPointDumpApp/TestPointDump.c -------------------------------------------------------------------------------- /MinPlatformPkg/Test/TestPointDumpApp/TestPointDumpApp.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/TestPointDumpApp/TestPointDumpApp.inf -------------------------------------------------------------------------------- /MinPlatformPkg/Test/TestPointStubDxe/TestPointStubDxeMm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/TestPointStubDxe/TestPointStubDxeMm.c -------------------------------------------------------------------------------- /MinPlatformPkg/Test/TestPointStubDxe/TestPointStubDxeMm.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Test/TestPointStubDxe/TestPointStubDxeMm.inf -------------------------------------------------------------------------------- /MinPlatformPkg/Tools/AmlGenOffset/AmlGenOffset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Tools/AmlGenOffset/AmlGenOffset.py -------------------------------------------------------------------------------- /MinPlatformPkg/Tools/Fsp/PatchFspBinFvsBaseAddress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Tools/Fsp/PatchFspBinFvsBaseAddress.py -------------------------------------------------------------------------------- /MinPlatformPkg/Tools/Fsp/RebaseAndPatchFspBinBaseAddress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Tools/Fsp/RebaseAndPatchFspBinBaseAddress.py -------------------------------------------------------------------------------- /MinPlatformPkg/Tools/Fsp/RebaseFspBinBaseAddress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Tools/Fsp/RebaseFspBinBaseAddress.py -------------------------------------------------------------------------------- /MinPlatformPkg/Tools/Fsp/pad.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Tools/Fsp/pad.bin -------------------------------------------------------------------------------- /MinPlatformPkg/Tools/Help/CheckCodeBase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Tools/Help/CheckCodeBase.py -------------------------------------------------------------------------------- /MinPlatformPkg/Tools/ParseVar/ParseVar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Tools/ParseVar/ParseVar.py -------------------------------------------------------------------------------- /MinPlatformPkg/Tools/PatchFv/PatchBfv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Tools/PatchFv/PatchBfv.py -------------------------------------------------------------------------------- /MinPlatformPkg/Tools/PatchFv/PatchBinFv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Tools/PatchFv/PatchBinFv.py -------------------------------------------------------------------------------- /MinPlatformPkg/Tools/PatchFv/RebaseBinFv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Tools/PatchFv/RebaseBinFv.py -------------------------------------------------------------------------------- /MinPlatformPkg/Tools/PatchFv/SyncBinFvInf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/MinPlatformPkg/Tools/PatchFv/SyncBinFvInf.py -------------------------------------------------------------------------------- /ReadMe.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/ReadMe.rst -------------------------------------------------------------------------------- /RepoDetails.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/RepoDetails.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/SECURITY.md -------------------------------------------------------------------------------- /pip-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_common_intel_min_platform/HEAD/pip-requirements.txt --------------------------------------------------------------------------------