b216c01829
Patch from Liam Girdwood This patch allows users of the pxa SSP driver to register their own irq handlers instead of using the default SSP handler. It also cleans up the CKEN clock and irq detection as the values are now stored in a table. This patch replaces 2845/1 Changes:- o Added flags parameter to ssp_init() o Added SSP_NO_IRQ flag to disable registering of ssp irq handler (for drivers that want to register their own handler) o Cleaned up clock and irq detection, values are now stored in table. o Added build changes to allow other drivers (e.g audio) to select the ssp driver. o corgi_ssp.c changed to use new interface. Signed-off-by: Liam Girdwood <liam.girdwood@wolfsonmicro.com> Signed-off-by: Richard Purdie <rpurdie@rpsys.net> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
34 lines
917 B
Makefile
34 lines
917 B
Makefile
#
|
|
# Makefile for the linux kernel.
|
|
#
|
|
|
|
# Common support (must be linked before board specific support)
|
|
obj-y += generic.o irq.o dma.o time.o
|
|
obj-$(CONFIG_PXA25x) += pxa25x.o
|
|
obj-$(CONFIG_PXA27x) += pxa27x.o
|
|
|
|
# Specific board support
|
|
obj-$(CONFIG_ARCH_LUBBOCK) += lubbock.o
|
|
obj-$(CONFIG_MACH_MAINSTONE) += mainstone.o
|
|
obj-$(CONFIG_ARCH_PXA_IDP) += idp.o
|
|
obj-$(CONFIG_PXA_SHARP_C7xx) += corgi.o corgi_ssp.o corgi_lcd.o
|
|
obj-$(CONFIG_PXA_SHARP_Cxx00) += spitz.o corgi_ssp.o corgi_lcd.o
|
|
obj-$(CONFIG_MACH_POODLE) += poodle.o
|
|
obj-$(CONFIG_MACH_TOSA) += tosa.o
|
|
|
|
# Support for blinky lights
|
|
led-y := leds.o
|
|
led-$(CONFIG_ARCH_LUBBOCK) += leds-lubbock.o
|
|
led-$(CONFIG_MACH_MAINSTONE) += leds-mainstone.o
|
|
led-$(CONFIG_ARCH_PXA_IDP) += leds-idp.o
|
|
|
|
obj-$(CONFIG_LEDS) += $(led-y)
|
|
|
|
# Misc features
|
|
obj-$(CONFIG_PM) += pm.o sleep.o
|
|
obj-$(CONFIG_PXA_SSP) += ssp.o
|
|
|
|
ifeq ($(CONFIG_PXA27x),y)
|
|
obj-$(CONFIG_PM) += standby.o
|
|
endif
|