diff options
author | Martin Sperl <kernel@martin.sperl.org> | 2015-03-19 05:01:53 -0400 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2015-03-23 14:54:34 -0400 |
commit | 6935224da2482a261c786501fbccb1dc4a675225 (patch) | |
tree | 56fd215b05bc43b505ce124ebdf3c22bbc20c46d | |
parent | 210b49231af6a3ede5de3c90850dbf1134a855c2 (diff) |
spi: bcm2835: enable support of 3-wire mode
Signed-off-by: Martin Sperl <kernel@martin.sperl.org>
Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r-- | drivers/spi/spi-bcm2835.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/drivers/spi/spi-bcm2835.c b/drivers/spi/spi-bcm2835.c index 8de1925fe554..3f93718aad3f 100644 --- a/drivers/spi/spi-bcm2835.c +++ b/drivers/spi/spi-bcm2835.c | |||
@@ -67,7 +67,8 @@ | |||
67 | #define BCM2835_SPI_CS_CS_01 0x00000001 | 67 | #define BCM2835_SPI_CS_CS_01 0x00000001 |
68 | 68 | ||
69 | #define BCM2835_SPI_TIMEOUT_MS 30000 | 69 | #define BCM2835_SPI_TIMEOUT_MS 30000 |
70 | #define BCM2835_SPI_MODE_BITS (SPI_CPOL | SPI_CPHA | SPI_CS_HIGH | SPI_NO_CS) | 70 | #define BCM2835_SPI_MODE_BITS (SPI_CPOL | SPI_CPHA | SPI_CS_HIGH \ |
71 | | SPI_NO_CS | SPI_3WIRE) | ||
71 | 72 | ||
72 | #define DRV_NAME "spi-bcm2835" | 73 | #define DRV_NAME "spi-bcm2835" |
73 | 74 | ||
@@ -163,6 +164,9 @@ static int bcm2835_spi_start_transfer(struct spi_device *spi, | |||
163 | cdiv = 0; /* 0 is the slowest we can go */ | 164 | cdiv = 0; /* 0 is the slowest we can go */ |
164 | } | 165 | } |
165 | 166 | ||
167 | if ((spi->mode & SPI_3WIRE) && (tfr->rx_buf)) | ||
168 | cs |= BCM2835_SPI_CS_REN; | ||
169 | |||
166 | if (spi->mode & SPI_CPOL) | 170 | if (spi->mode & SPI_CPOL) |
167 | cs |= BCM2835_SPI_CS_CPOL; | 171 | cs |= BCM2835_SPI_CS_CPOL; |
168 | if (spi->mode & SPI_CPHA) | 172 | if (spi->mode & SPI_CPHA) |