aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorMark Brown <broonie@linaro.org>2014-01-28 15:17:03 -0500
committerMark Brown <broonie@linaro.org>2014-02-04 15:31:33 -0500
commit3a2eba9bd0a6447dfbc01635e4cd0689f5f2bdad (patch)
tree642ccd6b3b125435d4e6efa2dce51e2ccb34c485 /include
parent3700c6eb1e41a898c35c8dd4d5b10dc65fdaf486 (diff)
spi: Provide core support for full duplex devices
It is fairly common for SPI devices to require that one or both transfer directions is always active. Currently drivers open code this in various ways with varying degrees of efficiency. Start factoring this out by providing flags SPI_MASTER_MUST_TX and SPI_MASTER_MUST_RX. These will cause the core to provide buffers for the requested direction if none are specified in the underlying transfer. Currently this is fairly inefficient since we actually allocate a data buffer which may get large, support for mapping transfers using a scatterlist will allow us to avoid this for DMA based transfers. Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'include')
-rw-r--r--include/linux/spi/spi.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/linux/spi/spi.h b/include/linux/spi/spi.h
index b354dcbed55b..31a5b0ee93ec 100644
--- a/include/linux/spi/spi.h
+++ b/include/linux/spi/spi.h
@@ -347,6 +347,8 @@ struct spi_master {
347#define SPI_MASTER_HALF_DUPLEX BIT(0) /* can't do full duplex */ 347#define SPI_MASTER_HALF_DUPLEX BIT(0) /* can't do full duplex */
348#define SPI_MASTER_NO_RX BIT(1) /* can't do buffer read */ 348#define SPI_MASTER_NO_RX BIT(1) /* can't do buffer read */
349#define SPI_MASTER_NO_TX BIT(2) /* can't do buffer write */ 349#define SPI_MASTER_NO_TX BIT(2) /* can't do buffer write */
350#define SPI_MASTER_MUST_RX BIT(3) /* requires rx */
351#define SPI_MASTER_MUST_TX BIT(4) /* requires tx */
350 352
351 /* lock and mutex for SPI bus locking */ 353 /* lock and mutex for SPI bus locking */
352 spinlock_t bus_lock_spinlock; 354 spinlock_t bus_lock_spinlock;
@@ -443,6 +445,10 @@ struct spi_master {
443 /* DMA channels for use with core dmaengine helpers */ 445 /* DMA channels for use with core dmaengine helpers */
444 struct dma_chan *dma_tx; 446 struct dma_chan *dma_tx;
445 struct dma_chan *dma_rx; 447 struct dma_chan *dma_rx;
448
449 /* dummy data for full duplex devices */
450 void *dummy_rx;
451 void *dummy_tx;
446}; 452};
447 453
448static inline void *spi_master_get_devdata(struct spi_master *master) 454static inline void *spi_master_get_devdata(struct spi_master *master)