Kconfig 2.1 KB
Newer Older
1 2 3 4 5 6 7 8 9
config ARCH_U8500
	bool "ST-Ericsson U8500 Series" if ARCH_MULTI_V7
	depends on MMU
	select ARCH_HAS_CPUFREQ
	select ARCH_REQUIRE_GPIOLIB
	select ARM_AMBA
	select CLKDEV_LOOKUP
	select CPU_V7
	select GENERIC_CLOCKEVENTS
10 11
	select HAVE_ARM_SCU if SMP
	select HAVE_ARM_TWD if LOCAL_TIMERS
12 13 14 15 16
	select HAVE_SMP
	select MIGHT_HAVE_CACHE_L2X0
	help
	  Support for ST-Ericsson's Ux500 architecture

17 18 19 20 21
if ARCH_U8500

config UX500_SOC_COMMON
	bool
	default y
22 23
	select ABX500_CORE
	select AB8500_CORE
24
	select ARM_ERRATA_754322
25
	select ARM_ERRATA_764369 if SMP
26
	select ARM_GIC
27
	select CACHE_L2X0
28
	select CLKSRC_NOMADIK_MTU
29
	select COMMON_CLK
30 31
	select PINCTRL
	select PINCTRL_NOMADIK
32
	select PINCTRL_ABX500
33
	select PL310_ERRATA_753970 if CACHE_PL310
34

35
config UX500_SOC_DB8500
36
	bool
37
	select CPU_FREQ_TABLE if CPU_FREQ
38
	select MFD_DB8500_PRCMU
39
	select PINCTRL_DB8500
40
	select PINCTRL_DB8540
41
	select PINCTRL_AB8500
42
	select PINCTRL_AB8505
43
	select PINCTRL_AB9540
44
	select PINCTRL_AB8540
45
	select REGULATOR
46
	select REGULATOR_DB8500_PRCMU
47

48
menu "Ux500 target platform (boards)"
49

50 51 52 53
config MACH_MOP500
	bool "U8500 Development platform, MOP500 versions"
	select I2C
	select I2C_NOMADIK
54
	select REGULATOR_FIXED_VOLTAGE
55 56
	select SOC_BUS
	select UX500_SOC_DB8500
57
	help
58
	  Include support for the MOP500 development platform.
59

60
config MACH_HREFV60
61 62 63 64 65
	bool "U8500 Development platform, HREFv60 version"
	select MACH_MOP500
	help
	  Include support for the HREFv60 new development platform.
	  Includes HREFv70, v71 etc.
66

67 68
config MACH_SNOWBALL
	bool "U8500 Snowball platform"
69
	select MACH_MOP500
70 71 72
	help
	  Include support for the snowball development platform.

73 74
config UX500_AUTO_PLATFORM
	def_bool y
75
	select MACH_MOP500
76 77 78
	help
	  At least one platform needs to be selected in order to build
	  a working kernel. If everything else is disabled, this
79
	  automatically enables MACH_MOP500.
80

81 82
config MACH_UX500_DT
	bool "Generic U8500 support using device tree"
83
	depends on MACH_MOP500
84 85
	select USE_OF

86
endmenu
87

88 89 90 91 92 93 94
config UX500_DEBUG_UART
	int "Ux500 UART to use for low-level debug"
	default 2
	help
	  Choose the UART on which kernel low-level debug messages should be
	  output.

95
endif