linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH RFC v1] spi: realtek-rtl: Fix clearing some register bits
@ 2022-07-25 19:35 Martin Blumenstingl
  2022-07-25 20:19 ` Birger Koblitz
  2022-07-26  9:03 ` [PATCH RFC v1] spi: realtek-rtl: Fix clearing some register bits Sander Vanheule
  0 siblings, 2 replies; 9+ messages in thread
From: Martin Blumenstingl @ 2022-07-25 19:35 UTC (permalink / raw)
  To: linux-spi; +Cc: linux-kernel, bert, sander, mail, Martin Blumenstingl

The code seemingly tries to clear RTL_SPI_SFCSR_LEN_MASK (before then
setting either RTL_SPI_SFCSR_LEN1 or RTL_SPI_SFCSR_LEN4) and
RTL_SPI_SFCSR_CS. What it actually does is only keeping these bits and
clearing all other bits, even the ones which were just set before. Fix
the operation to clear the bits in the selected mask and keep all other
ones.

Fixes: a8af5cc2ff1e80 ("spi: realtek-rtl: Add support for Realtek RTL838x/RTL839x SPI controllers")
Signed-off-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com>
---
I stumbled across this while reading the driver. This patch is untested
because I don't have any hardware with this controller.


 drivers/spi/spi-realtek-rtl.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/spi/spi-realtek-rtl.c b/drivers/spi/spi-realtek-rtl.c
index 866b0477dbd7..e5ad0f11996f 100644
--- a/drivers/spi/spi-realtek-rtl.c
+++ b/drivers/spi/spi-realtek-rtl.c
@@ -49,7 +49,7 @@ static void set_size(struct rtspi *rtspi, int size)
 	u32 value;
 
 	value = readl(REG(RTL_SPI_SFCSR));
-	value &= RTL_SPI_SFCSR_LEN_MASK;
+	value &= ~RTL_SPI_SFCSR_LEN_MASK;
 	if (size == 4)
 		value |= RTL_SPI_SFCSR_LEN4;
 	else if (size == 1)
@@ -143,7 +143,7 @@ static void init_hw(struct rtspi *rtspi)
 	/* Permanently disable CS1, since it's never used */
 	value |= RTL_SPI_SFCSR_CSB1;
 	/* Select CS0 for use */
-	value &= RTL_SPI_SFCSR_CS;
+	value &= ~RTL_SPI_SFCSR_CS;
 	writel(value, REG(RTL_SPI_SFCSR));
 }
 
-- 
2.37.1


^ permalink raw reply related	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2022-08-01  6:13 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-07-25 19:35 [PATCH RFC v1] spi: realtek-rtl: Fix clearing some register bits Martin Blumenstingl
2022-07-25 20:19 ` Birger Koblitz
2022-07-28 15:27   ` Martin Blumenstingl
2022-07-29  8:20     ` Birger Koblitz
2022-07-31 20:14       ` Martin Blumenstingl
2022-08-01  6:12         ` Subject: [PATCH 0/7] new SoC support and further improvements Birger Koblitz
2022-07-26  9:03 ` [PATCH RFC v1] spi: realtek-rtl: Fix clearing some register bits Sander Vanheule
2022-07-27 19:13   ` Martin Blumenstingl
2022-07-28  7:14     ` Sander Vanheule

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).