public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "Ni, Ruiyu" <ruiyu.ni@Intel.com>
To: Eric Dong <eric.dong@intel.com>, edk2-devel@lists.01.org
Cc: Laszlo Ersek <lersek@redhat.com>
Subject: Re: [Patch v2 6/6] UefiCpuPkg/CpuCommonFeaturesLib: Register MSR base on scope Info.
Date: Thu, 18 Oct 2018 14:01:55 +0800	[thread overview]
Message-ID: <aa8b7eb1-48c5-6d39-3b48-d0b15b4e9b11@Intel.com> (raw)
In-Reply-To: <20181017021635.14972-7-eric.dong@intel.com>

On 10/17/2018 10:16 AM, Eric Dong wrote:
> Because MSR has scope attribute, driver has no needs to set
> MSR for all APs if MSR scope is core or package type. This patch
> updates code to base on the MSR scope value to add MSR to the register
> table.
> 
> Cc: Ruiyu Ni <ruiyu.ni@intel.com>
> Cc: Laszlo Ersek <lersek@redhat.com>
> Contributed-under: TianoCore Contribution Agreement 1.1
> Signed-off-by: Eric Dong <eric.dong@intel.com>
> ---
>   UefiCpuPkg/Library/CpuCommonFeaturesLib/C1e.c      |  8 +++++
>   UefiCpuPkg/Library/CpuCommonFeaturesLib/Eist.c     | 12 +++++++
>   .../Library/CpuCommonFeaturesLib/ExecuteDisable.c  | 10 ++++++
>   .../Library/CpuCommonFeaturesLib/FastStrings.c     | 12 +++++++
>   .../Library/CpuCommonFeaturesLib/FeatureControl.c  | 38 ++++++++++++++++++++++
>   .../CpuCommonFeaturesLib/LimitCpuIdMaxval.c        | 14 ++++++++
>   .../Library/CpuCommonFeaturesLib/MachineCheck.c    | 38 ++++++++++++++++++++++
>   .../Library/CpuCommonFeaturesLib/MonitorMwait.c    | 15 +++++++++
>   .../Library/CpuCommonFeaturesLib/PendingBreak.c    | 11 +++++++
>   UefiCpuPkg/Library/CpuCommonFeaturesLib/Ppin.c     | 11 +++++++
>   .../Library/CpuCommonFeaturesLib/ProcTrace.c       | 11 +++++++
>   UefiCpuPkg/Library/CpuCommonFeaturesLib/X2Apic.c   | 10 ++++++
>   12 files changed, 190 insertions(+)
> 
> diff --git a/UefiCpuPkg/Library/CpuCommonFeaturesLib/C1e.c b/UefiCpuPkg/Library/CpuCommonFeaturesLib/C1e.c
> index 47116355a8..1beaebe69c 100644
> --- a/UefiCpuPkg/Library/CpuCommonFeaturesLib/C1e.c
> +++ b/UefiCpuPkg/Library/CpuCommonFeaturesLib/C1e.c
> @@ -67,6 +67,14 @@ C1eInitialize (
>     IN BOOLEAN                           State
>     )
>   {
> +  //
> +  // The scope of C1EEnable bit in the MSR_NEHALEM_POWER_CTL is Package, only program
> +  // MSR_FEATURE_CONFIG for thread 0 core 0 in each package.
> +  //
> +  if ((CpuInfo->ProcessorInfo.Location.Thread != 0) || (CpuInfo->ProcessorInfo.Location.Core != 0)) {
> +  return RETURN_SUCCESS;
> +  }
> +
>     CPU_REGISTER_TABLE_WRITE_FIELD (
>       ProcessorNumber,
>       Msr,
> diff --git a/UefiCpuPkg/Library/CpuCommonFeaturesLib/Eist.c b/UefiCpuPkg/Library/CpuCommonFeaturesLib/Eist.c
> index 2038171a14..f30117d2c5 100644
> --- a/UefiCpuPkg/Library/CpuCommonFeaturesLib/Eist.c
> +++ b/UefiCpuPkg/Library/CpuCommonFeaturesLib/Eist.c
> @@ -69,6 +69,18 @@ EistInitialize (
>     IN BOOLEAN                           State
>     )
>   {
> +  //
> +  // The scope of the MSR_IA32_MISC_ENABLE is core for below processor type, only program
> +  // MSR_IA32_MISC_ENABLE for thread 0 in each core.
> +  //
> +  if (IS_ATOM_PROCESSOR (CpuInfo->DisplayFamily, CpuInfo->DisplayModel) ||
> +      IS_CORE_PROCESSOR (CpuInfo->DisplayFamily, CpuInfo->DisplayModel) ||
> +      IS_CORE2_PROCESSOR (CpuInfo->DisplayFamily, CpuInfo->DisplayModel)) {
> +    if (CpuInfo->ProcessorInfo.Location.Thread != 0) {
> +      return RETURN_SUCCESS;
> +    }
> +  }
> +
>     CPU_REGISTER_TABLE_WRITE_FIELD (
>       ProcessorNumber,
>       Msr,
> diff --git a/UefiCpuPkg/Library/CpuCommonFeaturesLib/ExecuteDisable.c b/UefiCpuPkg/Library/CpuCommonFeaturesLib/ExecuteDisable.c
> index 921656a1e8..ff06cb9b60 100644
> --- a/UefiCpuPkg/Library/CpuCommonFeaturesLib/ExecuteDisable.c
> +++ b/UefiCpuPkg/Library/CpuCommonFeaturesLib/ExecuteDisable.c
> @@ -79,6 +79,16 @@ ExecuteDisableInitialize (
>     IN BOOLEAN                           State
>     )
>   {
> +  //
> +  // The scope of the MSR_IA32_EFER is core for below processor type, only program
> +  // MSR_IA32_EFER for thread 0 in each core.
> +  //
> +  if (IS_SILVERMONT_PROCESSOR (CpuInfo->DisplayFamily, CpuInfo->DisplayModel)) {
> +    if (CpuInfo->ProcessorInfo.Location.Thread != 0) {
> +      return RETURN_SUCCESS;
> +    }
> +  }
> +
>     CPU_REGISTER_TABLE_WRITE_FIELD (
>       ProcessorNumber,
>       Msr,
> diff --git a/UefiCpuPkg/Library/CpuCommonFeaturesLib/FastStrings.c b/UefiCpuPkg/Library/CpuCommonFeaturesLib/FastStrings.c
> index 029bcf87b3..2682093c23 100644
> --- a/UefiCpuPkg/Library/CpuCommonFeaturesLib/FastStrings.c
> +++ b/UefiCpuPkg/Library/CpuCommonFeaturesLib/FastStrings.c
> @@ -40,6 +40,18 @@ FastStringsInitialize (
>     IN BOOLEAN                           State
>     )
>   {
> +  //
> +  // The scope of FastStrings bit in the MSR_IA32_MISC_ENABLE is core for below processor type, only program
> +  // MSR_IA32_MISC_ENABLE for thread 0 in each core.
> +  //
> +  if (IS_SILVERMONT_PROCESSOR (CpuInfo->DisplayFamily, CpuInfo->DisplayModel) ||
> +      IS_GOLDMONT_PROCESSOR (CpuInfo->DisplayFamily, CpuInfo->DisplayModel) ||
> +      IS_PENTIUM_4_PROCESSOR (CpuInfo->DisplayFamily, CpuInfo->DisplayModel)) {
> +    if (CpuInfo->ProcessorInfo.Location.Thread != 0) {
> +      return RETURN_SUCCESS;
> +    }
> +  }
> +
>     CPU_REGISTER_TABLE_WRITE_FIELD (
>       ProcessorNumber,
>       Msr,
> diff --git a/UefiCpuPkg/Library/CpuCommonFeaturesLib/FeatureControl.c b/UefiCpuPkg/Library/CpuCommonFeaturesLib/FeatureControl.c
> index d28c4ec51a..8c1eb5eb4f 100644
> --- a/UefiCpuPkg/Library/CpuCommonFeaturesLib/FeatureControl.c
> +++ b/UefiCpuPkg/Library/CpuCommonFeaturesLib/FeatureControl.c
> @@ -96,6 +96,19 @@ VmxInitialize (
>   {
>     MSR_IA32_FEATURE_CONTROL_REGISTER    *MsrRegister;
>   
> +  //
> +  // The scope of EnableVmxOutsideSmx bit in the MSR_IA32_FEATURE_CONTROL is core for
> +  // below processor type, only program MSR_IA32_FEATURE_CONTROL for thread 0 in each
> +  // core.
> +  //
> +  if (IS_SILVERMONT_PROCESSOR (CpuInfo->DisplayFamily, CpuInfo->DisplayModel) ||
> +      IS_GOLDMONT_PROCESSOR (CpuInfo->DisplayFamily, CpuInfo->DisplayModel) ||
> +      IS_GOLDMONT_PLUS_PROCESSOR (CpuInfo->DisplayFamily, CpuInfo->DisplayModel)) {
> +    if (CpuInfo->ProcessorInfo.Location.Thread != 0) {
> +      return RETURN_SUCCESS;
> +    }
> +  }
> +
>     ASSERT (ConfigData != NULL);
>     MsrRegister = (MSR_IA32_FEATURE_CONTROL_REGISTER *) ConfigData;
>     if (MsrRegister[ProcessorNumber].Bits.Lock == 0) {
> @@ -171,6 +184,19 @@ LockFeatureControlRegisterInitialize (
>   {
>     MSR_IA32_FEATURE_CONTROL_REGISTER    *MsrRegister;
>   
> +  //
> +  // The scope of Lock bit in the MSR_IA32_FEATURE_CONTROL is core for
> +  // below processor type, only program MSR_IA32_FEATURE_CONTROL for thread 0 in each
> +  // core.
> +  //
> +  if (IS_SILVERMONT_PROCESSOR (CpuInfo->DisplayFamily, CpuInfo->DisplayModel) ||
> +      IS_GOLDMONT_PROCESSOR (CpuInfo->DisplayFamily, CpuInfo->DisplayModel) ||
> +      IS_GOLDMONT_PLUS_PROCESSOR (CpuInfo->DisplayFamily, CpuInfo->DisplayModel)) {
> +    if (CpuInfo->ProcessorInfo.Location.Thread != 0) {
> +      return RETURN_SUCCESS;
> +    }
> +  }
> +
>     ASSERT (ConfigData != NULL);
>     MsrRegister = (MSR_IA32_FEATURE_CONTROL_REGISTER *) ConfigData;
>     if (MsrRegister[ProcessorNumber].Bits.Lock == 0) {
> @@ -248,6 +274,18 @@ SmxInitialize (
>     MSR_IA32_FEATURE_CONTROL_REGISTER    *MsrRegister;
>     RETURN_STATUS                        Status;
>   
> +  //
> +  // The scope of Lock bit in the MSR_IA32_FEATURE_CONTROL is core for
> +  // below processor type, only program MSR_IA32_FEATURE_CONTROL for thread 0 in each
> +  // core.
> +  //
> +  if (IS_GOLDMONT_PROCESSOR (CpuInfo->DisplayFamily, CpuInfo->DisplayModel) ||
> +      IS_GOLDMONT_PLUS_PROCESSOR (CpuInfo->DisplayFamily, CpuInfo->DisplayModel)) {
> +    if (CpuInfo->ProcessorInfo.Location.Thread != 0) {
> +      return RETURN_SUCCESS;
> +    }
> +  }
> +
>     Status = RETURN_SUCCESS;
>   
>     if (State && (!IsCpuFeatureInSetting (CPU_FEATURE_VMX))) {
> diff --git a/UefiCpuPkg/Library/CpuCommonFeaturesLib/LimitCpuIdMaxval.c b/UefiCpuPkg/Library/CpuCommonFeaturesLib/LimitCpuIdMaxval.c
> index 3d41efe9e9..eab1fb538c 100644
> --- a/UefiCpuPkg/Library/CpuCommonFeaturesLib/LimitCpuIdMaxval.c
> +++ b/UefiCpuPkg/Library/CpuCommonFeaturesLib/LimitCpuIdMaxval.c
> @@ -70,6 +70,20 @@ LimitCpuidMaxvalInitialize (
>     IN BOOLEAN                           State
>     )
>   {
> +  //
> +  // The scope of LimitCpuidMaxval bit in the MSR_IA32_MISC_ENABLE is core for below
> +  // processor type, only program MSR_IA32_MISC_ENABLE for thread 0 in each core.
> +  //
> +  if (IS_PENTIUM_4_PROCESSOR (CpuInfo->DisplayFamily, CpuInfo->DisplayModel) ||
> 
> +      IS_SILVERMONT_PROCESSOR (CpuInfo->DisplayFamily, CpuInfo->DisplayModel) ||
> +      IS_GOLDMONT_PROCESSOR (CpuInfo->DisplayFamily, CpuInfo->DisplayModel) ||
> +      IS_CORE_PROCESSOR (CpuInfo->DisplayFamily, CpuInfo->DisplayModel) ||
> +      IS_CORE2_PROCESSOR (CpuInfo->DisplayFamily, CpuInfo->DisplayModel)) {
> +    if (CpuInfo->ProcessorInfo.Location.Thread != 0) {
> +      return RETURN_SUCCESS;
> +    }
> +  }
> +
>     CPU_REGISTER_TABLE_WRITE_FIELD (
>       ProcessorNumber,
>       Msr,
> diff --git a/UefiCpuPkg/Library/CpuCommonFeaturesLib/MachineCheck.c b/UefiCpuPkg/Library/CpuCommonFeaturesLib/MachineCheck.c
> index c4eca062fd..f8bee53819 100644
> --- a/UefiCpuPkg/Library/CpuCommonFeaturesLib/MachineCheck.c
> +++ b/UefiCpuPkg/Library/CpuCommonFeaturesLib/MachineCheck.c
> @@ -140,6 +140,32 @@ McaInitialize (
>     MSR_IA32_MCG_CAP_REGISTER  McgCap;
>     UINT32                     BankIndex;
>   
> +  //
> +  // The scope of MSR_IA32_MC*_CTL/MSR_IA32_MC*_STATUS is core for below processor type, only program
> +  // MSR_IA32_MC*_CTL/MSR_IA32_MC*_STATUS for thread 0 in each core.
> +  //
> +  if (IS_ATOM_PROCESSOR (CpuInfo->DisplayFamily, CpuInfo->DisplayModel) ||
> +      IS_SILVERMONT_PROCESSOR (CpuInfo->DisplayFamily, CpuInfo->DisplayModel) ||
> +      IS_SANDY_BRIDGE_PROCESSOR (CpuInfo->DisplayFamily, CpuInfo->DisplayModel) ||
> +      IS_SKYLAKE_PROCESSOR (CpuInfo->DisplayFamily, CpuInfo->DisplayModel) ||
> +      IS_XEON_PHI_PROCESSOR (CpuInfo->DisplayFamily, CpuInfo->DisplayModel) ||
> +      IS_PENTIUM_4_PROCESSOR (CpuInfo->DisplayFamily, CpuInfo->DisplayModel) ||
> +      IS_CORE_PROCESSOR (CpuInfo->DisplayFamily, CpuInfo->DisplayModel)) {
> +    if (CpuInfo->ProcessorInfo.Location.Thread != 0) {
> +      return RETURN_SUCCESS;
> +    }
> +  }
> +
> +  //
> +  // The scope of MSR_IA32_MC*_CTL/MSR_IA32_MC*_STATUS is package for below processor type, only program
> +  // MSR_IA32_MC*_CTL/MSR_IA32_MC*_STATUS for thread 0 core 0 in each package.
> +  //
> +  if (IS_NEHALEM_PROCESSOR (CpuInfo->DisplayFamily, CpuInfo->DisplayModel)) {
> +    if ((CpuInfo->ProcessorInfo.Location.Thread != 0) || (CpuInfo->ProcessorInfo.Location.Core != 0)) {
> +      return RETURN_SUCCESS;
> +    }
> +  }
> +
>     if (State) {
>       McgCap.Uint64 = AsmReadMsr64 (MSR_IA32_MCG_CAP);
>       for (BankIndex = 0; BankIndex < (UINT32) McgCap.Bits.Count; BankIndex++) {
> @@ -301,6 +327,18 @@ LmceInitialize (
>   {
>     MSR_IA32_FEATURE_CONTROL_REGISTER    *MsrRegister;
>   
> +  //
> +  // The scope of FastStrings bit in the MSR_IA32_MISC_ENABLE is core for below processor type, only program
> +  // MSR_IA32_MISC_ENABLE for thread 0 in each core.
> +  //
> +  if (IS_SILVERMONT_PROCESSOR (CpuInfo->DisplayFamily, CpuInfo->DisplayModel) ||
> +      IS_GOLDMONT_PROCESSOR (CpuInfo->DisplayFamily, CpuInfo->DisplayModel) ||
> +      IS_PENTIUM_4_PROCESSOR (CpuInfo->DisplayFamily, CpuInfo->DisplayModel)) {
> +    if (CpuInfo->ProcessorInfo.Location.Thread != 0) {
> +      return RETURN_SUCCESS;
> +    }
> +  }
> +
>     ASSERT (ConfigData != NULL);
>     MsrRegister = (MSR_IA32_FEATURE_CONTROL_REGISTER *) ConfigData;
>     if (MsrRegister[ProcessorNumber].Bits.Lock == 0) {
> diff --git a/UefiCpuPkg/Library/CpuCommonFeaturesLib/MonitorMwait.c b/UefiCpuPkg/Library/CpuCommonFeaturesLib/MonitorMwait.c
> index 1d43bd128a..530748bf46 100644
> --- a/UefiCpuPkg/Library/CpuCommonFeaturesLib/MonitorMwait.c
> +++ b/UefiCpuPkg/Library/CpuCommonFeaturesLib/MonitorMwait.c
> @@ -67,6 +67,21 @@ MonitorMwaitInitialize (
>     IN BOOLEAN                           State
>     )
>   {
> +  //
> +  // The scope of the MSR_IA32_MISC_ENABLE is core for below processor type, only program
> +  // MSR_IA32_MISC_ENABLE for thread 0 in each core.
> +  //
> +  if (IS_CORE2_PROCESSOR (CpuInfo->DisplayFamily, CpuInfo->DisplayModel) ||
> +      IS_ATOM_PROCESSOR (CpuInfo->DisplayFamily, CpuInfo->DisplayModel) ||
> +      IS_GOLDMONT_PROCESSOR (CpuInfo->DisplayFamily, CpuInfo->DisplayModel) ||
> +      IS_SILVERMONT_PROCESSOR (CpuInfo->DisplayFamily, CpuInfo->DisplayModel) ||
> +      IS_PENTIUM_4_PROCESSOR (CpuInfo->DisplayFamily, CpuInfo->DisplayModel) ||
> +      IS_CORE_PROCESSOR (CpuInfo->DisplayFamily, CpuInfo->DisplayModel)) {
> +    if (CpuInfo->ProcessorInfo.Location.Thread != 0) {
> +      return RETURN_SUCCESS;
> +    }
> +  }
> +
>     CPU_REGISTER_TABLE_WRITE_FIELD (
>       ProcessorNumber,
>       Msr,
> diff --git a/UefiCpuPkg/Library/CpuCommonFeaturesLib/PendingBreak.c b/UefiCpuPkg/Library/CpuCommonFeaturesLib/PendingBreak.c
> index 8cafba4f4a..2e0d2bdeca 100644
> --- a/UefiCpuPkg/Library/CpuCommonFeaturesLib/PendingBreak.c
> +++ b/UefiCpuPkg/Library/CpuCommonFeaturesLib/PendingBreak.c
> @@ -74,6 +74,17 @@ PendingBreakInitialize (
>     IN BOOLEAN                           State
>     )
>   {
> +  //
> +  // The scope of the MSR_ATOM_IA32_MISC_ENABLE is core for below processor type, only program
> +  // MSR_ATOM_IA32_MISC_ENABLE for thread 0 in each core.
> +  //
> +  // Support function has check the processer type for this feature, no need to check again
> +  // here.
> +  //
> +  if (CpuInfo->ProcessorInfo.Location.Thread != 0) {
> +    return RETURN_SUCCESS;
> +  }
> +
>     //
>     // ATOM, CORE2, CORE, PENTIUM_4 and IS_PENTIUM_M_PROCESSOR have the same MSR index,
>     // Simply use MSR_ATOM_IA32_MISC_ENABLE here
> diff --git a/UefiCpuPkg/Library/CpuCommonFeaturesLib/Ppin.c b/UefiCpuPkg/Library/CpuCommonFeaturesLib/Ppin.c
> index 721470cdfe..d6219f4f3f 100644
> --- a/UefiCpuPkg/Library/CpuCommonFeaturesLib/Ppin.c
> +++ b/UefiCpuPkg/Library/CpuCommonFeaturesLib/Ppin.c
> @@ -101,6 +101,17 @@ PpinInitialize (
>       return MsrPpinCtrl.Bits.Enable_PPIN == State ? RETURN_SUCCESS : RETURN_DEVICE_ERROR;
>     }
>   
> +  //
> +  // Support function already check the processor which support PPIN feature, so this function not need
> +  // to check the processor again.
> +  //
> +  // The scope of the MSR_IVY_BRIDGE_PPIN_CTL is package level, only program MSR_IVY_BRIDGE_PPIN_CTL for
> +  // thread 0 core 0 in each package.
> +  //
> +  if ((CpuInfo->ProcessorInfo.Location.Thread != 0) || (CpuInfo->ProcessorInfo.Location.Core != 0)) {
> +    return RETURN_SUCCESS;
> +  }
> +
>     CPU_REGISTER_TABLE_WRITE_FIELD (
>       ProcessorNumber,
>       Msr,
> diff --git a/UefiCpuPkg/Library/CpuCommonFeaturesLib/ProcTrace.c b/UefiCpuPkg/Library/CpuCommonFeaturesLib/ProcTrace.c
> index 98490c6777..cf34ad4d1f 100644
> --- a/UefiCpuPkg/Library/CpuCommonFeaturesLib/ProcTrace.c
> +++ b/UefiCpuPkg/Library/CpuCommonFeaturesLib/ProcTrace.c
> @@ -191,6 +191,17 @@ ProcTraceInitialize (
>     MSR_IA32_RTIT_OUTPUT_MASK_PTRS_REGISTER  OutputMaskPtrsReg;
>     RTIT_TOPA_TABLE_ENTRY                *TopaEntryPtr;
>   
> +  //
> +  // The scope of the MSR_IA32_RTIT_* is core for below processor type, only program
> +  // MSR_IA32_RTIT_* for thread 0 in each core.
> +  //
> +  if (IS_GOLDMONT_PROCESSOR (CpuInfo->DisplayFamily, CpuInfo->DisplayModel) ||
> +      IS_GOLDMONT_PLUS_PROCESSOR (CpuInfo->DisplayFamily, CpuInfo->DisplayModel)) {
> +    if (CpuInfo->ProcessorInfo.Location.Thread != 0) {
> +      return RETURN_SUCCESS;
> +    }
> +  }
> +
>     ProcTraceData = (PROC_TRACE_DATA *) ConfigData;
>     ASSERT (ProcTraceData != NULL);
>   
> diff --git a/UefiCpuPkg/Library/CpuCommonFeaturesLib/X2Apic.c b/UefiCpuPkg/Library/CpuCommonFeaturesLib/X2Apic.c
> index b4a453c352..342b45f25b 100644
> --- a/UefiCpuPkg/Library/CpuCommonFeaturesLib/X2Apic.c
> +++ b/UefiCpuPkg/Library/CpuCommonFeaturesLib/X2Apic.c
> @@ -102,6 +102,16 @@ X2ApicInitialize (
>   {
>     BOOLEAN                            *X2ApicEnabled;
>   
> +  //
> +  // The scope of the MSR_IA32_APIC_BASE is core for below processor type, only program
> +  // MSR_IA32_APIC_BASE for thread 0 in each core.
> +  //
> +  if (IS_SILVERMONT_PROCESSOR (CpuInfo->DisplayFamily, CpuInfo->DisplayModel)) {
> +    if (CpuInfo->ProcessorInfo.Location.Thread != 0) {
> +      return RETURN_SUCCESS;
> +    }
> +  }
> +
>     ASSERT (ConfigData != NULL);
>     X2ApicEnabled = (BOOLEAN *) ConfigData;
>     if (X2ApicEnabled[ProcessorNumber]) {
> 
Reviewed-by: Ruiyu Ni <ruiyu.ni@intel.com>

-- 
Thanks,
Ray


  reply	other threads:[~2018-10-18  6:00 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-10-17  2:16 [Patch v2 0/6] Fix performance issue caused by Set MSR task Eric Dong
2018-10-17  2:16 ` [Patch v2 1/6] UefiCpuPkg/Include/AcpiCpuData.h: Add Semaphore related Information Eric Dong
2018-10-18  3:04   ` Ni, Ruiyu
2018-10-18  3:10   ` Ni, Ruiyu
2018-10-17  2:16 ` [Patch v2 2/6] UefiCpuPkg/RegisterCpuFeaturesLib.h: Add new dependence types Eric Dong
2018-10-18  3:31   ` Ni, Ruiyu
2018-10-17  2:16 ` [Patch v2 3/6] UefiCpuPkg/RegisterCpuFeaturesLib: Add logic to support semaphore type Eric Dong
2018-10-18  5:46   ` Ni, Ruiyu
2018-10-17  2:16 ` [Patch v2 4/6] UefiCpuPkg/PiSmmCpuDxeSmm: " Eric Dong
2018-10-18  5:54   ` Ni, Ruiyu
2018-10-17  2:16 ` [Patch v2 5/6] UefiCpuPkg/CpuS3DataDxe: Keep old data if value already existed Eric Dong
2018-10-18  5:57   ` Ni, Ruiyu
2018-10-17  2:16 ` [Patch v2 6/6] UefiCpuPkg/CpuCommonFeaturesLib: Register MSR base on scope Info Eric Dong
2018-10-18  6:01   ` Ni, Ruiyu [this message]
2018-10-17 17:33 ` [Patch v2 0/6] Fix performance issue caused by Set MSR task Laszlo Ersek
2018-10-18  7:36   ` Dong, Eric
2018-10-18  2:12 ` Ni, Ruiyu
2018-10-18  2:35   ` Dong, Eric

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=aa8b7eb1-48c5-6d39-3b48-d0b15b4e9b11@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