xref: /openbmc/linux/arch/arm/mach-ux500/Kconfig (revision baa7eb025ab14f3cba2e35c0a8648f9c9f01d24f)
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
10config UX500_SOC_DB8500
11	bool
12
13config UX500_SOC_DB5500
14	bool
15
16choice
17	prompt "Ux500 target platform"
18	default MACH_U8500_MOP
19
20config MACH_U8500_MOP
21	bool "U8500 Development platform"
22	select UX500_SOC_DB8500
23	help
24	  Include support for the mop500 development platform.
25
26config MACH_U5500
27	bool "U5500 Development platform"
28	select UX500_SOC_DB5500
29	help
30	  Include support for the U5500 development platform.
31endchoice
32
33config UX500_DEBUG_UART
34	int "Ux500 UART to use for low-level debug"
35	default 2
36	help
37	  Choose the UART on which kernel low-level debug messages should be
38	  output.
39
40config U5500_MODEM_IRQ
41	bool "Modem IRQ support"
42	depends on MACH_U5500
43	default y
44	help
45	  Add support for handling IRQ:s from modem side
46
47config U5500_MBOX
48	bool "Mailbox support"
49	depends on MACH_U5500 && U5500_MODEM_IRQ
50	default y
51	help
52	  Add support for U5500 mailbox communication with modem side
53
54endif
55