diff options
author | Matthias Brugger <matthias.bgg@gmail.com> | 2010-10-13 11:51:02 -0400 |
---|---|---|
committer | Grant Likely <grant.likely@secretlab.ca> | 2010-10-14 01:07:37 -0400 |
commit | b9d228f9e896df1af787b2f3467889ab0832370a (patch) | |
tree | ef40ed6c76a947a724a7a6b154ee68a01b4f5562 /drivers | |
parent | 8e41b527ff2c1d7d8c9a9e8b9f53877af2892cef (diff) |
spi/atmel: let transfers through if not changing bits_per_word
bits_per_word option in spi_transfer are allowed if it does not change
the csr register.
This is necessary for the driver in
drivers/staging/iio/adis16260_core.c, as it uses this option.
Signed-off-by: Matthias Brugger <mensch0815@gmail.com>
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/spi/atmel_spi.c | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/drivers/spi/atmel_spi.c b/drivers/spi/atmel_spi.c index c4e04428992d..5c03a5bb168a 100644 --- a/drivers/spi/atmel_spi.c +++ b/drivers/spi/atmel_spi.c | |||
@@ -654,6 +654,8 @@ static int atmel_spi_transfer(struct spi_device *spi, struct spi_message *msg) | |||
654 | struct spi_transfer *xfer; | 654 | struct spi_transfer *xfer; |
655 | unsigned long flags; | 655 | unsigned long flags; |
656 | struct device *controller = spi->master->dev.parent; | 656 | struct device *controller = spi->master->dev.parent; |
657 | u8 bits; | ||
658 | struct atmel_spi_device *asd; | ||
657 | 659 | ||
658 | as = spi_master_get_devdata(spi->master); | 660 | as = spi_master_get_devdata(spi->master); |
659 | 661 | ||
@@ -672,8 +674,18 @@ static int atmel_spi_transfer(struct spi_device *spi, struct spi_message *msg) | |||
672 | return -EINVAL; | 674 | return -EINVAL; |
673 | } | 675 | } |
674 | 676 | ||
677 | if (xfer->bits_per_word) { | ||
678 | asd = spi->controller_state; | ||
679 | bits = (asd->csr >> 4) & 0xf; | ||
680 | if (bits != xfer->bits_per_word - 8) { | ||
681 | dev_dbg(&spi->dev, "you can't yet change " | ||
682 | "bit_per_word in transfers\n"); | ||
683 | return -ENOPROTOOPT; | ||
684 | } | ||
685 | } | ||
686 | |||
675 | /* FIXME implement these protocol options!! */ | 687 | /* FIXME implement these protocol options!! */ |
676 | if (xfer->bits_per_word || xfer->speed_hz) { | 688 | if (xfer->speed_hz) { |
677 | dev_dbg(&spi->dev, "no protocol options yet\n"); | 689 | dev_dbg(&spi->dev, "no protocol options yet\n"); |
678 | return -ENOPROTOOPT; | 690 | return -ENOPROTOOPT; |
679 | } | 691 | } |