blob: 932fa19df810f67ec2e8b5d88dfbc7b2d0d0297c [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 Zhang5cfa5802022-08-05 18:34:00 -070023config BCM63146
24 bool "Support for Broadcom 63146 Family"
25 select ARM64
26 select SYS_ARCH_TIMER
27 select DM_SERIAL
28 select PL01X_SERIAL
29
William Zhangad47f4e2022-08-01 11:39:25 -070030config BCM63148
31 bool "Support for Broadcom 63148 Family"
32 select SYS_ARCH_TIMER
33 select CPU_V7A
34 select DM_SERIAL
35 select BCM6345_SERIAL
36
William Zhangbef9e392022-08-01 11:39:21 -070037config BCM63178
38 bool "Support for Broadcom 63178 Family"
39 select SYS_ARCH_TIMER
40 select CPU_V7A
41 select DM_SERIAL
42 select PL01X_SERIAL
William Zhangd7cdf302022-05-09 09:28:02 -070043
William Zhangbe158422022-08-01 11:39:24 -070044config BCM6756
45 bool "Support for Broadcom 6756 Family"
46 select SYS_ARCH_TIMER
47 select CPU_V7A
48 select DM_SERIAL
49 select PL01X_SERIAL
50
William Zhang58245a92022-08-01 11:39:22 -070051config BCM6846
52 bool "Support for Broadcom 6846 Family"
53 select SYS_ARCH_TIMER
54 select CPU_V7A
55 select DM_SERIAL
56 select BCM6345_SERIAL
57
William Zhangfe68cea2022-08-01 11:39:23 -070058config BCM6878
59 bool "Support for Broadcom 6878 Family"
60 select SYS_ARCH_TIMER
61 select CPU_V7A
62 select DM_SERIAL
63 select PL01X_SERIAL
64
William Zhangd7cdf302022-05-09 09:28:02 -070065source "arch/arm/mach-bcmbca/bcm47622/Kconfig"
William Zhangeceeac82022-08-05 18:25:13 -070066source "arch/arm/mach-bcmbca/bcm63138/Kconfig"
William Zhang5cfa5802022-08-05 18:34:00 -070067source "arch/arm/mach-bcmbca/bcm63146/Kconfig"
William Zhangad47f4e2022-08-01 11:39:25 -070068source "arch/arm/mach-bcmbca/bcm63148/Kconfig"
William Zhangbef9e392022-08-01 11:39:21 -070069source "arch/arm/mach-bcmbca/bcm63178/Kconfig"
William Zhangbe158422022-08-01 11:39:24 -070070source "arch/arm/mach-bcmbca/bcm6756/Kconfig"
William Zhang58245a92022-08-01 11:39:22 -070071source "arch/arm/mach-bcmbca/bcm6846/Kconfig"
William Zhangfe68cea2022-08-01 11:39:23 -070072source "arch/arm/mach-bcmbca/bcm6878/Kconfig"
William Zhangbef9e392022-08-01 11:39:21 -070073
74endif