[edk2-devel] [edk2-platforms][PATCH V3 0/6] Platform/Sgi: improvements in RD platform support

Pranav Madhu posted 6 patches 3 years ago
Failed in applying to current master (apply log)
Platform/ARM/SgiPkg/SgiPlatform.dec           | 18 +++++++++++
Platform/ARM/SgiPkg/SgiMemoryMap.dsc.inc      | 10 ++++++
Platform/ARM/SgiPkg/SgiMemoryMap2.dsc.inc     | 10 ++++++
Platform/ARM/SgiPkg/SgiPlatform.dsc.inc       | 15 ++++++++-
.../SgiPkg/AcpiTables/RdE1EdgeAcpiTables.inf  |  4 +++
.../SgiPkg/AcpiTables/RdN1EdgeAcpiTables.inf  |  4 +++
.../AcpiTables/RdN1EdgeX2AcpiTables.inf       |  4 +++
.../ARM/SgiPkg/AcpiTables/RdN2AcpiTables.inf  |  4 +++
.../ARM/SgiPkg/AcpiTables/RdV1AcpiTables.inf  |  5 +++
.../SgiPkg/AcpiTables/RdV1McAcpiTables.inf    |  5 +++
.../SgiPkg/AcpiTables/Sgi575AcpiTables.inf    |  4 +++
.../Library/PlatformLib/PlatformLib.inf       | 11 +++++++
Platform/ARM/SgiPkg/Include/SgiPlatform.h     |  4 ---
.../Library/PlatformLib/PlatformLibMem.c      | 32 ++++++++++++++++---
Platform/ARM/SgiPkg/AcpiTables/Gtdt.aslc      |  8 ++---
.../ARM/SgiPkg/AcpiTables/RdE1Edge/Dsdt.asl   |  4 +--
.../ARM/SgiPkg/AcpiTables/RdN1Edge/Dsdt.asl   |  4 +--
Platform/ARM/SgiPkg/AcpiTables/RdN2/Dsdt.asl  |  4 +--
Platform/ARM/SgiPkg/AcpiTables/RdV1/Dsdt.asl  |  4 +--
.../ARM/SgiPkg/AcpiTables/RdV1Mc/Dsdt.asl     | 10 ++----
.../ARM/SgiPkg/AcpiTables/RdV1Mc/Madt.aslc    | 24 +++++++-------
.../ARM/SgiPkg/AcpiTables/Sgi575/Dsdt.asl     |  4 +--
Platform/ARM/SgiPkg/AcpiTables/Ssdt.asl       |  4 +--
Platform/ARM/SgiPkg/AcpiTables/SsdtRos.asl    |  4 +--
24 files changed, 153 insertions(+), 47 deletions(-)
[edk2-devel] [edk2-platforms][PATCH V3 0/6] Platform/Sgi: improvements in RD platform support
Posted by Pranav Madhu 3 years ago
Changes since V2:
- Rebase the patches on top of latest master branch
- Addressed comments from Sami

Changes since V1:
- Rebase the patches on top of latest master branch
- Add three more patches to the series
- Picked up Sami's R-b tags on applicable patches

This patch series contains assorted cleanups for the RD platforms. The
first patch in this series includes the SSDT table for both the RD-V1
single chip and multi-chip platform. The second and third patches in
this series cleanup the ACPI processor ID and MPIDR values for RD-V1 in
multichip configuration. The fourth patch in this series updates the
DSDT/SSDT table revision as per ACPI specification 6.3. The fifth patch
adds PCDs for timer interrupts as interrupt mapping is different RD-N2
platform. And the last patch in this series adds SMMU and timer entries
into memory description table to support Arm SystemReady SR SBSA tests.

Link to github branch with the patches in this series -
https://github.com/Pranav-Madhu/edk2-platforms/tree/topics/rd/rd-cleanup

Pranav Madhu (6):
  Platform/Sgi: include SSDT table for RD-V1 platform
  Platform/Sgi: fix the list of CPU devices on RD-V1-MC platform
  Platform/Sgi: fix CPU acpi-id for RD-V1-MC platform
  Platform/Sgi: update ACPI table revision
  Platform/Sgi: define PCD for timer interrupt numbers
  Platform/Sgi: add SMMU and timer entries to memory description table

 Platform/ARM/SgiPkg/SgiPlatform.dec           | 18 +++++++++++
 Platform/ARM/SgiPkg/SgiMemoryMap.dsc.inc      | 10 ++++++
 Platform/ARM/SgiPkg/SgiMemoryMap2.dsc.inc     | 10 ++++++
 Platform/ARM/SgiPkg/SgiPlatform.dsc.inc       | 15 ++++++++-
 .../SgiPkg/AcpiTables/RdE1EdgeAcpiTables.inf  |  4 +++
 .../SgiPkg/AcpiTables/RdN1EdgeAcpiTables.inf  |  4 +++
 .../AcpiTables/RdN1EdgeX2AcpiTables.inf       |  4 +++
 .../ARM/SgiPkg/AcpiTables/RdN2AcpiTables.inf  |  4 +++
 .../ARM/SgiPkg/AcpiTables/RdV1AcpiTables.inf  |  5 +++
 .../SgiPkg/AcpiTables/RdV1McAcpiTables.inf    |  5 +++
 .../SgiPkg/AcpiTables/Sgi575AcpiTables.inf    |  4 +++
 .../Library/PlatformLib/PlatformLib.inf       | 11 +++++++
 Platform/ARM/SgiPkg/Include/SgiPlatform.h     |  4 ---
 .../Library/PlatformLib/PlatformLibMem.c      | 32 ++++++++++++++++---
 Platform/ARM/SgiPkg/AcpiTables/Gtdt.aslc      |  8 ++---
 .../ARM/SgiPkg/AcpiTables/RdE1Edge/Dsdt.asl   |  4 +--
 .../ARM/SgiPkg/AcpiTables/RdN1Edge/Dsdt.asl   |  4 +--
 Platform/ARM/SgiPkg/AcpiTables/RdN2/Dsdt.asl  |  4 +--
 Platform/ARM/SgiPkg/AcpiTables/RdV1/Dsdt.asl  |  4 +--
 .../ARM/SgiPkg/AcpiTables/RdV1Mc/Dsdt.asl     | 10 ++----
 .../ARM/SgiPkg/AcpiTables/RdV1Mc/Madt.aslc    | 24 +++++++-------
 .../ARM/SgiPkg/AcpiTables/Sgi575/Dsdt.asl     |  4 +--
 Platform/ARM/SgiPkg/AcpiTables/Ssdt.asl       |  4 +--
 Platform/ARM/SgiPkg/AcpiTables/SsdtRos.asl    |  4 +--
 24 files changed, 153 insertions(+), 47 deletions(-)

-- 
2.17.1



-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#73977): https://edk2.groups.io/g/devel/message/73977
Mute This Topic: https://groups.io/mt/82046076/1787277
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [importer@patchew.org]
-=-=-=-=-=-=-=-=-=-=-=-


Re: [edk2-devel] [edk2-platforms][PATCH V3 0/6] Platform/Sgi: improvements in RD platform support
Posted by Sami Mujawar 3 years ago
Pushed as 7327e605d2e8..7545558886de

Thanks.

Regards,

Sami Mujawar


-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#74020): https://edk2.groups.io/g/devel/message/74020
Mute This Topic: https://groups.io/mt/82046076/1787277
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [importer@patchew.org]
-=-=-=-=-=-=-=-=-=-=-=-