From: "Liming Gao" <liming.gao@intel.com>
To: "devel@edk2.groups.io" <devel@edk2.groups.io>,
"Dong, Eric" <eric.dong@intel.com>
Cc: "Gao, Liming" <liming.gao@intel.com>,
"Oram, Isaac W" <isaac.w.oram@intel.com>,
"Kinney, Michael D" <michael.d.kinney@intel.com>
Subject: Re: [edk2-devel] [Patch 0/3] [edk2-platforms] Add DebugFeaturePkg to keep debug related modules.
Date: Wed, 29 May 2019 06:49:03 +0000 [thread overview]
Message-ID: <4A89E2EF3DFEDB4C8BFDE51014F606A14E456BD9@SHSMSX104.ccr.corp.intel.com> (raw)
In-Reply-To: <20190529004754.22332-1-eric.dong@intel.com>
Eric:
I have some comments.
1. DebugFeaturePkg DEC/DSC header description should be DebugFeaturePkg instead of DebugAdvancedFeaturePkg
2. DebugFeaturePkg can have one gDebugFeaturePkgTokenSpaceGuid for all PCDs . You don't need to add another gEfiUsb3DebugPortTokenSpaceGuid.
3. Please make PCD TokenNumber are continuous.
Thanks
Liming
>-----Original Message-----
>From: devel@edk2.groups.io [mailto:devel@edk2.groups.io] On Behalf Of
>Dong, Eric
>Sent: Wednesday, May 29, 2019 8:48 AM
>To: devel@edk2.groups.io
>Subject: [edk2-devel] [Patch 0/3] [edk2-platforms] Add DebugFeaturePkg to
>keep debug related modules.
>
>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/Usb3DebugPortParameterL
>ib.h
> create mode 100644
>Platform/Intel/DebugFeaturePkg/Library/Usb3DebugPortLib/MiscServices.c
> create mode 100644
>Platform/Intel/DebugFeaturePkg/Library/Usb3DebugPortLib/Usb3DebugPort
>DataTransfer.c
> create mode 100644
>Platform/Intel/DebugFeaturePkg/Library/Usb3DebugPortLib/Usb3DebugPort
>Initialize.c
> create mode 100644
>Platform/Intel/DebugFeaturePkg/Library/Usb3DebugPortLib/Usb3DebugPort
>LibDxe.c
> create mode 100644
>Platform/Intel/DebugFeaturePkg/Library/Usb3DebugPortLib/Usb3DebugPort
>LibDxe.inf
> create mode 100644
>Platform/Intel/DebugFeaturePkg/Library/Usb3DebugPortLib/Usb3DebugPort
>LibDxeIoMmu.c
> create mode 100644
>Platform/Intel/DebugFeaturePkg/Library/Usb3DebugPortLib/Usb3DebugPort
>LibDxeIoMmu.inf
> create mode 100644
>Platform/Intel/DebugFeaturePkg/Library/Usb3DebugPortLib/Usb3DebugPort
>LibInternal.h
> create mode 100644
>Platform/Intel/DebugFeaturePkg/Library/Usb3DebugPortLib/Usb3DebugPort
>LibNull.c
> create mode 100644
>Platform/Intel/DebugFeaturePkg/Library/Usb3DebugPortLib/Usb3DebugPort
>LibNull.inf
> create mode 100644
>Platform/Intel/DebugFeaturePkg/Library/Usb3DebugPortLib/Usb3DebugPort
>LibPei.c
> create mode 100644
>Platform/Intel/DebugFeaturePkg/Library/Usb3DebugPortLib/Usb3DebugPort
>LibPei.inf
> create mode 100644
>Platform/Intel/DebugFeaturePkg/Library/Usb3DebugPortLib/Usb3DebugPort
>LibPeiIoMmu.c
> create mode 100644
>Platform/Intel/DebugFeaturePkg/Library/Usb3DebugPortLib/Usb3DebugPort
>LibPeiIoMmu.inf
> create mode 100644
>Platform/Intel/DebugFeaturePkg/Library/Usb3DebugPortParameterLibPcd/U
>sb3DebugPortParameterLibPcd.c
> create mode 100644
>Platform/Intel/DebugFeaturePkg/Library/Usb3DebugPortParameterLibPcd/U
>sb3DebugPortParameterLibPcd.inf
>
>--
>2.21.0.windows.1
>
>
>
prev parent reply other threads:[~2019-05-29 6:49 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-05-29 0:47 [Patch 0/3] [edk2-platforms] Add DebugFeaturePkg to keep debug related modules Dong, Eric
2019-05-29 0:47 ` [Patch 1/3] [edk2-platforms] Platform/Intel/DebugFeaturePkg: Add DebugFeaturePkg Dong, Eric
2019-05-29 0:47 ` [Patch 2/3] [edk2-platforms] Platform/Intel/DebugFeaturePkg: Add USB3DebugPort related modules Dong, Eric
2019-05-29 0:47 ` [Patch 3/3] [edk2-platforms] Platform/Intel/DebugFeaturePkg/AcpiDebug: Change AcpiDebug module location Dong, Eric
2019-05-29 6:49 ` Liming Gao [this message]
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=4A89E2EF3DFEDB4C8BFDE51014F606A14E456BD9@SHSMSX104.ccr.corp.intel.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