From: Andy Shevchenko <andy.shevchenko@gmail.com>
To: Simon Goldschmidt <simon.k.r.goldschmidt@gmail.com>
Cc: Mark Brown <broonie@kernel.org>,
linux-spi <linux-spi@vger.kernel.org>,
Linux Kernel Mailing List <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] spi: dw: support 4-16 bits per word
Date: Wed, 8 Aug 2018 12:45:29 +0300 [thread overview]
Message-ID: <CAHp75VdmrwZ4P0xrOOqpJaU7iuKS8zXGcRTg4zLrofZLdcb=8Q@mail.gmail.com> (raw)
In-Reply-To: <20180808071421.32707-1-simon.k.r.goldschmidt@gmail.com>
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
next prev parent reply other threads:[~2018-08-08 9:45 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-08-08 7:14 [PATCH] spi: dw: support 4-16 bits per word Simon Goldschmidt
2018-08-08 9:45 ` Andy Shevchenko [this message]
2018-08-08 11:58 ` Simon Goldschmidt
2018-08-08 12:26 ` Andy Shevchenko
2018-08-17 7:01 ` [PATCH v2] " Simon Goldschmidt
2018-08-17 11:17 ` Andy Shevchenko
2018-08-17 16:32 ` Trent Piepho
2018-08-18 8:37 ` Simon Goldschmidt
2018-09-04 19:49 ` [PATCH v3] " Simon Goldschmidt
2018-09-06 11:09 ` Mark Brown
2018-09-06 11:23 ` Simon Goldschmidt
2018-09-06 13:23 ` Mark Brown
2018-09-06 13:37 ` Simon Goldschmidt
2018-09-06 11:10 ` Applied "spi: dw: support 4-16 bits per word" to the spi tree Mark Brown
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to='CAHp75VdmrwZ4P0xrOOqpJaU7iuKS8zXGcRTg4zLrofZLdcb=8Q@mail.gmail.com' \
--to=andy.shevchenko@gmail.com \
--cc=broonie@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-spi@vger.kernel.org \
--cc=simon.k.r.goldschmidt@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).