From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id B382A20945B78 for ; Sat, 16 Sep 2017 05:16:13 -0700 (PDT) Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga103.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 16 Sep 2017 05:19:14 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.42,402,1500966000"; d="scan'208";a="1172820505" Received: from fmsmsx103.amr.corp.intel.com ([10.18.124.201]) by orsmga001.jf.intel.com with ESMTP; 16 Sep 2017 05:19:14 -0700 Received: from fmsmsx152.amr.corp.intel.com (10.18.125.5) by FMSMSX103.amr.corp.intel.com (10.18.124.201) with Microsoft SMTP Server (TLS) id 14.3.319.2; Sat, 16 Sep 2017 05:19:14 -0700 Received: from shsmsx101.ccr.corp.intel.com (10.239.4.153) by FMSMSX152.amr.corp.intel.com (10.18.125.5) with Microsoft SMTP Server (TLS) id 14.3.319.2; Sat, 16 Sep 2017 05:19:13 -0700 Received: from shsmsx102.ccr.corp.intel.com ([169.254.2.175]) by SHSMSX101.ccr.corp.intel.com ([169.254.1.159]) with mapi id 14.03.0319.002; Sat, 16 Sep 2017 20:19:11 +0800 From: "Zeng, Star" To: "Yao, Jiewen" , "edk2-devel@lists.01.org" CC: "Zeng, Star" Thread-Topic: [PATCH 0/4] IntelSiliconPkg: move VTd related modules to feature dir. Thread-Index: AQHTLoy0ZetqQ7xg5E2nOQH1iA1HwaK3bqaQ Date: Sat, 16 Sep 2017 12:19:11 +0000 Message-ID: <0C09AFA07DD0434D9E2A0C6AEB0483103B969F8B@shsmsx102.ccr.corp.intel.com> References: <1505525983-27188-1-git-send-email-jiewen.yao@intel.com> In-Reply-To: <1505525983-27188-1-git-send-email-jiewen.yao@intel.com> Accept-Language: zh-CN, en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: dlp-product: dlpe-windows dlp-version: 11.0.0.116 dlp-reaction: no-action x-originating-ip: [10.239.127.40] MIME-Version: 1.0 Subject: Re: [PATCH 0/4] IntelSiliconPkg: move VTd related modules to feature dir. X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Sep 2017 12:16:13 -0000 Content-Language: en-US Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Thanks for making this. Reviewed-by: Star Zeng Thanks, Star -----Original Message----- From: Yao, Jiewen=20 Sent: Saturday, September 16, 2017 9:40 AM To: edk2-devel@lists.01.org Cc: Zeng, Star Subject: [PATCH 0/4] IntelSiliconPkg: move VTd related modules to feature d= ir. This patch is to address the feedback from Star.Zeng during code review. We group 4 VTd related modules to Feature/VTd dir to better maintance. No code update, only location move. Suggested-by: Star Zeng Cc: Star Zeng Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Jiewen Yao Jiewen Yao (4): IntelSiliconPkg/IntelVTdDxe: Move to feature dir. IntelSiliconPkg/PlatformVTdSampleDxe: Move to feature dir. IntelSiliconPkg/IntelVTdPmrPei: Move to feature dir. IntelSiliconPkg/PlatformIntelVTdInfoSamplePei: Move to feature dir. IntelSiliconPkg/Feature/VTd/IntelVTdDxe/BmDma.c = | 441 +++++++++ IntelSiliconPkg/Feature/VTd/IntelVTdDxe/DmaProtection.c = | 503 ++++++++++ IntelSiliconPkg/Feature/VTd/IntelVTdDxe/DmaProtection.h = | 562 +++++++++++ IntelSiliconPkg/Feature/VTd/IntelVTdDxe/DmarAcpiTable.c = | 1016 +++++++++++++++++++ IntelSiliconPkg/Feature/VTd/IntelVTdDxe/IntelVTdDxe.c = | 370 +++++++ IntelSiliconPkg/Feature/VTd/IntelVTdDxe/IntelVTdDxe.inf = | 85 ++ IntelSiliconPkg/Feature/VTd/IntelVTdDxe/IntelVTdDxe.uni = | 20 + IntelSiliconPkg/Feature/VTd/IntelVTdDxe/IntelVTdDxeExtra.uni = | 20 + IntelSiliconPkg/Feature/VTd/IntelVTdDxe/PciInfo.c = | 369 +++++++ IntelSiliconPkg/Feature/VTd/IntelVTdDxe/TranslationTable.c = | 1018 ++++++++++++++++++++ IntelSiliconPkg/Feature/VTd/IntelVTdDxe/TranslationTableEx.c = | 157 +++ IntelSiliconPkg/Feature/VTd/IntelVTdDxe/VtdReg.c = | 565 +++++++++++ IntelSiliconPkg/Feature/VTd/IntelVTdPmrPei/IntelVTdPmr.c = | 314 ++++++ IntelSiliconPkg/Feature/VTd/IntelVTdPmrPei/IntelVTdPmrPei.c = | 615 ++++++++++++ IntelSiliconPkg/Feature/VTd/IntelVTdPmrPei/IntelVTdPmrPei.h = | 68 ++ IntelSiliconPkg/Feature/VTd/IntelVTdPmrPei/IntelVTdPmrPei.inf = | 59 ++ IntelSiliconPkg/Feature/VTd/IntelVTdPmrPei/IntelVTdPmrPei.uni = | 20 + IntelSiliconPkg/Feature/VTd/IntelVTdPmrPei/IntelVTdPmrPeiExtra.uni = | 20 + IntelSiliconPkg/Feature/VTd/PlatformVTdInfoSamplePei/PlatformVTdInfoSample= Pei.c | 65 ++ IntelSiliconPkg/Feature/VTd/PlatformVTdInfoSamplePei/PlatformVTdInfoSample= Pei.inf | 51 + IntelSiliconPkg/Feature/VTd/PlatformVTdInfoSamplePei/PlatformVTdInfoSample= Pei.uni | 20 + IntelSiliconPkg/Feature/VTd/PlatformVTdInfoSamplePei/PlatformVTdInfoSample= PeiExtra.uni | 20 + IntelSiliconPkg/Feature/VTd/PlatformVTdSampleDxe/PlatformVTdSampleDxe.c = | 409 ++++++++ IntelSiliconPkg/Feature/VTd/PlatformVTdSampleDxe/PlatformVTdSampleDxe.inf = | 59 ++ IntelSiliconPkg/Feature/VTd/PlatformVTdSampleDxe/PlatformVTdSampleDxe.uni = | 20 + IntelSiliconPkg/Feature/VTd/PlatformVTdSampleDxe/PlatformVTdSampleDxeExtra= .uni | 20 + IntelSiliconPkg/IntelSiliconPkg.dsc = | 8 +- IntelSiliconPkg/IntelVTdDxe/BmDma.c = | 441 --------- IntelSiliconPkg/IntelVTdDxe/DmaProtection.c = | 503 ---------- IntelSiliconPkg/IntelVTdDxe/DmaProtection.h = | 562 ----------- IntelSiliconPkg/IntelVTdDxe/DmarAcpiTable.c = | 1016 ------------------- IntelSiliconPkg/IntelVTdDxe/IntelVTdDxe.c = | 370 ------- IntelSiliconPkg/IntelVTdDxe/IntelVTdDxe.inf = | 85 -- IntelSiliconPkg/IntelVTdDxe/IntelVTdDxe.uni = | 20 - IntelSiliconPkg/IntelVTdDxe/IntelVTdDxeExtra.uni = | 20 - IntelSiliconPkg/IntelVTdDxe/PciInfo.c = | 369 ------- IntelSiliconPkg/IntelVTdDxe/TranslationTable.c = | 1018 -------------------- IntelSiliconPkg/IntelVTdDxe/TranslationTableEx.c = | 157 --- IntelSiliconPkg/IntelVTdDxe/VtdReg.c = | 565 ----------- IntelSiliconPkg/IntelVTdPmrPei/IntelVTdPmr.c = | 314 ------ IntelSiliconPkg/IntelVTdPmrPei/IntelVTdPmrPei.c = | 615 ------------ IntelSiliconPkg/IntelVTdPmrPei/IntelVTdPmrPei.h = | 68 -- IntelSiliconPkg/IntelVTdPmrPei/IntelVTdPmrPei.inf = | 59 -- IntelSiliconPkg/IntelVTdPmrPei/IntelVTdPmrPei.uni = | 20 - IntelSiliconPkg/IntelVTdPmrPei/IntelVTdPmrPeiExtra.uni = | 20 - IntelSiliconPkg/PlatformVTdInfoSamplePei/PlatformVTdInfoSamplePei.c = | 65 -- IntelSiliconPkg/PlatformVTdInfoSamplePei/PlatformVTdInfoSamplePei.inf = | 51 - IntelSiliconPkg/PlatformVTdInfoSamplePei/PlatformVTdInfoSamplePei.uni = | 20 - IntelSiliconPkg/PlatformVTdInfoSamplePei/PlatformVTdInfoSamplePeiExtra.uni= | 20 - IntelSiliconPkg/PlatformVTdSampleDxe/PlatformVTdSampleDxe.c = | 409 -------- IntelSiliconPkg/PlatformVTdSampleDxe/PlatformVTdSampleDxe.inf = | 59 -- IntelSiliconPkg/PlatformVTdSampleDxe/PlatformVTdSampleDxe.uni = | 20 - IntelSiliconPkg/PlatformVTdSampleDxe/PlatformVTdSampleDxeExtra.uni = | 20 - 53 files changed, 6890 insertions(+), 6890 deletions(-) create mode 10064= 4 IntelSiliconPkg/Feature/VTd/IntelVTdDxe/BmDma.c create mode 100644 IntelSiliconPkg/Feature/VTd/IntelVTdDxe/DmaProtection.c create mode 100644 IntelSiliconPkg/Feature/VTd/IntelVTdDxe/DmaProtection.h create mode 100644 IntelSiliconPkg/Feature/VTd/IntelVTdDxe/DmarAcpiTable.c create mode 100644 IntelSiliconPkg/Feature/VTd/IntelVTdDxe/IntelVTdDxe.c create mode 100644 IntelSiliconPkg/Feature/VTd/IntelVTdDxe/IntelVTdDxe.inf create mode 100644 IntelSiliconPkg/Feature/VTd/IntelVTdDxe/IntelVTdDxe.uni create mode 100644 IntelSiliconPkg/Feature/VTd/IntelVTdDxe/IntelVTdDxeExtr= a.uni create mode 100644 IntelSiliconPkg/Feature/VTd/IntelVTdDxe/PciInfo.c create mode 100644 IntelSiliconPkg/Feature/VTd/IntelVTdDxe/TranslationTabl= e.c create mode 100644 IntelSiliconPkg/Feature/VTd/IntelVTdDxe/TranslationTabl= eEx.c create mode 100644 IntelSiliconPkg/Feature/VTd/IntelVTdDxe/VtdReg.c create mode 100644 IntelSiliconPkg/Feature/VTd/IntelVTdPmrPei/IntelVTdPmr.= c create mode 100644 IntelSiliconPkg/Feature/VTd/IntelVTdPmrPei/IntelVTdPmrP= ei.c create mode 100644 IntelSiliconPkg/Feature/VTd/IntelVTdPmrPei/IntelVTdPmrP= ei.h create mode 100644 IntelSiliconPkg/Feature/VTd/IntelVTdPmrPei/IntelVTdPmrP= ei.inf create mode 100644 IntelSiliconPkg/Feature/VTd/IntelVTdPmrPei/IntelVTdPmrP= ei.uni create mode 100644 IntelSiliconPkg/Feature/VTd/IntelVTdPmrPei/IntelVTdPmrP= eiExtra.uni create mode 100644 IntelSiliconPkg/Feature/VTd/PlatformVTdInfoSamplePei/Pl= atformVTdInfoSamplePei.c create mode 100644 IntelSiliconPkg/Feature/VTd/PlatformVTdInfoSamplePei/Pl= atformVTdInfoSamplePei.inf create mode 100644 IntelSiliconPkg/Feature/VTd/PlatformVTdInfoSamplePei/Pl= atformVTdInfoSamplePei.uni create mode 100644 IntelSiliconPkg/Feature/VTd/PlatformVTdInfoSamplePei/Pl= atformVTdInfoSamplePeiExtra.uni create mode 100644 IntelSiliconPkg/Feature/VTd/PlatformVTdSampleDxe/Platfo= rmVTdSampleDxe.c create mode 100644 IntelSiliconPkg/Feature/VTd/PlatformVTdSampleDxe/Platfo= rmVTdSampleDxe.inf create mode 100644 IntelSiliconPkg/Feature/VTd/PlatformVTdSampleDxe/Platfo= rmVTdSampleDxe.uni create mode 100644 IntelSiliconPkg/Feature/VTd/PlatformVTdSampleDxe/Platfo= rmVTdSampleDxeExtra.uni delete mode 100644 IntelSiliconPkg/IntelVTdDxe/BmDma.c delete mode 100644 IntelSiliconPkg/IntelVTdDxe/DmaProtection.c delete mode 100644 IntelSiliconPkg/IntelVTdDxe/DmaProtection.h delete mode 100644 IntelSiliconPkg/IntelVTdDxe/DmarAcpiTable.c delete mode 100644 IntelSiliconPkg/IntelVTdDxe/IntelVTdDxe.c delete mode 100644 IntelSiliconPkg/IntelVTdDxe/IntelVTdDxe.inf delete mode 100644 IntelSiliconPkg/IntelVTdDxe/IntelVTdDxe.uni delete mode 100644 IntelSiliconPkg/IntelVTdDxe/IntelVTdDxeExtra.uni delete mode 100644 IntelSiliconPkg/IntelVTdDxe/PciInfo.c delete mode 100644 IntelSiliconPkg/IntelVTdDxe/TranslationTable.c delete mode 100644 IntelSiliconPkg/IntelVTdDxe/TranslationTableEx.c delete mode 100644 IntelSiliconPkg/IntelVTdDxe/VtdReg.c delete mode 100644 IntelSiliconPkg/IntelVTdPmrPei/IntelVTdPmr.c delete mode 100644 IntelSiliconPkg/IntelVTdPmrPei/IntelVTdPmrPei.c delete mode 100644 IntelSiliconPkg/IntelVTdPmrPei/IntelVTdPmrPei.h delete mode 100644 IntelSiliconPkg/IntelVTdPmrPei/IntelVTdPmrPei.inf delete mode 100644 IntelSiliconPkg/IntelVTdPmrPei/IntelVTdPmrPei.uni delete mode 100644 IntelSiliconPkg/IntelVTdPmrPei/IntelVTdPmrPeiExtra.uni delete mode 100644 IntelSiliconPkg/PlatformVTdInfoSamplePei/PlatformVTdInf= oSamplePei.c delete mode 100644 IntelSiliconPkg/PlatformVTdInfoSamplePei/PlatformVTdInf= oSamplePei.inf delete mode 100644 IntelSiliconPkg/PlatformVTdInfoSamplePei/PlatformVTdInf= oSamplePei.uni delete mode 100644 IntelSiliconPkg/PlatformVTdInfoSamplePei/PlatformVTdInf= oSamplePeiExtra.uni delete mode 100644 IntelSiliconPkg/PlatformVTdSampleDxe/PlatformVTdSampleD= xe.c delete mode 100644 IntelSiliconPkg/PlatformVTdSampleDxe/PlatformVTdSampleD= xe.inf delete mode 100644 IntelSiliconPkg/PlatformVTdSampleDxe/PlatformVTdSampleD= xe.uni delete mode 100644 IntelSiliconPkg/PlatformVTdSampleDxe/PlatformVTdSampleD= xeExtra.uni -- 2.7.4.windows.1