Kconfig 1.5 KB
Newer Older
1 2 3 4 5
if ARCH_U8500

config UX500_SOC_COMMON
	bool
	default y
6
	select ARM_ERRATA_754322
7
	select ARM_ERRATA_764369 if SMP
8
	select ARM_GIC
9
	select CACHE_L2X0
10
	select CLKSRC_NOMADIK_MTU
11
	select COMMON_CLK
12 13
	select PINCTRL
	select PINCTRL_NOMADIK
14
	select PL310_ERRATA_753970 if CACHE_PL310
15

16
config UX500_SOC_DB8500
17
	bool
18
	select CPU_FREQ_TABLE if CPU_FREQ
19
	select MFD_DB8500_PRCMU
20
	select PINCTRL_DB8500
21
	select REGULATOR
22
	select REGULATOR_DB8500_PRCMU
23

24
menu "Ux500 target platform (boards)"
25

26 27 28 29
config MACH_MOP500
	bool "U8500 Development platform, MOP500 versions"
	select I2C
	select I2C_NOMADIK
30
	select REGULATOR_FIXED_VOLTAGE
31 32
	select SOC_BUS
	select UX500_SOC_DB8500
33
	help
34
	  Include support for the MOP500 development platform.
35

36
config MACH_HREFV60
37 38 39 40 41
	bool "U8500 Development platform, HREFv60 version"
	select MACH_MOP500
	help
	  Include support for the HREFv60 new development platform.
	  Includes HREFv70, v71 etc.
42

43 44
config MACH_SNOWBALL
	bool "U8500 Snowball platform"
45
	select MACH_MOP500
46 47 48
	help
	  Include support for the snowball development platform.

49 50
config UX500_AUTO_PLATFORM
	def_bool y
51
	select MACH_MOP500
52 53 54
	help
	  At least one platform needs to be selected in order to build
	  a working kernel. If everything else is disabled, this
55
	  automatically enables MACH_MOP500.
56

57 58
config MACH_UX500_DT
	bool "Generic U8500 support using device tree"
59
	depends on MACH_MOP500
60 61
	select USE_OF

62
endmenu
63

64 65 66 67 68 69 70
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.

71
endif