From: Sascha Hauer <s.hauer@pengutronix.de>
To: "open list:BAREBOX" <barebox@lists.infradead.org>
Subject: [PATCH 2/3] spi: spi-gpio: support different word widths
Date: Wed, 25 Sep 2024 16:06:33 +0200 [thread overview]
Message-ID: <20240925-spi-gpio-v1-2-47f6285b3bf1@pengutronix.de> (raw)
In-Reply-To: <20240925-spi-gpio-v1-0-47f6285b3bf1@pengutronix.de>
The spi-gpio driver only supports 8bit word width. Add support for
arbitrary word widths up to 32bit.
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
---
drivers/spi/gpio_spi.c | 58 ++++++++++++++++++++++++++++++++++++++++++--------
1 file changed, 49 insertions(+), 9 deletions(-)
diff --git a/drivers/spi/gpio_spi.c b/drivers/spi/gpio_spi.c
index a71b4eddab..c76b71f610 100644
--- a/drivers/spi/gpio_spi.c
+++ b/drivers/spi/gpio_spi.c
@@ -78,7 +78,7 @@ static inline u32 gpio_spi_txrx_word(struct spi_device *spi, unsigned nsecs,
return bitbang_txrx_be_cpha0(spi, nsecs, cpol, word, bits);
}
-static int gpio_spi_transfer_one(struct spi_device *spi, struct spi_transfer *t)
+static int gpio_spi_transfer_one_u8(struct spi_device *spi, struct spi_transfer *t)
{
bool read = (t->rx_buf) ? true : false;
u32 word = 0;
@@ -87,14 +87,59 @@ static int gpio_spi_transfer_one(struct spi_device *spi, struct spi_transfer *t)
for (n = 0; n < t->len; n++) {
if (!read)
word = ((const u8 *)t->tx_buf)[n];
- word = gpio_spi_txrx_word(spi, 0, word, 8);
+ word = gpio_spi_txrx_word(spi, 0, word, spi->bits_per_word);
+ if (read)
+ ((u8 *)t->rx_buf)[n] = word;
+ }
+
+ return 0;
+}
+
+static int gpio_spi_transfer_one_u16(struct spi_device *spi, struct spi_transfer *t)
+{
+ bool read = (t->rx_buf) ? true : false;
+ u32 word = 0;
+ int n;
+
+ for (n = 0; n < t->len / 2; n++) {
+ if (!read)
+ word = ((const u16 *)t->tx_buf)[n];
+ word = gpio_spi_txrx_word(spi, 0, word, spi->bits_per_word);
if (read)
- ((u8 *)t->rx_buf)[n] = word & 0xff;
+ ((u16 *)t->rx_buf)[n] = word;
}
return 0;
}
+static int gpio_spi_transfer_one_u32(struct spi_device *spi, struct spi_transfer *t)
+{
+ bool read = (t->rx_buf) ? true : false;
+ u32 word = 0;
+ int n;
+
+ for (n = 0; n < t->len / 4; n++) {
+ if (!read)
+ word = ((const u32 *)t->tx_buf)[n];
+ word = gpio_spi_txrx_word(spi, 0, word, spi->bits_per_word);
+ if (read)
+ ((u32 *)t->rx_buf)[n] = word;
+ }
+
+ return 0;
+}
+
+static int gpio_spi_transfer_one(struct spi_device *spi, struct spi_transfer *t)
+{
+ if (spi->bits_per_word <= 8)
+ return gpio_spi_transfer_one_u8(spi, t);
+ if (spi->bits_per_word <= 16)
+ return gpio_spi_transfer_one_u16(spi, t);
+ if (spi->bits_per_word <= 32)
+ return gpio_spi_transfer_one_u32(spi, t);
+ return -EINVAL;
+}
+
static int gpio_spi_transfer(struct spi_device *spi, struct spi_message *msg)
{
struct spi_transfer *t;
@@ -120,12 +165,7 @@ static int gpio_spi_transfer(struct spi_device *spi, struct spi_message *msg)
static int gpio_spi_setup(struct spi_device *spi)
{
- if (spi->bits_per_word != 8) {
- dev_err(spi->master->dev, "master does not support %d bits per word\n",
- spi->bits_per_word);
- return -EINVAL;
- }
-
+ gpio_spi_set_cs(spi, 0);
return 0;
}
--
2.39.5
next prev parent reply other threads:[~2024-09-25 14:10 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-09-25 14:06 [PATCH 0/3] spi-gpio updates Sascha Hauer
2024-09-25 14:06 ` [PATCH 1/3] spi: spi-gpio: actually delay in spidelay() Sascha Hauer
2024-09-26 5:55 ` Ahmad Fatoum
2024-09-26 7:05 ` Sascha Hauer
2024-09-25 14:06 ` Sascha Hauer [this message]
2024-09-26 6:07 ` [PATCH 2/3] spi: spi-gpio: support different word widths Ahmad Fatoum
2024-09-26 7:16 ` Sascha Hauer
2024-09-25 14:06 ` [PATCH 3/3] spi: spi-gpio: switch to new gpio binding Sascha Hauer
2024-09-26 6:09 ` Ahmad Fatoum
2024-09-26 8:19 ` Sascha Hauer
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=20240925-spi-gpio-v1-2-47f6285b3bf1@pengutronix.de \
--to=s.hauer@pengutronix.de \
--cc=barebox@lists.infradead.org \
/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