forked from Minki/linux
aa218dafd7
Split plat-omap/common.c into three pieces: 1. the 32KiHz sync timer and clocksource code, which now lives in plat-omap/counter_32k.c; 2. the OMAP2+ common code, which has been moved to mach-omap2/common.c; 3. and the remainder of the OMAP-wide common code, which includes the deprecated ATAGs code and a deprecated video RAM reservation function. The primary motivation for doing this is to move the OMAP2+-specific parts into an OMAP2+-specific file, so that build breakage related to the System Control Module code can be resolved. Benoît Cousson <b-cousson@ti.com> suggested a new filename and found some bugs in the counter_32k.c comments - thanks Benoît. Signed-off-by: Paul Walmsley <paul@pwsan.com> Cc: Benoît Cousson <b-cousson@ti.com>
35 lines
939 B
Makefile
35 lines
939 B
Makefile
#
|
|
# Makefile for the linux kernel.
|
|
#
|
|
|
|
# Common support
|
|
obj-y := common.o sram.o clock.o devices.o dma.o mux.o gpio.o \
|
|
usb.o fb.o io.o counter_32k.o
|
|
obj-m :=
|
|
obj-n :=
|
|
obj- :=
|
|
|
|
# OCPI interconnect support for 1710, 1610 and 5912
|
|
obj-$(CONFIG_ARCH_OMAP16XX) += ocpi.o
|
|
|
|
# omap_device support (OMAP2+ only at the moment)
|
|
obj-$(CONFIG_ARCH_OMAP2) += omap_device.o
|
|
obj-$(CONFIG_ARCH_OMAP3) += omap_device.o
|
|
obj-$(CONFIG_ARCH_OMAP4) += omap_device.o
|
|
|
|
obj-$(CONFIG_OMAP_MCBSP) += mcbsp.o
|
|
obj-$(CONFIG_OMAP_IOMMU) += iommu.o iovmm.o
|
|
obj-$(CONFIG_OMAP_IOMMU_DEBUG) += iommu-debug.o
|
|
|
|
obj-$(CONFIG_CPU_FREQ) += cpu-omap.o
|
|
obj-$(CONFIG_OMAP_DM_TIMER) += dmtimer.o
|
|
obj-$(CONFIG_OMAP_DEBUG_DEVICES) += debug-devices.o
|
|
obj-$(CONFIG_OMAP_DEBUG_LEDS) += debug-leds.o
|
|
i2c-omap-$(CONFIG_I2C_OMAP) := i2c.o
|
|
obj-y += $(i2c-omap-m) $(i2c-omap-y)
|
|
|
|
# OMAP mailbox framework
|
|
obj-$(CONFIG_OMAP_MBOX_FWK) += mailbox.o
|
|
|
|
obj-$(CONFIG_OMAP_PM_NOOP) += omap-pm-noop.o
|