summaryrefslogtreecommitdiff
path: root/drivers/spi/Makefile
diff options
context:
space:
mode:
authorQuentin Schulz <[email protected]>2018-08-31 16:28:29 +0200
committerTom Rini <[email protected]>2018-09-25 21:49:18 -0400
commit8a4791fa08fb456f9cf8ef95083ddd4e0d07b48e (patch)
tree7a9525acb8c0b1c338118da69876b732d3ef28c1 /drivers/spi/Makefile
parent8451942f7c86c7fc0e25e0b5df986be93e126995 (diff)
spi: add support for ARM PL022 SPI controller
This adds support for the ARM PL022 SPI controller for the standard variant (0x00041022) which has a 16bit wide and 8 locations deep TX/RX FIFO. A few parts were borrowed from the Linux kernel driver. Cc: Armando Visconti <[email protected]> Cc: Vipin Kumar <[email protected]> Signed-off-by: Quentin Schulz <[email protected]>
Diffstat (limited to 'drivers/spi/Makefile')
-rw-r--r--drivers/spi/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/spi/Makefile b/drivers/spi/Makefile
index 728e30c5383..6679987cad6 100644
--- a/drivers/spi/Makefile
+++ b/drivers/spi/Makefile
@@ -38,6 +38,7 @@ obj-$(CONFIG_MXS_SPI) += mxs_spi.o
obj-$(CONFIG_ATCSPI200_SPI) += atcspi200_spi.o
obj-$(CONFIG_OMAP3_SPI) += omap3_spi.o
obj-$(CONFIG_PIC32_SPI) += pic32_spi.o
+obj-$(CONFIG_PL022_SPI) += pl022_spi.o
obj-$(CONFIG_RENESAS_RPC_SPI) += renesas_rpc_spi.o
obj-$(CONFIG_ROCKCHIP_SPI) += rk_spi.o
obj-$(CONFIG_SANDBOX_SPI) += sandbox_spi.o