On Mon, Nov 12, 2018 at 9:57 PM Leif Lindholm <leif.lindh...@linaro.org> wrote:
>
> Hi Chadni,
>
> I will disregard this set.
> Please send out a new v3 containing the changes we've discussed, only
> after I've completed reviewing the set.
>
> Best Regards,
>
> Leif
>

Hi Leif,

Can I post the new v3 patchset containing the changes that we've discussed?

Thanks
Chandni

> On Mon, Nov 12, 2018 at 05:11:51PM +0530, Chandni Cherukuri wrote:
> > Changes since v2:
> > - Added additional checks for platform-id and config-id values.
> >
> > Changes since v1:
> > - No code changes, posting this series again with correct patch subject
> >
> > This patch series adds support for two new Arm's SGI platforms -
> > SGI-Clark.Ares and SGI-Clark.Helios. The first patch in this
> > series adds support to use a new binding added to the system-id
> > node for Platform Identification. The rest of the patches add
> > support for the two new SGI platforms.
> >
> > Chandni Cherukuri (5):
> >   Platform/ARM/Sgi: Adapt to changes in system-id DT node.
> >   Platform/ARM/Sgi: Add ACPI tables for SGI-Clark.Ares platform
> >   Platform/ARM/Sgi: Add initial support for SGI-Clark.Ares platform
> >   Platform/ARM/Sgi: Add ACPI tables for SGI-Clark.Helios platform
> >   Platform/ARM/Sgi: Add initial support for SGI-Clark.Helios platform
> >
> >  Platform/ARM/SgiPkg/SgiPlatform.dec                          |   2 +
> >  Platform/ARM/SgiPkg/SgiPlatform.dsc                          |   2 +
> >  Platform/ARM/SgiPkg/SgiPlatform.fdf                          |   2 +
> >  Platform/ARM/SgiPkg/AcpiTables/SgiClarkA/AcpiTables.inf      |  58 +++++
> >  Platform/ARM/SgiPkg/AcpiTables/SgiClarkH/AcpiTables.inf      |  58 +++++
> >  Platform/ARM/SgiPkg/Drivers/PlatformDxe/PlatformDxe.inf      |   2 +
> >  Platform/ARM/SgiPkg/Include/SgiPlatform.h                    |   5 +
> >  Platform/ARM/SgiPkg/Drivers/PlatformDxe/PlatformDxe.c        |  19 +-
> >  Platform/ARM/SgiPkg/Library/SgiPlatformPei/SgiPlatformPeim.c |  24 +-
> >  Platform/ARM/SgiPkg/AcpiTables/SgiClarkA/Dbg2.aslc           |  90 +++++++
> >  Platform/ARM/SgiPkg/AcpiTables/SgiClarkA/Dsdt.asl            | 116 
> > +++++++++
> >  Platform/ARM/SgiPkg/AcpiTables/SgiClarkA/Fadt.aslc           |  87 +++++++
> >  Platform/ARM/SgiPkg/AcpiTables/SgiClarkA/Gtdt.aslc           | 152 
> > +++++++++++
> >  Platform/ARM/SgiPkg/AcpiTables/SgiClarkA/Iort.aslc           | 106 ++++++++
> >  Platform/ARM/SgiPkg/AcpiTables/SgiClarkA/Madt.aslc           | 171 
> > +++++++++++++
> >  Platform/ARM/SgiPkg/AcpiTables/SgiClarkA/Mcfg.aslc           |  61 +++++
> >  Platform/ARM/SgiPkg/AcpiTables/SgiClarkA/Spcr.aslc           |  77 ++++++
> >  Platform/ARM/SgiPkg/AcpiTables/SgiClarkA/Ssdt.asl            |  95 +++++++
> >  Platform/ARM/SgiPkg/AcpiTables/SgiClarkH/Dbg2.aslc           |  90 +++++++
> >  Platform/ARM/SgiPkg/AcpiTables/SgiClarkH/Dsdt.asl            | 262 
> > +++++++++++++++++++
> >  Platform/ARM/SgiPkg/AcpiTables/SgiClarkH/Fadt.aslc           |  87 +++++++
> >  Platform/ARM/SgiPkg/AcpiTables/SgiClarkH/Gtdt.aslc           | 152 
> > +++++++++++
> >  Platform/ARM/SgiPkg/AcpiTables/SgiClarkH/Iort.aslc           | 106 ++++++++
> >  Platform/ARM/SgiPkg/AcpiTables/SgiClarkH/Madt.aslc           | 266 
> > ++++++++++++++++++++
> >  Platform/ARM/SgiPkg/AcpiTables/SgiClarkH/Mcfg.aslc           |  61 +++++
> >  Platform/ARM/SgiPkg/AcpiTables/SgiClarkH/Spcr.aslc           |  77 ++++++
> >  Platform/ARM/SgiPkg/AcpiTables/SgiClarkH/Ssdt.asl            |  95 +++++++
> >  27 files changed, 2315 insertions(+), 8 deletions(-)
> >  create mode 100644 Platform/ARM/SgiPkg/AcpiTables/SgiClarkA/AcpiTables.inf
> >  create mode 100644 Platform/ARM/SgiPkg/AcpiTables/SgiClarkH/AcpiTables.inf
> >  create mode 100644 Platform/ARM/SgiPkg/AcpiTables/SgiClarkA/Dbg2.aslc
> >  create mode 100644 Platform/ARM/SgiPkg/AcpiTables/SgiClarkA/Dsdt.asl
> >  create mode 100644 Platform/ARM/SgiPkg/AcpiTables/SgiClarkA/Fadt.aslc
> >  create mode 100644 Platform/ARM/SgiPkg/AcpiTables/SgiClarkA/Gtdt.aslc
> >  create mode 100644 Platform/ARM/SgiPkg/AcpiTables/SgiClarkA/Iort.aslc
> >  create mode 100644 Platform/ARM/SgiPkg/AcpiTables/SgiClarkA/Madt.aslc
> >  create mode 100644 Platform/ARM/SgiPkg/AcpiTables/SgiClarkA/Mcfg.aslc
> >  create mode 100644 Platform/ARM/SgiPkg/AcpiTables/SgiClarkA/Spcr.aslc
> >  create mode 100644 Platform/ARM/SgiPkg/AcpiTables/SgiClarkA/Ssdt.asl
> >  create mode 100644 Platform/ARM/SgiPkg/AcpiTables/SgiClarkH/Dbg2.aslc
> >  create mode 100644 Platform/ARM/SgiPkg/AcpiTables/SgiClarkH/Dsdt.asl
> >  create mode 100644 Platform/ARM/SgiPkg/AcpiTables/SgiClarkH/Fadt.aslc
> >  create mode 100644 Platform/ARM/SgiPkg/AcpiTables/SgiClarkH/Gtdt.aslc
> >  create mode 100644 Platform/ARM/SgiPkg/AcpiTables/SgiClarkH/Iort.aslc
> >  create mode 100644 Platform/ARM/SgiPkg/AcpiTables/SgiClarkH/Madt.aslc
> >  create mode 100644 Platform/ARM/SgiPkg/AcpiTables/SgiClarkH/Mcfg.aslc
> >  create mode 100644 Platform/ARM/SgiPkg/AcpiTables/SgiClarkH/Spcr.aslc
> >  create mode 100644 Platform/ARM/SgiPkg/AcpiTables/SgiClarkH/Ssdt.asl
> >
> > --
> > 2.7.4
> >
> >
> _______________________________________________
> edk2-devel mailing list
> edk2-devel@lists.01.org
> https://lists.01.org/mailman/listinfo/edk2-devel
_______________________________________________
edk2-devel mailing list
edk2-devel@lists.01.org
https://lists.01.org/mailman/listinfo/edk2-devel

Reply via email to