From: Johannes Zink <j.zink@pengutronix.de>
To: linux-fpga@vger.kernel.org
Cc: devicetree@vger.kernel.org, Rob Herring <robh+dt@kernel.org>,
Moritz Fischer <mdf@kernel.org>, Wu Hao <hao.wu@intel.com>,
Xu Yilun <yilun.xu@intel.com>,
kernel@pengutronix.de, Johannes Zink <j.zink@pengutronix.de>
Subject: [PATCH 08/16] fpga: machxo2-spi: simplify with spi_sync_transfer()
Date: Thu, 25 Aug 2022 16:13:35 +0200 [thread overview]
Message-ID: <20220825141343.1375690-9-j.zink@pengutronix.de> (raw)
In-Reply-To: <20220825141343.1375690-1-j.zink@pengutronix.de>
Use helper functions in order to improve readability.
Signed-off-by: Johannes Zink <j.zink@pengutronix.de>
---
drivers/fpga/machxo2-spi.c | 96 ++++++++++++++------------------------
1 file changed, 36 insertions(+), 60 deletions(-)
diff --git a/drivers/fpga/machxo2-spi.c b/drivers/fpga/machxo2-spi.c
index d1a8f28e04e7..7f7d1066ddee 100644
--- a/drivers/fpga/machxo2-spi.c
+++ b/drivers/fpga/machxo2-spi.c
@@ -64,22 +64,17 @@ static inline u8 get_err(u32 status)
static int get_status(struct spi_device *spi, u32 *status)
{
- struct spi_message msg;
- struct spi_transfer rx, tx;
+ struct spi_transfer transfers[2] = {};
static const u8 cmd[] = LSC_READ_STATUS;
__be32 tmp;
int ret;
- memset(&rx, 0, sizeof(rx));
- memset(&tx, 0, sizeof(tx));
- tx.tx_buf = cmd;
- tx.len = sizeof(cmd);
- rx.rx_buf = &tmp;
- rx.len = sizeof(tmp);
- spi_message_init(&msg);
- spi_message_add_tail(&tx, &msg);
- spi_message_add_tail(&rx, &msg);
- ret = spi_sync(spi, &msg);
+ transfers[0].tx_buf = cmd;
+ transfers[0].len = sizeof(cmd);
+ transfers[1].rx_buf = &tmp;
+ transfers[1].len = sizeof(tmp);
+
+ ret = spi_sync_transfer(spi, transfers, ARRAY_SIZE(transfers));
if (ret)
return ret;
@@ -131,18 +126,14 @@ static int wait_until_not_busy(struct spi_device *spi)
static int machxo2_cleanup(struct fpga_manager *mgr)
{
struct spi_device *spi = mgr->priv;
- struct spi_message msg;
- struct spi_transfer tx[2];
static const u8 erase[] = ISC_ERASE;
static const u8 refresh[] = LSC_REFRESH;
+ struct spi_transfer tx = {};
int ret;
- memset(tx, 0, sizeof(tx));
- spi_message_init(&msg);
- tx[0].tx_buf = &erase;
- tx[0].len = sizeof(erase);
- spi_message_add_tail(&tx[0], &msg);
- ret = spi_sync(spi, &msg);
+ tx.tx_buf = &erase;
+ tx.len = sizeof(erase);
+ ret = spi_sync_transfer(spi, &tx, 1);
if (ret)
goto fail;
@@ -150,13 +141,11 @@ static int machxo2_cleanup(struct fpga_manager *mgr)
if (ret)
goto fail;
- spi_message_init(&msg);
- tx[1].tx_buf = &refresh;
- tx[1].len = sizeof(refresh);
- tx[1].delay.value = MACHXO2_REFRESH_USEC;
- tx[1].delay.unit = SPI_DELAY_UNIT_USECS;
- spi_message_add_tail(&tx[1], &msg);
- ret = spi_sync(spi, &msg);
+ tx.tx_buf = &refresh;
+ tx.len = sizeof(refresh);
+ tx.delay.value = MACHXO2_REFRESH_USEC;
+ tx.delay.unit = SPI_DELAY_UNIT_USECS;
+ ret = spi_sync_transfer(spi, &tx, 1);
if (ret)
goto fail;
@@ -190,8 +179,7 @@ static int machxo2_write_init(struct fpga_manager *mgr,
const char *buf, size_t count)
{
struct spi_device *spi = mgr->priv;
- struct spi_message msg;
- struct spi_transfer tx[3];
+ struct spi_transfer tx[2] = {};
static const u8 enable[] = ISC_ENABLE;
static const u8 erase[] = ISC_ERASE;
static const u8 initaddr[] = LSC_INITADDRESS;
@@ -206,18 +194,15 @@ static int machxo2_write_init(struct fpga_manager *mgr,
get_status(spi, &status);
dump_status_reg(status);
- memset(tx, 0, sizeof(tx));
- spi_message_init(&msg);
+
tx[0].tx_buf = &enable;
tx[0].len = sizeof(enable);
tx[0].delay.value = MACHXO2_LOW_DELAY_USEC;
tx[0].delay.unit = SPI_DELAY_UNIT_USECS;
- spi_message_add_tail(&tx[0], &msg);
tx[1].tx_buf = &erase;
tx[1].len = sizeof(erase);
- spi_message_add_tail(&tx[1], &msg);
- ret = spi_sync(spi, &msg);
+ ret = spi_sync_transfer(spi, tx, ARRAY_SIZE(tx));
if (ret)
goto fail;
@@ -232,11 +217,9 @@ static int machxo2_write_init(struct fpga_manager *mgr,
}
dump_status_reg(status);
- spi_message_init(&msg);
- tx[2].tx_buf = &initaddr;
- tx[2].len = sizeof(initaddr);
- spi_message_add_tail(&tx[2], &msg);
- ret = spi_sync(spi, &msg);
+ tx[0].tx_buf = &initaddr;
+ tx[0].len = sizeof(initaddr);
+ ret = spi_sync_transfer(spi, &tx[0], 1);
if (ret)
goto fail;
@@ -254,8 +237,6 @@ static int machxo2_write(struct fpga_manager *mgr, const char *buf,
size_t count)
{
struct spi_device *spi = mgr->priv;
- struct spi_message msg;
- struct spi_transfer tx;
static const u8 progincr[] = LSC_PROGINCRNV;
u8 payload[MACHXO2_BUF_SIZE];
u32 status;
@@ -269,15 +250,15 @@ static int machxo2_write(struct fpga_manager *mgr, const char *buf,
dump_status_reg(status);
memcpy(payload, &progincr, sizeof(progincr));
for (i = 0; i < count; i += MACHXO2_PAGE_SIZE) {
+ struct spi_transfer tx = {};
+
memcpy(&payload[sizeof(progincr)], &buf[i], MACHXO2_PAGE_SIZE);
- memset(&tx, 0, sizeof(tx));
- spi_message_init(&msg);
+
tx.tx_buf = payload;
tx.len = MACHXO2_BUF_SIZE;
tx.delay.value = MACHXO2_HIGH_DELAY_USEC;
tx.delay.unit = SPI_DELAY_UNIT_USECS;
- spi_message_add_tail(&tx, &msg);
- ret = spi_sync(spi, &msg);
+ ret = spi_sync_transfer(spi, &tx, 1);
if (ret) {
dev_err(&mgr->dev, "Error loading the bitstream.\n");
return ret;
@@ -293,19 +274,15 @@ static int machxo2_write_complete(struct fpga_manager *mgr,
struct fpga_image_info *info)
{
struct spi_device *spi = mgr->priv;
- struct spi_message msg;
- struct spi_transfer tx[2];
+ struct spi_transfer tx = {};
static const u8 progdone[] = ISC_PROGRAMDONE;
static const u8 refresh[] = LSC_REFRESH;
u32 status;
int ret, refreshloop = 0;
- memset(tx, 0, sizeof(tx));
- spi_message_init(&msg);
- tx[0].tx_buf = &progdone;
- tx[0].len = sizeof(progdone);
- spi_message_add_tail(&tx[0], &msg);
- ret = spi_sync(spi, &msg);
+ tx.tx_buf = &progdone;
+ tx.len = sizeof(progdone);
+ ret = spi_sync_transfer(spi, &tx, 1);
if (ret)
goto fail;
ret = wait_until_not_busy(spi);
@@ -320,14 +297,13 @@ static int machxo2_write_complete(struct fpga_manager *mgr,
goto fail;
}
+ tx.tx_buf = &refresh;
+ tx.len = sizeof(refresh);
+ tx.delay.value = MACHXO2_REFRESH_USEC;
+ tx.delay.unit = SPI_DELAY_UNIT_USECS;
+
do {
- spi_message_init(&msg);
- tx[1].tx_buf = &refresh;
- tx[1].len = sizeof(refresh);
- tx[1].delay.value = MACHXO2_REFRESH_USEC;
- tx[1].delay.unit = SPI_DELAY_UNIT_USECS;
- spi_message_add_tail(&tx[1], &msg);
- ret = spi_sync(spi, &msg);
+ ret = spi_sync_transfer(spi, &tx, 1);
if (ret)
goto fail;
--
2.30.2
next prev parent reply other threads:[~2022-08-25 14:18 UTC|newest]
Thread overview: 44+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-08-25 14:13 [PATCH 00/16] Add support for Lattice MachXO2 programming via I2C Johannes Zink
2022-08-25 14:13 ` [PATCH 01/16] dt-bindings: fpga: convert Lattice MachXO2 Slave binding to YAML Johannes Zink
2022-08-30 20:30 ` Rob Herring
2022-08-31 7:12 ` Johannes Zink
2022-08-25 14:13 ` [PATCH 02/16] dt-bindings: fpga: machxo2-slave: add erasure properties Johannes Zink
2022-08-29 7:39 ` Xu Yilun
2022-08-30 20:36 ` Rob Herring
2022-08-31 7:07 ` Johannes Zink
2022-08-25 14:13 ` [PATCH 03/16] dt-bindings: fpga: machxo2-slave: add pin for program sequence init Johannes Zink
2022-08-25 18:51 ` Rob Herring
2022-08-26 7:56 ` Johannes Zink
2022-08-29 7:45 ` Xu Yilun
2022-08-25 14:13 ` [PATCH 04/16] dt-bindings: fpga: machxo2-slave: add lattice,machxo2-slave-i2c compatible Johannes Zink
2022-08-30 20:40 ` Rob Herring
2022-08-31 7:10 ` Johannes Zink
2022-08-25 14:13 ` [PATCH 05/16] fpga: machxo2-spi: remove #ifdef DEBUG Johannes Zink
2022-08-25 14:13 ` [PATCH 06/16] fpga: machxo2-spi: factor out status check for readability Johannes Zink
2022-08-25 14:13 ` [PATCH 07/16] fpga: machxo2-spi: fix big-endianness incompatibility Johannes Zink
2022-08-29 8:19 ` Xu Yilun
2022-08-29 10:41 ` Johannes Zink
2022-08-25 14:13 ` Johannes Zink [this message]
2022-08-25 14:13 ` [PATCH 09/16] fpga: machxo2-spi: simplify spi write commands Johannes Zink
2022-08-25 14:13 ` [PATCH 10/16] fpga: machxo2-spi: prepare extraction of common code Johannes Zink
2022-08-25 14:13 ` [PATCH 11/16] fpga: machxo2: move non-spi-related functionality to " Johannes Zink
2022-08-25 14:13 ` [PATCH 12/16] fpga: machxo2: improve status register dump Johannes Zink
2022-08-25 14:13 ` [PATCH 13/16] fpga: machxo2: add optional additional flash areas to be erased Johannes Zink
2022-08-25 14:13 ` [PATCH 14/16] fpga: machxo2: add program initialization signalling via gpio Johannes Zink
2022-08-25 14:13 ` [PATCH 15/16] fpga: machxo2: extend erase timeout for machxo2 FPGA Johannes Zink
2022-08-29 9:26 ` Xu Yilun
2022-08-29 10:51 ` Johannes Zink
2022-08-29 14:57 ` Xu Yilun
2022-08-31 7:56 ` Johannes Zink
2022-08-25 14:13 ` [PATCH 16/16] fpga: machxo2: add configuration over i2c Johannes Zink
2022-08-29 9:47 ` Xu Yilun
2022-08-29 13:21 ` Johannes Zink
2022-08-29 14:45 ` Xu Yilun
2022-08-31 16:07 ` Johannes Zink
2022-08-25 15:25 ` [PATCH 00/16] Add support for Lattice MachXO2 programming via I2C Ivan Bornyakov
2022-08-26 6:32 ` Johannes Zink
2022-08-26 8:15 ` Ivan Bornyakov
2022-08-26 8:25 ` Sascha Hauer
2022-08-26 9:00 ` Ivan Bornyakov
2022-08-26 9:19 ` Ivan Bornyakov
2022-08-26 15:26 ` Xu Yilun
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=20220825141343.1375690-9-j.zink@pengutronix.de \
--to=j.zink@pengutronix.de \
--cc=devicetree@vger.kernel.org \
--cc=hao.wu@intel.com \
--cc=kernel@pengutronix.de \
--cc=linux-fpga@vger.kernel.org \
--cc=mdf@kernel.org \
--cc=robh+dt@kernel.org \
--cc=yilun.xu@intel.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).