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

config UX500_SOC_COMMON
	bool
	default y
	select ARM_GIC
	select HAS_MTU
8
	select ARM_ERRATA_753970
9
	select ARM_ERRATA_754322
10
	select ARM_ERRATA_764369
11

12
menu "Ux500 SoC"
13 14

config UX500_SOC_DB5500
15
	bool "DB5500"
L
Linus Walleij 已提交
16
	select MFD_DB5500_PRCMU
17 18 19

config UX500_SOC_DB8500
	bool "DB8500"
20
	select MFD_DB8500_PRCMU
21
	select REGULATOR_DB8500_PRCMU
22 23

endmenu
24

25
menu "Ux500 target platform (boards)"
26

27
config MACH_U8500
28
	bool "U8500 Development platform"
29
	depends on UX500_SOC_DB8500
30
	select TPS6105X
31
	help
32
	  Include support for the mop500 development platform.
33

34 35 36 37 38 39
config MACH_HREFV60
       bool "U85000 Development platform, HREFv60 version"
       depends on UX500_SOC_DB8500
       help
         Include support for the HREFv60 new development platform.

40 41 42 43 44 45 46
config MACH_SNOWBALL
	bool "U8500 Snowball platform"
	depends on UX500_SOC_DB8500
	select MACH_U8500
	help
	  Include support for the snowball development platform.

47 48
config MACH_U5500
	bool "U5500 Development platform"
49
	depends on UX500_SOC_DB5500
50 51
	help
	  Include support for the U5500 development platform.
52
endmenu
53

54 55 56 57 58 59 60
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.

61 62
config U5500_MODEM_IRQ
	bool "Modem IRQ support"
63
	depends on UX500_SOC_DB5500
64 65 66 67 68 69
	default y
	help
	  Add support for handling IRQ:s from modem side

config U5500_MBOX
	bool "Mailbox support"
70
	depends on U5500_MODEM_IRQ
71 72 73 74
	default y
	help
	  Add support for U5500 mailbox communication with modem side

75
endif