linux-serial.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] [v2] tty: amba-pl011: fix earlycon register offsets
@ 2016-01-04 21:37 Timur Tabi
  2016-01-04 21:37 ` [PATCH 2/2] tty: amba-pl011: use iotype instead of access_32b to track 32-bit I/O Timur Tabi
  2016-01-06  2:43 ` [PATCH 1/2] [v2] tty: amba-pl011: fix earlycon register offsets Greg Kroah-Hartman
  0 siblings, 2 replies; 6+ messages in thread
From: Timur Tabi @ 2016-01-04 21:37 UTC (permalink / raw)
  To: Greg Kroah-Hartman, Russell King, andre.przywara, Linus Walleij,
	jslaby, jun.nie, shijie.huang, peter, andrew.jackson,
	linux-serial, linux-arm-msm

From: Russell King <rmk+kernel@arm.linux.org.uk>

The REG_x macros are indices into a table, not register offsets.  Since earlycon
does not have access to the vendor data, we can currently only support standard
ARM PL011 devices.

Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Tested-by: Huang Shijie <shijie.huang@arm.com>
Signed-off-by: Timur Tabi <timur@codeaurora.org>
---
 drivers/tty/serial/amba-pl011.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/tty/serial/amba-pl011.c b/drivers/tty/serial/amba-pl011.c
index f6ad383..42aabb84 100644
--- a/drivers/tty/serial/amba-pl011.c
+++ b/drivers/tty/serial/amba-pl011.c
@@ -2302,10 +2302,10 @@ static struct console amba_console = {
 
 static void pl011_putc(struct uart_port *port, int c)
 {
-	while (readl(port->membase + REG_FR) & UART01x_FR_TXFF)
+	while (readl(port->membase + UART01x_FR) & UART01x_FR_TXFF)
 		;
-	writeb(c, port->membase + REG_DR);
-	while (readl(port->membase + REG_FR) & UART01x_FR_BUSY)
+	writeb(c, port->membase + UART01x_DR);
+	while (readl(port->membase + UART01x_FR) & UART01x_FR_BUSY)
 		;
 }
 
-- 
Qualcomm Innovation Center, Inc.
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
a Linux Foundation Collaborative Project.

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

end of thread, other threads:[~2016-01-07  8:09 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-01-04 21:37 [PATCH 1/2] [v2] tty: amba-pl011: fix earlycon register offsets Timur Tabi
2016-01-04 21:37 ` [PATCH 2/2] tty: amba-pl011: use iotype instead of access_32b to track 32-bit I/O Timur Tabi
2016-01-07  8:09   ` Geert Uytterhoeven
2016-01-06  2:43 ` [PATCH 1/2] [v2] tty: amba-pl011: fix earlycon register offsets Greg Kroah-Hartman
2016-01-06  2:46   ` Timur Tabi
2016-01-06  2:51     ` Greg Kroah-Hartman

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