From nobody Fri Apr 19 05:30:50 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of groups.io designates 66.175.222.12 as permitted sender) client-ip=66.175.222.12; envelope-from=bounce+27952+48362+1787277+3901457@groups.io; helo=web01.groups.io; Authentication-Results: mx.zohomail.com; dkim=pass; spf=pass (zoho.com: domain of groups.io designates 66.175.222.12 as permitted sender) smtp.mailfrom=bounce+27952+48362+1787277+3901457@groups.io; dmarc=fail(p=none dis=none) header.from=intel.com ARC-Seal: i=1; a=rsa-sha256; t=1570002045; cv=none; d=zoho.com; s=zohoarc; b=VdS1QJ4sXPB6fO5NcLaT9F3fQPbrpQw18nLN6ukNfxH2K71BLOPLDzKb9YrS8BsLkD78mIH2j7iU9bFkL4uL+TDhRWflF6z9KiV2pvILtEnZx2gy6MjMrUMXJq4z6chcaUj2KsGBX/QtEySAAsUTiKn0dWwoM0VuM3cp+sNN78E= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1570002045; h=Content-Transfer-Encoding:Cc:Date:From:List-Id:List-Unsubscribe:MIME-Version:Message-ID:Reply-To:Sender:Subject:To:ARC-Authentication-Results; bh=o0xdLV/0V4dY/kimV76o7Xs0B9UU3EcTOqI90x0LaIw=; b=nP9yF45FB4nhkk3VDmG2wMjlFac6bpcWsPIrp23qkxuW/jEsIxXS8/4Mc3XAokagRtzRzMKRDcXMfNGz+c/0LPxlCzoKr839EA95Rn1ADvb+2n7ebo5nAXLuxgFXHd23mdS43Xod2Lb5satPi71asMijHuCFu2hWPWwRH/axqgI= ARC-Authentication-Results: i=1; mx.zoho.com; dkim=pass; spf=pass (zoho.com: domain of groups.io designates 66.175.222.12 as permitted sender) smtp.mailfrom=bounce+27952+48362+1787277+3901457@groups.io; dmarc=fail header.from= (p=none dis=none) header.from= Received: from web01.groups.io (web01.groups.io [66.175.222.12]) by mx.zohomail.com with SMTPS id 157000204523472.6972509208241; Wed, 2 Oct 2019 00:40:45 -0700 (PDT) Return-Path: X-Received: by 127.0.0.2 with SMTP id aaaaYY1788612xaaaaaaaaaa; Wed, 02 Oct 2019 00:40:44 -0700 X-Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by groups.io with SMTP; Wed, 02 Oct 2019 00:40:44 -0700 X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False X-Received: from orsmga005.jf.intel.com ([10.7.209.41]) by fmsmga102.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 02 Oct 2019 00:40:44 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.64,573,1559545200"; d="scan'208";a="366626854" X-Received: from nldesimo-desk1.amr.corp.intel.com ([10.7.159.63]) by orsmga005.jf.intel.com with ESMTP; 02 Oct 2019 00:40:43 -0700 From: "Nate DeSimone" To: devel@edk2.groups.io Cc: Chasel Chiu , Michael Kubacki , Jeremy Soller Subject: [edk2-devel] [edk2-platforms] [PATCH V1] KabylakeOpenBoardPkg: Wrong instance of PlatformSecLib is used. Date: Wed, 2 Oct 2019 00:40:31 -0700 Message-Id: <20191002074031.3483-1-nathaniel.l.desimone@intel.com> MIME-Version: 1.0 Precedence: Bulk List-Unsubscribe: Sender: devel@edk2.groups.io List-Id: Mailing-List: list devel@edk2.groups.io; contact devel+owner@edk2.groups.io Reply-To: devel@edk2.groups.io,nathaniel.l.desimone@intel.com X-Gm-Message-State: aaaaaaaaaaaaaaaaaaaaaaaax1787277AA= Content-Transfer-Encoding: quoted-printable DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=groups.io; q=dns/txt; s=20140610; t=1570002044; bh=gxAqfFL9hvR1slBYO3edbV8na9W1g31kwID43S7xotY=; h=Cc:Date:From:Reply-To:Subject:To; b=F0Rmq1vM2jt3cvbzQr1RV/pL41dYaNf4WD8dKA78xROKoWnu/cPb6OQZLflbLztlMm7 nTh4HWkjzuwlMfEmxgcpdHZEyiMVJCc1WGVLt4Cqlom6P1I+YiYVsxXFBgaelS/WW7/mN J0LdBNlTTfSqd2NpGSTXkXw4ZWQNWA8B2II= X-ZohoMail-DKIM: pass (identity @groups.io) Content-Type: text/plain; charset="utf-8" The GalagoPro3 platform in KabylakeOpenBoardPkg is using the instance of PlatformSecLib in MinPlatformPkg instead of the instance in KabylakeOpenBoardPkg. The version in MinPlatformPkg does not support FSP 2.1 Dispatch Mode, whearas the version in KabylakeOpenBoardPkg does. Cc: Chasel Chiu Cc: Michael Kubacki Cc: Jeremy Soller Signed-off-by: Nate DeSimone Reviewed-by: Jeremy Soller Reviewed-by: Michael Kubacki --- Platform/Intel/KabylakeOpenBoardPkg/GalagoPro3/OpenBoardPkg.dsc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Platform/Intel/KabylakeOpenBoardPkg/GalagoPro3/OpenBoardPkg.ds= c b/Platform/Intel/KabylakeOpenBoardPkg/GalagoPro3/OpenBoardPkg.dsc index d67e0cc000..f3dd2b0c91 100644 --- a/Platform/Intel/KabylakeOpenBoardPkg/GalagoPro3/OpenBoardPkg.dsc +++ b/Platform/Intel/KabylakeOpenBoardPkg/GalagoPro3/OpenBoardPkg.dsc @@ -85,7 +85,7 @@ PlatformHookLib|$(PROJECT)/Library/BasePlatformHookLib/BasePlatformHookL= ib.inf =20 FspWrapperHobProcessLib|$(PLATFORM_PACKAGE)/FspWrapper/Library/PeiFspWra= pperHobProcessLib/PeiFspWrapperHobProcessLib.inf - PlatformSecLib|$(PLATFORM_PACKAGE)/FspWrapper/Library/SecFspWrapperPlatf= ormSecLib/SecFspWrapperPlatformSecLib.inf + PlatformSecLib|$(PLATFORM_BOARD_PACKAGE)/FspWrapper/Library/SecFspWrappe= rPlatformSecLib/SecFspWrapperPlatformSecLib.inf =20 FspWrapperApiLib|IntelFsp2WrapperPkg/Library/BaseFspWrapperApiLib/BaseFs= pWrapperApiLib.inf FspWrapperApiTestLib|IntelFsp2WrapperPkg/Library/PeiFspWrapperApiTestLib= /PeiFspWrapperApiTestLib.inf --=20 2.23.0.windows.1 -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#48362): https://edk2.groups.io/g/devel/message/48362 Mute This Topic: https://groups.io/mt/34367442/1787277 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [importer@patchew.org] -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-