Commit a899637c authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman

[PATCH] USB: cdc-acm: add support for new tty tiocmget and tiocmset functions.

parent 9beb9dc0
...@@ -432,43 +432,47 @@ static void acm_tty_break_ctl(struct tty_struct *tty, int state) ...@@ -432,43 +432,47 @@ static void acm_tty_break_ctl(struct tty_struct *tty, int state)
dbg("send break failed"); dbg("send break failed");
} }
static int acm_tty_ioctl(struct tty_struct *tty, struct file *file, unsigned int cmd, unsigned long arg) static int acm_tty_tiocmget(struct tty_struct *tty, struct file *file)
{ {
struct acm *acm = tty->driver_data; struct acm *acm = tty->driver_data;
unsigned int mask, newctrl;
if (!ACM_READY(acm)) return -EINVAL;
switch (cmd) { if (!ACM_READY(acm))
return -EINVAL;
case TIOCMGET:
return put_user((acm->ctrlout & ACM_CTRL_DTR ? TIOCM_DTR : 0) | return (acm->ctrlout & ACM_CTRL_DTR ? TIOCM_DTR : 0) |
(acm->ctrlout & ACM_CTRL_RTS ? TIOCM_RTS : 0) | (acm->ctrlout & ACM_CTRL_RTS ? TIOCM_RTS : 0) |
(acm->ctrlin & ACM_CTRL_DSR ? TIOCM_DSR : 0) | (acm->ctrlin & ACM_CTRL_DSR ? TIOCM_DSR : 0) |
(acm->ctrlin & ACM_CTRL_RI ? TIOCM_RI : 0) | (acm->ctrlin & ACM_CTRL_RI ? TIOCM_RI : 0) |
(acm->ctrlin & ACM_CTRL_DCD ? TIOCM_CD : 0) | (acm->ctrlin & ACM_CTRL_DCD ? TIOCM_CD : 0) |
TIOCM_CTS, (unsigned long *) arg); TIOCM_CTS;
}
case TIOCMSET: static int acm_tty_tiocmset(struct tty_struct *tty, struct file *file,
case TIOCMBIS: unsigned int set, unsigned int clear)
case TIOCMBIC: {
struct acm *acm = tty->driver_data;
unsigned int newctrl;
if (get_user(mask, (unsigned long *) arg)) if (!ACM_READY(acm))
return -EFAULT; return -EINVAL;
newctrl = acm->ctrlout; newctrl = acm->ctrlout;
mask = (mask & TIOCM_DTR ? ACM_CTRL_DTR : 0) | (mask & TIOCM_RTS ? ACM_CTRL_RTS : 0); set = (set & TIOCM_DTR ? ACM_CTRL_DTR : 0) | (set & TIOCM_RTS ? ACM_CTRL_RTS : 0);
clear = (clear & TIOCM_DTR ? ACM_CTRL_DTR : 0) | (clear & TIOCM_RTS ? ACM_CTRL_RTS : 0);
switch (cmd) { newctrl = (newctrl & ~clear) | set;
case TIOCMSET: newctrl = mask; break;
case TIOCMBIS: newctrl |= mask; break;
case TIOCMBIC: newctrl &= ~mask; break;
}
if (acm->ctrlout == newctrl) return 0; if (acm->ctrlout == newctrl)
return 0;
return acm_set_control(acm, acm->ctrlout = newctrl); return acm_set_control(acm, acm->ctrlout = newctrl);
} }
static int acm_tty_ioctl(struct tty_struct *tty, struct file *file, unsigned int cmd, unsigned long arg)
{
struct acm *acm = tty->driver_data;
if (!ACM_READY(acm))
return -EINVAL;
return -ENOIOCTLCMD; return -ENOIOCTLCMD;
} }
...@@ -750,7 +754,9 @@ static struct tty_driver acm_tty_driver = { ...@@ -750,7 +754,9 @@ static struct tty_driver acm_tty_driver = {
.unthrottle = acm_tty_unthrottle, .unthrottle = acm_tty_unthrottle,
.chars_in_buffer = acm_tty_chars_in_buffer, .chars_in_buffer = acm_tty_chars_in_buffer,
.break_ctl = acm_tty_break_ctl, .break_ctl = acm_tty_break_ctl,
.set_termios = acm_tty_set_termios .set_termios = acm_tty_set_termios,
.tiocmget = acm_tty_tiocmget,
.tiocmset = acm_tty_tiocmset,
}; };
/* /*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment