[edk2] [PATCH edk2-platforms 0/4] NXP:LS2088A RDB Board Support

Wasim Khan posted 4 patches 6 years, 3 months ago
Failed in applying to current master (apply log)
.../LS2088aRdbPkg/Include/Library/PlatformLib.h    |  28 ++
Platform/NXP/LS2088aRdbPkg/LS2088aRdbPkg.dec       |  29 ++
Platform/NXP/LS2088aRdbPkg/LS2088aRdbPkg.dsc       |  95 ++++++
Platform/NXP/LS2088aRdbPkg/LS2088aRdbPkg.fdf       | 197 +++++++++++
.../Library/PlatformLib/ArmPlatformLib.c           | 106 ++++++
.../Library/PlatformLib/ArmPlatformLib.inf         |  80 +++++
.../Library/PlatformLib/NxpQoriqLsHelper.S         |  35 ++
.../Library/PlatformLib/NxpQoriqLsMem.c            | 196 +++++++++++
Platform/NXP/LS2088aRdbPkg/VarStore.fdf.inc        |  98 ++++++
Platform/NXP/NxpQoriqLs.dec                        |   1 +
Silicon/Maxim/Library/Ds3232RtcLib/Ds3232Rtc.h     |  49 +++
Silicon/Maxim/Library/Ds3232RtcLib/Ds3232RtcLib.c  | 370 +++++++++++++++++++++
.../Maxim/Library/Ds3232RtcLib/Ds3232RtcLib.dec    |  31 ++
.../Maxim/Library/Ds3232RtcLib/Ds3232RtcLib.inf    |  50 +++
Silicon/NXP/Chassis/Chassis.c                      |  32 ++
Silicon/NXP/Chassis/Chassis.h                      |  17 +
Silicon/NXP/Chassis/Chassis3/Chassis3.dec          |  19 ++
Silicon/NXP/Chassis/Chassis3/Errata.c              |  62 ++++
Silicon/NXP/Chassis/Chassis3/SerDes.h              |  92 +++++
Silicon/NXP/Chassis/Chassis3/Soc.c                 | 171 ++++++++++
Silicon/NXP/Chassis/Chassis3/Soc.h                 | 159 +++++++++
Silicon/NXP/Chassis/LS2088aSocLib.inf              |  53 +++
Silicon/NXP/LS2088A/Include/SocSerDes.h            |  67 ++++
Silicon/NXP/LS2088A/LS2088A.dec                    |  22 ++
Silicon/NXP/LS2088A/LS2088A.dsc                    | 101 ++++++
25 files changed, 2160 insertions(+)
create mode 100755 Platform/NXP/LS2088aRdbPkg/Include/Library/PlatformLib.h
create mode 100644 Platform/NXP/LS2088aRdbPkg/LS2088aRdbPkg.dec
create mode 100755 Platform/NXP/LS2088aRdbPkg/LS2088aRdbPkg.dsc
create mode 100644 Platform/NXP/LS2088aRdbPkg/LS2088aRdbPkg.fdf
create mode 100644 Platform/NXP/LS2088aRdbPkg/Library/PlatformLib/ArmPlatformLib.c
create mode 100644 Platform/NXP/LS2088aRdbPkg/Library/PlatformLib/ArmPlatformLib.inf
create mode 100644 Platform/NXP/LS2088aRdbPkg/Library/PlatformLib/NxpQoriqLsHelper.S
create mode 100644 Platform/NXP/LS2088aRdbPkg/Library/PlatformLib/NxpQoriqLsMem.c
create mode 100644 Platform/NXP/LS2088aRdbPkg/VarStore.fdf.inc
create mode 100644 Silicon/Maxim/Library/Ds3232RtcLib/Ds3232Rtc.h
create mode 100644 Silicon/Maxim/Library/Ds3232RtcLib/Ds3232RtcLib.c
create mode 100644 Silicon/Maxim/Library/Ds3232RtcLib/Ds3232RtcLib.dec
create mode 100644 Silicon/Maxim/Library/Ds3232RtcLib/Ds3232RtcLib.inf
create mode 100644 Silicon/NXP/Chassis/Chassis3/Chassis3.dec
create mode 100644 Silicon/NXP/Chassis/Chassis3/Errata.c
create mode 100644 Silicon/NXP/Chassis/Chassis3/SerDes.h
create mode 100644 Silicon/NXP/Chassis/Chassis3/Soc.c
create mode 100644 Silicon/NXP/Chassis/Chassis3/Soc.h
create mode 100644 Silicon/NXP/Chassis/LS2088aSocLib.inf
create mode 100644 Silicon/NXP/LS2088A/Include/SocSerDes.h
create mode 100644 Silicon/NXP/LS2088A/LS2088A.dec
create mode 100644 Silicon/NXP/LS2088A/LS2088A.dsc
[edk2] [PATCH edk2-platforms 0/4] NXP:LS2088A RDB Board Support
Posted by Wasim Khan 6 years, 3 months ago
In Silicon/NXP, we are keeping our SoC specific information and remaining code will be kept in Platform/NXP.

