All of lore.kernel.org
 help / color / mirror / Atom feed
From: Yinghai Lu <Yinghai.Lu@Sun.COM>
To: Yinghai Lu <Yinghai.Lu@Sun.COM>,
	Andrew Morton <akpm@linux-foundation.org>,
	Andi Kleen <ak@suse.de>,
	bjorn.helgaas@hp.com, Randy Dunlap <randy.dunlap@oracle.com>,
	Linux Kernel Mailing List <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] serial: set RTS and DTR if flow is 'r'  --- resend
Date: Mon, 14 May 2007 12:46:27 -0700	[thread overview]
Message-ID: <4648BC93.8080909@sun.com> (raw)
In-Reply-To: <20070514191905.GE29682@flint.arm.linux.org.uk>

Russell King wrote:
> Still wrong, and unfortunately you haven't understood what I was saying
> at all because this is worse. ;(
>
> Do not put the code in serial8250_set_termios.  It is the wrong place.
>   

I don't want to put that there. the problem is serial8250_set_mctrl 
called by will clear DTR bit.

uart_set_options==>serial8250_set_termios ==> serial8250_set_mctrl will 
clear DTR bit

YH


static void serial8250_set_mctrl(struct uart_port *port, unsigned int mctrl)
{
struct uart_8250_port *up = (struct uart_8250_port *)port;
unsigned char mcr = 0;

if (mctrl & TIOCM_RTS)
mcr |= UART_MCR_RTS;
if (mctrl & TIOCM_DTR)
mcr |= UART_MCR_DTR;
if (mctrl & TIOCM_OUT1)
mcr |= UART_MCR_OUT1;
if (mctrl & TIOCM_OUT2)
mcr |= UART_MCR_OUT2;
if (mctrl & TIOCM_LOOP)
mcr |= UART_MCR_LOOP;

mcr = (mcr & up->mcr_mask) | up->mcr_force | up->mcr;

serial_out(up, UART_MCR, mcr);
}


  reply	other threads:[~2007-05-14 19:48 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-05-13  5:33 [PATCH]x86_64: build and use GDT on copied compressed kernel Yinghai Lu
2007-05-13  5:52 ` Andi Kleen
2007-05-13  6:41   ` Yinghai Lu
2007-05-13  6:09 ` Eric W. Biederman
2007-05-13  6:29   ` Yinghai Lu
2007-05-13  6:48     ` Eric W. Biederman
2007-05-13  6:55       ` Yinghai Lu
2007-05-13  7:06         ` Eric W. Biederman
2007-05-13  7:27           ` Yinghai Lu
2007-05-13 18:01             ` Yinghai Lu
2007-05-13 19:49               ` Eric W. Biederman
2007-05-13 21:06                 ` Yinghai Lu
2007-05-13 21:23                   ` Eric W. Biederman
2007-05-14 17:26   ` [PATCH] serial: set RTS and DTR if flow is 'r' Yinghai Lu
2007-05-14 17:54     ` Randy Dunlap
2007-05-14 17:57     ` [PATCH] serial: set RTS and DTR if flow is 'r' --- resend Yinghai Lu
2007-05-14 18:10       ` Russell King
2007-05-14 19:04         ` Yinghai Lu
2007-05-14 19:19           ` Russell King
2007-05-14 19:46             ` Yinghai Lu [this message]
2007-05-14 19:50               ` Russell King
2007-05-14 20:04                 ` Yinghai Lu
2007-05-15 20:48           ` [PATCH] serial: set DTR in uart for kernel serial console Yinghai Lu
2007-05-22 19:31             ` PATCH] serial: convert early_uart to earlycon for 8250 Yinghai Lu
2007-05-28 10:51               ` Russell King
2007-05-28 17:50                 ` Yinghai Lu

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=4648BC93.8080909@sun.com \
    --to=yinghai.lu@sun.com \
    --cc=ak@suse.de \
    --cc=akpm@linux-foundation.org \
    --cc=bjorn.helgaas@hp.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=randy.dunlap@oracle.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 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.