public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: Ard Biesheuvel <ard.biesheuvel@linaro.org>
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" <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
Date: Tue, 2 Jan 2018 15:55:58 +0000	[thread overview]
Message-ID: <CAKv+Gu_Zet2DPSDZqy+rJYgoDcz6Ofc0QrCQTjjX5tHnMEYgXw@mail.gmail.com> (raw)
In-Reply-To: <1513939917-19336-1-git-send-email-wasim.khan@nxp.com>

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
>


  parent reply	other threads:[~2018-01-02 15:50 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-12-22 10:51 [PATCH edk2-platforms 0/4] NXP:LS2088A RDB Board Support Wasim Khan
2017-12-22 10:51 ` [PATCH edk2-platforms 1/4] Platform/NXP: Add support for ArmPlatformLib Wasim Khan
2017-12-22 10:51 ` [PATCH edk2-platforms 2/4] Silicon/Maxim: Added Support for DS3232 RTC Library Wasim Khan
2017-12-22 10:51 ` [PATCH edk2-platforms 3/4] Silicon/NXP:SocLib support for initialization of peripherals Wasim Khan
2017-12-22 10:51 ` [PATCH edk2-platforms 4/4] Compilation : Add the fdf, dsc and dec files Wasim Khan
2018-01-02 15:55 ` Ard Biesheuvel [this message]
2018-01-03  4:52   ` [PATCH edk2-platforms 0/4] NXP:LS2088A RDB Board Support Meenakshi Aggarwal

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=CAKv+Gu_Zet2DPSDZqy+rJYgoDcz6Ofc0QrCQTjjX5tHnMEYgXw@mail.gmail.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