meson/gxl: Initial port of Amlogic Meson S905x (GXL)
authorAntonio Nino Diaz <antonio.ninodiaz@arm.com>
Wed, 5 Dec 2018 00:09:30 +0000 (00:09 +0000)
committerRemi Pommarel <repk@triplefau.lt>
Tue, 2 Apr 2019 14:33:58 +0000 (16:33 +0200)
commit95d0d13ce2095d821662a624faf1ac4e5a13f928
tree0bbe0a0a59cd94c02edae74cd720db4d9ab413cd
parent0a4bf763f3e5b2f67b0d5798a40fb9d0caefd554
meson/gxl: Initial port of Amlogic Meson S905x (GXL)

The Amlogic Meson S905x is a SoC with a quad core Arm Cortex-A53 running
at 1.5Ghz. It also contains a Cortex-M3 used as SCP.

This port is a minimal implementation of BL31 capable of booting
mainline U-Boot and Linux:

- Partial SCPI support.
- Basic PSCI support (CPU_ON, SYSTEM_RESET, SYSTEM_OFF).
- GICv2 driver set up.
- Basic SIP services (read efuse data, enable/disable JTAG).

This port has been tested on a lepotato.

Signed-off-by: Antonio Nino Diaz <antonio.ninodiaz@arm.com>
Signed-off-by: Remi Pommarel <repk@triplefau.lt>
15 files changed:
plat/meson/gxl/aarch64/gxl_helpers.S [new file with mode: 0644]
plat/meson/gxl/gxl_bl31_setup.c [new file with mode: 0644]
plat/meson/gxl/gxl_common.c [new file with mode: 0644]
plat/meson/gxl/gxl_def.h [new file with mode: 0644]
plat/meson/gxl/gxl_efuse.c [new file with mode: 0644]
plat/meson/gxl/gxl_mhu.c [new file with mode: 0644]
plat/meson/gxl/gxl_pm.c [new file with mode: 0644]
plat/meson/gxl/gxl_private.h [new file with mode: 0644]
plat/meson/gxl/gxl_scpi.c [new file with mode: 0644]
plat/meson/gxl/gxl_sip_svc.c [new file with mode: 0644]
plat/meson/gxl/gxl_thermal.c [new file with mode: 0644]
plat/meson/gxl/gxl_topology.c [new file with mode: 0644]
plat/meson/gxl/include/plat_macros.S [new file with mode: 0644]
plat/meson/gxl/include/platform_def.h [new file with mode: 0644]
plat/meson/gxl/platform.mk [new file with mode: 0644]