xref: /linux/arch/arm/mach-ux500/Kconfig (revision f56b71f5d5a3944acdcb0e5e1739574d95ddf61a)
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	select ARM_ERRATA_754322
10	select ARM_ERRATA_764369
11
12menu "Ux500 SoC"
13
14config UX500_SOC_DB5500
15	bool "DB5500"
16	select MFD_DB5500_PRCMU
17
18config UX500_SOC_DB8500
19	bool "DB8500"
20	select MFD_DB8500_PRCMU
21	select REGULATOR_DB8500_PRCMU
22
23endmenu
24
25menu "Ux500 target platform (boards)"
26
27config MACH_U8500
28	bool "U8500 Development platform"
29	depends on UX500_SOC_DB8500
30	select TPS6105X
31	select SOC_BUS
32	help
33	  Include support for the mop500 development platform.
34
35config MACH_HREFV60
36       bool "U85000 Development platform, HREFv60 version"
37       depends on UX500_SOC_DB8500
38       help
39         Include support for the HREFv60 new development platform.
40
41config MACH_SNOWBALL
42	bool "U8500 Snowball platform"
43	depends on UX500_SOC_DB8500
44	select MACH_U8500
45	help
46	  Include support for the snowball development platform.
47
48config MACH_U5500
49	bool "U5500 Development platform"
50	depends on UX500_SOC_DB5500
51	help
52	  Include support for the U5500 development platform.
53endmenu
54
55config UX500_DEBUG_UART
56	int "Ux500 UART to use for low-level debug"
57	default 2
58	help
59	  Choose the UART on which kernel low-level debug messages should be
60	  output.
61
62config U5500_MODEM_IRQ
63	bool "Modem IRQ support"
64	depends on UX500_SOC_DB5500
65	default y
66	help
67	  Add support for handling IRQ:s from modem side
68
69config U5500_MBOX
70	bool "Mailbox support"
71	depends on U5500_MODEM_IRQ
72	default y
73	help
74	  Add support for U5500 mailbox communication with modem side
75
76endif
77