mbox series

[U-Boot,0/5] amlogic: add support for the SEI Robotic SEI510

Message ID 20190729140158.6954-1-narmstrong@baylibre.com
Headers show
Series amlogic: add support for the SEI Robotic SEI510 | expand

Message

Neil Armstrong July 29, 2019, 2:01 p.m. UTC
The SEI510 board is based on the Amlogic S905X2 SoC
from the Amlogic G12A SoC family.

The board has the following specifications :
- Amlogic S905X2 ARM Cortex-A53 quad-core SoC
- XGB DDR4 SDRAM
- 10/100 Ethernet (Internal PHY)
- 1 x USB 3.0 Host
- eMMC
- SDcard
- Infrared receiver
- SDIO WiFi Module

The board default behaviour is for booting Android and triggers
fastboot on recovery or reboot mode.

Jerome Brunet (1):
  boards: meson: add g12a sei510

Neil Armstrong (4):
  ARM: dts: Import Amlogic G12A SEI510 DT from Linux 5.3-rc1
  configs: meson64: permit redefining ENV_SIZE
  ARM: meson: Add support for fastboot_set_reboot_flag()
  configs: sei510: disable PSCI_RESET to support fastboot reboot_flag

 arch/arm/dts/Makefile                |   1 +
 arch/arm/dts/meson-g12a-sei510.dts   | 502 +++++++++++++++++++++++++++
 arch/arm/include/asm/arch-meson/sm.h |  18 +
 arch/arm/mach-meson/board-common.c   |  33 ++
 arch/arm/mach-meson/sm.c             | 155 +++++++++
 board/amlogic/sei510/MAINTAINERS     |   5 +
 board/amlogic/sei510/Makefile        |   6 +
 board/amlogic/sei510/README          | 123 +++++++
 board/amlogic/sei510/sei510.c        |  26 ++
 configs/sei510_defconfig             |  75 ++++
 include/configs/meson64.h            |   2 +
 include/configs/sei510.h             | 137 ++++++++
 12 files changed, 1083 insertions(+)
 create mode 100644 arch/arm/dts/meson-g12a-sei510.dts
 create mode 100644 board/amlogic/sei510/MAINTAINERS
 create mode 100644 board/amlogic/sei510/Makefile
 create mode 100644 board/amlogic/sei510/README
 create mode 100644 board/amlogic/sei510/sei510.c
 create mode 100644 configs/sei510_defconfig
 create mode 100644 include/configs/sei510.h

Comments

Neil Armstrong July 29, 2019, 2:05 p.m. UTC | #1
On 29/07/2019 16:01, Neil Armstrong wrote:
> The SEI510 board is based on the Amlogic S905X2 SoC
> from the Amlogic G12A SoC family.
> 
> The board has the following specifications :
> - Amlogic S905X2 ARM Cortex-A53 quad-core SoC
> - XGB DDR4 SDRAM
> - 10/100 Ethernet (Internal PHY)
> - 1 x USB 3.0 Host
> - eMMC
> - SDcard
> - Infrared receiver
> - SDIO WiFi Module
> 
> The board default behaviour is for booting Android and triggers
> fastboot on recovery or reboot mode.
> 
> Jerome Brunet (1):
>   boards: meson: add g12a sei510
> 
> Neil Armstrong (4):
>   ARM: dts: Import Amlogic G12A SEI510 DT from Linux 5.3-rc1
>   configs: meson64: permit redefining ENV_SIZE
>   ARM: meson: Add support for fastboot_set_reboot_flag()
>   configs: sei510: disable PSCI_RESET to support fastboot reboot_flag
> 
>  arch/arm/dts/Makefile                |   1 +
>  arch/arm/dts/meson-g12a-sei510.dts   | 502 +++++++++++++++++++++++++++
>  arch/arm/include/asm/arch-meson/sm.h |  18 +
>  arch/arm/mach-meson/board-common.c   |  33 ++
>  arch/arm/mach-meson/sm.c             | 155 +++++++++
>  board/amlogic/sei510/MAINTAINERS     |   5 +
>  board/amlogic/sei510/Makefile        |   6 +
>  board/amlogic/sei510/README          | 123 +++++++
>  board/amlogic/sei510/sei510.c        |  26 ++
>  configs/sei510_defconfig             |  75 ++++
>  include/configs/meson64.h            |   2 +
>  include/configs/sei510.h             | 137 ++++++++
>  12 files changed, 1083 insertions(+)
>  create mode 100644 arch/arm/dts/meson-g12a-sei510.dts
>  create mode 100644 board/amlogic/sei510/MAINTAINERS
>  create mode 100644 board/amlogic/sei510/Makefile
>  create mode 100644 board/amlogic/sei510/README
>  create mode 100644 board/amlogic/sei510/sei510.c
>  create mode 100644 configs/sei510_defconfig
>  create mode 100644 include/configs/sei510.h
> 

Missing my Signed-off-by tags.. resending sorry for the noise.

Neil