Following patches will add support of NXP LS2088A RDB board in edk2-platforms.

Platform/NXP/LS2088aRdbPkg will host .dsc and .fdf files to support compilation for LS2088A RDB board.

Looking forward for your kind support in upstreaming LS2088 RDB board support in edk2-platforms.

Wasim Khan (4):
  Platform/NXP: Add support for ArmPlatformLib
  Silicon/Maxim: Added Support for DS3232 RTC Library
  Silicon/NXP:SocLib support for initialization of peripherals
  Compilation : Add the fdf, dsc and dec files.

 .../LS2088aRdbPkg/Include/Library/PlatformLib.h    |  28 ++
 Platform/NXP/LS2088aRdbPkg/LS2088aRdbPkg.dec       |  29 ++
 Platform/NXP/LS2088aRdbPkg/LS2088aRdbPkg.dsc       |  95 ++++++
 Platform/NXP/LS2088aRdbPkg/LS2088aRdbPkg.fdf       | 197 +++++++++++
 .../Library/PlatformLib/ArmPlatformLib.c           | 106 ++++++
 .../Library/PlatformLib/ArmPlatformLib.inf         |  80 +++++
 .../Library/PlatformLib/NxpQoriqLsHelper.S         |  35 ++
 .../Library/PlatformLib/NxpQoriqLsMem.c            | 196 +++++++++++
 Platform/NXP/LS2088aRdbPkg/VarStore.fdf.inc        |  98 ++++++
 Platform/NXP/NxpQoriqLs.dec                        |   1 +
 Silicon/Maxim/Library/Ds3232RtcLib/Ds3232Rtc.h     |  49 +++
 Silicon/Maxim/Library/Ds3232RtcLib/Ds3232RtcLib.c  | 370 +++++++++++++++++++++
 .../Maxim/Library/Ds3232RtcLib/Ds3232RtcLib.dec    |  31 ++
 .../Maxim/Library/Ds3232RtcLib/Ds3232RtcLib.inf    |  50 +++
 Silicon/NXP/Chassis/Chassis.c                      |  32 ++
 Silicon/NXP/Chassis/Chassis.h                      |  17 +
 Silicon/NXP/Chassis/Chassis3/Chassis3.dec          |  19 ++
 Silicon/NXP/Chassis/Chassis3/Errata.c              |  62 ++++
 Silicon/NXP/Chassis/Chassis3/SerDes.h              |  92 +++++
 Silicon/NXP/Chassis/Chassis3/Soc.c                 | 171 ++++++++++
 Silicon/NXP/Chassis/Chassis3/Soc.h                 | 159 +++++++++
 Silicon/NXP/Chassis/LS2088aSocLib.inf              |  53 +++
 Silicon/NXP/LS2088A/Include/SocSerDes.h            |  67 ++++
 Silicon/NXP/LS2088A/LS2088A.dec                    |  22 ++
 Silicon/NXP/LS2088A/LS2088A.dsc                    | 101 ++++++
 25 files changed, 2160 insertions(+)
 create mode 100755 Platform/NXP/LS2088aRdbPkg/Include/Library/PlatformLib.h
 create mode 100644 Platform/NXP/LS2088aRdbPkg/LS2088aRdbPkg.dec
 create mode 100755 Platform/NXP/LS2088aRdbPkg/LS2088aRdbPkg.dsc
 create mode 100644 Platform/NXP/LS2088aRdbPkg/LS2088aRdbPkg.fdf
 create mode 100644 Platform/NXP/LS2088aRdbPkg/Library/PlatformLib/ArmPlatformLib.c
 create mode 100644 Platform/NXP/LS2088aRdbPkg/Library/PlatformLib/ArmPlatformLib.inf
 create mode 100644 Platform/NXP/LS2088aRdbPkg/Library/PlatformLib/NxpQoriqLsHelper.S
 create mode 100644 Platform/NXP/LS2088aRdbPkg/Library/PlatformLib/NxpQoriqLsMem.c
 create mode 100644 Platform/NXP/LS2088aRdbPkg/VarStore.fdf.inc
 create mode 100644 Silicon/Maxim/Library/Ds3232RtcLib/Ds3232Rtc.h
 create mode 100644 Silicon/Maxim/Library/Ds3232RtcLib/Ds3232RtcLib.c
 create mode 100644 Silicon/Maxim/Library/Ds3232RtcLib/Ds3232RtcLib.dec
 create mode 100644 Silicon/Maxim/Library/Ds3232RtcLib/Ds3232RtcLib.inf
 create mode 100644 Silicon/NXP/Chassis/Chassis3/Chassis3.dec
 create mode 100644 Silicon/NXP/Chassis/Chassis3/Errata.c
 create mode 100644 Silicon/NXP/Chassis/Chassis3/SerDes.h
 create mode 100644 Silicon/NXP/Chassis/Chassis3/Soc.c
 create mode 100644 Silicon/NXP/Chassis/Chassis3/Soc.h
 create mode 100644 Silicon/NXP/Chassis/LS2088aSocLib.inf
 create mode 100644 Silicon/NXP/LS2088A/Include/SocSerDes.h
 create mode 100644 Silicon/NXP/LS2088A/LS2088A.dec
 create mode 100644 Silicon/NXP/LS2088A/LS2088A.dsc

