From: "Javeed, Ashraf" <ashraf.javeed@intel.com>
To: devel@edk2.groups.io
Cc: Jian J Wang <jian.j.wang@intel.com>,
Hao A Wu <hao.a.wu@intel.com>, Ray Ni <ray.ni@intel.com>
Subject: [edk2-staging/UEFI_PCI_ENHANCE-2 PATCH 00/15] PCIe features
Date: Sun, 10 May 2020 21:57:47 +0530 [thread overview]
Message-ID: <20200510162747.9944-1-ashraf.javeed@intel.com> (raw)
REF:
https://bugzilla.tianocore.org/show_bug.cgi?id=1954
https://bugzilla.tianocore.org/show_bug.cgi?id=2194
https://bugzilla.tianocore.org/show_bug.cgi?id=2313
https://bugzilla.tianocore.org/show_bug.cgi?id=2499
https://bugzilla.tianocore.org/show_bug.cgi?id=2500
Optimization of the PCI Express Protocol and code refactoring of the PCIe
features in the PciBusDxe.
Signed-off-by: Ashraf Javeed <ashraf.javeed@intel.com>
Cc: Jian J Wang <jian.j.wang@intel.com>
Cc: Hao A Wu <hao.a.wu@intel.com>
Cc: Ray Ni <ray.ni@intel.com>
Cc: Ashraf Javeed <ashraf.javeed@intel.com>
---
Ashraf Javeed (15):
MdePkg/Protocols: Deprecated the EFI encoded macros
MdeModulePkg/PciBusDxe: PciBusDxe Code refactor
MdeModulePkg/PciBus: Rename Cache PCIe Capability Structure
MdeModulePkg/PciBusDxe: Refactor the PCIe Bridge enable
MdeModulePkg/PciBusDxe: Locate PciePlatform/PcieOverride protocol
MdeModulePkg/PciBusDxe: Add the framework to init PCIe features
MdeModulePkg/PciBusDxe: Enable MaxPayloadSize feature
MdeModulePkg/PciBusDxe: Enable MaxReadRequestSize feature
MdeModulePkg/PciBusDxe: Enable RelaxedOrdering feature
MdeModulePkg/PciBusDxe: Enable NoSnoop feature
MdeModulePkg/PciBusDxe: Enable CompletionTimeout feature
MdeModulePkg/PciBusDxe: Enable LTR feature
MdeModulePkg/PciBusDxe: Enable AtomicOp feature
MdeModulePkg/PciBusDxe: Enable ExtendedTag feature
MdeModulePkg/PciBusDxe: Enable CommonClockConfiguration feature
MdeModulePkg/Bus/Pci/PciBusDxe/PciBus.c | 3 +-
MdeModulePkg/Bus/Pci/PciBusDxe/PciBus.h | 24 +++--------
MdeModulePkg/Bus/Pci/PciBusDxe/PciBusDxe.inf | 14 +++----
MdeModulePkg/Bus/Pci/PciBusDxe/PciDeviceSupport.c | 84 +++++++++++--------------------------
MdeModulePkg/Bus/Pci/PciBusDxe/PciEnumeratorSupport.c | 2 +-
MdeModulePkg/Bus/Pci/PciBusDxe/PciExpressFeatures.c | 2178 -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
MdeModulePkg/Bus/Pci/PciBusDxe/PciExpressFeatures.h | 399 ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
MdeModulePkg/Bus/Pci/PciBusDxe/PciFeatureSupport.c | 1019 ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
MdeModulePkg/Bus/Pci/PciBusDxe/PciFeatureSupport.h | 304 -----------------------------------------------------------------------------------------------------------------------------------
MdeModulePkg/Bus/Pci/PciBusDxe/PciPlatformSupport.c | 902 ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
MdeModulePkg/Bus/Pci/PciBusDxe/PciPlatformSupport.h | 119 ----------------------------------------------------
MdeModulePkg/Bus/Pci/PciBusDxe/PcieFeatureSupport.c | 591 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
MdeModulePkg/Bus/Pci/PciBusDxe/PcieFeatureSupport.h | 76 +++++++++++++++++++++++++++++++++
MdeModulePkg/Bus/Pci/PciBusDxe/PcieFeatures.c | 893 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
MdeModulePkg/Bus/Pci/PciBusDxe/PcieFeatures.h | 148 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
MdePkg/Include/Protocol/PciExpressPlatform.h | 630 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-----------------------------------------------------------------------------------------------------------------------------------------------------------------------
16 files changed, 1989 insertions(+), 5397 deletions(-)
delete mode 100644 MdeModulePkg/Bus/Pci/PciBusDxe/PciExpressFeatures.c
delete mode 100644 MdeModulePkg/Bus/Pci/PciBusDxe/PciExpressFeatures.h
delete mode 100644 MdeModulePkg/Bus/Pci/PciBusDxe/PciFeatureSupport.c
delete mode 100644 MdeModulePkg/Bus/Pci/PciBusDxe/PciFeatureSupport.h
delete mode 100644 MdeModulePkg/Bus/Pci/PciBusDxe/PciPlatformSupport.c
delete mode 100644 MdeModulePkg/Bus/Pci/PciBusDxe/PciPlatformSupport.h
create mode 100644 MdeModulePkg/Bus/Pci/PciBusDxe/PcieFeatureSupport.c
create mode 100644 MdeModulePkg/Bus/Pci/PciBusDxe/PcieFeatureSupport.h
create mode 100644 MdeModulePkg/Bus/Pci/PciBusDxe/PcieFeatures.c
create mode 100644 MdeModulePkg/Bus/Pci/PciBusDxe/PcieFeatures.h
--
2.21.0.windows.1
reply other threads:[~2020-05-10 16:27 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
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=20200510162747.9944-1-ashraf.javeed@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