mirror of https://github.com/acidanthera/audk.git
UefiCpuPkg/MtrrTest: Only claim CPUID max leaf as 1
MtrrLib code queries the CPUID leaf 7h result if support. Update Test code temporary to claim the CPUID only supports max leaf as 1 so MtrrLib skips to query CPUID leaf 7h. Signed-off-by: Ray Ni <ray.ni@intel.com> Cc: Eric Dong <eric.dong@intel.com> Cc: Rahul Kumar <rahul1.kumar@intel.com> Cc: Gerd Hoffmann <kraxel@redhat.com> Cc: Michael D Kinney <michael.d.kinney@intel.com> Cc: Ahmad Anadani <ahmad.anadani@intel.com> Acked-by: Gerd Hoffmann <kraxel@redhat.com> Reviewed-by: Michael D Kinney <michael.d.kinney@intel.com>
This commit is contained in:
parent
24f57f9648
commit
bb5c115fa6
|
@ -1,7 +1,7 @@
|
||||||
/** @file
|
/** @file
|
||||||
Unit tests of the MtrrLib instance of the MtrrLib class
|
Unit tests of the MtrrLib instance of the MtrrLib class
|
||||||
|
|
||||||
Copyright (c) 2018 - 2020, Intel Corporation. All rights reserved.<BR>
|
Copyright (c) 2018 - 2023, Intel Corporation. All rights reserved.<BR>
|
||||||
SPDX-License-Identifier: BSD-2-Clause-Patent
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
||||||
|
|
||||||
**/
|
**/
|
||||||
|
@ -122,6 +122,13 @@ UnitTestMtrrLibAsmCpuid (
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
switch (Index) {
|
switch (Index) {
|
||||||
|
case CPUID_SIGNATURE:
|
||||||
|
if (Eax != NULL) {
|
||||||
|
*Eax = CPUID_VERSION_INFO;
|
||||||
|
}
|
||||||
|
|
||||||
|
return Index;
|
||||||
|
break;
|
||||||
case CPUID_VERSION_INFO:
|
case CPUID_VERSION_INFO:
|
||||||
if (Edx != NULL) {
|
if (Edx != NULL) {
|
||||||
*Edx = mCpuidVersionInfoEdx.Uint32;
|
*Edx = mCpuidVersionInfoEdx.Uint32;
|
||||||
|
|
Loading…
Reference in New Issue