xen-devel.lists.xenproject.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] PL011: don't force baud rate of 38400 bps
@ 2013-08-13 15:12 Andre Przywara
  2013-08-20 15:04 ` Ian Campbell
  0 siblings, 1 reply; 2+ messages in thread
From: Andre Przywara @ 2013-08-13 15:12 UTC (permalink / raw)
  To: stefano.stabellini, Ian.Campbell, julien.grall
  Cc: patches, Andre Przywara, xen-devel

The PL011 driver currently sets the baudrate to a hardcoded value of
38400 bits/second. This will break Calxeda Midway, which uses 115200
bps.
Instead don't tinker with the baud rate register at all and rely on
the firmware or bootloader setting the correct value in here.
This works fine on Versatile Express and Calxeda Midway.

Signed-off-by: Andre Przywara <andre.przywara@linaro.org>
---
 xen/drivers/char/pl011.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xen/drivers/char/pl011.c b/xen/drivers/char/pl011.c
index 8e90520..0e1eb64 100644
--- a/xen/drivers/char/pl011.c
+++ b/xen/drivers/char/pl011.c
@@ -229,7 +229,7 @@ static int __init pl011_uart_init(struct dt_device_node *dev,
     uart = &pl011_com;
 
     uart->clock_hz  = 0x16e3600;
-    uart->baud      = 38400;
+    uart->baud      = BAUD_AUTO;
     uart->data_bits = 8;
     uart->parity    = PARITY_NONE;
     uart->stop_bits = 1;
-- 
1.7.12.1

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

* Re: [PATCH] PL011: don't force baud rate of 38400 bps
  2013-08-13 15:12 [PATCH] PL011: don't force baud rate of 38400 bps Andre Przywara
@ 2013-08-20 15:04 ` Ian Campbell
  0 siblings, 0 replies; 2+ messages in thread
From: Ian Campbell @ 2013-08-20 15:04 UTC (permalink / raw)
  To: Andre Przywara; +Cc: julien.grall, xen-devel, patches, stefano.stabellini

On Tue, 2013-08-13 at 17:12 +0200, Andre Przywara wrote:
> The PL011 driver currently sets the baudrate to a hardcoded value of
> 38400 bits/second. This will break Calxeda Midway, which uses 115200
> bps.
> Instead don't tinker with the baud rate register at all and rely on
> the firmware or bootloader setting the correct value in here.
> This works fine on Versatile Express and Calxeda Midway.

Right. People who want Xen to tinker with the baud rate should fix:
    if ( strcmp(config, "") )
    {
        early_printk("WARNING: UART configuration is not supported\n");
    }
to actually understand dtuart=serial0,115200n8 type things.

> Signed-off-by: Andre Przywara <andre.przywara@linaro.org>

acked + applied.

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

end of thread, other threads:[~2013-08-20 15:04 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-08-13 15:12 [PATCH] PL011: don't force baud rate of 38400 bps Andre Przywara
2013-08-20 15:04 ` Ian Campbell

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