From nobody Tue Sep 16 23:56:03 2025 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 0FB29C3DA79 for ; Mon, 26 Dec 2022 14:37:10 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231165AbiLZOhI (ORCPT ); Mon, 26 Dec 2022 09:37:08 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:45934 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232053AbiLZO3K (ORCPT ); Mon, 26 Dec 2022 09:29:10 -0500 Received: from mail.pr-group.ru (mail.pr-group.ru [178.18.215.3]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 856A364E4; Mon, 26 Dec 2022 06:26:14 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=metrotek.ru; s=mail; h=from:subject:date:message-id:to:cc:mime-version:content-transfer-encoding: in-reply-to:references; bh=MFUNeq3Y8GcJH9bDlEKq9WaByHZjyHz4SS+VcCmqW98=; b=ZzCcLf00xTnENl4pK52cRM4CMgKnlRLuvCZhJ6z9pbipcXFnIt7gmZGta0MaWXPPqncO9e487S/wk gBX4cCXBmulvb6KwlL6C6udNAgpYZ5gF6lq55YAnyPABe1Vt6WmjgC2e86kPL6W8+UvKVfeKYGEzvi NCbZGkxNRkoDnusd8egqoLhOQF3zxvkJp14GE/sxLHpFI6/ipepK6/JvOoF5j9PFy405eXM71rnkh2 cdiU6zFl1bg/w3PH8ghwxMDS8JHsioCn0xinLFxKgC6Tb8d7bqjjiwLZ70HrV3+8PNABuVWLd6UKla SS2mAZFKoYTfGt0HpL517HI24ZjN5Zg== X-Kerio-Anti-Spam: Build: [Engines: 2.16.5.1460, Stamp: 3], Multi: [Enabled, t: (0.000011,0.030556)], BW: [Enabled, t: (0.000024,0.000002)], RTDA: [Enabled, t: (0.084856), Hit: No, Details: v2.42.0; Id: 15.52k1a6.1gl7d6sdq.3c; mclb], total: 0(700) X-Footer: bWV0cm90ZWsucnU= Received: from localhost.localdomain ([78.37.162.181]) (authenticated user i.bornyakov@metrotek.ru) by mail.pr-group.ru with ESMTPSA (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256 bits)); Mon, 26 Dec 2022 17:25:56 +0300 From: Ivan Bornyakov To: Conor Dooley , Moritz Fischer , Wu Hao , Xu Yilun , Tom Rix Cc: Ivan Bornyakov , linux-fpga@vger.kernel.org, linux-kernel@vger.kernel.org, system@metrotek.ru Subject: [PATCH v2 1/3] fpga: microchip-spi: move SPI I/O buffers out of stack Date: Mon, 26 Dec 2022 17:23:24 +0300 Message-Id: <20221226142326.8111-2-i.bornyakov@metrotek.ru> X-Mailer: git-send-email 2.38.2 In-Reply-To: <20221226142326.8111-1-i.bornyakov@metrotek.ru> References: <20221226142326.8111-1-i.bornyakov@metrotek.ru> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" As spi-summary doc says: > I/O buffers use the usual Linux rules, and must be DMA-safe. > You'd normally allocate them from the heap or free page pool. > Don't use the stack, or anything that's declared "static". Replace spi_write() with spi_write_then_read(), which is dma-safe for on-stack buffers. Use allocated buffers for transfers used in spi_sync_transfer(). Although everything works OK with stack-located I/O buffers, better follow the doc to be safe. Fixes: 5f8d4a900830 ("fpga: microchip-spi: add Microchip MPF FPGA manager") Signed-off-by: Ivan Bornyakov --- drivers/fpga/microchip-spi.c | 93 ++++++++++++++++++------------------ 1 file changed, 47 insertions(+), 46 deletions(-) diff --git a/drivers/fpga/microchip-spi.c b/drivers/fpga/microchip-spi.c index 7436976ea904..e72fedd93a27 100644 --- a/drivers/fpga/microchip-spi.c +++ b/drivers/fpga/microchip-spi.c @@ -42,46 +42,55 @@ struct mpf_priv { struct spi_device *spi; bool program_mode; + u8 tx __aligned(ARCH_KMALLOC_MINALIGN); + u8 rx __aligned(ARCH_KMALLOC_MINALIGN); }; =20 -static int mpf_read_status(struct spi_device *spi) +static int mpf_read_status(struct mpf_priv *priv) { - u8 status =3D 0, status_command =3D MPF_SPI_READ_STATUS; - struct spi_transfer xfers[2] =3D { 0 }; - int ret; - /* * HW status is returned on MISO in the first byte after CS went * active. However, first reading can be inadequate, so we submit * two identical SPI transfers and use result of the later one. */ - xfers[0].tx_buf =3D &status_command; - xfers[1].tx_buf =3D &status_command; - xfers[0].rx_buf =3D &status; - xfers[1].rx_buf =3D &status; - xfers[0].len =3D 1; - xfers[1].len =3D 1; - xfers[0].cs_change =3D 1; + struct spi_transfer xfers[2] =3D { + { + .tx_buf =3D &priv->tx, + .rx_buf =3D &priv->rx, + .len =3D 1, + .cs_change =3D 1, + }, { + .tx_buf =3D &priv->tx, + .rx_buf =3D &priv->rx, + .len =3D 1, + }, + }; + u8 status; + int ret; + + priv->tx =3D MPF_SPI_READ_STATUS; + + ret =3D spi_sync_transfer(priv->spi, xfers, 2); + if (ret) + return ret; =20 - ret =3D spi_sync_transfer(spi, xfers, 2); + status =3D priv->rx; =20 if ((status & MPF_STATUS_SPI_VIOLATION) || (status & MPF_STATUS_SPI_ERROR)) - ret =3D -EIO; + return -EIO; =20 - return ret ? : status; + return status; } =20 static enum fpga_mgr_states mpf_ops_state(struct fpga_manager *mgr) { struct mpf_priv *priv =3D mgr->priv; - struct spi_device *spi; bool program_mode; int status; =20 - spi =3D priv->spi; program_mode =3D priv->program_mode; - status =3D mpf_read_status(spi); + status =3D mpf_read_status(priv); =20 if (!program_mode && !status) return FPGA_MGR_STATE_OPERATING; @@ -186,12 +195,12 @@ static int mpf_ops_parse_header(struct fpga_manager *= mgr, } =20 /* Poll HW status until busy bit is cleared and mask bits are set. */ -static int mpf_poll_status(struct spi_device *spi, u8 mask) +static int mpf_poll_status(struct mpf_priv *priv, u8 mask) { int status, retries =3D MPF_STATUS_POLL_RETRIES; =20 while (retries--) { - status =3D mpf_read_status(spi); + status =3D mpf_read_status(priv); if (status < 0) return status; =20 @@ -205,32 +214,32 @@ static int mpf_poll_status(struct spi_device *spi, u8= mask) return -EBUSY; } =20 -static int mpf_spi_write(struct spi_device *spi, const void *buf, size_t b= uf_size) +static int mpf_spi_write(struct mpf_priv *priv, const void *buf, size_t bu= f_size) { - int status =3D mpf_poll_status(spi, 0); + int status =3D mpf_poll_status(priv, 0); =20 if (status < 0) return status; =20 - return spi_write(spi, buf, buf_size); + return spi_write_then_read(priv->spi, buf, buf_size, NULL, 0); } =20 -static int mpf_spi_write_then_read(struct spi_device *spi, +static int mpf_spi_write_then_read(struct mpf_priv *priv, const void *txbuf, size_t txbuf_size, void *rxbuf, size_t rxbuf_size) { const u8 read_command[] =3D { MPF_SPI_READ_DATA }; int ret; =20 - ret =3D mpf_spi_write(spi, txbuf, txbuf_size); + ret =3D mpf_spi_write(priv, txbuf, txbuf_size); if (ret) return ret; =20 - ret =3D mpf_poll_status(spi, MPF_STATUS_READY); + ret =3D mpf_poll_status(priv, MPF_STATUS_READY); if (ret < 0) return ret; =20 - return spi_write_then_read(spi, read_command, sizeof(read_command), + return spi_write_then_read(priv->spi, read_command, sizeof(read_command), rxbuf, rxbuf_size); } =20 @@ -242,7 +251,6 @@ static int mpf_ops_write_init(struct fpga_manager *mgr, const u8 isc_en_command[] =3D { MPF_SPI_ISC_ENABLE }; struct mpf_priv *priv =3D mgr->priv; struct device *dev =3D &mgr->dev; - struct spi_device *spi; u32 isc_ret =3D 0; int ret; =20 @@ -251,9 +259,7 @@ static int mpf_ops_write_init(struct fpga_manager *mgr, return -EOPNOTSUPP; } =20 - spi =3D priv->spi; - - ret =3D mpf_spi_write_then_read(spi, isc_en_command, sizeof(isc_en_comman= d), + ret =3D mpf_spi_write_then_read(priv, isc_en_command, sizeof(isc_en_comma= nd), &isc_ret, sizeof(isc_ret)); if (ret || isc_ret) { dev_err(dev, "Failed to enable ISC: spi_ret %d, isc_ret %u\n", @@ -261,7 +267,7 @@ static int mpf_ops_write_init(struct fpga_manager *mgr, return -EFAULT; } =20 - ret =3D mpf_spi_write(spi, program_mode, sizeof(program_mode)); + ret =3D mpf_spi_write(priv, program_mode, sizeof(program_mode)); if (ret) { dev_err(dev, "Failed to enter program mode: %d\n", ret); return ret; @@ -274,11 +280,9 @@ static int mpf_ops_write_init(struct fpga_manager *mgr, =20 static int mpf_ops_write(struct fpga_manager *mgr, const char *buf, size_t= count) { - u8 spi_frame_command[] =3D { MPF_SPI_FRAME }; struct spi_transfer xfers[2] =3D { 0 }; struct mpf_priv *priv =3D mgr->priv; struct device *dev =3D &mgr->dev; - struct spi_device *spi; int ret, i; =20 if (count % MPF_SPI_FRAME_SIZE) { @@ -287,18 +291,18 @@ static int mpf_ops_write(struct fpga_manager *mgr, co= nst char *buf, size_t count return -EINVAL; } =20 - spi =3D priv->spi; - - xfers[0].tx_buf =3D spi_frame_command; - xfers[0].len =3D sizeof(spi_frame_command); + xfers[0].tx_buf =3D &priv->tx; + xfers[0].len =3D 1; =20 for (i =3D 0; i < count / MPF_SPI_FRAME_SIZE; i++) { xfers[1].tx_buf =3D buf + i * MPF_SPI_FRAME_SIZE; xfers[1].len =3D MPF_SPI_FRAME_SIZE; =20 - ret =3D mpf_poll_status(spi, 0); - if (ret >=3D 0) - ret =3D spi_sync_transfer(spi, xfers, ARRAY_SIZE(xfers)); + ret =3D mpf_poll_status(priv, 0); + if (ret >=3D 0) { + priv->tx =3D MPF_SPI_FRAME; + ret =3D spi_sync_transfer(priv->spi, xfers, ARRAY_SIZE(xfers)); + } =20 if (ret) { dev_err(dev, "Failed to write bitstream frame %d/%zu\n", @@ -317,12 +321,9 @@ static int mpf_ops_write_complete(struct fpga_manager = *mgr, const u8 release_command[] =3D { MPF_SPI_RELEASE }; struct mpf_priv *priv =3D mgr->priv; struct device *dev =3D &mgr->dev; - struct spi_device *spi; int ret; =20 - spi =3D priv->spi; - - ret =3D mpf_spi_write(spi, isc_dis_command, sizeof(isc_dis_command)); + ret =3D mpf_spi_write(priv, isc_dis_command, sizeof(isc_dis_command)); if (ret) { dev_err(dev, "Failed to disable ISC: %d\n", ret); return ret; @@ -330,7 +331,7 @@ static int mpf_ops_write_complete(struct fpga_manager *= mgr, =20 usleep_range(1000, 2000); =20 - ret =3D mpf_spi_write(spi, release_command, sizeof(release_command)); + ret =3D mpf_spi_write(priv, release_command, sizeof(release_command)); if (ret) { dev_err(dev, "Failed to exit program mode: %d\n", ret); return ret; --=20 2.38.2 From nobody Tue Sep 16 23:56:03 2025 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 685A6C3DA79 for ; Mon, 26 Dec 2022 14:37:17 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232076AbiLZOhP (ORCPT ); Mon, 26 Dec 2022 09:37:15 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:45932 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232040AbiLZO3K (ORCPT ); Mon, 26 Dec 2022 09:29:10 -0500 Received: from mail.pr-group.ru (mail.pr-group.ru [178.18.215.3]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 8550064E1; Mon, 26 Dec 2022 06:26:14 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=metrotek.ru; s=mail; h=from:subject:date:message-id:to:cc:mime-version:content-transfer-encoding: in-reply-to:references; bh=5JXcj0PeS9btOTlGETvg46ikVRwJJJR3wMFmHeUulKw=; b=CPV0mLs6v62yt1a/s7bc7/CjKRh6mSzYO3qNJbBTEZ26+RIHygtIDjnGn4m7r8n/tv3wk4thqewry jM11M3zoiFQN/XSTqe/XZBUw0tOwADlNsCCzfn0joR85IOKaXNaSXGNfHfkVKvRCeKltADVxcHVaqJ /aSqQmJGSGhSbyRo1EgIOBLuofeKe0w51xbeATnhsB64kx7XwHR/bjd+bxx3791klPeNPqqobt0TOf zZSmbuLu1+GLSQVYr1ho50UBF1nORqO6mgcNN64TGY8EVKiRU8ycDX/lagmGs/VKcngdON2mGZXMLh +ASJ7tMblHbuTHQ8p88UByrUWq2fYYw== X-Kerio-Anti-Spam: Build: [Engines: 2.16.5.1460, Stamp: 3], Multi: [Enabled, t: (0.000011,0.012463)], BW: [Enabled, t: (0.000028,0.000002)], RTDA: [Enabled, t: (0.080016), Hit: No, Details: v2.42.0; Id: 15.52k1a9.1gl7d6ubp.3e; mclb], total: 0(700) X-Footer: bWV0cm90ZWsucnU= Received: from localhost.localdomain ([78.37.162.181]) (authenticated user i.bornyakov@metrotek.ru) by mail.pr-group.ru with ESMTPSA (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256 bits)); Mon, 26 Dec 2022 17:25:58 +0300 From: Ivan Bornyakov To: Conor Dooley , Moritz Fischer , Wu Hao , Xu Yilun , Tom Rix Cc: Ivan Bornyakov , linux-fpga@vger.kernel.org, linux-kernel@vger.kernel.org, system@metrotek.ru Subject: [PATCH v2 2/3] fpga: microchip-spi: rewrite status polling in a time measurable way Date: Mon, 26 Dec 2022 17:23:25 +0300 Message-Id: <20221226142326.8111-3-i.bornyakov@metrotek.ru> X-Mailer: git-send-email 2.38.2 In-Reply-To: <20221226142326.8111-1-i.bornyakov@metrotek.ru> References: <20221226142326.8111-1-i.bornyakov@metrotek.ru> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" Original busy loop with retries count in mpf_poll_status() is not too reliable, as it takes different times on different systems. Replace it with read_poll_timeout() macro. Fixes: 5f8d4a900830 ("fpga: microchip-spi: add Microchip MPF FPGA manager") Signed-off-by: Ivan Bornyakov --- drivers/fpga/microchip-spi.c | 25 +++++++++++-------------- 1 file changed, 11 insertions(+), 14 deletions(-) diff --git a/drivers/fpga/microchip-spi.c b/drivers/fpga/microchip-spi.c index e72fedd93a27..f3ddfab87499 100644 --- a/drivers/fpga/microchip-spi.c +++ b/drivers/fpga/microchip-spi.c @@ -6,6 +6,7 @@ #include #include #include +#include #include #include #include @@ -33,7 +34,7 @@ =20 #define MPF_BITS_PER_COMPONENT_SIZE 22 =20 -#define MPF_STATUS_POLL_RETRIES 10000 +#define MPF_STATUS_POLL_TIMEOUT (2 * USEC_PER_SEC) #define MPF_STATUS_BUSY BIT(0) #define MPF_STATUS_READY BIT(1) #define MPF_STATUS_SPI_VIOLATION BIT(2) @@ -197,21 +198,17 @@ static int mpf_ops_parse_header(struct fpga_manager *= mgr, /* Poll HW status until busy bit is cleared and mask bits are set. */ static int mpf_poll_status(struct mpf_priv *priv, u8 mask) { - int status, retries =3D MPF_STATUS_POLL_RETRIES; + int ret, status; =20 - while (retries--) { - status =3D mpf_read_status(priv); - if (status < 0) - return status; - - if (status & MPF_STATUS_BUSY) - continue; - - if (!mask || (status & mask)) - return status; - } + ret =3D read_poll_timeout(mpf_read_status, status, + (status < 0) || + (!(status & MPF_STATUS_BUSY) && + (!mask || (status & mask))), + 0, MPF_STATUS_POLL_TIMEOUT, false, priv); + if (ret < 0) + return ret; =20 - return -EBUSY; + return status; } =20 static int mpf_spi_write(struct mpf_priv *priv, const void *buf, size_t bu= f_size) --=20 2.38.2 From nobody Tue Sep 16 23:56:03 2025 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id C999CC3DA79 for ; Mon, 26 Dec 2022 14:37:14 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232003AbiLZOhL (ORCPT ); Mon, 26 Dec 2022 09:37:11 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:46056 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232046AbiLZO3K (ORCPT ); Mon, 26 Dec 2022 09:29:10 -0500 Received: from mail.pr-group.ru (mail.pr-group.ru [178.18.215.3]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 27B8464E6; Mon, 26 Dec 2022 06:26:14 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=metrotek.ru; s=mail; h=from:subject:date:message-id:to:cc:mime-version:content-transfer-encoding: in-reply-to:references; bh=OPFaov/D+WEk0jxM8EJ2ri7LYnuA1DGPmJbwAx21UNU=; b=Hy78NZ8SqKHl8t6eaajQ7/qYdr5N2hZ73fPnyOtJzn1boVp3Asa2dn/LYrzqhvL/Fwcm0VbqO70xF Qe8ULUll2rLuz9CI/mEEqcYYGg0XgVY9hllvgjFVa/tztAf9tzABpyJGZ3WVoFCT/UWEqSyYvv8XRn aSDYBjC/43eos7wds50TX+TToG/BZyFQtj79XNGu6gYhsDZUuUTzkQkEiqJx3FWn4J0BkESM17okfK Fw9wBKcz/O5WxzoaGC2Nnf4ffx37F7Y9xDGIf8Wpvy82SwkQigzNy8mtYZnVXizb+ioeCCKATuExtV 3N/3sPipGxQQjjx2amWHYk/bAuE9dpw== X-Kerio-Anti-Spam: Build: [Engines: 2.16.5.1460, Stamp: 3], Multi: [Enabled, t: (0.000008,0.010166)], BW: [Enabled, t: (0.000023,0.000001)], RTDA: [Enabled, t: (0.126371), Hit: No, Details: v2.42.0; Id: 15.52k53i.1gl7d6ud3.2p; mclb], total: 0(700) X-Footer: bWV0cm90ZWsucnU= Received: from localhost.localdomain ([78.37.162.181]) (authenticated user i.bornyakov@metrotek.ru) by mail.pr-group.ru with ESMTPSA (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256 bits)); Mon, 26 Dec 2022 17:25:59 +0300 From: Ivan Bornyakov To: Conor Dooley , Moritz Fischer , Wu Hao , Xu Yilun , Tom Rix Cc: Ivan Bornyakov , linux-fpga@vger.kernel.org, linux-kernel@vger.kernel.org, system@metrotek.ru Subject: [PATCH v2 3/3] fpga: microchip-spi: separate data frame write routine Date: Mon, 26 Dec 2022 17:23:26 +0300 Message-Id: <20221226142326.8111-4-i.bornyakov@metrotek.ru> X-Mailer: git-send-email 2.38.2 In-Reply-To: <20221226142326.8111-1-i.bornyakov@metrotek.ru> References: <20221226142326.8111-1-i.bornyakov@metrotek.ru> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" mpf_ops_write() function writes bitstream data to the FPGA by a smaller frames. Introduce mpf_spi_frame_write() function which is for writing a single data frame and use it in mpf_ops_write(). No functional changes intended. Signed-off-by: Ivan Bornyakov --- drivers/fpga/microchip-spi.c | 36 +++++++++++++++++++++++------------- 1 file changed, 23 insertions(+), 13 deletions(-) diff --git a/drivers/fpga/microchip-spi.c b/drivers/fpga/microchip-spi.c index f3ddfab87499..f8a6872c865b 100644 --- a/drivers/fpga/microchip-spi.c +++ b/drivers/fpga/microchip-spi.c @@ -275,9 +275,30 @@ static int mpf_ops_write_init(struct fpga_manager *mgr, return 0; } =20 +static int mpf_spi_frame_write(struct mpf_priv *priv, const char *buf) +{ + struct spi_transfer xfers[2] =3D { + { + .tx_buf =3D &priv->tx, + .len =3D 1, + }, { + .tx_buf =3D buf, + .len =3D MPF_SPI_FRAME_SIZE, + }, + }; + int ret; + + ret =3D mpf_poll_status(priv, 0); + if (ret < 0) + return ret; + + priv->tx =3D MPF_SPI_FRAME; + + return spi_sync_transfer(priv->spi, xfers, ARRAY_SIZE(xfers)); +} + static int mpf_ops_write(struct fpga_manager *mgr, const char *buf, size_t= count) { - struct spi_transfer xfers[2] =3D { 0 }; struct mpf_priv *priv =3D mgr->priv; struct device *dev =3D &mgr->dev; int ret, i; @@ -288,19 +309,8 @@ static int mpf_ops_write(struct fpga_manager *mgr, con= st char *buf, size_t count return -EINVAL; } =20 - xfers[0].tx_buf =3D &priv->tx; - xfers[0].len =3D 1; - for (i =3D 0; i < count / MPF_SPI_FRAME_SIZE; i++) { - xfers[1].tx_buf =3D buf + i * MPF_SPI_FRAME_SIZE; - xfers[1].len =3D MPF_SPI_FRAME_SIZE; - - ret =3D mpf_poll_status(priv, 0); - if (ret >=3D 0) { - priv->tx =3D MPF_SPI_FRAME; - ret =3D spi_sync_transfer(priv->spi, xfers, ARRAY_SIZE(xfers)); - } - + ret =3D mpf_spi_frame_write(priv, buf + i * MPF_SPI_FRAME_SIZE); if (ret) { dev_err(dev, "Failed to write bitstream frame %d/%zu\n", i, count / MPF_SPI_FRAME_SIZE); --=20 2.38.2