From: Sascha Hauer <s.hauer@pengutronix.de>
To: Oskar Schirmer <os@emlix.com>
Cc: Sascha Hauer <kernel@pengutronix.de>,
linux-kernel@vger.kernel.org,
Andrew Morton <akpm@linux-foundation.org>,
Alan Cox <alan@lxorguk.ukuu.org.uk>
Subject: Re: [PATCH 9/9 -v2] imx: serial: use tty_encode_baud_rate to set true rate
Date: Tue, 16 Jun 2009 09:28:01 +0200 [thread overview]
Message-ID: <20090616072801.GF31396@pengutronix.de> (raw)
In-Reply-To: <1244635716-23315-10-git-send-email-os@emlix.com>
Hi,
On Wed, Jun 10, 2009 at 02:08:36PM +0200, Oskar Schirmer wrote:
> real baud rate may be different from the one requested.
> for upper layers, set the nearest value to the real rate
> in favour of the rate previously requested.
>
> Signed-off-by: Oskar Schirmer <os@emlix.com>
> ---
> drivers/serial/imx.c | 7 +++++++
> 1 files changed, 7 insertions(+), 0 deletions(-)
>
> diff --git a/drivers/serial/imx.c b/drivers/serial/imx.c
> index 1c00e2a..c367160 100644
> --- a/drivers/serial/imx.c
> +++ b/drivers/serial/imx.c
> @@ -818,6 +818,7 @@ imx_set_termios(struct uart_port *port, struct ktermios *termios,
> unsigned int old_csize = old ? old->c_cflag & CSIZE : CS8;
> unsigned int div, ufcr;
> unsigned long num, denom;
> + uint64_t tdiv64;
>
> /*
> * If we don't support modem control lines, don't allow
> @@ -930,6 +931,12 @@ imx_set_termios(struct uart_port *port, struct ktermios *termios,
> rational_best_approximation(16 * div * baud, sport->port.uartclk,
> 1 << 16, 1 << 16, &num, &denom);
>
> + tdiv64 = sport->port.uartclk;
> + tdiv64 *= num;
> + do_div(tdiv64, denom * 16 * div);
> + tty_encode_baud_rate(sport->port.info->port.tty,
> + (speed_t)tdiv64, (speed_t)tdiv64);
> +
> num -= 1;
> denom -= 1;
>
This patch breaks booting with a serial console on i.MX UARTs. The
following patch fixes this. Alan, please consider applying it.
Sascha
>From 4ac2e4dbb3bd31d67a395740b1d4f8206441141b Mon Sep 17 00:00:00 2001
From: Sascha Hauer <s.hauer@pengutronix.de>
Date: Tue, 16 Jun 2009 09:24:57 +0200
Subject: [PATCH] i.MX serial driver: Check for NULL pointer deref before calling tty_encode_baud_rate
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
---
drivers/serial/imx.c | 12 +++++++-----
1 files changed, 7 insertions(+), 5 deletions(-)
diff --git a/drivers/serial/imx.c b/drivers/serial/imx.c
index 285b414..5d7b58f 100644
--- a/drivers/serial/imx.c
+++ b/drivers/serial/imx.c
@@ -924,11 +924,13 @@ imx_set_termios(struct uart_port *port, struct ktermios *termios,
rational_best_approximation(16 * div * baud, sport->port.uartclk,
1 << 16, 1 << 16, &num, &denom);
- tdiv64 = sport->port.uartclk;
- tdiv64 *= num;
- do_div(tdiv64, denom * 16 * div);
- tty_encode_baud_rate(sport->port.info->port.tty,
- (speed_t)tdiv64, (speed_t)tdiv64);
+ if (port->info && port->info->port.tty) {
+ tdiv64 = sport->port.uartclk;
+ tdiv64 *= num;
+ do_div(tdiv64, denom * 16 * div);
+ tty_encode_baud_rate(sport->port.info->port.tty,
+ (speed_t)tdiv64, (speed_t)tdiv64);
+ }
num -= 1;
denom -= 1;
--
1.6.3.1
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
prev parent reply other threads:[~2009-06-16 7:29 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-06-10 12:08 imx: serial: add IrDA support to serial driver Oskar Schirmer
2009-06-10 12:08 ` [PATCH 1/9 -v2] imx: serial: fix whitespaces (no changes in functionality) Oskar Schirmer
2009-06-10 12:08 ` [PATCH 2/9 -v2] imx: serial: fix one bit field type Oskar Schirmer
2009-06-10 12:08 ` [PATCH 3/9 -v2] imx: serial: notify higher layers in case xmit IRQ was not called Oskar Schirmer
2009-06-10 12:08 ` [PATCH 4/9 -v2] imx: serial: be sure to stop xmit upon shutdown Oskar Schirmer
2009-06-10 12:08 ` [PATCH 5/9 -v2] imx: serial: handle initialisation failure correctly Oskar Schirmer
2009-06-10 12:08 ` [PATCH 6/9] lib: isolate rational fractions helper function Oskar Schirmer
2009-06-10 12:08 ` [PATCH 7/9 -v2] imx: serial: use rational library function Oskar Schirmer
2009-06-12 7:16 ` Sascha Hauer
2009-06-15 7:40 ` Oskar Schirmer
2009-06-15 8:15 ` Sascha Hauer
2009-06-10 12:08 ` [PATCH 8/9 -v2] imx: serial: add IrDA support to serial driver Oskar Schirmer
2009-06-10 12:08 ` [PATCH 9/9 -v2] imx: serial: use tty_encode_baud_rate to set true rate Oskar Schirmer
2009-06-16 7:28 ` Sascha Hauer [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20090616072801.GF31396@pengutronix.de \
--to=s.hauer@pengutronix.de \
--cc=akpm@linux-foundation.org \
--cc=alan@lxorguk.ukuu.org.uk \
--cc=kernel@pengutronix.de \
--cc=linux-kernel@vger.kernel.org \
--cc=os@emlix.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox