From: Johan Hovold <johan@kernel.org>
To: Jim Paris <jim@jtan.com>
Cc: Peter Hurley <peter@hurleysoftware.com>,
Oliver Neukum <oliver@neukum.org>,
Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
linux-usb@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v2] cdc-acm: ensure that termios get set when the port is activated
Date: Wed, 29 Oct 2014 16:07:16 +0100 [thread overview]
Message-ID: <20141029150716.GG2265@localhost> (raw)
In-Reply-To: <20141029134305.GA8149@psychosis.jim.sh>
On Wed, Oct 29, 2014 at 09:43:41AM -0400, Jim Paris wrote:
> The driver wasn't properly configuring the hardware for the current
> termios settings under all conditions. Ensure that termios are
> written to the device when the port is activated.
>
> Signed-off-by: Jim Paris <jim@jtan.com>
> ---
>
> Peter Hurley wrote:
> > Yeah, you're right that the cdc-acm driver isn't properly configuring
> > the hardware for the current termios settings under all conditions.
> >
> > But you don't want to do it for every tty open, only for opens
> > requiring port initialization, which is what the tty_port->activate()
> > method is for (ie., acm_port_activate()).
>
> I moved it to acm_port_activate(), which works fine. Thanks!
> acm_tty_set_termios is just moved in this patch, not changed.
Don't do that. Use a prototype instead of moving.
> Jim
>
> ---
> drivers/usb/class/cdc-acm.c | 104 ++++++++++++++++++++++----------------------
> 1 file changed, 53 insertions(+), 51 deletions(-)
>
> diff --git a/drivers/usb/class/cdc-acm.c b/drivers/usb/class/cdc-acm.c
> index e934e19f49f5..24077deb737a 100644
> --- a/drivers/usb/class/cdc-acm.c
> +++ b/drivers/usb/class/cdc-acm.c
> @@ -504,6 +504,57 @@ static int acm_tty_open(struct tty_struct *tty, struct file *filp)
> return tty_port_open(&acm->port, tty, filp);
> }
>
> +static void acm_tty_set_termios(struct tty_struct *tty,
> + struct ktermios *termios_old)
> +{
> + struct acm *acm = tty->driver_data;
> + struct ktermios *termios = &tty->termios;
> + struct usb_cdc_line_coding newline;
> + int newctrl = acm->ctrlout;
> +
> + newline.dwDTERate = cpu_to_le32(tty_get_baud_rate(tty));
> + newline.bCharFormat = termios->c_cflag & CSTOPB ? 2 : 0;
> + newline.bParityType = termios->c_cflag & PARENB ?
> + (termios->c_cflag & PARODD ? 1 : 2) +
> + (termios->c_cflag & CMSPAR ? 2 : 0) : 0;
> + switch (termios->c_cflag & CSIZE) {
> + case CS5:
> + newline.bDataBits = 5;
> + break;
> + case CS6:
> + newline.bDataBits = 6;
> + break;
> + case CS7:
> + newline.bDataBits = 7;
> + break;
> + case CS8:
> + default:
> + newline.bDataBits = 8;
> + break;
> + }
> + /* FIXME: Needs to clear unsupported bits in the termios */
> + acm->clocal = ((termios->c_cflag & CLOCAL) != 0);
> +
> + if (!newline.dwDTERate) {
> + newline.dwDTERate = acm->line.dwDTERate;
> + newctrl &= ~ACM_CTRL_DTR;
> + } else
> + newctrl |= ACM_CTRL_DTR;
> +
> + if (newctrl != acm->ctrlout)
> + acm_set_control(acm, acm->ctrlout = newctrl);
> +
> + if (memcmp(&acm->line, &newline, sizeof newline)) {
> + memcpy(&acm->line, &newline, sizeof newline);
> + dev_dbg(&acm->control->dev, "%s - set line: %d %d %d %d\n",
> + __func__,
> + le32_to_cpu(newline.dwDTERate),
> + newline.bCharFormat, newline.bParityType,
> + newline.bDataBits);
> + acm_set_line(acm, &acm->line);
> + }
> +}
> +
> static void acm_port_dtr_rts(struct tty_port *port, int raise)
> {
> struct acm *acm = container_of(port, struct acm, port);
> @@ -554,6 +605,8 @@ static int acm_port_activate(struct tty_port *port, struct tty_struct *tty)
> goto error_submit_urb;
> }
>
> + acm_tty_set_termios(tty, NULL);
> +
Using set_termios this way also has the side-effect of raising DTR (when
baudrate != B0). This is currently not done until after the port has
been fully opened (by .dtr_rts).
This is actually a bug in set_termios which should only raise DTR on
transitions from B0. I'll fix this separately.
> /*
> * Unthrottle device in case the TTY was closed while throttled.
> */
> @@ -949,57 +1002,6 @@ static int acm_tty_ioctl(struct tty_struct *tty,
> return rv;
> }
Johan
next prev parent reply other threads:[~2014-10-29 15:10 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-10-28 23:26 [PATCH] cdc-acm: ensure that termios get set when the port is opened Jim Paris
2014-10-29 1:05 ` Peter Hurley
2014-10-29 13:43 ` [PATCH v2] cdc-acm: ensure that termios get set when the port is activated Jim Paris
2014-10-29 15:07 ` Johan Hovold [this message]
2014-10-29 15:30 ` [PATCH] USB: cdc-acm: only raise DTR on transitions from B0 Johan Hovold
2014-10-29 15:56 ` Greg Kroah-Hartman
2014-10-29 15:58 ` Johan Hovold
2014-10-30 0:53 ` [PATCH v3] cdc-acm: ensure that termios get set when the port is activated Jim Paris
2014-10-30 7:51 ` Johan Hovold
2014-10-30 14:45 ` [PATCH v4] " Jim Paris
2014-10-30 14:48 ` Johan Hovold
2014-10-30 15:04 ` [PATCH v4-real] " Jim Paris
2014-10-31 11:45 ` Johan Hovold
2014-10-31 16:04 ` Oliver Neukum
2014-10-30 6:48 ` [PATCH] USB: cdc-acm: only raise DTR on transitions from B0 Oliver Neukum
2014-11-05 17:41 ` [PATCH Resend] " Johan Hovold
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=20141029150716.GG2265@localhost \
--to=johan@kernel.org \
--cc=gregkh@linuxfoundation.org \
--cc=jim@jtan.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-usb@vger.kernel.org \
--cc=oliver@neukum.org \
--cc=peter@hurleysoftware.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.