Kconfig 2.0 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
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
	select HAVE_SMP
	select MIGHT_HAVE_CACHE_L2X0
	help
	  Support for ST-Ericsson's Ux500 architecture

15 16 17 18 19
if ARCH_U8500

config UX500_SOC_COMMON
	bool
	default y
20
	select ARM_ERRATA_754322
21
	select ARM_ERRATA_764369 if SMP
22
	select ARM_GIC
23
	select CACHE_L2X0
24
	select CLKSRC_NOMADIK_MTU
25
	select COMMON_CLK
26 27
	select PINCTRL
	select PINCTRL_NOMADIK
28
	select PINCTRL_ABX500
29
	select PL310_ERRATA_753970 if CACHE_PL310
30

31
config UX500_SOC_DB8500
32
	bool
33
	select CPU_FREQ_TABLE if CPU_FREQ
34
	select MFD_DB8500_PRCMU
35
	select PINCTRL_DB8500
36
	select PINCTRL_DB8540
37
	select PINCTRL_AB8500
38
	select PINCTRL_AB8505
39
	select PINCTRL_AB9540
40
	select PINCTRL_AB8540
41
	select REGULATOR
42
	select REGULATOR_DB8500_PRCMU
43

44
menu "Ux500 target platform (boards)"
45

46 47 48 49
config MACH_MOP500
	bool "U8500 Development platform, MOP500 versions"
	select I2C
	select I2C_NOMADIK
50
	select REGULATOR_FIXED_VOLTAGE
51 52
	select SOC_BUS
	select UX500_SOC_DB8500
53
	help
54
	  Include support for the MOP500 development platform.
55

56
config MACH_HREFV60
57 58 59 60 61
	bool "U8500 Development platform, HREFv60 version"
	select MACH_MOP500
	help
	  Include support for the HREFv60 new development platform.
	  Includes HREFv70, v71 etc.
62

63 64
config MACH_SNOWBALL
	bool "U8500 Snowball platform"
65
	select MACH_MOP500
66 67 68
	help
	  Include support for the snowball development platform.

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

77 78
config MACH_UX500_DT
	bool "Generic U8500 support using device tree"
79
	depends on MACH_MOP500
80 81
	select USE_OF

82
endmenu
83

84 85 86 87 88 89 90
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.

91
endif