From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=217.140.101.70; helo=foss.arm.com; envelope-from=thomas.abraham@arm.com; receiver=edk2-devel@lists.01.org Received: from foss.arm.com (foss.arm.com [217.140.101.70]) by ml01.01.org (Postfix) with ESMTP id D633B210C0F4E for ; Mon, 23 Jul 2018 21:51:58 -0700 (PDT) Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.72.51.249]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id B241C80D; Mon, 23 Jul 2018 21:51:58 -0700 (PDT) Received: from usa.arm.com (a74716-lin.blr.arm.com [10.162.4.145]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPA id 34C743F237; Mon, 23 Jul 2018 21:51:56 -0700 (PDT) From: Thomas Abraham To: edk2-devel@lists.01.org Date: Tue, 24 Jul 2018 10:21:44 +0530 Message-Id: <1532407907-14508-2-git-send-email-thomas.abraham@arm.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1532407907-14508-1-git-send-email-thomas.abraham@arm.com> References: <1532407907-14508-1-git-send-email-thomas.abraham@arm.com> Subject: [PATCH v2 edk2-platforms 1/4] Platform/ARM/Sgi: Increase the size of flash image X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Jul 2018 04:51:59 -0000 Increase the size of the flash image to accomdate a larger firmware volume. This increase is required to add support for features such as Secure Boot and SMM. Contributed-under: TianoCore Contribution Agreement 1.1 Cc: Ard Biesheuvel Cc: Leif Lindholm Signed-off-by: Thomas Abraham --- Platform/ARM/SgiPkg/SgiPlatform.fdf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Platform/ARM/SgiPkg/SgiPlatform.fdf b/Platform/ARM/SgiPkg/SgiPlatform.fdf index 0e5739e..161ff92 100644 --- a/Platform/ARM/SgiPkg/SgiPlatform.fdf +++ b/Platform/ARM/SgiPkg/SgiPlatform.fdf @@ -26,12 +26,12 @@ [FD.BL33_AP_UEFI] BaseAddress = 0xE0000000|gArmTokenSpaceGuid.PcdFdBaseAddress -Size = 0x000F0000|gArmTokenSpaceGuid.PcdFdSize +Size = 0x00200000|gArmTokenSpaceGuid.PcdFdSize ErasePolarity = 1 # This one is tricky, it must be: BlockSize * NumBlocks = Size BlockSize = 0x00001000 -NumBlocks = 0xF0 +NumBlocks = 0x200 ################################################################################ # @@ -49,7 +49,7 @@ NumBlocks = 0xF0 # ################################################################################ -0x00000000|0x000F0000 +0x00000000|0x00200000 gArmTokenSpaceGuid.PcdFvBaseAddress|gArmTokenSpaceGuid.PcdFvSize FV = FVMAIN_COMPACT @@ -194,7 +194,7 @@ READ_LOCK_STATUS = TRUE [FV.FVMAIN_COMPACT] FvAlignment = 16 BlockSize = 0x1000 -NumBlocks = 0xf0 +NumBlocks = 0x200 ERASE_POLARITY = 1 MEMORY_MAPPED = TRUE STICKY_WRITE = TRUE -- 2.7.4