Makefile 1.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
#
# Makefile for kernel SPI drivers.
#

ifeq ($(CONFIG_SPI_DEBUG),y)
EXTRA_CFLAGS += -DDEBUG
endif

# small core, mostly translating board-specific
# config declarations into driver model code
obj-$(CONFIG_SPI_MASTER)		+= spi.o

# SPI master controller drivers (bus)
14
obj-$(CONFIG_SPI_ATMEL)			+= atmel_spi.o
15 16
obj-$(CONFIG_SPI_BFIN)			+= spi_bfin5xx.o
obj-$(CONFIG_SPI_BITBANG)		+= spi_bitbang.o
Jan Nikitenko's avatar
Jan Nikitenko committed
17
obj-$(CONFIG_SPI_AU1550)		+= au1550_spi.o
David Brownell's avatar
David Brownell committed
18
obj-$(CONFIG_SPI_BUTTERFLY)		+= spi_butterfly.o
19
obj-$(CONFIG_SPI_IMX)			+= spi_imx.o
20
obj-$(CONFIG_SPI_LM70_LLP)		+= spi_lm70llp.o
21
obj-$(CONFIG_SPI_PXA2XX)		+= pxa2xx_spi.o
22
obj-$(CONFIG_SPI_OMAP_UWIRE)		+= omap_uwire.o
Samuel Ortiz's avatar
Samuel Ortiz committed
23
obj-$(CONFIG_SPI_OMAP24XX)		+= omap2_mcspi.o
Shadi Ammouri's avatar
Shadi Ammouri committed
24
obj-$(CONFIG_SPI_ORION)			+= orion_spi.o
Dragos Carp's avatar
Dragos Carp committed
25
obj-$(CONFIG_SPI_MPC52xx_PSC)		+= mpc52xx_psc_spi.o
26
obj-$(CONFIG_SPI_MPC83xx)		+= spi_mpc83xx.o
27
obj-$(CONFIG_SPI_S3C24XX_GPIO)		+= spi_s3c24xx_gpio.o
28
obj-$(CONFIG_SPI_S3C24XX)		+= spi_s3c24xx.o
Atsushi Nemoto's avatar
Atsushi Nemoto committed
29
obj-$(CONFIG_SPI_TXX9)			+= spi_txx9.o
30
obj-$(CONFIG_SPI_XILINX)		+= xilinx_spi.o
Magnus Damm's avatar
Magnus Damm committed
31
obj-$(CONFIG_SPI_SH_SCI)		+= spi_sh_sci.o
32 33 34
# 	... add above this line ...

# SPI protocol drivers (device/link on bus)
David Brownell's avatar
David Brownell committed
35
obj-$(CONFIG_SPI_AT25)		+= at25.o
Andrea Paterniani's avatar
Andrea Paterniani committed
36
obj-$(CONFIG_SPI_SPIDEV)	+= spidev.o
Ben Dooks's avatar
Ben Dooks committed
37
obj-$(CONFIG_SPI_TLE62X0)	+= tle62x0.o
38 39 40 41 42 43 44
# 	... add above this line ...

# SPI slave controller drivers (upstream link)
# 	... add above this line ...

# SPI slave drivers (protocol for that link)
# 	... add above this line ...