diff options
| author | Beniamino Galvani <b.galvani@gmail.com> | 2014-11-22 10:21:41 -0500 |
|---|---|---|
| committer | Mark Brown <broonie@kernel.org> | 2014-11-24 13:54:48 -0500 |
| commit | c3e4bc5434d2999ec3b00eadd1945eadf13fd0de (patch) | |
| tree | 6f4b07ee0191e457d7ad2dcc53925640359bfd40 /drivers/spi/Makefile | |
| parent | 56da2aafe0a6db710c38a2fbf6aa9352a7b9fa4d (diff) | |
spi: meson: Add support for Amlogic Meson SPIFC
This is a driver for the Amlogic Meson SPIFC (SPI flash controller),
which is one of the two SPI controllers available on the SoC. It
doesn't support DMA and has a 64-byte unified transmit/receive buffer.
The device is optimized for interfacing with SPI NOR memories and
allows the execution of standard operations such as read, page
program, sector erase, etc. in a simplified way, toggling a bit in a
dedicated register. The driver doesn't use those predefined commands
and relies only on custom transfers.
Signed-off-by: Beniamino Galvani <b.galvani@gmail.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers/spi/Makefile')
| -rw-r--r-- | drivers/spi/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/spi/Makefile b/drivers/spi/Makefile index 78f24ca36fcf..9b8a7472b5b8 100644 --- a/drivers/spi/Makefile +++ b/drivers/spi/Makefile | |||
| @@ -42,6 +42,7 @@ obj-$(CONFIG_SPI_FSL_SPI) += spi-fsl-spi.o | |||
| 42 | obj-$(CONFIG_SPI_GPIO) += spi-gpio.o | 42 | obj-$(CONFIG_SPI_GPIO) += spi-gpio.o |
| 43 | obj-$(CONFIG_SPI_IMX) += spi-imx.o | 43 | obj-$(CONFIG_SPI_IMX) += spi-imx.o |
| 44 | obj-$(CONFIG_SPI_LM70_LLP) += spi-lm70llp.o | 44 | obj-$(CONFIG_SPI_LM70_LLP) += spi-lm70llp.o |
| 45 | obj-$(CONFIG_SPI_MESON_SPIFC) += spi-meson-spifc.o | ||
| 45 | obj-$(CONFIG_SPI_MPC512x_PSC) += spi-mpc512x-psc.o | 46 | obj-$(CONFIG_SPI_MPC512x_PSC) += spi-mpc512x-psc.o |
| 46 | obj-$(CONFIG_SPI_MPC52xx_PSC) += spi-mpc52xx-psc.o | 47 | obj-$(CONFIG_SPI_MPC52xx_PSC) += spi-mpc52xx-psc.o |
| 47 | obj-$(CONFIG_SPI_MPC52xx) += spi-mpc52xx.o | 48 | obj-$(CONFIG_SPI_MPC52xx) += spi-mpc52xx.o |
