mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-17 10:18:38 +00:00
b0e2b6abac
BCM6858 is a Broadcom B53 based PON Gateway SoC. It is part of the BCA (Broadband Carrier Access origin) chipset family. Like other broadband SoC, this patch adds it under CONFIG_BCM6858 chip config and CONFIG_ARCH_BCMBCA platform config. This initial support includes a bare-bone implementation and the original dts is updated with the one from linux next git repository. 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. Signed-off-by: William Zhang <william.zhang@broadcom.com> Reviewed-by: Philippe Reynes <philippe.reynes@softathome.com>
128 lines
2.9 KiB
Text
128 lines
2.9 KiB
Text
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# (C) Copyright 2022 Broadcom Ltd
|
|
#
|
|
|
|
if ARCH_BCMBCA
|
|
|
|
config BCM47622
|
|
bool "Support for Broadcom 47622 Family"
|
|
select SYS_ARCH_TIMER
|
|
select CPU_V7A
|
|
select DM_SERIAL
|
|
select PL01X_SERIAL
|
|
|
|
config BCM4908
|
|
bool "Support for Broadcom 4908 Family"
|
|
select ARM64
|
|
select SYS_ARCH_TIMER
|
|
select DM_SERIAL
|
|
select BCM6345_SERIAL
|
|
|
|
config BCM4912
|
|
bool "Support for Broadcom 4912 Family"
|
|
select ARM64
|
|
select SYS_ARCH_TIMER
|
|
select DM_SERIAL
|
|
select PL01X_SERIAL
|
|
|
|
config BCM63138
|
|
bool "Support for Broadcom 63138 Family"
|
|
select TIMER
|
|
select STI_TIMER
|
|
select CPU_V7A
|
|
select DM_SERIAL
|
|
select BCM6345_SERIAL
|
|
|
|
config BCM63146
|
|
bool "Support for Broadcom 63146 Family"
|
|
select ARM64
|
|
select SYS_ARCH_TIMER
|
|
select DM_SERIAL
|
|
select PL01X_SERIAL
|
|
|
|
config BCM63148
|
|
bool "Support for Broadcom 63148 Family"
|
|
select SYS_ARCH_TIMER
|
|
select CPU_V7A
|
|
select DM_SERIAL
|
|
select BCM6345_SERIAL
|
|
|
|
config BCM63158
|
|
bool "Support for Broadcom 63158 Family"
|
|
select ARM64
|
|
select SYS_ARCH_TIMER
|
|
select DM_SERIAL
|
|
select PL01X_SERIAL
|
|
|
|
config BCM63178
|
|
bool "Support for Broadcom 63178 Family"
|
|
select SYS_ARCH_TIMER
|
|
select CPU_V7A
|
|
select DM_SERIAL
|
|
select PL01X_SERIAL
|
|
|
|
config BCM6756
|
|
bool "Support for Broadcom 6756 Family"
|
|
select SYS_ARCH_TIMER
|
|
select CPU_V7A
|
|
select DM_SERIAL
|
|
select PL01X_SERIAL
|
|
|
|
config BCM6813
|
|
bool "Support for Broadcom 6813 Family"
|
|
select ARM64
|
|
select SYS_ARCH_TIMER
|
|
select DM_SERIAL
|
|
select PL01X_SERIAL
|
|
|
|
config BCM6846
|
|
bool "Support for Broadcom 6846 Family"
|
|
select SYS_ARCH_TIMER
|
|
select CPU_V7A
|
|
select DM_SERIAL
|
|
select BCM6345_SERIAL
|
|
|
|
config BCM6856
|
|
bool "Support for Broadcom 6856 Family"
|
|
select ARM64
|
|
select SYS_ARCH_TIMER
|
|
select DM_SERIAL
|
|
select BCM6345_SERIAL
|
|
help
|
|
Broadcom BCM6856 is a dual core Brahma-B53 ARMv8 based xPON Gateway
|
|
SoC. This SoC family includes BCM6856, BCM6836 and BCM4910.
|
|
|
|
config BCM6858
|
|
bool "Support for Broadcom 6858 Family"
|
|
select ARM64
|
|
select SYS_ARCH_TIMER
|
|
select DM_SERIAL
|
|
select BCM6345_SERIAL
|
|
help
|
|
Broadcom BCM6858 is a quad core Brahma-B53 ARMv8 based xPON Gateway
|
|
SoC. This SoC family includes BCM6858, BCM49508, BCM5504X and BCM6545.
|
|
|
|
config BCM6878
|
|
bool "Support for Broadcom 6878 Family"
|
|
select SYS_ARCH_TIMER
|
|
select CPU_V7A
|
|
select DM_SERIAL
|
|
select PL01X_SERIAL
|
|
|
|
source "arch/arm/mach-bcmbca/bcm47622/Kconfig"
|
|
source "arch/arm/mach-bcmbca/bcm4908/Kconfig"
|
|
source "arch/arm/mach-bcmbca/bcm4912/Kconfig"
|
|
source "arch/arm/mach-bcmbca/bcm63138/Kconfig"
|
|
source "arch/arm/mach-bcmbca/bcm63146/Kconfig"
|
|
source "arch/arm/mach-bcmbca/bcm63148/Kconfig"
|
|
source "arch/arm/mach-bcmbca/bcm63158/Kconfig"
|
|
source "arch/arm/mach-bcmbca/bcm63178/Kconfig"
|
|
source "arch/arm/mach-bcmbca/bcm6756/Kconfig"
|
|
source "arch/arm/mach-bcmbca/bcm6813/Kconfig"
|
|
source "arch/arm/mach-bcmbca/bcm6846/Kconfig"
|
|
source "arch/arm/mach-bcmbca/bcm6856/Kconfig"
|
|
source "arch/arm/mach-bcmbca/bcm6858/Kconfig"
|
|
source "arch/arm/mach-bcmbca/bcm6878/Kconfig"
|
|
|
|
endif
|