2 # Generate AutoGen.h, AutoGen.c and *.depex files
4 # Copyright (c) 2007 - 2018, Intel Corporation. All rights reserved.<BR>
5 # This program and the accompanying materials
6 # are licensed and made available under the terms and conditions of the BSD License
7 # which accompanies this distribution. The full text of the license may be found at
8 # http://opensource.org/licenses/bsd-license.php
10 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
16 import Common
.LongFilePathOs
as os
18 import os
.path
as path
25 from StringIO
import StringIO
27 from StrGather
import *
28 from BuildEngine
import BuildRule
30 from Common
.LongFilePathSupport
import CopyLongFilePath
31 from Common
.BuildToolError
import *
32 from Common
.DataType
import *
33 from Common
.Misc
import *
34 from Common
.String
import *
35 import Common
.GlobalData
as GlobalData
36 from GenFds
.FdfParser
import *
37 from CommonDataClass
.CommonClass
import SkuInfoClass
38 from Workspace
.BuildClassObject
import *
39 from GenPatchPcdTable
.GenPatchPcdTable
import parsePcdInfoFromMapFile
40 import Common
.VpdInfoFile
as VpdInfoFile
41 from GenPcdDb
import CreatePcdDatabaseCode
42 from Workspace
.MetaFileCommentParser
import UsageList
43 from Common
.MultipleWorkspace
import MultipleWorkspace
as mws
44 import InfSectionParser
47 from GenVar
import VariableMgr
,var_info
48 from collections
import OrderedDict
49 from collections
import defaultdict
51 ## Regular expression for splitting Dependency Expression string into tokens
52 gDepexTokenPattern
= re
.compile("(\(|\)|\w+| \S+\.inf)")
54 ## Regular expression for match: PCD(xxxx.yyy)
55 gPCDAsGuidPattern
= re
.compile(r
"^PCD\(.+\..+\)$")
58 # Regular expression for finding Include Directories, the difference between MSFT and INTEL/GCC/RVCT
59 # is the former use /I , the Latter used -I to specify include directories
61 gBuildOptIncludePatternMsft
= re
.compile(r
"(?:.*?)/I[ \t]*([^ ]*)", re
.MULTILINE | re
.DOTALL
)
62 gBuildOptIncludePatternOther
= re
.compile(r
"(?:.*?)-I[ \t]*([^ ]*)", re
.MULTILINE | re
.DOTALL
)
65 # Match name = variable
67 gEfiVarStoreNamePattern
= re
.compile("\s*name\s*=\s*(\w+)")
69 # The format of guid in efivarstore statement likes following and must be correct:
70 # guid = {0xA04A27f4, 0xDF00, 0x4D42, {0xB5, 0x52, 0x39, 0x51, 0x13, 0x02, 0x11, 0x3D}}
72 gEfiVarStoreGuidPattern
= re
.compile("\s*guid\s*=\s*({.*?{.*?}\s*})")
74 ## Mapping Makefile type
75 gMakeTypeMap
= {"MSFT":"nmake", "GCC":"gmake"}
78 ## Build rule configuration file
79 gDefaultBuildRuleFile
= 'build_rule.txt'
81 ## Tools definition configuration file
82 gDefaultToolsDefFile
= 'tools_def.txt'
84 ## Build rule default version
85 AutoGenReqBuildRuleVerNum
= "0.1"
87 ## default file name for AutoGen
88 gAutoGenCodeFileName
= "AutoGen.c"
89 gAutoGenHeaderFileName
= "AutoGen.h"
90 gAutoGenStringFileName
= "%(module_name)sStrDefs.h"
91 gAutoGenStringFormFileName
= "%(module_name)sStrDefs.hpk"
92 gAutoGenDepexFileName
= "%(module_name)s.depex"
93 gAutoGenImageDefFileName
= "%(module_name)sImgDefs.h"
94 gAutoGenIdfFileName
= "%(module_name)sIdf.hpk"
95 gInfSpecVersion
= "0x00010017"
98 # Template string to generic AsBuilt INF
100 gAsBuiltInfHeaderString
= TemplateString("""${header_comments}
103 # FILE auto-generated
106 INF_VERSION = ${module_inf_version}
107 BASE_NAME = ${module_name}
108 FILE_GUID = ${module_guid}
109 MODULE_TYPE = ${module_module_type}${BEGIN}
110 VERSION_STRING = ${module_version_string}${END}${BEGIN}
111 PCD_IS_DRIVER = ${pcd_is_driver_string}${END}${BEGIN}
112 UEFI_SPECIFICATION_VERSION = ${module_uefi_specification_version}${END}${BEGIN}
113 PI_SPECIFICATION_VERSION = ${module_pi_specification_version}${END}${BEGIN}
114 ENTRY_POINT = ${module_entry_point}${END}${BEGIN}
115 UNLOAD_IMAGE = ${module_unload_image}${END}${BEGIN}
116 CONSTRUCTOR = ${module_constructor}${END}${BEGIN}
117 DESTRUCTOR = ${module_destructor}${END}${BEGIN}
118 SHADOW = ${module_shadow}${END}${BEGIN}
119 PCI_VENDOR_ID = ${module_pci_vendor_id}${END}${BEGIN}
120 PCI_DEVICE_ID = ${module_pci_device_id}${END}${BEGIN}
121 PCI_CLASS_CODE = ${module_pci_class_code}${END}${BEGIN}
122 PCI_REVISION = ${module_pci_revision}${END}${BEGIN}
123 BUILD_NUMBER = ${module_build_number}${END}${BEGIN}
124 SPEC = ${module_spec}${END}${BEGIN}
125 UEFI_HII_RESOURCE_SECTION = ${module_uefi_hii_resource_section}${END}${BEGIN}
126 MODULE_UNI_FILE = ${module_uni_file}${END}
128 [Packages.${module_arch}]${BEGIN}
129 ${package_item}${END}
131 [Binaries.${module_arch}]${BEGIN}
134 [PatchPcd.${module_arch}]${BEGIN}
138 [Protocols.${module_arch}]${BEGIN}
142 [Ppis.${module_arch}]${BEGIN}
146 [Guids.${module_arch}]${BEGIN}
150 [PcdEx.${module_arch}]${BEGIN}
154 [LibraryClasses.${module_arch}]
155 ## @LIB_INSTANCES${BEGIN}
156 # ${libraryclasses_item}${END}
160 ${userextension_tianocore_item}
164 [BuildOptions.${module_arch}]
166 ## ${flags_item}${END}
169 ## Base class for AutoGen
171 # This class just implements the cache mechanism of AutoGen objects.
173 class AutoGen(object):
174 # database to maintain the objects in each child class
175 __ObjectCache
= {} # (BuildTarget, ToolChain, ARCH, platform file): AutoGen object
179 # @param Class class object of real AutoGen class
180 # (WorkspaceAutoGen, ModuleAutoGen or PlatformAutoGen)
181 # @param Workspace Workspace directory or WorkspaceAutoGen object
182 # @param MetaFile The path of meta file
183 # @param Target Build target
184 # @param Toolchain Tool chain name
185 # @param Arch Target arch
186 # @param *args The specific class related parameters
187 # @param **kwargs The specific class related dict parameters
189 def __new__(cls
, Workspace
, MetaFile
, Target
, Toolchain
, Arch
, *args
, **kwargs
):
190 # check if the object has been created
191 Key
= (Target
, Toolchain
, Arch
, MetaFile
)
193 # if it exists, just return it directly
194 return cls
.__ObjectCache
[Key
]
196 # it didnt exist. create it, cache it, then return it
197 cls
.__ObjectCache
[Key
] = super(AutoGen
, cls
).__new
__(cls
)
198 return cls
.__ObjectCache
[Key
]
200 def __init__ (self
, Workspace
, MetaFile
, Target
, Toolchain
, Arch
, *args
, **kwargs
):
201 super(AutoGen
, self
).__init
__(self
, Workspace
, MetaFile
, Target
, Toolchain
, Arch
, *args
, **kwargs
)
205 # The file path of platform file will be used to represent hash value of this object
207 # @retval int Hash value of the file path of platform file
210 return hash(self
.MetaFile
)
214 # The file path of platform file will be used to represent this object
216 # @retval string String of platform file path
219 return str(self
.MetaFile
)
222 def __eq__(self
, Other
):
223 return Other
and self
.MetaFile
== Other
225 ## Workspace AutoGen class
227 # This class is used mainly to control the whole platform build for different
228 # architecture. This class will generate top level makefile.
230 class WorkspaceAutoGen(AutoGen
):
231 # call super().__init__ then call the worker function with different parameter count
232 def __init__(self
, Workspace
, MetaFile
, Target
, Toolchain
, Arch
, *args
, **kwargs
):
236 super(WorkspaceAutoGen
, self
).__init
__(Workspace
, MetaFile
, Target
, Toolchain
, Arch
, *args
, **kwargs
)
237 self
._InitWorker
(Workspace
, MetaFile
, Target
, Toolchain
, Arch
, *args
, **kwargs
)
240 ## Initialize WorkspaceAutoGen
242 # @param WorkspaceDir Root directory of workspace
243 # @param ActivePlatform Meta-file of active platform
244 # @param Target Build target
245 # @param Toolchain Tool chain name
246 # @param ArchList List of architecture of current build
247 # @param MetaFileDb Database containing meta-files
248 # @param BuildConfig Configuration of build
249 # @param ToolDefinition Tool chain definitions
250 # @param FlashDefinitionFile File of flash definition
251 # @param Fds FD list to be generated
252 # @param Fvs FV list to be generated
253 # @param Caps Capsule list to be generated
254 # @param SkuId SKU id from command line
256 def _InitWorker(self
, WorkspaceDir
, ActivePlatform
, Target
, Toolchain
, ArchList
, MetaFileDb
,
257 BuildConfig
, ToolDefinition
, FlashDefinitionFile
='', Fds
=None, Fvs
=None, Caps
=None, SkuId
='', UniFlag
=None,
258 Progress
=None, BuildModule
=None):
259 self
.BuildDatabase
= MetaFileDb
260 self
.MetaFile
= ActivePlatform
261 self
.WorkspaceDir
= WorkspaceDir
262 self
.Platform
= self
.BuildDatabase
[self
.MetaFile
, 'COMMON', Target
, Toolchain
]
263 GlobalData
.gActivePlatform
= self
.Platform
264 self
.BuildTarget
= Target
265 self
.ToolChain
= Toolchain
266 self
.ArchList
= ArchList
268 self
.UniFlag
= UniFlag
270 self
.TargetTxt
= BuildConfig
271 self
.ToolDef
= ToolDefinition
272 self
.FdfFile
= FlashDefinitionFile
273 self
.FdTargetList
= Fds
if Fds
else []
274 self
.FvTargetList
= Fvs
if Fvs
else []
275 self
.CapTargetList
= Caps
if Caps
else []
276 self
.AutoGenObjectList
= []
277 self
._BuildDir
= None
279 self
._MakeFileDir
= None
280 self
._BuildCommand
= None
283 # there's many relative directory operations, so ...
284 os
.chdir(self
.WorkspaceDir
)
289 if not self
.ArchList
:
290 ArchList
= set(self
.Platform
.SupArchList
)
292 ArchList
= set(self
.ArchList
) & set(self
.Platform
.SupArchList
)
294 EdkLogger
.error("build", PARAMETER_INVALID
,
295 ExtraData
= "Invalid ARCH specified. [Valid ARCH: %s]" % (" ".join(self
.Platform
.SupArchList
)))
296 elif self
.ArchList
and len(ArchList
) != len(self
.ArchList
):
297 SkippedArchList
= set(self
.ArchList
).symmetric_difference(set(self
.Platform
.SupArchList
))
298 EdkLogger
.verbose("\nArch [%s] is ignored because the platform supports [%s] only!"
299 % (" ".join(SkippedArchList
), " ".join(self
.Platform
.SupArchList
)))
300 self
.ArchList
= tuple(ArchList
)
302 # Validate build target
303 if self
.BuildTarget
not in self
.Platform
.BuildTargets
:
304 EdkLogger
.error("build", PARAMETER_INVALID
,
305 ExtraData
="Build target [%s] is not supported by the platform. [Valid target: %s]"
306 % (self
.BuildTarget
, " ".join(self
.Platform
.BuildTargets
)))
309 # parse FDF file to get PCDs in it, if any
311 self
.FdfFile
= self
.Platform
.FlashDefinition
315 EdkLogger
.info('%-16s = %s' % ("Architecture(s)", ' '.join(self
.ArchList
)))
316 EdkLogger
.info('%-16s = %s' % ("Build target", self
.BuildTarget
))
317 EdkLogger
.info('%-16s = %s' % ("Toolchain", self
.ToolChain
))
319 EdkLogger
.info('\n%-24s = %s' % ("Active Platform", self
.Platform
))
321 EdkLogger
.info('%-24s = %s' % ("Active Module", BuildModule
))
324 EdkLogger
.info('%-24s = %s' % ("Flash Image Definition", self
.FdfFile
))
326 EdkLogger
.verbose("\nFLASH_DEFINITION = %s" % self
.FdfFile
)
329 Progress
.Start("\nProcessing meta-data")
333 # Mark now build in AutoGen Phase
335 GlobalData
.gAutoGenPhase
= True
336 Fdf
= FdfParser(self
.FdfFile
.Path
)
338 GlobalData
.gFdfParser
= Fdf
339 GlobalData
.gAutoGenPhase
= False
340 PcdSet
= Fdf
.Profile
.PcdDict
341 if Fdf
.CurrentFdName
and Fdf
.CurrentFdName
in Fdf
.Profile
.FdDict
:
342 FdDict
= Fdf
.Profile
.FdDict
[Fdf
.CurrentFdName
]
343 for FdRegion
in FdDict
.RegionList
:
344 if str(FdRegion
.RegionType
) is 'FILE' and self
.Platform
.VpdToolGuid
in str(FdRegion
.RegionDataList
):
345 if int(FdRegion
.Offset
) % 8 != 0:
346 EdkLogger
.error("build", FORMAT_INVALID
, 'The VPD Base Address %s must be 8-byte aligned.' % (FdRegion
.Offset
))
347 ModuleList
= Fdf
.Profile
.InfList
348 self
.FdfProfile
= Fdf
.Profile
349 for fvname
in self
.FvTargetList
:
350 if fvname
.upper() not in self
.FdfProfile
.FvDict
:
351 EdkLogger
.error("build", OPTION_VALUE_INVALID
,
352 "No such an FV in FDF file: %s" % fvname
)
354 # In DSC file may use FILE_GUID to override the module, then in the Platform.Modules use FILE_GUIDmodule.inf as key,
355 # but the path (self.MetaFile.Path) is the real path
356 for key
in self
.FdfProfile
.InfDict
:
359 for Arch
in self
.ArchList
:
360 Current_Platform_cache
= self
.BuildDatabase
[self
.MetaFile
, Arch
, Target
, Toolchain
]
361 MetaFile_cache
[Arch
] = set()
362 for Pkey
in Current_Platform_cache
.Modules
:
363 MetaFile_cache
[Arch
].add(Current_Platform_cache
.Modules
[Pkey
].MetaFile
)
364 for Inf
in self
.FdfProfile
.InfDict
[key
]:
365 ModuleFile
= PathClass(NormPath(Inf
), GlobalData
.gWorkspace
, Arch
)
366 for Arch
in self
.ArchList
:
367 if ModuleFile
in MetaFile_cache
[Arch
]:
370 ModuleData
= self
.BuildDatabase
[ModuleFile
, Arch
, Target
, Toolchain
]
371 if not ModuleData
.IsBinaryModule
:
372 EdkLogger
.error('build', PARSER_ERROR
, "Module %s NOT found in DSC file; Is it really a binary module?" % ModuleFile
)
375 for Arch
in self
.ArchList
:
377 Platform
= self
.BuildDatabase
[self
.MetaFile
, Arch
, Target
, Toolchain
]
379 for Pkey
in Platform
.Modules
:
380 MetaFileList
.add(Platform
.Modules
[Pkey
].MetaFile
)
381 for Inf
in self
.FdfProfile
.InfDict
[key
]:
382 ModuleFile
= PathClass(NormPath(Inf
), GlobalData
.gWorkspace
, Arch
)
383 if ModuleFile
in MetaFileList
:
385 ModuleData
= self
.BuildDatabase
[ModuleFile
, Arch
, Target
, Toolchain
]
386 if not ModuleData
.IsBinaryModule
:
387 EdkLogger
.error('build', PARSER_ERROR
, "Module %s NOT found in DSC file; Is it really a binary module?" % ModuleFile
)
392 self
.FdfProfile
= None
393 if self
.FdTargetList
:
394 EdkLogger
.info("No flash definition file found. FD [%s] will be ignored." % " ".join(self
.FdTargetList
))
395 self
.FdTargetList
= []
396 if self
.FvTargetList
:
397 EdkLogger
.info("No flash definition file found. FV [%s] will be ignored." % " ".join(self
.FvTargetList
))
398 self
.FvTargetList
= []
399 if self
.CapTargetList
:
400 EdkLogger
.info("No flash definition file found. Capsule [%s] will be ignored." % " ".join(self
.CapTargetList
))
401 self
.CapTargetList
= []
403 # apply SKU and inject PCDs from Flash Definition file
404 for Arch
in self
.ArchList
:
405 Platform
= self
.BuildDatabase
[self
.MetaFile
, Arch
, Target
, Toolchain
]
406 PlatformPcds
= Platform
.Pcds
407 self
._GuidDict
= Platform
._GuidDict
408 SourcePcdDict
= {'DynamicEx':set(), 'PatchableInModule':set(),'Dynamic':set(),'FixedAtBuild':set()}
409 BinaryPcdDict
= {'DynamicEx':set(), 'PatchableInModule':set()}
410 SourcePcdDict_Keys
= SourcePcdDict
.keys()
411 BinaryPcdDict_Keys
= BinaryPcdDict
.keys()
413 # generate the SourcePcdDict and BinaryPcdDict
414 PGen
= PlatformAutoGen(self
, self
.MetaFile
, Target
, Toolchain
, Arch
)
415 for BuildData
in PGen
.BuildDatabase
._CACHE
_.values():
416 if BuildData
.Arch
!= Arch
:
418 if BuildData
.MetaFile
.Ext
== '.inf':
419 for key
in BuildData
.Pcds
:
420 if BuildData
.Pcds
[key
].Pending
:
421 if key
in Platform
.Pcds
:
422 PcdInPlatform
= Platform
.Pcds
[key
]
423 if PcdInPlatform
.Type
not in [None, '']:
424 BuildData
.Pcds
[key
].Type
= PcdInPlatform
.Type
426 if BuildData
.MetaFile
in Platform
.Modules
:
427 PlatformModule
= Platform
.Modules
[str(BuildData
.MetaFile
)]
428 if key
in PlatformModule
.Pcds
:
429 PcdInPlatform
= PlatformModule
.Pcds
[key
]
430 if PcdInPlatform
.Type
not in [None, '']:
431 BuildData
.Pcds
[key
].Type
= PcdInPlatform
.Type
433 if 'DynamicEx' in BuildData
.Pcds
[key
].Type
:
434 if BuildData
.IsBinaryModule
:
435 BinaryPcdDict
['DynamicEx'].add((BuildData
.Pcds
[key
].TokenCName
, BuildData
.Pcds
[key
].TokenSpaceGuidCName
))
437 SourcePcdDict
['DynamicEx'].add((BuildData
.Pcds
[key
].TokenCName
, BuildData
.Pcds
[key
].TokenSpaceGuidCName
))
439 elif 'PatchableInModule' in BuildData
.Pcds
[key
].Type
:
440 if BuildData
.MetaFile
.Ext
== '.inf':
441 if BuildData
.IsBinaryModule
:
442 BinaryPcdDict
['PatchableInModule'].add((BuildData
.Pcds
[key
].TokenCName
, BuildData
.Pcds
[key
].TokenSpaceGuidCName
))
444 SourcePcdDict
['PatchableInModule'].add((BuildData
.Pcds
[key
].TokenCName
, BuildData
.Pcds
[key
].TokenSpaceGuidCName
))
446 elif 'Dynamic' in BuildData
.Pcds
[key
].Type
:
447 SourcePcdDict
['Dynamic'].add((BuildData
.Pcds
[key
].TokenCName
, BuildData
.Pcds
[key
].TokenSpaceGuidCName
))
448 elif 'FixedAtBuild' in BuildData
.Pcds
[key
].Type
:
449 SourcePcdDict
['FixedAtBuild'].add((BuildData
.Pcds
[key
].TokenCName
, BuildData
.Pcds
[key
].TokenSpaceGuidCName
))
453 # A PCD can only use one type for all source modules
455 for i
in SourcePcdDict_Keys
:
456 for j
in SourcePcdDict_Keys
:
458 Intersections
= SourcePcdDict
[i
].intersection(SourcePcdDict
[j
])
459 if len(Intersections
) > 0:
463 "Building modules from source INFs, following PCD use %s and %s access method. It must be corrected to use only one access method." % (i
, j
),
464 ExtraData
="%s" % '\n\t'.join([str(P
[1]+'.'+P
[0]) for P
in Intersections
])
468 # intersection the BinaryPCD for Mixed PCD
470 for i
in BinaryPcdDict_Keys
:
471 for j
in BinaryPcdDict_Keys
:
473 Intersections
= BinaryPcdDict
[i
].intersection(BinaryPcdDict
[j
])
474 for item
in Intersections
:
475 NewPcd1
= (item
[0] + '_' + i
, item
[1])
476 NewPcd2
= (item
[0] + '_' + j
, item
[1])
477 if item
not in GlobalData
.MixedPcd
:
478 GlobalData
.MixedPcd
[item
] = [NewPcd1
, NewPcd2
]
480 if NewPcd1
not in GlobalData
.MixedPcd
[item
]:
481 GlobalData
.MixedPcd
[item
].append(NewPcd1
)
482 if NewPcd2
not in GlobalData
.MixedPcd
[item
]:
483 GlobalData
.MixedPcd
[item
].append(NewPcd2
)
486 # intersection the SourcePCD and BinaryPCD for Mixed PCD
488 for i
in SourcePcdDict_Keys
:
489 for j
in BinaryPcdDict_Keys
:
491 Intersections
= SourcePcdDict
[i
].intersection(BinaryPcdDict
[j
])
492 for item
in Intersections
:
493 NewPcd1
= (item
[0] + '_' + i
, item
[1])
494 NewPcd2
= (item
[0] + '_' + j
, item
[1])
495 if item
not in GlobalData
.MixedPcd
:
496 GlobalData
.MixedPcd
[item
] = [NewPcd1
, NewPcd2
]
498 if NewPcd1
not in GlobalData
.MixedPcd
[item
]:
499 GlobalData
.MixedPcd
[item
].append(NewPcd1
)
500 if NewPcd2
not in GlobalData
.MixedPcd
[item
]:
501 GlobalData
.MixedPcd
[item
].append(NewPcd2
)
503 for BuildData
in PGen
.BuildDatabase
._CACHE
_.values():
504 if BuildData
.Arch
!= Arch
:
506 for key
in BuildData
.Pcds
:
507 for SinglePcd
in GlobalData
.MixedPcd
:
508 if (BuildData
.Pcds
[key
].TokenCName
, BuildData
.Pcds
[key
].TokenSpaceGuidCName
) == SinglePcd
:
509 for item
in GlobalData
.MixedPcd
[SinglePcd
]:
510 Pcd_Type
= item
[0].split('_')[-1]
511 if (Pcd_Type
== BuildData
.Pcds
[key
].Type
) or (Pcd_Type
== TAB_PCDS_DYNAMIC_EX
and BuildData
.Pcds
[key
].Type
in GenC
.gDynamicExPcd
) or \
512 (Pcd_Type
== TAB_PCDS_DYNAMIC
and BuildData
.Pcds
[key
].Type
in GenC
.gDynamicPcd
):
513 Value
= BuildData
.Pcds
[key
]
514 Value
.TokenCName
= BuildData
.Pcds
[key
].TokenCName
+ '_' + Pcd_Type
516 newkey
= (Value
.TokenCName
, key
[1])
518 newkey
= (Value
.TokenCName
, key
[1], key
[2])
519 del BuildData
.Pcds
[key
]
520 BuildData
.Pcds
[newkey
] = Value
524 # handle the mixed pcd in FDF file
526 if key
in GlobalData
.MixedPcd
:
529 for item
in GlobalData
.MixedPcd
[key
]:
532 #Collect package set information from INF of FDF
534 for Inf
in ModuleList
:
535 ModuleFile
= PathClass(NormPath(Inf
), GlobalData
.gWorkspace
, Arch
)
536 if ModuleFile
in Platform
.Modules
:
538 ModuleData
= self
.BuildDatabase
[ModuleFile
, Arch
, Target
, Toolchain
]
539 PkgSet
.update(ModuleData
.Packages
)
540 Pkgs
= list(PkgSet
) + list(PGen
.PackageList
)
545 DecPcds
.add((Pcd
[0], Pcd
[1]))
546 DecPcdsKey
.add((Pcd
[0], Pcd
[1], Pcd
[2]))
548 Platform
.SkuName
= self
.SkuId
549 for Name
, Guid
in PcdSet
:
550 if (Name
, Guid
) not in DecPcds
:
554 "PCD (%s.%s) used in FDF is not declared in DEC files." % (Guid
, Name
),
555 File
= self
.FdfProfile
.PcdFileLineDict
[Name
, Guid
][0],
556 Line
= self
.FdfProfile
.PcdFileLineDict
[Name
, Guid
][1]
559 # Check whether Dynamic or DynamicEx PCD used in FDF file. If used, build break and give a error message.
560 if (Name
, Guid
, TAB_PCDS_FIXED_AT_BUILD
) in DecPcdsKey \
561 or (Name
, Guid
, TAB_PCDS_PATCHABLE_IN_MODULE
) in DecPcdsKey \
562 or (Name
, Guid
, TAB_PCDS_FEATURE_FLAG
) in DecPcdsKey
:
563 Platform
.AddPcd(Name
, Guid
, PcdSet
[Name
, Guid
])
565 elif (Name
, Guid
, TAB_PCDS_DYNAMIC
) in DecPcdsKey
or (Name
, Guid
, TAB_PCDS_DYNAMIC_EX
) in DecPcdsKey
:
569 "Using Dynamic or DynamicEx type of PCD [%s.%s] in FDF file is not allowed." % (Guid
, Name
),
570 File
= self
.FdfProfile
.PcdFileLineDict
[Name
, Guid
][0],
571 Line
= self
.FdfProfile
.PcdFileLineDict
[Name
, Guid
][1]
574 Pa
= PlatformAutoGen(self
, self
.MetaFile
, Target
, Toolchain
, Arch
)
576 # Explicitly collect platform's dynamic PCDs
578 Pa
.CollectPlatformDynamicPcds()
579 Pa
.CollectFixedAtBuildPcds()
580 self
.AutoGenObjectList
.append(Pa
)
583 # Generate Package level hash value
585 GlobalData
.gPackageHash
[Arch
] = {}
586 if GlobalData
.gUseHashCache
:
588 self
._GenPkgLevelHash
(Pkg
)
591 # Check PCDs token value conflict in each DEC file.
593 self
._CheckAllPcdsTokenValueConflict
()
596 # Check PCD type and definition between DSC and DEC
598 self
._CheckPcdDefineAndType
()
601 # self._CheckDuplicateInFV(Fdf)
604 # Create BuildOptions Macro & PCD metafile, also add the Active Platform and FDF file.
606 content
= 'gCommandLineDefines: '
607 content
+= str(GlobalData
.gCommandLineDefines
)
608 content
+= os
.linesep
609 content
+= 'BuildOptionPcd: '
610 content
+= str(GlobalData
.BuildOptionPcd
)
611 content
+= os
.linesep
612 content
+= 'Active Platform: '
613 content
+= str(self
.Platform
)
614 content
+= os
.linesep
616 content
+= 'Flash Image Definition: '
617 content
+= str(self
.FdfFile
)
618 content
+= os
.linesep
619 SaveFileOnChange(os
.path
.join(self
.BuildDir
, 'BuildOptions'), content
, False)
622 # Create PcdToken Number file for Dynamic/DynamicEx Pcd.
624 PcdTokenNumber
= 'PcdTokenNumber: '
625 if Pa
.PcdTokenNumber
:
626 if Pa
.DynamicPcdList
:
627 for Pcd
in Pa
.DynamicPcdList
:
628 PcdTokenNumber
+= os
.linesep
629 PcdTokenNumber
+= str((Pcd
.TokenCName
, Pcd
.TokenSpaceGuidCName
))
630 PcdTokenNumber
+= ' : '
631 PcdTokenNumber
+= str(Pa
.PcdTokenNumber
[Pcd
.TokenCName
, Pcd
.TokenSpaceGuidCName
])
632 SaveFileOnChange(os
.path
.join(self
.BuildDir
, 'PcdTokenNumber'), PcdTokenNumber
, False)
635 # Get set of workspace metafiles
637 AllWorkSpaceMetaFiles
= self
._GetMetaFiles
(Target
, Toolchain
, Arch
)
640 # Retrieve latest modified time of all metafiles
643 for f
in AllWorkSpaceMetaFiles
:
644 if os
.stat(f
)[8] > SrcTimeStamp
:
645 SrcTimeStamp
= os
.stat(f
)[8]
646 self
._SrcTimeStamp
= SrcTimeStamp
648 if GlobalData
.gUseHashCache
:
650 for files
in AllWorkSpaceMetaFiles
:
651 if files
.endswith('.dec'):
657 SaveFileOnChange(os
.path
.join(self
.BuildDir
, 'AutoGen.hash'), m
.hexdigest(), True)
658 GlobalData
.gPlatformHash
= m
.hexdigest()
661 # Write metafile list to build directory
663 AutoGenFilePath
= os
.path
.join(self
.BuildDir
, 'AutoGen')
664 if os
.path
.exists (AutoGenFilePath
):
665 os
.remove(AutoGenFilePath
)
666 if not os
.path
.exists(self
.BuildDir
):
667 os
.makedirs(self
.BuildDir
)
668 with
open(os
.path
.join(self
.BuildDir
, 'AutoGen'), 'w+') as file:
669 for f
in AllWorkSpaceMetaFiles
:
673 def _GenPkgLevelHash(self
, Pkg
):
674 PkgDir
= os
.path
.join(self
.BuildDir
, Pkg
.Arch
, Pkg
.PackageName
)
675 CreateDirectory(PkgDir
)
676 HashFile
= os
.path
.join(PkgDir
, Pkg
.PackageName
+ '.hash')
678 # Get .dec file's hash value
679 f
= open(Pkg
.MetaFile
.Path
, 'r')
683 # Get include files hash value
685 for inc
in Pkg
.Includes
:
686 for Root
, Dirs
, Files
in os
.walk(str(inc
)):
688 File_Path
= os
.path
.join(Root
, File
)
689 f
= open(File_Path
, 'r')
693 SaveFileOnChange(HashFile
, m
.hexdigest(), True)
694 if Pkg
.PackageName
not in GlobalData
.gPackageHash
[Pkg
.Arch
]:
695 GlobalData
.gPackageHash
[Pkg
.Arch
][Pkg
.PackageName
] = m
.hexdigest()
697 def _GetMetaFiles(self
, Target
, Toolchain
, Arch
):
698 AllWorkSpaceMetaFiles
= set()
703 AllWorkSpaceMetaFiles
.add (self
.FdfFile
.Path
)
705 FdfFiles
= GlobalData
.gFdfParser
.GetAllIncludedFile()
707 AllWorkSpaceMetaFiles
.add (f
.FileName
)
711 AllWorkSpaceMetaFiles
.add(self
.MetaFile
.Path
)
714 # add build_rule.txt & tools_def.txt
716 AllWorkSpaceMetaFiles
.add(os
.path
.join(GlobalData
.gConfDirectory
, gDefaultBuildRuleFile
))
717 AllWorkSpaceMetaFiles
.add(os
.path
.join(GlobalData
.gConfDirectory
, gDefaultToolsDefFile
))
719 # add BuildOption metafile
721 AllWorkSpaceMetaFiles
.add(os
.path
.join(self
.BuildDir
, 'BuildOptions'))
723 # add PcdToken Number file for Dynamic/DynamicEx Pcd
725 AllWorkSpaceMetaFiles
.add(os
.path
.join(self
.BuildDir
, 'PcdTokenNumber'))
727 for Arch
in self
.ArchList
:
728 Platform
= self
.BuildDatabase
[self
.MetaFile
, Arch
, Target
, Toolchain
]
729 PGen
= PlatformAutoGen(self
, self
.MetaFile
, Target
, Toolchain
, Arch
)
734 for Package
in PGen
.PackageList
:
735 AllWorkSpaceMetaFiles
.add(Package
.MetaFile
.Path
)
740 for filePath
in Platform
._RawData
.IncludedFiles
:
741 AllWorkSpaceMetaFiles
.add(filePath
.Path
)
743 return AllWorkSpaceMetaFiles
745 ## _CheckDuplicateInFV() method
747 # Check whether there is duplicate modules/files exist in FV section.
748 # The check base on the file GUID;
750 def _CheckDuplicateInFV(self
, Fdf
):
751 for Fv
in Fdf
.Profile
.FvDict
:
753 for FfsFile
in Fdf
.Profile
.FvDict
[Fv
].FfsList
:
754 if FfsFile
.InfFileName
and FfsFile
.NameGuid
is None:
759 for Pa
in self
.AutoGenObjectList
:
762 for Module
in Pa
.ModuleAutoGenList
:
763 if path
.normpath(Module
.MetaFile
.File
) == path
.normpath(FfsFile
.InfFileName
):
765 if not Module
.Guid
.upper() in _GuidDict
.keys():
766 _GuidDict
[Module
.Guid
.upper()] = FfsFile
769 EdkLogger
.error("build",
771 "Duplicate GUID found for these lines: Line %d: %s and Line %d: %s. GUID: %s" % (FfsFile
.CurrentLineNum
,
772 FfsFile
.CurrentLineContent
,
773 _GuidDict
[Module
.Guid
.upper()].CurrentLineNum
,
774 _GuidDict
[Module
.Guid
.upper()].CurrentLineContent
,
775 Module
.Guid
.upper()),
776 ExtraData
=self
.FdfFile
)
778 # Some INF files not have entity in DSC file.
781 if FfsFile
.InfFileName
.find('$') == -1:
782 InfPath
= NormPath(FfsFile
.InfFileName
)
783 if not os
.path
.exists(InfPath
):
784 EdkLogger
.error('build', GENFDS_ERROR
, "Non-existant Module %s !" % (FfsFile
.InfFileName
))
786 PathClassObj
= PathClass(FfsFile
.InfFileName
, self
.WorkspaceDir
)
788 # Here we just need to get FILE_GUID from INF file, use 'COMMON' as ARCH attribute. and use
789 # BuildObject from one of AutoGenObjectList is enough.
791 InfObj
= self
.AutoGenObjectList
[0].BuildDatabase
.WorkspaceDb
.BuildObject
[PathClassObj
, 'COMMON', self
.BuildTarget
, self
.ToolChain
]
792 if not InfObj
.Guid
.upper() in _GuidDict
.keys():
793 _GuidDict
[InfObj
.Guid
.upper()] = FfsFile
795 EdkLogger
.error("build",
797 "Duplicate GUID found for these lines: Line %d: %s and Line %d: %s. GUID: %s" % (FfsFile
.CurrentLineNum
,
798 FfsFile
.CurrentLineContent
,
799 _GuidDict
[InfObj
.Guid
.upper()].CurrentLineNum
,
800 _GuidDict
[InfObj
.Guid
.upper()].CurrentLineContent
,
801 InfObj
.Guid
.upper()),
802 ExtraData
=self
.FdfFile
)
805 if FfsFile
.NameGuid
is not None:
807 # If the NameGuid reference a PCD name.
808 # The style must match: PCD(xxxx.yyy)
810 if gPCDAsGuidPattern
.match(FfsFile
.NameGuid
):
812 # Replace the PCD value.
814 _PcdName
= FfsFile
.NameGuid
.lstrip("PCD(").rstrip(")")
816 for Pa
in self
.AutoGenObjectList
:
818 for PcdItem
in Pa
.AllPcdList
:
819 if (PcdItem
.TokenSpaceGuidCName
+ "." + PcdItem
.TokenCName
) == _PcdName
:
821 # First convert from CFormatGuid to GUID string
823 _PcdGuidString
= GuidStructureStringToGuidString(PcdItem
.DefaultValue
)
825 if not _PcdGuidString
:
827 # Then try Byte array.
829 _PcdGuidString
= GuidStructureByteArrayToGuidString(PcdItem
.DefaultValue
)
831 if not _PcdGuidString
:
833 # Not Byte array or CFormat GUID, raise error.
835 EdkLogger
.error("build",
837 "The format of PCD value is incorrect. PCD: %s , Value: %s\n" % (_PcdName
, PcdItem
.DefaultValue
),
838 ExtraData
=self
.FdfFile
)
840 if not _PcdGuidString
.upper() in _GuidDict
.keys():
841 _GuidDict
[_PcdGuidString
.upper()] = FfsFile
845 EdkLogger
.error("build",
847 "Duplicate GUID found for these lines: Line %d: %s and Line %d: %s. GUID: %s" % (FfsFile
.CurrentLineNum
,
848 FfsFile
.CurrentLineContent
,
849 _GuidDict
[_PcdGuidString
.upper()].CurrentLineNum
,
850 _GuidDict
[_PcdGuidString
.upper()].CurrentLineContent
,
851 FfsFile
.NameGuid
.upper()),
852 ExtraData
=self
.FdfFile
)
854 if not FfsFile
.NameGuid
.upper() in _GuidDict
.keys():
855 _GuidDict
[FfsFile
.NameGuid
.upper()] = FfsFile
858 # Two raw file GUID conflict.
860 EdkLogger
.error("build",
862 "Duplicate GUID found for these lines: Line %d: %s and Line %d: %s. GUID: %s" % (FfsFile
.CurrentLineNum
,
863 FfsFile
.CurrentLineContent
,
864 _GuidDict
[FfsFile
.NameGuid
.upper()].CurrentLineNum
,
865 _GuidDict
[FfsFile
.NameGuid
.upper()].CurrentLineContent
,
866 FfsFile
.NameGuid
.upper()),
867 ExtraData
=self
.FdfFile
)
870 def _CheckPcdDefineAndType(self
):
872 "FixedAtBuild", "PatchableInModule", "FeatureFlag",
873 "Dynamic", #"DynamicHii", "DynamicVpd",
874 "DynamicEx", # "DynamicExHii", "DynamicExVpd"
877 # This dict store PCDs which are not used by any modules with specified arches
878 UnusedPcd
= OrderedDict()
879 for Pa
in self
.AutoGenObjectList
:
880 # Key of DSC's Pcds dictionary is PcdCName, TokenSpaceGuid
881 for Pcd
in Pa
.Platform
.Pcds
:
882 PcdType
= Pa
.Platform
.Pcds
[Pcd
].Type
884 # If no PCD type, this PCD comes from FDF
888 # Try to remove Hii and Vpd suffix
889 if PcdType
.startswith("DynamicEx"):
890 PcdType
= "DynamicEx"
891 elif PcdType
.startswith("Dynamic"):
894 for Package
in Pa
.PackageList
:
895 # Key of DEC's Pcds dictionary is PcdCName, TokenSpaceGuid, PcdType
896 if (Pcd
[0], Pcd
[1], PcdType
) in Package
.Pcds
:
898 for Type
in PcdTypeList
:
899 if (Pcd
[0], Pcd
[1], Type
) in Package
.Pcds
:
903 "Type [%s] of PCD [%s.%s] in DSC file doesn't match the type [%s] defined in DEC file." \
904 % (Pa
.Platform
.Pcds
[Pcd
].Type
, Pcd
[1], Pcd
[0], Type
),
909 UnusedPcd
.setdefault(Pcd
, []).append(Pa
.Arch
)
911 for Pcd
in UnusedPcd
:
914 "The PCD was not specified by any INF module in the platform for the given architecture.\n"
915 "\tPCD: [%s.%s]\n\tPlatform: [%s]\n\tArch: %s"
916 % (Pcd
[1], Pcd
[0], os
.path
.basename(str(self
.MetaFile
)), str(UnusedPcd
[Pcd
])),
921 return "%s [%s]" % (self
.MetaFile
, ", ".join(self
.ArchList
))
923 ## Return the directory to store FV files
925 if self
._FvDir
is None:
926 self
._FvDir
= path
.join(self
.BuildDir
, 'FV')
929 ## Return the directory to store all intermediate and final files built
930 def _GetBuildDir(self
):
931 if self
._BuildDir
is None:
932 return self
.AutoGenObjectList
[0].BuildDir
934 ## Return the build output directory platform specifies
935 def _GetOutputDir(self
):
936 return self
.Platform
.OutputDirectory
938 ## Return platform name
940 return self
.Platform
.PlatformName
942 ## Return meta-file GUID
944 return self
.Platform
.Guid
946 ## Return platform version
947 def _GetVersion(self
):
948 return self
.Platform
.Version
950 ## Return paths of tools
951 def _GetToolDefinition(self
):
952 return self
.AutoGenObjectList
[0].ToolDefinition
954 ## Return directory of platform makefile
956 # @retval string Makefile directory
958 def _GetMakeFileDir(self
):
959 if self
._MakeFileDir
is None:
960 self
._MakeFileDir
= self
.BuildDir
961 return self
._MakeFileDir
963 ## Return build command string
965 # @retval string Build command string
967 def _GetBuildCommand(self
):
968 if self
._BuildCommand
is None:
969 # BuildCommand should be all the same. So just get one from platform AutoGen
970 self
._BuildCommand
= self
.AutoGenObjectList
[0].BuildCommand
971 return self
._BuildCommand
973 ## Check the PCDs token value conflict in each DEC file.
975 # Will cause build break and raise error message while two PCDs conflict.
979 def _CheckAllPcdsTokenValueConflict(self
):
980 for Pa
in self
.AutoGenObjectList
:
981 for Package
in Pa
.PackageList
:
982 PcdList
= Package
.Pcds
.values()
983 PcdList
.sort(lambda x
, y
: cmp(int(x
.TokenValue
, 0), int(y
.TokenValue
, 0)))
985 while (Count
< len(PcdList
) - 1) :
986 Item
= PcdList
[Count
]
987 ItemNext
= PcdList
[Count
+ 1]
989 # Make sure in the same token space the TokenValue should be unique
991 if (int(Item
.TokenValue
, 0) == int(ItemNext
.TokenValue
, 0)):
992 SameTokenValuePcdList
= []
993 SameTokenValuePcdList
.append(Item
)
994 SameTokenValuePcdList
.append(ItemNext
)
995 RemainPcdListLength
= len(PcdList
) - Count
- 2
996 for ValueSameCount
in range(RemainPcdListLength
):
997 if int(PcdList
[len(PcdList
) - RemainPcdListLength
+ ValueSameCount
].TokenValue
, 0) == int(Item
.TokenValue
, 0):
998 SameTokenValuePcdList
.append(PcdList
[len(PcdList
) - RemainPcdListLength
+ ValueSameCount
])
1002 # Sort same token value PCD list with TokenGuid and TokenCName
1004 SameTokenValuePcdList
.sort(lambda x
, y
: cmp("%s.%s" % (x
.TokenSpaceGuidCName
, x
.TokenCName
), "%s.%s" % (y
.TokenSpaceGuidCName
, y
.TokenCName
)))
1005 SameTokenValuePcdListCount
= 0
1006 while (SameTokenValuePcdListCount
< len(SameTokenValuePcdList
) - 1):
1008 TemListItem
= SameTokenValuePcdList
[SameTokenValuePcdListCount
]
1009 TemListItemNext
= SameTokenValuePcdList
[SameTokenValuePcdListCount
+ 1]
1011 if (TemListItem
.TokenSpaceGuidCName
== TemListItemNext
.TokenSpaceGuidCName
) and (TemListItem
.TokenCName
!= TemListItemNext
.TokenCName
):
1012 for PcdItem
in GlobalData
.MixedPcd
:
1013 if (TemListItem
.TokenCName
, TemListItem
.TokenSpaceGuidCName
) in GlobalData
.MixedPcd
[PcdItem
] or \
1014 (TemListItemNext
.TokenCName
, TemListItemNext
.TokenSpaceGuidCName
) in GlobalData
.MixedPcd
[PcdItem
]:
1020 "The TokenValue [%s] of PCD [%s.%s] is conflict with: [%s.%s] in %s"\
1021 % (TemListItem
.TokenValue
, TemListItem
.TokenSpaceGuidCName
, TemListItem
.TokenCName
, TemListItemNext
.TokenSpaceGuidCName
, TemListItemNext
.TokenCName
, Package
),
1024 SameTokenValuePcdListCount
+= 1
1025 Count
+= SameTokenValuePcdListCount
1028 PcdList
= Package
.Pcds
.values()
1029 PcdList
.sort(lambda x
, y
: cmp("%s.%s" % (x
.TokenSpaceGuidCName
, x
.TokenCName
), "%s.%s" % (y
.TokenSpaceGuidCName
, y
.TokenCName
)))
1031 while (Count
< len(PcdList
) - 1) :
1032 Item
= PcdList
[Count
]
1033 ItemNext
= PcdList
[Count
+ 1]
1035 # Check PCDs with same TokenSpaceGuidCName.TokenCName have same token value as well.
1037 if (Item
.TokenSpaceGuidCName
== ItemNext
.TokenSpaceGuidCName
) and (Item
.TokenCName
== ItemNext
.TokenCName
) and (int(Item
.TokenValue
, 0) != int(ItemNext
.TokenValue
, 0)):
1041 "The TokenValue [%s] of PCD [%s.%s] in %s defined in two places should be same as well."\
1042 % (Item
.TokenValue
, Item
.TokenSpaceGuidCName
, Item
.TokenCName
, Package
),
1046 ## Generate fds command
1047 def _GenFdsCommand(self
):
1048 return (GenMake
.TopLevelMakefile(self
)._TEMPLATE
_.Replace(GenMake
.TopLevelMakefile(self
)._TemplateDict
)).strip()
1050 ## Create makefile for the platform and modules in it
1052 # @param CreateDepsMakeFile Flag indicating if the makefile for
1053 # modules will be created as well
1055 def CreateMakeFile(self
, CreateDepsMakeFile
=False):
1056 if CreateDepsMakeFile
:
1057 for Pa
in self
.AutoGenObjectList
:
1058 Pa
.CreateMakeFile(CreateDepsMakeFile
)
1060 ## Create autogen code for platform and modules
1062 # Since there's no autogen code for platform, this method will do nothing
1063 # if CreateModuleCodeFile is set to False.
1065 # @param CreateDepsCodeFile Flag indicating if creating module's
1066 # autogen code file or not
1068 def CreateCodeFile(self
, CreateDepsCodeFile
=False):
1069 if not CreateDepsCodeFile
:
1071 for Pa
in self
.AutoGenObjectList
:
1072 Pa
.CreateCodeFile(CreateDepsCodeFile
)
1074 ## Create AsBuilt INF file the platform
1076 def CreateAsBuiltInf(self
):
1079 Name
= property(_GetName
)
1080 Guid
= property(_GetGuid
)
1081 Version
= property(_GetVersion
)
1082 OutputDir
= property(_GetOutputDir
)
1084 ToolDefinition
= property(_GetToolDefinition
) # toolcode : tool path
1086 BuildDir
= property(_GetBuildDir
)
1087 FvDir
= property(_GetFvDir
)
1088 MakeFileDir
= property(_GetMakeFileDir
)
1089 BuildCommand
= property(_GetBuildCommand
)
1090 GenFdsCommand
= property(_GenFdsCommand
)
1092 ## AutoGen class for platform
1094 # PlatformAutoGen class will process the original information in platform
1095 # file in order to generate makefile for platform.
1097 class PlatformAutoGen(AutoGen
):
1098 # call super().__init__ then call the worker function with different parameter count
1099 def __init__(self
, Workspace
, MetaFile
, Target
, Toolchain
, Arch
, *args
, **kwargs
):
1103 super(PlatformAutoGen
, self
).__init
__(self
, Workspace
, MetaFile
, Target
, Toolchain
, Arch
, *args
, **kwargs
)
1104 self
._InitWorker
(Workspace
, MetaFile
, Target
, Toolchain
, Arch
)
1107 # Used to store all PCDs for both PEI and DXE phase, in order to generate
1108 # correct PCD database
1111 _NonDynaPcdList_
= []
1115 # The priority list while override build option
1117 PrioList
= {"0x11111" : 16, # TARGET_TOOLCHAIN_ARCH_COMMANDTYPE_ATTRIBUTE (Highest)
1118 "0x01111" : 15, # ******_TOOLCHAIN_ARCH_COMMANDTYPE_ATTRIBUTE
1119 "0x10111" : 14, # TARGET_*********_ARCH_COMMANDTYPE_ATTRIBUTE
1120 "0x00111" : 13, # ******_*********_ARCH_COMMANDTYPE_ATTRIBUTE
1121 "0x11011" : 12, # TARGET_TOOLCHAIN_****_COMMANDTYPE_ATTRIBUTE
1122 "0x01011" : 11, # ******_TOOLCHAIN_****_COMMANDTYPE_ATTRIBUTE
1123 "0x10011" : 10, # TARGET_*********_****_COMMANDTYPE_ATTRIBUTE
1124 "0x00011" : 9, # ******_*********_****_COMMANDTYPE_ATTRIBUTE
1125 "0x11101" : 8, # TARGET_TOOLCHAIN_ARCH_***********_ATTRIBUTE
1126 "0x01101" : 7, # ******_TOOLCHAIN_ARCH_***********_ATTRIBUTE
1127 "0x10101" : 6, # TARGET_*********_ARCH_***********_ATTRIBUTE
1128 "0x00101" : 5, # ******_*********_ARCH_***********_ATTRIBUTE
1129 "0x11001" : 4, # TARGET_TOOLCHAIN_****_***********_ATTRIBUTE
1130 "0x01001" : 3, # ******_TOOLCHAIN_****_***********_ATTRIBUTE
1131 "0x10001" : 2, # TARGET_*********_****_***********_ATTRIBUTE
1132 "0x00001" : 1} # ******_*********_****_***********_ATTRIBUTE (Lowest)
1134 ## Initialize PlatformAutoGen
1137 # @param Workspace WorkspaceAutoGen object
1138 # @param PlatformFile Platform file (DSC file)
1139 # @param Target Build target (DEBUG, RELEASE)
1140 # @param Toolchain Name of tool chain
1141 # @param Arch arch of the platform supports
1143 def _InitWorker(self
, Workspace
, PlatformFile
, Target
, Toolchain
, Arch
):
1144 EdkLogger
.debug(EdkLogger
.DEBUG_9
, "AutoGen platform [%s] [%s]" % (PlatformFile
, Arch
))
1145 GlobalData
.gProcessingFile
= "%s [%s, %s, %s]" % (PlatformFile
, Arch
, Toolchain
, Target
)
1147 self
.MetaFile
= PlatformFile
1148 self
.Workspace
= Workspace
1149 self
.WorkspaceDir
= Workspace
.WorkspaceDir
1150 self
.ToolChain
= Toolchain
1151 self
.BuildTarget
= Target
1153 self
.SourceDir
= PlatformFile
.SubDir
1154 self
.SourceOverrideDir
= None
1155 self
.FdTargetList
= self
.Workspace
.FdTargetList
1156 self
.FvTargetList
= self
.Workspace
.FvTargetList
1157 self
.AllPcdList
= []
1158 # get the original module/package/platform objects
1159 self
.BuildDatabase
= Workspace
.BuildDatabase
1160 self
.DscBuildDataObj
= Workspace
.Platform
1161 self
._GuidDict
= Workspace
._GuidDict
1163 # flag indicating if the makefile/C-code file has been created or not
1164 self
.IsMakeFileCreated
= False
1165 self
.IsCodeFileCreated
= False
1167 self
._Platform
= None
1170 self
._Version
= None
1172 self
._BuildRule
= None
1173 self
._SourceDir
= None
1174 self
._BuildDir
= None
1175 self
._OutputDir
= None
1177 self
._MakeFileDir
= None
1178 self
._FdfFile
= None
1180 self
._PcdTokenNumber
= None # (TokenCName, TokenSpaceGuidCName) : GeneratedTokenNumber
1181 self
._DynamicPcdList
= None # [(TokenCName1, TokenSpaceGuidCName1), (TokenCName2, TokenSpaceGuidCName2), ...]
1182 self
._NonDynamicPcdList
= None # [(TokenCName1, TokenSpaceGuidCName1), (TokenCName2, TokenSpaceGuidCName2), ...]
1183 self
._NonDynamicPcdDict
= {}
1185 self
._ToolDefinitions
= None
1186 self
._ToolDefFile
= None # toolcode : tool path
1187 self
._ToolChainFamily
= None
1188 self
._BuildRuleFamily
= None
1189 self
._BuildOption
= None # toolcode : option
1190 self
._EdkBuildOption
= None # edktoolcode : option
1191 self
._EdkIIBuildOption
= None # edkiitoolcode : option
1192 self
._PackageList
= None
1193 self
._ModuleAutoGenList
= None
1194 self
._LibraryAutoGenList
= None
1195 self
._BuildCommand
= None
1196 self
._AsBuildInfList
= []
1197 self
._AsBuildModuleList
= []
1199 self
.VariableInfo
= None
1201 if GlobalData
.gFdfParser
is not None:
1202 self
._AsBuildInfList
= GlobalData
.gFdfParser
.Profile
.InfList
1203 for Inf
in self
._AsBuildInfList
:
1204 InfClass
= PathClass(NormPath(Inf
), GlobalData
.gWorkspace
, self
.Arch
)
1205 M
= self
.BuildDatabase
[InfClass
, self
.Arch
, self
.BuildTarget
, self
.ToolChain
]
1206 if not M
.IsSupportedArch
:
1208 self
._AsBuildModuleList
.append(InfClass
)
1209 # get library/modules for build
1210 self
.LibraryBuildDirectoryList
= []
1211 self
.ModuleBuildDirectoryList
= []
1216 return "%s [%s]" % (self
.MetaFile
, self
.Arch
)
1218 ## Create autogen code for platform and modules
1220 # Since there's no autogen code for platform, this method will do nothing
1221 # if CreateModuleCodeFile is set to False.
1223 # @param CreateModuleCodeFile Flag indicating if creating module's
1224 # autogen code file or not
1226 def CreateCodeFile(self
, CreateModuleCodeFile
=False):
1227 # only module has code to be greated, so do nothing if CreateModuleCodeFile is False
1228 if self
.IsCodeFileCreated
or not CreateModuleCodeFile
:
1231 for Ma
in self
.ModuleAutoGenList
:
1232 Ma
.CreateCodeFile(True)
1234 # don't do this twice
1235 self
.IsCodeFileCreated
= True
1237 ## Generate Fds Command
1238 def _GenFdsCommand(self
):
1239 return self
.Workspace
.GenFdsCommand
1241 ## Create makefile for the platform and mdoules in it
1243 # @param CreateModuleMakeFile Flag indicating if the makefile for
1244 # modules will be created as well
1246 def CreateMakeFile(self
, CreateModuleMakeFile
=False, FfsCommand
= {}):
1247 if CreateModuleMakeFile
:
1248 for ModuleFile
in self
.Platform
.Modules
:
1249 Ma
= ModuleAutoGen(self
.Workspace
, ModuleFile
, self
.BuildTarget
,
1250 self
.ToolChain
, self
.Arch
, self
.MetaFile
)
1251 if (ModuleFile
.File
, self
.Arch
) in FfsCommand
:
1252 Ma
.CreateMakeFile(True, FfsCommand
[ModuleFile
.File
, self
.Arch
])
1254 Ma
.CreateMakeFile(True)
1255 #Ma.CreateAsBuiltInf()
1257 # no need to create makefile for the platform more than once
1258 if self
.IsMakeFileCreated
:
1261 # create library/module build dirs for platform
1262 Makefile
= GenMake
.PlatformMakefile(self
)
1263 self
.LibraryBuildDirectoryList
= Makefile
.GetLibraryBuildDirectoryList()
1264 self
.ModuleBuildDirectoryList
= Makefile
.GetModuleBuildDirectoryList()
1266 self
.IsMakeFileCreated
= True
1268 ## Deal with Shared FixedAtBuild Pcds
1270 def CollectFixedAtBuildPcds(self
):
1271 for LibAuto
in self
.LibraryAutoGenList
:
1272 FixedAtBuildPcds
= {}
1273 ShareFixedAtBuildPcdsSameValue
= {}
1274 for Module
in LibAuto
._ReferenceModules
:
1275 for Pcd
in Module
.FixedAtBuildPcds
+ LibAuto
.FixedAtBuildPcds
:
1276 key
= ".".join((Pcd
.TokenSpaceGuidCName
,Pcd
.TokenCName
))
1277 if key
not in FixedAtBuildPcds
:
1278 ShareFixedAtBuildPcdsSameValue
[key
] = True
1279 FixedAtBuildPcds
[key
] = Pcd
.DefaultValue
1281 if FixedAtBuildPcds
[key
] != Pcd
.DefaultValue
:
1282 ShareFixedAtBuildPcdsSameValue
[key
] = False
1283 for Pcd
in LibAuto
.FixedAtBuildPcds
:
1284 key
= ".".join((Pcd
.TokenSpaceGuidCName
,Pcd
.TokenCName
))
1285 if (Pcd
.TokenCName
,Pcd
.TokenSpaceGuidCName
) not in self
.NonDynamicPcdDict
:
1288 DscPcd
= self
.NonDynamicPcdDict
[(Pcd
.TokenCName
,Pcd
.TokenSpaceGuidCName
)]
1289 if DscPcd
.Type
!= "FixedAtBuild":
1291 if key
in ShareFixedAtBuildPcdsSameValue
and ShareFixedAtBuildPcdsSameValue
[key
]:
1292 LibAuto
.ConstPcd
[key
] = FixedAtBuildPcds
[key
]
1294 def CollectVariables(self
, DynamicPcdSet
):
1298 if self
.Workspace
.FdfFile
:
1299 FdDict
= self
.Workspace
.FdfProfile
.FdDict
[GlobalData
.gFdfParser
.CurrentFdName
]
1300 for FdRegion
in FdDict
.RegionList
:
1301 for item
in FdRegion
.RegionDataList
:
1302 if self
.Platform
.VpdToolGuid
.strip() and self
.Platform
.VpdToolGuid
in item
:
1303 VpdRegionSize
= FdRegion
.Size
1304 VpdRegionBase
= FdRegion
.Offset
1308 VariableInfo
= VariableMgr(self
.DscBuildDataObj
._GetDefaultStores
(),self
.DscBuildDataObj
._GetSkuIds
())
1309 VariableInfo
.SetVpdRegionMaxSize(VpdRegionSize
)
1310 VariableInfo
.SetVpdRegionOffset(VpdRegionBase
)
1312 for Pcd
in DynamicPcdSet
:
1313 pcdname
= ".".join((Pcd
.TokenSpaceGuidCName
,Pcd
.TokenCName
))
1314 for SkuName
in Pcd
.SkuInfoList
:
1315 Sku
= Pcd
.SkuInfoList
[SkuName
]
1317 if SkuId
is None or SkuId
== '':
1319 if len(Sku
.VariableName
) > 0:
1320 VariableGuidStructure
= Sku
.VariableGuidValue
1321 VariableGuid
= GuidStructureStringToGuidString(VariableGuidStructure
)
1322 for StorageName
in Sku
.DefaultStoreDict
:
1323 VariableInfo
.append_variable(var_info(Index
,pcdname
,StorageName
,SkuName
, StringToArray(Sku
.VariableName
),VariableGuid
, Sku
.VariableOffset
, Sku
.VariableAttribute
, Sku
.HiiDefaultValue
,Sku
.DefaultStoreDict
[StorageName
],Pcd
.DatumType
))
1327 def UpdateNVStoreMaxSize(self
,OrgVpdFile
):
1328 if self
.VariableInfo
:
1329 VpdMapFilePath
= os
.path
.join(self
.BuildDir
, "FV", "%s.map" % self
.Platform
.VpdToolGuid
)
1330 PcdNvStoreDfBuffer
= [item
for item
in self
._DynamicPcdList
if item
.TokenCName
== "PcdNvStoreDefaultValueBuffer" and item
.TokenSpaceGuidCName
== "gEfiMdeModulePkgTokenSpaceGuid"]
1332 if PcdNvStoreDfBuffer
:
1333 if os
.path
.exists(VpdMapFilePath
):
1334 OrgVpdFile
.Read(VpdMapFilePath
)
1335 PcdItems
= OrgVpdFile
.GetOffset(PcdNvStoreDfBuffer
[0])
1336 NvStoreOffset
= PcdItems
.values()[0].strip() if PcdItems
else '0'
1338 EdkLogger
.error("build", FILE_READ_FAILURE
, "Can not find VPD map file %s to fix up VPD offset." % VpdMapFilePath
)
1340 NvStoreOffset
= int(NvStoreOffset
,16) if NvStoreOffset
.upper().startswith("0X") else int(NvStoreOffset
)
1341 default_skuobj
= PcdNvStoreDfBuffer
[0].SkuInfoList
.get("DEFAULT")
1342 maxsize
= self
.VariableInfo
.VpdRegionSize
- NvStoreOffset
if self
.VariableInfo
.VpdRegionSize
else len(default_skuobj
.DefaultValue
.split(","))
1343 var_data
= self
.VariableInfo
.PatchNVStoreDefaultMaxSize(maxsize
)
1345 if var_data
and default_skuobj
:
1346 default_skuobj
.DefaultValue
= var_data
1347 PcdNvStoreDfBuffer
[0].DefaultValue
= var_data
1348 PcdNvStoreDfBuffer
[0].SkuInfoList
.clear()
1349 PcdNvStoreDfBuffer
[0].SkuInfoList
['DEFAULT'] = default_skuobj
1350 PcdNvStoreDfBuffer
[0].MaxDatumSize
= str(len(default_skuobj
.DefaultValue
.split(",")))
1354 ## Collect dynamic PCDs
1356 # Gather dynamic PCDs list from each module and their settings from platform
1357 # This interface should be invoked explicitly when platform action is created.
1359 def CollectPlatformDynamicPcds(self
):
1361 for key
in self
.Platform
.Pcds
:
1362 for SinglePcd
in GlobalData
.MixedPcd
:
1363 if (self
.Platform
.Pcds
[key
].TokenCName
, self
.Platform
.Pcds
[key
].TokenSpaceGuidCName
) == SinglePcd
:
1364 for item
in GlobalData
.MixedPcd
[SinglePcd
]:
1365 Pcd_Type
= item
[0].split('_')[-1]
1366 if (Pcd_Type
== self
.Platform
.Pcds
[key
].Type
) or (Pcd_Type
== TAB_PCDS_DYNAMIC_EX
and self
.Platform
.Pcds
[key
].Type
in GenC
.gDynamicExPcd
) or \
1367 (Pcd_Type
== TAB_PCDS_DYNAMIC
and self
.Platform
.Pcds
[key
].Type
in GenC
.gDynamicPcd
):
1368 Value
= self
.Platform
.Pcds
[key
]
1369 Value
.TokenCName
= self
.Platform
.Pcds
[key
].TokenCName
+ '_' + Pcd_Type
1371 newkey
= (Value
.TokenCName
, key
[1])
1373 newkey
= (Value
.TokenCName
, key
[1], key
[2])
1374 del self
.Platform
.Pcds
[key
]
1375 self
.Platform
.Pcds
[newkey
] = Value
1383 # for gathering error information
1384 NoDatumTypePcdList
= set()
1386 for InfName
in self
._AsBuildInfList
:
1387 InfName
= mws
.join(self
.WorkspaceDir
, InfName
)
1388 FdfModuleList
.append(os
.path
.normpath(InfName
))
1389 for F
in self
.Platform
.Modules
.keys():
1390 M
= ModuleAutoGen(self
.Workspace
, F
, self
.BuildTarget
, self
.ToolChain
, self
.Arch
, self
.MetaFile
)
1391 #GuidValue.update(M.Guids)
1393 self
.Platform
.Modules
[F
].M
= M
1395 for PcdFromModule
in M
.ModulePcdList
+ M
.LibraryPcdList
:
1396 # make sure that the "VOID*" kind of datum has MaxDatumSize set
1397 if PcdFromModule
.DatumType
== "VOID*" and PcdFromModule
.MaxDatumSize
in [None, '']:
1398 NoDatumTypePcdList
.add("%s.%s [%s]" % (PcdFromModule
.TokenSpaceGuidCName
, PcdFromModule
.TokenCName
, F
))
1400 # Check the PCD from Binary INF or Source INF
1401 if M
.IsBinaryModule
== True:
1402 PcdFromModule
.IsFromBinaryInf
= True
1404 # Check the PCD from DSC or not
1405 if (PcdFromModule
.TokenCName
, PcdFromModule
.TokenSpaceGuidCName
) in self
.Platform
.Pcds
.keys():
1406 PcdFromModule
.IsFromDsc
= True
1408 PcdFromModule
.IsFromDsc
= False
1409 if PcdFromModule
.Type
in GenC
.gDynamicPcd
or PcdFromModule
.Type
in GenC
.gDynamicExPcd
:
1410 if F
.Path
not in FdfModuleList
:
1411 # If one of the Source built modules listed in the DSC is not listed
1412 # in FDF modules, and the INF lists a PCD can only use the PcdsDynamic
1413 # access method (it is only listed in the DEC file that declares the
1414 # PCD as PcdsDynamic), then build tool will report warning message
1415 # notify the PI that they are attempting to build a module that must
1416 # be included in a flash image in order to be functional. These Dynamic
1417 # PCD will not be added into the Database unless it is used by other
1418 # modules that are included in the FDF file.
1419 if PcdFromModule
.Type
in GenC
.gDynamicPcd
and \
1420 PcdFromModule
.IsFromBinaryInf
== False:
1421 # Print warning message to let the developer make a determine.
1423 # If one of the Source built modules listed in the DSC is not listed in
1424 # FDF modules, and the INF lists a PCD can only use the PcdsDynamicEx
1425 # access method (it is only listed in the DEC file that declares the
1426 # PCD as PcdsDynamicEx), then DO NOT break the build; DO NOT add the
1427 # PCD to the Platform's PCD Database.
1428 if PcdFromModule
.Type
in GenC
.gDynamicExPcd
:
1431 # If a dynamic PCD used by a PEM module/PEI module & DXE module,
1432 # it should be stored in Pcd PEI database, If a dynamic only
1433 # used by DXE module, it should be stored in DXE PCD database.
1434 # The default Phase is DXE
1436 if M
.ModuleType
in ["PEIM", "PEI_CORE"]:
1437 PcdFromModule
.Phase
= "PEI"
1438 if PcdFromModule
not in self
._DynaPcdList
_:
1439 self
._DynaPcdList
_.append(PcdFromModule
)
1440 elif PcdFromModule
.Phase
== 'PEI':
1441 # overwrite any the same PCD existing, if Phase is PEI
1442 Index
= self
._DynaPcdList
_.index(PcdFromModule
)
1443 self
._DynaPcdList
_[Index
] = PcdFromModule
1444 elif PcdFromModule
not in self
._NonDynaPcdList
_:
1445 self
._NonDynaPcdList
_.append(PcdFromModule
)
1446 elif PcdFromModule
in self
._NonDynaPcdList
_ and PcdFromModule
.IsFromBinaryInf
== True:
1447 Index
= self
._NonDynaPcdList
_.index(PcdFromModule
)
1448 if self
._NonDynaPcdList
_[Index
].IsFromBinaryInf
== False:
1449 #The PCD from Binary INF will override the same one from source INF
1450 self
._NonDynaPcdList
_.remove (self
._NonDynaPcdList
_[Index
])
1451 PcdFromModule
.Pending
= False
1452 self
._NonDynaPcdList
_.append (PcdFromModule
)
1453 # Parse the DynamicEx PCD from the AsBuild INF module list of FDF.
1455 for ModuleInf
in self
.Platform
.Modules
.keys():
1456 DscModuleList
.append (os
.path
.normpath(ModuleInf
.Path
))
1457 # add the PCD from modules that listed in FDF but not in DSC to Database
1458 for InfName
in FdfModuleList
:
1459 if InfName
not in DscModuleList
:
1460 InfClass
= PathClass(InfName
)
1461 M
= self
.BuildDatabase
[InfClass
, self
.Arch
, self
.BuildTarget
, self
.ToolChain
]
1462 # If a module INF in FDF but not in current arch's DSC module list, it must be module (either binary or source)
1463 # for different Arch. PCDs in source module for different Arch is already added before, so skip the source module here.
1464 # For binary module, if in current arch, we need to list the PCDs into database.
1465 if not M
.IsSupportedArch
:
1467 # Override the module PCD setting by platform setting
1468 ModulePcdList
= self
.ApplyPcdSetting(M
, M
.Pcds
)
1469 for PcdFromModule
in ModulePcdList
:
1470 PcdFromModule
.IsFromBinaryInf
= True
1471 PcdFromModule
.IsFromDsc
= False
1472 # Only allow the DynamicEx and Patchable PCD in AsBuild INF
1473 if PcdFromModule
.Type
not in GenC
.gDynamicExPcd
and PcdFromModule
.Type
not in TAB_PCDS_PATCHABLE_IN_MODULE
:
1474 EdkLogger
.error("build", AUTOGEN_ERROR
, "PCD setting error",
1476 ExtraData
="\n\tExisted %s PCD %s in:\n\t\t%s\n"
1477 % (PcdFromModule
.Type
, PcdFromModule
.TokenCName
, InfName
))
1478 # make sure that the "VOID*" kind of datum has MaxDatumSize set
1479 if PcdFromModule
.DatumType
== "VOID*" and PcdFromModule
.MaxDatumSize
in [None, '']:
1480 NoDatumTypePcdList
.add("%s.%s [%s]" % (PcdFromModule
.TokenSpaceGuidCName
, PcdFromModule
.TokenCName
, InfName
))
1481 if M
.ModuleType
in ["PEIM", "PEI_CORE"]:
1482 PcdFromModule
.Phase
= "PEI"
1483 if PcdFromModule
not in self
._DynaPcdList
_ and PcdFromModule
.Type
in GenC
.gDynamicExPcd
:
1484 self
._DynaPcdList
_.append(PcdFromModule
)
1485 elif PcdFromModule
not in self
._NonDynaPcdList
_ and PcdFromModule
.Type
in TAB_PCDS_PATCHABLE_IN_MODULE
:
1486 self
._NonDynaPcdList
_.append(PcdFromModule
)
1487 if PcdFromModule
in self
._DynaPcdList
_ and PcdFromModule
.Phase
== 'PEI' and PcdFromModule
.Type
in GenC
.gDynamicExPcd
:
1488 # Overwrite the phase of any the same PCD existing, if Phase is PEI.
1489 # It is to solve the case that a dynamic PCD used by a PEM module/PEI
1490 # module & DXE module at a same time.
1491 # Overwrite the type of the PCDs in source INF by the type of AsBuild
1492 # INF file as DynamicEx.
1493 Index
= self
._DynaPcdList
_.index(PcdFromModule
)
1494 self
._DynaPcdList
_[Index
].Phase
= PcdFromModule
.Phase
1495 self
._DynaPcdList
_[Index
].Type
= PcdFromModule
.Type
1496 for PcdFromModule
in self
._NonDynaPcdList
_:
1497 # If a PCD is not listed in the DSC file, but binary INF files used by
1498 # this platform all (that use this PCD) list the PCD in a [PatchPcds]
1499 # section, AND all source INF files used by this platform the build
1500 # that use the PCD list the PCD in either a [Pcds] or [PatchPcds]
1501 # section, then the tools must NOT add the PCD to the Platform's PCD
1502 # Database; the build must assign the access method for this PCD as
1503 # PcdsPatchableInModule.
1504 if PcdFromModule
not in self
._DynaPcdList
_:
1506 Index
= self
._DynaPcdList
_.index(PcdFromModule
)
1507 if PcdFromModule
.IsFromDsc
== False and \
1508 PcdFromModule
.Type
in TAB_PCDS_PATCHABLE_IN_MODULE
and \
1509 PcdFromModule
.IsFromBinaryInf
== True and \
1510 self
._DynaPcdList
_[Index
].IsFromBinaryInf
== False:
1511 Index
= self
._DynaPcdList
_.index(PcdFromModule
)
1512 self
._DynaPcdList
_.remove (self
._DynaPcdList
_[Index
])
1514 # print out error information and break the build, if error found
1515 if len(NoDatumTypePcdList
) > 0:
1516 NoDatumTypePcdListString
= "\n\t\t".join(NoDatumTypePcdList
)
1517 EdkLogger
.error("build", AUTOGEN_ERROR
, "PCD setting error",
1519 ExtraData
="\n\tPCD(s) without MaxDatumSize:\n\t\t%s\n"
1520 % NoDatumTypePcdListString
)
1521 self
._NonDynamicPcdList
= self
._NonDynaPcdList
_
1522 self
._DynamicPcdList
= self
._DynaPcdList
_
1524 # Sort dynamic PCD list to:
1525 # 1) If PCD's datum type is VOID* and value is unicode string which starts with L, the PCD item should
1526 # try to be put header of dynamicd List
1527 # 2) If PCD is HII type, the PCD item should be put after unicode type PCD
1529 # The reason of sorting is make sure the unicode string is in double-byte alignment in string table.
1531 UnicodePcdArray
= set()
1533 OtherPcdArray
= set()
1535 VpdFile
= VpdInfoFile
.VpdInfoFile()
1536 NeedProcessVpdMapFile
= False
1538 for pcd
in self
.Platform
.Pcds
.keys():
1539 if pcd
not in self
._PlatformPcds
.keys():
1540 self
._PlatformPcds
[pcd
] = self
.Platform
.Pcds
[pcd
]
1542 for item
in self
._PlatformPcds
:
1543 if self
._PlatformPcds
[item
].DatumType
and self
._PlatformPcds
[item
].DatumType
not in [TAB_UINT8
, TAB_UINT16
, TAB_UINT32
, TAB_UINT64
, TAB_VOID
, "BOOLEAN"]:
1544 self
._PlatformPcds
[item
].DatumType
= "VOID*"
1546 if (self
.Workspace
.ArchList
[-1] == self
.Arch
):
1547 for Pcd
in self
._DynamicPcdList
:
1548 # just pick the a value to determine whether is unicode string type
1549 Sku
= Pcd
.SkuInfoList
[Pcd
.SkuInfoList
.keys()[0]]
1550 Sku
.VpdOffset
= Sku
.VpdOffset
.strip()
1552 if Pcd
.DatumType
not in [TAB_UINT8
, TAB_UINT16
, TAB_UINT32
, TAB_UINT64
, TAB_VOID
, "BOOLEAN"]:
1553 Pcd
.DatumType
= "VOID*"
1555 # if found PCD which datum value is unicode string the insert to left size of UnicodeIndex
1556 # if found HII type PCD then insert to right of UnicodeIndex
1557 if Pcd
.Type
in [TAB_PCDS_DYNAMIC_VPD
, TAB_PCDS_DYNAMIC_EX_VPD
]:
1558 VpdPcdDict
[(Pcd
.TokenCName
, Pcd
.TokenSpaceGuidCName
)] = Pcd
1560 #Collect DynamicHii PCD values and assign it to DynamicExVpd PCD gEfiMdeModulePkgTokenSpaceGuid.PcdNvStoreDefaultValueBuffer
1561 PcdNvStoreDfBuffer
= VpdPcdDict
.get(("PcdNvStoreDefaultValueBuffer","gEfiMdeModulePkgTokenSpaceGuid"))
1562 if PcdNvStoreDfBuffer
:
1563 self
.VariableInfo
= self
.CollectVariables(self
._DynamicPcdList
)
1564 vardump
= self
.VariableInfo
.dump()
1566 PcdNvStoreDfBuffer
.DefaultValue
= vardump
1567 for skuname
in PcdNvStoreDfBuffer
.SkuInfoList
:
1568 PcdNvStoreDfBuffer
.SkuInfoList
[skuname
].DefaultValue
= vardump
1569 PcdNvStoreDfBuffer
.MaxDatumSize
= str(len(vardump
.split(",")))
1571 PlatformPcds
= self
._PlatformPcds
.keys()
1574 # Add VPD type PCD into VpdFile and determine whether the VPD PCD need to be fixed up.
1577 for PcdKey
in PlatformPcds
:
1578 Pcd
= self
._PlatformPcds
[PcdKey
]
1579 if Pcd
.Type
in [TAB_PCDS_DYNAMIC_VPD
, TAB_PCDS_DYNAMIC_EX_VPD
] and \
1580 PcdKey
in VpdPcdDict
:
1581 Pcd
= VpdPcdDict
[PcdKey
]
1583 DefaultSku
= Pcd
.SkuInfoList
.get('DEFAULT')
1585 PcdValue
= DefaultSku
.DefaultValue
1586 if PcdValue
not in SkuValueMap
:
1587 SkuValueMap
[PcdValue
] = []
1588 VpdFile
.Add(Pcd
, 'DEFAULT',DefaultSku
.VpdOffset
)
1589 SkuValueMap
[PcdValue
].append(DefaultSku
)
1591 for (SkuName
,Sku
) in Pcd
.SkuInfoList
.items():
1592 Sku
.VpdOffset
= Sku
.VpdOffset
.strip()
1593 PcdValue
= Sku
.DefaultValue
1595 PcdValue
= Pcd
.DefaultValue
1596 if Sku
.VpdOffset
!= '*':
1597 if PcdValue
.startswith("{"):
1599 elif PcdValue
.startswith("L"):
1604 VpdOffset
= int(Sku
.VpdOffset
)
1607 VpdOffset
= int(Sku
.VpdOffset
, 16)
1609 EdkLogger
.error("build", FORMAT_INVALID
, "Invalid offset value %s for PCD %s.%s." % (Sku
.VpdOffset
, Pcd
.TokenSpaceGuidCName
, Pcd
.TokenCName
))
1610 if VpdOffset
% Alignment
!= 0:
1611 if PcdValue
.startswith("{"):
1612 EdkLogger
.warn("build", "The offset value of PCD %s.%s is not 8-byte aligned!" %(Pcd
.TokenSpaceGuidCName
, Pcd
.TokenCName
), File
=self
.MetaFile
)
1614 EdkLogger
.error("build", FORMAT_INVALID
, 'The offset value of PCD %s.%s should be %s-byte aligned.' % (Pcd
.TokenSpaceGuidCName
, Pcd
.TokenCName
, Alignment
))
1615 if PcdValue
not in SkuValueMap
:
1616 SkuValueMap
[PcdValue
] = []
1617 VpdFile
.Add(Pcd
, SkuName
,Sku
.VpdOffset
)
1618 SkuValueMap
[PcdValue
].append(Sku
)
1619 # if the offset of a VPD is *, then it need to be fixed up by third party tool.
1620 if not NeedProcessVpdMapFile
and Sku
.VpdOffset
== "*":
1621 NeedProcessVpdMapFile
= True
1622 if self
.Platform
.VpdToolGuid
is None or self
.Platform
.VpdToolGuid
== '':
1623 EdkLogger
.error("Build", FILE_NOT_FOUND
, \
1624 "Fail to find third-party BPDG tool to process VPD PCDs. BPDG Guid tool need to be defined in tools_def.txt and VPD_TOOL_GUID need to be provided in DSC file.")
1626 VpdSkuMap
[PcdKey
] = SkuValueMap
1628 # Fix the PCDs define in VPD PCD section that never referenced by module.
1629 # An example is PCD for signature usage.
1631 for DscPcd
in PlatformPcds
:
1632 DscPcdEntry
= self
._PlatformPcds
[DscPcd
]
1633 if DscPcdEntry
.Type
in [TAB_PCDS_DYNAMIC_VPD
, TAB_PCDS_DYNAMIC_EX_VPD
]:
1634 if not (self
.Platform
.VpdToolGuid
is None or self
.Platform
.VpdToolGuid
== ''):
1636 for VpdPcd
in VpdFile
._VpdArray
.keys():
1637 # This PCD has been referenced by module
1638 if (VpdPcd
.TokenSpaceGuidCName
== DscPcdEntry
.TokenSpaceGuidCName
) and \
1639 (VpdPcd
.TokenCName
== DscPcdEntry
.TokenCName
):
1642 # Not found, it should be signature
1644 # just pick the a value to determine whether is unicode string type
1646 SkuObjList
= DscPcdEntry
.SkuInfoList
.items()
1647 DefaultSku
= DscPcdEntry
.SkuInfoList
.get('DEFAULT')
1649 defaultindex
= SkuObjList
.index(('DEFAULT',DefaultSku
))
1650 SkuObjList
[0],SkuObjList
[defaultindex
] = SkuObjList
[defaultindex
],SkuObjList
[0]
1651 for (SkuName
,Sku
) in SkuObjList
:
1652 Sku
.VpdOffset
= Sku
.VpdOffset
.strip()
1654 # Need to iterate DEC pcd information to get the value & datumtype
1655 for eachDec
in self
.PackageList
:
1656 for DecPcd
in eachDec
.Pcds
:
1657 DecPcdEntry
= eachDec
.Pcds
[DecPcd
]
1658 if (DecPcdEntry
.TokenSpaceGuidCName
== DscPcdEntry
.TokenSpaceGuidCName
) and \
1659 (DecPcdEntry
.TokenCName
== DscPcdEntry
.TokenCName
):
1660 # Print warning message to let the developer make a determine.
1661 EdkLogger
.warn("build", "Unreferenced vpd pcd used!",
1662 File
=self
.MetaFile
, \
1663 ExtraData
= "PCD: %s.%s used in the DSC file %s is unreferenced." \
1664 %(DscPcdEntry
.TokenSpaceGuidCName
, DscPcdEntry
.TokenCName
, self
.Platform
.MetaFile
.Path
))
1666 DscPcdEntry
.DatumType
= DecPcdEntry
.DatumType
1667 DscPcdEntry
.DefaultValue
= DecPcdEntry
.DefaultValue
1668 DscPcdEntry
.TokenValue
= DecPcdEntry
.TokenValue
1669 DscPcdEntry
.TokenSpaceGuidValue
= eachDec
.Guids
[DecPcdEntry
.TokenSpaceGuidCName
]
1670 # Only fix the value while no value provided in DSC file.
1671 if (Sku
.DefaultValue
== "" or Sku
.DefaultValue
==None):
1672 DscPcdEntry
.SkuInfoList
[DscPcdEntry
.SkuInfoList
.keys()[0]].DefaultValue
= DecPcdEntry
.DefaultValue
1674 if DscPcdEntry
not in self
._DynamicPcdList
:
1675 self
._DynamicPcdList
.append(DscPcdEntry
)
1676 Sku
.VpdOffset
= Sku
.VpdOffset
.strip()
1677 PcdValue
= Sku
.DefaultValue
1679 PcdValue
= DscPcdEntry
.DefaultValue
1680 if Sku
.VpdOffset
!= '*':
1681 if PcdValue
.startswith("{"):
1683 elif PcdValue
.startswith("L"):
1688 VpdOffset
= int(Sku
.VpdOffset
)
1691 VpdOffset
= int(Sku
.VpdOffset
, 16)
1693 EdkLogger
.error("build", FORMAT_INVALID
, "Invalid offset value %s for PCD %s.%s." % (Sku
.VpdOffset
, DscPcdEntry
.TokenSpaceGuidCName
, DscPcdEntry
.TokenCName
))
1694 if VpdOffset
% Alignment
!= 0:
1695 if PcdValue
.startswith("{"):
1696 EdkLogger
.warn("build", "The offset value of PCD %s.%s is not 8-byte aligned!" %(DscPcdEntry
.TokenSpaceGuidCName
, DscPcdEntry
.TokenCName
), File
=self
.MetaFile
)
1698 EdkLogger
.error("build", FORMAT_INVALID
, 'The offset value of PCD %s.%s should be %s-byte aligned.' % (DscPcdEntry
.TokenSpaceGuidCName
, DscPcdEntry
.TokenCName
, Alignment
))
1699 if PcdValue
not in SkuValueMap
:
1700 SkuValueMap
[PcdValue
] = []
1701 VpdFile
.Add(DscPcdEntry
, SkuName
,Sku
.VpdOffset
)
1702 SkuValueMap
[PcdValue
].append(Sku
)
1703 if not NeedProcessVpdMapFile
and Sku
.VpdOffset
== "*":
1704 NeedProcessVpdMapFile
= True
1705 if DscPcdEntry
.DatumType
== 'VOID*' and PcdValue
.startswith("L"):
1706 UnicodePcdArray
.add(DscPcdEntry
)
1707 elif len(Sku
.VariableName
) > 0:
1708 HiiPcdArray
.add(DscPcdEntry
)
1710 OtherPcdArray
.add(DscPcdEntry
)
1712 # if the offset of a VPD is *, then it need to be fixed up by third party tool.
1713 VpdSkuMap
[DscPcd
] = SkuValueMap
1714 if (self
.Platform
.FlashDefinition
is None or self
.Platform
.FlashDefinition
== '') and \
1715 VpdFile
.GetCount() != 0:
1716 EdkLogger
.error("build", ATTRIBUTE_NOT_AVAILABLE
,
1717 "Fail to get FLASH_DEFINITION definition in DSC file %s which is required when DSC contains VPD PCD." % str(self
.Platform
.MetaFile
))
1719 if VpdFile
.GetCount() != 0:
1721 self
.FixVpdOffset(VpdFile
)
1723 self
.FixVpdOffset(self
.UpdateNVStoreMaxSize(VpdFile
))
1725 # Process VPD map file generated by third party BPDG tool
1726 if NeedProcessVpdMapFile
:
1727 VpdMapFilePath
= os
.path
.join(self
.BuildDir
, "FV", "%s.map" % self
.Platform
.VpdToolGuid
)
1728 if os
.path
.exists(VpdMapFilePath
):
1729 VpdFile
.Read(VpdMapFilePath
)
1732 for pcd
in VpdSkuMap
:
1733 vpdinfo
= VpdFile
.GetVpdInfo(pcd
)
1735 # just pick the a value to determine whether is unicode string type
1737 for pcdvalue
in VpdSkuMap
[pcd
]:
1738 for sku
in VpdSkuMap
[pcd
][pcdvalue
]:
1739 for item
in vpdinfo
:
1740 if item
[2] == pcdvalue
:
1741 sku
.VpdOffset
= item
[1]
1743 EdkLogger
.error("build", FILE_READ_FAILURE
, "Can not find VPD map file %s to fix up VPD offset." % VpdMapFilePath
)
1745 # Delete the DynamicPcdList At the last time enter into this function
1746 for Pcd
in self
._DynamicPcdList
:
1747 # just pick the a value to determine whether is unicode string type
1748 Sku
= Pcd
.SkuInfoList
[Pcd
.SkuInfoList
.keys()[0]]
1749 Sku
.VpdOffset
= Sku
.VpdOffset
.strip()
1751 if Pcd
.DatumType
not in [TAB_UINT8
, TAB_UINT16
, TAB_UINT32
, TAB_UINT64
, TAB_VOID
, "BOOLEAN"]:
1752 Pcd
.DatumType
= "VOID*"
1754 PcdValue
= Sku
.DefaultValue
1755 if Pcd
.DatumType
== 'VOID*' and PcdValue
.startswith("L"):
1756 # if found PCD which datum value is unicode string the insert to left size of UnicodeIndex
1757 UnicodePcdArray
.add(Pcd
)
1758 elif len(Sku
.VariableName
) > 0:
1759 # if found HII type PCD then insert to right of UnicodeIndex
1760 HiiPcdArray
.add(Pcd
)
1762 OtherPcdArray
.add(Pcd
)
1763 del self
._DynamicPcdList
[:]
1764 self
._DynamicPcdList
.extend(list(UnicodePcdArray
))
1765 self
._DynamicPcdList
.extend(list(HiiPcdArray
))
1766 self
._DynamicPcdList
.extend(list(OtherPcdArray
))
1767 allskuset
= [(SkuName
,Sku
.SkuId
) for pcd
in self
._DynamicPcdList
for (SkuName
,Sku
) in pcd
.SkuInfoList
.items()]
1768 for pcd
in self
._DynamicPcdList
:
1769 if len(pcd
.SkuInfoList
) == 1:
1770 for (SkuName
,SkuId
) in allskuset
:
1771 if type(SkuId
) in (str,unicode) and eval(SkuId
) == 0 or SkuId
== 0:
1773 pcd
.SkuInfoList
[SkuName
] = copy
.deepcopy(pcd
.SkuInfoList
['DEFAULT'])
1774 pcd
.SkuInfoList
[SkuName
].SkuId
= SkuId
1775 self
.AllPcdList
= self
._NonDynamicPcdList
+ self
._DynamicPcdList
1777 def FixVpdOffset(self
,VpdFile
):
1778 FvPath
= os
.path
.join(self
.BuildDir
, "FV")
1779 if not os
.path
.exists(FvPath
):
1783 EdkLogger
.error("build", FILE_WRITE_FAILURE
, "Fail to create FV folder under %s" % self
.BuildDir
)
1785 VpdFilePath
= os
.path
.join(FvPath
, "%s.txt" % self
.Platform
.VpdToolGuid
)
1787 if VpdFile
.Write(VpdFilePath
):
1788 # retrieve BPDG tool's path from tool_def.txt according to VPD_TOOL_GUID defined in DSC file.
1790 for ToolDef
in self
.ToolDefinition
.values():
1791 if ToolDef
.has_key("GUID") and ToolDef
["GUID"] == self
.Platform
.VpdToolGuid
:
1792 if not ToolDef
.has_key("PATH"):
1793 EdkLogger
.error("build", ATTRIBUTE_NOT_AVAILABLE
, "PATH attribute was not provided for BPDG guid tool %s in tools_def.txt" % self
.Platform
.VpdToolGuid
)
1794 BPDGToolName
= ToolDef
["PATH"]
1796 # Call third party GUID BPDG tool.
1797 if BPDGToolName
is not None:
1798 VpdInfoFile
.CallExtenalBPDGTool(BPDGToolName
, VpdFilePath
)
1800 EdkLogger
.error("Build", FILE_NOT_FOUND
, "Fail to find third-party BPDG tool to process VPD PCDs. BPDG Guid tool need to be defined in tools_def.txt and VPD_TOOL_GUID need to be provided in DSC file.")
1802 ## Return the platform build data object
1803 def _GetPlatform(self
):
1804 if self
._Platform
is None:
1805 self
._Platform
= self
.BuildDatabase
[self
.MetaFile
, self
.Arch
, self
.BuildTarget
, self
.ToolChain
]
1806 return self
._Platform
1808 ## Return platform name
1810 return self
.Platform
.PlatformName
1812 ## Return the meta file GUID
1814 return self
.Platform
.Guid
1816 ## Return the platform version
1817 def _GetVersion(self
):
1818 return self
.Platform
.Version
1820 ## Return the FDF file name
1821 def _GetFdfFile(self
):
1822 if self
._FdfFile
is None:
1823 if self
.Workspace
.FdfFile
!= "":
1824 self
._FdfFile
= mws
.join(self
.WorkspaceDir
, self
.Workspace
.FdfFile
)
1827 return self
._FdfFile
1829 ## Return the build output directory platform specifies
1830 def _GetOutputDir(self
):
1831 return self
.Platform
.OutputDirectory
1833 ## Return the directory to store all intermediate and final files built
1834 def _GetBuildDir(self
):
1835 if self
._BuildDir
is None:
1836 if os
.path
.isabs(self
.OutputDir
):
1837 self
._BuildDir
= path
.join(
1838 path
.abspath(self
.OutputDir
),
1839 self
.BuildTarget
+ "_" + self
.ToolChain
,
1842 self
._BuildDir
= path
.join(
1845 self
.BuildTarget
+ "_" + self
.ToolChain
,
1847 GlobalData
.gBuildDirectory
= self
._BuildDir
1848 return self
._BuildDir
1850 ## Return directory of platform makefile
1852 # @retval string Makefile directory
1854 def _GetMakeFileDir(self
):
1855 if self
._MakeFileDir
is None:
1856 self
._MakeFileDir
= path
.join(self
.BuildDir
, self
.Arch
)
1857 return self
._MakeFileDir
1859 ## Return build command string
1861 # @retval string Build command string
1863 def _GetBuildCommand(self
):
1864 if self
._BuildCommand
is None:
1865 self
._BuildCommand
= []
1866 if "MAKE" in self
.ToolDefinition
and "PATH" in self
.ToolDefinition
["MAKE"]:
1867 self
._BuildCommand
+= SplitOption(self
.ToolDefinition
["MAKE"]["PATH"])
1868 if "FLAGS" in self
.ToolDefinition
["MAKE"]:
1869 NewOption
= self
.ToolDefinition
["MAKE"]["FLAGS"].strip()
1871 self
._BuildCommand
+= SplitOption(NewOption
)
1872 if "MAKE" in self
.EdkIIBuildOption
:
1873 if "FLAGS" in self
.EdkIIBuildOption
["MAKE"]:
1874 Flags
= self
.EdkIIBuildOption
["MAKE"]["FLAGS"]
1875 if Flags
.startswith('='):
1876 self
._BuildCommand
= [self
._BuildCommand
[0]] + [Flags
[1:]]
1878 self
._BuildCommand
+= [Flags
]
1879 return self
._BuildCommand
1881 ## Get tool chain definition
1883 # Get each tool defition for given tool chain from tools_def.txt and platform
1885 def _GetToolDefinition(self
):
1886 if self
._ToolDefinitions
is None:
1887 ToolDefinition
= self
.Workspace
.ToolDef
.ToolsDefTxtDictionary
1888 if TAB_TOD_DEFINES_COMMAND_TYPE
not in self
.Workspace
.ToolDef
.ToolsDefTxtDatabase
:
1889 EdkLogger
.error('build', RESOURCE_NOT_AVAILABLE
, "No tools found in configuration",
1890 ExtraData
="[%s]" % self
.MetaFile
)
1891 self
._ToolDefinitions
= {}
1893 for Def
in ToolDefinition
:
1894 Target
, Tag
, Arch
, Tool
, Attr
= Def
.split("_")
1895 if Target
!= self
.BuildTarget
or Tag
!= self
.ToolChain
or Arch
!= self
.Arch
:
1898 Value
= ToolDefinition
[Def
]
1899 # don't record the DLL
1901 DllPathList
.add(Value
)
1904 if Tool
not in self
._ToolDefinitions
:
1905 self
._ToolDefinitions
[Tool
] = {}
1906 self
._ToolDefinitions
[Tool
][Attr
] = Value
1909 if GlobalData
.gOptions
.SilentMode
and "MAKE" in self
._ToolDefinitions
:
1910 if "FLAGS" not in self
._ToolDefinitions
["MAKE"]:
1911 self
._ToolDefinitions
["MAKE"]["FLAGS"] = ""
1912 self
._ToolDefinitions
["MAKE"]["FLAGS"] += " -s"
1914 for Tool
in self
._ToolDefinitions
:
1915 for Attr
in self
._ToolDefinitions
[Tool
]:
1916 Value
= self
._ToolDefinitions
[Tool
][Attr
]
1917 if Tool
in self
.BuildOption
and Attr
in self
.BuildOption
[Tool
]:
1918 # check if override is indicated
1919 if self
.BuildOption
[Tool
][Attr
].startswith('='):
1920 Value
= self
.BuildOption
[Tool
][Attr
][1:]
1923 Value
+= " " + self
.BuildOption
[Tool
][Attr
]
1925 Value
= self
.BuildOption
[Tool
][Attr
]
1928 # Don't put MAKE definition in the file
1930 ToolsDef
+= "%s = %s\n" % (Tool
, Value
)
1932 # Don't put MAKE definition in the file
1937 ToolsDef
+= "%s_%s = %s\n" % (Tool
, Attr
, Value
)
1940 SaveFileOnChange(self
.ToolDefinitionFile
, ToolsDef
)
1941 for DllPath
in DllPathList
:
1942 os
.environ
["PATH"] = DllPath
+ os
.pathsep
+ os
.environ
["PATH"]
1943 os
.environ
["MAKE_FLAGS"] = MakeFlags
1945 return self
._ToolDefinitions
1947 ## Return the paths of tools
1948 def _GetToolDefFile(self
):
1949 if self
._ToolDefFile
is None:
1950 self
._ToolDefFile
= os
.path
.join(self
.MakeFileDir
, "TOOLS_DEF." + self
.Arch
)
1951 return self
._ToolDefFile
1953 ## Retrieve the toolchain family of given toolchain tag. Default to 'MSFT'.
1954 def _GetToolChainFamily(self
):
1955 if self
._ToolChainFamily
is None:
1956 ToolDefinition
= self
.Workspace
.ToolDef
.ToolsDefTxtDatabase
1957 if TAB_TOD_DEFINES_FAMILY
not in ToolDefinition \
1958 or self
.ToolChain
not in ToolDefinition
[TAB_TOD_DEFINES_FAMILY
] \
1959 or not ToolDefinition
[TAB_TOD_DEFINES_FAMILY
][self
.ToolChain
]:
1960 EdkLogger
.verbose("No tool chain family found in configuration for %s. Default to MSFT." \
1962 self
._ToolChainFamily
= "MSFT"
1964 self
._ToolChainFamily
= ToolDefinition
[TAB_TOD_DEFINES_FAMILY
][self
.ToolChain
]
1965 return self
._ToolChainFamily
1967 def _GetBuildRuleFamily(self
):
1968 if self
._BuildRuleFamily
is None:
1969 ToolDefinition
= self
.Workspace
.ToolDef
.ToolsDefTxtDatabase
1970 if TAB_TOD_DEFINES_BUILDRULEFAMILY
not in ToolDefinition \
1971 or self
.ToolChain
not in ToolDefinition
[TAB_TOD_DEFINES_BUILDRULEFAMILY
] \
1972 or not ToolDefinition
[TAB_TOD_DEFINES_BUILDRULEFAMILY
][self
.ToolChain
]:
1973 EdkLogger
.verbose("No tool chain family found in configuration for %s. Default to MSFT." \
1975 self
._BuildRuleFamily
= "MSFT"
1977 self
._BuildRuleFamily
= ToolDefinition
[TAB_TOD_DEFINES_BUILDRULEFAMILY
][self
.ToolChain
]
1978 return self
._BuildRuleFamily
1980 ## Return the build options specific for all modules in this platform
1981 def _GetBuildOptions(self
):
1982 if self
._BuildOption
is None:
1983 self
._BuildOption
= self
._ExpandBuildOption
(self
.Platform
.BuildOptions
)
1984 return self
._BuildOption
1986 ## Return the build options specific for EDK modules in this platform
1987 def _GetEdkBuildOptions(self
):
1988 if self
._EdkBuildOption
is None:
1989 self
._EdkBuildOption
= self
._ExpandBuildOption
(self
.Platform
.BuildOptions
, EDK_NAME
)
1990 return self
._EdkBuildOption
1992 ## Return the build options specific for EDKII modules in this platform
1993 def _GetEdkIIBuildOptions(self
):
1994 if self
._EdkIIBuildOption
is None:
1995 self
._EdkIIBuildOption
= self
._ExpandBuildOption
(self
.Platform
.BuildOptions
, EDKII_NAME
)
1996 return self
._EdkIIBuildOption
1998 ## Parse build_rule.txt in Conf Directory.
2000 # @retval BuildRule object
2002 def _GetBuildRule(self
):
2003 if self
._BuildRule
is None:
2004 BuildRuleFile
= None
2005 if TAB_TAT_DEFINES_BUILD_RULE_CONF
in self
.Workspace
.TargetTxt
.TargetTxtDictionary
:
2006 BuildRuleFile
= self
.Workspace
.TargetTxt
.TargetTxtDictionary
[TAB_TAT_DEFINES_BUILD_RULE_CONF
]
2007 if BuildRuleFile
in [None, '']:
2008 BuildRuleFile
= gDefaultBuildRuleFile
2009 self
._BuildRule
= BuildRule(BuildRuleFile
)
2010 if self
._BuildRule
._FileVersion
== "":
2011 self
._BuildRule
._FileVersion
= AutoGenReqBuildRuleVerNum
2013 if self
._BuildRule
._FileVersion
< AutoGenReqBuildRuleVerNum
:
2014 # If Build Rule's version is less than the version number required by the tools, halting the build.
2015 EdkLogger
.error("build", AUTOGEN_ERROR
,
2016 ExtraData
="The version number [%s] of build_rule.txt is less than the version number required by the AutoGen.(the minimum required version number is [%s])"\
2017 % (self
._BuildRule
._FileVersion
, AutoGenReqBuildRuleVerNum
))
2019 return self
._BuildRule
2021 ## Summarize the packages used by modules in this platform
2022 def _GetPackageList(self
):
2023 if self
._PackageList
is None:
2024 self
._PackageList
= set()
2025 for La
in self
.LibraryAutoGenList
:
2026 self
._PackageList
.update(La
.DependentPackageList
)
2027 for Ma
in self
.ModuleAutoGenList
:
2028 self
._PackageList
.update(Ma
.DependentPackageList
)
2029 #Collect package set information from INF of FDF
2031 for ModuleFile
in self
._AsBuildModuleList
:
2032 if ModuleFile
in self
.Platform
.Modules
:
2034 ModuleData
= self
.BuildDatabase
[ModuleFile
, self
.Arch
, self
.BuildTarget
, self
.ToolChain
]
2035 PkgSet
.update(ModuleData
.Packages
)
2036 self
._PackageList
= list(self
._PackageList
) + list (PkgSet
)
2037 return self
._PackageList
2039 def _GetNonDynamicPcdDict(self
):
2040 if self
._NonDynamicPcdDict
:
2041 return self
._NonDynamicPcdDict
2042 for Pcd
in self
.NonDynamicPcdList
:
2043 self
._NonDynamicPcdDict
[(Pcd
.TokenCName
,Pcd
.TokenSpaceGuidCName
)] = Pcd
2044 return self
._NonDynamicPcdDict
2046 ## Get list of non-dynamic PCDs
2047 def _GetNonDynamicPcdList(self
):
2048 if self
._NonDynamicPcdList
is None:
2049 self
.CollectPlatformDynamicPcds()
2050 return self
._NonDynamicPcdList
2052 ## Get list of dynamic PCDs
2053 def _GetDynamicPcdList(self
):
2054 if self
._DynamicPcdList
is None:
2055 self
.CollectPlatformDynamicPcds()
2056 return self
._DynamicPcdList
2058 ## Generate Token Number for all PCD
2059 def _GetPcdTokenNumbers(self
):
2060 if self
._PcdTokenNumber
is None:
2061 self
._PcdTokenNumber
= OrderedDict()
2064 # Make the Dynamic and DynamicEx PCD use within different TokenNumber area.
2068 # TokenNumber 0 ~ 10
2070 # TokeNumber 11 ~ 20
2072 for Pcd
in self
.DynamicPcdList
:
2073 if Pcd
.Phase
== "PEI":
2074 if Pcd
.Type
in ["Dynamic", "DynamicDefault", "DynamicVpd", "DynamicHii"]:
2075 EdkLogger
.debug(EdkLogger
.DEBUG_5
, "%s %s (%s) -> %d" % (Pcd
.TokenCName
, Pcd
.TokenSpaceGuidCName
, Pcd
.Phase
, TokenNumber
))
2076 self
._PcdTokenNumber
[Pcd
.TokenCName
, Pcd
.TokenSpaceGuidCName
] = TokenNumber
2079 for Pcd
in self
.DynamicPcdList
:
2080 if Pcd
.Phase
== "PEI":
2081 if Pcd
.Type
in ["DynamicEx", "DynamicExDefault", "DynamicExVpd", "DynamicExHii"]:
2082 EdkLogger
.debug(EdkLogger
.DEBUG_5
, "%s %s (%s) -> %d" % (Pcd
.TokenCName
, Pcd
.TokenSpaceGuidCName
, Pcd
.Phase
, TokenNumber
))
2083 self
._PcdTokenNumber
[Pcd
.TokenCName
, Pcd
.TokenSpaceGuidCName
] = TokenNumber
2086 for Pcd
in self
.DynamicPcdList
:
2087 if Pcd
.Phase
== "DXE":
2088 if Pcd
.Type
in ["Dynamic", "DynamicDefault", "DynamicVpd", "DynamicHii"]:
2089 EdkLogger
.debug(EdkLogger
.DEBUG_5
, "%s %s (%s) -> %d" % (Pcd
.TokenCName
, Pcd
.TokenSpaceGuidCName
, Pcd
.Phase
, TokenNumber
))
2090 self
._PcdTokenNumber
[Pcd
.TokenCName
, Pcd
.TokenSpaceGuidCName
] = TokenNumber
2093 for Pcd
in self
.DynamicPcdList
:
2094 if Pcd
.Phase
== "DXE":
2095 if Pcd
.Type
in ["DynamicEx", "DynamicExDefault", "DynamicExVpd", "DynamicExHii"]:
2096 EdkLogger
.debug(EdkLogger
.DEBUG_5
, "%s %s (%s) -> %d" % (Pcd
.TokenCName
, Pcd
.TokenSpaceGuidCName
, Pcd
.Phase
, TokenNumber
))
2097 self
._PcdTokenNumber
[Pcd
.TokenCName
, Pcd
.TokenSpaceGuidCName
] = TokenNumber
2100 for Pcd
in self
.NonDynamicPcdList
:
2101 self
._PcdTokenNumber
[Pcd
.TokenCName
, Pcd
.TokenSpaceGuidCName
] = TokenNumber
2103 return self
._PcdTokenNumber
2105 ## Summarize ModuleAutoGen objects of all modules/libraries to be built for this platform
2106 def _GetAutoGenObjectList(self
):
2107 self
._ModuleAutoGenList
= []
2108 self
._LibraryAutoGenList
= []
2109 for ModuleFile
in self
.Platform
.Modules
:
2118 if Ma
not in self
._ModuleAutoGenList
:
2119 self
._ModuleAutoGenList
.append(Ma
)
2120 for La
in Ma
.LibraryAutoGenList
:
2121 if La
not in self
._LibraryAutoGenList
:
2122 self
._LibraryAutoGenList
.append(La
)
2123 if Ma
not in La
._ReferenceModules
:
2124 La
._ReferenceModules
.append(Ma
)
2126 ## Summarize ModuleAutoGen objects of all modules to be built for this platform
2127 def _GetModuleAutoGenList(self
):
2128 if self
._ModuleAutoGenList
is None:
2129 self
._GetAutoGenObjectList
()
2130 return self
._ModuleAutoGenList
2132 ## Summarize ModuleAutoGen objects of all libraries to be built for this platform
2133 def _GetLibraryAutoGenList(self
):
2134 if self
._LibraryAutoGenList
is None:
2135 self
._GetAutoGenObjectList
()
2136 return self
._LibraryAutoGenList
2138 ## Test if a module is supported by the platform
2140 # An error will be raised directly if the module or its arch is not supported
2141 # by the platform or current configuration
2143 def ValidModule(self
, Module
):
2144 return Module
in self
.Platform
.Modules
or Module
in self
.Platform
.LibraryInstances \
2145 or Module
in self
._AsBuildModuleList
2147 ## Resolve the library classes in a module to library instances
2149 # This method will not only resolve library classes but also sort the library
2150 # instances according to the dependency-ship.
2152 # @param Module The module from which the library classes will be resolved
2154 # @retval library_list List of library instances sorted
2156 def ApplyLibraryInstance(self
, Module
):
2157 # Cover the case that the binary INF file is list in the FDF file but not DSC file, return empty list directly
2158 if str(Module
) not in self
.Platform
.Modules
:
2161 ModuleType
= Module
.ModuleType
2163 # for overridding library instances with module specific setting
2164 PlatformModule
= self
.Platform
.Modules
[str(Module
)]
2166 # add forced library instances (specified under LibraryClasses sections)
2168 # If a module has a MODULE_TYPE of USER_DEFINED,
2169 # do not link in NULL library class instances from the global [LibraryClasses.*] sections.
2171 if Module
.ModuleType
!= SUP_MODULE_USER_DEFINED
:
2172 for LibraryClass
in self
.Platform
.LibraryClasses
.GetKeys():
2173 if LibraryClass
.startswith("NULL") and self
.Platform
.LibraryClasses
[LibraryClass
, Module
.ModuleType
]:
2174 Module
.LibraryClasses
[LibraryClass
] = self
.Platform
.LibraryClasses
[LibraryClass
, Module
.ModuleType
]
2176 # add forced library instances (specified in module overrides)
2177 for LibraryClass
in PlatformModule
.LibraryClasses
:
2178 if LibraryClass
.startswith("NULL"):
2179 Module
.LibraryClasses
[LibraryClass
] = PlatformModule
.LibraryClasses
[LibraryClass
]
2182 LibraryConsumerList
= [Module
]
2184 ConsumedByList
= OrderedDict()
2185 LibraryInstance
= OrderedDict()
2187 EdkLogger
.verbose("")
2188 EdkLogger
.verbose("Library instances of module [%s] [%s]:" % (str(Module
), self
.Arch
))
2189 while len(LibraryConsumerList
) > 0:
2190 M
= LibraryConsumerList
.pop()
2191 for LibraryClassName
in M
.LibraryClasses
:
2192 if LibraryClassName
not in LibraryInstance
:
2193 # override library instance for this module
2194 if LibraryClassName
in PlatformModule
.LibraryClasses
:
2195 LibraryPath
= PlatformModule
.LibraryClasses
[LibraryClassName
]
2197 LibraryPath
= self
.Platform
.LibraryClasses
[LibraryClassName
, ModuleType
]
2198 if LibraryPath
is None or LibraryPath
== "":
2199 LibraryPath
= M
.LibraryClasses
[LibraryClassName
]
2200 if LibraryPath
is None or LibraryPath
== "":
2201 EdkLogger
.error("build", RESOURCE_NOT_AVAILABLE
,
2202 "Instance of library class [%s] is not found" % LibraryClassName
,
2204 ExtraData
="in [%s] [%s]\n\tconsumed by module [%s]" % (str(M
), self
.Arch
, str(Module
)))
2206 LibraryModule
= self
.BuildDatabase
[LibraryPath
, self
.Arch
, self
.BuildTarget
, self
.ToolChain
]
2207 # for those forced library instance (NULL library), add a fake library class
2208 if LibraryClassName
.startswith("NULL"):
2209 LibraryModule
.LibraryClass
.append(LibraryClassObject(LibraryClassName
, [ModuleType
]))
2210 elif LibraryModule
.LibraryClass
is None \
2211 or len(LibraryModule
.LibraryClass
) == 0 \
2212 or (ModuleType
!= 'USER_DEFINED'
2213 and ModuleType
not in LibraryModule
.LibraryClass
[0].SupModList
):
2214 # only USER_DEFINED can link against any library instance despite of its SupModList
2215 EdkLogger
.error("build", OPTION_MISSING
,
2216 "Module type [%s] is not supported by library instance [%s]" \
2217 % (ModuleType
, LibraryPath
), File
=self
.MetaFile
,
2218 ExtraData
="consumed by [%s]" % str(Module
))
2220 LibraryInstance
[LibraryClassName
] = LibraryModule
2221 LibraryConsumerList
.append(LibraryModule
)
2222 EdkLogger
.verbose("\t" + str(LibraryClassName
) + " : " + str(LibraryModule
))
2224 LibraryModule
= LibraryInstance
[LibraryClassName
]
2226 if LibraryModule
is None:
2229 if LibraryModule
.ConstructorList
!= [] and LibraryModule
not in Constructor
:
2230 Constructor
.append(LibraryModule
)
2232 if LibraryModule
not in ConsumedByList
:
2233 ConsumedByList
[LibraryModule
] = []
2234 # don't add current module itself to consumer list
2236 if M
in ConsumedByList
[LibraryModule
]:
2238 ConsumedByList
[LibraryModule
].append(M
)
2240 # Initialize the sorted output list to the empty set
2242 SortedLibraryList
= []
2244 # Q <- Set of all nodes with no incoming edges
2246 LibraryList
= [] #LibraryInstance.values()
2248 for LibraryClassName
in LibraryInstance
:
2249 M
= LibraryInstance
[LibraryClassName
]
2250 LibraryList
.append(M
)
2251 if ConsumedByList
[M
] == []:
2255 # start the DAG algorithm
2259 while Q
== [] and EdgeRemoved
:
2261 # for each node Item with a Constructor
2262 for Item
in LibraryList
:
2263 if Item
not in Constructor
:
2265 # for each Node without a constructor with an edge e from Item to Node
2266 for Node
in ConsumedByList
[Item
]:
2267 if Node
in Constructor
:
2269 # remove edge e from the graph if Node has no constructor
2270 ConsumedByList
[Item
].remove(Node
)
2272 if ConsumedByList
[Item
] == []:
2273 # insert Item into Q
2278 # DAG is done if there's no more incoming edge for all nodes
2282 # remove node from Q
2285 SortedLibraryList
.append(Node
)
2287 # for each node Item with an edge e from Node to Item do
2288 for Item
in LibraryList
:
2289 if Node
not in ConsumedByList
[Item
]:
2291 # remove edge e from the graph
2292 ConsumedByList
[Item
].remove(Node
)
2294 if ConsumedByList
[Item
] != []:
2296 # insert Item into Q, if Item has no other incoming edges
2300 # if any remaining node Item in the graph has a constructor and an incoming edge, then the graph has a cycle
2302 for Item
in LibraryList
:
2303 if ConsumedByList
[Item
] != [] and Item
in Constructor
and len(Constructor
) > 1:
2304 ErrorMessage
= "\tconsumed by " + "\n\tconsumed by ".join([str(L
) for L
in ConsumedByList
[Item
]])
2305 EdkLogger
.error("build", BUILD_ERROR
, 'Library [%s] with constructors has a cycle' % str(Item
),
2306 ExtraData
=ErrorMessage
, File
=self
.MetaFile
)
2307 if Item
not in SortedLibraryList
:
2308 SortedLibraryList
.append(Item
)
2311 # Build the list of constructor and destructir names
2312 # The DAG Topo sort produces the destructor order, so the list of constructors must generated in the reverse order
2314 SortedLibraryList
.reverse()
2315 return SortedLibraryList
2318 ## Override PCD setting (type, value, ...)
2320 # @param ToPcd The PCD to be overrided
2321 # @param FromPcd The PCD overrideing from
2323 def _OverridePcd(self
, ToPcd
, FromPcd
, Module
=""):
2325 # in case there's PCDs coming from FDF file, which have no type given.
2326 # at this point, ToPcd.Type has the type found from dependent
2329 TokenCName
= ToPcd
.TokenCName
2330 for PcdItem
in GlobalData
.MixedPcd
:
2331 if (ToPcd
.TokenCName
, ToPcd
.TokenSpaceGuidCName
) in GlobalData
.MixedPcd
[PcdItem
]:
2332 TokenCName
= PcdItem
[0]
2334 if FromPcd
is not None:
2335 if ToPcd
.Pending
and FromPcd
.Type
not in [None, '']:
2336 ToPcd
.Type
= FromPcd
.Type
2337 elif (ToPcd
.Type
not in [None, '']) and (FromPcd
.Type
not in [None, ''])\
2338 and (ToPcd
.Type
!= FromPcd
.Type
) and (ToPcd
.Type
in FromPcd
.Type
):
2339 if ToPcd
.Type
.strip() == "DynamicEx":
2340 ToPcd
.Type
= FromPcd
.Type
2341 elif ToPcd
.Type
not in [None, ''] and FromPcd
.Type
not in [None, ''] \
2342 and ToPcd
.Type
!= FromPcd
.Type
:
2343 EdkLogger
.error("build", OPTION_CONFLICT
, "Mismatched PCD type",
2344 ExtraData
="%s.%s is defined as [%s] in module %s, but as [%s] in platform."\
2345 % (ToPcd
.TokenSpaceGuidCName
, TokenCName
,
2346 ToPcd
.Type
, Module
, FromPcd
.Type
),
2349 if FromPcd
.MaxDatumSize
:
2350 ToPcd
.MaxDatumSize
= FromPcd
.MaxDatumSize
2351 ToPcd
.MaxSizeUserSet
= FromPcd
.MaxDatumSize
2352 if FromPcd
.DefaultValue
:
2353 ToPcd
.DefaultValue
= FromPcd
.DefaultValue
2354 if FromPcd
.TokenValue
:
2355 ToPcd
.TokenValue
= FromPcd
.TokenValue
2356 if FromPcd
.DatumType
:
2357 ToPcd
.DatumType
= FromPcd
.DatumType
2358 if FromPcd
.SkuInfoList
:
2359 ToPcd
.SkuInfoList
= FromPcd
.SkuInfoList
2360 # Add Flexible PCD format parse
2361 if ToPcd
.DefaultValue
:
2363 ToPcd
.DefaultValue
= ValueExpressionEx(ToPcd
.DefaultValue
, ToPcd
.DatumType
, self
._GuidDict
)(True)
2364 except BadExpression
, Value
:
2365 EdkLogger
.error('Parser', FORMAT_INVALID
, 'PCD [%s.%s] Value "%s", %s' %(ToPcd
.TokenSpaceGuidCName
, ToPcd
.TokenCName
, ToPcd
.DefaultValue
, Value
),
2368 # check the validation of datum
2369 IsValid
, Cause
= CheckPcdDatum(ToPcd
.DatumType
, ToPcd
.DefaultValue
)
2371 EdkLogger
.error('build', FORMAT_INVALID
, Cause
, File
=self
.MetaFile
,
2372 ExtraData
="%s.%s" % (ToPcd
.TokenSpaceGuidCName
, TokenCName
))
2373 ToPcd
.validateranges
= FromPcd
.validateranges
2374 ToPcd
.validlists
= FromPcd
.validlists
2375 ToPcd
.expressions
= FromPcd
.expressions
2377 if FromPcd
is not None and ToPcd
.DatumType
== "VOID*" and ToPcd
.MaxDatumSize
in ['', None]:
2378 EdkLogger
.debug(EdkLogger
.DEBUG_9
, "No MaxDatumSize specified for PCD %s.%s" \
2379 % (ToPcd
.TokenSpaceGuidCName
, TokenCName
))
2380 Value
= ToPcd
.DefaultValue
2381 if Value
in [None, '']:
2382 ToPcd
.MaxDatumSize
= '1'
2383 elif Value
[0] == 'L':
2384 ToPcd
.MaxDatumSize
= str((len(Value
) - 2) * 2)
2385 elif Value
[0] == '{':
2386 ToPcd
.MaxDatumSize
= str(len(Value
.split(',')))
2388 ToPcd
.MaxDatumSize
= str(len(Value
) - 1)
2390 # apply default SKU for dynamic PCDS if specified one is not available
2391 if (ToPcd
.Type
in PCD_DYNAMIC_TYPE_LIST
or ToPcd
.Type
in PCD_DYNAMIC_EX_TYPE_LIST
) \
2392 and ToPcd
.SkuInfoList
in [None, {}, '']:
2393 if self
.Platform
.SkuName
in self
.Platform
.SkuIds
:
2394 SkuName
= self
.Platform
.SkuName
2397 ToPcd
.SkuInfoList
= {
2398 SkuName
: SkuInfoClass(SkuName
, self
.Platform
.SkuIds
[SkuName
][0], '', '', '', '', '', ToPcd
.DefaultValue
)
2401 ## Apply PCD setting defined platform to a module
2403 # @param Module The module from which the PCD setting will be overrided
2405 # @retval PCD_list The list PCDs with settings from platform
2407 def ApplyPcdSetting(self
, Module
, Pcds
):
2408 # for each PCD in module
2409 for Name
, Guid
in Pcds
:
2410 PcdInModule
= Pcds
[Name
, Guid
]
2411 # find out the PCD setting in platform
2412 if (Name
, Guid
) in self
.Platform
.Pcds
:
2413 PcdInPlatform
= self
.Platform
.Pcds
[Name
, Guid
]
2415 PcdInPlatform
= None
2416 # then override the settings if any
2417 self
._OverridePcd
(PcdInModule
, PcdInPlatform
, Module
)
2418 # resolve the VariableGuid value
2419 for SkuId
in PcdInModule
.SkuInfoList
:
2420 Sku
= PcdInModule
.SkuInfoList
[SkuId
]
2421 if Sku
.VariableGuid
== '': continue
2422 Sku
.VariableGuidValue
= GuidValue(Sku
.VariableGuid
, self
.PackageList
, self
.MetaFile
.Path
)
2423 if Sku
.VariableGuidValue
is None:
2424 PackageList
= "\n\t".join([str(P
) for P
in self
.PackageList
])
2427 RESOURCE_NOT_AVAILABLE
,
2428 "Value of GUID [%s] is not found in" % Sku
.VariableGuid
,
2429 ExtraData
=PackageList
+ "\n\t(used with %s.%s from module %s)" \
2430 % (Guid
, Name
, str(Module
)),
2434 # override PCD settings with module specific setting
2435 if Module
in self
.Platform
.Modules
:
2436 PlatformModule
= self
.Platform
.Modules
[str(Module
)]
2437 for Key
in PlatformModule
.Pcds
:
2442 elif Key
in GlobalData
.MixedPcd
:
2443 for PcdItem
in GlobalData
.MixedPcd
[Key
]:
2445 ToPcd
= Pcds
[PcdItem
]
2449 self
._OverridePcd
(ToPcd
, PlatformModule
.Pcds
[Key
], Module
)
2450 # use PCD value to calculate the MaxDatumSize when it is not specified
2451 for Name
, Guid
in Pcds
:
2452 Pcd
= Pcds
[Name
, Guid
]
2453 if Pcd
.DatumType
== "VOID*" and Pcd
.MaxDatumSize
in ['', None]:
2454 Pcd
.MaxSizeUserSet
= None
2455 Value
= Pcd
.DefaultValue
2456 if Value
in [None, '']:
2457 Pcd
.MaxDatumSize
= '1'
2458 elif Value
[0] == 'L':
2459 Pcd
.MaxDatumSize
= str((len(Value
) - 2) * 2)
2460 elif Value
[0] == '{':
2461 Pcd
.MaxDatumSize
= str(len(Value
.split(',')))
2463 Pcd
.MaxDatumSize
= str(len(Value
) - 1)
2464 return Pcds
.values()
2466 ## Resolve library names to library modules
2468 # (for Edk.x modules)
2470 # @param Module The module from which the library names will be resolved
2472 # @retval library_list The list of library modules
2474 def ResolveLibraryReference(self
, Module
):
2475 EdkLogger
.verbose("")
2476 EdkLogger
.verbose("Library instances of module [%s] [%s]:" % (str(Module
), self
.Arch
))
2477 LibraryConsumerList
= [Module
]
2479 # "CompilerStub" is a must for Edk modules
2480 if Module
.Libraries
:
2481 Module
.Libraries
.append("CompilerStub")
2483 while len(LibraryConsumerList
) > 0:
2484 M
= LibraryConsumerList
.pop()
2485 for LibraryName
in M
.Libraries
:
2486 Library
= self
.Platform
.LibraryClasses
[LibraryName
, ':dummy:']
2488 for Key
in self
.Platform
.LibraryClasses
.data
.keys():
2489 if LibraryName
.upper() == Key
.upper():
2490 Library
= self
.Platform
.LibraryClasses
[Key
, ':dummy:']
2493 EdkLogger
.warn("build", "Library [%s] is not found" % LibraryName
, File
=str(M
),
2494 ExtraData
="\t%s [%s]" % (str(Module
), self
.Arch
))
2497 if Library
not in LibraryList
:
2498 LibraryList
.append(Library
)
2499 LibraryConsumerList
.append(Library
)
2500 EdkLogger
.verbose("\t" + LibraryName
+ " : " + str(Library
) + ' ' + str(type(Library
)))
2503 ## Calculate the priority value of the build option
2505 # @param Key Build option definition contain: TARGET_TOOLCHAIN_ARCH_COMMANDTYPE_ATTRIBUTE
2507 # @retval Value Priority value based on the priority list.
2509 def CalculatePriorityValue(self
, Key
):
2510 Target
, ToolChain
, Arch
, CommandType
, Attr
= Key
.split('_')
2511 PriorityValue
= 0x11111
2513 PriorityValue
&= 0x01111
2514 if ToolChain
== "*":
2515 PriorityValue
&= 0x10111
2517 PriorityValue
&= 0x11011
2518 if CommandType
== "*":
2519 PriorityValue
&= 0x11101
2521 PriorityValue
&= 0x11110
2523 return self
.PrioList
["0x%0.5x" % PriorityValue
]
2526 ## Expand * in build option key
2528 # @param Options Options to be expanded
2530 # @retval options Options expanded
2532 def _ExpandBuildOption(self
, Options
, ModuleStyle
=None):
2539 # Construct a list contain the build options which need override.
2543 # Key[0] -- tool family
2544 # Key[1] -- TARGET_TOOLCHAIN_ARCH_COMMANDTYPE_ATTRIBUTE
2546 if (Key
[0] == self
.BuildRuleFamily
and
2547 (ModuleStyle
is None or len(Key
) < 3 or (len(Key
) > 2 and Key
[2] == ModuleStyle
))):
2548 Target
, ToolChain
, Arch
, CommandType
, Attr
= Key
[1].split('_')
2549 if Target
== self
.BuildTarget
or Target
== "*":
2550 if ToolChain
== self
.ToolChain
or ToolChain
== "*":
2551 if Arch
== self
.Arch
or Arch
== "*":
2552 if Options
[Key
].startswith("="):
2553 if OverrideList
.get(Key
[1]) is not None:
2554 OverrideList
.pop(Key
[1])
2555 OverrideList
[Key
[1]] = Options
[Key
]
2558 # Use the highest priority value.
2560 if (len(OverrideList
) >= 2):
2561 KeyList
= OverrideList
.keys()
2562 for Index
in range(len(KeyList
)):
2563 NowKey
= KeyList
[Index
]
2564 Target1
, ToolChain1
, Arch1
, CommandType1
, Attr1
= NowKey
.split("_")
2565 for Index1
in range(len(KeyList
) - Index
- 1):
2566 NextKey
= KeyList
[Index1
+ Index
+ 1]
2568 # Compare two Key, if one is included by another, choose the higher priority one
2570 Target2
, ToolChain2
, Arch2
, CommandType2
, Attr2
= NextKey
.split("_")
2571 if Target1
== Target2
or Target1
== "*" or Target2
== "*":
2572 if ToolChain1
== ToolChain2
or ToolChain1
== "*" or ToolChain2
== "*":
2573 if Arch1
== Arch2
or Arch1
== "*" or Arch2
== "*":
2574 if CommandType1
== CommandType2
or CommandType1
== "*" or CommandType2
== "*":
2575 if Attr1
== Attr2
or Attr1
== "*" or Attr2
== "*":
2576 if self
.CalculatePriorityValue(NowKey
) > self
.CalculatePriorityValue(NextKey
):
2577 if Options
.get((self
.BuildRuleFamily
, NextKey
)) is not None:
2578 Options
.pop((self
.BuildRuleFamily
, NextKey
))
2580 if Options
.get((self
.BuildRuleFamily
, NowKey
)) is not None:
2581 Options
.pop((self
.BuildRuleFamily
, NowKey
))
2584 if ModuleStyle
is not None and len (Key
) > 2:
2585 # Check Module style is EDK or EDKII.
2586 # Only append build option for the matched style module.
2587 if ModuleStyle
== EDK_NAME
and Key
[2] != EDK_NAME
:
2589 elif ModuleStyle
== EDKII_NAME
and Key
[2] != EDKII_NAME
:
2592 Target
, Tag
, Arch
, Tool
, Attr
= Key
[1].split("_")
2593 # if tool chain family doesn't match, skip it
2594 if Tool
in self
.ToolDefinition
and Family
!= "":
2595 FamilyIsNull
= False
2596 if self
.ToolDefinition
[Tool
].get(TAB_TOD_DEFINES_BUILDRULEFAMILY
, "") != "":
2597 if Family
!= self
.ToolDefinition
[Tool
][TAB_TOD_DEFINES_BUILDRULEFAMILY
]:
2599 elif Family
!= self
.ToolDefinition
[Tool
][TAB_TOD_DEFINES_FAMILY
]:
2602 # expand any wildcard
2603 if Target
== "*" or Target
== self
.BuildTarget
:
2604 if Tag
== "*" or Tag
== self
.ToolChain
:
2605 if Arch
== "*" or Arch
== self
.Arch
:
2606 if Tool
not in BuildOptions
:
2607 BuildOptions
[Tool
] = {}
2608 if Attr
!= "FLAGS" or Attr
not in BuildOptions
[Tool
] or Options
[Key
].startswith('='):
2609 BuildOptions
[Tool
][Attr
] = Options
[Key
]
2611 # append options for the same tool except PATH
2613 BuildOptions
[Tool
][Attr
] += " " + Options
[Key
]
2615 BuildOptions
[Tool
][Attr
] = Options
[Key
]
2616 # Build Option Family has been checked, which need't to be checked again for family.
2617 if FamilyMatch
or FamilyIsNull
:
2621 if ModuleStyle
is not None and len (Key
) > 2:
2622 # Check Module style is EDK or EDKII.
2623 # Only append build option for the matched style module.
2624 if ModuleStyle
== EDK_NAME
and Key
[2] != EDK_NAME
:
2626 elif ModuleStyle
== EDKII_NAME
and Key
[2] != EDKII_NAME
:
2629 Target
, Tag
, Arch
, Tool
, Attr
= Key
[1].split("_")
2630 # if tool chain family doesn't match, skip it
2631 if Tool
not in self
.ToolDefinition
or Family
== "":
2633 # option has been added before
2634 if Family
!= self
.ToolDefinition
[Tool
][TAB_TOD_DEFINES_FAMILY
]:
2637 # expand any wildcard
2638 if Target
== "*" or Target
== self
.BuildTarget
:
2639 if Tag
== "*" or Tag
== self
.ToolChain
:
2640 if Arch
== "*" or Arch
== self
.Arch
:
2641 if Tool
not in BuildOptions
:
2642 BuildOptions
[Tool
] = {}
2643 if Attr
!= "FLAGS" or Attr
not in BuildOptions
[Tool
] or Options
[Key
].startswith('='):
2644 BuildOptions
[Tool
][Attr
] = Options
[Key
]
2646 # append options for the same tool except PATH
2648 BuildOptions
[Tool
][Attr
] += " " + Options
[Key
]
2650 BuildOptions
[Tool
][Attr
] = Options
[Key
]
2653 ## Append build options in platform to a module
2655 # @param Module The module to which the build options will be appened
2657 # @retval options The options appended with build options in platform
2659 def ApplyBuildOption(self
, Module
):
2660 # Get the different options for the different style module
2661 if Module
.AutoGenVersion
< 0x00010005:
2662 PlatformOptions
= self
.EdkBuildOption
2663 ModuleTypeOptions
= self
.Platform
.GetBuildOptionsByModuleType(EDK_NAME
, Module
.ModuleType
)
2665 PlatformOptions
= self
.EdkIIBuildOption
2666 ModuleTypeOptions
= self
.Platform
.GetBuildOptionsByModuleType(EDKII_NAME
, Module
.ModuleType
)
2667 ModuleTypeOptions
= self
._ExpandBuildOption
(ModuleTypeOptions
)
2668 ModuleOptions
= self
._ExpandBuildOption
(Module
.BuildOptions
)
2669 if Module
in self
.Platform
.Modules
:
2670 PlatformModule
= self
.Platform
.Modules
[str(Module
)]
2671 PlatformModuleOptions
= self
._ExpandBuildOption
(PlatformModule
.BuildOptions
)
2673 PlatformModuleOptions
= {}
2675 BuildRuleOrder
= None
2676 for Options
in [self
.ToolDefinition
, ModuleOptions
, PlatformOptions
, ModuleTypeOptions
, PlatformModuleOptions
]: