* [PATCH] sh-sci: earlyprintk zero uartclk fix
@ 2009-12-22 3:37 Magnus Damm
2009-12-24 6:03 ` Paul Mundt
0 siblings, 1 reply; 2+ messages in thread
From: Magnus Damm @ 2009-12-22 3:37 UTC (permalink / raw)
To: linux-sh
From: Magnus Damm <damm@opensource.se>
Signed-off-by: Magnus Damm <damm@opensource.se>
---
drivers/serial/sh-sci.c | 15 ++++++++++++---
1 file changed, 12 insertions(+), 3 deletions(-)
--- 0014/drivers/serial/sh-sci.c
+++ work/drivers/serial/sh-sci.c 2009-12-21 21:53:07.000000000 +0900
@@ -902,11 +902,20 @@ static void sci_shutdown(struct uart_por
static void sci_set_termios(struct uart_port *port, struct ktermios *termios,
struct ktermios *old)
{
- unsigned int status, baud, smr_val;
+ unsigned int status, baud, smr_val, max_baud;
int t = -1;
- baud = uart_get_baud_rate(port, termios, old, 0, port->uartclk/16);
- if (likely(baud))
+ /* earlyprintk comes here early on with port->uartclk set to zero.
+ * the clock framework is not up and running at this point so here
+ * we assume that 115200 is the maximum baud rate. please note that
+ * the baud rate is not programmed during earlyprintk - it is assumed
+ * that the previous boot loader has enabled required clocks and
+ * setup the baud rate generator hardware for us already.
+ */
+ max_baud = port->uartclk ? port->uartclk / 16 : 115200;
+
+ baud = uart_get_baud_rate(port, termios, old, 0, max_baud);
+ if (likely(baud && port->uartclk))
t = SCBRR_VALUE(baud, port->uartclk);
do {
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2009-12-24 6:03 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-12-22 3:37 [PATCH] sh-sci: earlyprintk zero uartclk fix Magnus Damm
2009-12-24 6:03 ` Paul Mundt
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).