From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail02.groups.io (mail02.groups.io [66.175.222.108]) by spool.mail.gandi.net (Postfix) with ESMTPS id D14B0940F0D for ; Wed, 13 Sep 2023 04:26:58 +0000 (UTC) DKIM-Signature: a=rsa-sha256; bh=zjp9Mc3j9SXG4IyJnKyN8FEIZLXoIp0ZFw1Wh9S7VpU=; c=relaxed/simple; d=groups.io; h=From:To:Subject:Date:Message-Id:MIME-Version:Precedence:List-Subscribe:List-Help:Sender:List-Id:Mailing-List:Delivered-To:Reply-To:List-Unsubscribe-Post:List-Unsubscribe:Content-Transfer-Encoding; s=20140610; t=1694579217; v=1; b=XvhjAWCCQyq7z+kMWhv5WKgJYsJ96sS+QS6slJt/QeK0jAVDHJ8JT9OXmEgWAMzWkNFth6J3 KQ4PsDNZcuen7lI68JTH3gcMuroR8wpNISwITZYWyQY15q5Tg6E0ncjonsBJZAZggoPrertyOhC OLkZreYElIY4dU6kqPr/1US8= X-Received: by 127.0.0.2 with SMTP id xqEPYY7687511xLGoFyglz8V; Tue, 12 Sep 2023 21:26:57 -0700 X-Received: from mgamail.intel.com (mgamail.intel.com [134.134.136.126]) by mx.groups.io with SMTP id smtpd.web11.4645.1694579216558329653 for ; Tue, 12 Sep 2023 21:26:56 -0700 X-IronPort-AV: E=McAfee;i="6600,9927,10831"; a="363595388" X-IronPort-AV: E=Sophos;i="6.02,142,1688454000"; d="scan'208";a="363595388" X-Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orsmga106.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 12 Sep 2023 21:26:55 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10831"; a="859093598" X-IronPort-AV: E=Sophos;i="6.02,142,1688454000"; d="scan'208";a="859093598" X-Received: from shwdeopenlab705.ccr.corp.intel.com ([10.239.55.100]) by fmsmga002-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 12 Sep 2023 21:26:54 -0700 From: "Yuanhao Xie" To: devel@edk2.groups.io Subject: [edk2-devel] [PATCH 00/16] MtrrLib modules and Unit test Enhancement Date: Wed, 13 Sep 2023 12:26:23 +0800 Message-Id: <20230913042639.2066-1-yuanhao.xie@intel.com> MIME-Version: 1.0 Precedence: Bulk List-Subscribe: List-Help: Sender: devel@edk2.groups.io List-Id: Mailing-List: list devel@edk2.groups.io; contact devel+owner@edk2.groups.io Reply-To: devel@edk2.groups.io,yuanhao.xie@intel.com List-Unsubscribe-Post: List-Unsubscribe=One-Click List-Unsubscribe: X-Gm-Message-State: FIEN1rAlI90sOINJwwkjGeDdx7686176AA= Content-Transfer-Encoding: 8bit X-GND-Status: LEGIT Authentication-Results: spool.mail.gandi.net; dkim=pass header.d=groups.io header.s=20140610 header.b=XvhjAWCC; dmarc=fail reason="SPF not aligned (relaxed), DKIM not aligned (relaxed)" header.from=intel.com (policy=none); spf=pass (spool.mail.gandi.net: domain of bounce@groups.io designates 66.175.222.108 as permitted sender) smtp.mailfrom=bounce@groups.io Update MtrrLib modules to handle the absense of Fixed MTRRs Update unit test of Update for the absense of Fixed MTRRs Ray Ni (6): UefiCpuPkg/MtrrLib: Add internal function MtrrLibIsMtrrSupported. UefiCpuPkg/MtrrUnitTest: Update test to cover no-fixed-mtrr cases. UefiCpuPkg/MtrrLib: Fix MtrrGetAllMtrrs to return correct MTRR setting. UefiCpuPkg/MtrrLib: Fix MtrrSetAllMtrrs to handle absent fixed MTRRs. UefiCpuPkg/MtrrLib: Update APIs related to set memory attributes. UefiCpuPkg/CpuDxe: Update RefreshMemoryAttributesFromMtrr. YuanhaoXie (10): UefiCpuPkg/MtrrUnitTest: Update the Unit Test for IsMtrrSupported(). UefiCpuPkg/MtrrUnitTest: Update UnitTestGetFirmwareVariableMtrrCount. UefiCpuPkg/MtrrUnitTest: Update UnitTestMtrrGetDefaultMemoryType. UefiCpuPkg/MtrrUnitTest: Update UnitTestMtrrGetAllMtrrs(). UefiCpuPkg/MtrrLib: Update MtrrGetFixedMtrr(). UefiCpuPkg/MtrrUnitTest: Update UnitTestMtrrGetFixedMtrr(). UefiCpuPkg/MtrrUnitTest: Update UnitTestMtrrSetAllMtrrs(). UefiCpuPkg/MtrrLib: Add API MtrrGetMemoryAttributesInMtrrSettings. UefiCpuPkg/MtrrLib: Improve MtrrDebugPrintAllMtrrsWorker. UefiCpuPkg/MtrrUnitTest: Add Unit test of setting/getting memory attributes UefiCpuPkg/CpuDxe/CpuDxe.c | 309 ++++++++++++++++++++++++++++++++++++--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- UefiCpuPkg/Include/Library/MtrrLib.h | 32 +++++++++++++++++++++++++++++--- UefiCpuPkg/Library/MtrrLib/MtrrLib.c | 391 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++--------------------------------------------------------------------------------------------------------------------- UefiCpuPkg/Library/MtrrLib/UnitTest/MtrrLibUnitTest.c | 244 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------------------------------------------------ UefiCpuPkg/Library/MtrrLib/UnitTest/Support.c | 24 +++++++++++++++--------- 5 files changed, 532 insertions(+), 468 deletions(-) -- 2.36.1.windows.1 -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#108556): https://edk2.groups.io/g/devel/message/108556 Mute This Topic: https://groups.io/mt/101331015/7686176 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io] -=-=-=-=-=-=-=-=-=-=-=-