-- 
2.7.4

_______________________________________________
edk2-devel mailing list
edk2-devel@lists.01.org
https://lists.01.org/mailman/listinfo/edk2-devel
Re: [edk2] [PATCH edk2-platforms 0/4] NXP:LS2088A RDB Board Support
Posted by Ard Biesheuvel 6 years, 3 months ago
Hello Wasim, Udit, Meenakshi,

I kind of lost track of all the patches you have been sending over the
past month or so.
Could one of you please send a quick summary of all the patches that
are in flight at the moment, and for which platforms?

Thanks,
Ard.


On 22 December 2017 at 10:51, Wasim Khan <wasim.khan@nxp.com> wrote:
> In Silicon/NXP, we are keeping our SoC specific information and remaining code will be kept in Platform/NXP.
>
> Following patches will add support of NXP LS2088A RDB board in edk2-platforms.
>
> Platform/NXP/LS2088aRdbPkg will host .dsc and .fdf files to support compilation for LS2088A RDB board.
>
> Looking forward for your kind support in upstreaming LS2088 RDB board support in edk2-platforms.
>
> Wasim Khan (4):
>   Platform/NXP: Add support for ArmPlatformLib
>   Silicon/Maxim: Added Support for DS3232 RTC Library
>   Silicon/NXP:SocLib support for initialization of peripherals
>   Compilation : Add the fdf, dsc and dec files.
>
>  .../LS2088aRdbPkg/Include/Library/PlatformLib.h    |  28 ++
>  Platform/NXP/LS2088aRdbPkg/LS2088aRdbPkg.dec       |  29 ++
>  Platform/NXP/LS2088aRdbPkg/LS2088aRdbPkg.dsc       |  95 ++++++
>  Platform/NXP/LS2088aRdbPkg/LS2088aRdbPkg.fdf       | 197 +++++++++++
>  .../Library/PlatformLib/ArmPlatformLib.c           | 106 ++++++
>  .../Library/PlatformLib/ArmPlatformLib.inf         |  80 +++++
>  .../Library/PlatformLib/NxpQoriqLsHelper.S         |  35 ++
>  .../Library/PlatformLib/NxpQoriqLsMem.c            | 196 +++++++++++
>  Platform/NXP/LS2088aRdbPkg/VarStore.fdf.inc        |  98 ++++++
>  Platform/NXP/NxpQoriqLs.dec                        |   1 +
>  Silicon/Maxim/Library/Ds3232RtcLib/Ds3232Rtc.h     |  49 +++
>  Silicon/Maxim/Library/Ds3232RtcLib/Ds3232RtcLib.c  | 370 +++++++++++++++++++++
>  .../Maxim/Library/Ds3232RtcLib/Ds3232RtcLib.dec    |  31 ++
>  .../Maxim/Library/Ds3232RtcLib/Ds3232RtcLib.inf    |  50 +++
>  Silicon/NXP/Chassis/Chassis.c                      |  32 ++
>  Silicon/NXP/Chassis/Chassis.h                      |  17 +
>  Silicon/NXP/Chassis/Chassis3/Chassis3.dec          |  19 ++
>  Silicon/NXP/Chassis/Chassis3/Errata.c              |  62 ++++
>  Silicon/NXP/Chassis/Chassis3/SerDes.h              |  92 +++++
>  Silicon/NXP/Chassis/Chassis3/Soc.c                 | 171 ++++++++++
>  Silicon/NXP/Chassis/Chassis3/Soc.h                 | 159 +++++++++
>  Silicon/NXP/Chassis/LS2088aSocLib.inf              |  53 +++
>  Silicon/NXP/LS2088A/Include/SocSerDes.h            |  67 ++++
>  Silicon/NXP/LS2088A/LS2088A.dec                    |  22 ++
>  Silicon/NXP/LS2088A/LS2088A.dsc                    | 101 ++++++
>  25 files changed, 2160 insertions(+)
>  create mode 100755 Platform/NXP/LS2088aRdbPkg/Include/Library/PlatformLib.h
>  create mode 100644 Platform/NXP/LS2088aRdbPkg/LS2088aRdbPkg.dec
>  create mode 100755 Platform/NXP/LS2088aRdbPkg/LS2088aRdbPkg.dsc
>  create mode 100644 Platform/NXP/LS2088aRdbPkg/LS2088aRdbPkg.fdf
>  create mode 100644 Platform/NXP/LS2088aRdbPkg/Library/PlatformLib/ArmPlatformLib.c
>  create mode 100644 Platform/NXP/LS2088aRdbPkg/Library/PlatformLib/ArmPlatformLib.inf
>  create mode 100644 Platform/NXP/LS2088aRdbPkg/Library/PlatformLib/NxpQoriqLsHelper.S
>  create mode 100644 Platform/NXP/LS2088aRdbPkg/Library/PlatformLib/NxpQoriqLsMem.c
>  create mode 100644 Platform/NXP/LS2088aRdbPkg/VarStore.fdf.inc
>  create mode 100644 Silicon/Maxim/Library/Ds3232RtcLib/Ds3232Rtc.h
>  create mode 100644 Silicon/Maxim/Library/Ds3232RtcLib/Ds3232RtcLib.c
>  create mode 100644 Silicon/Maxim/Library/Ds3232RtcLib/Ds3232RtcLib.dec
>  create mode 100644 Silicon/Maxim/Library/Ds3232RtcLib/Ds3232RtcLib.inf
>  create mode 100644 Silicon/NXP/Chassis/Chassis3/Chassis3.dec
>  create mode 100644 Silicon/NXP/Chassis/Chassis3/Errata.c
>  create mode 100644 Silicon/NXP/Chassis/Chassis3/SerDes.h
>  create mode 100644 Silicon/NXP/Chassis/Chassis3/Soc.c
>  create mode 100644 Silicon/NXP/Chassis/Chassis3/Soc.h
>  create mode 100644 Silicon/NXP/Chassis/LS2088aSocLib.inf
>  create mode 100644 Silicon/NXP/LS2088A/Include/SocSerDes.h
>  create mode 100644 Silicon/NXP/LS2088A/LS2088A.dec
>  create mode 100644 Silicon/NXP/LS2088A/LS2088A.dsc
>
> --
> 2.7.4
>
_______________________________________________
edk2-devel mailing list
edk2-devel@lists.01.org
https://lists.01.org/mailman/listinfo/edk2-devel
Re: [edk2] [PATCH edk2-platforms 0/4] NXP:LS2088A RDB Board Support
Posted by Meenakshi Aggarwal 6 years, 3 months ago
Hi Ard,

