From: Marc Kleine-Budde <mkl@pengutronix.de>
To: Huang Shijie <b32955@freescale.com>
Cc: Steffen Trumtrar <s.trumtrar@pengutronix.de>,
linux-arm-kernel@lists.infradead.org, stable@vger.kernel.org,
linux-serial@vger.kernel.org, Alan Cox <alan@linux.intel.com>
Subject: Re: [PATCH v3] mxs: uart: allow setting RTS from software
Date: Mon, 07 Jan 2013 10:43:38 +0100 [thread overview]
Message-ID: <50EA98CA.1060303@pengutronix.de> (raw)
In-Reply-To: <50CA8E8C.5060906@freescale.com>
[-- Attachment #1: Type: text/plain, Size: 1804 bytes --]
On 12/14/2012 03:27 AM, Huang Shijie wrote:
> 于 2012年12月13日 21:27, Steffen Trumtrar 写道:
>> With the patch "serial: mxs-auart: fix the wrong RTS hardware flow control" the
>> mainline mxs-uart driver now sets RTSEN only when hardware flow control is
>> enabled via software. It is not possible any longer to set RTS manually via
>> software. However, the manual modification is a valid operation.
>> Regain the possibility to set RTS via software and only set RTSEN when hardware
>> flow control is explicitly enabled via settermios cflag CRTSCTS.
>>
>> Signed-off-by: Steffen Trumtrar <s.trumtrar@pengutronix.de>
>> ---
>> drivers/tty/serial/mxs-auart.c | 4 +++-
>> 1 file changed, 3 insertions(+), 1 deletion(-)
>>
>> diff --git a/drivers/tty/serial/mxs-auart.c b/drivers/tty/serial/mxs-auart.c
>> index 6db23b0..9f63f88 100644
>> --- a/drivers/tty/serial/mxs-auart.c
>> +++ b/drivers/tty/serial/mxs-auart.c
>> @@ -412,10 +412,12 @@ static void mxs_auart_set_mctrl(struct uart_port *u, unsigned mctrl)
>>
>> u32 ctrl = readl(u->membase + AUART_CTRL2);
>>
>> - ctrl &= ~AUART_CTRL2_RTSEN;
>> + ctrl &= ~(AUART_CTRL2_RTSEN | AUART_CTRL2_RTS);
>> if (mctrl & TIOCM_RTS) {
>> if (tty_port_cts_enabled(&u->state->port))
>> ctrl |= AUART_CTRL2_RTSEN;
>> + else
>> + ctrl |= AUART_CTRL2_RTS;
>> }
>>
>> s->ctrl = mctrl;
> Reviewed-by: Huang Shijie <b32955@freescale.com>
This patch is not not in today's next. What's the current status? Who
will take it?
Marc
--
Pengutronix e.K. | Marc Kleine-Budde |
Industrial Linux Solutions | Phone: +49-231-2826-924 |
Vertretung West/Dortmund | Fax: +49-5121-206917-5555 |
Amtsgericht Hildesheim, HRA 2686 | http://www.pengutronix.de |
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 261 bytes --]
WARNING: multiple messages have this Message-ID (diff)
From: mkl@pengutronix.de (Marc Kleine-Budde)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v3] mxs: uart: allow setting RTS from software
Date: Mon, 07 Jan 2013 10:43:38 +0100 [thread overview]
Message-ID: <50EA98CA.1060303@pengutronix.de> (raw)
In-Reply-To: <50CA8E8C.5060906@freescale.com>
On 12/14/2012 03:27 AM, Huang Shijie wrote:
> ? 2012?12?13? 21:27, Steffen Trumtrar ??:
>> With the patch "serial: mxs-auart: fix the wrong RTS hardware flow control" the
>> mainline mxs-uart driver now sets RTSEN only when hardware flow control is
>> enabled via software. It is not possible any longer to set RTS manually via
>> software. However, the manual modification is a valid operation.
>> Regain the possibility to set RTS via software and only set RTSEN when hardware
>> flow control is explicitly enabled via settermios cflag CRTSCTS.
>>
>> Signed-off-by: Steffen Trumtrar <s.trumtrar@pengutronix.de>
>> ---
>> drivers/tty/serial/mxs-auart.c | 4 +++-
>> 1 file changed, 3 insertions(+), 1 deletion(-)
>>
>> diff --git a/drivers/tty/serial/mxs-auart.c b/drivers/tty/serial/mxs-auart.c
>> index 6db23b0..9f63f88 100644
>> --- a/drivers/tty/serial/mxs-auart.c
>> +++ b/drivers/tty/serial/mxs-auart.c
>> @@ -412,10 +412,12 @@ static void mxs_auart_set_mctrl(struct uart_port *u, unsigned mctrl)
>>
>> u32 ctrl = readl(u->membase + AUART_CTRL2);
>>
>> - ctrl &= ~AUART_CTRL2_RTSEN;
>> + ctrl &= ~(AUART_CTRL2_RTSEN | AUART_CTRL2_RTS);
>> if (mctrl & TIOCM_RTS) {
>> if (tty_port_cts_enabled(&u->state->port))
>> ctrl |= AUART_CTRL2_RTSEN;
>> + else
>> + ctrl |= AUART_CTRL2_RTS;
>> }
>>
>> s->ctrl = mctrl;
> Reviewed-by: Huang Shijie <b32955@freescale.com>
This patch is not not in today's next. What's the current status? Who
will take it?
Marc
--
Pengutronix e.K. | Marc Kleine-Budde |
Industrial Linux Solutions | Phone: +49-231-2826-924 |
Vertretung West/Dortmund | Fax: +49-5121-206917-5555 |
Amtsgericht Hildesheim, HRA 2686 | http://www.pengutronix.de |
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 261 bytes
Desc: OpenPGP digital signature
URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20130107/65c0ab15/attachment.sig>
next prev parent reply other threads:[~2013-01-07 9:43 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-12-13 13:27 [PATCH v3] mxs: uart: allow setting RTS from software Steffen Trumtrar
2012-12-13 13:27 ` Steffen Trumtrar
2012-12-14 2:27 ` Huang Shijie
2012-12-14 2:27 ` Huang Shijie
2013-01-07 9:43 ` Marc Kleine-Budde [this message]
2013-01-07 9:43 ` Marc Kleine-Budde
2013-01-08 1:06 ` Shawn Guo
2013-01-08 1:06 ` Shawn Guo
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=50EA98CA.1060303@pengutronix.de \
--to=mkl@pengutronix.de \
--cc=alan@linux.intel.com \
--cc=b32955@freescale.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-serial@vger.kernel.org \
--cc=s.trumtrar@pengutronix.de \
--cc=stable@vger.kernel.org \
/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 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.