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