From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by mx.groups.io with SMTP id smtpd.web08.35227.1658191045465223760 for ; Mon, 18 Jul 2022 17:37:26 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=fk3kgtwj; spf=pass (domain: intel.com, ip: 134.134.136.65, mailfrom: chasel.chiu@intel.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1658191046; x=1689727046; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=gtNPLX3ltgeoIzmJ356kTyFtYCRRGygrCLgUUmgAXPo=; b=fk3kgtwjBhx7wFOF6AHn+7pbi4ln4dJWAvyRxlQHGdDdw3slRxsMjUre zgwrEIwkLjktISkN7MGZdCCr0ttxN4+G4THsyj9tXo6bE4Jb9QQYJlpD+ ChC4cqtZogCxKzEtDNxa373fzLNG5ux8OQJ3C5o23l0yxLXBEK91UA01Z YQMjbQh/HH53mG3gC+hf8apgdKGGEdZafXzo7VqzmS/ZsQyzRcd2BIUZi obRVyWGYnqpYx9xJ2Su3Pql+w699ALJMKFysXh8PnLfneyuv1Hwd2zl8H 4YUpiM7vRrDcvIrHb7Wx0YK0COSC2y5UhkXDQ6mCrzU7wWw4E/sEgRxOU A==; X-IronPort-AV: E=McAfee;i="6400,9594,10412"; a="287501954" X-IronPort-AV: E=Sophos;i="5.92,282,1650956400"; d="scan'208";a="287501954" Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by orsmga103.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 18 Jul 2022 17:37:25 -0700 X-IronPort-AV: E=Sophos;i="5.92,282,1650956400"; d="scan'208";a="924556301" Received: from cchiu4-mobl.gar.corp.intel.com ([10.209.6.246]) by fmsmga005-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 18 Jul 2022 17:37:24 -0700 From: "Chiu, Chasel" To: devel@edk2.groups.io Cc: Chasel Chiu , Nate DeSimone , Isaac Oram , Liming Gao , Eric Dong Subject: [PATCH v2 1/2] MinPlatformPkg/FspWrapper: FspResetType support for X64 build. Date: Mon, 18 Jul 2022 17:37:12 -0700 Message-Id: <20220719003714.1519-2-chasel.chiu@intel.com> X-Mailer: git-send-email 2.35.0.windows.1 In-Reply-To: <20220719003714.1519-1-chasel.chiu@intel.com> References: <20220719003714.1519-1-chasel.chiu@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable FSP_STATUS_RESET_REQUIRED_* will be either 32bit or 64bit basing on the build and this patch extended the support for 64bit build. Cc: Nate DeSimone Cc: Isaac Oram Cc: Liming Gao Cc: Eric Dong Signed-off-by: Chasel Chiu --- Platform/Intel/MinPlatformPkg/FspWrapper/Library/DxeFspWrapperPlatformLib/= DxeFspWrapperPlatformResetLib.c | 2 +- Platform/Intel/MinPlatformPkg/FspWrapper/Library/PeiFspWrapperPlatformLib/= PeiFspWrapperPlatformResetLib.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Platform/Intel/MinPlatformPkg/FspWrapper/Library/DxeFspWrapper= PlatformLib/DxeFspWrapperPlatformResetLib.c b/Platform/Intel/MinPlatformPkg= /FspWrapper/Library/DxeFspWrapperPlatformLib/DxeFspWrapperPlatformResetLib.c index b4d509db85..832027d3ee 100644 --- a/Platform/Intel/MinPlatformPkg/FspWrapper/Library/DxeFspWrapperPlatfor= mLib/DxeFspWrapperPlatformResetLib.c +++ b/Platform/Intel/MinPlatformPkg/FspWrapper/Library/DxeFspWrapperPlatfor= mLib/DxeFspWrapperPlatformResetLib.c @@ -22,7 +22,7 @@ SPDX-License-Identifier: BSD-2-Clause-Patent VOID=0D EFIAPI=0D CallFspWrapperResetSystem (=0D - UINT32 ResetType=0D + EFI_STATUS ResetType=0D )=0D {=0D EFI_RESET_TYPE EfiResetType;=0D diff --git a/Platform/Intel/MinPlatformPkg/FspWrapper/Library/PeiFspWrapper= PlatformLib/PeiFspWrapperPlatformResetLib.c b/Platform/Intel/MinPlatformPkg= /FspWrapper/Library/PeiFspWrapperPlatformLib/PeiFspWrapperPlatformResetLib.c index 191bcb2fbb..2f6f7d058c 100644 --- a/Platform/Intel/MinPlatformPkg/FspWrapper/Library/PeiFspWrapperPlatfor= mLib/PeiFspWrapperPlatformResetLib.c +++ b/Platform/Intel/MinPlatformPkg/FspWrapper/Library/PeiFspWrapperPlatfor= mLib/PeiFspWrapperPlatformResetLib.c @@ -21,7 +21,7 @@ SPDX-License-Identifier: BSD-2-Clause-Patent VOID=0D EFIAPI=0D CallFspWrapperResetSystem (=0D - UINT32 ResetType=0D + EFI_STATUS ResetType=0D )=0D {=0D EFI_RESET_TYPE EfiResetType;=0D --=20 2.35.0.windows.1