From mboxrd@z Thu Jan 1 00:00:00 1970 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: intel.com, ip: 192.55.52.120, mailfrom: eric.dong@intel.com) Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by groups.io with SMTP; Tue, 28 May 2019 17:47:56 -0700 X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by fmsmga104.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 28 May 2019 17:47:56 -0700 X-ExtLoop1: 1 Received: from ydong10-win10.ccr.corp.intel.com ([10.239.158.133]) by fmsmga006.fm.intel.com with ESMTP; 28 May 2019 17:47:55 -0700 From: "Dong, Eric" To: devel@edk2.groups.io Subject: [Patch 0/3] [edk2-platforms] Add DebugFeaturePkg to keep debug related modules. Date: Wed, 29 May 2019 08:47:51 +0800 Message-Id: <20190529004754.22332-1-eric.dong@intel.com> X-Mailer: git-send-email 2.21.0.windows.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Add new package in Platform/Intel/ folder to keep debug related modules. Eric Dong (3): Platform/Intel/DebugFeaturePkg: Add DebugFeaturePkg Platform/Intel/DebugFeaturePkg: Add USB3DebugPort related modules. Platform/Intel/DebugFeaturePkg/AcpiDebug: Change AcpiDebug module location. Maintainers.txt | 4 + .../AdvancedFeaturePkg/AdvancedFeaturePkg.dec | 6 - .../AdvancedFeaturePkg/AdvancedFeaturePkg.dsc | 3 - .../AcpiDebug/AcpiDebug.asl | 0 .../AcpiDebug/AcpiDebug.c | 0 .../AcpiDebug/AcpiDebugDxe.inf | 8 +- .../AcpiDebug/AcpiDebugSmm.inf | 8 +- .../AcpiDebug/Readme.txt | 0 .../Intel/DebugFeaturePkg/DebugFeaturePkg.dec | 64 ++ .../Intel/DebugFeaturePkg/DebugFeaturePkg.dsc | 98 ++ .../Include/Library/Usb3DebugPortLib.h | 76 ++ .../Library/Usb3DebugPortParameterLib.h | 56 ++ .../Library/Usb3DebugPortLib/MiscServices.c | 385 ++++++++ .../Usb3DebugPortDataTransfer.c | 892 ++++++++++++++++++ .../Usb3DebugPortInitialize.c | 726 ++++++++++++++ .../Usb3DebugPortLib/Usb3DebugPortLibDxe.c | 454 +++++++++ .../Usb3DebugPortLib/Usb3DebugPortLibDxe.inf | 55 ++ .../Usb3DebugPortLibDxeIoMmu.c | 828 ++++++++++++++++ .../Usb3DebugPortLibDxeIoMmu.inf | 63 ++ .../Usb3DebugPortLibInternal.h | 887 +++++++++++++++++ .../Usb3DebugPortLib/Usb3DebugPortLibNull.c | 103 ++ .../Usb3DebugPortLib/Usb3DebugPortLibNull.inf | 28 + .../Usb3DebugPortLib/Usb3DebugPortLibPei.c | 236 +++++ .../Usb3DebugPortLib/Usb3DebugPortLibPei.inf | 48 + .../Usb3DebugPortLibPeiIoMmu.c | 440 +++++++++ .../Usb3DebugPortLibPeiIoMmu.inf | 51 + .../Usb3DebugPortParameterLibPcd.c | 58 ++ .../Usb3DebugPortParameterLibPcd.inf | 31 + 28 files changed, 5591 insertions(+), 17 deletions(-) rename Platform/Intel/{AdvancedFeaturePkg => DebugFeaturePkg}/AcpiDebug/AcpiDebug.asl (100%) rename Platform/Intel/{AdvancedFeaturePkg => DebugFeaturePkg}/AcpiDebug/AcpiDebug.c (100%) rename Platform/Intel/{AdvancedFeaturePkg => DebugFeaturePkg}/AcpiDebug/AcpiDebugDxe.inf (79%) rename Platform/Intel/{AdvancedFeaturePkg => DebugFeaturePkg}/AcpiDebug/AcpiDebugSmm.inf (80%) rename Platform/Intel/{AdvancedFeaturePkg => DebugFeaturePkg}/AcpiDebug/Readme.txt (100%) create mode 100644 Platform/Intel/DebugFeaturePkg/DebugFeaturePkg.dec create mode 100644 Platform/Intel/DebugFeaturePkg/DebugFeaturePkg.dsc create mode 100644 Platform/Intel/DebugFeaturePkg/Include/Library/Usb3DebugPortLib.h create mode 100644 Platform/Intel/DebugFeaturePkg/Include/Library/Usb3DebugPortParameterLib.h create mode 100644 Platform/Intel/DebugFeaturePkg/Library/Usb3DebugPortLib/MiscServices.c create mode 100644 Platform/Intel/DebugFeaturePkg/Library/Usb3DebugPortLib/Usb3DebugPortDataTransfer.c create mode 100644 Platform/Intel/DebugFeaturePkg/Library/Usb3DebugPortLib/Usb3DebugPortInitialize.c create mode 100644 Platform/Intel/DebugFeaturePkg/Library/Usb3DebugPortLib/Usb3DebugPortLibDxe.c create mode 100644 Platform/Intel/DebugFeaturePkg/Library/Usb3DebugPortLib/Usb3DebugPortLibDxe.inf create mode 100644 Platform/Intel/DebugFeaturePkg/Library/Usb3DebugPortLib/Usb3DebugPortLibDxeIoMmu.c create mode 100644 Platform/Intel/DebugFeaturePkg/Library/Usb3DebugPortLib/Usb3DebugPortLibDxeIoMmu.inf create mode 100644 Platform/Intel/DebugFeaturePkg/Library/Usb3DebugPortLib/Usb3DebugPortLibInternal.h create mode 100644 Platform/Intel/DebugFeaturePkg/Library/Usb3DebugPortLib/Usb3DebugPortLibNull.c create mode 100644 Platform/Intel/DebugFeaturePkg/Library/Usb3DebugPortLib/Usb3DebugPortLibNull.inf create mode 100644 Platform/Intel/DebugFeaturePkg/Library/Usb3DebugPortLib/Usb3DebugPortLibPei.c create mode 100644 Platform/Intel/DebugFeaturePkg/Library/Usb3DebugPortLib/Usb3DebugPortLibPei.inf create mode 100644 Platform/Intel/DebugFeaturePkg/Library/Usb3DebugPortLib/Usb3DebugPortLibPeiIoMmu.c create mode 100644 Platform/Intel/DebugFeaturePkg/Library/Usb3DebugPortLib/Usb3DebugPortLibPeiIoMmu.inf create mode 100644 Platform/Intel/DebugFeaturePkg/Library/Usb3DebugPortParameterLibPcd/Usb3DebugPortParameterLibPcd.c create mode 100644 Platform/Intel/DebugFeaturePkg/Library/Usb3DebugPortParameterLibPcd/Usb3DebugPortParameterLibPcd.inf -- 2.21.0.windows.1