From mboxrd@z Thu Jan 1 00:00:00 1970 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: intel.com, ip: 192.55.52.88, mailfrom: shenglei.zhang@intel.com) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by groups.io with SMTP; Thu, 20 Jun 2019 18:26:48 -0700 X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by fmsmga101.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 20 Jun 2019 18:26:48 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.63,398,1557212400"; d="scan'208";a="358723149" Received: from shenglei-dev.ccr.corp.intel.com ([10.239.158.52]) by fmsmga005.fm.intel.com with ESMTP; 20 Jun 2019 18:26:47 -0700 From: "Zhang, Shenglei" To: devel@edk2.groups.io Cc: Bob Feng , Liming Gao Subject: [edk2-platform patch 0/6] Add tools FMMT FCE and FitGen Date: Fri, 21 Jun 2019 09:26:37 +0800 Message-Id: <20190621012643.9352-1-shenglei.zhang@intel.com> X-Mailer: git-send-email 2.18.0.windows.1 Add FMMT and FCE into Platform/Intel/Tools. Add FitGen into Silicon/Intel/Tools. https://bugzilla.tianocore.org/show_bug.cgi?id=1847 https://bugzilla.tianocore.org/show_bug.cgi?id=1848 https://bugzilla.tianocore.org/show_bug.cgi?id=1849 Cc: Bob Feng Cc: Liming Gao Shenglei Zhang (6): Platform/Tools: Add a tool FMMT Platform/Tools: Add a tool BfmLib BaseTools/FCE: Add a tool FCE Platform/Tools: Add top level Makefile and GNUMakefile Silicon/Tools: Add a tool FitGen Silicon/Tools: Add top level Makefile and GNUMakefile Platform/Intel/Tools/BfmLib/BfmLib.c | 4355 +++++++++++ Platform/Intel/Tools/BfmLib/BinFileManager.c | 1024 +++ Platform/Intel/Tools/BfmLib/BinFileManager.h | 439 ++ Platform/Intel/Tools/BfmLib/GNUmakefile | 15 + Platform/Intel/Tools/BfmLib/Makefile | 17 + Platform/Intel/Tools/FCE/BinaryCreate.c | 216 + Platform/Intel/Tools/FCE/BinaryCreate.h | 157 + Platform/Intel/Tools/FCE/BinaryParse.c | 1326 ++++ Platform/Intel/Tools/FCE/BinaryParse.h | 187 + Platform/Intel/Tools/FCE/Common.c | 2183 ++++++ Platform/Intel/Tools/FCE/Common.h | 999 +++ Platform/Intel/Tools/FCE/Expression.c | 2367 ++++++ Platform/Intel/Tools/FCE/Fce.c | 6449 +++++++++++++++++ Platform/Intel/Tools/FCE/Fce.h | 447 ++ Platform/Intel/Tools/FCE/GNUmakefile | 22 + Platform/Intel/Tools/FCE/IfrParse.c | 4836 ++++++++++++ Platform/Intel/Tools/FCE/IfrParse.h | 789 ++ Platform/Intel/Tools/FCE/Makefile | 19 + .../Intel/Tools/FCE/MonotonicBasedVariable.c | 874 +++ .../Intel/Tools/FCE/MonotonicBasedVariable.h | 162 + Platform/Intel/Tools/FCE/TimeBasedVariable.c | 878 +++ Platform/Intel/Tools/FCE/TimeBasedVariable.h | 166 + Platform/Intel/Tools/FCE/Variable.c | 1091 +++ Platform/Intel/Tools/FCE/Variable.h | 154 + Platform/Intel/Tools/FCE/VariableCommon.h | 55 + .../Tools/FMMT/FirmwareModuleManagement.c | 2559 +++++++ .../Tools/FMMT/FirmwareModuleManagement.h | 479 ++ Platform/Intel/Tools/FMMT/FmmtConf.ini | 6 + Platform/Intel/Tools/FMMT/FmmtLib.c | 5051 +++++++++++++ Platform/Intel/Tools/FMMT/GNUmakefile | 16 + Platform/Intel/Tools/FMMT/Makefile | 17 + Platform/Intel/Tools/FMMT/Rebase.c | 846 +++ Platform/Intel/Tools/FMMT/Rebase.h | 31 + Platform/Intel/Tools/GNUmakefile | 30 + Platform/Intel/Tools/Makefile | 33 + Silicon/Intel/Tools/FitGen/FitGen.c | 3137 ++++++++ Silicon/Intel/Tools/FitGen/FitGen.h | 48 + Silicon/Intel/Tools/FitGen/GNUmakefile | 16 + Silicon/Intel/Tools/FitGen/Makefile | 17 + Silicon/Intel/Tools/GNUmakefile | 34 + Silicon/Intel/Tools/Makefile | 31 + 41 files changed, 41578 insertions(+) create mode 100644 Platform/Intel/Tools/BfmLib/BfmLib.c create mode 100644 Platform/Intel/Tools/BfmLib/BinFileManager.c create mode 100644 Platform/Intel/Tools/BfmLib/BinFileManager.h create mode 100644 Platform/Intel/Tools/BfmLib/GNUmakefile create mode 100644 Platform/Intel/Tools/BfmLib/Makefile create mode 100644 Platform/Intel/Tools/FCE/BinaryCreate.c create mode 100644 Platform/Intel/Tools/FCE/BinaryCreate.h create mode 100644 Platform/Intel/Tools/FCE/BinaryParse.c create mode 100644 Platform/Intel/Tools/FCE/BinaryParse.h create mode 100644 Platform/Intel/Tools/FCE/Common.c create mode 100644 Platform/Intel/Tools/FCE/Common.h create mode 100644 Platform/Intel/Tools/FCE/Expression.c create mode 100644 Platform/Intel/Tools/FCE/Fce.c create mode 100644 Platform/Intel/Tools/FCE/Fce.h create mode 100644 Platform/Intel/Tools/FCE/GNUmakefile create mode 100644 Platform/Intel/Tools/FCE/IfrParse.c create mode 100644 Platform/Intel/Tools/FCE/IfrParse.h create mode 100644 Platform/Intel/Tools/FCE/Makefile create mode 100644 Platform/Intel/Tools/FCE/MonotonicBasedVariable.c create mode 100644 Platform/Intel/Tools/FCE/MonotonicBasedVariable.h create mode 100644 Platform/Intel/Tools/FCE/TimeBasedVariable.c create mode 100644 Platform/Intel/Tools/FCE/TimeBasedVariable.h create mode 100644 Platform/Intel/Tools/FCE/Variable.c create mode 100644 Platform/Intel/Tools/FCE/Variable.h create mode 100644 Platform/Intel/Tools/FCE/VariableCommon.h create mode 100644 Platform/Intel/Tools/FMMT/FirmwareModuleManagement.c create mode 100644 Platform/Intel/Tools/FMMT/FirmwareModuleManagement.h create mode 100644 Platform/Intel/Tools/FMMT/FmmtConf.ini create mode 100644 Platform/Intel/Tools/FMMT/FmmtLib.c create mode 100644 Platform/Intel/Tools/FMMT/GNUmakefile create mode 100644 Platform/Intel/Tools/FMMT/Makefile create mode 100644 Platform/Intel/Tools/FMMT/Rebase.c create mode 100644 Platform/Intel/Tools/FMMT/Rebase.h create mode 100644 Platform/Intel/Tools/GNUmakefile create mode 100644 Platform/Intel/Tools/Makefile create mode 100644 Silicon/Intel/Tools/FitGen/FitGen.c create mode 100644 Silicon/Intel/Tools/FitGen/FitGen.h create mode 100644 Silicon/Intel/Tools/FitGen/GNUmakefile create mode 100644 Silicon/Intel/Tools/FitGen/Makefile create mode 100644 Silicon/Intel/Tools/GNUmakefile create mode 100644 Silicon/Intel/Tools/Makefile -- 2.18.0.windows.1