]> git.dujemihanovic.xyz Git - u-boot.git/commit
arm: bcmbca: introduce the bcmbca architecture and 47622 SOC
authorWilliam Zhang <william.zhang@broadcom.com>
Mon, 9 May 2022 16:28:02 +0000 (09:28 -0700)
committerTom Rini <trini@konsulko.com>
Fri, 10 Jun 2022 17:37:32 +0000 (13:37 -0400)
commitf8209d30512d2e9c994d32cccfceda3a1e065cab
tree6ebb0c881dd77383ec365ffa7cdf7d207578c77b
parentd7ef2ef7c87528c359e110d7170e01a98aaecf14
arm: bcmbca: introduce the bcmbca architecture and 47622 SOC

This is the initial support for Broadcom's ARM-based 47622 SOC.

In this change, our first SOC is an armv7 platform called 47622. The
initial support includes a bare-bone implementation and dts with ARM
PL011 uart.

The SOC-specific code resides in arch/arm/mach-bcmbca/<soc> and board
related code is in board/broadcom/bcmba.

The u-boot image can be loaded from flash or network to the entry
point address in the memory and boot from there.

Signed-off-by: William Zhang <william.zhang@broadcom.com>
Signed-off-by: Kursad Oney <kursad.oney@broadcom.com>
Signed-off-by: Anand Gore <anand.gore@broadcom.com>
Reviewed-by: Philippe Reynes <philippe.reynes@softathome.com>
15 files changed:
MAINTAINERS
arch/arm/Kconfig
arch/arm/Makefile
arch/arm/dts/Makefile
arch/arm/dts/bcm47622.dtsi [new file with mode: 0644]
arch/arm/dts/bcm947622.dts [new file with mode: 0644]
arch/arm/mach-bcmbca/Kconfig [new file with mode: 0644]
arch/arm/mach-bcmbca/Makefile [new file with mode: 0644]
arch/arm/mach-bcmbca/bcm47622/Kconfig [new file with mode: 0644]
arch/arm/mach-bcmbca/bcm47622/Makefile [new file with mode: 0644]
board/broadcom/bcmbca/Kconfig [new file with mode: 0644]
board/broadcom/bcmbca/Makefile [new file with mode: 0644]
board/broadcom/bcmbca/board.c [new file with mode: 0644]
configs/bcm947622_defconfig [new file with mode: 0644]
include/configs/bcm947622.h [new file with mode: 0644]