diff options
-rw-r--r-- | arch/arm/mach-ux500/Kconfig | 14 | ||||
-rw-r--r-- | arch/arm/mach-ux500/Makefile | 2 |
2 files changed, 16 insertions, 0 deletions
diff --git a/arch/arm/mach-ux500/Kconfig b/arch/arm/mach-ux500/Kconfig index 6625e5bbf4d6..23fe018cd10b 100644 --- a/arch/arm/mach-ux500/Kconfig +++ b/arch/arm/mach-ux500/Kconfig | |||
@@ -39,4 +39,18 @@ config UX500_DEBUG_UART | |||
39 | Choose the UART on which kernel low-level debug messages should be | 39 | Choose the UART on which kernel low-level debug messages should be |
40 | output. | 40 | output. |
41 | 41 | ||
42 | config U5500_MODEM_IRQ | ||
43 | bool "Modem IRQ support" | ||
44 | depends on MACH_U5500 | ||
45 | default y | ||
46 | help | ||
47 | Add support for handling IRQ:s from modem side | ||
48 | |||
49 | config U5500_MBOX | ||
50 | bool "Mailbox support" | ||
51 | depends on MACH_U5500 && U5500_MODEM_IRQ | ||
52 | default y | ||
53 | help | ||
54 | Add support for U5500 mailbox communication with modem side | ||
55 | |||
42 | endif | 56 | endif |
diff --git a/arch/arm/mach-ux500/Makefile b/arch/arm/mach-ux500/Makefile index 46dbaf640422..9e27a84433cb 100644 --- a/arch/arm/mach-ux500/Makefile +++ b/arch/arm/mach-ux500/Makefile | |||
@@ -11,3 +11,5 @@ obj-$(CONFIG_SMP) += platsmp.o headsmp.o | |||
11 | obj-$(CONFIG_HOTPLUG_CPU) += hotplug.o | 11 | obj-$(CONFIG_HOTPLUG_CPU) += hotplug.o |
12 | obj-$(CONFIG_LOCAL_TIMERS) += localtimer.o | 12 | obj-$(CONFIG_LOCAL_TIMERS) += localtimer.o |
13 | obj-$(CONFIG_REGULATOR_AB8500) += board-mop500-regulators.o | 13 | obj-$(CONFIG_REGULATOR_AB8500) += board-mop500-regulators.o |
14 | obj-$(CONFIG_U5500_MODEM_IRQ) += modem_irq.o | ||
15 | obj-$(CONFIG_U5500_MBOX) += mbox.o | ||