blob: d78618820b5854158fe864247e978c6c55cdb200 [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 Zhang26b895d2022-08-05 18:34:03 -070015config BCM4908
16 bool "Support for Broadcom 4908 Family"
17 select ARM64
18 select SYS_ARCH_TIMER
19 select DM_SERIAL
20 select BCM6345_SERIAL
21
William Zhang40e4a522022-08-05 18:34:01 -070022config BCM4912
23 bool "Support for Broadcom 4912 Family"
24 select ARM64
25 select SYS_ARCH_TIMER
26 select DM_SERIAL
27 select PL01X_SERIAL
28
William Zhangeceeac82022-08-05 18:25:13 -070029config BCM63138
30 bool "Support for Broadcom 63138 Family"
31 select TIMER
32 select STI_TIMER
33 select CPU_V7A
34 select DM_SERIAL
35 select BCM6345_SERIAL
36
William Zhang5cfa5802022-08-05 18:34:00 -070037config BCM63146
38 bool "Support for Broadcom 63146 Family"
39 select ARM64
40 select SYS_ARCH_TIMER
41 select DM_SERIAL
42 select PL01X_SERIAL
43
William Zhangad47f4e2022-08-01 11:39:25 -070044config BCM63148
45 bool "Support for Broadcom 63148 Family"
46 select SYS_ARCH_TIMER
47 select CPU_V7A
48 select DM_SERIAL
49 select BCM6345_SERIAL
50
William Zhang9a4519c2022-08-22 11:19:44 -070051config BCM63158
52 bool "Support for Broadcom 63158 Family"
53 select ARM64
54 select SYS_ARCH_TIMER
55 select DM_SERIAL
56 select PL01X_SERIAL
57
William Zhangbef9e392022-08-01 11:39:21 -070058config BCM63178
59 bool "Support for Broadcom 63178 Family"
60 select SYS_ARCH_TIMER
61 select CPU_V7A
62 select DM_SERIAL
63 select PL01X_SERIAL
William Zhangd7cdf302022-05-09 09:28:02 -070064
William Zhangbe158422022-08-01 11:39:24 -070065config BCM6756
66 bool "Support for Broadcom 6756 Family"
67 select SYS_ARCH_TIMER
68 select CPU_V7A
69 select DM_SERIAL
70 select PL01X_SERIAL
71
William Zhangaaf984f2022-08-05 18:34:02 -070072config BCM6813
73 bool "Support for Broadcom 6813 Family"
74 select ARM64
75 select SYS_ARCH_TIMER
76 select DM_SERIAL
77 select PL01X_SERIAL
78
William Zhang58245a92022-08-01 11:39:22 -070079config BCM6846
80 bool "Support for Broadcom 6846 Family"
81 select SYS_ARCH_TIMER
82 select CPU_V7A
83 select DM_SERIAL
84 select BCM6345_SERIAL
85
William Zhangfe68cea2022-08-01 11:39:23 -070086config BCM6878
87 bool "Support for Broadcom 6878 Family"
88 select SYS_ARCH_TIMER
89 select CPU_V7A
90 select DM_SERIAL
91 select PL01X_SERIAL
92
William Zhangd7cdf302022-05-09 09:28:02 -070093source "arch/arm/mach-bcmbca/bcm47622/Kconfig"
William Zhang26b895d2022-08-05 18:34:03 -070094source "arch/arm/mach-bcmbca/bcm4908/Kconfig"
William Zhang40e4a522022-08-05 18:34:01 -070095source "arch/arm/mach-bcmbca/bcm4912/Kconfig"
William Zhangeceeac82022-08-05 18:25:13 -070096source "arch/arm/mach-bcmbca/bcm63138/Kconfig"
William Zhang5cfa5802022-08-05 18:34:00 -070097source "arch/arm/mach-bcmbca/bcm63146/Kconfig"
William Zhangad47f4e2022-08-01 11:39:25 -070098source "arch/arm/mach-bcmbca/bcm63148/Kconfig"
William Zhang9a4519c2022-08-22 11:19:44 -070099source "arch/arm/mach-bcmbca/bcm63158/Kconfig"
William Zhangbef9e392022-08-01 11:39:21 -0700100source "arch/arm/mach-bcmbca/bcm63178/Kconfig"
William Zhangbe158422022-08-01 11:39:24 -0700101source "arch/arm/mach-bcmbca/bcm6756/Kconfig"
William Zhangaaf984f2022-08-05 18:34:02 -0700102source "arch/arm/mach-bcmbca/bcm6813/Kconfig"
William Zhang58245a92022-08-01 11:39:22 -0700103source "arch/arm/mach-bcmbca/bcm6846/Kconfig"
William Zhangfe68cea2022-08-01 11:39:23 -0700104source "arch/arm/mach-bcmbca/bcm6878/Kconfig"
William Zhangbef9e392022-08-01 11:39:21 -0700105
106endif