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.158.1627960714900996468 for ; Mon, 02 Aug 2021 20:18:35 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="body hash did not verify" header.i=@linux.microsoft.com header.s=default header.b=GkU4ZtdZ; spf=pass (domain: linux.microsoft.com, ip: 13.77.154.182, mailfrom: mikuback@linux.microsoft.com) Received: from localhost.localdomain (unknown [167.220.2.74]) by linux.microsoft.com (Postfix) with ESMTPSA id CA1C3208AB15; Mon, 2 Aug 2021 19:40:18 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com CA1C3208AB15 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1627958418; bh=n2yKs6c9v24qOKLYewocc7e9rtSjekwRFmJwmUcEExs=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=GkU4ZtdZ5xgiJGzZPNoqIqA7A3LgTYUxo9G/DFBRkz8iC5qfCZ2F+8oyKyIzq/HAL 7oMVvF3pZ0rEsDO2mZgOXiymS3wAmRrwlbj+n3E2zKZbmslnFi5YV5wWyK7Va9oXmK 3s5vWdJYsW1WYJ/qrgmt9YFwAx3RYiNndqXyd7yI= From: "Michael Kubacki" To: devel@edk2.groups.io Cc: Agyeman Prince , Nate DeSimone Subject: [edk2-platforms][PATCH v5 13/46] SimicsOpenBoardPkg: Use IntelSiliconPkg BIOS area and ucode PCDs Date: Mon, 2 Aug 2021 22:38:41 -0400 Message-Id: <20210803023914.1569-14-mikuback@linux.microsoft.com> X-Mailer: git-send-email 2.28.0.windows.1 In-Reply-To: <20210803023914.1569-1-mikuback@linux.microsoft.com> References: <20210803023914.1569-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