From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by mx.groups.io with SMTP id smtpd.web09.33708.1658182394386742860 for ; Mon, 18 Jul 2022 15:13:14 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=gOj4I4O4; spf=pass (domain: intel.com, ip: 192.55.52.88, 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=1658182394; x=1689718394; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=zHyiR/w8mnX+BYFyLm7Lez/AU4PlF6bUxcrg5xbZm24=; b=gOj4I4O4YDyzhpbb0D3nr3UZxyLokJvUrWxvUHxidOqPMRgHUbY6vZOU gdn6g3UrYpkl75c+Bs2JT93NCnp5zna/NRdd0+7AW+OXpC4wWmx1ekZ9K eRM21yFNccS/zHzkJ5qNSSp3xETFjezxJmmT/Qi+RZFA2jCvkAYPZ465L YmJ4Rrdby2K5v25zCPUR3/tx0o52fp0By0/JclB6YSaDakHTROG0xizW4 89CPgJKt4pM9FE8tl3SIcBRmmAv58jemWweZOFtLurkAp+9go0u8slmpN R37xUHb4e4YmXJ8pmTrLyuamONbY7nXpkifDAgNUlGu9jQsS4vEfmsL1f w==; X-IronPort-AV: E=McAfee;i="6400,9594,10412"; a="312018774" X-IronPort-AV: E=Sophos;i="5.92,282,1650956400"; d="scan'208";a="312018774" Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 18 Jul 2022 15:13:14 -0700 X-IronPort-AV: E=Sophos;i="5.92,282,1650956400"; d="scan'208";a="665177271" Received: from cchiu4-mobl.gar.corp.intel.com ([10.209.6.246]) by fmsmga004-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 18 Jul 2022 15:13:14 -0700 From: "Chiu, Chasel" To: devel@edk2.groups.io Cc: Chasel Chiu , Nate DeSimone , Isaac Oram , Liming Gao , Eric Dong Subject: [PATCH 1/2] MinPlatformPkg/FspWrapper: FspResetType support for X64 build. Date: Mon, 18 Jul 2022 15:12:56 -0700 Message-Id: <20220718221257.1318-2-chasel.chiu@intel.com> X-Mailer: git-send-email 2.35.0.windows.1 In-Reply-To: <20220718221257.1318-1-chasel.chiu@intel.com> References: <20220718221257.1318-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 | 4 ++-- Platform/Intel/MinPlatformPkg/FspWrapper/Library/PeiFspWrapperPlatformLib/= PeiFspWrapperPlatformResetLib.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Platform/Intel/MinPlatformPkg/FspWrapper/Library/DxeFspWrapper= PlatformLib/DxeFspWrapperPlatformResetLib.c b/Platform/Intel/MinPlatformPkg= /FspWrapper/Library/DxeFspWrapperPlatformLib/DxeFspWrapperPlatformResetLib.c index b4d509db85..e5e09eb762 100644 --- a/Platform/Intel/MinPlatformPkg/FspWrapper/Library/DxeFspWrapperPlatfor= mLib/DxeFspWrapperPlatformResetLib.c +++ b/Platform/Intel/MinPlatformPkg/FspWrapper/Library/DxeFspWrapperPlatfor= mLib/DxeFspWrapperPlatformResetLib.c @@ -1,7 +1,7 @@ /** @file=0D Dxe library function to reset the system from FSP wrapper.=0D =0D -Copyright (c) 2017, Intel Corporation. All rights reserved.
=0D +Copyright (c) 2017 - 2022, Intel Corporation. All rights reserved.
=0D SPDX-License-Identifier: BSD-2-Clause-Patent=0D =0D **/=0D @@ -22,7 +22,7 @@ SPDX-License-Identifier: BSD-2-Clause-Patent VOID=0D EFIAPI=0D CallFspWrapperResetSystem (=0D - UINT32 ResetType=0D + UINTN 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..75fd5a6ea2 100644 --- a/Platform/Intel/MinPlatformPkg/FspWrapper/Library/PeiFspWrapperPlatfor= mLib/PeiFspWrapperPlatformResetLib.c +++ b/Platform/Intel/MinPlatformPkg/FspWrapper/Library/PeiFspWrapperPlatfor= mLib/PeiFspWrapperPlatformResetLib.c @@ -1,7 +1,7 @@ /** @file=0D Pei library function to reset the system from FSP wrapper.=0D =0D -Copyright (c) 2017, Intel Corporation. All rights reserved.
=0D +Copyright (c) 2017 - 2022, Intel Corporation. All rights reserved.
=0D SPDX-License-Identifier: BSD-2-Clause-Patent=0D =0D **/=0D @@ -21,7 +21,7 @@ SPDX-License-Identifier: BSD-2-Clause-Patent VOID=0D EFIAPI=0D CallFspWrapperResetSystem (=0D - UINT32 ResetType=0D + UINTN ResetType=0D )=0D {=0D EFI_RESET_TYPE EfiResetType;=0D --=20 2.35.0.windows.1