blob: 785b3df5dcc2ad32e4997799f54a66415a1c4a5a [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 Zhangeceeac82022-08-05 18:25:13 -070015config BCM63138
16 bool "Support for Broadcom 63138 Family"
17 select TIMER
18 select STI_TIMER
19 select CPU_V7A
20 select DM_SERIAL
21 select BCM6345_SERIAL
22
William Zhangad47f4e2022-08-01 11:39:25 -070023config BCM63148
24 bool "Support for Broadcom 63148 Family"
25 select SYS_ARCH_TIMER
26 select CPU_V7A
27 select DM_SERIAL
28 select BCM6345_SERIAL
29
William Zhangbef9e392022-08-01 11:39:21 -070030config BCM63178
31 bool "Support for Broadcom 63178 Family"
32 select SYS_ARCH_TIMER
33 select CPU_V7A
34 select DM_SERIAL
35 select PL01X_SERIAL
William Zhangd7cdf302022-05-09 09:28:02 -070036
William Zhangbe158422022-08-01 11:39:24 -070037config BCM6756
38 bool "Support for Broadcom 6756 Family"
39 select SYS_ARCH_TIMER
40 select CPU_V7A
41 select DM_SERIAL
42 select PL01X_SERIAL
43
William Zhang58245a92022-08-01 11:39:22 -070044config BCM6846
45 bool "Support for Broadcom 6846 Family"
46 select SYS_ARCH_TIMER
47 select CPU_V7A
48 select DM_SERIAL
49 select BCM6345_SERIAL
50
William Zhangfe68cea2022-08-01 11:39:23 -070051config BCM6878
52 bool "Support for Broadcom 6878 Family"
53 select SYS_ARCH_TIMER
54 select CPU_V7A
55 select DM_SERIAL
56 select PL01X_SERIAL
57
William Zhangd7cdf302022-05-09 09:28:02 -070058source "arch/arm/mach-bcmbca/bcm47622/Kconfig"
William Zhangeceeac82022-08-05 18:25:13 -070059source "arch/arm/mach-bcmbca/bcm63138/Kconfig"
William Zhangad47f4e2022-08-01 11:39:25 -070060source "arch/arm/mach-bcmbca/bcm63148/Kconfig"
William Zhangbef9e392022-08-01 11:39:21 -070061source "arch/arm/mach-bcmbca/bcm63178/Kconfig"
William Zhangbe158422022-08-01 11:39:24 -070062source "arch/arm/mach-bcmbca/bcm6756/Kconfig"
William Zhang58245a92022-08-01 11:39:22 -070063source "arch/arm/mach-bcmbca/bcm6846/Kconfig"
William Zhangfe68cea2022-08-01 11:39:23 -070064source "arch/arm/mach-bcmbca/bcm6878/Kconfig"
William Zhangbef9e392022-08-01 11:39:21 -070065
66endif