From fb3d22793e916e4fc8439abc72c1c1a964abf7d0 Mon Sep 17 00:00:00 2001 From: Yonghong Zhu Date: Mon, 30 Nov 2015 03:36:50 +0000 Subject: [PATCH] BaseTools: Add a VPD report subsection of FLASH to the Report 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. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Yonghong Zhu Reviewed-by: Liming Gao git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@19026 6f19259b-4bc3-4df7-8a09-765794883524 --- BaseTools/Source/Python/build/BuildReport.py | 35 ++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/BaseTools/Source/Python/build/BuildReport.py b/BaseTools/Source/Python/build/BuildReport.py index bf5bb8fa17..38e55f3e07 100644 --- a/BaseTools/Source/Python/build/BuildReport.py +++ b/BaseTools/Source/Python/build/BuildReport.py @@ -1387,6 +1387,32 @@ class FdReport(object): 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. @@ -1407,6 +1433,15 @@ class FdReport(object): 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) -- 2.39.2