From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mx.groups.io with SMTP id smtpd.web12.641.1635453892268456731 for ; Thu, 28 Oct 2021 13:44:52 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="body hash did not verify" header.i=@linux.microsoft.com header.s=default header.b=X/u0vy9m; spf=pass (domain: linux.microsoft.com, ip: 13.77.154.182, mailfrom: mikuback@linux.microsoft.com) Received: from localhost.localdomain (c-73-27-179-174.hsd1.fl.comcast.net [73.27.179.174]) by linux.microsoft.com (Postfix) with ESMTPSA id 87936208F4E9; Thu, 28 Oct 2021 13:44:51 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 87936208F4E9 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1635453892; bh=n2yKs6c9v24qOKLYewocc7e9rtSjekwRFmJwmUcEExs=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=X/u0vy9mETZU9DlkqXqYtnnPdity7Daz3QKJDze3FJGOGUWN5XWwT8JRHwuQs4LEH s73t9LvAppNVjTBOSsXK7n1I4kLHQrFq2N6J5k64VIMXO2367eheYl3eaONY6Jr7f4 pL/RlzzhTC7QHDkldgGcHWJPatvqVM3+KKXM4SeE= From: "Michael Kubacki" To: devel@edk2.groups.io Cc: Agyeman Prince , Nate DeSimone Subject: [PATCH v6 13/52] SimicsOpenBoardPkg: Use IntelSiliconPkg BIOS area and ucode PCDs Date: Thu, 28 Oct 2021 16:42:47 -0400 Message-Id: <20211028204326.645-14-mikuback@linux.microsoft.com> X-Mailer: git-send-email 2.28.0.windows.1 In-Reply-To: <20211028204326.645-1-mikuback@linux.microsoft.com> References: <20211028204326.645-1-mikuback@linux.microsoft.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Michael Kubacki REF:https://bugzilla.tianocore.org/show_bug.cgi?id=3D3307 Updates PCDs to use the IntelSiliconPkg PCD tokenspace now that the PCDs are declared in IntelSiliconPkg.dec. Cc: Agyeman Prince Signed-off-by: Michael Kubacki Reviewed-by: Nate DeSimone --- Platform/Intel/SimicsOpenBoardPkg/BoardX58Ich10/OpenBoardPkg.fdf.inc | 8= ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Platform/Intel/SimicsOpenBoardPkg/BoardX58Ich10/OpenBoardPkg= .fdf.inc b/Platform/Intel/SimicsOpenBoardPkg/BoardX58Ich10/OpenBoardPkg.f= df.inc index 9c2436c3ad38..69a566307551 100644 --- a/Platform/Intel/SimicsOpenBoardPkg/BoardX58Ich10/OpenBoardPkg.fdf.in= c +++ b/Platform/Intel/SimicsOpenBoardPkg/BoardX58Ich10/OpenBoardPkg.fdf.in= c @@ -45,10 +45,10 @@ SET gSimicsOpenBoardPkgTokenSpaceGuid.PcdSimicsFlashNvStorageFtwSpareBas= e =3D gSimicsOpenBoardPkgTokenSpaceGuid.PcdSimicsFlashNvStorageFtwWorking= Base + gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingSize SET gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareSize =3D 0x1= 0000 =20 -SET gEfiPchTokenSpaceGuid.PcdFlashAreaBaseAddress =3D 0xFFE00000 -SET gEfiPchTokenSpaceGuid.PcdFlashAreaSize =3D 0x00200000 +SET gIntelSiliconPkgTokenSpaceGuid.PcdBiosAreaBaseAddress =3D $(FW_BASE_= ADDRESS) +SET gIntelSiliconPkgTokenSpaceGuid.PcdBiosSize =3D $(FW_SIZE) =20 -SET gMinPlatformPkgTokenSpaceGuid.PcdFlashAreaBaseAddress =3D gEfiPchTok= enSpaceGuid.PcdFlashAreaBaseAddress -SET gMinPlatformPkgTokenSpaceGuid.PcdFlashAreaSize =3D gEfiPchTokenSpace= Guid.PcdFlashAreaSize +SET gMinPlatformPkgTokenSpaceGuid.PcdFlashAreaBaseAddress =3D gIntelSili= conPkgTokenSpaceGuid.PcdBiosAreaBaseAddress +SET gMinPlatformPkgTokenSpaceGuid.PcdFlashAreaSize =3D gIntelSiliconPkgT= okenSpaceGuid.PcdBiosSize =20 DEFINE MEMFD_BASE_ADDRESS =3D 0x800000 --=20 2.28.0.windows.1