blob: 7fca043ce723a77698d1946e1f88947c9a1d5008 [file] [log] [blame]
David Brownell8ae12a02006-01-08 13:34:19 -08001#
2# Makefile for kernel SPI drivers.
3#
4
5ifeq ($(CONFIG_SPI_DEBUG),y)
6EXTRA_CFLAGS += -DDEBUG
7endif
8
9# small core, mostly translating board-specific
10# config declarations into driver model code
11obj-$(CONFIG_SPI_MASTER) += spi.o
12
13# SPI master controller drivers (bus)
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -080014obj-$(CONFIG_SPI_ATMEL) += atmel_spi.o
Wu, Bryana5f6abd2007-05-06 14:50:34 -070015obj-$(CONFIG_SPI_BFIN) += spi_bfin5xx.o
16obj-$(CONFIG_SPI_BITBANG) += spi_bitbang.o
Jan Nikitenko63bd2352007-05-08 00:32:25 -070017obj-$(CONFIG_SPI_AU1550) += au1550_spi.o
David Brownell71117632006-01-08 13:34:29 -080018obj-$(CONFIG_SPI_BUTTERFLY) += spi_butterfly.o
Andrea Paterniani69c202a2007-02-12 00:52:39 -080019obj-$(CONFIG_SPI_IMX) += spi_imx.o
Kaiwan N Billimoria78961a52007-07-17 04:04:05 -070020obj-$(CONFIG_SPI_LM70_LLP) += spi_lm70llp.o
Stephen Streete0c99052006-03-07 23:53:24 -080021obj-$(CONFIG_SPI_PXA2XX) += pxa2xx_spi.o
David Brownellfdb3c182007-02-12 00:52:37 -080022obj-$(CONFIG_SPI_OMAP_UWIRE) += omap_uwire.o
Samuel Ortizccdc7bf2007-07-17 04:04:13 -070023obj-$(CONFIG_SPI_OMAP24XX) += omap2_mcspi.o
Dragos Carp00b8fd22007-05-10 22:22:52 -070024obj-$(CONFIG_SPI_MPC52xx_PSC) += mpc52xx_psc_spi.o
Kumar Galaccf06992006-05-20 15:00:15 -070025obj-$(CONFIG_SPI_MPC83xx) += spi_mpc83xx.o
Ben Dooks1fc75472006-05-20 15:00:17 -070026obj-$(CONFIG_SPI_S3C24XX_GPIO) += spi_s3c24xx_gpio.o
Ben Dooks7fba5342006-05-20 15:00:18 -070027obj-$(CONFIG_SPI_S3C24XX) += spi_s3c24xx.o
Atsushi Nemotof2cac672007-07-17 04:04:15 -070028obj-$(CONFIG_SPI_TXX9) += spi_txx9.o
Andrei Konovalovae918c02007-07-17 04:04:11 -070029obj-$(CONFIG_SPI_XILINX) += xilinx_spi.o
Magnus Damm37e46642008-02-06 01:38:15 -080030obj-$(CONFIG_SPI_SH_SCI) += spi_sh_sci.o
David Brownell8ae12a02006-01-08 13:34:19 -080031# ... add above this line ...
32
33# SPI protocol drivers (device/link on bus)
David Brownellb587b132007-02-12 00:52:48 -080034obj-$(CONFIG_SPI_AT25) += at25.o
Andrea Paterniani814a8d52007-05-08 00:32:15 -070035obj-$(CONFIG_SPI_SPIDEV) += spidev.o
Ben Dooks447aef12007-07-17 04:04:10 -070036obj-$(CONFIG_SPI_TLE62X0) += tle62x0.o
David Brownell8ae12a02006-01-08 13:34:19 -080037# ... add above this line ...
38
39# SPI slave controller drivers (upstream link)
40# ... add above this line ...
41
42# SPI slave drivers (protocol for that link)
43# ... add above this line ...