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

[PATCH] USB: digi_acceleport: add support for new tty tiocmget and tiocmset functions.

parent 6b69d085
...@@ -460,6 +460,9 @@ static void digi_set_termios( struct usb_serial_port *port, ...@@ -460,6 +460,9 @@ static void digi_set_termios( struct usb_serial_port *port,
static void digi_break_ctl( struct usb_serial_port *port, int break_state ); static void digi_break_ctl( struct usb_serial_port *port, int break_state );
static int digi_ioctl( struct usb_serial_port *port, struct file *file, static int digi_ioctl( struct usb_serial_port *port, struct file *file,
unsigned int cmd, unsigned long arg ); unsigned int cmd, unsigned long arg );
static int digi_tiocmget( struct usb_serial_port *port, struct file *file );
static int digi_tiocmset( struct usb_serial_port *port, struct file *file,
unsigned int set, unsigned int clear );
static int digi_write( struct usb_serial_port *port, int from_user, static int digi_write( struct usb_serial_port *port, int from_user,
const unsigned char *buf, int count ); const unsigned char *buf, int count );
static void digi_write_bulk_callback( struct urb *urb, struct pt_regs *regs ); static void digi_write_bulk_callback( struct urb *urb, struct pt_regs *regs );
...@@ -526,6 +529,8 @@ static struct usb_serial_device_type digi_acceleport_2_device = { ...@@ -526,6 +529,8 @@ static struct usb_serial_device_type digi_acceleport_2_device = {
.ioctl = digi_ioctl, .ioctl = digi_ioctl,
.set_termios = digi_set_termios, .set_termios = digi_set_termios,
.break_ctl = digi_break_ctl, .break_ctl = digi_break_ctl,
.tiocmget = digi_tiocmget,
.tiocmset = digi_tiocmset,
.attach = digi_startup, .attach = digi_startup,
.shutdown = digi_shutdown, .shutdown = digi_shutdown,
}; };
...@@ -551,6 +556,8 @@ static struct usb_serial_device_type digi_acceleport_4_device = { ...@@ -551,6 +556,8 @@ static struct usb_serial_device_type digi_acceleport_4_device = {
.ioctl = digi_ioctl, .ioctl = digi_ioctl,
.set_termios = digi_set_termios, .set_termios = digi_set_termios,
.break_ctl = digi_break_ctl, .break_ctl = digi_break_ctl,
.tiocmget = digi_tiocmget,
.tiocmset = digi_tiocmset,
.attach = digi_startup, .attach = digi_startup,
.shutdown = digi_shutdown, .shutdown = digi_shutdown,
}; };
...@@ -1211,39 +1218,46 @@ static void digi_break_ctl( struct usb_serial_port *port, int break_state ) ...@@ -1211,39 +1218,46 @@ static void digi_break_ctl( struct usb_serial_port *port, int break_state )
} }
static int digi_ioctl( struct usb_serial_port *port, struct file *file, static int digi_tiocmget( struct usb_serial_port *port, struct file *file )
unsigned int cmd, unsigned long arg )
{ {
struct digi_port *priv = usb_get_serial_port_data(port); struct digi_port *priv = usb_get_serial_port_data(port);
unsigned int val; unsigned int val;
unsigned long flags = 0; unsigned long flags;
dbg( "digi_ioctl: TOP: port=%d, cmd=0x%x", priv->dp_port_num, cmd );
switch (cmd) { dbg("%s: TOP: port=%d", __FUNCTION__, priv->dp_port_num);
case TIOCMGET:
spin_lock_irqsave( &priv->dp_port_lock, flags ); spin_lock_irqsave( &priv->dp_port_lock, flags );
val = priv->dp_modem_signals; val = priv->dp_modem_signals;
spin_unlock_irqrestore( &priv->dp_port_lock, flags ); spin_unlock_irqrestore( &priv->dp_port_lock, flags );
if( copy_to_user((unsigned int *)arg, &val, sizeof(int)) ) return val;
return( -EFAULT ); }
return( 0 );
static int digi_tiocmset( struct usb_serial_port *port, struct file *file,
unsigned int set, unsigned int clear )
{
struct digi_port *priv = usb_get_serial_port_data(port);
unsigned int val;
unsigned long flags;
dbg("%s: TOP: port=%d", __FUNCTION__, priv->dp_port_num);
case TIOCMSET:
case TIOCMBIS:
case TIOCMBIC:
if( copy_from_user(&val, (unsigned int *)arg, sizeof(int)) )
return( -EFAULT );
spin_lock_irqsave( &priv->dp_port_lock, flags ); spin_lock_irqsave( &priv->dp_port_lock, flags );
if( cmd == TIOCMBIS ) val = (priv->dp_modem_signals & ~clear) | set;
val = priv->dp_modem_signals | val;
else if( cmd == TIOCMBIC )
val = priv->dp_modem_signals & ~val;
spin_unlock_irqrestore( &priv->dp_port_lock, flags ); spin_unlock_irqrestore( &priv->dp_port_lock, flags );
return( digi_set_modem_signals( port, val, 1 ) ); return digi_set_modem_signals( port, val, 1 );
}
static int digi_ioctl( struct usb_serial_port *port, struct file *file,
unsigned int cmd, unsigned long arg )
{
struct digi_port *priv = usb_get_serial_port_data(port);
dbg( "digi_ioctl: TOP: port=%d, cmd=0x%x", priv->dp_port_num, cmd );
switch (cmd) {
case TIOCMIWAIT: case TIOCMIWAIT:
/* wait for any of the 4 modem inputs (DCD,RI,DSR,CTS)*/ /* wait for any of the 4 modem inputs (DCD,RI,DSR,CTS)*/
......
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