From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by mx.groups.io with SMTP id smtpd.web11.174230.1672196428481482074 for ; Tue, 27 Dec 2022 19:00:28 -0800 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=d8qs00vv; spf=pass (domain: intel.com, ip: 192.55.52.115, mailfrom: yuanhao.xie@intel.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1672196428; x=1703732428; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=Uo/Sos2VeR20Pn45JkH5YK80RAFgaP6vy8f6pOvWwHY=; b=d8qs00vvthG7JOSoXRq/MrWtZgD7vZJiZbJVuUZttQZdizZDmwB/oqQ6 Nj0Jd5ycZt4ecVsdYmLgF/hBr2/bgOpIs5ZWvre6S53c49++WeKFU6ww0 5K3IljJ+MqduIt7sfR+lp1yrp7PM28MO0H+6/RwfDwDIorbzNSk6tRh3g eK/kWBs96ZVj/f/PQXVbaZLR0cf2Nq8GyrH19Ibwl2paRQvYJQJVqGqKm RC9pXKMXJTGXROjhQ0ZAu8VqnUUHSTuRcBDVIlDVM45axV1tFF9Qsf09H bXUY/9A7fn+MKigyVBMMXBdD915zWLdheR5o6ZJwL6z7H0JnGXCaulvAe Q==; X-IronPort-AV: E=McAfee;i="6500,9779,10573"; a="320878834" X-IronPort-AV: E=Sophos;i="5.96,280,1665471600"; d="scan'208";a="320878834" Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by fmsmga103.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 27 Dec 2022 19:00:28 -0800 X-IronPort-AV: E=McAfee;i="6500,9779,10573"; a="898540855" X-IronPort-AV: E=Sophos;i="5.96,280,1665471600"; d="scan'208";a="898540855" Received: from shwdeopenlab705.ccr.corp.intel.com ([10.239.182.166]) by fmsmga006-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 27 Dec 2022 19:00:26 -0800 From: "Yuanhao Xie" To: devel@edk2.groups.io Cc: Zailiang Sun , Yi Qian , Nate DeSimone Subject: [PATCH] Platform/Intel/Vlv2TbltDevicePkg: Add CpuPageTableLib Date: Wed, 28 Dec 2022 11:00:15 +0800 Message-Id: <20221228030015.705-1-yuanhao.xie@intel.com> X-Mailer: git-send-email 2.36.1.windows.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Add CpuPageTableLib required by MpInitLib Cc: Zailiang Sun Cc: Yi Qian Cc: Nate DeSimone Signed-off-by: Yuanhao Xie --- Platform/Intel/Vlv2TbltDevicePkg/PlatformPkgX64.dsc | 1 + 1 file changed, 1 insertion(+) diff --git a/Platform/Intel/Vlv2TbltDevicePkg/PlatformPkgX64.dsc b/Platform/Intel/Vlv2TbltDevicePkg/PlatformPkgX64.dsc index 8215a9130..8f61f9f5c 100644 --- a/Platform/Intel/Vlv2TbltDevicePkg/PlatformPkgX64.dsc +++ b/Platform/Intel/Vlv2TbltDevicePkg/PlatformPkgX64.dsc @@ -164,6 +164,7 @@ MtrrLib|UefiCpuPkg/Library/MtrrLib/MtrrLib.inf LocalApicLib|UefiCpuPkg/Library/BaseXApicX2ApicLib/BaseXApicX2ApicLib.inf CpuExceptionHandlerLib|UefiCpuPkg/Library/CpuExceptionHandlerLib/DxeCpuExceptionHandlerLib.inf + CpuPageTableLib|UefiCpuPkg/Library/CpuPageTableLib/CpuPageTableLib.inf MpInitLib|UefiCpuPkg/Library/MpInitLib/DxeMpInitLib.inf CcExitLib|UefiCpuPkg/Library/CcExitLibNull/CcExitLibNull.inf MicrocodeLib|UefiCpuPkg/Library/MicrocodeLib/MicrocodeLib.inf -- 2.36.1.windows.1