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