xref: /linux/arch/arm/mach-ux500/Kconfig (revision 650c2a2145981696c414be1d540a32447d0e353e)
1if ARCH_U8500
2
3config UX500_SOC_COMMON
4	bool
5	default y
6	select ARM_GIC
7	select HAS_MTU
8	select NOMADIK_GPIO
9	select ARM_ERRATA_753970
10
11menu "Ux500 SoC"
12
13config UX500_SOC_DB5500
14	bool "DB5500"
15
16config UX500_SOC_DB8500
17	bool "DB8500"
18	select MFD_DB8500_PRCMU
19
20endmenu
21
22menu "Ux500 target platform"
23
24config MACH_U8500
25	bool "U8500 Development platform"
26	depends on UX500_SOC_DB8500
27	select TPS6105X
28	help
29	  Include support for the mop500 development platform.
30
31config MACH_U5500
32	bool "U5500 Development platform"
33	depends on UX500_SOC_DB5500
34	help
35	  Include support for the U5500 development platform.
36endmenu
37
38config UX500_DEBUG_UART
39	int "Ux500 UART to use for low-level debug"
40	default 2
41	help
42	  Choose the UART on which kernel low-level debug messages should be
43	  output.
44
45config U5500_MODEM_IRQ
46	bool "Modem IRQ support"
47	depends on UX500_SOC_DB5500
48	default y
49	help
50	  Add support for handling IRQ:s from modem side
51
52config U5500_MBOX
53	bool "Mailbox support"
54	depends on U5500_MODEM_IRQ
55	default y
56	help
57	  Add support for U5500 mailbox communication with modem side
58
59endif
60