Kconfig 1.1 KB
Newer Older
1 2 3 4 5 6 7 8
if ARCH_U8500

config UX500_SOC_COMMON
	bool
	default y
	select ARM_GIC
	select HAS_MTU
	select NOMADIK_GPIO
9
	select ARM_ERRATA_753970
10

11
menu "Ux500 SoC"
12 13

config UX500_SOC_DB5500
14 15 16 17
	bool "DB5500"

config UX500_SOC_DB8500
	bool "DB8500"
18
	select MFD_DB8500_PRCMU
19 20

endmenu
21

22
menu "Ux500 target platform"
23

24
config 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 31 32

config MACH_U5500
	bool "U5500 Development platform"
33
	depends on UX500_SOC_DB5500
34 35
	help
	  Include support for the U5500 development platform.
36
endmenu
37

38 39 40 41 42 43 44
config UX500_DEBUG_UART
	int "Ux500 UART to use for low-level debug"
	default 2
	help
	  Choose the UART on which kernel low-level debug messages should be
	  output.

45 46
config U5500_MODEM_IRQ
	bool "Modem IRQ support"
47
	depends on UX500_SOC_DB5500
48 49 50 51 52 53
	default y
	help
	  Add support for handling IRQ:s from modem side

config U5500_MBOX
	bool "Mailbox support"
54
	depends on U5500_MODEM_IRQ
55 56 57 58
	default y
	help
	  Add support for U5500 mailbox communication with modem side

59
endif