mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 23:47:24 +00:00
21385adf2c
BCM63138 is an ARM A9 based DSL 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, ARM A9 global timer and Broadcom uart. This SoC is supported in the linux-next git repository so the dts and dtsi files are stripped down version of linux copies with mininum blocks needed by u-boot. The u-boot image can be loaded from flash or network to the entry point address in the memory and boot from there to the console. This patch applies on top of the my previous patch [1]. [1] https://lists.denx.de/pipermail/u-boot/2022-August/490570.html Signed-off-by: William Zhang <william.zhang@broadcom.com> Reviewed-by: Florian Fainelli <f.fainelli@gmail.com> Reviewed-by: Philippe Reynes <philippe.reynes@softathome.com>
22 lines
602 B
Text
22 lines
602 B
Text
CONFIG_ARM=y
|
|
CONFIG_ARCH_BCMBCA=y
|
|
CONFIG_SYS_TEXT_BASE=0x01000000
|
|
CONFIG_SYS_MALLOC_LEN=0x2000000
|
|
CONFIG_SYS_MALLOC_F_LEN=0x8000
|
|
CONFIG_BCM63138=y
|
|
CONFIG_TARGET_BCM963138=y
|
|
CONFIG_NR_DRAM_BANKS=1
|
|
CONFIG_DEFAULT_DEVICE_TREE="bcm963138"
|
|
CONFIG_IDENT_STRING=" Broadcom BCM63138"
|
|
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_SYS_BOOTM_LEN=0x4000000
|
|
CONFIG_CMD_CACHE=y
|
|
CONFIG_OF_EMBED=y
|
|
CONFIG_CLK=y
|