mirror of
https://github.com/torvalds/linux.git
synced 2024-12-14 23:25:54 +00:00
0b0c4c2a69
Integrate the Common Platform Interrupt Controller (cp_intc) support into the low-level irq handling for davinci and similar platforms. Do it such that support for cp_intc and the original aintc can coexist in the same kernel binary. Signed-off-by: Mark A. Greer <mgreer@mvista.com> Signed-off-by: Kevin Hilman <khilman@deeprootsystems.com>
26 lines
722 B
Makefile
26 lines
722 B
Makefile
#
|
|
# Makefile for the linux kernel.
|
|
#
|
|
#
|
|
|
|
# Common objects
|
|
obj-y := time.o clock.o serial.o io.o psc.o \
|
|
gpio.o devices.o dma.o usb.o common.o
|
|
|
|
obj-$(CONFIG_DAVINCI_MUX) += mux.o
|
|
|
|
# Chip specific
|
|
obj-$(CONFIG_ARCH_DAVINCI_DM644x) += dm644x.o
|
|
obj-$(CONFIG_ARCH_DAVINCI_DM355) += dm355.o
|
|
obj-$(CONFIG_ARCH_DAVINCI_DM646x) += dm646x.o
|
|
|
|
obj-$(CONFIG_AINTC) += irq.o
|
|
obj-$(CONFIG_CP_INTC) += cp_intc.o
|
|
|
|
# Board specific
|
|
obj-$(CONFIG_MACH_DAVINCI_EVM) += board-dm644x-evm.o
|
|
obj-$(CONFIG_MACH_SFFSDR) += board-sffsdr.o
|
|
obj-$(CONFIG_MACH_DAVINCI_DM355_EVM) += board-dm355-evm.o
|
|
obj-$(CONFIG_MACH_DM355_LEOPARD) += board-dm355-leopard.o
|
|
obj-$(CONFIG_MACH_DAVINCI_DM6467_EVM) += board-dm646x-evm.o
|