blob: 70a098de429fc39934ef8808d3e6c5011f063352 [file] [log] [blame]
Bill Pemberton52af9542010-07-29 11:05:41 -04001/*
2 * usb-serial driver for Quatech SSU-100
3 *
4 * based on ftdi_sio.c and the original serqt_usb.c from Quatech
5 *
6 */
7
8#include <linux/errno.h>
Bill Pemberton52af9542010-07-29 11:05:41 -04009#include <linux/slab.h>
10#include <linux/tty.h>
11#include <linux/tty_driver.h>
12#include <linux/tty_flip.h>
13#include <linux/module.h>
14#include <linux/serial.h>
15#include <linux/usb.h>
16#include <linux/usb/serial.h>
Bill Pemberton79f203a2010-08-05 17:01:07 -040017#include <linux/serial_reg.h>
Bill Pemberton52af9542010-07-29 11:05:41 -040018#include <linux/uaccess.h>
19
20#define QT_OPEN_CLOSE_CHANNEL 0xca
21#define QT_SET_GET_DEVICE 0xc2
22#define QT_SET_GET_REGISTER 0xc0
23#define QT_GET_SET_PREBUF_TRIG_LVL 0xcc
24#define QT_SET_ATF 0xcd
25#define QT_GET_SET_UART 0xc1
26#define QT_TRANSFER_IN 0xc0
27#define QT_HW_FLOW_CONTROL_MASK 0xc5
28#define QT_SW_FLOW_CONTROL_MASK 0xc6
29
Bill Pemberton52af9542010-07-29 11:05:41 -040030#define SERIAL_MSR_MASK 0xf0
31
Bill Pemberton79f203a2010-08-05 17:01:07 -040032#define SERIAL_CRTSCTS ((UART_MCR_RTS << 8) | UART_MSR_CTS)
Bill Pemberton52af9542010-07-29 11:05:41 -040033
Bill Pemberton79f203a2010-08-05 17:01:07 -040034#define SERIAL_EVEN_PARITY (UART_LCR_PARITY | UART_LCR_EPAR)
Bill Pemberton52af9542010-07-29 11:05:41 -040035
36#define MAX_BAUD_RATE 460800
37
38#define ATC_DISABLED 0x00
39#define DUPMODE_BITS 0xc0
40#define RR_BITS 0x03
41#define LOOPMODE_BITS 0x41
42#define RS232_MODE 0x00
43#define RTSCTS_TO_CONNECTOR 0x40
44#define CLKS_X4 0x02
45#define FULLPWRBIT 0x00000080
46#define NEXT_BOARD_POWER_BIT 0x00000004
47
Bill Pemberton52af9542010-07-29 11:05:41 -040048#define DRIVER_DESC "Quatech SSU-100 USB to Serial Driver"
49
50#define USB_VENDOR_ID_QUATECH 0x061d /* Quatech VID */
51#define QUATECH_SSU100 0xC020 /* SSU100 */
52
53static const struct usb_device_id id_table[] = {
54 {USB_DEVICE(USB_VENDOR_ID_QUATECH, QUATECH_SSU100)},
55 {} /* Terminating entry */
56};
Bill Pemberton52af9542010-07-29 11:05:41 -040057MODULE_DEVICE_TABLE(usb, id_table);
58
Bill Pemberton52af9542010-07-29 11:05:41 -040059struct ssu100_port_private {
Bill Pemberton17523052010-08-05 17:01:05 -040060 spinlock_t status_lock;
Bill Pemberton52af9542010-07-29 11:05:41 -040061 u8 shadowLSR;
62 u8 shadowMSR;
Bill Pemberton52af9542010-07-29 11:05:41 -040063};
64
Bill Pemberton52af9542010-07-29 11:05:41 -040065static inline int ssu100_control_msg(struct usb_device *dev,
66 u8 request, u16 data, u16 index)
67{
68 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
69 request, 0x40, data, index,
70 NULL, 0, 300);
71}
72
73static inline int ssu100_setdevice(struct usb_device *dev, u8 *data)
74{
75 u16 x = ((u16)(data[1] << 8) | (u16)(data[0]));
76
77 return ssu100_control_msg(dev, QT_SET_GET_DEVICE, x, 0);
78}
79
80
81static inline int ssu100_getdevice(struct usb_device *dev, u8 *data)
82{
83 return usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
84 QT_SET_GET_DEVICE, 0xc0, 0, 0,
85 data, 3, 300);
86}
87
88static inline int ssu100_getregister(struct usb_device *dev,
89 unsigned short uart,
90 unsigned short reg,
91 u8 *data)
92{
93 return usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
94 QT_SET_GET_REGISTER, 0xc0, reg,
95 uart, data, sizeof(*data), 300);
96
97}
98
99
100static inline int ssu100_setregister(struct usb_device *dev,
101 unsigned short uart,
Bill Pemberton556f1a02010-08-05 17:01:08 -0400102 unsigned short reg,
Bill Pemberton52af9542010-07-29 11:05:41 -0400103 u16 data)
104{
Bill Pemberton556f1a02010-08-05 17:01:08 -0400105 u16 value = (data << 8) | reg;
Bill Pemberton52af9542010-07-29 11:05:41 -0400106
107 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
108 QT_SET_GET_REGISTER, 0x40, value, uart,
109 NULL, 0, 300);
110
111}
112
113#define set_mctrl(dev, set) update_mctrl((dev), (set), 0)
114#define clear_mctrl(dev, clear) update_mctrl((dev), 0, (clear))
115
116/* these do not deal with device that have more than 1 port */
117static inline int update_mctrl(struct usb_device *dev, unsigned int set,
118 unsigned int clear)
119{
120 unsigned urb_value;
121 int result;
122
123 if (((set | clear) & (TIOCM_DTR | TIOCM_RTS)) == 0) {
Greg Kroah-Hartman4f0c6412012-09-14 11:50:35 -0700124 dev_dbg(&dev->dev, "%s - DTR|RTS not being set|cleared\n", __func__);
Bill Pemberton52af9542010-07-29 11:05:41 -0400125 return 0; /* no change */
126 }
127
128 clear &= ~set; /* 'set' takes precedence over 'clear' */
129 urb_value = 0;
130 if (set & TIOCM_DTR)
Bill Pemberton79f203a2010-08-05 17:01:07 -0400131 urb_value |= UART_MCR_DTR;
Bill Pemberton52af9542010-07-29 11:05:41 -0400132 if (set & TIOCM_RTS)
Bill Pemberton79f203a2010-08-05 17:01:07 -0400133 urb_value |= UART_MCR_RTS;
Bill Pemberton52af9542010-07-29 11:05:41 -0400134
Bill Pemberton556f1a02010-08-05 17:01:08 -0400135 result = ssu100_setregister(dev, 0, UART_MCR, urb_value);
Bill Pemberton52af9542010-07-29 11:05:41 -0400136 if (result < 0)
Greg Kroah-Hartman4f0c6412012-09-14 11:50:35 -0700137 dev_dbg(&dev->dev, "%s Error from MODEM_CTRL urb\n", __func__);
Bill Pemberton52af9542010-07-29 11:05:41 -0400138
139 return result;
140}
141
142static int ssu100_initdevice(struct usb_device *dev)
143{
144 u8 *data;
145 int result = 0;
146
Bill Pemberton52af9542010-07-29 11:05:41 -0400147 data = kzalloc(3, GFP_KERNEL);
148 if (!data)
149 return -ENOMEM;
150
151 result = ssu100_getdevice(dev, data);
152 if (result < 0) {
Greg Kroah-Hartman4f0c6412012-09-14 11:50:35 -0700153 dev_dbg(&dev->dev, "%s - get_device failed %i\n", __func__, result);
Bill Pemberton52af9542010-07-29 11:05:41 -0400154 goto out;
155 }
156
157 data[1] &= ~FULLPWRBIT;
158
159 result = ssu100_setdevice(dev, data);
160 if (result < 0) {
Greg Kroah-Hartman4f0c6412012-09-14 11:50:35 -0700161 dev_dbg(&dev->dev, "%s - setdevice failed %i\n", __func__, result);
Bill Pemberton52af9542010-07-29 11:05:41 -0400162 goto out;
163 }
164
165 result = ssu100_control_msg(dev, QT_GET_SET_PREBUF_TRIG_LVL, 128, 0);
166 if (result < 0) {
Greg Kroah-Hartman4f0c6412012-09-14 11:50:35 -0700167 dev_dbg(&dev->dev, "%s - set prebuffer level failed %i\n", __func__, result);
Bill Pemberton52af9542010-07-29 11:05:41 -0400168 goto out;
169 }
170
171 result = ssu100_control_msg(dev, QT_SET_ATF, ATC_DISABLED, 0);
172 if (result < 0) {
Greg Kroah-Hartman4f0c6412012-09-14 11:50:35 -0700173 dev_dbg(&dev->dev, "%s - set ATFprebuffer level failed %i\n", __func__, result);
Bill Pemberton52af9542010-07-29 11:05:41 -0400174 goto out;
175 }
176
177 result = ssu100_getdevice(dev, data);
178 if (result < 0) {
Greg Kroah-Hartman4f0c6412012-09-14 11:50:35 -0700179 dev_dbg(&dev->dev, "%s - get_device failed %i\n", __func__, result);
Bill Pemberton52af9542010-07-29 11:05:41 -0400180 goto out;
181 }
182
183 data[0] &= ~(RR_BITS | DUPMODE_BITS);
184 data[0] |= CLKS_X4;
185 data[1] &= ~(LOOPMODE_BITS);
186 data[1] |= RS232_MODE;
187
188 result = ssu100_setdevice(dev, data);
189 if (result < 0) {
Greg Kroah-Hartman4f0c6412012-09-14 11:50:35 -0700190 dev_dbg(&dev->dev, "%s - setdevice failed %i\n", __func__, result);
Bill Pemberton52af9542010-07-29 11:05:41 -0400191 goto out;
192 }
193
194out: kfree(data);
195 return result;
196
197}
198
199
200static void ssu100_set_termios(struct tty_struct *tty,
201 struct usb_serial_port *port,
202 struct ktermios *old_termios)
203{
204 struct usb_device *dev = port->serial->dev;
Alan Coxadc8d742012-07-14 15:31:47 +0100205 struct ktermios *termios = &tty->termios;
Bill Pemberton52af9542010-07-29 11:05:41 -0400206 u16 baud, divisor, remainder;
207 unsigned int cflag = termios->c_cflag;
208 u16 urb_value = 0; /* will hold the new flags */
209 int result;
210
Bill Pemberton52af9542010-07-29 11:05:41 -0400211 if (cflag & PARENB) {
212 if (cflag & PARODD)
Bill Pemberton79f203a2010-08-05 17:01:07 -0400213 urb_value |= UART_LCR_PARITY;
Bill Pemberton52af9542010-07-29 11:05:41 -0400214 else
215 urb_value |= SERIAL_EVEN_PARITY;
216 }
217
218 switch (cflag & CSIZE) {
219 case CS5:
Bill Pemberton79f203a2010-08-05 17:01:07 -0400220 urb_value |= UART_LCR_WLEN5;
Bill Pemberton52af9542010-07-29 11:05:41 -0400221 break;
222 case CS6:
Bill Pemberton79f203a2010-08-05 17:01:07 -0400223 urb_value |= UART_LCR_WLEN6;
Bill Pemberton52af9542010-07-29 11:05:41 -0400224 break;
225 case CS7:
Bill Pemberton79f203a2010-08-05 17:01:07 -0400226 urb_value |= UART_LCR_WLEN7;
Bill Pemberton52af9542010-07-29 11:05:41 -0400227 break;
228 default:
229 case CS8:
Bill Pemberton79f203a2010-08-05 17:01:07 -0400230 urb_value |= UART_LCR_WLEN8;
Bill Pemberton52af9542010-07-29 11:05:41 -0400231 break;
232 }
233
234 baud = tty_get_baud_rate(tty);
235 if (!baud)
236 baud = 9600;
237
Greg Kroah-Hartman4f0c6412012-09-14 11:50:35 -0700238 dev_dbg(&port->dev, "%s - got baud = %d\n", __func__, baud);
Bill Pemberton52af9542010-07-29 11:05:41 -0400239
240
241 divisor = MAX_BAUD_RATE / baud;
242 remainder = MAX_BAUD_RATE % baud;
243 if (((remainder * 2) >= baud) && (baud != 110))
244 divisor++;
245
246 urb_value = urb_value << 8;
247
248 result = ssu100_control_msg(dev, QT_GET_SET_UART, divisor, urb_value);
249 if (result < 0)
Greg Kroah-Hartman4f0c6412012-09-14 11:50:35 -0700250 dev_dbg(&port->dev, "%s - set uart failed\n", __func__);
Bill Pemberton52af9542010-07-29 11:05:41 -0400251
252 if (cflag & CRTSCTS)
253 result = ssu100_control_msg(dev, QT_HW_FLOW_CONTROL_MASK,
254 SERIAL_CRTSCTS, 0);
255 else
256 result = ssu100_control_msg(dev, QT_HW_FLOW_CONTROL_MASK,
257 0, 0);
258 if (result < 0)
Greg Kroah-Hartman4f0c6412012-09-14 11:50:35 -0700259 dev_dbg(&port->dev, "%s - set HW flow control failed\n", __func__);
Bill Pemberton52af9542010-07-29 11:05:41 -0400260
261 if (I_IXOFF(tty) || I_IXON(tty)) {
262 u16 x = ((u16)(START_CHAR(tty) << 8) | (u16)(STOP_CHAR(tty)));
263
264 result = ssu100_control_msg(dev, QT_SW_FLOW_CONTROL_MASK,
265 x, 0);
266 } else
267 result = ssu100_control_msg(dev, QT_SW_FLOW_CONTROL_MASK,
268 0, 0);
269
270 if (result < 0)
Greg Kroah-Hartman4f0c6412012-09-14 11:50:35 -0700271 dev_dbg(&port->dev, "%s - set SW flow control failed\n", __func__);
Bill Pemberton52af9542010-07-29 11:05:41 -0400272
273}
274
275
276static int ssu100_open(struct tty_struct *tty, struct usb_serial_port *port)
277{
278 struct usb_device *dev = port->serial->dev;
279 struct ssu100_port_private *priv = usb_get_serial_port_data(port);
280 u8 *data;
281 int result;
Bill Pemberton17523052010-08-05 17:01:05 -0400282 unsigned long flags;
Bill Pemberton52af9542010-07-29 11:05:41 -0400283
Bill Pemberton52af9542010-07-29 11:05:41 -0400284 data = kzalloc(2, GFP_KERNEL);
285 if (!data)
286 return -ENOMEM;
287
288 result = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
289 QT_OPEN_CLOSE_CHANNEL,
290 QT_TRANSFER_IN, 0x01,
291 0, data, 2, 300);
292 if (result < 0) {
Greg Kroah-Hartman4f0c6412012-09-14 11:50:35 -0700293 dev_dbg(&port->dev, "%s - open failed %i\n", __func__, result);
Bill Pemberton52af9542010-07-29 11:05:41 -0400294 kfree(data);
295 return result;
296 }
297
Bill Pemberton17523052010-08-05 17:01:05 -0400298 spin_lock_irqsave(&priv->status_lock, flags);
Bill Pembertonf81c83d2010-08-05 17:01:09 -0400299 priv->shadowLSR = data[0];
300 priv->shadowMSR = data[1];
Bill Pemberton17523052010-08-05 17:01:05 -0400301 spin_unlock_irqrestore(&priv->status_lock, flags);
Bill Pemberton52af9542010-07-29 11:05:41 -0400302
303 kfree(data);
304
305/* set to 9600 */
306 result = ssu100_control_msg(dev, QT_GET_SET_UART, 0x30, 0x0300);
307 if (result < 0)
Greg Kroah-Hartman4f0c6412012-09-14 11:50:35 -0700308 dev_dbg(&port->dev, "%s - set uart failed\n", __func__);
Bill Pemberton52af9542010-07-29 11:05:41 -0400309
310 if (tty)
Alan Coxadc8d742012-07-14 15:31:47 +0100311 ssu100_set_termios(tty, port, &tty->termios);
Bill Pemberton52af9542010-07-29 11:05:41 -0400312
313 return usb_serial_generic_open(tty, port);
314}
315
Bill Pemberton52af9542010-07-29 11:05:41 -0400316static int get_serial_info(struct usb_serial_port *port,
317 struct serial_struct __user *retinfo)
318{
319 struct serial_struct tmp;
320
321 if (!retinfo)
322 return -EFAULT;
323
324 memset(&tmp, 0, sizeof(tmp));
Greg Kroah-Hartmane5b1e202013-06-07 11:04:28 -0700325 tmp.line = port->minor;
Bill Pemberton52af9542010-07-29 11:05:41 -0400326 tmp.port = 0;
327 tmp.irq = 0;
328 tmp.flags = ASYNC_SKIP_TEST | ASYNC_AUTO_IRQ;
329 tmp.xmit_fifo_size = port->bulk_out_size;
330 tmp.baud_base = 9600;
331 tmp.close_delay = 5*HZ;
332 tmp.closing_wait = 30*HZ;
333
334 if (copy_to_user(retinfo, &tmp, sizeof(*retinfo)))
335 return -EFAULT;
336 return 0;
337}
338
Alan Cox00a0d0d2011-02-14 16:27:06 +0000339static int ssu100_ioctl(struct tty_struct *tty,
Bill Pemberton52af9542010-07-29 11:05:41 -0400340 unsigned int cmd, unsigned long arg)
341{
342 struct usb_serial_port *port = tty->driver_data;
Bill Pemberton52af9542010-07-29 11:05:41 -0400343
Bill Pemberton52af9542010-07-29 11:05:41 -0400344 switch (cmd) {
345 case TIOCGSERIAL:
346 return get_serial_info(port,
347 (struct serial_struct __user *) arg);
Bill Pemberton52af9542010-07-29 11:05:41 -0400348 default:
349 break;
350 }
351
Bill Pemberton52af9542010-07-29 11:05:41 -0400352 return -ENOIOCTLCMD;
353}
354
Bill Pemberton52af9542010-07-29 11:05:41 -0400355static int ssu100_attach(struct usb_serial *serial)
356{
Johan Hovold638b9e12012-10-17 16:31:34 +0200357 return ssu100_initdevice(serial->dev);
358}
359
360static int ssu100_port_probe(struct usb_serial_port *port)
361{
Bill Pemberton52af9542010-07-29 11:05:41 -0400362 struct ssu100_port_private *priv;
Bill Pemberton52af9542010-07-29 11:05:41 -0400363
Bill Pemberton52af9542010-07-29 11:05:41 -0400364 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
Johan Hovold638b9e12012-10-17 16:31:34 +0200365 if (!priv)
Bill Pemberton52af9542010-07-29 11:05:41 -0400366 return -ENOMEM;
Bill Pemberton52af9542010-07-29 11:05:41 -0400367
Bill Pemberton17523052010-08-05 17:01:05 -0400368 spin_lock_init(&priv->status_lock);
Johan Hovold638b9e12012-10-17 16:31:34 +0200369
Bill Pemberton52af9542010-07-29 11:05:41 -0400370 usb_set_serial_port_data(port, priv);
Bill Pemberton52af9542010-07-29 11:05:41 -0400371
Johan Hovold638b9e12012-10-17 16:31:34 +0200372 return 0;
373}
374
375static int ssu100_port_remove(struct usb_serial_port *port)
376{
377 struct ssu100_port_private *priv;
378
379 priv = usb_get_serial_port_data(port);
380 kfree(priv);
381
382 return 0;
Bill Pemberton52af9542010-07-29 11:05:41 -0400383}
384
Alan Cox60b33c12011-02-14 16:26:14 +0000385static int ssu100_tiocmget(struct tty_struct *tty)
Bill Pemberton52af9542010-07-29 11:05:41 -0400386{
387 struct usb_serial_port *port = tty->driver_data;
388 struct usb_device *dev = port->serial->dev;
389 u8 *d;
390 int r;
391
Bill Pemberton52af9542010-07-29 11:05:41 -0400392 d = kzalloc(2, GFP_KERNEL);
393 if (!d)
394 return -ENOMEM;
395
Bill Pemberton79f203a2010-08-05 17:01:07 -0400396 r = ssu100_getregister(dev, 0, UART_MCR, d);
Bill Pemberton52af9542010-07-29 11:05:41 -0400397 if (r < 0)
398 goto mget_out;
399
Bill Pemberton79f203a2010-08-05 17:01:07 -0400400 r = ssu100_getregister(dev, 0, UART_MSR, d+1);
Bill Pemberton52af9542010-07-29 11:05:41 -0400401 if (r < 0)
402 goto mget_out;
403
Bill Pemberton79f203a2010-08-05 17:01:07 -0400404 r = (d[0] & UART_MCR_DTR ? TIOCM_DTR : 0) |
405 (d[0] & UART_MCR_RTS ? TIOCM_RTS : 0) |
406 (d[1] & UART_MSR_CTS ? TIOCM_CTS : 0) |
407 (d[1] & UART_MSR_DCD ? TIOCM_CAR : 0) |
408 (d[1] & UART_MSR_RI ? TIOCM_RI : 0) |
409 (d[1] & UART_MSR_DSR ? TIOCM_DSR : 0);
Bill Pemberton52af9542010-07-29 11:05:41 -0400410
411mget_out:
412 kfree(d);
413 return r;
414}
415
Alan Cox20b9d172011-02-14 16:26:50 +0000416static int ssu100_tiocmset(struct tty_struct *tty,
Bill Pemberton52af9542010-07-29 11:05:41 -0400417 unsigned int set, unsigned int clear)
418{
419 struct usb_serial_port *port = tty->driver_data;
420 struct usb_device *dev = port->serial->dev;
421
Bill Pemberton52af9542010-07-29 11:05:41 -0400422 return update_mctrl(dev, set, clear);
423}
424
425static void ssu100_dtr_rts(struct usb_serial_port *port, int on)
426{
427 struct usb_device *dev = port->serial->dev;
428
Johan Hovoldb2ca6992013-02-13 17:53:28 +0100429 /* Disable flow control */
430 if (!on) {
431 if (ssu100_setregister(dev, 0, UART_MCR, 0) < 0)
Bill Pemberton52af9542010-07-29 11:05:41 -0400432 dev_err(&port->dev, "error from flowcontrol urb\n");
Bill Pemberton52af9542010-07-29 11:05:41 -0400433 }
Johan Hovoldb2ca6992013-02-13 17:53:28 +0100434 /* drop RTS and DTR */
435 if (on)
436 set_mctrl(dev, TIOCM_DTR | TIOCM_RTS);
437 else
438 clear_mctrl(dev, TIOCM_DTR | TIOCM_RTS);
Bill Pemberton52af9542010-07-29 11:05:41 -0400439}
440
Bill Pembertonf81c83d2010-08-05 17:01:09 -0400441static void ssu100_update_msr(struct usb_serial_port *port, u8 msr)
442{
443 struct ssu100_port_private *priv = usb_get_serial_port_data(port);
444 unsigned long flags;
445
446 spin_lock_irqsave(&priv->status_lock, flags);
447 priv->shadowMSR = msr;
448 spin_unlock_irqrestore(&priv->status_lock, flags);
449
450 if (msr & UART_MSR_ANY_DELTA) {
451 /* update input line counters */
452 if (msr & UART_MSR_DCTS)
Johan Hovold31ecdb62013-03-21 12:37:31 +0100453 port->icount.cts++;
Bill Pembertonf81c83d2010-08-05 17:01:09 -0400454 if (msr & UART_MSR_DDSR)
Johan Hovold31ecdb62013-03-21 12:37:31 +0100455 port->icount.dsr++;
Bill Pembertonf81c83d2010-08-05 17:01:09 -0400456 if (msr & UART_MSR_DDCD)
Johan Hovold31ecdb62013-03-21 12:37:31 +0100457 port->icount.dcd++;
Bill Pembertonf81c83d2010-08-05 17:01:09 -0400458 if (msr & UART_MSR_TERI)
Johan Hovold31ecdb62013-03-21 12:37:31 +0100459 port->icount.rng++;
Johan Hovoldc24c8382013-03-21 12:37:32 +0100460 wake_up_interruptible(&port->port.delta_msr_wait);
Bill Pembertonf81c83d2010-08-05 17:01:09 -0400461 }
462}
463
Bill Pemberton6b8f1ca2010-08-13 09:59:31 -0400464static void ssu100_update_lsr(struct usb_serial_port *port, u8 lsr,
465 char *tty_flag)
Bill Pembertonf81c83d2010-08-05 17:01:09 -0400466{
467 struct ssu100_port_private *priv = usb_get_serial_port_data(port);
468 unsigned long flags;
469
470 spin_lock_irqsave(&priv->status_lock, flags);
471 priv->shadowLSR = lsr;
472 spin_unlock_irqrestore(&priv->status_lock, flags);
473
Bill Pemberton6b8f1ca2010-08-13 09:59:31 -0400474 *tty_flag = TTY_NORMAL;
Bill Pembertonf81c83d2010-08-05 17:01:09 -0400475 if (lsr & UART_LSR_BRK_ERROR_BITS) {
Bill Pemberton6b8f1ca2010-08-13 09:59:31 -0400476 /* we always want to update icount, but we only want to
477 * update tty_flag for one case */
478 if (lsr & UART_LSR_BI) {
Johan Hovold31ecdb62013-03-21 12:37:31 +0100479 port->icount.brk++;
Bill Pemberton6b8f1ca2010-08-13 09:59:31 -0400480 *tty_flag = TTY_BREAK;
481 usb_serial_handle_break(port);
482 }
483 if (lsr & UART_LSR_PE) {
Johan Hovold31ecdb62013-03-21 12:37:31 +0100484 port->icount.parity++;
Bill Pemberton6b8f1ca2010-08-13 09:59:31 -0400485 if (*tty_flag == TTY_NORMAL)
486 *tty_flag = TTY_PARITY;
487 }
488 if (lsr & UART_LSR_FE) {
Johan Hovold31ecdb62013-03-21 12:37:31 +0100489 port->icount.frame++;
Bill Pemberton6b8f1ca2010-08-13 09:59:31 -0400490 if (*tty_flag == TTY_NORMAL)
491 *tty_flag = TTY_FRAME;
492 }
Johan Hovold75bcbf22014-11-18 11:25:21 +0100493 if (lsr & UART_LSR_OE) {
Johan Hovold31ecdb62013-03-21 12:37:31 +0100494 port->icount.overrun++;
Johan Hovold75bcbf22014-11-18 11:25:21 +0100495 tty_insert_flip_char(&port->port, 0, TTY_OVERRUN);
Bill Pemberton6b8f1ca2010-08-13 09:59:31 -0400496 }
Bill Pembertonf81c83d2010-08-05 17:01:09 -0400497 }
Bill Pemberton6b8f1ca2010-08-13 09:59:31 -0400498
Bill Pembertonf81c83d2010-08-05 17:01:09 -0400499}
500
Jiri Slaby2e124b42013-01-03 15:53:06 +0100501static void ssu100_process_read_urb(struct urb *urb)
Bill Pemberton52af9542010-07-29 11:05:41 -0400502{
Bill Pembertonf7043ec2010-10-21 14:43:05 -0400503 struct usb_serial_port *port = urb->context;
504 char *packet = (char *)urb->transfer_buffer;
Bill Pemberton6b8f1ca2010-08-13 09:59:31 -0400505 char flag = TTY_NORMAL;
Bill Pembertonf7043ec2010-10-21 14:43:05 -0400506 u32 len = urb->actual_length;
507 int i;
Bill Pemberton52af9542010-07-29 11:05:41 -0400508 char *ch;
509
Bill Pemberton9b2cef32010-08-05 17:01:06 -0400510 if ((len >= 4) &&
511 (packet[0] == 0x1b) && (packet[1] == 0x1b) &&
Bill Pemberton52af9542010-07-29 11:05:41 -0400512 ((packet[2] == 0x00) || (packet[2] == 0x01))) {
Johan Hovold75bcbf22014-11-18 11:25:21 +0100513 if (packet[2] == 0x00)
Bill Pemberton6b8f1ca2010-08-13 09:59:31 -0400514 ssu100_update_lsr(port, packet[3], &flag);
Bill Pembertonf81c83d2010-08-05 17:01:09 -0400515 if (packet[2] == 0x01)
516 ssu100_update_msr(port, packet[3]);
Bill Pemberton52af9542010-07-29 11:05:41 -0400517
518 len -= 4;
519 ch = packet + 4;
520 } else
521 ch = packet;
522
523 if (!len)
Jiri Slaby2e124b42013-01-03 15:53:06 +0100524 return; /* status only */
Bill Pemberton52af9542010-07-29 11:05:41 -0400525
526 if (port->port.console && port->sysrq) {
527 for (i = 0; i < len; i++, ch++) {
Dmitry Torokhov6ee9f4b2010-08-17 21:15:47 -0700528 if (!usb_serial_handle_sysrq_char(port, *ch))
Jiri Slaby92a19f92013-01-03 15:53:03 +0100529 tty_insert_flip_char(&port->port, *ch, flag);
Bill Pemberton52af9542010-07-29 11:05:41 -0400530 }
531 } else
Jiri Slaby2f693352013-01-03 15:53:02 +0100532 tty_insert_flip_string_fixed_flag(&port->port, ch, flag, len);
Bill Pemberton52af9542010-07-29 11:05:41 -0400533
Jiri Slaby2e124b42013-01-03 15:53:06 +0100534 tty_flip_buffer_push(&port->port);
Bill Pemberton52af9542010-07-29 11:05:41 -0400535}
536
Bill Pemberton52af9542010-07-29 11:05:41 -0400537static struct usb_serial_driver ssu100_device = {
538 .driver = {
539 .owner = THIS_MODULE,
540 .name = "ssu100",
541 },
542 .description = DRIVER_DESC,
543 .id_table = id_table,
Bill Pemberton52af9542010-07-29 11:05:41 -0400544 .num_ports = 1,
Bill Pemberton52af9542010-07-29 11:05:41 -0400545 .open = ssu100_open,
Bill Pemberton52af9542010-07-29 11:05:41 -0400546 .attach = ssu100_attach,
Johan Hovold638b9e12012-10-17 16:31:34 +0200547 .port_probe = ssu100_port_probe,
548 .port_remove = ssu100_port_remove,
Bill Pemberton52af9542010-07-29 11:05:41 -0400549 .dtr_rts = ssu100_dtr_rts,
550 .process_read_urb = ssu100_process_read_urb,
551 .tiocmget = ssu100_tiocmget,
552 .tiocmset = ssu100_tiocmset,
Johan Hovoldc24c8382013-03-21 12:37:32 +0100553 .tiocmiwait = usb_serial_generic_tiocmiwait,
Johan Hovold31ecdb62013-03-21 12:37:31 +0100554 .get_icount = usb_serial_generic_get_icount,
Bill Pemberton52af9542010-07-29 11:05:41 -0400555 .ioctl = ssu100_ioctl,
556 .set_termios = ssu100_set_termios,
Bill Pemberton52af9542010-07-29 11:05:41 -0400557};
558
Alan Sternd8603222012-02-23 14:57:25 -0500559static struct usb_serial_driver * const serial_drivers[] = {
560 &ssu100_device, NULL
561};
562
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -0700563module_usb_serial_driver(serial_drivers, id_table);
Bill Pemberton52af9542010-07-29 11:05:41 -0400564
565MODULE_DESCRIPTION(DRIVER_DESC);
566MODULE_LICENSE("GPL");