Thanks for your time.

Below is the sequence in which we have sent the patches.

1. [PATCH edk2-platforms] [PATCH v3 0/9] Platform/NXP [27/11/2017] V3
     This patch-set adds support for LS1043 platform, it includes patches for platform initialization and all necessary drivers to support architecture protocols.

2. [PATCH 0/4] Platform/NXP-Adding NXP NOR IP [19/12/2017] V2
     This patch-set adds support for IFC NOR driver and enables it for LS1043 Soc.

3. [PATCH 0/4] Platform/NXP-Add LS1046A RDB Board Support  [19/12/2017] V2
     This patch-set adds support for LS1046 platform, it includes patches for platform initialization and all necessary drivers to support architecture protocols.

4. [PATCH 0/3] Platform/NXP-Adding NXP MMC Host Driver [1/12/2017]  V1
     This patch-set adds support for MMC Host driver and enables it for LS1043 Soc.

5. [PATCH edk2-platforms 0/3] Platform/NXP-Added NXP PCI Host Bridge Driver [22/12/2017] V1
     This patch-set adds support for PCI Host bridge driver and enables it for LS1043 Soc.
      V2 is in progress on basis of your comments.

6. [PATCH edk2-platforms 0/4] NXP:LS2088A RDB Board Support [22/12/2017] V1
     This patch-set adds support for LS2088 platform, it includes patches for platform initialization and all necessary drivers to support architecture protocols.

