
On 03.08.21 15:27, Tom Rini wrote:
On Tue, Aug 03, 2021 at 11:26:55AM +0200, Jan Kiszka wrote:
From: Jan Kiszka jan.kiszka@siemens.com
This adds support for the IOT2050 Basic and Advanced devices. The Basic used the dual-core AM6528 GP processor, the Advanced one the AM6548 HS quad-core version.
Both variants are booted via a Siemens-provided FSBL that runs on the R5 cores. Consequently, U-Boot support is targeting the A53 cores. U-Boot SPL, ATF and TEE have to reside in SPI flash.
Full integration into a bootable image can be found on https://github.com/siemens/meta-iot2050
Based on original board support by Le Jin, Gao Nian and Chao Zeng.
Signed-off-by: Jan Kiszka jan.kiszka@siemens.com
arch/arm/mach-k3/Kconfig | 1 + board/siemens/iot2050/Kconfig | 32 ++++ board/siemens/iot2050/MAINTAINERS | 9 + board/siemens/iot2050/Makefile | 10 ++ board/siemens/iot2050/board.c | 284 ++++++++++++++++++++++++++++++ board/siemens/iot2050/config.mk | 8 + configs/iot2050_defconfig | 132 ++++++++++++++ doc/board/siemens/iot2050.rst | 76 ++++++++
I'm still getting the hang of the rST stuff myself and I was too literal in my request, sorry. You need to add an index file (see 5e1df33b6821 for a recent example) and also update doc/board/index.rst to include your index.
OK, will have a look. How to ensure it's compiled / included properly? "make htmldocs" eg. should be enough?
Jan