blob: acdb6defd8bfd547bdddde600239cb84a3c1ae84 [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 Zhang40e4a522022-08-05 18:34:01 -070015config BCM4912
16 bool "Support for Broadcom 4912 Family"
17 select ARM64
18 select SYS_ARCH_TIMER
19 select DM_SERIAL
20 select PL01X_SERIAL
21
William Zhangeceeac82022-08-05 18:25:13 -070022config BCM63138
23 bool "Support for Broadcom 63138 Family"
24 select TIMER
25 select STI_TIMER
26 select CPU_V7A
27 select DM_SERIAL
28 select BCM6345_SERIAL
29
William Zhang5cfa5802022-08-05 18:34:00 -070030config BCM63146
31 bool "Support for Broadcom 63146 Family"
32 select ARM64
33 select SYS_ARCH_TIMER
34 select DM_SERIAL
35 select PL01X_SERIAL
36
William Zhangad47f4e2022-08-01 11:39:25 -070037config BCM63148
38 bool "Support for Broadcom 63148 Family"
39 select SYS_ARCH_TIMER
40 select CPU_V7A
41 select DM_SERIAL
42 select BCM6345_SERIAL
43
William Zhangbef9e392022-08-01 11:39:21 -070044config BCM63178
45 bool "Support for Broadcom 63178 Family"
46 select SYS_ARCH_TIMER
47 select CPU_V7A
48 select DM_SERIAL
49 select PL01X_SERIAL
William Zhangd7cdf302022-05-09 09:28:02 -070050
William Zhangbe158422022-08-01 11:39:24 -070051config BCM6756
52 bool "Support for Broadcom 6756 Family"
53 select SYS_ARCH_TIMER
54 select CPU_V7A
55 select DM_SERIAL
56 select PL01X_SERIAL
57
William Zhang58245a92022-08-01 11:39:22 -070058config BCM6846
59 bool "Support for Broadcom 6846 Family"
60 select SYS_ARCH_TIMER
61 select CPU_V7A
62 select DM_SERIAL
63 select BCM6345_SERIAL
64
William Zhangfe68cea2022-08-01 11:39:23 -070065config BCM6878
66 bool "Support for Broadcom 6878 Family"
67 select SYS_ARCH_TIMER
68 select CPU_V7A
69 select DM_SERIAL
70 select PL01X_SERIAL
71
William Zhangd7cdf302022-05-09 09:28:02 -070072source "arch/arm/mach-bcmbca/bcm47622/Kconfig"
William Zhang40e4a522022-08-05 18:34:01 -070073source "arch/arm/mach-bcmbca/bcm4912/Kconfig"
William Zhangeceeac82022-08-05 18:25:13 -070074source "arch/arm/mach-bcmbca/bcm63138/Kconfig"
William Zhang5cfa5802022-08-05 18:34:00 -070075source "arch/arm/mach-bcmbca/bcm63146/Kconfig"
William Zhangad47f4e2022-08-01 11:39:25 -070076source "arch/arm/mach-bcmbca/bcm63148/Kconfig"
William Zhangbef9e392022-08-01 11:39:21 -070077source "arch/arm/mach-bcmbca/bcm63178/Kconfig"
William Zhangbe158422022-08-01 11:39:24 -070078source "arch/arm/mach-bcmbca/bcm6756/Kconfig"
William Zhang58245a92022-08-01 11:39:22 -070079source "arch/arm/mach-bcmbca/bcm6846/Kconfig"
William Zhangfe68cea2022-08-01 11:39:23 -070080source "arch/arm/mach-bcmbca/bcm6878/Kconfig"
William Zhangbef9e392022-08-01 11:39:21 -070081
82endif