
On Thu, May 02, 2019 at 11:01:48AM +0200, Hannes Schmelzer wrote:
This commit adds support for the B&R brsmarc1 SoM.
The SoM is based on TI's AM335x SoC. Mainly vxWorks 6.9.4.x is running on the board, doing some PLC stuff on various carrier boards.
Signed-off-by: Hannes Schmelzer hannes.schmelzer@br-automation.com
arch/arm/dts/Makefile | 1 + arch/arm/dts/am335x-brsmarc1.dts | 408 +++++++++++++++++++++++++++++++++++++ arch/arm/mach-omap2/Kconfig | 1 + arch/arm/mach-omap2/am33xx/Kconfig | 3 + board/BuR/brsmarc1/Kconfig | 15 ++ board/BuR/brsmarc1/MAINTAINERS | 6 + board/BuR/brsmarc1/Makefile | 13 ++ board/BuR/brsmarc1/board.c | 168 +++++++++++++++ board/BuR/brsmarc1/config.mk | 34 ++++ board/BuR/brsmarc1/mux.c | 266 ++++++++++++++++++++++++ configs/brsmarc1_defconfig | 107 ++++++++++ include/configs/brsmarc1.h | 87 ++++++++ 12 files changed, 1109 insertions(+)
A few small things. Makefile / config.mk need the SDPX tag as the top line. Next:
diff --git a/arch/arm/mach-omap2/am33xx/Kconfig b/arch/arm/mach-omap2/am33xx/Kconfig index 500df1a..3ec154e 100644 --- a/arch/arm/mach-omap2/am33xx/Kconfig +++ b/arch/arm/mach-omap2/am33xx/Kconfig @@ -121,6 +121,9 @@ config TARGET_BRXRE1 bool "Support BRXRE1" select BOARD_LATE_INIT
+config TARGET_BRSMARC1
bool "Support BRSMARC1"
select BOARD_LATE_INIT
config TARGET_BRPPT1 bool "Support BRPPT1" select BOARD_LATE_INIT
You missed adding a newline after the new TARGET.
Thanks!