Skip to content

Commit

Permalink
BaseTools: Add a VPD report subsection of FLASH to the Report
Browse files Browse the repository at this point in the history
Build Spec already added a VPD report subsection of FLASH to the Report
chapter, it provide a simple way for user to determine where the VPD
region and VPD PCDs are located in the fd file.

(Sync patch r19026 from main trunk.)

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Yonghong Zhu <[email protected]>
Reviewed-by: Liming Gao <[email protected]>

git-svn-id: https://svn.code.sf.net/p/edk2/code/branches/UDK2015@19077 6f19259b-4bc3-4df7-8a09-765794883524
  • Loading branch information
Yonghong Zhu authored and vanjeff committed Dec 1, 2015
1 parent b6274a7 commit e07c30d
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions BaseTools/Source/Python/build/BuildReport.py
Original file line number Diff line number Diff line change
Expand Up @@ -1385,6 +1385,32 @@ def __init__(self, Fd, Wa):
self.BaseAddress = Fd.BaseAddress
self.Size = Fd.Size
self.FdRegionList = [FdRegionReport(FdRegion, Wa) for FdRegion in Fd.RegionList]
self.FvPath = os.path.join(Wa.BuildDir, "FV")
self.VpdFilePath = os.path.join(self.FvPath, "%s.map" % Wa.Platform.VpdToolGuid)
VpdPcdToken = 'gEfiMdeModulePkgTokenSpaceGuid'
VpdPcdName = 'PcdVpdBaseAddress'
self.VPDInfoList = []
for index, FdRegion in enumerate(Fd.RegionList):
if (VpdPcdName, VpdPcdToken) == FdRegion.PcdOffset:
self.VPDBaseAddress = self.FdRegionList[index].BaseAddress
self.VPDSize = self.FdRegionList[index].Size
break

if os.path.isfile(self.VpdFilePath):
fd = open(self.VpdFilePath, "r")
Lines = fd.readlines()
for Line in Lines:
Line = Line.strip()
if len(Line) == 0 or Line.startswith("#"):
continue
try:
PcdName, SkuId, Offset, Size, Value = Line.split("#")[0].split("|")
PcdName, SkuId, Offset, Size, Value = PcdName.strip(), SkuId.strip(), Offset.strip(), Size.strip(), Value.strip()
Offset = '0x%08X' % (int(Offset, 16) + self.VPDBaseAddress)
self.VPDInfoList.append("%s | %s | %s | %s | %s" % (PcdName, SkuId, Offset, Size, Value))
except:
EdkLogger.error("BuildReport", CODE_ERROR, "Fail to parse VPD information file %s" % self.VpdFilePath)
fd.close()

##
# Generate report for the firmware device.
Expand All @@ -1405,6 +1431,15 @@ def GenerateReport(self, File):
for FdRegionItem in self.FdRegionList:
FdRegionItem.GenerateReport(File)

if len(self.VPDInfoList) > 0:
FileWrite(File, gSubSectionStart)
FileWrite(File, "FD VPD Region")
FileWrite(File, "Base Address: 0x%X" % self.VPDBaseAddress)
FileWrite(File, "Size: 0x%X (%.0fK)" % (self.VPDSize, self.VPDSize / 1024.0))
FileWrite(File, gSubSectionSep)
for item in self.VPDInfoList:
FileWrite(File, item)
FileWrite(File, gSubSectionEnd)
FileWrite(File, gSectionEnd)


Expand Down

0 comments on commit e07c30d

Please sign in to comment.