blob: f3104116b336ac5295a86392182de66aec315cad [file] [log] [blame]
William Zhangd7cdf302022-05-09 09:28:02 -07001# SPDX-License-Identifier: GPL-2.0+
2#
3# (C) Copyright 2022 Broadcom Ltd
4#
5
6if ARCH_BCMBCA
7
8config BCM47622
9 bool "Support for Broadcom 47622 Family"
10 select SYS_ARCH_TIMER
11 select CPU_V7A
12 select DM_SERIAL
13 select PL01X_SERIAL
14
William Zhangbef9e392022-08-01 11:39:21 -070015config BCM63178
16 bool "Support for Broadcom 63178 Family"
17 select SYS_ARCH_TIMER
18 select CPU_V7A
19 select DM_SERIAL
20 select PL01X_SERIAL
William Zhangd7cdf302022-05-09 09:28:02 -070021
William Zhangbe158422022-08-01 11:39:24 -070022config BCM6756
23 bool "Support for Broadcom 6756 Family"
24 select SYS_ARCH_TIMER
25 select CPU_V7A
26 select DM_SERIAL
27 select PL01X_SERIAL
28
William Zhang58245a92022-08-01 11:39:22 -070029config BCM6846
30 bool "Support for Broadcom 6846 Family"
31 select SYS_ARCH_TIMER
32 select CPU_V7A
33 select DM_SERIAL
34 select BCM6345_SERIAL
35
William Zhangfe68cea2022-08-01 11:39:23 -070036config BCM6878
37 bool "Support for Broadcom 6878 Family"
38 select SYS_ARCH_TIMER
39 select CPU_V7A
40 select DM_SERIAL
41 select PL01X_SERIAL
42
William Zhangd7cdf302022-05-09 09:28:02 -070043source "arch/arm/mach-bcmbca/bcm47622/Kconfig"
William Zhangbef9e392022-08-01 11:39:21 -070044source "arch/arm/mach-bcmbca/bcm63178/Kconfig"
William Zhangbe158422022-08-01 11:39:24 -070045source "arch/arm/mach-bcmbca/bcm6756/Kconfig"
William Zhang58245a92022-08-01 11:39:22 -070046source "arch/arm/mach-bcmbca/bcm6846/Kconfig"
William Zhangfe68cea2022-08-01 11:39:23 -070047source "arch/arm/mach-bcmbca/bcm6878/Kconfig"
William Zhangbef9e392022-08-01 11:39:21 -070048
49endif