[edk2-devel] [edk2-platforms][PATCH 0/5] Add initial Raspberry Pi 4 platform

Pete Batard posted 5 patches 4 years, 4 months ago
Failed in applying to current master (apply log)
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
[edk2-devel] [edk2-platforms][PATCH 0/5] Add initial Raspberry Pi 4 platform
Posted by Pete Batard 4 years, 4 months ago
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


-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.

View/Reply Online (#52113): https://edk2.groups.io/g/devel/message/52113
Mute This Topic: https://groups.io/mt/68147480/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 0/5] Add initial Raspberry Pi 4 platform
Posted by Ard Biesheuvel 4 years, 4 months ago
On Wed, 11 Dec 2019 at 12:26, Pete Batard <pete@akeo.ie> wrote:
>
> 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
>

Reviewed-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>

> 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
>

Reviewed-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>


Pushed as c5a2065ee8c2..065a5597f36a

Thanks!



>  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
>

-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.

View/Reply Online (#52130): https://edk2.groups.io/g/devel/message/52130
Mute This Topic: https://groups.io/mt/68147480/1787277
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub  [importer@patchew.org]
-=-=-=-=-=-=-=-=-=-=-=-