public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "Laszlo Ersek" <lersek@redhat.com>
To: devel@edk2.groups.io, eric.dong@intel.com
Cc: Ray Ni <ray.ni@intel.com>
Subject: Re: [edk2-devel] [Patch v2 6/6] UefiCpuPkg/CpuCommonFeaturesLib: Use new macros.
Date: Tue, 13 Aug 2019 12:28:21 +0200	[thread overview]
Message-ID: <98fc100d-429a-b60b-301b-4818d0204c40@redhat.com> (raw)
In-Reply-To: <20190812103152.35164-7-eric.dong@intel.com>

On 08/12/19 12:31, Dong, Eric wrote:
> REF: https://bugzilla.tianocore.org/show_bug.cgi?id=2040
> 
> Below code is current implementation:
>   if (MsrRegister[ProcessorNumber].Bits.Lock == 0) {
>     CPU_REGISTER_TABLE_WRITE_FIELD (
>       ProcessorNumber,
>       Msr,
>       MSR_IA32_FEATURE_CONTROL,
>       MSR_IA32_FEATURE_CONTROL_REGISTER,
>       Bits.Lock,
>       1
>     );
>   }
> 
> 1. In first normal boot, the Bits.Lock is 0, 1 will be added
>    into the register table and then will set to the MSR.
> 2. Trig warm reboot, MSR value preserves. After normal boot phase,
>    the Bits.Lock is 1, so it will not be added into the register
>    table during the warm reboot phase.
> 3. Trig S3 then resume, the Bits.Lock change to 0 and Bits.Lock is
>    not added in register table, so it's still 0 after resume. This
>    is not an expect behavior. The expect value is the value should
>    always 1 after booting or resuming from S3.
> 
> The root cause for this issue is
> 1. driver bases on current value to insert the "set value action" to
>    the register table.
> 2. Some MSRs may reserve their value during warm reboot.
> 
> The solution for this issue is using new added macros for the MSRs which
> preserve value during warm reboot.
> 
> Signed-off-by: Eric Dong <eric.dong@intel.com>
> Cc: Ray Ni <ray.ni@intel.com>
> Cc: Laszlo Ersek <lersek@redhat.com>
> ---
>  .../CpuCommonFeaturesLib/CpuCommonFeatures.h  |  15 --
>  .../CpuCommonFeaturesLib.c                    |   8 +-
>  .../CpuCommonFeaturesLib/FeatureControl.c     | 141 ++++++------------
>  .../CpuCommonFeaturesLib/MachineCheck.c       |  23 ++-
>  4 files changed, 58 insertions(+), 129 deletions(-)
> 
> diff --git a/UefiCpuPkg/Library/CpuCommonFeaturesLib/CpuCommonFeatures.h b/UefiCpuPkg/Library/CpuCommonFeaturesLib/CpuCommonFeatures.h
> index 25d0174727..b2390e6c39 100644
> --- a/UefiCpuPkg/Library/CpuCommonFeaturesLib/CpuCommonFeatures.h
> +++ b/UefiCpuPkg/Library/CpuCommonFeaturesLib/CpuCommonFeatures.h
> @@ -848,21 +848,6 @@ X2ApicInitialize (
>    IN BOOLEAN                           State
>    );
>  
> -/**
> -  Prepares for the data used by CPU feature detection and initialization.
> -
> -  @param[in]  NumberOfProcessors  The number of CPUs in the platform.
> -
> -  @return  Pointer to a buffer of CPU related configuration data.
> -
> -  @note This service could be called by BSP only.
> -**/
> -VOID *
> -EFIAPI
> -FeatureControlGetConfigData (
> -  IN UINTN               NumberOfProcessors
> -  );
> -
>  /**
>    Prepares for the data used by CPU feature detection and initialization.
>  
> diff --git a/UefiCpuPkg/Library/CpuCommonFeaturesLib/CpuCommonFeaturesLib.c b/UefiCpuPkg/Library/CpuCommonFeaturesLib/CpuCommonFeaturesLib.c
> index fd43b8d662..f0dd3a3b43 100644
> --- a/UefiCpuPkg/Library/CpuCommonFeaturesLib/CpuCommonFeaturesLib.c
> +++ b/UefiCpuPkg/Library/CpuCommonFeaturesLib/CpuCommonFeaturesLib.c
> @@ -91,7 +91,7 @@ CpuCommonFeaturesLibConstructor (
>    if (IsCpuFeatureSupported (CPU_FEATURE_LOCK_FEATURE_CONTROL_REGISTER)) {
>      Status = RegisterCpuFeature (
>                 "Lock Feature Control Register",
> -               FeatureControlGetConfigData,
> +               NULL,
>                 LockFeatureControlRegisterSupport,
>                 LockFeatureControlRegisterInitialize,
>                 CPU_FEATURE_LOCK_FEATURE_CONTROL_REGISTER,
> @@ -102,7 +102,7 @@ CpuCommonFeaturesLibConstructor (
>    if (IsCpuFeatureSupported (CPU_FEATURE_SMX)) {
>      Status = RegisterCpuFeature (
>                 "SMX",
> -               FeatureControlGetConfigData,
> +               NULL,
>                 SmxSupport,
>                 SmxInitialize,
>                 CPU_FEATURE_SMX,
> @@ -114,7 +114,7 @@ CpuCommonFeaturesLibConstructor (
>    if (IsCpuFeatureSupported (CPU_FEATURE_VMX)) {
>      Status = RegisterCpuFeature (
>                 "VMX",
> -               FeatureControlGetConfigData,
> +               NULL,
>                 VmxSupport,
>                 VmxInitialize,
>                 CPU_FEATURE_VMX,
> @@ -214,7 +214,7 @@ CpuCommonFeaturesLibConstructor (
>    if (IsCpuFeatureSupported (CPU_FEATURE_LMCE)) {
>      Status = RegisterCpuFeature (
>                 "LMCE",
> -               FeatureControlGetConfigData,
> +               NULL,
>                 LmceSupport,
>                 LmceInitialize,
>                 CPU_FEATURE_LMCE,
> diff --git a/UefiCpuPkg/Library/CpuCommonFeaturesLib/FeatureControl.c b/UefiCpuPkg/Library/CpuCommonFeaturesLib/FeatureControl.c
> index 3712ef1e5c..6679df8ba4 100644
> --- a/UefiCpuPkg/Library/CpuCommonFeaturesLib/FeatureControl.c
> +++ b/UefiCpuPkg/Library/CpuCommonFeaturesLib/FeatureControl.c
> @@ -8,28 +8,6 @@
>  
>  #include "CpuCommonFeatures.h"
>  
> -/**
> -  Prepares for the data used by CPU feature detection and initialization.
> -
> -  @param[in]  NumberOfProcessors  The number of CPUs in the platform.
> -
> -  @return  Pointer to a buffer of CPU related configuration data.
> -
> -  @note This service could be called by BSP only.
> -**/
> -VOID *
> -EFIAPI
> -FeatureControlGetConfigData (
> -  IN UINTN               NumberOfProcessors
> -  )
> -{
> -  VOID          *ConfigData;
> -
> -  ConfigData = AllocateZeroPool (sizeof (MSR_IA32_FEATURE_CONTROL_REGISTER) * NumberOfProcessors);
> -  ASSERT (ConfigData != NULL);
> -  return ConfigData;
> -}
> -
>  /**
>    Detects if VMX feature supported on current processor.
>  
> @@ -54,11 +32,6 @@ VmxSupport (
>    IN VOID                              *ConfigData  OPTIONAL
>    )
>  {
> -  MSR_IA32_FEATURE_CONTROL_REGISTER    *MsrRegister;
> -
> -  ASSERT (ConfigData != NULL);
> -  MsrRegister = (MSR_IA32_FEATURE_CONTROL_REGISTER *) ConfigData;
> -  MsrRegister[ProcessorNumber].Uint64 = AsmReadMsr64 (MSR_IA32_FEATURE_CONTROL);
>    return (CpuInfo->CpuIdVersionInfoEcx.Bits.VMX == 1);
>  }
>  
> @@ -88,8 +61,6 @@ VmxInitialize (
>    IN BOOLEAN                           State
>    )
>  {
> -  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
> @@ -103,18 +74,15 @@ VmxInitialize (
>      }
>    }
>  
> -  ASSERT (ConfigData != NULL);
> -  MsrRegister = (MSR_IA32_FEATURE_CONTROL_REGISTER *) ConfigData;
> -  if (MsrRegister[ProcessorNumber].Bits.Lock == 0) {
> -    CPU_REGISTER_TABLE_WRITE_FIELD (
> -      ProcessorNumber,
> -      Msr,
> -      MSR_IA32_FEATURE_CONTROL,
> -      MSR_IA32_FEATURE_CONTROL_REGISTER,
> -      Bits.EnableVmxOutsideSmx,
> -      (State) ? 1 : 0
> -      );
> -  }
> +  CPU_REGISTER_TABLE_TEST_THEN_WRITE_FIELD (
> +    ProcessorNumber,
> +    Msr,
> +    MSR_IA32_FEATURE_CONTROL,
> +    MSR_IA32_FEATURE_CONTROL_REGISTER,
> +    Bits.EnableVmxOutsideSmx,
> +    (State) ? 1 : 0
> +    );
> +
>    return RETURN_SUCCESS;
>  }
>  
> @@ -142,11 +110,6 @@ LockFeatureControlRegisterSupport (
>    IN VOID                              *ConfigData  OPTIONAL
>    )
>  {
> -  MSR_IA32_FEATURE_CONTROL_REGISTER    *MsrRegister;
> -
> -  ASSERT (ConfigData != NULL);
> -  MsrRegister = (MSR_IA32_FEATURE_CONTROL_REGISTER *) ConfigData;
> -  MsrRegister[ProcessorNumber].Uint64 = AsmReadMsr64 (MSR_IA32_FEATURE_CONTROL);
>    return TRUE;
>  }
>  
> @@ -176,8 +139,6 @@ LockFeatureControlRegisterInitialize (
>    IN BOOLEAN                           State
>    )
>  {
> -  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
> @@ -191,18 +152,15 @@ LockFeatureControlRegisterInitialize (
>      }
>    }
>  
> -  ASSERT (ConfigData != NULL);
> -  MsrRegister = (MSR_IA32_FEATURE_CONTROL_REGISTER *) ConfigData;
> -  if (MsrRegister[ProcessorNumber].Bits.Lock == 0) {
> -    CPU_REGISTER_TABLE_WRITE_FIELD (
> -      ProcessorNumber,
> -      Msr,
> -      MSR_IA32_FEATURE_CONTROL,
> -      MSR_IA32_FEATURE_CONTROL_REGISTER,
> -      Bits.Lock,
> -      1
> -      );
> -  }
> +  CPU_REGISTER_TABLE_TEST_THEN_WRITE_FIELD (
> +    ProcessorNumber,
> +    Msr,
> +    MSR_IA32_FEATURE_CONTROL,
> +    MSR_IA32_FEATURE_CONTROL_REGISTER,
> +    Bits.Lock,
> +    1
> +    );
> +
>    return RETURN_SUCCESS;
>  }
>  
> @@ -230,11 +188,6 @@ SmxSupport (
>    IN VOID                              *ConfigData  OPTIONAL
>    )
>  {
> -  MSR_IA32_FEATURE_CONTROL_REGISTER    *MsrRegister;
> -
> -  ASSERT (ConfigData != NULL);
> -  MsrRegister = (MSR_IA32_FEATURE_CONTROL_REGISTER *) ConfigData;
> -  MsrRegister[ProcessorNumber].Uint64 = AsmReadMsr64 (MSR_IA32_FEATURE_CONTROL);
>    return (CpuInfo->CpuIdVersionInfoEcx.Bits.SMX == 1);
>  }
>  
> @@ -265,7 +218,6 @@ SmxInitialize (
>    IN BOOLEAN                           State
>    )
>  {
> -  MSR_IA32_FEATURE_CONTROL_REGISTER    *MsrRegister;
>    RETURN_STATUS                        Status;
>  
>    //
> @@ -288,35 +240,32 @@ SmxInitialize (
>      Status = RETURN_UNSUPPORTED;
>    }
>  
> -  ASSERT (ConfigData != NULL);
> -  MsrRegister = (MSR_IA32_FEATURE_CONTROL_REGISTER *) ConfigData;
> -  if (MsrRegister[ProcessorNumber].Bits.Lock == 0) {
> -    CPU_REGISTER_TABLE_WRITE_FIELD (
> -      ProcessorNumber,
> -      Msr,
> -      MSR_IA32_FEATURE_CONTROL,
> -      MSR_IA32_FEATURE_CONTROL_REGISTER,
> -      Bits.SenterLocalFunctionEnables,
> -      (State) ? 0x7F : 0
> -      );
> -
> -    CPU_REGISTER_TABLE_WRITE_FIELD (
> -      ProcessorNumber,
> -      Msr,
> -      MSR_IA32_FEATURE_CONTROL,
> -      MSR_IA32_FEATURE_CONTROL_REGISTER,
> -      Bits.SenterGlobalEnable,
> -      (State) ? 1 : 0
> -      );
> -
> -    CPU_REGISTER_TABLE_WRITE_FIELD (
> -      ProcessorNumber,
> -      Msr,
> -      MSR_IA32_FEATURE_CONTROL,
> -      MSR_IA32_FEATURE_CONTROL_REGISTER,
> -      Bits.EnableVmxInsideSmx,
> -      (State) ? 1 : 0
> -      );
> -  }
> +  CPU_REGISTER_TABLE_TEST_THEN_WRITE_FIELD (
> +    ProcessorNumber,
> +    Msr,
> +    MSR_IA32_FEATURE_CONTROL,
> +    MSR_IA32_FEATURE_CONTROL_REGISTER,
> +    Bits.SenterLocalFunctionEnables,
> +    (State) ? 0x7F : 0
> +    );
> +
> +  CPU_REGISTER_TABLE_TEST_THEN_WRITE_FIELD (
> +    ProcessorNumber,
> +    Msr,
> +    MSR_IA32_FEATURE_CONTROL,
> +    MSR_IA32_FEATURE_CONTROL_REGISTER,
> +    Bits.SenterGlobalEnable,
> +    (State) ? 1 : 0
> +    );
> +
> +  CPU_REGISTER_TABLE_TEST_THEN_WRITE_FIELD (
> +    ProcessorNumber,
> +    Msr,
> +    MSR_IA32_FEATURE_CONTROL,
> +    MSR_IA32_FEATURE_CONTROL_REGISTER,
> +    Bits.EnableVmxInsideSmx,
> +    (State) ? 1 : 0
> +    );
> +
>    return Status;
>  }
> diff --git a/UefiCpuPkg/Library/CpuCommonFeaturesLib/MachineCheck.c b/UefiCpuPkg/Library/CpuCommonFeaturesLib/MachineCheck.c
> index 2528e0044e..01fd6bb54d 100644
> --- a/UefiCpuPkg/Library/CpuCommonFeaturesLib/MachineCheck.c
> +++ b/UefiCpuPkg/Library/CpuCommonFeaturesLib/MachineCheck.c
> @@ -319,8 +319,6 @@ LmceInitialize (
>    IN BOOLEAN                           State
>    )
>  {
> -  MSR_IA32_FEATURE_CONTROL_REGISTER    *MsrRegister;
> -
>    //
>    // The scope of LcmeOn 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.
> @@ -333,17 +331,14 @@ LmceInitialize (
>      }
>    }
>  
> -  ASSERT (ConfigData != NULL);
> -  MsrRegister = (MSR_IA32_FEATURE_CONTROL_REGISTER *) ConfigData;
> -  if (MsrRegister[ProcessorNumber].Bits.Lock == 0) {
> -    CPU_REGISTER_TABLE_WRITE_FIELD (
> -      ProcessorNumber,
> -      Msr,
> -      MSR_IA32_FEATURE_CONTROL,
> -      MSR_IA32_FEATURE_CONTROL_REGISTER,
> -      Bits.LmceOn,
> -      (State) ? 1 : 0
> -      );
> -  }
> +  CPU_REGISTER_TABLE_TEST_THEN_WRITE_FIELD (
> +    ProcessorNumber,
> +    Msr,
> +    MSR_IA32_FEATURE_CONTROL,
> +    MSR_IA32_FEATURE_CONTROL_REGISTER,
> +    Bits.LmceOn,
> +    (State) ? 1 : 0
> +    );
> +
>    return RETURN_SUCCESS;
>  }
> 

Acked-by: Laszlo Ersek <lersek@redhat.com>

  reply	other threads:[~2019-08-13 10:28 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-08-12 10:31 [Patch v2 0/6] Add "test then write" mechanism Dong, Eric
2019-08-12 10:31 ` [Patch v2 1/6] UefiCpuPkg/RegisterCpuFeaturesLib: Add "Test Then Write" Macros Dong, Eric
2019-08-13 10:27   ` [edk2-devel] " Laszlo Ersek
2019-08-12 10:31 ` [Patch v2 2/6] UefiCpuPkg/PiSmmCpuDxeSmm: Combine CR read/write action in one function Dong, Eric
2019-08-12 14:07   ` Laszlo Ersek
2019-08-12 10:31 ` [Patch v2 3/6] UefiCpuPkg/PiSmmCpuDxeSmm: Supports test then write new value logic Dong, Eric
2019-08-12 14:13   ` Laszlo Ersek
2019-08-12 10:31 ` [Patch v2 4/6] UefiCpuPkg/RegisterCpuFeaturesLib: Combine CR read/write action in one function Dong, Eric
2019-08-13 10:28   ` [edk2-devel] " Laszlo Ersek
2019-08-12 10:31 ` [Patch v2 5/6] UefiCpuPkg/RegisterCpuFeaturesLib: Supports test then write new value logic Dong, Eric
2019-08-13 10:28   ` [edk2-devel] " Laszlo Ersek
2019-08-12 10:31 ` [Patch v2 6/6] UefiCpuPkg/CpuCommonFeaturesLib: Use new macros Dong, Eric
2019-08-13 10:28   ` Laszlo Ersek [this message]
2019-08-12 14:15 ` [Patch v2 0/6] Add "test then write" mechanism Laszlo Ersek
2019-08-13  2:29   ` [edk2-devel] " Dong, Eric
2019-08-14  7:27     ` Liming Gao
2019-08-14  7:31       ` 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=98fc100d-429a-b60b-301b-4818d0204c40@redhat.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