All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] serial-uartlite: Remove an un-necessary read of control register
@ 2021-11-23 13:13 Shubhrajyoti Datta
  2021-11-24 10:07 ` Greg KH
  0 siblings, 1 reply; 6+ messages in thread
From: Shubhrajyoti Datta @ 2021-11-23 13:13 UTC (permalink / raw)
  To: linux-serial; +Cc: jirislaby, gregkh, jacmet, git, Shubhrajyoti Datta

The control register is a writeonly register that's why reading it
doesn't make any sense.
The manual states "This is a write-only register. Issuing a read request
to the control register generates the read acknowledgment with zero data."

Signed-off-by: Shubhrajyoti Datta <shubhrajyoti.datta@xilinx.com>
---
v2:
Update the description
https://www.xilinx.com/support/documentation/ip_documentation/axi_uartlite/v2_0/pg142-axi-uartlite.pdf

 drivers/tty/serial/uartlite.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/drivers/tty/serial/uartlite.c b/drivers/tty/serial/uartlite.c
index dfc1ba4e1572..0df471eddb0e 100644
--- a/drivers/tty/serial/uartlite.c
+++ b/drivers/tty/serial/uartlite.c
@@ -297,7 +297,6 @@ static void ulite_shutdown(struct uart_port *port)
 	struct uartlite_data *pdata = port->private_data;
 
 	uart_out32(0, ULITE_CONTROL, port);
-	uart_in32(ULITE_CONTROL, port); /* dummy */
 	free_irq(port->irq, port);
 	clk_disable(pdata->clk);
 }
@@ -368,7 +367,6 @@ static int ulite_request_port(struct uart_port *port)
 	}
 
 	pdata->reg_ops = &uartlite_be;
-	ret = uart_in32(ULITE_CONTROL, port);
 	uart_out32(ULITE_CONTROL_RST_TX, ULITE_CONTROL, port);
 	ret = uart_in32(ULITE_STATUS, port);
 	/* Endianess detection */
-- 
2.17.1


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

end of thread, other threads:[~2021-12-15 11:56 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-11-23 13:13 [PATCH v2] serial-uartlite: Remove an un-necessary read of control register Shubhrajyoti Datta
2021-11-24 10:07 ` Greg KH
2021-11-24 12:37   ` Shubhrajyoti Datta
2021-11-24 12:45     ` Greg KH
2021-11-26 14:07     ` Maarten Brock
2021-12-15 11:56       ` Michal Simek

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.