All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3] spi: core: Validate length of the transfers in message
@ 2014-02-20 10:02 ` Ivan T. Ivanov
  0 siblings, 0 replies; 12+ messages in thread
From: Ivan T. Ivanov @ 2014-02-20 10:02 UTC (permalink / raw)
  To: Mark Brown; +Cc: Ivan T. Ivanov, Gerhard Sittig, linux-spi, linux-kernel

From: "Ivan T. Ivanov" <iivanov@mm-sol.com>

SPI transfer length should be multiple of SPI word size,
where SPI word size should be power-of-two multiple

Signed-off-by: Ivan T. Ivanov <iivanov@mm-sol.com>
---
 drivers/spi/spi.c |   17 +++++++++++++++++
 1 file changed, 17 insertions(+)

diff --git a/drivers/spi/spi.c b/drivers/spi/spi.c
index d0b28bb..45b1610 100644
--- a/drivers/spi/spi.c
+++ b/drivers/spi/spi.c
@@ -1617,6 +1617,7 @@ static int __spi_validate(struct spi_device *spi, struct spi_message *message)
 {
 	struct spi_master *master = spi->master;
 	struct spi_transfer *xfer;
+	int w_size, n_words;
 
 	if (list_empty(&message->transfers))
 		return -EINVAL;
@@ -1668,6 +1669,22 @@ static int __spi_validate(struct spi_device *spi, struct spi_message *message)
 				return -EINVAL;
 		}
 
+		/*
+		 * SPI transfer length should be multiple of SPI word size
+		 * where SPI word size should be power-of-two multiple
+		 */
+		if (xfer->bits_per_word <= 8)
+			w_size = 1;
+		else if (xfer->bits_per_word <= 16)
+			w_size = 2;
+		else
+			w_size = 4;
+
+		n_words = xfer->len / w_size;
+		/* No partial transfers accepted */
+		if (!n_words || xfer->len % w_size)
+			return -EINVAL;
+
 		if (xfer->speed_hz && master->min_speed_hz &&
 		    xfer->speed_hz < master->min_speed_hz)
 			return -EINVAL;
-- 
1.7.9.5


^ permalink raw reply related	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2014-02-28 13:55 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-02-20 10:02 [PATCH v3] spi: core: Validate length of the transfers in message Ivan T. Ivanov
2014-02-20 10:02 ` Ivan T. Ivanov
2014-02-22  3:01 ` Mark Brown
2014-02-22  3:01   ` Mark Brown
2014-02-25 13:55 ` Atsushi Nemoto
2014-02-25 13:55   ` Atsushi Nemoto
2014-02-26  0:14   ` Mark Brown
2014-02-27 13:38     ` Atsushi Nemoto
2014-02-28  6:19       ` Mark Brown
2014-02-28  6:19         ` Mark Brown
2014-02-28 13:55         ` Atsushi Nemoto
2014-02-28 13:55           ` Atsushi Nemoto

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.