]> git.kernelconcepts.de Git - karo-tx-uboot.git/commit
spi: Add designware master SPI DM driver used on SoCFPGA
authorStefan Roese <sr@denx.de>
Fri, 7 Nov 2014 12:50:31 +0000 (13:50 +0100)
committerMarek Vasut <marex@denx.de>
Sat, 6 Dec 2014 12:52:47 +0000 (13:52 +0100)
commit5bef6fd79f9442269c6a0d3778cb65c7a71e4d9a
tree4648b93255338457d652f64bbe8b14807862052a
parent7fb0f596495395f26819e279acef80487360bfea
spi: Add designware master SPI DM driver used on SoCFPGA

This patch adds the driver for the Designware master SPI controller. This
IP core is integrated on the Altera SoCFPGA. This implementation is a
driver model (DM) implementation. So multiple SPI drivers can be used.
Thats necessary, since SoCFPGA also integrates the Cadence QSPI controller
used to connect the SPI NOR flashes. Without DM, using multiple SPI
drivers is not possible.

This driver is very loosely based on the Linux driver. Most of the Linux
driver is removed. Only the polling loop for the transfer is really used
from this driver, as we don't support interrupts and DMA right now.

This is tested on the SoCrates SoCFPGA board using the SPI pins on the
P14 header.

Signed-off-by: Stefan Roese <sr@denx.de>
Cc: Chin Liang See <clsee@altera.com>
Cc: Dinh Nguyen <dinguyen@altera.com>
Cc: Vince Bridgers <vbridger@altera.com>
Cc: Marek Vasut <marex@denx.de>
Cc: Pavel Machek <pavel@denx.de>
Reviewed-by: Simon Glass <sjg@chromium.org>
Cc: Jagannadha Sutradharudu Teki <jagannadh.teki@gmail.com>
drivers/spi/Makefile
drivers/spi/designware_spi.c [new file with mode: 0644]