public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: Yu Pu <yu.pu@intel.com>
To: devel@edk2.groups.io
Cc: Yu Pu <yu.pu@intel.com>, Chasel Chiu <chasel.chiu@intel.com>,
	Nate DeSimone <nathaniel.l.desimone@intel.com>,
	Star Zeng <star.zeng@intel.com>
Subject: [PATCH v1 01/17] IntelFsp2Pkg: Add CpuLib to module INFs that depend on UefiCpuLib.
Date: Wed, 23 Mar 2022 19:47:46 +0800	[thread overview]
Message-ID: <20220323114802.1008-2-yu.pu@intel.com> (raw)
In-Reply-To: <20220323114802.1008-1-yu.pu@intel.com>

Step 1 to merge UefiCpuLib to CpuLib

Cc: Chasel Chiu <chasel.chiu@intel.com>
Cc: Nate DeSimone <nathaniel.l.desimone@intel.com>
Cc: Star Zeng <star.zeng@intel.com>
Signed-off-by: Yu Pu <yu.pu@intel.com>
---
 IntelFsp2Pkg/FspSecCore/FspSecCoreM.inf | 1 +
 IntelFsp2Pkg/FspSecCore/SecMain.h       | 1 +
 IntelFsp2Pkg/IntelFsp2Pkg.dsc           | 1 +
 3 files changed, 3 insertions(+)

diff --git a/IntelFsp2Pkg/FspSecCore/FspSecCoreM.inf b/IntelFsp2Pkg/FspSecCore/FspSecCoreM.inf
index 7b05cae64130..830471adcf2f 100644
--- a/IntelFsp2Pkg/FspSecCore/FspSecCoreM.inf
+++ b/IntelFsp2Pkg/FspSecCore/FspSecCoreM.inf
@@ -51,6 +51,7 @@
   FspSwitchStackLib
   FspCommonLib
   FspSecPlatformLib
+  CpuLib
   UefiCpuLib
 
 [Pcd]
diff --git a/IntelFsp2Pkg/FspSecCore/SecMain.h b/IntelFsp2Pkg/FspSecCore/SecMain.h
index 7794255af13d..edb7447d9eff 100644
--- a/IntelFsp2Pkg/FspSecCore/SecMain.h
+++ b/IntelFsp2Pkg/FspSecCore/SecMain.h
@@ -20,6 +20,7 @@
 #include <Library/SerialPortLib.h>
 #include <Library/FspSwitchStackLib.h>
 #include <Library/FspCommonLib.h>
+#include <Library/CpuLib.h>
 #include <Library/UefiCpuLib.h>
 #include <FspEas.h>
 
diff --git a/IntelFsp2Pkg/IntelFsp2Pkg.dsc b/IntelFsp2Pkg/IntelFsp2Pkg.dsc
index c1414f7e75b8..b7d20adef5a2 100644
--- a/IntelFsp2Pkg/IntelFsp2Pkg.dsc
+++ b/IntelFsp2Pkg/IntelFsp2Pkg.dsc
@@ -27,6 +27,7 @@
   PciCf8Lib|MdePkg/Library/BasePciCf8Lib/BasePciCf8Lib.inf
   IoLib|MdePkg/Library/BaseIoLibIntrinsic/BaseIoLibIntrinsic.inf
   UefiDecompressLib|MdePkg/Library/BaseUefiDecompressLib/BaseUefiDecompressLib.inf
+  CpuLib|MdePkg/Library/BaseCpuLib/BaseCpuLib.inf
   UefiCpuLib|UefiCpuPkg/Library/BaseUefiCpuLib/BaseUefiCpuLib.inf
 
   ReportStatusCodeLib|MdePkg/Library/BaseReportStatusCodeLibNull/BaseReportStatusCodeLibNull.inf
-- 
2.30.0.windows.2


  reply	other threads:[~2022-03-23 11:48 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-03-23 11:47 [PATCH v1 00/17] *** SUBJECT HERE *** Yu Pu
2022-03-23 11:47 ` Yu Pu [this message]
2022-03-23 23:53   ` [edk2-devel] [PATCH v1 01/17] IntelFsp2Pkg: Add CpuLib to module INFs that depend on UefiCpuLib Michael D Kinney
2022-03-23 11:47 ` [PATCH v1 02/17] IntelFsp2WrapperPkg: " Yu Pu
2022-03-23 11:47 ` [PATCH v1 03/17] OvmfPkg: " Yu Pu
2022-03-23 11:47 ` [PATCH v1 04/17] PcAtChipsetPkg: " Yu Pu
2022-03-23 11:47 ` [PATCH v1 05/17] SourceLevelDebugPkg: " Yu Pu
2022-03-23 11:47 ` [PATCH v1 06/17] UefiCpuPkg: " Yu Pu
2022-03-23 11:47 ` [PATCH v1 07/17] UefiPayloadPkg: " Yu Pu
2022-03-23 11:47 ` [PATCH v1 08/17] MdePkg: Move API and implementation from UefiCpuLib to CpuLib Yu Pu
2022-03-23 11:47 ` [PATCH v1 09/17] UefiCpuPkg: Move API and implementation from Yu Pu
2022-03-23 11:47 ` [PATCH v1 10/17] IntelFsp2Pkg: Remove UefiCpuLib from module INFs Yu Pu
2022-03-23 11:47 ` [PATCH v1 11/17] IntelFsp2WrapperPkg: " Yu Pu
2022-03-23 11:47 ` [PATCH v1 12/17] OvmfPkg: " Yu Pu
2022-03-23 11:47 ` [PATCH v1 13/17] PcAtChipsetPkg: " Yu Pu
2022-03-23 11:47 ` [PATCH v1 14/17] SourceLevelDebugPkg: " Yu Pu
2022-03-23 11:48 ` [PATCH v1 15/17] UefiCpuPkg: " Yu Pu
2022-03-23 11:48 ` [PATCH v1 16/17] UefiPayloadPkg: " Yu Pu
2022-03-23 11:48 ` [PATCH v1 17/17] UefiCpuLib: Remove UefiCpuLib Yu Pu
2022-03-28  8:45 ` 回复: [edk2-devel] [PATCH v1 00/17] *** SUBJECT HERE *** gaoliming

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-list from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20220323114802.1008-2-yu.pu@intel.com \
    --to=devel@edk2.groups.io \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox