public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [edk2-platforms][PATCH 0/5] Add initial Raspberry Pi 4 platform
@ 2019-12-11 11:25 Pete Batard
  2019-12-11 11:25 ` [edk2-platforms][PATCH 1/5] Platform/RPi: Fix overlap of SoC registers and RAM Pete Batard
                   ` (5 more replies)
  0 siblings, 6 replies; 10+ messages in thread
From: Pete Batard @ 2019-12-11 11:25 UTC (permalink / raw)
  To: devel
  Cc: ard.biesheuvel, leif.lindholm, philmd, andrey.warkentin,
	samer.el-haj-mahmoud

This series adds basic support to build the Raspberry Pi 4 platform.

It requires the earlier series, that add binary files for the platform,
to have been applied to edk2-non-osi.

For the introduction of the platform, USB support is not yet enabled
which means that user I/O has to be carried out through serial.

The first two patches of the series are fixes for the common RPi
platform that will become relevant when we introduce support for
PCIe/xHCI.

The second two patch deal with the specific ACPI changes for the
Pi 4 platform. To make these clearer, an intermediate patch, that
simply enacts a straight unaltered copy of the Pi 3 ACPI files is
added, so that the changes we apply can be made obvious. We also
use this opportunity to switch the source of some tables (GTDT,
MADT) to proper aslc.

Finally, the last patch in this series adds the platform files
along with a Readme detailing the installation requirements and
current state of the platform.

Andrei Warkentin (2):
  Platform/RPi4: Update ACPI tables for the new platform
  Platform/RPi4: Add base platform files

Ard Biesheuvel (2):
  Platform/RPi: Fix overlap of SoC registers and RAM
  Platform/RPi: Don't describe MMIO regions as memory

Samer El-Haj-Mahmoud (1):
  Platform/RPi4: Add initial ACPI tables

 Platform/RaspberryPi/Include/Library/RPiMem.h                    |   7 +-
 Platform/RaspberryPi/Library/MemoryInitPeiLib/MemoryInitPeiLib.c |  10 +
 Platform/RaspberryPi/Library/PlatformLib/RaspberryPiMem.c        |  42 +-
 Platform/RaspberryPi/RPi4/AcpiTables/AcpiTables.h                |  92 +++
 Platform/RaspberryPi/RPi4/AcpiTables/AcpiTables.inf              |  49 ++
 Platform/RaspberryPi/RPi4/AcpiTables/Csrt.aslc                   | 327 ++++++++++
 Platform/RaspberryPi/RPi4/AcpiTables/Dbg2.aslc                   |  28 +
 Platform/RaspberryPi/RPi4/AcpiTables/Dsdt.asl                    | 505 ++++++++++++++++
 Platform/RaspberryPi/RPi4/AcpiTables/Fadt.aslc                   |  46 ++
 Platform/RaspberryPi/RPi4/AcpiTables/Gtdt.aslc                   |  56 ++
 Platform/RaspberryPi/RPi4/AcpiTables/Madt.aslc                   |  64 ++
 Platform/RaspberryPi/RPi4/AcpiTables/Pep.asl                     |  90 +++
 Platform/RaspberryPi/RPi4/AcpiTables/Pep.c                       |  79 +++
 Platform/RaspberryPi/RPi4/AcpiTables/Pep.h                       | 121 ++++
 Platform/RaspberryPi/RPi4/AcpiTables/Rhpx.asl                    | 195 ++++++
 Platform/RaspberryPi/RPi4/AcpiTables/Sdhc.asl                    |  99 +++
 Platform/RaspberryPi/RPi4/AcpiTables/Spcr.asl                    |  48 ++
 Platform/RaspberryPi/RPi4/AcpiTables/Uart.asl                    | 152 +++++
 Platform/RaspberryPi/RPi4/RPi4.dsc                               | 637 ++++++++++++++++++++
 Platform/RaspberryPi/RPi4/RPi4.fdf                               | 432 +++++++++++++
 Platform/RaspberryPi/RPi4/Readme.md                              | 110 ++++
 21 files changed, 3170 insertions(+), 19 deletions(-)
 create mode 100644 Platform/RaspberryPi/RPi4/AcpiTables/AcpiTables.h
 create mode 100644 Platform/RaspberryPi/RPi4/AcpiTables/AcpiTables.inf
 create mode 100644 Platform/RaspberryPi/RPi4/AcpiTables/Csrt.aslc
 create mode 100644 Platform/RaspberryPi/RPi4/AcpiTables/Dbg2.aslc
 create mode 100644 Platform/RaspberryPi/RPi4/AcpiTables/Dsdt.asl
 create mode 100644 Platform/RaspberryPi/RPi4/AcpiTables/Fadt.aslc
 create mode 100644 Platform/RaspberryPi/RPi4/AcpiTables/Gtdt.aslc
 create mode 100644 Platform/RaspberryPi/RPi4/AcpiTables/Madt.aslc
 create mode 100644 Platform/RaspberryPi/RPi4/AcpiTables/Pep.asl
 create mode 100644 Platform/RaspberryPi/RPi4/AcpiTables/Pep.c
 create mode 100644 Platform/RaspberryPi/RPi4/AcpiTables/Pep.h
 create mode 100644 Platform/RaspberryPi/RPi4/AcpiTables/Rhpx.asl
 create mode 100644 Platform/RaspberryPi/RPi4/AcpiTables/Sdhc.asl
 create mode 100644 Platform/RaspberryPi/RPi4/AcpiTables/Spcr.asl
 create mode 100644 Platform/RaspberryPi/RPi4/AcpiTables/Uart.asl
 create mode 100644 Platform/RaspberryPi/RPi4/RPi4.dsc
 create mode 100644 Platform/RaspberryPi/RPi4/RPi4.fdf
 create mode 100644 Platform/RaspberryPi/RPi4/Readme.md

-- 
2.21.0.windows.1


^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2019-12-11 16:21 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-12-11 11:25 [edk2-platforms][PATCH 0/5] Add initial Raspberry Pi 4 platform Pete Batard
2019-12-11 11:25 ` [edk2-platforms][PATCH 1/5] Platform/RPi: Fix overlap of SoC registers and RAM Pete Batard
2019-12-11 12:21   ` Philippe Mathieu-Daudé
2019-12-11 12:39     ` Pete Batard
2019-12-11 11:25 ` [edk2-platforms][PATCH 2/5] Platform/RPi: Don't describe MMIO regions as memory Pete Batard
2019-12-11 12:22   ` Philippe Mathieu-Daudé
2019-12-11 11:25 ` [edk2-platforms][PATCH 3/5] Platform/RPi4: Add initial ACPI tables Pete Batard
2019-12-11 11:25 ` [edk2-platforms][PATCH 4/5] Platform/RPi4: Update ACPI tables for the new platform Pete Batard
2019-12-11 11:25 ` [edk2-platforms][PATCH 5/5] Platform/RPi4: Add base platform files Pete Batard
2019-12-11 16:21 ` [edk2-platforms][PATCH 0/5] Add initial Raspberry Pi 4 platform Ard Biesheuvel

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox