From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) (using TLSv1 with cipher CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id 2789F1A1E56 for ; Tue, 20 Sep 2016 23:47:42 -0700 (PDT) Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orsmga102.jf.intel.com with ESMTP; 20 Sep 2016 23:47:42 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.30,372,1470726000"; d="scan'208";a="1059859538" Received: from jyao1-mobl.ccr.corp.intel.com ([10.239.192.109]) by fmsmga002.fm.intel.com with ESMTP; 20 Sep 2016 23:47:39 -0700 From: Jiewen Yao To: edk2-devel@lists.01.org Cc: David Wei , Feng Tian , Star Zeng , Michael D Kinney , Liming Gao , Chao Zhang Date: Wed, 21 Sep 2016 14:45:21 +0800 Message-Id: <1474440326-9292-41-git-send-email-jiewen.yao@intel.com> X-Mailer: git-send-email 2.7.4.windows.1 In-Reply-To: <1474440326-9292-1-git-send-email-jiewen.yao@intel.com> References: <1474440326-9292-1-git-send-email-jiewen.yao@intel.com> Subject: [PATCH 40/45] Vlv2TbltDevicePkg/SystemBiosUpdateConfig: Add capsule config file. X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Sep 2016 06:47:42 -0000 Add SystemBiosUpdateConfig as capsule configuration file. Cc: David Wei Cc: Feng Tian Cc: Star Zeng Cc: Michael D Kinney Cc: Liming Gao Cc: Chao Zhang Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Jiewen Yao --- Vlv2TbltDevicePkg/Feature/Capsule/SystemBiosUpdateConfig/SystemBiosUpdateConfig.ini | 72 ++++++++++++++++++++ Vlv2TbltDevicePkg/Feature/Capsule/SystemBiosUpdateConfig/SystemBiosUpdateConfigGcc.ini | 72 ++++++++++++++++++++ 2 files changed, 144 insertions(+) diff --git a/Vlv2TbltDevicePkg/Feature/Capsule/SystemBiosUpdateConfig/SystemBiosUpdateConfig.ini b/Vlv2TbltDevicePkg/Feature/Capsule/SystemBiosUpdateConfig/SystemBiosUpdateConfig.ini new file mode 100644 index 0000000..61e254b --- /dev/null +++ b/Vlv2TbltDevicePkg/Feature/Capsule/SystemBiosUpdateConfig/SystemBiosUpdateConfig.ini @@ -0,0 +1,72 @@ +## @file +# +# Copyright (c) 2016, Intel Corporation. All rights reserved.
+# This program and the accompanying materials +# are licensed and made available under the terms and conditions of the BSD License +# which accompanies this distribution. The full text of the license may be found at +# http://opensource.org/licenses/bsd-license.php +# +# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, +# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. +# +## + +[Head] +NumOfUpdate = 6 +NumOfRecovery = 1 +Update0 = Vlv2FvMicrocode +Update1 = Vlv2FvBinary +Update2 = Vlv2FvMain +Update3 = Vlv2FvRecovery2 +Update4 = Vlv2FvRecovery +Update5 = Vlv2FvNvRam +Recovery0 = Vlv2FvMain + +[Vlv2FvMicrocode] +FirmwareType = 0 # BIOS +AddressType = 0 # 0 - relative address, 1 - absolute address. +BaseAddress = 0x00000000 # Base address offset on flash +Length = 0x00040000 # Length +ImageOffset = 0x00000000 # Image offset of this BIOS update image +FileGuid = AF9C9EB2-12AD-4D3E-A4D4-96F6C9966215 + +[Vlv2FvNvRam] +UpdateType = 0 # UpdateWholeFV +AddressType = 0 # 0 - relative address, 1 - absolute address. +BaseAddress = 0x00040000 # Base address offset on flash +Length = 0x00080000 # Length +ImageOffset = 0x00040000 # Image offset of this BIOS update image +FileGuid = AF9C9EB2-12AD-4D3E-A4D4-96F6C9966215 + +[Vlv2FvBinary] +FirmwareType = 0 # BIOS +AddressType = 0 # 0 - relative address, 1 - absolute address. +BaseAddress = 0x000C0000 # Base address offset on flash +Length = 0x00050000 # Length +ImageOffset = 0x000C0000 # Image offset of this BIOS update image +FileGuid = AF9C9EB2-12AD-4D3E-A4D4-96F6C9966215 + +[Vlv2FvMain] +FirmwareType = 1 # NvRam +AddressType = 0 # 0 - relative address, 1 - absolute address. +BaseAddress = 0x00110000 # Base address offset on flash +Length = 0x00210000 # Length +ImageOffset = 0x00110000 # Image offset of this BIOS update image +FileGuid = AF9C9EB2-12AD-4D3E-A4D4-96F6C9966215 + +[Vlv2FvRecovery2] +FirmwareType = 0 # BIOS +AddressType = 0 # 0 - relative address, 1 - absolute address. +BaseAddress = 0x00320000 # Base address offset on flash +Length = 0x00070000 # Length +ImageOffset = 0x00320000 # Image offset of this BIOS update image +FileGuid = AF9C9EB2-12AD-4D3E-A4D4-96F6C9966215 + +[Vlv2FvRecovery] +FirmwareType = 0 # BIOS +AddressType = 0 # 0 - relative address, 1 - absolute address. +BaseAddress = 0x00390000 # Base address offset on flash +Length = 0x00070000 # Length +ImageOffset = 0x00390000 # Image offset of this BIOS update image +FileGuid = AF9C9EB2-12AD-4D3E-A4D4-96F6C9966215 + diff --git a/Vlv2TbltDevicePkg/Feature/Capsule/SystemBiosUpdateConfig/SystemBiosUpdateConfigGcc.ini b/Vlv2TbltDevicePkg/Feature/Capsule/SystemBiosUpdateConfig/SystemBiosUpdateConfigGcc.ini new file mode 100644 index 0000000..40216d4 --- /dev/null +++ b/Vlv2TbltDevicePkg/Feature/Capsule/SystemBiosUpdateConfig/SystemBiosUpdateConfigGcc.ini @@ -0,0 +1,72 @@ +## @file +# +# Copyright (c) 2016, Intel Corporation. All rights reserved.
+# This program and the accompanying materials +# are licensed and made available under the terms and conditions of the BSD License +# which accompanies this distribution. The full text of the license may be found at +# http://opensource.org/licenses/bsd-license.php +# +# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, +# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. +# +## + +[Head] +NumOfUpdate = 6 +NumOfRecovery = 1 +Update0 = Vlv2FvMicrocode +Update1 = Vlv2FvBinary +Update2 = Vlv2FvMain +Update3 = Vlv2FvRecovery2 +Update4 = Vlv2FvRecovery +Update5 = Vlv2FvNvRam +Recovery0 = Vlv2FvMain + +[Vlv2FvMicrocode] +FirmwareType = 0 # BIOS +AddressType = 0 # 0 - relative address, 1 - absolute address. +BaseAddress = 0x00000000 # Base address offset on flash +Length = 0x00040000 # Length +ImageOffset = 0x00000000 # Image offset of this BIOS update image +FileGuid = AF9C9EB2-12AD-4D3E-A4D4-96F6C9966215 + +[Vlv2FvNvRam] +UpdateType = 0 # UpdateWholeFV +AddressType = 0 # 0 - relative address, 1 - absolute address. +BaseAddress = 0x00040000 # Base address offset on flash +Length = 0x00080000 # Length +ImageOffset = 0x00040000 # Image offset of this BIOS update image +FileGuid = AF9C9EB2-12AD-4D3E-A4D4-96F6C9966215 + +[Vlv2FvBinary] +FirmwareType = 0 # BIOS +AddressType = 0 # 0 - relative address, 1 - absolute address. +BaseAddress = 0x000C0000 # Base address offset on flash +Length = 0x00050000 # Length +ImageOffset = 0x000C0000 # Image offset of this BIOS update image +FileGuid = AF9C9EB2-12AD-4D3E-A4D4-96F6C9966215 + +[Vlv2FvMain] +FirmwareType = 1 # NvRam +AddressType = 0 # 0 - relative address, 1 - absolute address. +BaseAddress = 0x00110000 # Base address offset on flash +Length = 0x00215000 # Length +ImageOffset = 0x00110000 # Image offset of this BIOS update image +FileGuid = AF9C9EB2-12AD-4D3E-A4D4-96F6C9966215 + +[Vlv2FvRecovery2] +FirmwareType = 0 # BIOS +AddressType = 0 # 0 - relative address, 1 - absolute address. +BaseAddress = 0x00325000 # Base address offset on flash +Length = 0x0006B000 # Length +ImageOffset = 0x00325000 # Image offset of this BIOS update image +FileGuid = AF9C9EB2-12AD-4D3E-A4D4-96F6C9966215 + +[Vlv2FvRecovery] +FirmwareType = 0 # BIOS +AddressType = 0 # 0 - relative address, 1 - absolute address. +BaseAddress = 0x00390000 # Base address offset on flash +Length = 0x00070000 # Length +ImageOffset = 0x00390000 # Image offset of this BIOS update image +FileGuid = AF9C9EB2-12AD-4D3E-A4D4-96F6C9966215 + -- 2.7.4.windows.1