2 # Generate AutoGen.h, AutoGen.c and *.depex files
4 # Copyright (c) 2007 - 2016, 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
46 ## Regular expression for splitting Dependency Expression string into tokens
47 gDepexTokenPattern
= re
.compile("(\(|\)|\w+| \S+\.inf)")
50 # Match name = variable
52 gEfiVarStoreNamePattern
= re
.compile("\s*name\s*=\s*(\w+)")
54 # The format of guid in efivarstore statement likes following and must be correct:
55 # guid = {0xA04A27f4, 0xDF00, 0x4D42, {0xB5, 0x52, 0x39, 0x51, 0x13, 0x02, 0x11, 0x3D}}
57 gEfiVarStoreGuidPattern
= re
.compile("\s*guid\s*=\s*({.*?{.*?}\s*})")
59 ## Mapping Makefile type
60 gMakeTypeMap
= {"MSFT":"nmake", "GCC":"gmake"}
63 ## Build rule configuration file
64 gDefaultBuildRuleFile
= 'Conf/build_rule.txt'
66 ## Build rule default version
67 AutoGenReqBuildRuleVerNum
= "0.1"
69 ## default file name for AutoGen
70 gAutoGenCodeFileName
= "AutoGen.c"
71 gAutoGenHeaderFileName
= "AutoGen.h"
72 gAutoGenStringFileName
= "%(module_name)sStrDefs.h"
73 gAutoGenStringFormFileName
= "%(module_name)sStrDefs.hpk"
74 gAutoGenDepexFileName
= "%(module_name)s.depex"
75 gAutoGenImageDefFileName
= "%(module_name)sImgDefs.h"
76 gAutoGenIdfFileName
= "%(module_name)sIdf.hpk"
77 gInfSpecVersion
= "0x00010017"
80 # Template string to generic AsBuilt INF
82 gAsBuiltInfHeaderString
= TemplateString("""${header_comments}
88 INF_VERSION = ${module_inf_version}
89 BASE_NAME = ${module_name}
90 FILE_GUID = ${module_guid}
91 MODULE_TYPE = ${module_module_type}${BEGIN}
92 VERSION_STRING = ${module_version_string}${END}${BEGIN}
93 PCD_IS_DRIVER = ${pcd_is_driver_string}${END}${BEGIN}
94 UEFI_SPECIFICATION_VERSION = ${module_uefi_specification_version}${END}${BEGIN}
95 PI_SPECIFICATION_VERSION = ${module_pi_specification_version}${END}${BEGIN}
96 ENTRY_POINT = ${module_entry_point}${END}${BEGIN}
97 UNLOAD_IMAGE = ${module_unload_image}${END}${BEGIN}
98 CONSTRUCTOR = ${module_constructor}${END}${BEGIN}
99 DESTRUCTOR = ${module_destructor}${END}${BEGIN}
100 SHADOW = ${module_shadow}${END}${BEGIN}
101 PCI_VENDOR_ID = ${module_pci_vendor_id}${END}${BEGIN}
102 PCI_DEVICE_ID = ${module_pci_device_id}${END}${BEGIN}
103 PCI_CLASS_CODE = ${module_pci_class_code}${END}${BEGIN}
104 PCI_REVISION = ${module_pci_revision}${END}${BEGIN}
105 BUILD_NUMBER = ${module_build_number}${END}${BEGIN}
106 SPEC = ${module_spec}${END}${BEGIN}
107 UEFI_HII_RESOURCE_SECTION = ${module_uefi_hii_resource_section}${END}${BEGIN}
108 MODULE_UNI_FILE = ${module_uni_file}${END}
110 [Packages.${module_arch}]${BEGIN}
111 ${package_item}${END}
113 [Binaries.${module_arch}]${BEGIN}
116 [PatchPcd.${module_arch}]${BEGIN}
120 [Protocols.${module_arch}]${BEGIN}
124 [Ppis.${module_arch}]${BEGIN}
128 [Guids.${module_arch}]${BEGIN}
132 [PcdEx.${module_arch}]${BEGIN}
136 [LibraryClasses.${module_arch}]
137 ## @LIB_INSTANCES${BEGIN}
138 # ${libraryclasses_item}${END}
144 [BuildOptions.${module_arch}]
146 ## ${flags_item}${END}
149 ## Base class for AutoGen
151 # This class just implements the cache mechanism of AutoGen objects.
153 class AutoGen(object):
154 # database to maintain the objects of xxxAutoGen
155 _CACHE_
= {} # (BuildTarget, ToolChain) : {ARCH : {platform file: AutoGen object}}}
159 # @param Class class object of real AutoGen class
160 # (WorkspaceAutoGen, ModuleAutoGen or PlatformAutoGen)
161 # @param Workspace Workspace directory or WorkspaceAutoGen object
162 # @param MetaFile The path of meta file
163 # @param Target Build target
164 # @param Toolchain Tool chain name
165 # @param Arch Target arch
166 # @param *args The specific class related parameters
167 # @param **kwargs The specific class related dict parameters
169 def __new__(Class
, Workspace
, MetaFile
, Target
, Toolchain
, Arch
, *args
, **kwargs
):
170 # check if the object has been created
171 Key
= (Target
, Toolchain
)
172 if Key
not in Class
._CACHE
_ or Arch
not in Class
._CACHE
_[Key
] \
173 or MetaFile
not in Class
._CACHE
_[Key
][Arch
]:
174 AutoGenObject
= super(AutoGen
, Class
).__new
__(Class
)
175 # call real constructor
176 if not AutoGenObject
._Init
(Workspace
, MetaFile
, Target
, Toolchain
, Arch
, *args
, **kwargs
):
178 if Key
not in Class
._CACHE
_:
179 Class
._CACHE
_[Key
] = {}
180 if Arch
not in Class
._CACHE
_[Key
]:
181 Class
._CACHE
_[Key
][Arch
] = {}
182 Class
._CACHE
_[Key
][Arch
][MetaFile
] = AutoGenObject
184 AutoGenObject
= Class
._CACHE
_[Key
][Arch
][MetaFile
]
190 # The file path of platform file will be used to represent hash value of this object
192 # @retval int Hash value of the file path of platform file
195 return hash(self
.MetaFile
)
199 # The file path of platform file will be used to represent this object
201 # @retval string String of platform file path
204 return str(self
.MetaFile
)
207 def __eq__(self
, Other
):
208 return Other
and self
.MetaFile
== Other
210 ## Workspace AutoGen class
212 # This class is used mainly to control the whole platform build for different
213 # architecture. This class will generate top level makefile.
215 class WorkspaceAutoGen(AutoGen
):
216 ## Real constructor of WorkspaceAutoGen
218 # This method behaves the same as __init__ except that it needs explicit invoke
219 # (in super class's __new__ method)
221 # @param WorkspaceDir Root directory of workspace
222 # @param ActivePlatform Meta-file of active platform
223 # @param Target Build target
224 # @param Toolchain Tool chain name
225 # @param ArchList List of architecture of current build
226 # @param MetaFileDb Database containing meta-files
227 # @param BuildConfig Configuration of build
228 # @param ToolDefinition Tool chain definitions
229 # @param FlashDefinitionFile File of flash definition
230 # @param Fds FD list to be generated
231 # @param Fvs FV list to be generated
232 # @param Caps Capsule list to be generated
233 # @param SkuId SKU id from command line
235 def _Init(self
, WorkspaceDir
, ActivePlatform
, Target
, Toolchain
, ArchList
, MetaFileDb
,
236 BuildConfig
, ToolDefinition
, FlashDefinitionFile
='', Fds
=None, Fvs
=None, Caps
=None, SkuId
='', UniFlag
=None,
237 Progress
=None, BuildModule
=None):
244 self
.BuildDatabase
= MetaFileDb
245 self
.MetaFile
= ActivePlatform
246 self
.WorkspaceDir
= WorkspaceDir
247 self
.Platform
= self
.BuildDatabase
[self
.MetaFile
, 'COMMON', Target
, Toolchain
]
248 GlobalData
.gActivePlatform
= self
.Platform
249 self
.BuildTarget
= Target
250 self
.ToolChain
= Toolchain
251 self
.ArchList
= ArchList
253 self
.UniFlag
= UniFlag
255 self
.TargetTxt
= BuildConfig
256 self
.ToolDef
= ToolDefinition
257 self
.FdfFile
= FlashDefinitionFile
258 self
.FdTargetList
= Fds
259 self
.FvTargetList
= Fvs
260 self
.CapTargetList
= Caps
261 self
.AutoGenObjectList
= []
263 # there's many relative directory operations, so ...
264 os
.chdir(self
.WorkspaceDir
)
269 if not self
.ArchList
:
270 ArchList
= set(self
.Platform
.SupArchList
)
272 ArchList
= set(self
.ArchList
) & set(self
.Platform
.SupArchList
)
274 EdkLogger
.error("build", PARAMETER_INVALID
,
275 ExtraData
= "Invalid ARCH specified. [Valid ARCH: %s]" % (" ".join(self
.Platform
.SupArchList
)))
276 elif self
.ArchList
and len(ArchList
) != len(self
.ArchList
):
277 SkippedArchList
= set(self
.ArchList
).symmetric_difference(set(self
.Platform
.SupArchList
))
278 EdkLogger
.verbose("\nArch [%s] is ignored because the platform supports [%s] only!"
279 % (" ".join(SkippedArchList
), " ".join(self
.Platform
.SupArchList
)))
280 self
.ArchList
= tuple(ArchList
)
282 # Validate build target
283 if self
.BuildTarget
not in self
.Platform
.BuildTargets
:
284 EdkLogger
.error("build", PARAMETER_INVALID
,
285 ExtraData
="Build target [%s] is not supported by the platform. [Valid target: %s]"
286 % (self
.BuildTarget
, " ".join(self
.Platform
.BuildTargets
)))
289 # parse FDF file to get PCDs in it, if any
291 self
.FdfFile
= self
.Platform
.FlashDefinition
295 EdkLogger
.info('%-16s = %s' % ("Architecture(s)", ' '.join(self
.ArchList
)))
296 EdkLogger
.info('%-16s = %s' % ("Build target", self
.BuildTarget
))
297 EdkLogger
.info('%-16s = %s' % ("Toolchain", self
.ToolChain
))
299 EdkLogger
.info('\n%-24s = %s' % ("Active Platform", self
.Platform
))
301 EdkLogger
.info('%-24s = %s' % ("Active Module", BuildModule
))
304 EdkLogger
.info('%-24s = %s' % ("Flash Image Definition", self
.FdfFile
))
306 EdkLogger
.verbose("\nFLASH_DEFINITION = %s" % self
.FdfFile
)
309 Progress
.Start("\nProcessing meta-data")
313 # Mark now build in AutoGen Phase
315 GlobalData
.gAutoGenPhase
= True
316 Fdf
= FdfParser(self
.FdfFile
.Path
)
318 GlobalData
.gFdfParser
= Fdf
319 GlobalData
.gAutoGenPhase
= False
320 PcdSet
= Fdf
.Profile
.PcdDict
321 if Fdf
.CurrentFdName
and Fdf
.CurrentFdName
in Fdf
.Profile
.FdDict
:
322 FdDict
= Fdf
.Profile
.FdDict
[Fdf
.CurrentFdName
]
323 for FdRegion
in FdDict
.RegionList
:
324 if str(FdRegion
.RegionType
) is 'FILE' and self
.Platform
.VpdToolGuid
in str(FdRegion
.RegionDataList
):
325 if int(FdRegion
.Offset
) % 8 != 0:
326 EdkLogger
.error("build", FORMAT_INVALID
, 'The VPD Base Address %s must be 8-byte aligned.' % (FdRegion
.Offset
))
327 ModuleList
= Fdf
.Profile
.InfList
328 self
.FdfProfile
= Fdf
.Profile
329 for fvname
in self
.FvTargetList
:
330 if fvname
.upper() not in self
.FdfProfile
.FvDict
:
331 EdkLogger
.error("build", OPTION_VALUE_INVALID
,
332 "No such an FV in FDF file: %s" % fvname
)
334 # In DSC file may use FILE_GUID to override the module, then in the Platform.Modules use FILE_GUIDmodule.inf as key,
335 # but the path (self.MetaFile.Path) is the real path
336 for key
in self
.FdfProfile
.InfDict
:
340 for Arch
in self
.ArchList
:
341 Platform_cache
[Arch
] = self
.BuildDatabase
[self
.MetaFile
, Arch
, Target
, Toolchain
]
342 MetaFile_cache
[Arch
] = []
343 for Pkey
in Platform_cache
[Arch
].Modules
.keys():
344 MetaFile_cache
[Arch
].append(Platform_cache
[Arch
].Modules
[Pkey
].MetaFile
)
345 for Inf
in self
.FdfProfile
.InfDict
[key
]:
346 ModuleFile
= PathClass(NormPath(Inf
), GlobalData
.gWorkspace
, Arch
)
347 for Arch
in self
.ArchList
:
348 if ModuleFile
in MetaFile_cache
[Arch
]:
351 ModuleData
= self
.BuildDatabase
[ModuleFile
, Arch
, Target
, Toolchain
]
352 if not ModuleData
.IsBinaryModule
:
353 EdkLogger
.error('build', PARSER_ERROR
, "Module %s NOT found in DSC file; Is it really a binary module?" % ModuleFile
)
356 for Arch
in self
.ArchList
:
358 Platform
= self
.BuildDatabase
[self
.MetaFile
, Arch
, Target
, Toolchain
]
360 for Pkey
in Platform
.Modules
.keys():
361 MetaFileList
.append(Platform
.Modules
[Pkey
].MetaFile
)
362 for Inf
in self
.FdfProfile
.InfDict
[key
]:
363 ModuleFile
= PathClass(NormPath(Inf
), GlobalData
.gWorkspace
, Arch
)
364 if ModuleFile
in MetaFileList
:
366 ModuleData
= self
.BuildDatabase
[ModuleFile
, Arch
, Target
, Toolchain
]
367 if not ModuleData
.IsBinaryModule
:
368 EdkLogger
.error('build', PARSER_ERROR
, "Module %s NOT found in DSC file; Is it really a binary module?" % ModuleFile
)
373 self
.FdfProfile
= None
374 if self
.FdTargetList
:
375 EdkLogger
.info("No flash definition file found. FD [%s] will be ignored." % " ".join(self
.FdTargetList
))
376 self
.FdTargetList
= []
377 if self
.FvTargetList
:
378 EdkLogger
.info("No flash definition file found. FV [%s] will be ignored." % " ".join(self
.FvTargetList
))
379 self
.FvTargetList
= []
380 if self
.CapTargetList
:
381 EdkLogger
.info("No flash definition file found. Capsule [%s] will be ignored." % " ".join(self
.CapTargetList
))
382 self
.CapTargetList
= []
384 # apply SKU and inject PCDs from Flash Definition file
385 for Arch
in self
.ArchList
:
386 Platform
= self
.BuildDatabase
[self
.MetaFile
, Arch
, Target
, Toolchain
]
390 PGen
= PlatformAutoGen(self
, self
.MetaFile
, Target
, Toolchain
, Arch
)
391 if GlobalData
.BuildOptionPcd
:
392 for i
, pcd
in enumerate(GlobalData
.BuildOptionPcd
):
393 if type(pcd
) is tuple:
395 (pcdname
, pcdvalue
) = pcd
.split('=')
397 EdkLogger
.error('build', AUTOGEN_ERROR
, "No Value specified for the PCD %s." % (pcdname
))
399 (TokenSpaceGuidCName
, TokenCName
) = pcdname
.split('.')
403 TokenSpaceGuidCName
= ''
404 HasTokenSpace
= False
405 TokenSpaceGuidCNameList
= []
409 for package
in PGen
.PackageList
:
410 for key
in package
.Pcds
:
411 PcdItem
= package
.Pcds
[key
]
413 if (PcdItem
.TokenCName
, PcdItem
.TokenSpaceGuidCName
) == (TokenCName
, TokenSpaceGuidCName
):
414 PcdDatumType
= PcdItem
.DatumType
415 NewValue
= self
._BuildOptionPcdValueFormat
(TokenSpaceGuidCName
, TokenCName
, PcdDatumType
, pcdvalue
)
418 if PcdItem
.TokenCName
== TokenCName
:
419 if not PcdItem
.TokenSpaceGuidCName
in TokenSpaceGuidCNameList
:
420 if len (TokenSpaceGuidCNameList
) < 1:
421 TokenSpaceGuidCNameList
.append(PcdItem
.TokenSpaceGuidCName
)
422 PcdDatumType
= PcdItem
.DatumType
423 TokenSpaceGuidCName
= PcdItem
.TokenSpaceGuidCName
424 NewValue
= self
._BuildOptionPcdValueFormat
(TokenSpaceGuidCName
, TokenCName
, PcdDatumType
, pcdvalue
)
430 "The Pcd %s is found under multiple different TokenSpaceGuid: %s and %s." % (TokenCName
, PcdItem
.TokenSpaceGuidCName
, TokenSpaceGuidCNameList
[0])
433 GlobalData
.BuildOptionPcd
[i
] = (TokenSpaceGuidCName
, TokenCName
, NewValue
)
437 EdkLogger
.error('build', AUTOGEN_ERROR
, "The Pcd %s.%s is not found in the DEC file." % (TokenSpaceGuidCName
, TokenCName
))
439 EdkLogger
.error('build', AUTOGEN_ERROR
, "The Pcd %s is not found in the DEC file." % (TokenCName
))
441 for BuildData
in PGen
.BuildDatabase
._CACHE
_.values():
442 if BuildData
.Arch
!= Arch
:
444 if BuildData
.MetaFile
.Ext
== '.dec':
446 for key
in BuildData
.Pcds
:
447 PcdItem
= BuildData
.Pcds
[key
]
448 if (TokenSpaceGuidCName
, TokenCName
) == (PcdItem
.TokenSpaceGuidCName
, PcdItem
.TokenCName
):
449 PcdItem
.DefaultValue
= NewValue
451 if (TokenCName
, TokenSpaceGuidCName
) in PcdSet
:
452 PcdSet
[(TokenCName
, TokenSpaceGuidCName
)] = NewValue
454 SourcePcdDict
= {'DynamicEx':[], 'PatchableInModule':[],'Dynamic':[],'FixedAtBuild':[]}
455 BinaryPcdDict
= {'DynamicEx':[], 'PatchableInModule':[]}
456 SourcePcdDict_Keys
= SourcePcdDict
.keys()
457 BinaryPcdDict_Keys
= BinaryPcdDict
.keys()
459 # generate the SourcePcdDict and BinaryPcdDict
460 for BuildData
in PGen
.BuildDatabase
._CACHE
_.values():
461 if BuildData
.Arch
!= Arch
:
463 if BuildData
.MetaFile
.Ext
== '.inf':
464 for key
in BuildData
.Pcds
:
465 if BuildData
.Pcds
[key
].Pending
:
466 if key
in Platform
.Pcds
:
467 PcdInPlatform
= Platform
.Pcds
[key
]
468 if PcdInPlatform
.Type
not in [None, '']:
469 BuildData
.Pcds
[key
].Type
= PcdInPlatform
.Type
471 if BuildData
.MetaFile
in Platform
.Modules
:
472 PlatformModule
= Platform
.Modules
[str(BuildData
.MetaFile
)]
473 if key
in PlatformModule
.Pcds
:
474 PcdInPlatform
= PlatformModule
.Pcds
[key
]
475 if PcdInPlatform
.Type
not in [None, '']:
476 BuildData
.Pcds
[key
].Type
= PcdInPlatform
.Type
478 if 'DynamicEx' in BuildData
.Pcds
[key
].Type
:
479 if BuildData
.IsBinaryModule
:
480 if (BuildData
.Pcds
[key
].TokenCName
, BuildData
.Pcds
[key
].TokenSpaceGuidCName
) not in BinaryPcdDict
['DynamicEx']:
481 BinaryPcdDict
['DynamicEx'].append((BuildData
.Pcds
[key
].TokenCName
, BuildData
.Pcds
[key
].TokenSpaceGuidCName
))
483 if (BuildData
.Pcds
[key
].TokenCName
, BuildData
.Pcds
[key
].TokenSpaceGuidCName
) not in SourcePcdDict
['DynamicEx']:
484 SourcePcdDict
['DynamicEx'].append((BuildData
.Pcds
[key
].TokenCName
, BuildData
.Pcds
[key
].TokenSpaceGuidCName
))
486 elif 'PatchableInModule' in BuildData
.Pcds
[key
].Type
:
487 if BuildData
.MetaFile
.Ext
== '.inf':
488 if BuildData
.IsBinaryModule
:
489 if (BuildData
.Pcds
[key
].TokenCName
, BuildData
.Pcds
[key
].TokenSpaceGuidCName
) not in BinaryPcdDict
['PatchableInModule']:
490 BinaryPcdDict
['PatchableInModule'].append((BuildData
.Pcds
[key
].TokenCName
, BuildData
.Pcds
[key
].TokenSpaceGuidCName
))
492 if (BuildData
.Pcds
[key
].TokenCName
, BuildData
.Pcds
[key
].TokenSpaceGuidCName
) not in SourcePcdDict
['PatchableInModule']:
493 SourcePcdDict
['PatchableInModule'].append((BuildData
.Pcds
[key
].TokenCName
, BuildData
.Pcds
[key
].TokenSpaceGuidCName
))
495 elif 'Dynamic' in BuildData
.Pcds
[key
].Type
:
496 if (BuildData
.Pcds
[key
].TokenCName
, BuildData
.Pcds
[key
].TokenSpaceGuidCName
) not in SourcePcdDict
['Dynamic']:
497 SourcePcdDict
['Dynamic'].append((BuildData
.Pcds
[key
].TokenCName
, BuildData
.Pcds
[key
].TokenSpaceGuidCName
))
498 elif 'FixedAtBuild' in BuildData
.Pcds
[key
].Type
:
499 if (BuildData
.Pcds
[key
].TokenCName
, BuildData
.Pcds
[key
].TokenSpaceGuidCName
) not in SourcePcdDict
['FixedAtBuild']:
500 SourcePcdDict
['FixedAtBuild'].append((BuildData
.Pcds
[key
].TokenCName
, BuildData
.Pcds
[key
].TokenSpaceGuidCName
))
505 # intersection the BinaryPCD for Mixed PCD
507 for i
in BinaryPcdDict_Keys
:
508 for j
in BinaryPcdDict_Keys
:
510 IntersectionList
= list(set(BinaryPcdDict
[i
]).intersection(set(BinaryPcdDict
[j
])))
511 for item
in IntersectionList
:
512 NewPcd1
= (item
[0] + '_' + i
, item
[1])
513 NewPcd2
= (item
[0] + '_' + j
, item
[1])
514 if item
not in GlobalData
.MixedPcd
:
515 GlobalData
.MixedPcd
[item
] = [NewPcd1
, NewPcd2
]
517 if NewPcd1
not in GlobalData
.MixedPcd
[item
]:
518 GlobalData
.MixedPcd
[item
].append(NewPcd1
)
519 if NewPcd2
not in GlobalData
.MixedPcd
[item
]:
520 GlobalData
.MixedPcd
[item
].append(NewPcd2
)
525 # intersection the SourcePCD and BinaryPCD for Mixed PCD
527 for i
in SourcePcdDict_Keys
:
528 for j
in BinaryPcdDict_Keys
:
530 IntersectionList
= list(set(SourcePcdDict
[i
]).intersection(set(BinaryPcdDict
[j
])))
531 for item
in IntersectionList
:
532 NewPcd1
= (item
[0] + '_' + i
, item
[1])
533 NewPcd2
= (item
[0] + '_' + j
, item
[1])
534 if item
not in GlobalData
.MixedPcd
:
535 GlobalData
.MixedPcd
[item
] = [NewPcd1
, NewPcd2
]
537 if NewPcd1
not in GlobalData
.MixedPcd
[item
]:
538 GlobalData
.MixedPcd
[item
].append(NewPcd1
)
539 if NewPcd2
not in GlobalData
.MixedPcd
[item
]:
540 GlobalData
.MixedPcd
[item
].append(NewPcd2
)
544 for BuildData
in PGen
.BuildDatabase
._CACHE
_.values():
545 if BuildData
.Arch
!= Arch
:
547 for key
in BuildData
.Pcds
:
548 for SinglePcd
in GlobalData
.MixedPcd
:
549 if (BuildData
.Pcds
[key
].TokenCName
, BuildData
.Pcds
[key
].TokenSpaceGuidCName
) == SinglePcd
:
550 for item
in GlobalData
.MixedPcd
[SinglePcd
]:
551 Pcd_Type
= item
[0].split('_')[-1]
552 if (Pcd_Type
== BuildData
.Pcds
[key
].Type
) or (Pcd_Type
== TAB_PCDS_DYNAMIC_EX
and BuildData
.Pcds
[key
].Type
in GenC
.gDynamicExPcd
) or \
553 (Pcd_Type
== TAB_PCDS_DYNAMIC
and BuildData
.Pcds
[key
].Type
in GenC
.gDynamicPcd
):
554 Value
= BuildData
.Pcds
[key
]
555 Value
.TokenCName
= BuildData
.Pcds
[key
].TokenCName
+ '_' + Pcd_Type
557 newkey
= (Value
.TokenCName
, key
[1])
559 newkey
= (Value
.TokenCName
, key
[1], key
[2])
560 del BuildData
.Pcds
[key
]
561 BuildData
.Pcds
[newkey
] = Value
569 # handle the mixed pcd in FDF file
571 if key
in GlobalData
.MixedPcd
:
574 for item
in GlobalData
.MixedPcd
[key
]:
577 #Collect package set information from INF of FDF
579 for Inf
in ModuleList
:
580 ModuleFile
= PathClass(NormPath(Inf
), GlobalData
.gWorkspace
, Arch
)
581 if ModuleFile
in Platform
.Modules
:
583 ModuleData
= self
.BuildDatabase
[ModuleFile
, Arch
, Target
, Toolchain
]
584 PkgSet
.update(ModuleData
.Packages
)
585 Pkgs
= list(PkgSet
) + list(PGen
.PackageList
)
588 DecPcds
[Pcd
[0], Pcd
[1]] = Pkg
.Pcds
[Pcd
]
589 DecPcdsKey
.add((Pcd
[0], Pcd
[1], Pcd
[2]))
591 Platform
.SkuName
= self
.SkuId
592 for Name
, Guid
in PcdSet
:
593 if (Name
, Guid
) not in DecPcds
:
597 "PCD (%s.%s) used in FDF is not declared in DEC files." % (Guid
, Name
),
598 File
= self
.FdfProfile
.PcdFileLineDict
[Name
, Guid
][0],
599 Line
= self
.FdfProfile
.PcdFileLineDict
[Name
, Guid
][1]
602 # Check whether Dynamic or DynamicEx PCD used in FDF file. If used, build break and give a error message.
603 if (Name
, Guid
, TAB_PCDS_FIXED_AT_BUILD
) in DecPcdsKey \
604 or (Name
, Guid
, TAB_PCDS_PATCHABLE_IN_MODULE
) in DecPcdsKey \
605 or (Name
, Guid
, TAB_PCDS_FEATURE_FLAG
) in DecPcdsKey
:
606 Platform
.AddPcd(Name
, Guid
, PcdSet
[Name
, Guid
])
608 elif (Name
, Guid
, TAB_PCDS_DYNAMIC
) in DecPcdsKey
or (Name
, Guid
, TAB_PCDS_DYNAMIC_EX
) in DecPcdsKey
:
612 "Using Dynamic or DynamicEx type of PCD [%s.%s] in FDF file is not allowed." % (Guid
, Name
),
613 File
= self
.FdfProfile
.PcdFileLineDict
[Name
, Guid
][0],
614 Line
= self
.FdfProfile
.PcdFileLineDict
[Name
, Guid
][1]
617 Pa
= PlatformAutoGen(self
, self
.MetaFile
, Target
, Toolchain
, Arch
)
619 # Explicitly collect platform's dynamic PCDs
621 Pa
.CollectPlatformDynamicPcds()
622 Pa
.CollectFixedAtBuildPcds()
623 self
.AutoGenObjectList
.append(Pa
)
626 # Check PCDs token value conflict in each DEC file.
628 self
._CheckAllPcdsTokenValueConflict
()
631 # Check PCD type and definition between DSC and DEC
633 self
._CheckPcdDefineAndType
()
636 # self._CheckDuplicateInFV(Fdf)
638 self
._BuildDir
= None
640 self
._MakeFileDir
= None
641 self
._BuildCommand
= None
645 def _BuildOptionPcdValueFormat(self
, TokenSpaceGuidCName
, TokenCName
, PcdDatumType
, Value
):
646 if PcdDatumType
== 'VOID*':
647 if Value
.startswith('L'):
649 EdkLogger
.error('build', OPTION_VALUE_INVALID
, 'For Void* type PCD, when specify the Value in the command line, please use the following format: "string", L"string", B"{...}"')
650 Value
= Value
[0] + '"' + Value
[1:] + '"'
651 elif Value
.startswith('B'):
653 EdkLogger
.error('build', OPTION_VALUE_INVALID
, 'For Void* type PCD, when specify the Value in the command line, please use the following format: "string", L"string", B"{...}"')
657 EdkLogger
.error('build', OPTION_VALUE_INVALID
, 'For Void* type PCD, when specify the Value in the command line, please use the following format: "string", L"string", B"{...}"')
658 Value
= '"' + Value
+ '"'
660 IsValid
, Cause
= CheckPcdDatum(PcdDatumType
, Value
)
662 EdkLogger
.error('build', FORMAT_INVALID
, Cause
, ExtraData
="%s.%s" % (TokenSpaceGuidCName
, TokenCName
))
663 if PcdDatumType
== 'BOOLEAN':
664 Value
= Value
.upper()
665 if Value
== 'TRUE' or Value
== '1':
667 elif Value
== 'FALSE' or Value
== '0':
671 ## _CheckDuplicateInFV() method
673 # Check whether there is duplicate modules/files exist in FV section.
674 # The check base on the file GUID;
676 def _CheckDuplicateInFV(self
, Fdf
):
677 for Fv
in Fdf
.Profile
.FvDict
:
679 for FfsFile
in Fdf
.Profile
.FvDict
[Fv
].FfsList
:
680 if FfsFile
.InfFileName
and FfsFile
.NameGuid
== None:
685 for Pa
in self
.AutoGenObjectList
:
688 for Module
in Pa
.ModuleAutoGenList
:
689 if path
.normpath(Module
.MetaFile
.File
) == path
.normpath(FfsFile
.InfFileName
):
691 if not Module
.Guid
.upper() in _GuidDict
.keys():
692 _GuidDict
[Module
.Guid
.upper()] = FfsFile
695 EdkLogger
.error("build",
697 "Duplicate GUID found for these lines: Line %d: %s and Line %d: %s. GUID: %s" % (FfsFile
.CurrentLineNum
,
698 FfsFile
.CurrentLineContent
,
699 _GuidDict
[Module
.Guid
.upper()].CurrentLineNum
,
700 _GuidDict
[Module
.Guid
.upper()].CurrentLineContent
,
701 Module
.Guid
.upper()),
702 ExtraData
=self
.FdfFile
)
704 # Some INF files not have entity in DSC file.
707 if FfsFile
.InfFileName
.find('$') == -1:
708 InfPath
= NormPath(FfsFile
.InfFileName
)
709 if not os
.path
.exists(InfPath
):
710 EdkLogger
.error('build', GENFDS_ERROR
, "Non-existant Module %s !" % (FfsFile
.InfFileName
))
712 PathClassObj
= PathClass(FfsFile
.InfFileName
, self
.WorkspaceDir
)
714 # Here we just need to get FILE_GUID from INF file, use 'COMMON' as ARCH attribute. and use
715 # BuildObject from one of AutoGenObjectList is enough.
717 InfObj
= self
.AutoGenObjectList
[0].BuildDatabase
.WorkspaceDb
.BuildObject
[PathClassObj
, 'COMMON', self
.BuildTarget
, self
.ToolChain
]
718 if not InfObj
.Guid
.upper() in _GuidDict
.keys():
719 _GuidDict
[InfObj
.Guid
.upper()] = FfsFile
721 EdkLogger
.error("build",
723 "Duplicate GUID found for these lines: Line %d: %s and Line %d: %s. GUID: %s" % (FfsFile
.CurrentLineNum
,
724 FfsFile
.CurrentLineContent
,
725 _GuidDict
[InfObj
.Guid
.upper()].CurrentLineNum
,
726 _GuidDict
[InfObj
.Guid
.upper()].CurrentLineContent
,
727 InfObj
.Guid
.upper()),
728 ExtraData
=self
.FdfFile
)
731 if FfsFile
.NameGuid
!= None:
732 _CheckPCDAsGuidPattern
= re
.compile("^PCD\(.+\..+\)$")
735 # If the NameGuid reference a PCD name.
736 # The style must match: PCD(xxxx.yyy)
738 if _CheckPCDAsGuidPattern
.match(FfsFile
.NameGuid
):
740 # Replace the PCD value.
742 _PcdName
= FfsFile
.NameGuid
.lstrip("PCD(").rstrip(")")
744 for Pa
in self
.AutoGenObjectList
:
746 for PcdItem
in Pa
.AllPcdList
:
747 if (PcdItem
.TokenSpaceGuidCName
+ "." + PcdItem
.TokenCName
) == _PcdName
:
749 # First convert from CFormatGuid to GUID string
751 _PcdGuidString
= GuidStructureStringToGuidString(PcdItem
.DefaultValue
)
753 if not _PcdGuidString
:
755 # Then try Byte array.
757 _PcdGuidString
= GuidStructureByteArrayToGuidString(PcdItem
.DefaultValue
)
759 if not _PcdGuidString
:
761 # Not Byte array or CFormat GUID, raise error.
763 EdkLogger
.error("build",
765 "The format of PCD value is incorrect. PCD: %s , Value: %s\n" % (_PcdName
, PcdItem
.DefaultValue
),
766 ExtraData
=self
.FdfFile
)
768 if not _PcdGuidString
.upper() in _GuidDict
.keys():
769 _GuidDict
[_PcdGuidString
.upper()] = FfsFile
773 EdkLogger
.error("build",
775 "Duplicate GUID found for these lines: Line %d: %s and Line %d: %s. GUID: %s" % (FfsFile
.CurrentLineNum
,
776 FfsFile
.CurrentLineContent
,
777 _GuidDict
[_PcdGuidString
.upper()].CurrentLineNum
,
778 _GuidDict
[_PcdGuidString
.upper()].CurrentLineContent
,
779 FfsFile
.NameGuid
.upper()),
780 ExtraData
=self
.FdfFile
)
782 if not FfsFile
.NameGuid
.upper() in _GuidDict
.keys():
783 _GuidDict
[FfsFile
.NameGuid
.upper()] = FfsFile
786 # Two raw file GUID conflict.
788 EdkLogger
.error("build",
790 "Duplicate GUID found for these lines: Line %d: %s and Line %d: %s. GUID: %s" % (FfsFile
.CurrentLineNum
,
791 FfsFile
.CurrentLineContent
,
792 _GuidDict
[FfsFile
.NameGuid
.upper()].CurrentLineNum
,
793 _GuidDict
[FfsFile
.NameGuid
.upper()].CurrentLineContent
,
794 FfsFile
.NameGuid
.upper()),
795 ExtraData
=self
.FdfFile
)
798 def _CheckPcdDefineAndType(self
):
800 "FixedAtBuild", "PatchableInModule", "FeatureFlag",
801 "Dynamic", #"DynamicHii", "DynamicVpd",
802 "DynamicEx", # "DynamicExHii", "DynamicExVpd"
805 # This dict store PCDs which are not used by any modules with specified arches
807 for Pa
in self
.AutoGenObjectList
:
808 # Key of DSC's Pcds dictionary is PcdCName, TokenSpaceGuid
809 for Pcd
in Pa
.Platform
.Pcds
:
810 PcdType
= Pa
.Platform
.Pcds
[Pcd
].Type
812 # If no PCD type, this PCD comes from FDF
816 # Try to remove Hii and Vpd suffix
817 if PcdType
.startswith("DynamicEx"):
818 PcdType
= "DynamicEx"
819 elif PcdType
.startswith("Dynamic"):
822 for Package
in Pa
.PackageList
:
823 # Key of DEC's Pcds dictionary is PcdCName, TokenSpaceGuid, PcdType
824 if (Pcd
[0], Pcd
[1], PcdType
) in Package
.Pcds
:
826 for Type
in PcdTypeList
:
827 if (Pcd
[0], Pcd
[1], Type
) in Package
.Pcds
:
831 "Type [%s] of PCD [%s.%s] in DSC file doesn't match the type [%s] defined in DEC file." \
832 % (Pa
.Platform
.Pcds
[Pcd
].Type
, Pcd
[1], Pcd
[0], Type
),
837 UnusedPcd
.setdefault(Pcd
, []).append(Pa
.Arch
)
839 for Pcd
in UnusedPcd
:
842 "The PCD was not specified by any INF module in the platform for the given architecture.\n"
843 "\tPCD: [%s.%s]\n\tPlatform: [%s]\n\tArch: %s"
844 % (Pcd
[1], Pcd
[0], os
.path
.basename(str(self
.MetaFile
)), str(UnusedPcd
[Pcd
])),
849 return "%s [%s]" % (self
.MetaFile
, ", ".join(self
.ArchList
))
851 ## Return the directory to store FV files
853 if self
._FvDir
== None:
854 self
._FvDir
= path
.join(self
.BuildDir
, 'FV')
857 ## Return the directory to store all intermediate and final files built
858 def _GetBuildDir(self
):
859 return self
.AutoGenObjectList
[0].BuildDir
861 ## Return the build output directory platform specifies
862 def _GetOutputDir(self
):
863 return self
.Platform
.OutputDirectory
865 ## Return platform name
867 return self
.Platform
.PlatformName
869 ## Return meta-file GUID
871 return self
.Platform
.Guid
873 ## Return platform version
874 def _GetVersion(self
):
875 return self
.Platform
.Version
877 ## Return paths of tools
878 def _GetToolDefinition(self
):
879 return self
.AutoGenObjectList
[0].ToolDefinition
881 ## Return directory of platform makefile
883 # @retval string Makefile directory
885 def _GetMakeFileDir(self
):
886 if self
._MakeFileDir
== None:
887 self
._MakeFileDir
= self
.BuildDir
888 return self
._MakeFileDir
890 ## Return build command string
892 # @retval string Build command string
894 def _GetBuildCommand(self
):
895 if self
._BuildCommand
== None:
896 # BuildCommand should be all the same. So just get one from platform AutoGen
897 self
._BuildCommand
= self
.AutoGenObjectList
[0].BuildCommand
898 return self
._BuildCommand
900 ## Check the PCDs token value conflict in each DEC file.
902 # Will cause build break and raise error message while two PCDs conflict.
906 def _CheckAllPcdsTokenValueConflict(self
):
907 for Pa
in self
.AutoGenObjectList
:
908 for Package
in Pa
.PackageList
:
909 PcdList
= Package
.Pcds
.values()
910 PcdList
.sort(lambda x
, y
: cmp(int(x
.TokenValue
, 0), int(y
.TokenValue
, 0)))
912 while (Count
< len(PcdList
) - 1) :
913 Item
= PcdList
[Count
]
914 ItemNext
= PcdList
[Count
+ 1]
916 # Make sure in the same token space the TokenValue should be unique
918 if (int(Item
.TokenValue
, 0) == int(ItemNext
.TokenValue
, 0)):
919 SameTokenValuePcdList
= []
920 SameTokenValuePcdList
.append(Item
)
921 SameTokenValuePcdList
.append(ItemNext
)
922 RemainPcdListLength
= len(PcdList
) - Count
- 2
923 for ValueSameCount
in range(RemainPcdListLength
):
924 if int(PcdList
[len(PcdList
) - RemainPcdListLength
+ ValueSameCount
].TokenValue
, 0) == int(Item
.TokenValue
, 0):
925 SameTokenValuePcdList
.append(PcdList
[len(PcdList
) - RemainPcdListLength
+ ValueSameCount
])
929 # Sort same token value PCD list with TokenGuid and TokenCName
931 SameTokenValuePcdList
.sort(lambda x
, y
: cmp("%s.%s" % (x
.TokenSpaceGuidCName
, x
.TokenCName
), "%s.%s" % (y
.TokenSpaceGuidCName
, y
.TokenCName
)))
932 SameTokenValuePcdListCount
= 0
933 while (SameTokenValuePcdListCount
< len(SameTokenValuePcdList
) - 1):
935 TemListItem
= SameTokenValuePcdList
[SameTokenValuePcdListCount
]
936 TemListItemNext
= SameTokenValuePcdList
[SameTokenValuePcdListCount
+ 1]
938 if (TemListItem
.TokenSpaceGuidCName
== TemListItemNext
.TokenSpaceGuidCName
) and (TemListItem
.TokenCName
!= TemListItemNext
.TokenCName
):
939 for PcdItem
in GlobalData
.MixedPcd
:
940 if (TemListItem
.TokenCName
, TemListItem
.TokenSpaceGuidCName
) in GlobalData
.MixedPcd
[PcdItem
] or \
941 (TemListItemNext
.TokenCName
, TemListItemNext
.TokenSpaceGuidCName
) in GlobalData
.MixedPcd
[PcdItem
]:
947 "The TokenValue [%s] of PCD [%s.%s] is conflict with: [%s.%s] in %s"\
948 % (TemListItem
.TokenValue
, TemListItem
.TokenSpaceGuidCName
, TemListItem
.TokenCName
, TemListItemNext
.TokenSpaceGuidCName
, TemListItemNext
.TokenCName
, Package
),
951 SameTokenValuePcdListCount
+= 1
952 Count
+= SameTokenValuePcdListCount
955 PcdList
= Package
.Pcds
.values()
956 PcdList
.sort(lambda x
, y
: cmp("%s.%s" % (x
.TokenSpaceGuidCName
, x
.TokenCName
), "%s.%s" % (y
.TokenSpaceGuidCName
, y
.TokenCName
)))
958 while (Count
< len(PcdList
) - 1) :
959 Item
= PcdList
[Count
]
960 ItemNext
= PcdList
[Count
+ 1]
962 # Check PCDs with same TokenSpaceGuidCName.TokenCName have same token value as well.
964 if (Item
.TokenSpaceGuidCName
== ItemNext
.TokenSpaceGuidCName
) and (Item
.TokenCName
== ItemNext
.TokenCName
) and (int(Item
.TokenValue
, 0) != int(ItemNext
.TokenValue
, 0)):
968 "The TokenValue [%s] of PCD [%s.%s] in %s defined in two places should be same as well."\
969 % (Item
.TokenValue
, Item
.TokenSpaceGuidCName
, Item
.TokenCName
, Package
),
973 ## Generate fds command
974 def _GenFdsCommand(self
):
975 return (GenMake
.TopLevelMakefile(self
)._TEMPLATE
_.Replace(GenMake
.TopLevelMakefile(self
)._TemplateDict
)).strip()
977 ## Create makefile for the platform and modules in it
979 # @param CreateDepsMakeFile Flag indicating if the makefile for
980 # modules will be created as well
982 def CreateMakeFile(self
, CreateDepsMakeFile
=False):
983 if CreateDepsMakeFile
:
984 for Pa
in self
.AutoGenObjectList
:
985 Pa
.CreateMakeFile(CreateDepsMakeFile
)
987 ## Create autogen code for platform and modules
989 # Since there's no autogen code for platform, this method will do nothing
990 # if CreateModuleCodeFile is set to False.
992 # @param CreateDepsCodeFile Flag indicating if creating module's
993 # autogen code file or not
995 def CreateCodeFile(self
, CreateDepsCodeFile
=False):
996 if not CreateDepsCodeFile
:
998 for Pa
in self
.AutoGenObjectList
:
999 Pa
.CreateCodeFile(CreateDepsCodeFile
)
1001 ## Create AsBuilt INF file the platform
1003 def CreateAsBuiltInf(self
):
1006 Name
= property(_GetName
)
1007 Guid
= property(_GetGuid
)
1008 Version
= property(_GetVersion
)
1009 OutputDir
= property(_GetOutputDir
)
1011 ToolDefinition
= property(_GetToolDefinition
) # toolcode : tool path
1013 BuildDir
= property(_GetBuildDir
)
1014 FvDir
= property(_GetFvDir
)
1015 MakeFileDir
= property(_GetMakeFileDir
)
1016 BuildCommand
= property(_GetBuildCommand
)
1017 GenFdsCommand
= property(_GenFdsCommand
)
1019 ## AutoGen class for platform
1021 # PlatformAutoGen class will process the original information in platform
1022 # file in order to generate makefile for platform.
1024 class PlatformAutoGen(AutoGen
):
1026 # Used to store all PCDs for both PEI and DXE phase, in order to generate
1027 # correct PCD database
1030 _NonDynaPcdList_
= []
1034 # The priority list while override build option
1036 PrioList
= {"0x11111" : 16, # TARGET_TOOLCHAIN_ARCH_COMMANDTYPE_ATTRIBUTE (Highest)
1037 "0x01111" : 15, # ******_TOOLCHAIN_ARCH_COMMANDTYPE_ATTRIBUTE
1038 "0x10111" : 14, # TARGET_*********_ARCH_COMMANDTYPE_ATTRIBUTE
1039 "0x00111" : 13, # ******_*********_ARCH_COMMANDTYPE_ATTRIBUTE
1040 "0x11011" : 12, # TARGET_TOOLCHAIN_****_COMMANDTYPE_ATTRIBUTE
1041 "0x01011" : 11, # ******_TOOLCHAIN_****_COMMANDTYPE_ATTRIBUTE
1042 "0x10011" : 10, # TARGET_*********_****_COMMANDTYPE_ATTRIBUTE
1043 "0x00011" : 9, # ******_*********_****_COMMANDTYPE_ATTRIBUTE
1044 "0x11101" : 8, # TARGET_TOOLCHAIN_ARCH_***********_ATTRIBUTE
1045 "0x01101" : 7, # ******_TOOLCHAIN_ARCH_***********_ATTRIBUTE
1046 "0x10101" : 6, # TARGET_*********_ARCH_***********_ATTRIBUTE
1047 "0x00101" : 5, # ******_*********_ARCH_***********_ATTRIBUTE
1048 "0x11001" : 4, # TARGET_TOOLCHAIN_****_***********_ATTRIBUTE
1049 "0x01001" : 3, # ******_TOOLCHAIN_****_***********_ATTRIBUTE
1050 "0x10001" : 2, # TARGET_*********_****_***********_ATTRIBUTE
1051 "0x00001" : 1} # ******_*********_****_***********_ATTRIBUTE (Lowest)
1053 ## The real constructor of PlatformAutoGen
1055 # This method is not supposed to be called by users of PlatformAutoGen. It's
1056 # only used by factory method __new__() to do real initialization work for an
1057 # object of PlatformAutoGen
1059 # @param Workspace WorkspaceAutoGen object
1060 # @param PlatformFile Platform file (DSC file)
1061 # @param Target Build target (DEBUG, RELEASE)
1062 # @param Toolchain Name of tool chain
1063 # @param Arch arch of the platform supports
1065 def _Init(self
, Workspace
, PlatformFile
, Target
, Toolchain
, Arch
):
1066 EdkLogger
.debug(EdkLogger
.DEBUG_9
, "AutoGen platform [%s] [%s]" % (PlatformFile
, Arch
))
1067 GlobalData
.gProcessingFile
= "%s [%s, %s, %s]" % (PlatformFile
, Arch
, Toolchain
, Target
)
1069 self
.MetaFile
= PlatformFile
1070 self
.Workspace
= Workspace
1071 self
.WorkspaceDir
= Workspace
.WorkspaceDir
1072 self
.ToolChain
= Toolchain
1073 self
.BuildTarget
= Target
1075 self
.SourceDir
= PlatformFile
.SubDir
1076 self
.SourceOverrideDir
= None
1077 self
.FdTargetList
= self
.Workspace
.FdTargetList
1078 self
.FvTargetList
= self
.Workspace
.FvTargetList
1079 self
.AllPcdList
= []
1080 # get the original module/package/platform objects
1081 self
.BuildDatabase
= Workspace
.BuildDatabase
1083 # flag indicating if the makefile/C-code file has been created or not
1084 self
.IsMakeFileCreated
= False
1085 self
.IsCodeFileCreated
= False
1087 self
._Platform
= None
1090 self
._Version
= None
1092 self
._BuildRule
= None
1093 self
._SourceDir
= None
1094 self
._BuildDir
= None
1095 self
._OutputDir
= None
1097 self
._MakeFileDir
= None
1098 self
._FdfFile
= None
1100 self
._PcdTokenNumber
= None # (TokenCName, TokenSpaceGuidCName) : GeneratedTokenNumber
1101 self
._DynamicPcdList
= None # [(TokenCName1, TokenSpaceGuidCName1), (TokenCName2, TokenSpaceGuidCName2), ...]
1102 self
._NonDynamicPcdList
= None # [(TokenCName1, TokenSpaceGuidCName1), (TokenCName2, TokenSpaceGuidCName2), ...]
1103 self
._NonDynamicPcdDict
= {}
1105 self
._ToolDefinitions
= None
1106 self
._ToolDefFile
= None # toolcode : tool path
1107 self
._ToolChainFamily
= None
1108 self
._BuildRuleFamily
= None
1109 self
._BuildOption
= None # toolcode : option
1110 self
._EdkBuildOption
= None # edktoolcode : option
1111 self
._EdkIIBuildOption
= None # edkiitoolcode : option
1112 self
._PackageList
= None
1113 self
._ModuleAutoGenList
= None
1114 self
._LibraryAutoGenList
= None
1115 self
._BuildCommand
= None
1116 self
._AsBuildInfList
= []
1117 self
._AsBuildModuleList
= []
1118 if GlobalData
.gFdfParser
!= None:
1119 self
._AsBuildInfList
= GlobalData
.gFdfParser
.Profile
.InfList
1120 for Inf
in self
._AsBuildInfList
:
1121 InfClass
= PathClass(NormPath(Inf
), GlobalData
.gWorkspace
, self
.Arch
)
1122 M
= self
.BuildDatabase
[InfClass
, self
.Arch
, self
.BuildTarget
, self
.ToolChain
]
1123 if not M
.IsSupportedArch
:
1125 self
._AsBuildModuleList
.append(InfClass
)
1126 # get library/modules for build
1127 self
.LibraryBuildDirectoryList
= []
1128 self
.ModuleBuildDirectoryList
= []
1132 return "%s [%s]" % (self
.MetaFile
, self
.Arch
)
1134 ## Create autogen code for platform and modules
1136 # Since there's no autogen code for platform, this method will do nothing
1137 # if CreateModuleCodeFile is set to False.
1139 # @param CreateModuleCodeFile Flag indicating if creating module's
1140 # autogen code file or not
1142 def CreateCodeFile(self
, CreateModuleCodeFile
=False):
1143 # only module has code to be greated, so do nothing if CreateModuleCodeFile is False
1144 if self
.IsCodeFileCreated
or not CreateModuleCodeFile
:
1147 for Ma
in self
.ModuleAutoGenList
:
1148 Ma
.CreateCodeFile(True)
1150 # don't do this twice
1151 self
.IsCodeFileCreated
= True
1153 ## Generate Fds Command
1154 def _GenFdsCommand(self
):
1155 return self
.Workspace
.GenFdsCommand
1157 ## Create makefile for the platform and mdoules in it
1159 # @param CreateModuleMakeFile Flag indicating if the makefile for
1160 # modules will be created as well
1162 def CreateMakeFile(self
, CreateModuleMakeFile
=False):
1163 if CreateModuleMakeFile
:
1164 for ModuleFile
in self
.Platform
.Modules
:
1165 Ma
= ModuleAutoGen(self
.Workspace
, ModuleFile
, self
.BuildTarget
,
1166 self
.ToolChain
, self
.Arch
, self
.MetaFile
)
1167 Ma
.CreateMakeFile(True)
1168 #Ma.CreateAsBuiltInf()
1170 # no need to create makefile for the platform more than once
1171 if self
.IsMakeFileCreated
:
1174 # create library/module build dirs for platform
1175 Makefile
= GenMake
.PlatformMakefile(self
)
1176 self
.LibraryBuildDirectoryList
= Makefile
.GetLibraryBuildDirectoryList()
1177 self
.ModuleBuildDirectoryList
= Makefile
.GetModuleBuildDirectoryList()
1179 self
.IsMakeFileCreated
= True
1181 ## Deal with Shared FixedAtBuild Pcds
1183 def CollectFixedAtBuildPcds(self
):
1184 for LibAuto
in self
.LibraryAutoGenList
:
1185 FixedAtBuildPcds
= {}
1186 ShareFixedAtBuildPcdsSameValue
= {}
1187 for Module
in LibAuto
._ReferenceModules
:
1188 for Pcd
in Module
.FixedAtBuildPcds
+ LibAuto
.FixedAtBuildPcds
:
1189 key
= ".".join((Pcd
.TokenSpaceGuidCName
,Pcd
.TokenCName
))
1190 if key
not in FixedAtBuildPcds
:
1191 ShareFixedAtBuildPcdsSameValue
[key
] = True
1192 FixedAtBuildPcds
[key
] = Pcd
.DefaultValue
1194 if FixedAtBuildPcds
[key
] != Pcd
.DefaultValue
:
1195 ShareFixedAtBuildPcdsSameValue
[key
] = False
1196 for Pcd
in LibAuto
.FixedAtBuildPcds
:
1197 key
= ".".join((Pcd
.TokenSpaceGuidCName
,Pcd
.TokenCName
))
1198 if (Pcd
.TokenCName
,Pcd
.TokenSpaceGuidCName
) not in self
.NonDynamicPcdDict
:
1201 DscPcd
= self
.NonDynamicPcdDict
[(Pcd
.TokenCName
,Pcd
.TokenSpaceGuidCName
)]
1202 if DscPcd
.Type
!= "FixedAtBuild":
1204 if key
in ShareFixedAtBuildPcdsSameValue
and ShareFixedAtBuildPcdsSameValue
[key
]:
1205 LibAuto
.ConstPcd
[key
] = Pcd
.DefaultValue
1207 ## Collect dynamic PCDs
1209 # Gather dynamic PCDs list from each module and their settings from platform
1210 # This interface should be invoked explicitly when platform action is created.
1212 def CollectPlatformDynamicPcds(self
):
1213 # Override the platform Pcd's value by build option
1214 if GlobalData
.BuildOptionPcd
:
1215 for key
in self
.Platform
.Pcds
:
1216 PlatformPcd
= self
.Platform
.Pcds
[key
]
1217 for PcdItem
in GlobalData
.BuildOptionPcd
:
1218 if (PlatformPcd
.TokenSpaceGuidCName
, PlatformPcd
.TokenCName
) == (PcdItem
[0], PcdItem
[1]):
1219 PlatformPcd
.DefaultValue
= PcdItem
[2]
1220 if PlatformPcd
.SkuInfoList
:
1221 Sku
= PlatformPcd
.SkuInfoList
[PlatformPcd
.SkuInfoList
.keys()[0]]
1222 Sku
.DefaultValue
= PcdItem
[2]
1225 for key
in self
.Platform
.Pcds
:
1226 for SinglePcd
in GlobalData
.MixedPcd
:
1227 if (self
.Platform
.Pcds
[key
].TokenCName
, self
.Platform
.Pcds
[key
].TokenSpaceGuidCName
) == SinglePcd
:
1228 for item
in GlobalData
.MixedPcd
[SinglePcd
]:
1229 Pcd_Type
= item
[0].split('_')[-1]
1230 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 \
1231 (Pcd_Type
== TAB_PCDS_DYNAMIC
and self
.Platform
.Pcds
[key
].Type
in GenC
.gDynamicPcd
):
1232 Value
= self
.Platform
.Pcds
[key
]
1233 Value
.TokenCName
= self
.Platform
.Pcds
[key
].TokenCName
+ '_' + Pcd_Type
1235 newkey
= (Value
.TokenCName
, key
[1])
1237 newkey
= (Value
.TokenCName
, key
[1], key
[2])
1238 del self
.Platform
.Pcds
[key
]
1239 self
.Platform
.Pcds
[newkey
] = Value
1247 # for gathering error information
1248 NoDatumTypePcdList
= set()
1250 self
._GuidValue
= {}
1252 for InfName
in self
._AsBuildInfList
:
1253 InfName
= mws
.join(self
.WorkspaceDir
, InfName
)
1254 FdfModuleList
.append(os
.path
.normpath(InfName
))
1255 for F
in self
.Platform
.Modules
.keys():
1256 M
= ModuleAutoGen(self
.Workspace
, F
, self
.BuildTarget
, self
.ToolChain
, self
.Arch
, self
.MetaFile
)
1257 #GuidValue.update(M.Guids)
1259 self
.Platform
.Modules
[F
].M
= M
1261 for PcdFromModule
in M
.ModulePcdList
+ M
.LibraryPcdList
:
1262 # make sure that the "VOID*" kind of datum has MaxDatumSize set
1263 if PcdFromModule
.DatumType
== "VOID*" and PcdFromModule
.MaxDatumSize
in [None, '']:
1264 NoDatumTypePcdList
.add("%s.%s [%s]" % (PcdFromModule
.TokenSpaceGuidCName
, PcdFromModule
.TokenCName
, F
))
1266 # Check the PCD from Binary INF or Source INF
1267 if M
.IsBinaryModule
== True:
1268 PcdFromModule
.IsFromBinaryInf
= True
1270 # Check the PCD from DSC or not
1271 if (PcdFromModule
.TokenCName
, PcdFromModule
.TokenSpaceGuidCName
) in self
.Platform
.Pcds
.keys():
1272 PcdFromModule
.IsFromDsc
= True
1274 PcdFromModule
.IsFromDsc
= False
1275 if PcdFromModule
.Type
in GenC
.gDynamicPcd
or PcdFromModule
.Type
in GenC
.gDynamicExPcd
:
1276 if F
.Path
not in FdfModuleList
:
1277 # If one of the Source built modules listed in the DSC is not listed
1278 # in FDF modules, and the INF lists a PCD can only use the PcdsDynamic
1279 # access method (it is only listed in the DEC file that declares the
1280 # PCD as PcdsDynamic), then build tool will report warning message
1281 # notify the PI that they are attempting to build a module that must
1282 # be included in a flash image in order to be functional. These Dynamic
1283 # PCD will not be added into the Database unless it is used by other
1284 # modules that are included in the FDF file.
1285 if PcdFromModule
.Type
in GenC
.gDynamicPcd
and \
1286 PcdFromModule
.IsFromBinaryInf
== False:
1287 # Print warning message to let the developer make a determine.
1288 if PcdFromModule
not in PcdNotInDb
:
1289 PcdNotInDb
.append(PcdFromModule
)
1291 # If one of the Source built modules listed in the DSC is not listed in
1292 # FDF modules, and the INF lists a PCD can only use the PcdsDynamicEx
1293 # access method (it is only listed in the DEC file that declares the
1294 # PCD as PcdsDynamicEx), then DO NOT break the build; DO NOT add the
1295 # PCD to the Platform's PCD Database.
1296 if PcdFromModule
.Type
in GenC
.gDynamicExPcd
:
1297 if PcdFromModule
not in PcdNotInDb
:
1298 PcdNotInDb
.append(PcdFromModule
)
1301 # If a dynamic PCD used by a PEM module/PEI module & DXE module,
1302 # it should be stored in Pcd PEI database, If a dynamic only
1303 # used by DXE module, it should be stored in DXE PCD database.
1304 # The default Phase is DXE
1306 if M
.ModuleType
in ["PEIM", "PEI_CORE"]:
1307 PcdFromModule
.Phase
= "PEI"
1308 if PcdFromModule
not in self
._DynaPcdList
_:
1309 self
._DynaPcdList
_.append(PcdFromModule
)
1310 elif PcdFromModule
.Phase
== 'PEI':
1311 # overwrite any the same PCD existing, if Phase is PEI
1312 Index
= self
._DynaPcdList
_.index(PcdFromModule
)
1313 self
._DynaPcdList
_[Index
] = PcdFromModule
1314 elif PcdFromModule
not in self
._NonDynaPcdList
_:
1315 self
._NonDynaPcdList
_.append(PcdFromModule
)
1316 elif PcdFromModule
in self
._NonDynaPcdList
_ and PcdFromModule
.IsFromBinaryInf
== True:
1317 Index
= self
._NonDynaPcdList
_.index(PcdFromModule
)
1318 if self
._NonDynaPcdList
_[Index
].IsFromBinaryInf
== False:
1319 #The PCD from Binary INF will override the same one from source INF
1320 self
._NonDynaPcdList
_.remove (self
._NonDynaPcdList
_[Index
])
1321 PcdFromModule
.Pending
= False
1322 self
._NonDynaPcdList
_.append (PcdFromModule
)
1323 # Parse the DynamicEx PCD from the AsBuild INF module list of FDF.
1325 for ModuleInf
in self
.Platform
.Modules
.keys():
1326 DscModuleList
.append (os
.path
.normpath(ModuleInf
.Path
))
1327 # add the PCD from modules that listed in FDF but not in DSC to Database
1328 for InfName
in FdfModuleList
:
1329 if InfName
not in DscModuleList
:
1330 InfClass
= PathClass(InfName
)
1331 M
= self
.BuildDatabase
[InfClass
, self
.Arch
, self
.BuildTarget
, self
.ToolChain
]
1332 # If a module INF in FDF but not in current arch's DSC module list, it must be module (either binary or source)
1333 # for different Arch. PCDs in source module for different Arch is already added before, so skip the source module here.
1334 # For binary module, if in current arch, we need to list the PCDs into database.
1335 if not M
.IsSupportedArch
:
1337 # Override the module PCD setting by platform setting
1338 ModulePcdList
= self
.ApplyPcdSetting(M
, M
.Pcds
)
1339 for PcdFromModule
in ModulePcdList
:
1340 PcdFromModule
.IsFromBinaryInf
= True
1341 PcdFromModule
.IsFromDsc
= False
1342 # Only allow the DynamicEx and Patchable PCD in AsBuild INF
1343 if PcdFromModule
.Type
not in GenC
.gDynamicExPcd
and PcdFromModule
.Type
not in TAB_PCDS_PATCHABLE_IN_MODULE
:
1344 EdkLogger
.error("build", AUTOGEN_ERROR
, "PCD setting error",
1346 ExtraData
="\n\tExisted %s PCD %s in:\n\t\t%s\n"
1347 % (PcdFromModule
.Type
, PcdFromModule
.TokenCName
, InfName
))
1348 # make sure that the "VOID*" kind of datum has MaxDatumSize set
1349 if PcdFromModule
.DatumType
== "VOID*" and PcdFromModule
.MaxDatumSize
in [None, '']:
1350 NoDatumTypePcdList
.add("%s.%s [%s]" % (PcdFromModule
.TokenSpaceGuidCName
, PcdFromModule
.TokenCName
, InfName
))
1351 if M
.ModuleType
in ["PEIM", "PEI_CORE"]:
1352 PcdFromModule
.Phase
= "PEI"
1353 if PcdFromModule
not in self
._DynaPcdList
_ and PcdFromModule
.Type
in GenC
.gDynamicExPcd
:
1354 self
._DynaPcdList
_.append(PcdFromModule
)
1355 elif PcdFromModule
not in self
._NonDynaPcdList
_ and PcdFromModule
.Type
in TAB_PCDS_PATCHABLE_IN_MODULE
:
1356 self
._NonDynaPcdList
_.append(PcdFromModule
)
1357 if PcdFromModule
in self
._DynaPcdList
_ and PcdFromModule
.Phase
== 'PEI' and PcdFromModule
.Type
in GenC
.gDynamicExPcd
:
1358 # Overwrite the phase of any the same PCD existing, if Phase is PEI.
1359 # It is to solve the case that a dynamic PCD used by a PEM module/PEI
1360 # module & DXE module at a same time.
1361 # Overwrite the type of the PCDs in source INF by the type of AsBuild
1362 # INF file as DynamicEx.
1363 Index
= self
._DynaPcdList
_.index(PcdFromModule
)
1364 self
._DynaPcdList
_[Index
].Phase
= PcdFromModule
.Phase
1365 self
._DynaPcdList
_[Index
].Type
= PcdFromModule
.Type
1366 for PcdFromModule
in self
._NonDynaPcdList
_:
1367 # If a PCD is not listed in the DSC file, but binary INF files used by
1368 # this platform all (that use this PCD) list the PCD in a [PatchPcds]
1369 # section, AND all source INF files used by this platform the build
1370 # that use the PCD list the PCD in either a [Pcds] or [PatchPcds]
1371 # section, then the tools must NOT add the PCD to the Platform's PCD
1372 # Database; the build must assign the access method for this PCD as
1373 # PcdsPatchableInModule.
1374 if PcdFromModule
not in self
._DynaPcdList
_:
1376 Index
= self
._DynaPcdList
_.index(PcdFromModule
)
1377 if PcdFromModule
.IsFromDsc
== False and \
1378 PcdFromModule
.Type
in TAB_PCDS_PATCHABLE_IN_MODULE
and \
1379 PcdFromModule
.IsFromBinaryInf
== True and \
1380 self
._DynaPcdList
_[Index
].IsFromBinaryInf
== False:
1381 Index
= self
._DynaPcdList
_.index(PcdFromModule
)
1382 self
._DynaPcdList
_.remove (self
._DynaPcdList
_[Index
])
1384 # print out error information and break the build, if error found
1385 if len(NoDatumTypePcdList
) > 0:
1386 NoDatumTypePcdListString
= "\n\t\t".join(NoDatumTypePcdList
)
1387 EdkLogger
.error("build", AUTOGEN_ERROR
, "PCD setting error",
1389 ExtraData
="\n\tPCD(s) without MaxDatumSize:\n\t\t%s\n"
1390 % NoDatumTypePcdListString
)
1391 self
._NonDynamicPcdList
= self
._NonDynaPcdList
_
1392 self
._DynamicPcdList
= self
._DynaPcdList
_
1394 # Sort dynamic PCD list to:
1395 # 1) If PCD's datum type is VOID* and value is unicode string which starts with L, the PCD item should
1396 # try to be put header of dynamicd List
1397 # 2) If PCD is HII type, the PCD item should be put after unicode type PCD
1399 # The reason of sorting is make sure the unicode string is in double-byte alignment in string table.
1401 UnicodePcdArray
= []
1405 VpdFile
= VpdInfoFile
.VpdInfoFile()
1406 NeedProcessVpdMapFile
= False
1408 for pcd
in self
.Platform
.Pcds
.keys():
1409 if pcd
not in self
._PlatformPcds
.keys():
1410 self
._PlatformPcds
[pcd
] = self
.Platform
.Pcds
[pcd
]
1412 if (self
.Workspace
.ArchList
[-1] == self
.Arch
):
1413 for Pcd
in self
._DynamicPcdList
:
1414 # just pick the a value to determine whether is unicode string type
1415 Sku
= Pcd
.SkuInfoList
[Pcd
.SkuInfoList
.keys()[0]]
1416 Sku
.VpdOffset
= Sku
.VpdOffset
.strip()
1418 PcdValue
= Sku
.DefaultValue
1419 if Pcd
.DatumType
== 'VOID*' and PcdValue
.startswith("L"):
1420 # if found PCD which datum value is unicode string the insert to left size of UnicodeIndex
1421 UnicodePcdArray
.append(Pcd
)
1422 elif len(Sku
.VariableName
) > 0:
1423 # if found HII type PCD then insert to right of UnicodeIndex
1424 HiiPcdArray
.append(Pcd
)
1426 OtherPcdArray
.append(Pcd
)
1427 if Pcd
.Type
in [TAB_PCDS_DYNAMIC_VPD
, TAB_PCDS_DYNAMIC_EX_VPD
]:
1428 VpdPcdDict
[(Pcd
.TokenCName
, Pcd
.TokenSpaceGuidCName
)] = Pcd
1430 PlatformPcds
= self
._PlatformPcds
.keys()
1433 # Add VPD type PCD into VpdFile and determine whether the VPD PCD need to be fixed up.
1435 for PcdKey
in PlatformPcds
:
1436 Pcd
= self
._PlatformPcds
[PcdKey
]
1437 if Pcd
.Type
in [TAB_PCDS_DYNAMIC_VPD
, TAB_PCDS_DYNAMIC_EX_VPD
] and \
1438 PcdKey
in VpdPcdDict
:
1439 Pcd
= VpdPcdDict
[PcdKey
]
1440 for (SkuName
,Sku
) in Pcd
.SkuInfoList
.items():
1441 Sku
.VpdOffset
= Sku
.VpdOffset
.strip()
1442 PcdValue
= Sku
.DefaultValue
1444 PcdValue
= Pcd
.DefaultValue
1445 if Sku
.VpdOffset
!= '*':
1446 if PcdValue
.startswith("{"):
1448 elif PcdValue
.startswith("L"):
1453 VpdOffset
= int(Sku
.VpdOffset
)
1456 VpdOffset
= int(Sku
.VpdOffset
, 16)
1458 EdkLogger
.error("build", FORMAT_INVALID
, "Invalid offset value %s for PCD %s.%s." % (Sku
.VpdOffset
, Pcd
.TokenSpaceGuidCName
, Pcd
.TokenCName
))
1459 if VpdOffset
% Alignment
!= 0:
1460 if PcdValue
.startswith("{"):
1461 EdkLogger
.warn("build", "The offset value of PCD %s.%s is not 8-byte aligned!" %(Pcd
.TokenSpaceGuidCName
, Pcd
.TokenCName
), File
=self
.MetaFile
)
1463 EdkLogger
.error("build", FORMAT_INVALID
, 'The offset value of PCD %s.%s should be %s-byte aligned.' % (Pcd
.TokenSpaceGuidCName
, Pcd
.TokenCName
, Alignment
))
1464 VpdFile
.Add(Pcd
, Sku
.VpdOffset
)
1465 # if the offset of a VPD is *, then it need to be fixed up by third party tool.
1466 if not NeedProcessVpdMapFile
and Sku
.VpdOffset
== "*":
1467 NeedProcessVpdMapFile
= True
1468 if self
.Platform
.VpdToolGuid
== None or self
.Platform
.VpdToolGuid
== '':
1469 EdkLogger
.error("Build", FILE_NOT_FOUND
, \
1470 "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.")
1474 # Fix the PCDs define in VPD PCD section that never referenced by module.
1475 # An example is PCD for signature usage.
1477 for DscPcd
in PlatformPcds
:
1478 DscPcdEntry
= self
._PlatformPcds
[DscPcd
]
1479 if DscPcdEntry
.Type
in [TAB_PCDS_DYNAMIC_VPD
, TAB_PCDS_DYNAMIC_EX_VPD
]:
1480 if not (self
.Platform
.VpdToolGuid
== None or self
.Platform
.VpdToolGuid
== ''):
1482 for VpdPcd
in VpdFile
._VpdArray
.keys():
1483 # This PCD has been referenced by module
1484 if (VpdPcd
.TokenSpaceGuidCName
== DscPcdEntry
.TokenSpaceGuidCName
) and \
1485 (VpdPcd
.TokenCName
== DscPcdEntry
.TokenCName
):
1488 # Not found, it should be signature
1490 # just pick the a value to determine whether is unicode string type
1491 for (SkuName
,Sku
) in DscPcdEntry
.SkuInfoList
.items():
1492 Sku
.VpdOffset
= Sku
.VpdOffset
.strip()
1494 # Need to iterate DEC pcd information to get the value & datumtype
1495 for eachDec
in self
.PackageList
:
1496 for DecPcd
in eachDec
.Pcds
:
1497 DecPcdEntry
= eachDec
.Pcds
[DecPcd
]
1498 if (DecPcdEntry
.TokenSpaceGuidCName
== DscPcdEntry
.TokenSpaceGuidCName
) and \
1499 (DecPcdEntry
.TokenCName
== DscPcdEntry
.TokenCName
):
1500 # Print warning message to let the developer make a determine.
1501 EdkLogger
.warn("build", "Unreferenced vpd pcd used!",
1502 File
=self
.MetaFile
, \
1503 ExtraData
= "PCD: %s.%s used in the DSC file %s is unreferenced." \
1504 %(DscPcdEntry
.TokenSpaceGuidCName
, DscPcdEntry
.TokenCName
, self
.Platform
.MetaFile
.Path
))
1506 DscPcdEntry
.DatumType
= DecPcdEntry
.DatumType
1507 DscPcdEntry
.DefaultValue
= DecPcdEntry
.DefaultValue
1508 DscPcdEntry
.TokenValue
= DecPcdEntry
.TokenValue
1509 DscPcdEntry
.TokenSpaceGuidValue
= eachDec
.Guids
[DecPcdEntry
.TokenSpaceGuidCName
]
1510 # Only fix the value while no value provided in DSC file.
1511 if (Sku
.DefaultValue
== "" or Sku
.DefaultValue
==None):
1512 DscPcdEntry
.SkuInfoList
[DscPcdEntry
.SkuInfoList
.keys()[0]].DefaultValue
= DecPcdEntry
.DefaultValue
1514 if DscPcdEntry
not in self
._DynamicPcdList
:
1515 self
._DynamicPcdList
.append(DscPcdEntry
)
1516 # Sku = DscPcdEntry.SkuInfoList[DscPcdEntry.SkuInfoList.keys()[0]]
1517 Sku
.VpdOffset
= Sku
.VpdOffset
.strip()
1518 PcdValue
= Sku
.DefaultValue
1520 PcdValue
= DscPcdEntry
.DefaultValue
1521 if Sku
.VpdOffset
!= '*':
1522 if PcdValue
.startswith("{"):
1524 elif PcdValue
.startswith("L"):
1529 VpdOffset
= int(Sku
.VpdOffset
)
1532 VpdOffset
= int(Sku
.VpdOffset
, 16)
1534 EdkLogger
.error("build", FORMAT_INVALID
, "Invalid offset value %s for PCD %s.%s." % (Sku
.VpdOffset
, DscPcdEntry
.TokenSpaceGuidCName
, DscPcdEntry
.TokenCName
))
1535 if VpdOffset
% Alignment
!= 0:
1536 if PcdValue
.startswith("{"):
1537 EdkLogger
.warn("build", "The offset value of PCD %s.%s is not 8-byte aligned!" %(DscPcdEntry
.TokenSpaceGuidCName
, DscPcdEntry
.TokenCName
), File
=self
.MetaFile
)
1539 EdkLogger
.error("build", FORMAT_INVALID
, 'The offset value of PCD %s.%s should be %s-byte aligned.' % (DscPcdEntry
.TokenSpaceGuidCName
, DscPcdEntry
.TokenCName
, Alignment
))
1540 VpdFile
.Add(DscPcdEntry
, Sku
.VpdOffset
)
1541 if not NeedProcessVpdMapFile
and Sku
.VpdOffset
== "*":
1542 NeedProcessVpdMapFile
= True
1543 if DscPcdEntry
.DatumType
== 'VOID*' and PcdValue
.startswith("L"):
1544 UnicodePcdArray
.append(DscPcdEntry
)
1545 elif len(Sku
.VariableName
) > 0:
1546 HiiPcdArray
.append(DscPcdEntry
)
1548 OtherPcdArray
.append(DscPcdEntry
)
1550 # if the offset of a VPD is *, then it need to be fixed up by third party tool.
1554 if (self
.Platform
.FlashDefinition
== None or self
.Platform
.FlashDefinition
== '') and \
1555 VpdFile
.GetCount() != 0:
1556 EdkLogger
.error("build", ATTRIBUTE_NOT_AVAILABLE
,
1557 "Fail to get FLASH_DEFINITION definition in DSC file %s which is required when DSC contains VPD PCD." % str(self
.Platform
.MetaFile
))
1559 if VpdFile
.GetCount() != 0:
1560 FvPath
= os
.path
.join(self
.BuildDir
, "FV")
1561 if not os
.path
.exists(FvPath
):
1565 EdkLogger
.error("build", FILE_WRITE_FAILURE
, "Fail to create FV folder under %s" % self
.BuildDir
)
1567 VpdFilePath
= os
.path
.join(FvPath
, "%s.txt" % self
.Platform
.VpdToolGuid
)
1569 if VpdFile
.Write(VpdFilePath
):
1570 # retrieve BPDG tool's path from tool_def.txt according to VPD_TOOL_GUID defined in DSC file.
1572 for ToolDef
in self
.ToolDefinition
.values():
1573 if ToolDef
.has_key("GUID") and ToolDef
["GUID"] == self
.Platform
.VpdToolGuid
:
1574 if not ToolDef
.has_key("PATH"):
1575 EdkLogger
.error("build", ATTRIBUTE_NOT_AVAILABLE
, "PATH attribute was not provided for BPDG guid tool %s in tools_def.txt" % self
.Platform
.VpdToolGuid
)
1576 BPDGToolName
= ToolDef
["PATH"]
1578 # Call third party GUID BPDG tool.
1579 if BPDGToolName
!= None:
1580 VpdInfoFile
.CallExtenalBPDGTool(BPDGToolName
, VpdFilePath
)
1582 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.")
1584 # Process VPD map file generated by third party BPDG tool
1585 if NeedProcessVpdMapFile
:
1586 VpdMapFilePath
= os
.path
.join(self
.BuildDir
, "FV", "%s.map" % self
.Platform
.VpdToolGuid
)
1587 if os
.path
.exists(VpdMapFilePath
):
1588 VpdFile
.Read(VpdMapFilePath
)
1591 for Pcd
in self
._DynamicPcdList
:
1592 # just pick the a value to determine whether is unicode string type
1594 for (SkuName
,Sku
) in Pcd
.SkuInfoList
.items():
1595 if Sku
.VpdOffset
== "*":
1596 Sku
.VpdOffset
= VpdFile
.GetOffset(Pcd
)[i
].strip()
1599 EdkLogger
.error("build", FILE_READ_FAILURE
, "Can not find VPD map file %s to fix up VPD offset." % VpdMapFilePath
)
1601 # Delete the DynamicPcdList At the last time enter into this function
1602 del self
._DynamicPcdList
[:]
1603 self
._DynamicPcdList
.extend(UnicodePcdArray
)
1604 self
._DynamicPcdList
.extend(HiiPcdArray
)
1605 self
._DynamicPcdList
.extend(OtherPcdArray
)
1606 self
.AllPcdList
= self
._NonDynamicPcdList
+ self
._DynamicPcdList
1608 ## Return the platform build data object
1609 def _GetPlatform(self
):
1610 if self
._Platform
== None:
1611 self
._Platform
= self
.BuildDatabase
[self
.MetaFile
, self
.Arch
, self
.BuildTarget
, self
.ToolChain
]
1612 return self
._Platform
1614 ## Return platform name
1616 return self
.Platform
.PlatformName
1618 ## Return the meta file GUID
1620 return self
.Platform
.Guid
1622 ## Return the platform version
1623 def _GetVersion(self
):
1624 return self
.Platform
.Version
1626 ## Return the FDF file name
1627 def _GetFdfFile(self
):
1628 if self
._FdfFile
== None:
1629 if self
.Workspace
.FdfFile
!= "":
1630 self
._FdfFile
= mws
.join(self
.WorkspaceDir
, self
.Workspace
.FdfFile
)
1633 return self
._FdfFile
1635 ## Return the build output directory platform specifies
1636 def _GetOutputDir(self
):
1637 return self
.Platform
.OutputDirectory
1639 ## Return the directory to store all intermediate and final files built
1640 def _GetBuildDir(self
):
1641 if self
._BuildDir
== None:
1642 if os
.path
.isabs(self
.OutputDir
):
1643 self
._BuildDir
= path
.join(
1644 path
.abspath(self
.OutputDir
),
1645 self
.BuildTarget
+ "_" + self
.ToolChain
,
1648 self
._BuildDir
= path
.join(
1651 self
.BuildTarget
+ "_" + self
.ToolChain
,
1653 return self
._BuildDir
1655 ## Return directory of platform makefile
1657 # @retval string Makefile directory
1659 def _GetMakeFileDir(self
):
1660 if self
._MakeFileDir
== None:
1661 self
._MakeFileDir
= path
.join(self
.BuildDir
, self
.Arch
)
1662 return self
._MakeFileDir
1664 ## Return build command string
1666 # @retval string Build command string
1668 def _GetBuildCommand(self
):
1669 if self
._BuildCommand
== None:
1670 self
._BuildCommand
= []
1671 if "MAKE" in self
.ToolDefinition
and "PATH" in self
.ToolDefinition
["MAKE"]:
1672 self
._BuildCommand
+= SplitOption(self
.ToolDefinition
["MAKE"]["PATH"])
1673 if "FLAGS" in self
.ToolDefinition
["MAKE"]:
1674 NewOption
= self
.ToolDefinition
["MAKE"]["FLAGS"].strip()
1676 self
._BuildCommand
+= SplitOption(NewOption
)
1677 return self
._BuildCommand
1679 ## Get tool chain definition
1681 # Get each tool defition for given tool chain from tools_def.txt and platform
1683 def _GetToolDefinition(self
):
1684 if self
._ToolDefinitions
== None:
1685 ToolDefinition
= self
.Workspace
.ToolDef
.ToolsDefTxtDictionary
1686 if TAB_TOD_DEFINES_COMMAND_TYPE
not in self
.Workspace
.ToolDef
.ToolsDefTxtDatabase
:
1687 EdkLogger
.error('build', RESOURCE_NOT_AVAILABLE
, "No tools found in configuration",
1688 ExtraData
="[%s]" % self
.MetaFile
)
1689 self
._ToolDefinitions
= {}
1691 for Def
in ToolDefinition
:
1692 Target
, Tag
, Arch
, Tool
, Attr
= Def
.split("_")
1693 if Target
!= self
.BuildTarget
or Tag
!= self
.ToolChain
or Arch
!= self
.Arch
:
1696 Value
= ToolDefinition
[Def
]
1697 # don't record the DLL
1699 DllPathList
.add(Value
)
1702 if Tool
not in self
._ToolDefinitions
:
1703 self
._ToolDefinitions
[Tool
] = {}
1704 self
._ToolDefinitions
[Tool
][Attr
] = Value
1708 if GlobalData
.gOptions
.SilentMode
and "MAKE" in self
._ToolDefinitions
:
1709 if "FLAGS" not in self
._ToolDefinitions
["MAKE"]:
1710 self
._ToolDefinitions
["MAKE"]["FLAGS"] = ""
1711 self
._ToolDefinitions
["MAKE"]["FLAGS"] += " -s"
1713 for Tool
in self
._ToolDefinitions
:
1714 for Attr
in self
._ToolDefinitions
[Tool
]:
1715 Value
= self
._ToolDefinitions
[Tool
][Attr
]
1716 if Tool
in self
.BuildOption
and Attr
in self
.BuildOption
[Tool
]:
1717 # check if override is indicated
1718 if self
.BuildOption
[Tool
][Attr
].startswith('='):
1719 Value
= self
.BuildOption
[Tool
][Attr
][1:]
1721 Value
+= " " + self
.BuildOption
[Tool
][Attr
]
1724 # Don't put MAKE definition in the file
1728 ToolsDef
+= "%s = %s\n" % (Tool
, Value
)
1730 # Don't put MAKE definition in the file
1735 ToolsDef
+= "%s_%s = %s\n" % (Tool
, Attr
, Value
)
1738 SaveFileOnChange(self
.ToolDefinitionFile
, ToolsDef
)
1739 for DllPath
in DllPathList
:
1740 os
.environ
["PATH"] = DllPath
+ os
.pathsep
+ os
.environ
["PATH"]
1741 os
.environ
["MAKE_FLAGS"] = MakeFlags
1743 return self
._ToolDefinitions
1745 ## Return the paths of tools
1746 def _GetToolDefFile(self
):
1747 if self
._ToolDefFile
== None:
1748 self
._ToolDefFile
= os
.path
.join(self
.MakeFileDir
, "TOOLS_DEF." + self
.Arch
)
1749 return self
._ToolDefFile
1751 ## Retrieve the toolchain family of given toolchain tag. Default to 'MSFT'.
1752 def _GetToolChainFamily(self
):
1753 if self
._ToolChainFamily
== None:
1754 ToolDefinition
= self
.Workspace
.ToolDef
.ToolsDefTxtDatabase
1755 if TAB_TOD_DEFINES_FAMILY
not in ToolDefinition \
1756 or self
.ToolChain
not in ToolDefinition
[TAB_TOD_DEFINES_FAMILY
] \
1757 or not ToolDefinition
[TAB_TOD_DEFINES_FAMILY
][self
.ToolChain
]:
1758 EdkLogger
.verbose("No tool chain family found in configuration for %s. Default to MSFT." \
1760 self
._ToolChainFamily
= "MSFT"
1762 self
._ToolChainFamily
= ToolDefinition
[TAB_TOD_DEFINES_FAMILY
][self
.ToolChain
]
1763 return self
._ToolChainFamily
1765 def _GetBuildRuleFamily(self
):
1766 if self
._BuildRuleFamily
== None:
1767 ToolDefinition
= self
.Workspace
.ToolDef
.ToolsDefTxtDatabase
1768 if TAB_TOD_DEFINES_BUILDRULEFAMILY
not in ToolDefinition \
1769 or self
.ToolChain
not in ToolDefinition
[TAB_TOD_DEFINES_BUILDRULEFAMILY
] \
1770 or not ToolDefinition
[TAB_TOD_DEFINES_BUILDRULEFAMILY
][self
.ToolChain
]:
1771 EdkLogger
.verbose("No tool chain family found in configuration for %s. Default to MSFT." \
1773 self
._BuildRuleFamily
= "MSFT"
1775 self
._BuildRuleFamily
= ToolDefinition
[TAB_TOD_DEFINES_BUILDRULEFAMILY
][self
.ToolChain
]
1776 return self
._BuildRuleFamily
1778 ## Return the build options specific for all modules in this platform
1779 def _GetBuildOptions(self
):
1780 if self
._BuildOption
== None:
1781 self
._BuildOption
= self
._ExpandBuildOption
(self
.Platform
.BuildOptions
)
1782 return self
._BuildOption
1784 ## Return the build options specific for EDK modules in this platform
1785 def _GetEdkBuildOptions(self
):
1786 if self
._EdkBuildOption
== None:
1787 self
._EdkBuildOption
= self
._ExpandBuildOption
(self
.Platform
.BuildOptions
, EDK_NAME
)
1788 return self
._EdkBuildOption
1790 ## Return the build options specific for EDKII modules in this platform
1791 def _GetEdkIIBuildOptions(self
):
1792 if self
._EdkIIBuildOption
== None:
1793 self
._EdkIIBuildOption
= self
._ExpandBuildOption
(self
.Platform
.BuildOptions
, EDKII_NAME
)
1794 return self
._EdkIIBuildOption
1796 ## Parse build_rule.txt in Conf Directory.
1798 # @retval BuildRule object
1800 def _GetBuildRule(self
):
1801 if self
._BuildRule
== None:
1802 BuildRuleFile
= None
1803 if TAB_TAT_DEFINES_BUILD_RULE_CONF
in self
.Workspace
.TargetTxt
.TargetTxtDictionary
:
1804 BuildRuleFile
= self
.Workspace
.TargetTxt
.TargetTxtDictionary
[TAB_TAT_DEFINES_BUILD_RULE_CONF
]
1805 if BuildRuleFile
in [None, '']:
1806 BuildRuleFile
= gDefaultBuildRuleFile
1807 self
._BuildRule
= BuildRule(BuildRuleFile
)
1808 if self
._BuildRule
._FileVersion
== "":
1809 self
._BuildRule
._FileVersion
= AutoGenReqBuildRuleVerNum
1811 if self
._BuildRule
._FileVersion
< AutoGenReqBuildRuleVerNum
:
1812 # If Build Rule's version is less than the version number required by the tools, halting the build.
1813 EdkLogger
.error("build", AUTOGEN_ERROR
,
1814 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])"\
1815 % (self
._BuildRule
._FileVersion
, AutoGenReqBuildRuleVerNum
))
1817 return self
._BuildRule
1819 ## Summarize the packages used by modules in this platform
1820 def _GetPackageList(self
):
1821 if self
._PackageList
== None:
1822 self
._PackageList
= set()
1823 for La
in self
.LibraryAutoGenList
:
1824 self
._PackageList
.update(La
.DependentPackageList
)
1825 for Ma
in self
.ModuleAutoGenList
:
1826 self
._PackageList
.update(Ma
.DependentPackageList
)
1827 #Collect package set information from INF of FDF
1829 for ModuleFile
in self
._AsBuildModuleList
:
1830 if ModuleFile
in self
.Platform
.Modules
:
1832 ModuleData
= self
.BuildDatabase
[ModuleFile
, self
.Arch
, self
.BuildTarget
, self
.ToolChain
]
1833 PkgSet
.update(ModuleData
.Packages
)
1834 self
._PackageList
= list(self
._PackageList
) + list (PkgSet
)
1835 return self
._PackageList
1837 def _GetNonDynamicPcdDict(self
):
1838 if self
._NonDynamicPcdDict
:
1839 return self
._NonDynamicPcdDict
1840 for Pcd
in self
.NonDynamicPcdList
:
1841 self
._NonDynamicPcdDict
[(Pcd
.TokenCName
,Pcd
.TokenSpaceGuidCName
)] = Pcd
1842 return self
._NonDynamicPcdDict
1844 ## Get list of non-dynamic PCDs
1845 def _GetNonDynamicPcdList(self
):
1846 if self
._NonDynamicPcdList
== None:
1847 self
.CollectPlatformDynamicPcds()
1848 return self
._NonDynamicPcdList
1850 ## Get list of dynamic PCDs
1851 def _GetDynamicPcdList(self
):
1852 if self
._DynamicPcdList
== None:
1853 self
.CollectPlatformDynamicPcds()
1854 return self
._DynamicPcdList
1856 ## Generate Token Number for all PCD
1857 def _GetPcdTokenNumbers(self
):
1858 if self
._PcdTokenNumber
== None:
1859 self
._PcdTokenNumber
= sdict()
1862 # Make the Dynamic and DynamicEx PCD use within different TokenNumber area.
1866 # TokenNumber 0 ~ 10
1868 # TokeNumber 11 ~ 20
1870 for Pcd
in self
.DynamicPcdList
:
1871 if Pcd
.Phase
== "PEI":
1872 if Pcd
.Type
in ["Dynamic", "DynamicDefault", "DynamicVpd", "DynamicHii"]:
1873 EdkLogger
.debug(EdkLogger
.DEBUG_5
, "%s %s (%s) -> %d" % (Pcd
.TokenCName
, Pcd
.TokenSpaceGuidCName
, Pcd
.Phase
, TokenNumber
))
1874 self
._PcdTokenNumber
[Pcd
.TokenCName
, Pcd
.TokenSpaceGuidCName
] = TokenNumber
1877 for Pcd
in self
.DynamicPcdList
:
1878 if Pcd
.Phase
== "PEI":
1879 if Pcd
.Type
in ["DynamicEx", "DynamicExDefault", "DynamicExVpd", "DynamicExHii"]:
1880 EdkLogger
.debug(EdkLogger
.DEBUG_5
, "%s %s (%s) -> %d" % (Pcd
.TokenCName
, Pcd
.TokenSpaceGuidCName
, Pcd
.Phase
, TokenNumber
))
1881 self
._PcdTokenNumber
[Pcd
.TokenCName
, Pcd
.TokenSpaceGuidCName
] = TokenNumber
1884 for Pcd
in self
.DynamicPcdList
:
1885 if Pcd
.Phase
== "DXE":
1886 if Pcd
.Type
in ["Dynamic", "DynamicDefault", "DynamicVpd", "DynamicHii"]:
1887 EdkLogger
.debug(EdkLogger
.DEBUG_5
, "%s %s (%s) -> %d" % (Pcd
.TokenCName
, Pcd
.TokenSpaceGuidCName
, Pcd
.Phase
, TokenNumber
))
1888 self
._PcdTokenNumber
[Pcd
.TokenCName
, Pcd
.TokenSpaceGuidCName
] = TokenNumber
1891 for Pcd
in self
.DynamicPcdList
:
1892 if Pcd
.Phase
== "DXE":
1893 if Pcd
.Type
in ["DynamicEx", "DynamicExDefault", "DynamicExVpd", "DynamicExHii"]:
1894 EdkLogger
.debug(EdkLogger
.DEBUG_5
, "%s %s (%s) -> %d" % (Pcd
.TokenCName
, Pcd
.TokenSpaceGuidCName
, Pcd
.Phase
, TokenNumber
))
1895 self
._PcdTokenNumber
[Pcd
.TokenCName
, Pcd
.TokenSpaceGuidCName
] = TokenNumber
1898 for Pcd
in self
.NonDynamicPcdList
:
1899 self
._PcdTokenNumber
[Pcd
.TokenCName
, Pcd
.TokenSpaceGuidCName
] = TokenNumber
1901 return self
._PcdTokenNumber
1903 ## Summarize ModuleAutoGen objects of all modules/libraries to be built for this platform
1904 def _GetAutoGenObjectList(self
):
1905 self
._ModuleAutoGenList
= []
1906 self
._LibraryAutoGenList
= []
1907 for ModuleFile
in self
.Platform
.Modules
:
1916 if Ma
not in self
._ModuleAutoGenList
:
1917 self
._ModuleAutoGenList
.append(Ma
)
1918 for La
in Ma
.LibraryAutoGenList
:
1919 if La
not in self
._LibraryAutoGenList
:
1920 self
._LibraryAutoGenList
.append(La
)
1921 if Ma
not in La
._ReferenceModules
:
1922 La
._ReferenceModules
.append(Ma
)
1924 ## Summarize ModuleAutoGen objects of all modules to be built for this platform
1925 def _GetModuleAutoGenList(self
):
1926 if self
._ModuleAutoGenList
== None:
1927 self
._GetAutoGenObjectList
()
1928 return self
._ModuleAutoGenList
1930 ## Summarize ModuleAutoGen objects of all libraries to be built for this platform
1931 def _GetLibraryAutoGenList(self
):
1932 if self
._LibraryAutoGenList
== None:
1933 self
._GetAutoGenObjectList
()
1934 return self
._LibraryAutoGenList
1936 ## Test if a module is supported by the platform
1938 # An error will be raised directly if the module or its arch is not supported
1939 # by the platform or current configuration
1941 def ValidModule(self
, Module
):
1942 return Module
in self
.Platform
.Modules
or Module
in self
.Platform
.LibraryInstances \
1943 or Module
in self
._AsBuildModuleList
1945 ## Resolve the library classes in a module to library instances
1947 # This method will not only resolve library classes but also sort the library
1948 # instances according to the dependency-ship.
1950 # @param Module The module from which the library classes will be resolved
1952 # @retval library_list List of library instances sorted
1954 def ApplyLibraryInstance(self
, Module
):
1955 # Cover the case that the binary INF file is list in the FDF file but not DSC file, return empty list directly
1956 if str(Module
) not in self
.Platform
.Modules
:
1959 ModuleType
= Module
.ModuleType
1961 # for overridding library instances with module specific setting
1962 PlatformModule
= self
.Platform
.Modules
[str(Module
)]
1964 # add forced library instances (specified under LibraryClasses sections)
1966 # If a module has a MODULE_TYPE of USER_DEFINED,
1967 # do not link in NULL library class instances from the global [LibraryClasses.*] sections.
1969 if Module
.ModuleType
!= SUP_MODULE_USER_DEFINED
:
1970 for LibraryClass
in self
.Platform
.LibraryClasses
.GetKeys():
1971 if LibraryClass
.startswith("NULL") and self
.Platform
.LibraryClasses
[LibraryClass
, Module
.ModuleType
]:
1972 Module
.LibraryClasses
[LibraryClass
] = self
.Platform
.LibraryClasses
[LibraryClass
, Module
.ModuleType
]
1974 # add forced library instances (specified in module overrides)
1975 for LibraryClass
in PlatformModule
.LibraryClasses
:
1976 if LibraryClass
.startswith("NULL"):
1977 Module
.LibraryClasses
[LibraryClass
] = PlatformModule
.LibraryClasses
[LibraryClass
]
1980 LibraryConsumerList
= [Module
]
1982 ConsumedByList
= sdict()
1983 LibraryInstance
= sdict()
1985 EdkLogger
.verbose("")
1986 EdkLogger
.verbose("Library instances of module [%s] [%s]:" % (str(Module
), self
.Arch
))
1987 while len(LibraryConsumerList
) > 0:
1988 M
= LibraryConsumerList
.pop()
1989 for LibraryClassName
in M
.LibraryClasses
:
1990 if LibraryClassName
not in LibraryInstance
:
1991 # override library instance for this module
1992 if LibraryClassName
in PlatformModule
.LibraryClasses
:
1993 LibraryPath
= PlatformModule
.LibraryClasses
[LibraryClassName
]
1995 LibraryPath
= self
.Platform
.LibraryClasses
[LibraryClassName
, ModuleType
]
1996 if LibraryPath
== None or LibraryPath
== "":
1997 LibraryPath
= M
.LibraryClasses
[LibraryClassName
]
1998 if LibraryPath
== None or LibraryPath
== "":
1999 EdkLogger
.error("build", RESOURCE_NOT_AVAILABLE
,
2000 "Instance of library class [%s] is not found" % LibraryClassName
,
2002 ExtraData
="in [%s] [%s]\n\tconsumed by module [%s]" % (str(M
), self
.Arch
, str(Module
)))
2004 LibraryModule
= self
.BuildDatabase
[LibraryPath
, self
.Arch
, self
.BuildTarget
, self
.ToolChain
]
2005 # for those forced library instance (NULL library), add a fake library class
2006 if LibraryClassName
.startswith("NULL"):
2007 LibraryModule
.LibraryClass
.append(LibraryClassObject(LibraryClassName
, [ModuleType
]))
2008 elif LibraryModule
.LibraryClass
== None \
2009 or len(LibraryModule
.LibraryClass
) == 0 \
2010 or (ModuleType
!= 'USER_DEFINED'
2011 and ModuleType
not in LibraryModule
.LibraryClass
[0].SupModList
):
2012 # only USER_DEFINED can link against any library instance despite of its SupModList
2013 EdkLogger
.error("build", OPTION_MISSING
,
2014 "Module type [%s] is not supported by library instance [%s]" \
2015 % (ModuleType
, LibraryPath
), File
=self
.MetaFile
,
2016 ExtraData
="consumed by [%s]" % str(Module
))
2018 LibraryInstance
[LibraryClassName
] = LibraryModule
2019 LibraryConsumerList
.append(LibraryModule
)
2020 EdkLogger
.verbose("\t" + str(LibraryClassName
) + " : " + str(LibraryModule
))
2022 LibraryModule
= LibraryInstance
[LibraryClassName
]
2024 if LibraryModule
== None:
2027 if LibraryModule
.ConstructorList
!= [] and LibraryModule
not in Constructor
:
2028 Constructor
.append(LibraryModule
)
2030 if LibraryModule
not in ConsumedByList
:
2031 ConsumedByList
[LibraryModule
] = []
2032 # don't add current module itself to consumer list
2034 if M
in ConsumedByList
[LibraryModule
]:
2036 ConsumedByList
[LibraryModule
].append(M
)
2038 # Initialize the sorted output list to the empty set
2040 SortedLibraryList
= []
2042 # Q <- Set of all nodes with no incoming edges
2044 LibraryList
= [] #LibraryInstance.values()
2046 for LibraryClassName
in LibraryInstance
:
2047 M
= LibraryInstance
[LibraryClassName
]
2048 LibraryList
.append(M
)
2049 if ConsumedByList
[M
] == []:
2053 # start the DAG algorithm
2057 while Q
== [] and EdgeRemoved
:
2059 # for each node Item with a Constructor
2060 for Item
in LibraryList
:
2061 if Item
not in Constructor
:
2063 # for each Node without a constructor with an edge e from Item to Node
2064 for Node
in ConsumedByList
[Item
]:
2065 if Node
in Constructor
:
2067 # remove edge e from the graph if Node has no constructor
2068 ConsumedByList
[Item
].remove(Node
)
2070 if ConsumedByList
[Item
] == []:
2071 # insert Item into Q
2076 # DAG is done if there's no more incoming edge for all nodes
2080 # remove node from Q
2083 SortedLibraryList
.append(Node
)
2085 # for each node Item with an edge e from Node to Item do
2086 for Item
in LibraryList
:
2087 if Node
not in ConsumedByList
[Item
]:
2089 # remove edge e from the graph
2090 ConsumedByList
[Item
].remove(Node
)
2092 if ConsumedByList
[Item
] != []:
2094 # insert Item into Q, if Item has no other incoming edges
2098 # if any remaining node Item in the graph has a constructor and an incoming edge, then the graph has a cycle
2100 for Item
in LibraryList
:
2101 if ConsumedByList
[Item
] != [] and Item
in Constructor
and len(Constructor
) > 1:
2102 ErrorMessage
= "\tconsumed by " + "\n\tconsumed by ".join([str(L
) for L
in ConsumedByList
[Item
]])
2103 EdkLogger
.error("build", BUILD_ERROR
, 'Library [%s] with constructors has a cycle' % str(Item
),
2104 ExtraData
=ErrorMessage
, File
=self
.MetaFile
)
2105 if Item
not in SortedLibraryList
:
2106 SortedLibraryList
.append(Item
)
2109 # Build the list of constructor and destructir names
2110 # The DAG Topo sort produces the destructor order, so the list of constructors must generated in the reverse order
2112 SortedLibraryList
.reverse()
2113 return SortedLibraryList
2116 ## Override PCD setting (type, value, ...)
2118 # @param ToPcd The PCD to be overrided
2119 # @param FromPcd The PCD overrideing from
2121 def _OverridePcd(self
, ToPcd
, FromPcd
, Module
=""):
2123 # in case there's PCDs coming from FDF file, which have no type given.
2124 # at this point, ToPcd.Type has the type found from dependent
2127 TokenCName
= ToPcd
.TokenCName
2128 for PcdItem
in GlobalData
.MixedPcd
:
2129 if (ToPcd
.TokenCName
, ToPcd
.TokenSpaceGuidCName
) in GlobalData
.MixedPcd
[PcdItem
]:
2130 TokenCName
= PcdItem
[0]
2133 if GlobalData
.BuildOptionPcd
:
2134 for pcd
in GlobalData
.BuildOptionPcd
:
2135 if (FromPcd
.TokenSpaceGuidCName
, FromPcd
.TokenCName
) == (pcd
[0], pcd
[1]):
2136 FromPcd
.DefaultValue
= pcd
[2]
2138 if ToPcd
.Pending
and FromPcd
.Type
not in [None, '']:
2139 ToPcd
.Type
= FromPcd
.Type
2140 elif (ToPcd
.Type
not in [None, '']) and (FromPcd
.Type
not in [None, ''])\
2141 and (ToPcd
.Type
!= FromPcd
.Type
) and (ToPcd
.Type
in FromPcd
.Type
):
2142 if ToPcd
.Type
.strip() == "DynamicEx":
2143 ToPcd
.Type
= FromPcd
.Type
2144 elif ToPcd
.Type
not in [None, ''] and FromPcd
.Type
not in [None, ''] \
2145 and ToPcd
.Type
!= FromPcd
.Type
:
2146 EdkLogger
.error("build", OPTION_CONFLICT
, "Mismatched PCD type",
2147 ExtraData
="%s.%s is defined as [%s] in module %s, but as [%s] in platform."\
2148 % (ToPcd
.TokenSpaceGuidCName
, TokenCName
,
2149 ToPcd
.Type
, Module
, FromPcd
.Type
),
2152 if FromPcd
.MaxDatumSize
not in [None, '']:
2153 ToPcd
.MaxDatumSize
= FromPcd
.MaxDatumSize
2154 if FromPcd
.DefaultValue
not in [None, '']:
2155 ToPcd
.DefaultValue
= FromPcd
.DefaultValue
2156 if FromPcd
.TokenValue
not in [None, '']:
2157 ToPcd
.TokenValue
= FromPcd
.TokenValue
2158 if FromPcd
.MaxDatumSize
not in [None, '']:
2159 ToPcd
.MaxDatumSize
= FromPcd
.MaxDatumSize
2160 if FromPcd
.DatumType
not in [None, '']:
2161 ToPcd
.DatumType
= FromPcd
.DatumType
2162 if FromPcd
.SkuInfoList
not in [None, '', []]:
2163 ToPcd
.SkuInfoList
= FromPcd
.SkuInfoList
2165 # check the validation of datum
2166 IsValid
, Cause
= CheckPcdDatum(ToPcd
.DatumType
, ToPcd
.DefaultValue
)
2168 EdkLogger
.error('build', FORMAT_INVALID
, Cause
, File
=self
.MetaFile
,
2169 ExtraData
="%s.%s" % (ToPcd
.TokenSpaceGuidCName
, TokenCName
))
2170 ToPcd
.validateranges
= FromPcd
.validateranges
2171 ToPcd
.validlists
= FromPcd
.validlists
2172 ToPcd
.expressions
= FromPcd
.expressions
2174 if ToPcd
.DatumType
== "VOID*" and ToPcd
.MaxDatumSize
in ['', None]:
2175 EdkLogger
.debug(EdkLogger
.DEBUG_9
, "No MaxDatumSize specified for PCD %s.%s" \
2176 % (ToPcd
.TokenSpaceGuidCName
, TokenCName
))
2177 Value
= ToPcd
.DefaultValue
2178 if Value
in [None, '']:
2179 ToPcd
.MaxDatumSize
= '1'
2180 elif Value
[0] == 'L':
2181 ToPcd
.MaxDatumSize
= str((len(Value
) - 2) * 2)
2182 elif Value
[0] == '{':
2183 ToPcd
.MaxDatumSize
= str(len(Value
.split(',')))
2185 ToPcd
.MaxDatumSize
= str(len(Value
) - 1)
2187 # apply default SKU for dynamic PCDS if specified one is not available
2188 if (ToPcd
.Type
in PCD_DYNAMIC_TYPE_LIST
or ToPcd
.Type
in PCD_DYNAMIC_EX_TYPE_LIST
) \
2189 and ToPcd
.SkuInfoList
in [None, {}, '']:
2190 if self
.Platform
.SkuName
in self
.Platform
.SkuIds
:
2191 SkuName
= self
.Platform
.SkuName
2194 ToPcd
.SkuInfoList
= {
2195 SkuName
: SkuInfoClass(SkuName
, self
.Platform
.SkuIds
[SkuName
], '', '', '', '', '', ToPcd
.DefaultValue
)
2198 ## Apply PCD setting defined platform to a module
2200 # @param Module The module from which the PCD setting will be overrided
2202 # @retval PCD_list The list PCDs with settings from platform
2204 def ApplyPcdSetting(self
, Module
, Pcds
):
2205 # for each PCD in module
2206 for Name
, Guid
in Pcds
:
2207 PcdInModule
= Pcds
[Name
, Guid
]
2208 # find out the PCD setting in platform
2209 if (Name
, Guid
) in self
.Platform
.Pcds
:
2210 PcdInPlatform
= self
.Platform
.Pcds
[Name
, Guid
]
2212 PcdInPlatform
= None
2213 # then override the settings if any
2214 self
._OverridePcd
(PcdInModule
, PcdInPlatform
, Module
)
2215 # resolve the VariableGuid value
2216 for SkuId
in PcdInModule
.SkuInfoList
:
2217 Sku
= PcdInModule
.SkuInfoList
[SkuId
]
2218 if Sku
.VariableGuid
== '': continue
2219 Sku
.VariableGuidValue
= GuidValue(Sku
.VariableGuid
, self
.PackageList
, self
.MetaFile
.Path
)
2220 if Sku
.VariableGuidValue
== None:
2221 PackageList
= "\n\t".join([str(P
) for P
in self
.PackageList
])
2224 RESOURCE_NOT_AVAILABLE
,
2225 "Value of GUID [%s] is not found in" % Sku
.VariableGuid
,
2226 ExtraData
=PackageList
+ "\n\t(used with %s.%s from module %s)" \
2227 % (Guid
, Name
, str(Module
)),
2231 # override PCD settings with module specific setting
2232 if Module
in self
.Platform
.Modules
:
2233 PlatformModule
= self
.Platform
.Modules
[str(Module
)]
2234 for Key
in PlatformModule
.Pcds
:
2236 self
._OverridePcd
(Pcds
[Key
], PlatformModule
.Pcds
[Key
], Module
)
2237 return Pcds
.values()
2239 ## Resolve library names to library modules
2241 # (for Edk.x modules)
2243 # @param Module The module from which the library names will be resolved
2245 # @retval library_list The list of library modules
2247 def ResolveLibraryReference(self
, Module
):
2248 EdkLogger
.verbose("")
2249 EdkLogger
.verbose("Library instances of module [%s] [%s]:" % (str(Module
), self
.Arch
))
2250 LibraryConsumerList
= [Module
]
2252 # "CompilerStub" is a must for Edk modules
2253 if Module
.Libraries
:
2254 Module
.Libraries
.append("CompilerStub")
2256 while len(LibraryConsumerList
) > 0:
2257 M
= LibraryConsumerList
.pop()
2258 for LibraryName
in M
.Libraries
:
2259 Library
= self
.Platform
.LibraryClasses
[LibraryName
, ':dummy:']
2261 for Key
in self
.Platform
.LibraryClasses
.data
.keys():
2262 if LibraryName
.upper() == Key
.upper():
2263 Library
= self
.Platform
.LibraryClasses
[Key
, ':dummy:']
2266 EdkLogger
.warn("build", "Library [%s] is not found" % LibraryName
, File
=str(M
),
2267 ExtraData
="\t%s [%s]" % (str(Module
), self
.Arch
))
2270 if Library
not in LibraryList
:
2271 LibraryList
.append(Library
)
2272 LibraryConsumerList
.append(Library
)
2273 EdkLogger
.verbose("\t" + LibraryName
+ " : " + str(Library
) + ' ' + str(type(Library
)))
2276 ## Calculate the priority value of the build option
2278 # @param Key Build option definition contain: TARGET_TOOLCHAIN_ARCH_COMMANDTYPE_ATTRIBUTE
2280 # @retval Value Priority value based on the priority list.
2282 def CalculatePriorityValue(self
, Key
):
2283 Target
, ToolChain
, Arch
, CommandType
, Attr
= Key
.split('_')
2284 PriorityValue
= 0x11111
2286 PriorityValue
&= 0x01111
2287 if ToolChain
== "*":
2288 PriorityValue
&= 0x10111
2290 PriorityValue
&= 0x11011
2291 if CommandType
== "*":
2292 PriorityValue
&= 0x11101
2294 PriorityValue
&= 0x11110
2296 return self
.PrioList
["0x%0.5x" % PriorityValue
]
2299 ## Expand * in build option key
2301 # @param Options Options to be expanded
2303 # @retval options Options expanded
2305 def _ExpandBuildOption(self
, Options
, ModuleStyle
=None):
2312 # Construct a list contain the build options which need override.
2316 # Key[0] -- tool family
2317 # Key[1] -- TARGET_TOOLCHAIN_ARCH_COMMANDTYPE_ATTRIBUTE
2319 if (Key
[0] == self
.BuildRuleFamily
and
2320 (ModuleStyle
== None or len(Key
) < 3 or (len(Key
) > 2 and Key
[2] == ModuleStyle
))):
2321 Target
, ToolChain
, Arch
, CommandType
, Attr
= Key
[1].split('_')
2322 if Target
== self
.BuildTarget
or Target
== "*":
2323 if ToolChain
== self
.ToolChain
or ToolChain
== "*":
2324 if Arch
== self
.Arch
or Arch
== "*":
2325 if Options
[Key
].startswith("="):
2326 if OverrideList
.get(Key
[1]) != None:
2327 OverrideList
.pop(Key
[1])
2328 OverrideList
[Key
[1]] = Options
[Key
]
2331 # Use the highest priority value.
2333 if (len(OverrideList
) >= 2):
2334 KeyList
= OverrideList
.keys()
2335 for Index
in range(len(KeyList
)):
2336 NowKey
= KeyList
[Index
]
2337 Target1
, ToolChain1
, Arch1
, CommandType1
, Attr1
= NowKey
.split("_")
2338 for Index1
in range(len(KeyList
) - Index
- 1):
2339 NextKey
= KeyList
[Index1
+ Index
+ 1]
2341 # Compare two Key, if one is included by another, choose the higher priority one
2343 Target2
, ToolChain2
, Arch2
, CommandType2
, Attr2
= NextKey
.split("_")
2344 if Target1
== Target2
or Target1
== "*" or Target2
== "*":
2345 if ToolChain1
== ToolChain2
or ToolChain1
== "*" or ToolChain2
== "*":
2346 if Arch1
== Arch2
or Arch1
== "*" or Arch2
== "*":
2347 if CommandType1
== CommandType2
or CommandType1
== "*" or CommandType2
== "*":
2348 if Attr1
== Attr2
or Attr1
== "*" or Attr2
== "*":
2349 if self
.CalculatePriorityValue(NowKey
) > self
.CalculatePriorityValue(NextKey
):
2350 if Options
.get((self
.BuildRuleFamily
, NextKey
)) != None:
2351 Options
.pop((self
.BuildRuleFamily
, NextKey
))
2353 if Options
.get((self
.BuildRuleFamily
, NowKey
)) != None:
2354 Options
.pop((self
.BuildRuleFamily
, NowKey
))
2357 if ModuleStyle
!= None and len (Key
) > 2:
2358 # Check Module style is EDK or EDKII.
2359 # Only append build option for the matched style module.
2360 if ModuleStyle
== EDK_NAME
and Key
[2] != EDK_NAME
:
2362 elif ModuleStyle
== EDKII_NAME
and Key
[2] != EDKII_NAME
:
2365 Target
, Tag
, Arch
, Tool
, Attr
= Key
[1].split("_")
2366 # if tool chain family doesn't match, skip it
2367 if Tool
in self
.ToolDefinition
and Family
!= "":
2368 FamilyIsNull
= False
2369 if self
.ToolDefinition
[Tool
].get(TAB_TOD_DEFINES_BUILDRULEFAMILY
, "") != "":
2370 if Family
!= self
.ToolDefinition
[Tool
][TAB_TOD_DEFINES_BUILDRULEFAMILY
]:
2372 elif Family
!= self
.ToolDefinition
[Tool
][TAB_TOD_DEFINES_FAMILY
]:
2375 # expand any wildcard
2376 if Target
== "*" or Target
== self
.BuildTarget
:
2377 if Tag
== "*" or Tag
== self
.ToolChain
:
2378 if Arch
== "*" or Arch
== self
.Arch
:
2379 if Tool
not in BuildOptions
:
2380 BuildOptions
[Tool
] = {}
2381 if Attr
!= "FLAGS" or Attr
not in BuildOptions
[Tool
] or Options
[Key
].startswith('='):
2382 BuildOptions
[Tool
][Attr
] = Options
[Key
]
2384 # append options for the same tool
2385 BuildOptions
[Tool
][Attr
] += " " + Options
[Key
]
2386 # Build Option Family has been checked, which need't to be checked again for family.
2387 if FamilyMatch
or FamilyIsNull
:
2391 if ModuleStyle
!= None and len (Key
) > 2:
2392 # Check Module style is EDK or EDKII.
2393 # Only append build option for the matched style module.
2394 if ModuleStyle
== EDK_NAME
and Key
[2] != EDK_NAME
:
2396 elif ModuleStyle
== EDKII_NAME
and Key
[2] != EDKII_NAME
:
2399 Target
, Tag
, Arch
, Tool
, Attr
= Key
[1].split("_")
2400 # if tool chain family doesn't match, skip it
2401 if Tool
not in self
.ToolDefinition
or Family
== "":
2403 # option has been added before
2404 if Family
!= self
.ToolDefinition
[Tool
][TAB_TOD_DEFINES_FAMILY
]:
2407 # expand any wildcard
2408 if Target
== "*" or Target
== self
.BuildTarget
:
2409 if Tag
== "*" or Tag
== self
.ToolChain
:
2410 if Arch
== "*" or Arch
== self
.Arch
:
2411 if Tool
not in BuildOptions
:
2412 BuildOptions
[Tool
] = {}
2413 if Attr
!= "FLAGS" or Attr
not in BuildOptions
[Tool
] or Options
[Key
].startswith('='):
2414 BuildOptions
[Tool
][Attr
] = Options
[Key
]
2416 # append options for the same tool
2417 BuildOptions
[Tool
][Attr
] += " " + Options
[Key
]
2420 ## Append build options in platform to a module
2422 # @param Module The module to which the build options will be appened
2424 # @retval options The options appended with build options in platform
2426 def ApplyBuildOption(self
, Module
):
2427 # Get the different options for the different style module
2428 if Module
.AutoGenVersion
< 0x00010005:
2429 PlatformOptions
= self
.EdkBuildOption
2430 ModuleTypeOptions
= self
.Platform
.GetBuildOptionsByModuleType(EDK_NAME
, Module
.ModuleType
)
2432 PlatformOptions
= self
.EdkIIBuildOption
2433 ModuleTypeOptions
= self
.Platform
.GetBuildOptionsByModuleType(EDKII_NAME
, Module
.ModuleType
)
2434 ModuleTypeOptions
= self
._ExpandBuildOption
(ModuleTypeOptions
)
2435 ModuleOptions
= self
._ExpandBuildOption
(Module
.BuildOptions
)
2436 if Module
in self
.Platform
.Modules
:
2437 PlatformModule
= self
.Platform
.Modules
[str(Module
)]
2438 PlatformModuleOptions
= self
._ExpandBuildOption
(PlatformModule
.BuildOptions
)
2440 PlatformModuleOptions
= {}
2442 BuildRuleOrder
= None
2443 for Options
in [self
.ToolDefinition
, ModuleOptions
, PlatformOptions
, ModuleTypeOptions
, PlatformModuleOptions
]:
2444 for Tool
in Options
:
2445 for Attr
in Options
[Tool
]:
2446 if Attr
== TAB_TOD_DEFINES_BUILDRULEORDER
:
2447 BuildRuleOrder
= Options
[Tool
][Attr
]
2449 AllTools
= set(ModuleOptions
.keys() + PlatformOptions
.keys() +
2450 PlatformModuleOptions
.keys() + ModuleTypeOptions
.keys() +
2451 self
.ToolDefinition
.keys())
2453 for Tool
in AllTools
:
2454 if Tool
not in BuildOptions
:
2455 BuildOptions
[Tool
] = {}
2457 for Options
in [self
.ToolDefinition
, ModuleOptions
, PlatformOptions
, ModuleTypeOptions
, PlatformModuleOptions
]:
2458 if Tool
not in Options
:
2460 for Attr
in Options
[Tool
]:
2461 Value
= Options
[Tool
][Attr
]
2463 # Do not generate it in Makefile
2465 if Attr
== TAB_TOD_DEFINES_BUILDRULEORDER
:
2467 if Attr
not in BuildOptions
[Tool
]:
2468 BuildOptions
[Tool
][Attr
] = ""
2469 # check if override is indicated
2470 if Value
.startswith('='):
2471 ToolPath
= Value
[1:]
2472 ToolPath
= mws
.handleWsMacro(ToolPath
)
2473 BuildOptions
[Tool
][Attr
] = ToolPath
2475 Value
= mws
.handleWsMacro(Value
)
2476 BuildOptions
[Tool
][Attr
] += " " + Value
2477 if Module
.AutoGenVersion
< 0x00010005 and self
.Workspace
.UniFlag
!= None:
2479 # Override UNI flag only for EDK module.
2481 if 'BUILD' not in BuildOptions
:
2482 BuildOptions
['BUILD'] = {}
2483 BuildOptions
['BUILD']['FLAGS'] = self
.Workspace
.UniFlag
2484 return BuildOptions
, BuildRuleOrder
2486 Platform
= property(_GetPlatform
)
2487 Name
= property(_GetName
)
2488 Guid
= property(_GetGuid
)
2489 Version
= property(_GetVersion
)
2491 OutputDir
= property(_GetOutputDir
)
2492 BuildDir
= property(_GetBuildDir
)
2493 MakeFileDir
= property(_GetMakeFileDir
)
2494 FdfFile
= property(_GetFdfFile
)
2496 PcdTokenNumber
= property(_GetPcdTokenNumbers
) # (TokenCName, TokenSpaceGuidCName) : GeneratedTokenNumber
2497 DynamicPcdList
= property(_GetDynamicPcdList
) # [(TokenCName1, TokenSpaceGuidCName1), (TokenCName2, TokenSpaceGuidCName2), ...]
2498 NonDynamicPcdList
= property(_GetNonDynamicPcdList
) # [(TokenCName1, TokenSpaceGuidCName1), (TokenCName2, TokenSpaceGuidCName2), ...]
2499 NonDynamicPcdDict
= property(_GetNonDynamicPcdDict
)
2500 PackageList
= property(_GetPackageList
)
2502 ToolDefinition
= property(_GetToolDefinition
) # toolcode : tool path
2503 ToolDefinitionFile
= property(_GetToolDefFile
) # toolcode : lib path
2504 ToolChainFamily
= property(_GetToolChainFamily
)
2505 BuildRuleFamily
= property(_GetBuildRuleFamily
)
2506 BuildOption
= property(_GetBuildOptions
) # toolcode : option
2507 EdkBuildOption
= property(_GetEdkBuildOptions
) # edktoolcode : option
2508 EdkIIBuildOption
= property(_GetEdkIIBuildOptions
) # edkiitoolcode : option
2510 BuildCommand
= property(_GetBuildCommand
)
2511 BuildRule
= property(_GetBuildRule
)
2512 ModuleAutoGenList
= property(_GetModuleAutoGenList
)
2513 LibraryAutoGenList
= property(_GetLibraryAutoGenList
)
2514 GenFdsCommand
= property(_GenFdsCommand
)
2516 ## ModuleAutoGen class
2518 # This class encapsules the AutoGen behaviors for the build tools. In addition to
2519 # the generation of AutoGen.h and AutoGen.c, it will generate *.depex file according
2520 # to the [depex] section in module's inf file.
2522 class ModuleAutoGen(AutoGen
):
2523 ## The real constructor of ModuleAutoGen
2525 # This method is not supposed to be called by users of ModuleAutoGen. It's
2526 # only used by factory method __new__() to do real initialization work for an
2527 # object of ModuleAutoGen
2529 # @param Workspace EdkIIWorkspaceBuild object
2530 # @param ModuleFile The path of module file
2531 # @param Target Build target (DEBUG, RELEASE)
2532 # @param Toolchain Name of tool chain
2533 # @param Arch The arch the module supports
2534 # @param PlatformFile Platform meta-file
2536 def _Init(self
, Workspace
, ModuleFile
, Target
, Toolchain
, Arch
, PlatformFile
):
2537 EdkLogger
.debug(EdkLogger
.DEBUG_9
, "AutoGen module [%s] [%s]" % (ModuleFile
, Arch
))
2538 GlobalData
.gProcessingFile
= "%s [%s, %s, %s]" % (ModuleFile
, Arch
, Toolchain
, Target
)
2540 self
.Workspace
= Workspace
2541 self
.WorkspaceDir
= Workspace
.WorkspaceDir
2543 self
.MetaFile
= ModuleFile
2544 self
.PlatformInfo
= PlatformAutoGen(Workspace
, PlatformFile
, Target
, Toolchain
, Arch
)
2545 # check if this module is employed by active platform
2546 if not self
.PlatformInfo
.ValidModule(self
.MetaFile
):
2547 EdkLogger
.verbose("Module [%s] for [%s] is not employed by active platform\n" \
2548 % (self
.MetaFile
, Arch
))
2551 self
.SourceDir
= self
.MetaFile
.SubDir
2552 self
.SourceDir
= mws
.relpath(self
.SourceDir
, self
.WorkspaceDir
)
2554 self
.SourceOverrideDir
= None
2555 # use overrided path defined in DSC file
2556 if self
.MetaFile
.Key
in GlobalData
.gOverrideDir
:
2557 self
.SourceOverrideDir
= GlobalData
.gOverrideDir
[self
.MetaFile
.Key
]
2559 self
.ToolChain
= Toolchain
2560 self
.BuildTarget
= Target
2562 self
.ToolChainFamily
= self
.PlatformInfo
.ToolChainFamily
2563 self
.BuildRuleFamily
= self
.PlatformInfo
.BuildRuleFamily
2565 self
.IsMakeFileCreated
= False
2566 self
.IsCodeFileCreated
= False
2567 self
.IsAsBuiltInfCreated
= False
2568 self
.DepexGenerated
= False
2570 self
.BuildDatabase
= self
.Workspace
.BuildDatabase
2571 self
.BuildRuleOrder
= None
2576 self
._Version
= None
2577 self
._ModuleType
= None
2578 self
._ComponentType
= None
2579 self
._PcdIsDriver
= None
2580 self
._AutoGenVersion
= None
2581 self
._LibraryFlag
= None
2582 self
._CustomMakefile
= None
2585 self
._BuildDir
= None
2586 self
._OutputDir
= None
2587 self
._DebugDir
= None
2588 self
._MakeFileDir
= None
2590 self
._IncludePathList
= None
2591 self
._IncludePathLength
= 0
2592 self
._AutoGenFileList
= None
2593 self
._UnicodeFileList
= None
2594 self
._IdfFileList
= None
2595 self
._SourceFileList
= None
2596 self
._ObjectFileList
= None
2597 self
._BinaryFileList
= None
2599 self
._DependentPackageList
= None
2600 self
._DependentLibraryList
= None
2601 self
._LibraryAutoGenList
= None
2602 self
._DerivedPackageList
= None
2603 self
._ModulePcdList
= None
2604 self
._LibraryPcdList
= None
2605 self
._PcdComments
= sdict()
2606 self
._GuidList
= None
2607 self
._GuidsUsedByPcd
= None
2608 self
._GuidComments
= sdict()
2609 self
._ProtocolList
= None
2610 self
._ProtocolComments
= sdict()
2611 self
._PpiList
= None
2612 self
._PpiComments
= sdict()
2613 self
._DepexList
= None
2614 self
._DepexExpressionList
= None
2615 self
._BuildOption
= None
2616 self
._BuildOptionIncPathList
= None
2617 self
._BuildTargets
= None
2618 self
._IntroBuildTargetList
= None
2619 self
._FinalBuildTargetList
= None
2620 self
._FileTypes
= None
2621 self
._BuildRules
= None
2623 ## The Modules referenced to this Library
2624 # Only Library has this attribute
2625 self
._ReferenceModules
= []
2627 ## Store the FixedAtBuild Pcds
2629 self
._FixedAtBuildPcds
= []
2634 return "%s [%s]" % (self
.MetaFile
, self
.Arch
)
2636 # Get FixedAtBuild Pcds of this Module
2637 def _GetFixedAtBuildPcds(self
):
2638 if self
._FixedAtBuildPcds
:
2639 return self
._FixedAtBuildPcds
2640 for Pcd
in self
.ModulePcdList
:
2642 if not (Pcd
.Pending
== False and Pcd
.Type
== "FixedAtBuild"):
2644 elif Pcd
.Type
!= "FixedAtBuild":
2646 if Pcd
not in self
._FixedAtBuildPcds
:
2647 self
._FixedAtBuildPcds
.append(Pcd
)
2649 return self
._FixedAtBuildPcds
2651 def _GetUniqueBaseName(self
):
2652 BaseName
= self
.Name
2653 for Module
in self
.PlatformInfo
.ModuleAutoGenList
:
2654 if Module
.MetaFile
== self
.MetaFile
:
2656 if Module
.Name
== self
.Name
:
2657 if uuid
.UUID(Module
.Guid
) == uuid
.UUID(self
.Guid
):
2658 EdkLogger
.error("build", FILE_DUPLICATED
, 'Modules have same BaseName and FILE_GUID:\n'
2659 ' %s\n %s' % (Module
.MetaFile
, self
.MetaFile
))
2660 BaseName
= '%s_%s' % (self
.Name
, self
.Guid
)
2663 # Macros could be used in build_rule.txt (also Makefile)
2664 def _GetMacros(self
):
2665 if self
._Macro
== None:
2666 self
._Macro
= sdict()
2667 self
._Macro
["WORKSPACE" ] = self
.WorkspaceDir
2668 self
._Macro
["MODULE_NAME" ] = self
.Name
2669 self
._Macro
["MODULE_NAME_GUID" ] = self
._GetUniqueBaseName
()
2670 self
._Macro
["MODULE_GUID" ] = self
.Guid
2671 self
._Macro
["MODULE_VERSION" ] = self
.Version
2672 self
._Macro
["MODULE_TYPE" ] = self
.ModuleType
2673 self
._Macro
["MODULE_FILE" ] = str(self
.MetaFile
)
2674 self
._Macro
["MODULE_FILE_BASE_NAME" ] = self
.MetaFile
.BaseName
2675 self
._Macro
["MODULE_RELATIVE_DIR" ] = self
.SourceDir
2676 self
._Macro
["MODULE_DIR" ] = self
.SourceDir
2678 self
._Macro
["BASE_NAME" ] = self
.Name
2680 self
._Macro
["ARCH" ] = self
.Arch
2681 self
._Macro
["TOOLCHAIN" ] = self
.ToolChain
2682 self
._Macro
["TOOLCHAIN_TAG" ] = self
.ToolChain
2683 self
._Macro
["TOOL_CHAIN_TAG" ] = self
.ToolChain
2684 self
._Macro
["TARGET" ] = self
.BuildTarget
2686 self
._Macro
["BUILD_DIR" ] = self
.PlatformInfo
.BuildDir
2687 self
._Macro
["BIN_DIR" ] = os
.path
.join(self
.PlatformInfo
.BuildDir
, self
.Arch
)