diff options
author | William Zhang <william.zhang@broadcom.com> | 2022-08-01 11:39:24 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-10-31 08:54:43 -0400 |
commit | 4054fd71821a7b06792b1149b53d5b6bf6281006 (patch) | |
tree | fe50e30dfc1de30152e666c3ef3ef2b633d47267 /board/broadcom | |
parent | 4cab03842cec272513d198b749e02e181187e000 (diff) | |
download | u-boot-4054fd71821a7b06792b1149b53d5b6bf6281006.tar.gz u-boot-4054fd71821a7b06792b1149b53d5b6bf6281006.tar.bz2 u-boot-4054fd71821a7b06792b1149b53d5b6bf6281006.zip |
arm: bcmbca: add bcm6756 SoC support
BCM6756 is an ARM A7 based WLAN Gateway and Access Point Broadband SoC.
It is part of the BCA(Broadband Carrier Access origin) chipset family so
it's added under ARCH_BCMBCA platform. This initial support includes a
bare-bone implementation and dts with CPU subsystem, memory and ARM
PL011 uart.
This SoC is supported in the linux-next git repository so the dts and
dtsi files are copied from linux.
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>
Diffstat (limited to 'board/broadcom')
-rw-r--r-- | board/broadcom/bcmbca/Kconfig | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/board/broadcom/bcmbca/Kconfig b/board/broadcom/bcmbca/Kconfig index 2d95deec66..89c02cf054 100644 --- a/board/broadcom/bcmbca/Kconfig +++ b/board/broadcom/bcmbca/Kconfig @@ -16,17 +16,17 @@ config SYS_CONFIG_NAME endif -if TARGET_BCM96878 +if TARGET_BCM963178 config SYS_CONFIG_NAME - default "bcm96878" + default "bcm963178" endif -if TARGET_BCM963178 +if TARGET_BCM96756 config SYS_CONFIG_NAME - default "bcm963178" + default "bcm96756" endif @@ -36,3 +36,10 @@ config SYS_CONFIG_NAME default "bcm96846" endif + +if TARGET_BCM96878 + +config SYS_CONFIG_NAME + default "bcm96878" + +endif |