lkml.org 
[lkml]   [2018]   [Aug]   [8]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
From
Date
SubjectRe: [PATCH] spi: dw: support 4-16 bits per word
On Wed, Aug 8, 2018 at 10:14 AM, Simon Goldschmidt
<simon.k.r.goldschmidt@gmail.com> wrote:
> The spi-dw driver currently only supports 8 or 16 bits per word.
>
> Since the hardware supports 4-16 bits per word, adapt the driver
> to also support this.
>
> Tested on socfpga cyclone5 with a 9-bit SPI display.

> + if ((transfer->bits_per_word < 4) || (transfer->bits_per_word > 16))
> + return -EINVAL;

> + if (transfer->bits_per_word <= 8) {
> dws->n_bytes = 1;
> dws->dma_width = 1;
> - } else if (transfer->bits_per_word == 16) {
> + } else {
> dws->n_bytes = 2;
> dws->dma_width = 2;
> }

Now these can be just

n_bytes = round_up(8);
dma_width = round_up(8);

--
With Best Regards,
Andy Shevchenko

\
 
 \ /
  Last update: 2018-08-08 11:46    [W:0.131 / U:0.076 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site