Kconfig 1.7 KB
Newer Older
1 2 3 4 5 6 7
if ARCH_U8500

config UX500_SOC_COMMON
	bool
	default y
	select ARM_GIC
	select HAS_MTU
8
	select ARM_ERRATA_753970
9
	select ARM_ERRATA_754322
10
	select ARM_ERRATA_764369
11
	select CACHE_L2X0
12 13

config UX500_SOC_DB5500
14
	bool
L
Linus Walleij 已提交
15
	select MFD_DB5500_PRCMU
16 17

config UX500_SOC_DB8500
18
	bool
19
	select MFD_DB8500_PRCMU
20
	select REGULATOR_DB8500_PRCMU
21
	select CPU_FREQ_TABLE if CPU_FREQ
22

23
menu "Ux500 target platform (boards)"
24

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

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

40 41
config MACH_SNOWBALL
	bool "U8500 Snowball platform"
42
	select MACH_MOP500
43 44 45
	help
	  Include support for the snowball development platform.

46 47
config MACH_U5500
	bool "U5500 Development platform"
48
	select UX500_SOC_DB5500
49 50
	help
	  Include support for the U5500 development platform.
51 52 53 54

config UX500_AUTO_PLATFORM
	def_bool y
	depends on !MACH_U5500
55
	select MACH_MOP500
56 57 58
	help
	  At least one platform needs to be selected in order to build
	  a working kernel. If everything else is disabled, this
59
	  automatically enables MACH_MOP500.
60
endmenu
61

62 63 64 65 66 67 68
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.

69 70
config U5500_MODEM_IRQ
	bool "Modem IRQ support"
71
	depends on UX500_SOC_DB5500
72 73 74 75 76 77
	default y
	help
	  Add support for handling IRQ:s from modem side

config U5500_MBOX
	bool "Mailbox support"
78
	depends on U5500_MODEM_IRQ
79 80 81 82
	default y
	help
	  Add support for U5500 mailbox communication with modem side

83
endif