aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/spi/spi.c
diff options
context:
space:
mode:
authorStephen Warren <swarren@wwwdotorg.org>2013-03-26 22:37:57 -0400
committerMark Brown <broonie@opensource.wolfsonmicro.com>2013-04-01 09:14:32 -0400
commit543bb255a1987836e64f5b7a63664ead8b32b042 (patch)
tree818ee5b60f8d24ccfd495ebdb50ea0a175c340b1 /drivers/spi/spi.c
parent5c725b34d438fdd3c528673a5f53f4b07f879c68 (diff)
spi: add ability to validate xfer->bits_per_word in SPI core
Allow SPI masters to define the set of bits_per_word values they support. If they do this, then the SPI core will reject transfers that attempt to use an unsupported bits_per_word value. This eliminates the need for each SPI driver to implement this checking in most cases. Signed-off-by: Stephen Warren <swarren@wwwdotorg.org> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'drivers/spi/spi.c')
-rw-r--r--drivers/spi/spi.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/drivers/spi/spi.c b/drivers/spi/spi.c
index f996c600eb8c..0cabf1560550 100644
--- a/drivers/spi/spi.c
+++ b/drivers/spi/spi.c
@@ -1377,6 +1377,14 @@ static int __spi_async(struct spi_device *spi, struct spi_message *message)
1377 xfer->bits_per_word = spi->bits_per_word; 1377 xfer->bits_per_word = spi->bits_per_word;
1378 if (!xfer->speed_hz) 1378 if (!xfer->speed_hz)
1379 xfer->speed_hz = spi->max_speed_hz; 1379 xfer->speed_hz = spi->max_speed_hz;
1380 if (master->bits_per_word_mask) {
1381 /* Only 32 bits fit in the mask */
1382 if (xfer->bits_per_word > 32)
1383 return -EINVAL;
1384 if (!(master->bits_per_word_mask &
1385 BIT(xfer->bits_per_word - 1)))
1386 return -EINVAL;
1387 }
1380 } 1388 }
1381 1389
1382 message->spi = spi; 1390 message->spi = spi;