7. [PATCH edk2-platforms 0/3] Cover letter:Pci Emulation and SATA support [22/12/2017] V1
     This patch-set adds support for SATA on PCI Emulation layer and enables it for LS1046 Soc.
     V2 in progress on basis of your comment (using NonDiscoverablePciDevice Layer rather Pci Emulation layer).


Please let us know if you need any other information.

Thanks,
NXP Team

> -----Original Message-----
> From: Ard Biesheuvel [mailto:ard.biesheuvel@linaro.org]
> Sent: Tuesday, January 02, 2018 9:26 PM
> To: Wasim Khan <wasim.khan@nxp.com>; Meenakshi Aggarwal
> <meenakshi.aggarwal@freescale.com>
> Cc: Leif Lindholm <leif.lindholm@linaro.org>; Kinney, Michael D
> <michael.d.kinney@intel.com>; edk2-devel@lists.01.org; Udit Kumar
> <udit.kumar@nxp.com>; Varun Sethi <V.Sethi@nxp.com>
> Subject: Re: [PATCH edk2-platforms 0/4] NXP:LS2088A RDB Board Support
> 
> Hello Wasim, Udit, Meenakshi,
> 
> I kind of lost track of all the patches you have been sending over the
> past month or so.
> Could one of you please send a quick summary of all the patches that
> are in flight at the moment, and for which platforms?
> 
> Thanks,
> Ard.
> 
> 
> On 22 December 2017 at 10:51, Wasim Khan <wasim.khan@nxp.com> wrote:
> > In Silicon/NXP, we are keeping our SoC specific information and remaining
> code will be kept in Platform/NXP.
> >
> > Following patches will add support of NXP LS2088A RDB board in edk2-
> platforms.
> >
> > Platform/NXP/LS2088aRdbPkg will host .dsc and .fdf files to support
> compilation for LS2088A RDB board.
> >
> > Looking forward for your kind support in upstreaming LS2088 RDB board
> support in edk2-platforms.
> >
> > Wasim Khan (4):
> >   Platform/NXP: Add support for ArmPlatformLib
> >   Silicon/Maxim: Added Support for DS3232 RTC Library
> >   Silicon/NXP:SocLib support for initialization of peripherals
> >   Compilation : Add the fdf, dsc and dec files.
> >
> >  .../LS2088aRdbPkg/Include/Library/PlatformLib.h    |  28 ++
> >  Platform/NXP/LS2088aRdbPkg/LS2088aRdbPkg.dec       |  29 ++
> >  Platform/NXP/LS2088aRdbPkg/LS2088aRdbPkg.dsc       |  95 ++++++
> >  Platform/NXP/LS2088aRdbPkg/LS2088aRdbPkg.fdf       | 197 +++++++++++
> >  .../Library/PlatformLib/ArmPlatformLib.c           | 106 ++++++
> >  .../Library/PlatformLib/ArmPlatformLib.inf         |  80 +++++
> >  .../Library/PlatformLib/NxpQoriqLsHelper.S         |  35 ++
> >  .../Library/PlatformLib/NxpQoriqLsMem.c            | 196 +++++++++++
> >  Platform/NXP/LS2088aRdbPkg/VarStore.fdf.inc        |  98 ++++++
> >  Platform/NXP/NxpQoriqLs.dec                        |   1 +
> >  Silicon/Maxim/Library/Ds3232RtcLib/Ds3232Rtc.h     |  49 +++
> >  Silicon/Maxim/Library/Ds3232RtcLib/Ds3232RtcLib.c  | 370
> +++++++++++++++++++++
> >  .../Maxim/Library/Ds3232RtcLib/Ds3232RtcLib.dec    |  31 ++
> >  .../Maxim/Library/Ds3232RtcLib/Ds3232RtcLib.inf    |  50 +++
> >  Silicon/NXP/Chassis/Chassis.c                      |  32 ++
> >  Silicon/NXP/Chassis/Chassis.h                      |  17 +
> >  Silicon/NXP/Chassis/Chassis3/Chassis3.dec          |  19 ++
> >  Silicon/NXP/Chassis/Chassis3/Errata.c              |  62 ++++
> >  Silicon/NXP/Chassis/Chassis3/SerDes.h              |  92 +++++
> >  Silicon/NXP/Chassis/Chassis3/Soc.c                 | 171 ++++++++++
> >  Silicon/NXP/Chassis/Chassis3/Soc.h                 | 159 +++++++++
> >  Silicon/NXP/Chassis/LS2088aSocLib.inf              |  53 +++
> >  Silicon/NXP/LS2088A/Include/SocSerDes.h            |  67 ++++
> >  Silicon/NXP/LS2088A/LS2088A.dec                    |  22 ++
> >  Silicon/NXP/LS2088A/LS2088A.dsc                    | 101 ++++++
> >  25 files changed, 2160 insertions(+)
> >  create mode 100755
> Platform/NXP/LS2088aRdbPkg/Include/Library/PlatformLib.h
> >  create mode 100644 Platform/NXP/LS2088aRdbPkg/LS2088aRdbPkg.dec
> >  create mode 100755 Platform/NXP/LS2088aRdbPkg/LS2088aRdbPkg.dsc
> >  create mode 100644 Platform/NXP/LS2088aRdbPkg/LS2088aRdbPkg.fdf
> >  create mode 100644
> Platform/NXP/LS2088aRdbPkg/Library/PlatformLib/ArmPlatformLib.c
> >  create mode 100644
> Platform/NXP/LS2088aRdbPkg/Library/PlatformLib/ArmPlatformLib.inf
> >  create mode 100644
> Platform/NXP/LS2088aRdbPkg/Library/PlatformLib/NxpQoriqLsHelper.S
> >  create mode 100644
> Platform/NXP/LS2088aRdbPkg/Library/PlatformLib/NxpQoriqLsMem.c
> >  create mode 100644 Platform/NXP/LS2088aRdbPkg/VarStore.fdf.inc
> >  create mode 100644 Silicon/Maxim/Library/Ds3232RtcLib/Ds3232Rtc.h
> >  create mode 100644 Silicon/Maxim/Library/Ds3232RtcLib/Ds3232RtcLib.c
> >  create mode 100644 Silicon/Maxim/Library/Ds3232RtcLib/Ds3232RtcLib.dec
> >  create mode 100644 Silicon/Maxim/Library/Ds3232RtcLib/Ds3232RtcLib.inf
> >  create mode 100644 Silicon/NXP/Chassis/Chassis3/Chassis3.dec
> >  create mode 100644 Silicon/NXP/Chassis/Chassis3/Errata.c
> >  create mode 100644 Silicon/NXP/Chassis/Chassis3/SerDes.h
> >  create mode 100644 Silicon/NXP/Chassis/Chassis3/Soc.c
> >  create mode 100644 Silicon/NXP/Chassis/Chassis3/Soc.h
> >  create mode 100644 Silicon/NXP/Chassis/LS2088aSocLib.inf
> >  create mode 100644 Silicon/NXP/LS2088A/Include/SocSerDes.h
> >  create mode 100644 Silicon/NXP/LS2088A/LS2088A.dec
> >  create mode 100644 Silicon/NXP/LS2088A/LS2088A.dsc
> >
> > --
> > 2.7.4
> >
_______________________________________________
edk2-devel mailing list
edk2-devel@lists.01.org
https://lists.01.org/mailman/listinfo/edk2-devel