blob: 4404f82d59793d1227e2c6c0474941801b36807f [file] [log] [blame]
viresh kumar986435e2010-04-01 12:30:49 +01001#
2# SPEAr Platform configuration file
3#
4
5if PLAT_SPEAR
6
7choice
8 prompt "ST SPEAr Family"
9 default ARCH_SPEAR3XX
10
Viresh Kumar0d8e08f2012-04-19 22:34:25 +053011config ARCH_SPEAR13XX
12 bool "ST SPEAr13xx with Device Tree"
13 select ARM_GIC
14 select CPU_V7
15 select USE_OF
16 select HAVE_SMP
17 select MIGHT_HAVE_CACHE_L2X0
18 select PINCTRL
19 help
20 Supports for ARM's SPEAR13XX family
21
viresh kumar986435e2010-04-01 12:30:49 +010022config ARCH_SPEAR3XX
Viresh Kumarc5fa4fd2012-03-23 00:17:43 +053023 bool "ST SPEAr3xx with Device Tree"
viresh kumar986435e2010-04-01 12:30:49 +010024 select ARM_VIC
25 select CPU_ARM926T
Viresh Kumarc5fa4fd2012-03-23 00:17:43 +053026 select USE_OF
Viresh Kumare0373602012-03-29 08:30:19 +053027 select PINCTRL
viresh kumar986435e2010-04-01 12:30:49 +010028 help
29 Supports for ARM's SPEAR3XX family
30
31config ARCH_SPEAR6XX
32 bool "SPEAr6XX"
33 select ARM_VIC
34 select CPU_ARM926T
35 help
36 Supports for ARM's SPEAR6XX family
37
38endchoice
39
40# Adding SPEAr machine specific configuration files
Viresh Kumar0d8e08f2012-04-19 22:34:25 +053041source "arch/arm/mach-spear13xx/Kconfig"
viresh kumar986435e2010-04-01 12:30:49 +010042source "arch/arm/mach-spear3xx/Kconfig"
43source "arch/arm/mach-spear6xx/Kconfig"
44
45endif