forked from Minki/linux
68a2f7301a
Add IRAM(Internal RAM) allocation functions using GENERIC_ALLOCATOR. The allocation size is 4KB multiples to guarantee alignment. The idea for these functions is for i.MX platforms to use them to dynamically allocate IRAM usage. Applies on 2.6.36-rc7 Signed-off-by: Dinh Nguyen <Dinh.Nguyen@freescale.com> Reviewed-by: Amit Kucheria <amit.kucheria@canonical.com> Acked-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
27 lines
739 B
Makefile
27 lines
739 B
Makefile
#
|
|
# Makefile for the linux kernel.
|
|
#
|
|
|
|
# Common support
|
|
obj-y := irq.o clock.o gpio.o time.o devices.o cpu.o system.o
|
|
|
|
# MX51 uses the TZIC interrupt controller, older platforms use AVIC (irq.o)
|
|
obj-$(CONFIG_MXC_TZIC) += tzic.o
|
|
|
|
obj-$(CONFIG_IMX_HAVE_IOMUX_V1) += iomux-v1.o
|
|
obj-$(CONFIG_ARCH_MXC_IOMUX_V3) += iomux-v3.o
|
|
obj-$(CONFIG_IRAM_ALLOC) += iram_alloc.o
|
|
obj-$(CONFIG_MXC_PWM) += pwm.o
|
|
obj-$(CONFIG_USB_EHCI_MXC) += ehci.o
|
|
obj-$(CONFIG_MXC_ULPI) += ulpi.o
|
|
obj-$(CONFIG_MXC_USE_EPIT) += epit.o
|
|
obj-$(CONFIG_ARCH_MXC_AUDMUX_V1) += audmux-v1.o
|
|
obj-$(CONFIG_ARCH_MXC_AUDMUX_V2) += audmux-v2.o
|
|
obj-$(CONFIG_MXC_DEBUG_BOARD) += 3ds_debugboard.o
|
|
ifdef CONFIG_SND_IMX_SOC
|
|
obj-y += ssi-fiq.o
|
|
obj-y += ssi-fiq-ksym.o
|
|
endif
|
|
|
|
obj-y += devices/
|