]> git.proxmox.com Git - mirror_edk2.git/blame - ArmPkg/ArmPkg.dsc
Check the input VaraibleName for db/dbx when appending variables with formatted as...
[mirror_edk2.git] / ArmPkg / ArmPkg.dsc
CommitLineData
2ef2b01e 1#/** @file
8bbf0f09 2# ARM processor package.
2ef2b01e 3#
d6ebcab7 4# Copyright (c) 2009 - 2010, Apple Inc. All rights reserved.<BR>
8bbf0f09 5#
d6ebcab7 6# This program and the accompanying materials
8bbf0f09
A
7# are licensed and made available under the terms and conditions of the BSD License
8# which accompanies this distribution. The full text of the license may be found at
9# http://opensource.org/licenses/bsd-license.php
10#
11# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
12# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
2ef2b01e
A
13#
14#**/
15
16################################################################################
17#
18# Defines Section - statements that will be processed to create a Makefile.
19#
20################################################################################
21[Defines]
22 PLATFORM_NAME = ArmPkg
23 PLATFORM_GUID = 5CFBD99E-3C43-4E7F-8054-9CDEAFF7710F
24 PLATFORM_VERSION = 0.1
25 DSC_SPECIFICATION = 0x00010005
26 OUTPUT_DIRECTORY = Build/Arm
27 SUPPORTED_ARCHITECTURES = ARM
28 BUILD_TARGETS = DEBUG|RELEASE
29 SKUID_IDENTIFIER = DEFAULT
30
076c0505 31[BuildOptions]
d314d05f 32 XCODE:*_*_ARM_PLATFORM_FLAGS == -arch armv7
076c0505 33 XCODE:RELEASE_*_*_CC_FLAGS = -DMDEPKG_NDEBUG
34
d314d05f 35 GCC:*_*_ARM_PLATFORM_FLAGS == -march=armv7-a -mfpu=neon
076c0505 36 GCC:RELEASE_*_*_CC_FLAGS = -DMDEPKG_NDEBUG
37
d314d05f 38 RVCT:*_*_ARM_PLATFORM_FLAGS == --cpu Cortex-A8
076c0505 39 RVCT:RELEASE_*_*_CC_FLAGS = -DMDEPKG_NDEBUG
2ef2b01e
A
40
41[LibraryClasses.common]
42 BaseLib|MdePkg/Library/BaseLib/BaseLib.inf
43 BaseMemoryLib|MdePkg/Library/BaseMemoryLib/BaseMemoryLib.inf
44 CacheMaintenanceLib|ArmPkg/Library/ArmCacheMaintenanceLib/ArmCacheMaintenanceLib.inf
45 DebugLib|MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf
709497d1 46 HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf
2ef2b01e
A
47 MemoryAllocationLib|MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf
48 PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
49 PrintLib|MdePkg/Library/BasePrintLib/BasePrintLib.inf
50 TimerLib|MdePkg/Library/BaseTimerLibNullTemplate/BaseTimerLibNullTemplate.inf
51 UefiBootServicesTableLib|MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf
52 UefiDriverEntryPoint|MdePkg/Library/UefiDriverEntryPoint/UefiDriverEntryPoint.inf
53 UefiLib|MdePkg/Library/UefiLib/UefiLib.inf
54 DevicePathLib|MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf
55 UefiRuntimeServicesTableLib|MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf
62e797a4 56 PeCoffGetEntryPointLib|MdePkg/Library/BasePeCoffGetEntryPointLib/BasePeCoffGetEntryPointLib.inf
2ef2b01e 57
2ef2b01e
A
58 SemihostLib|ArmPkg/Library/SemihostLib/SemihostLib.inf
59 UncachedMemoryAllocationLib|ArmPkg/Library/UncachedMemoryAllocationLib/UncachedMemoryAllocationLib.inf
8bbf0f09 60 DxeServicesTableLib|MdePkg/Library/DxeServicesTableLib/DxeServicesTableLib.inf
11c20f4e 61 DefaultExceptionHandlerLib|ArmPkg/Library/DefaultExceptionHandlerLib/DefaultExceptionHandlerLib.inf
8bbf0f09 62
5dea9bd6 63 ArmLib|ArmPkg/Library/ArmLib/ArmV7/ArmV7Lib.inf
f659880b 64 CpuLib|MdePkg/Library/BaseCpuLib/BaseCpuLib.inf
097bd461 65 ArmDisassemblerLib|ArmPkg/Library/ArmDisassemblerLib/ArmDisassemblerLib.inf
81bc205d 66 DmaLib|ArmPkg/Library/ArmDmaLib/ArmDmaLib.inf
1bfda055 67 ArmTrustZoneLib|ArmPkg/Library/ArmTrustZoneLib/ArmTrustZoneLib.inf
d314d05f 68
69 UefiApplicationEntryPoint|MdePkg/Library/UefiApplicationEntryPoint/UefiApplicationEntryPoint.inf
70 PerformanceLib|MdePkg/Library/BasePerformanceLibNull/BasePerformanceLibNull.inf
71 # TODO: Check if we cannot remove this dependancy (Mayve using the SerialLibNull implementation makes the EFI application do not print)
72 SerialPortLib|MdePkg/Library/BaseSerialPortLibNull/BaseSerialPortLibNull.inf
73
1bfda055 74 BdsLib|ArmPkg/Library/BdsLib/BdsLib.inf
fa4a7063 75 FdtLib|EmbeddedPkg/Library/FdtLib/FdtLib.inf
1bfda055 76
77 IoLib|MdePkg/Library/BaseIoLibIntrinsic/BaseIoLibIntrinsic.inf
78
79[LibraryClasses.common.PEIM]
80 HobLib|MdePkg/Library/PeiHobLib/PeiHobLib.inf
81 PeimEntryPoint|MdePkg/Library/PeimEntryPoint/PeimEntryPoint.inf
82 MemoryAllocationLib|MdePkg/Library/PeiMemoryAllocationLib/PeiMemoryAllocationLib.inf
83 PeiServicesLib|MdePkg/Library/PeiServicesLib/PeiServicesLib.inf
84 PeiServicesTablePointerLib|MdePkg/Library/PeiServicesTablePointerLib/PeiServicesTablePointerLib.inf
8bbf0f09 85
d314d05f 86[LibraryClasses.common.DXE_DRIVER]
87 ArmPlatformGlobalVariableLib|ArmPlatformPkg/Library/ArmPlatformGlobalVariableLib/Dxe/DxeArmPlatformGlobalVariableLib.inf
88
8bbf0f09 89[LibraryClasses.ARM]
8bbf0f09
A
90 NULL|ArmPkg/Library/CompilerIntrinsicsLib/CompilerIntrinsicsLib.inf
91
2ef2b01e
A
92[Components.common]
93 ArmPkg/Library/ArmCacheMaintenanceLib/ArmCacheMaintenanceLib.inf
1bfda055 94 ArmPkg/Library/ArmDisassemblerLib/ArmDisassemblerLib.inf
95 ArmPkg/Library/ArmDmaLib/ArmDmaLib.inf
507ebc1a 96# ArmPkg/Library/ArmLib/Arm11/Arm11ArmLib.inf
97# ArmPkg/Library/ArmLib/Arm11/Arm11ArmLibPrePi.inf
98# ArmPkg/Library/ArmLib/Arm9/Arm9ArmLib.inf
99# ArmPkg/Library/ArmLib/Arm9/Arm9ArmLibPrePi.inf
5dea9bd6 100 ArmPkg/Library/ArmLib/ArmV7/ArmV7Lib.inf
101 ArmPkg/Library/ArmLib/ArmV7/ArmV7LibPrePi.inf
1bfda055 102 ArmPkg/Library/ArmLib/ArmV7/ArmV7LibSec.inf
2ef2b01e 103 ArmPkg/Library/ArmLib/Null/NullArmLib.inf
1bfda055 104 ArmPkg/Library/BaseMemoryLibStm/BaseMemoryLibStm.inf
105 ArmPkg/Library/BaseMemoryLibVstm/BaseMemoryLibVstm.inf
106 ArmPkg/Library/BasePeCoffLib/BasePeCoffLib.inf
107 ArmPkg/Library/BdsLib/BdsLib.inf
2ef2b01e 108 ArmPkg/Library/CompilerIntrinsicsLib/CompilerIntrinsicsLib.inf
1bfda055 109 ArmPkg/Library/DebugPeCoffExtraActionLib/DebugPeCoffExtraActionLib.inf
110 ArmPkg/Library/DebugUncachedMemoryAllocationLib/DebugUncachedMemoryAllocationLib.inf
111 ArmPkg/Library/DefaultExceptionHandlerLib/DefaultExceptionHandlerLib.inf
1bfda055 112 ArmPkg/Library/RvdPeCoffExtraActionLib/RvdPeCoffExtraActionLib.inf
2ef2b01e
A
113 ArmPkg/Library/SemiHostingDebugLib/SemiHostingDebugLib.inf
114 ArmPkg/Library/SemiHostingSerialPortLib/SemiHostingSerialPortLib.inf
115 ArmPkg/Library/SemihostLib/SemihostLib.inf
116 ArmPkg/Library/UncachedMemoryAllocationLib/UncachedMemoryAllocationLib.inf
117
90d6a1bb 118 ArmPkg/Drivers/ArmCpuLib/ArmCortexA8Lib/ArmCortexA8Lib.inf
119 ArmPkg/Drivers/ArmCpuLib/ArmCortexA9Lib/ArmCortexA9Lib.inf
120 ArmPkg/Drivers/ArmCpuLib/ArmCortexA15Lib/ArmCortexA15Lib.inf
2ef2b01e 121 ArmPkg/Drivers/CpuDxe/CpuDxe.inf
1bfda055 122 ArmPkg/Drivers/CpuPei/CpuPei.inf
1bfda055 123 ArmPkg/Drivers/PL390Gic/PL390GicDxe.inf
55a0d64b 124 ArmPkg/Drivers/PL390Gic/PL390GicLib.inf
125 ArmPkg/Drivers/PL390Gic/PL390GicSecLib.inf
d314d05f 126 ArmPkg/Drivers/TimerDxe/TimerDxe.inf
55a0d64b 127
2ef2b01e 128 ArmPkg/Filesystem/SemihostFs/SemihostFs.inf
8fc38a3f 129
130 ArmPkg/Application/LinuxLoader/LinuxAtagLoader.inf
131 ArmPkg/Application/LinuxLoader/LinuxFdtLoader.inf