diff options
author | William Zhang <william.zhang@broadcom.com> | 2022-05-09 09:28:02 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-06-10 13:37:32 -0400 |
commit | f8209d30512d2e9c994d32cccfceda3a1e065cab (patch) | |
tree | 6ebb0c881dd77383ec365ffa7cdf7d207578c77b /configs/bcm947622_defconfig | |
parent | d7ef2ef7c87528c359e110d7170e01a98aaecf14 (diff) | |
download | u-boot-f8209d30512d2e9c994d32cccfceda3a1e065cab.tar.gz |
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>
Diffstat (limited to 'configs/bcm947622_defconfig')
-rw-r--r-- | configs/bcm947622_defconfig | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/configs/bcm947622_defconfig b/configs/bcm947622_defconfig new file mode 100644 index 00000000000..af9e0c742c6 --- /dev/null +++ b/configs/bcm947622_defconfig @@ -0,0 +1,21 @@ +CONFIG_ARM=y +CONFIG_ARCH_BCMBCA=y +CONFIG_SYS_TEXT_BASE=0x01000000 +CONFIG_SYS_MALLOC_LEN=0x2000000 +CONFIG_SYS_MALLOC_F_LEN=0x8000 +CONFIG_BCM47622=y +CONFIG_TARGET_BCM947622=y +CONFIG_NR_DRAM_BANKS=1 +CONFIG_DEFAULT_DEVICE_TREE="bcm947622" +CONFIG_IDENT_STRING=" Broadcom BCM47622" +CONFIG_SYS_LOAD_ADDR=0x01000000 +CONFIG_ENV_VARS_UBOOT_CONFIG=y +CONFIG_HAS_CUSTOM_SYS_INIT_SP_ADDR=y +CONFIG_CUSTOM_SYS_INIT_SP_ADDR=0x2000000 +CONFIG_OF_STDOUT_VIA_ALIAS=y +CONFIG_DISPLAY_BOARDINFO_LATE=y +CONFIG_HUSH_PARSER=y +CONFIG_SYS_MAXARGS=64 +CONFIG_CMD_CACHE=y +CONFIG_OF_EMBED=y +CONFIG_CLK=y |