From nobody Sat May 18 22:14:48 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zohomail.com: domain of groups.io designates 66.175.222.108 as permitted sender) client-ip=66.175.222.108; envelope-from=bounce+27952+105489+1787277+3901457@groups.io; helo=mail02.groups.io; Authentication-Results: mx.zohomail.com; dkim=pass; spf=pass (zohomail.com: domain of groups.io designates 66.175.222.108 as permitted sender) smtp.mailfrom=bounce+27952+105489+1787277+3901457@groups.io; dmarc=fail(p=none dis=none) header.from=intel.com ARC-Seal: i=1; a=rsa-sha256; t=1685524681; cv=none; d=zohomail.com; s=zohoarc; b=YENLXGqtwzKYVQPBodoRkDJoo4YIK0YPtS8aSUNDqpgcDvW28qU1YTKeVu54xAjf3luUZjALAn0Ux2zzm7pGc6wXpm2gACjTuNlh187QP2lR7jEUw8xqbP1qPQ3eSYbspujzU/SbBDQwsPUL+Zkb4N4ntWqPoZW/SHs/c7PLQJo= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zohomail.com; s=zohoarc; t=1685524680; h=Content-Transfer-Encoding:Cc:Date:From:List-Subscribe:List-Id:List-Help:List-Unsubscribe:MIME-Version:Message-ID:Reply-To:Sender:Subject:To; bh=jhmW3y46p4TUZVZOBCgRk0Cvwp0hvIS6BnsuoUfbSqQ=; b=Ri1zv4s5qfSJpivsSLCRMWXWt0w5Cf1s50st9AbPW9NxgV9/LaIX/irkzCZsStZl9/JZCPdMxfzWnVfagi9Fa2gdIh4iGukkfrRSgfgHxAIB1mtEkeNFeTi8HotGpcV3wPlEYPMLFwmmSJBS968wJzsq9fxhE86vxxSEaSDaqlk= ARC-Authentication-Results: i=1; mx.zohomail.com; dkim=pass; spf=pass (zohomail.com: domain of groups.io designates 66.175.222.108 as permitted sender) smtp.mailfrom=bounce+27952+105489+1787277+3901457@groups.io; dmarc=fail header.from= (p=none dis=none) Received: from mail02.groups.io (mail02.groups.io [66.175.222.108]) by mx.zohomail.com with SMTPS id 1685524680990158.68943222323264; Wed, 31 May 2023 02:18:00 -0700 (PDT) Return-Path: X-Received: by 127.0.0.2 with SMTP id FN9ZYY1788612xY2fcNeqetL; Wed, 31 May 2023 02:18:00 -0700 X-Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by mx.groups.io with SMTP id smtpd.web10.9842.1685524679171653406 for ; Wed, 31 May 2023 02:17:59 -0700 X-IronPort-AV: E=McAfee;i="6600,9927,10726"; a="335531065" X-IronPort-AV: E=Sophos;i="6.00,205,1681196400"; d="scan'208";a="335531065" X-Received: from orsmga005.jf.intel.com ([10.7.209.41]) by fmsmga107.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 31 May 2023 02:17:58 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10726"; a="881103375" X-IronPort-AV: E=Sophos;i="6.00,205,1681196400"; d="scan'208";a="881103375" X-Received: from shwdeopenlab706.ccr.corp.intel.com ([10.239.55.95]) by orsmga005.jf.intel.com with ESMTP; 31 May 2023 02:17:56 -0700 From: "Ni, Ray" To: devel@edk2.groups.io Cc: Chasel Chiu , Nate DeSimone , Isaac Oram , Liming Gao , Eric Dong Subject: [edk2-devel] [PATCH] MinPlatform: Add CpuPageTableLib required by CpuMpPeim Date: Wed, 31 May 2023 17:17:53 +0800 Message-Id: <20230531091753.1782-1-ray.ni@intel.com> MIME-Version: 1.0 Precedence: Bulk List-Unsubscribe: List-Subscribe: List-Help: 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,ray.ni@intel.com X-Gm-Message-State: ckCVQ3HAbFvvdPGnPZTCao3Tx1787277AA= Content-Transfer-Encoding: quoted-printable DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=groups.io; q=dns/txt; s=20140610; t=1685524680; bh=wyUjWX4ZtVD5Nwv6FBYxVDcxco6c0LpM4DI0pQP4CSE=; h=Cc:Date:From:Reply-To:Subject:To; b=fdfDvkleX3nEc+GmqnURfLWO5EwbsEn7328msGjCj3zVpmSuzYq4rCD6J354QJdvwgd eHY1nS2qysvuH/33In40jCy5t93yhoCELgGXFrX7bIqr8zdka8kGtcB8lhu3AdNelUYmd VafMK6L7lO5opOMzVrqxXxataWypmFZ0fw8= X-ZohoMail-DKIM: pass (identity @groups.io) X-ZM-MESSAGEID: 1685524682764100001 Content-Type: text/plain; charset="utf-8" The patch moves the CpuPageTableLib reference from CoreDxeLib.dsc to CoreCommonLib.dsc since now not only DxeMpInitLib but also CpuMpPei depends on it. Signed-off-by: Ray Ni Cc: Chasel Chiu Cc: Nate DeSimone Cc: Isaac Oram Cc: Liming Gao Cc: Eric Dong Reviewed-by: Chasel Chiu --- Platform/Intel/MinPlatformPkg/Include/Dsc/CoreCommonLib.dsc | 1 + Platform/Intel/MinPlatformPkg/Include/Dsc/CoreDxeLib.dsc | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Platform/Intel/MinPlatformPkg/Include/Dsc/CoreCommonLib.dsc b/= Platform/Intel/MinPlatformPkg/Include/Dsc/CoreCommonLib.dsc index dfe7d836d3..300b7d7652 100644 --- a/Platform/Intel/MinPlatformPkg/Include/Dsc/CoreCommonLib.dsc +++ b/Platform/Intel/MinPlatformPkg/Include/Dsc/CoreCommonLib.dsc @@ -106,6 +106,7 @@ LocalApicLib|UefiCpuPkg/Library/BaseXApicX2ApicLib/BaseXApicX2ApicLib.inf SmmCpuFeaturesLib|UefiCpuPkg/Library/SmmCpuFeaturesLib/SmmCpuFeaturesLib= .inf MicrocodeLib|UefiCpuPkg/Library/MicrocodeLib/MicrocodeLib.inf + CpuPageTableLib|UefiCpuPkg/Library/CpuPageTableLib/CpuPageTableLib.inf =20 # # Platform diff --git a/Platform/Intel/MinPlatformPkg/Include/Dsc/CoreDxeLib.dsc b/Pla= tform/Intel/MinPlatformPkg/Include/Dsc/CoreDxeLib.dsc index af30f985ca..5a2cb130b3 100644 --- a/Platform/Intel/MinPlatformPkg/Include/Dsc/CoreDxeLib.dsc +++ b/Platform/Intel/MinPlatformPkg/Include/Dsc/CoreDxeLib.dsc @@ -1,7 +1,7 @@ ## @file # Platform description. # -# Copyright (c) 2017 - 2021, Intel Corporation. All rights reserved.
+# Copyright (c) 2017 - 2023, Intel Corporation. All rights reserved.
# # SPDX-License-Identifier: BSD-2-Clause-Patent # @@ -27,7 +27,6 @@ LockBoxLib|MdeModulePkg/Library/SmmLockBoxLib/SmmLockBoxDxeLib.inf =20 CpuExceptionHandlerLib|UefiCpuPkg/Library/CpuExceptionHandlerLib/DxeCpuE= xceptionHandlerLib.inf - CpuPageTableLib|UefiCpuPkg/Library/CpuPageTableLib/CpuPageTableLib.inf MpInitLib|UefiCpuPkg/Library/MpInitLib/DxeMpInitLib.inf FrameBufferBltLib|MdeModulePkg/Library/FrameBufferBltLib/FrameBufferBltL= ib.inf TimerLib|PcAtChipsetPkg/Library/AcpiTimerLib/DxeAcpiTimerLib.inf --=20 2.39.1.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 (#105489): https://edk2.groups.io/g/devel/message/105489 Mute This Topic: https://groups.io/mt/99238376/1787277 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/leave/3901457/1787277/102458076= /xyzzy [importer@patchew.org] -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-