microsoft/mu_feature_ffa
Publicmirrored fromhttps://github.com/microsoft/mu_feature_ffaAvailable
FfaFeaturePkg/Applications/FfaPartitionTest/FfaPartitionTestApp.inf
66lines · modecode
| 1 | ## @file |
| 2 | # FfaPartitionTestApp.inf |
| 3 | # |
| 4 | # Test application to verify DeviceId strings are acceptable to Dfci. |
| 5 | # |
| 6 | # Copyright (C) Microsoft Corporation. All rights reserved. |
| 7 | # SPDX-License-Identifier: BSD-2-Clause-Patent |
| 8 | # |
| 9 | ## |
| 10 | |
| 11 | [Defines] |
| 12 | INF_VERSION = 0x00010006 |
| 13 | BASE_NAME = FfaPartitionTestApp |
| 14 | FILE_GUID = c02b1056-0c82-4c58-9bbc-94a7d5726ff1 |
| 15 | MODULE_TYPE = UEFI_APPLICATION |
| 16 | VERSION_STRING = 1.0 |
| 17 | ENTRY_POINT = FfaPartitionTestAppEntry |
| 18 | |
| 19 | # |
| 20 | # The following information is for reference only and not required by the build tools. |
| 21 | # |
| 22 | # VALID_ARCHITECTURES = IA32 X64 ARM AARCH64 |
| 23 | # |
| 24 | |
| 25 | [Sources] |
| 26 | FfaPartitionTestApp.c |
| 27 | |
| 28 | [Packages] |
| 29 | MdePkg/MdePkg.dec |
| 30 | MdeModulePkg/MdeModulePkg.dec |
| 31 | ArmPkg/ArmPkg.dec |
| 32 | EmbeddedPkg/EmbeddedPkg.dec |
| 33 | SecurityPkg/SecurityPkg.dec |
| 34 | FfaFeaturePkg/FfaFeaturePkg.dec |
| 35 | UnitTestFrameworkPkg/UnitTestFrameworkPkg.dec |
| 36 | |
| 37 | [LibraryClasses] |
| 38 | BaseLib |
| 39 | BaseMemoryLib |
| 40 | DebugLib |
| 41 | PrintLib |
| 42 | UefiApplicationEntryPoint |
| 43 | UefiLib |
| 44 | ArmSmcLib |
| 45 | ArmFfaLib |
| 46 | ArmFfaLibEx |
| 47 | UefiBootServicesTableLib |
| 48 | UnitTestLib |
| 49 | TimerLib |
| 50 | |
| 51 | [Protocols] |
| 52 | gHardwareInterruptProtocolGuid |
| 53 | gEfiMmCommunication2ProtocolGuid |
| 54 | |
| 55 | [FixedPcd] |
| 56 | gArmTokenSpaceGuid.PcdGicInterruptInterfaceBase |
| 57 | |
| 58 | [Pcd] |
| 59 | gEfiMdeModulePkgTokenSpaceGuid.PcdFfaRxBuffer |
| 60 | gEfiMdeModulePkgTokenSpaceGuid.PcdFfaLibConduitSmc |
| 61 | |
| 62 | [Guids] |
| 63 | gTpm2ServiceFfaGuid |
| 64 | gEfiNotificationServiceFfaGuid |
| 65 | gEfiTestServiceFfaGuid |
| 66 | gZeroGuid |
| 67 | |