18ae12a0dSDavid Brownell# 28ae12a0dSDavid Brownell# Makefile for kernel SPI drivers. 38ae12a0dSDavid Brownell# 48ae12a0dSDavid Brownell 5fadcf49bSmatt mooneyccflags-$(CONFIG_SPI_DEBUG) := -DDEBUG 68ae12a0dSDavid Brownell 78ae12a0dSDavid Brownell# small core, mostly translating board-specific 88ae12a0dSDavid Brownell# config declarations into driver model code 98ae12a0dSDavid Brownellobj-$(CONFIG_SPI_MASTER) += spi.o 10*ca632f55SGrant Likelyobj-$(CONFIG_SPI_SPIDEV) += spidev.o 118ae12a0dSDavid Brownell 128ae12a0dSDavid Brownell# SPI master controller drivers (bus) 13*ca632f55SGrant Likelyobj-$(CONFIG_SPI_ALTERA) += spi-altera.o 14*ca632f55SGrant Likelyobj-$(CONFIG_SPI_ATMEL) += spi-atmel.o 15*ca632f55SGrant Likelyobj-$(CONFIG_SPI_ATH79) += spi-ath79.o 16*ca632f55SGrant Likelyobj-$(CONFIG_SPI_AU1550) += spi-au1550.o 17*ca632f55SGrant Likelyobj-$(CONFIG_SPI_BFIN) += spi-bfin5xx.o 18*ca632f55SGrant Likelyobj-$(CONFIG_SPI_BFIN_SPORT) += spi-bfin-sport.o 19*ca632f55SGrant Likelyobj-$(CONFIG_SPI_BITBANG) += spi-bitbang.o 20*ca632f55SGrant Likelyobj-$(CONFIG_SPI_BUTTERFLY) += spi-butterfly.o 21*ca632f55SGrant Likelyobj-$(CONFIG_SPI_COLDFIRE_QSPI) += spi-coldfire-qspi.o 22*ca632f55SGrant Likelyobj-$(CONFIG_SPI_DAVINCI) += spi-davinci.o 23*ca632f55SGrant Likelyobj-$(CONFIG_SPI_DESIGNWARE) += spi-dw.o 24*ca632f55SGrant Likelyobj-$(CONFIG_SPI_DW_MMIO) += spi-dw-mmio.o 25*ca632f55SGrant Likelyobj-$(CONFIG_SPI_DW_PCI) += spi-dw-midpci.o 26*ca632f55SGrant Likelyspi-dw-midpci-objs := spi-dw-pci.o spi-dw-mid.o 27*ca632f55SGrant Likelyobj-$(CONFIG_SPI_EP93XX) += spi-ep93xx.o 28*ca632f55SGrant Likelyobj-$(CONFIG_SPI_FSL_LIB) += spi-fsl-lib.o 29*ca632f55SGrant Likelyobj-$(CONFIG_SPI_FSL_ESPI) += spi-fsl-espi.o 30*ca632f55SGrant Likelyobj-$(CONFIG_SPI_FSL_SPI) += spi-fsl-spi.o 31*ca632f55SGrant Likelyobj-$(CONFIG_SPI_GPIO) += spi-gpio.o 32*ca632f55SGrant Likelyobj-$(CONFIG_SPI_IMX) += spi-imx.o 33*ca632f55SGrant Likelyobj-$(CONFIG_SPI_LM70_LLP) += spi-lm70llp.o 34*ca632f55SGrant Likelyobj-$(CONFIG_SPI_MPC512x_PSC) += spi-mpc512x-psc.o 35*ca632f55SGrant Likelyobj-$(CONFIG_SPI_MPC52xx_PSC) += spi-mpc52xx-psc.o 36*ca632f55SGrant Likelyobj-$(CONFIG_SPI_MPC52xx) += spi-mpc52xx.o 37*ca632f55SGrant Likelyobj-$(CONFIG_SPI_NUC900) += spi-nuc900.o 38*ca632f55SGrant Likelyobj-$(CONFIG_SPI_OC_TINY) += spi-oc-tiny.o 39*ca632f55SGrant Likelyobj-$(CONFIG_SPI_OMAP_UWIRE) += spi-omap-uwire.o 40*ca632f55SGrant Likelyobj-$(CONFIG_SPI_OMAP_100K) += spi-omap-100k.o 41*ca632f55SGrant Likelyobj-$(CONFIG_SPI_OMAP24XX) += spi-omap2-mcspi.o 42*ca632f55SGrant Likelyobj-$(CONFIG_SPI_ORION) += spi-orion.o 43*ca632f55SGrant Likelyobj-$(CONFIG_SPI_PL022) += spi-pl022.o 44*ca632f55SGrant Likelyobj-$(CONFIG_SPI_PPC4xx) += spi-ppc4xx.o 45*ca632f55SGrant Likelyobj-$(CONFIG_SPI_PXA2XX) += spi-pxa2xx.o 46*ca632f55SGrant Likelyobj-$(CONFIG_SPI_PXA2XX_PCI) += spi-pxa2xx-pci.o 47*ca632f55SGrant Likelyobj-$(CONFIG_SPI_S3C24XX_GPIO) += spi-s3c24xx-gpio.o 48*ca632f55SGrant Likelyobj-$(CONFIG_SPI_S3C24XX) += spi-s3c24xx-hw.o 49*ca632f55SGrant Likelyspi-s3c24xx-hw-y := spi-s3c24xx.o 50*ca632f55SGrant Likelyspi-s3c24xx-hw-$(CONFIG_SPI_S3C24XX_FIQ) += spi-s3c24xx-fiq.o 51*ca632f55SGrant Likelyobj-$(CONFIG_SPI_S3C64XX) += spi-s3c64xx.o 52*ca632f55SGrant Likelyobj-$(CONFIG_SPI_SH) += spi-sh.o 53*ca632f55SGrant Likelyobj-$(CONFIG_SPI_SH_MSIOF) += spi-sh-msiof.o 54*ca632f55SGrant Likelyobj-$(CONFIG_SPI_SH_SCI) += spi-sh-sci.o 55*ca632f55SGrant Likelyobj-$(CONFIG_SPI_STMP3XXX) += spi-stmp.o 56*ca632f55SGrant Likelyobj-$(CONFIG_SPI_TEGRA) += spi-tegra.o 57*ca632f55SGrant Likelyobj-$(CONFIG_SPI_TI_SSP) += spi-ti-ssp.o 58*ca632f55SGrant Likelyobj-$(CONFIG_SPI_TLE62X0) += spi-tle62x0.o 59*ca632f55SGrant Likelyobj-$(CONFIG_SPI_TOPCLIFF_PCH) += spi-topcliff-pch.o 60*ca632f55SGrant Likelyobj-$(CONFIG_SPI_TXX9) += spi-txx9.o 61*ca632f55SGrant Likelyobj-$(CONFIG_SPI_XILINX) += spi-xilinx.o 62bec0806cSBen Dooks 63