blob: 7e8d8f32b634da76c6ab6320999c48bb3a48861c [file] [log] [blame]
Bill Pembertonf7a33e602012-05-10 15:36:02 -04001/*
2 * usb-serial driver for Quatech USB 2 devices
3 *
Bill Pembertonf88e6a32012-05-10 16:57:39 -04004 * Copyright (C) 2012 Bill Pemberton (wfp5p@virginia.edu)
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License version 2
8 * as published by the Free Software Foundation.
9 *
Bill Pembertonf7a33e602012-05-10 15:36:02 -040010 *
11 * These devices all have only 1 bulk in and 1 bulk out that is shared
12 * for all serial ports.
13 *
14 */
15
16#include <asm/unaligned.h>
17#include <linux/errno.h>
18#include <linux/init.h>
19#include <linux/slab.h>
20#include <linux/tty.h>
21#include <linux/tty_driver.h>
22#include <linux/tty_flip.h>
23#include <linux/module.h>
24#include <linux/serial.h>
25#include <linux/usb.h>
26#include <linux/usb/serial.h>
27#include <linux/serial_reg.h>
28#include <linux/uaccess.h>
29
Bill Pembertonf7a33e602012-05-10 15:36:02 -040030/* default urb timeout for usb operations */
31#define QT2_USB_TIMEOUT USB_CTRL_SET_TIMEOUT
32
33#define QT_OPEN_CLOSE_CHANNEL 0xca
34#define QT_SET_GET_DEVICE 0xc2
35#define QT_SET_GET_REGISTER 0xc0
36#define QT_GET_SET_PREBUF_TRIG_LVL 0xcc
37#define QT_SET_ATF 0xcd
38#define QT_TRANSFER_IN 0xc0
39#define QT_HW_FLOW_CONTROL_MASK 0xc5
40#define QT_SW_FLOW_CONTROL_MASK 0xc6
41#define QT2_BREAK_CONTROL 0xc8
42#define QT2_GET_SET_UART 0xc1
43#define QT2_FLUSH_DEVICE 0xc4
44#define QT2_GET_SET_QMCR 0xe1
45#define QT2_QMCR_RS232 0x40
46#define QT2_QMCR_RS422 0x10
47
48#define SERIAL_CRTSCTS ((UART_MCR_RTS << 8) | UART_MSR_CTS)
49
50#define SERIAL_EVEN_PARITY (UART_LCR_PARITY | UART_LCR_EPAR)
51
52/* status bytes for the device */
53#define QT2_CONTROL_BYTE 0x1b
54#define QT2_LINE_STATUS 0x00 /* following 1 byte is line status */
55#define QT2_MODEM_STATUS 0x01 /* following 1 byte is modem status */
56#define QT2_XMIT_HOLD 0x02 /* following 2 bytes are ?? */
57#define QT2_CHANGE_PORT 0x03 /* following 1 byte is port to change to */
58#define QT2_REC_FLUSH 0x04 /* no following info */
59#define QT2_XMIT_FLUSH 0x05 /* no following info */
60#define QT2_CONTROL_ESCAPE 0xff /* pass through previous 2 control bytes */
61
62#define MAX_BAUD_RATE 921600
63#define DEFAULT_BAUD_RATE 9600
64
65#define QT2_WRITE_BUFFER_SIZE 512 /* size of write buffer */
66#define QT2_WRITE_CONTROL_SIZE 5 /* control bytes used for a write */
67
68/* Version Information */
69#define DRIVER_VERSION "v0.1"
70#define DRIVER_DESC "Quatech 2nd gen USB to Serial Driver"
71
72#define USB_VENDOR_ID_QUATECH 0x061d
73#define QUATECH_SSU2_100 0xC120 /* RS232 single port */
74#define QUATECH_DSU2_100 0xC140 /* RS232 dual port */
75#define QUATECH_DSU2_400 0xC150 /* RS232/422/485 dual port */
76#define QUATECH_QSU2_100 0xC160 /* RS232 four port */
77#define QUATECH_QSU2_400 0xC170 /* RS232/422/485 four port */
78#define QUATECH_ESU2_100 0xC1A0 /* RS232 eight port */
79#define QUATECH_ESU2_400 0xC180 /* RS232/422/485 eight port */
80
81struct qt2_device_detail {
82 int product_id;
83 int num_ports;
84};
85
86#define QT_DETAILS(prod, ports) \
87 .product_id = (prod), \
88 .num_ports = (ports)
89
90static const struct qt2_device_detail qt2_device_details[] = {
91 {QT_DETAILS(QUATECH_SSU2_100, 1)},
92 {QT_DETAILS(QUATECH_DSU2_400, 2)},
93 {QT_DETAILS(QUATECH_DSU2_100, 2)},
94 {QT_DETAILS(QUATECH_QSU2_400, 4)},
95 {QT_DETAILS(QUATECH_QSU2_100, 4)},
96 {QT_DETAILS(QUATECH_ESU2_400, 8)},
97 {QT_DETAILS(QUATECH_ESU2_100, 8)},
98 {QT_DETAILS(0, 0)} /* Terminating entry */
99};
100
101static const struct usb_device_id id_table[] = {
102 {USB_DEVICE(USB_VENDOR_ID_QUATECH, QUATECH_SSU2_100)},
103 {USB_DEVICE(USB_VENDOR_ID_QUATECH, QUATECH_DSU2_100)},
104 {USB_DEVICE(USB_VENDOR_ID_QUATECH, QUATECH_DSU2_400)},
105 {USB_DEVICE(USB_VENDOR_ID_QUATECH, QUATECH_QSU2_100)},
106 {USB_DEVICE(USB_VENDOR_ID_QUATECH, QUATECH_QSU2_400)},
107 {USB_DEVICE(USB_VENDOR_ID_QUATECH, QUATECH_ESU2_100)},
108 {USB_DEVICE(USB_VENDOR_ID_QUATECH, QUATECH_ESU2_400)},
109 {} /* Terminating entry */
110};
111MODULE_DEVICE_TABLE(usb, id_table);
112
113struct qt2_serial_private {
114 unsigned char current_port; /* current port for incoming data */
115
116 struct urb *read_urb; /* shared among all ports */
117 char read_buffer[512];
118};
119
120struct qt2_port_private {
121 bool is_open;
122 u8 device_port;
123
124 spinlock_t urb_lock;
125 bool urb_in_use;
126 struct urb *write_urb;
127 char write_buffer[QT2_WRITE_BUFFER_SIZE];
128
129 spinlock_t lock;
130 u8 shadowLSR;
131 u8 shadowMSR;
132
133 wait_queue_head_t delta_msr_wait; /* Used for TIOCMIWAIT */
134 struct async_icount icount;
135
136 struct usb_serial_port *port;
137};
138
139static void qt2_update_lsr(struct usb_serial_port *port, unsigned char *ch);
140static void qt2_update_msr(struct usb_serial_port *port, unsigned char *ch);
141static void qt2_write_bulk_callback(struct urb *urb);
142static void qt2_read_bulk_callback(struct urb *urb);
143
144static void qt2_release(struct usb_serial *serial)
145{
Johan Hovold40d04732012-10-25 10:29:08 +0200146 struct qt2_serial_private *serial_priv;
Bill Pembertonf7a33e602012-05-10 15:36:02 -0400147
Johan Hovold40d04732012-10-25 10:29:08 +0200148 serial_priv = usb_get_serial_data(serial);
Bill Pembertonf7a33e602012-05-10 15:36:02 -0400149
Johan Hovold40d04732012-10-25 10:29:08 +0200150 usb_free_urb(serial_priv->read_urb);
151 kfree(serial_priv);
Bill Pembertonf7a33e602012-05-10 15:36:02 -0400152}
153
154static inline int calc_baud_divisor(int baudrate)
155{
156 int divisor, rem;
157
158 divisor = MAX_BAUD_RATE / baudrate;
159 rem = MAX_BAUD_RATE % baudrate;
160 /* Round to nearest divisor */
161 if (((rem * 2) >= baudrate) && (baudrate != 110))
162 divisor++;
163
164 return divisor;
165}
166
167static inline int qt2_set_port_config(struct usb_device *dev,
168 unsigned char port_number,
169 u16 baudrate, u16 lcr)
170{
171 int divisor = calc_baud_divisor(baudrate);
172 u16 index = ((u16) (lcr << 8) | (u16) (port_number));
173
174 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
175 QT2_GET_SET_UART, 0x40,
176 divisor, index, NULL, 0, QT2_USB_TIMEOUT);
177}
178
179static inline int qt2_control_msg(struct usb_device *dev,
180 u8 request, u16 data, u16 index)
181{
182 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
183 request, 0x40, data, index,
184 NULL, 0, QT2_USB_TIMEOUT);
185}
186
187static inline int qt2_setdevice(struct usb_device *dev, u8 *data)
188{
189 u16 x = ((u16) (data[1] << 8) | (u16) (data[0]));
190
191 return qt2_control_msg(dev, QT_SET_GET_DEVICE, x, 0);
192}
193
194
195static inline int qt2_getdevice(struct usb_device *dev, u8 *data)
196{
197 return usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
198 QT_SET_GET_DEVICE, 0xc0, 0, 0,
199 data, 3, QT2_USB_TIMEOUT);
200}
201
202static inline int qt2_getregister(struct usb_device *dev,
203 u8 uart,
204 u8 reg,
205 u8 *data)
206{
207 return usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
208 QT_SET_GET_REGISTER, 0xc0, reg,
209 uart, data, sizeof(*data), QT2_USB_TIMEOUT);
210
211}
212
213static inline int qt2_setregister(struct usb_device *dev,
214 u8 uart, u8 reg, u16 data)
215{
216 u16 value = (data << 8) | reg;
217
218 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
219 QT_SET_GET_REGISTER, 0x40, value, uart,
220 NULL, 0, QT2_USB_TIMEOUT);
221}
222
223static inline int update_mctrl(struct qt2_port_private *port_priv,
224 unsigned int set, unsigned int clear)
225{
226 struct usb_serial_port *port = port_priv->port;
227 struct usb_device *dev = port->serial->dev;
228 unsigned urb_value;
229 int status;
230
231 if (((set | clear) & (TIOCM_DTR | TIOCM_RTS)) == 0) {
232 dev_dbg(&port->dev,
233 "update_mctrl - DTR|RTS not being set|cleared\n");
234 return 0; /* no change */
235 }
236
237 clear &= ~set; /* 'set' takes precedence over 'clear' */
238 urb_value = 0;
239 if (set & TIOCM_DTR)
240 urb_value |= UART_MCR_DTR;
241 if (set & TIOCM_RTS)
242 urb_value |= UART_MCR_RTS;
243
244 status = qt2_setregister(dev, port_priv->device_port, UART_MCR,
245 urb_value);
246 if (status < 0)
247 dev_err(&port->dev,
248 "update_mctrl - Error from MODEM_CTRL urb: %i\n",
249 status);
250 return status;
251}
252
253static int qt2_calc_num_ports(struct usb_serial *serial)
254{
255 struct qt2_device_detail d;
256 int i;
257
258 for (i = 0; d = qt2_device_details[i], d.product_id != 0; i++) {
259 if (d.product_id == le16_to_cpu(serial->dev->descriptor.idProduct))
260 return d.num_ports;
261 }
262
263 /* we didn't recognize the device */
264 dev_err(&serial->dev->dev,
265 "don't know the number of ports, assuming 1\n");
266
267 return 1;
268}
269
270static void qt2_set_termios(struct tty_struct *tty,
271 struct usb_serial_port *port,
272 struct ktermios *old_termios)
273{
274 struct usb_device *dev = port->serial->dev;
275 struct qt2_port_private *port_priv;
Alan Coxadc8d742012-07-14 15:31:47 +0100276 struct ktermios *termios = &tty->termios;
Bill Pembertonf7a33e602012-05-10 15:36:02 -0400277 u16 baud;
278 unsigned int cflag = termios->c_cflag;
279 u16 new_lcr = 0;
280 int status;
281
282 port_priv = usb_get_serial_port_data(port);
283
284 if (cflag & PARENB) {
285 if (cflag & PARODD)
286 new_lcr |= UART_LCR_PARITY;
287 else
288 new_lcr |= SERIAL_EVEN_PARITY;
289 }
290
291 switch (cflag & CSIZE) {
292 case CS5:
293 new_lcr |= UART_LCR_WLEN5;
294 break;
295 case CS6:
296 new_lcr |= UART_LCR_WLEN6;
297 break;
298 case CS7:
299 new_lcr |= UART_LCR_WLEN7;
300 break;
301 default:
302 case CS8:
303 new_lcr |= UART_LCR_WLEN8;
304 break;
305 }
306
307 baud = tty_get_baud_rate(tty);
308 if (!baud)
309 baud = 9600;
310
311 status = qt2_set_port_config(dev, port_priv->device_port, baud,
312 new_lcr);
313 if (status < 0)
314 dev_err(&port->dev, "%s - qt2_set_port_config failed: %i\n",
315 __func__, status);
316
317 if (cflag & CRTSCTS)
318 status = qt2_control_msg(dev, QT_HW_FLOW_CONTROL_MASK,
319 SERIAL_CRTSCTS,
320 port_priv->device_port);
321 else
322 status = qt2_control_msg(dev, QT_HW_FLOW_CONTROL_MASK,
323 0, port_priv->device_port);
324 if (status < 0)
325 dev_err(&port->dev, "%s - set HW flow control failed: %i\n",
326 __func__, status);
327
328 if (I_IXOFF(tty) || I_IXON(tty)) {
329 u16 x = ((u16) (START_CHAR(tty) << 8) | (u16) (STOP_CHAR(tty)));
330
331 status = qt2_control_msg(dev, QT_SW_FLOW_CONTROL_MASK,
332 x, port_priv->device_port);
333 } else
334 status = qt2_control_msg(dev, QT_SW_FLOW_CONTROL_MASK,
335 0, port_priv->device_port);
336
337 if (status < 0)
338 dev_err(&port->dev, "%s - set SW flow control failed: %i\n",
339 __func__, status);
340
341}
342
343static int qt2_open(struct tty_struct *tty, struct usb_serial_port *port)
344{
345 struct usb_serial *serial;
Bill Pembertonf7a33e602012-05-10 15:36:02 -0400346 struct qt2_port_private *port_priv;
347 u8 *data;
348 u16 device_port;
349 int status;
350 unsigned long flags;
351
352 device_port = (u16) (port->number - port->serial->minor);
353
354 serial = port->serial;
355
356 port_priv = usb_get_serial_port_data(port);
Bill Pembertonf7a33e602012-05-10 15:36:02 -0400357
358 /* set the port to RS232 mode */
359 status = qt2_control_msg(serial->dev, QT2_GET_SET_QMCR,
360 QT2_QMCR_RS232, device_port);
361 if (status < 0) {
362 dev_err(&port->dev,
363 "%s failed to set RS232 mode for port %i error %i\n",
364 __func__, device_port, status);
365 return status;
366 }
367
368 data = kzalloc(2, GFP_KERNEL);
369 if (!data)
370 return -ENOMEM;
371
372 /* open the port */
373 status = usb_control_msg(serial->dev,
374 usb_rcvctrlpipe(serial->dev, 0),
375 QT_OPEN_CLOSE_CHANNEL,
376 0xc0, 0,
377 device_port, data, 2, QT2_USB_TIMEOUT);
378
379 if (status < 0) {
380 dev_err(&port->dev, "%s - open port failed %i", __func__,
381 status);
382 kfree(data);
383 return status;
384 }
385
386 spin_lock_irqsave(&port_priv->lock, flags);
387 port_priv->shadowLSR = data[0];
388 port_priv->shadowMSR = data[1];
389 spin_unlock_irqrestore(&port_priv->lock, flags);
390
391 kfree(data);
392
393 /* set to default speed and 8bit word size */
394 status = qt2_set_port_config(serial->dev, device_port,
395 DEFAULT_BAUD_RATE, UART_LCR_WLEN8);
396 if (status < 0) {
397 dev_err(&port->dev,
398 "%s - initial setup failed for port %i (%i)\n",
399 __func__, port->number, device_port);
400 return status;
401 }
402
403 port_priv->is_open = true;
404 port_priv->device_port = (u8) device_port;
405
406 if (tty)
Alan Coxadc8d742012-07-14 15:31:47 +0100407 qt2_set_termios(tty, port, &tty->termios);
Bill Pembertonf7a33e602012-05-10 15:36:02 -0400408
409 return 0;
410
411}
412
413static void qt2_close(struct usb_serial_port *port)
414{
415 struct usb_serial *serial;
Bill Pembertonf7a33e602012-05-10 15:36:02 -0400416 struct qt2_port_private *port_priv;
417 unsigned long flags;
418 int i;
419
420 serial = port->serial;
Bill Pembertonf7a33e602012-05-10 15:36:02 -0400421 port_priv = usb_get_serial_port_data(port);
422
423 port_priv->is_open = false;
424
425 spin_lock_irqsave(&port_priv->urb_lock, flags);
Johan Hovold8e512ab2012-10-25 10:29:09 +0200426 usb_kill_urb(port_priv->write_urb);
Bill Pembertonf7a33e602012-05-10 15:36:02 -0400427 port_priv->urb_in_use = false;
428 spin_unlock_irqrestore(&port_priv->urb_lock, flags);
429
430 /* flush the port transmit buffer */
431 i = usb_control_msg(serial->dev,
432 usb_rcvctrlpipe(serial->dev, 0),
433 QT2_FLUSH_DEVICE, 0x40, 1,
434 port_priv->device_port, NULL, 0, QT2_USB_TIMEOUT);
435
436 if (i < 0)
437 dev_err(&port->dev, "%s - transmit buffer flush failed: %i\n",
438 __func__, i);
439
440 /* flush the port receive buffer */
441 i = usb_control_msg(serial->dev,
442 usb_rcvctrlpipe(serial->dev, 0),
443 QT2_FLUSH_DEVICE, 0x40, 0,
444 port_priv->device_port, NULL, 0, QT2_USB_TIMEOUT);
445
446 if (i < 0)
447 dev_err(&port->dev, "%s - receive buffer flush failed: %i\n",
448 __func__, i);
449
450 /* close the port */
451 i = usb_control_msg(serial->dev,
452 usb_sndctrlpipe(serial->dev, 0),
453 QT_OPEN_CLOSE_CHANNEL,
454 0x40, 0,
455 port_priv->device_port, NULL, 0, QT2_USB_TIMEOUT);
456
457 if (i < 0)
458 dev_err(&port->dev, "%s - close port failed %i\n",
459 __func__, i);
460
461}
462
463static void qt2_disconnect(struct usb_serial *serial)
464{
465 struct qt2_serial_private *serial_priv = usb_get_serial_data(serial);
Bill Pembertonf7a33e602012-05-10 15:36:02 -0400466
Johan Hovold8e512ab2012-10-25 10:29:09 +0200467 usb_kill_urb(serial_priv->read_urb);
Bill Pembertonf7a33e602012-05-10 15:36:02 -0400468}
469
470static int get_serial_info(struct usb_serial_port *port,
471 struct serial_struct __user *retinfo)
472{
473 struct serial_struct tmp;
474
475 if (!retinfo)
476 return -EFAULT;
477
478 memset(&tmp, 0, sizeof(tmp));
479 tmp.line = port->serial->minor;
480 tmp.port = 0;
481 tmp.irq = 0;
482 tmp.flags = ASYNC_SKIP_TEST | ASYNC_AUTO_IRQ;
483 tmp.xmit_fifo_size = port->bulk_out_size;
484 tmp.baud_base = 9600;
485 tmp.close_delay = 5*HZ;
486 tmp.closing_wait = 30*HZ;
487
488 if (copy_to_user(retinfo, &tmp, sizeof(*retinfo)))
489 return -EFAULT;
490 return 0;
491}
492
493static int wait_modem_info(struct usb_serial_port *port, unsigned int arg)
494{
495 struct qt2_port_private *priv = usb_get_serial_port_data(port);
496 struct async_icount prev, cur;
497 unsigned long flags;
498
499 spin_lock_irqsave(&priv->lock, flags);
500 prev = priv->icount;
501 spin_unlock_irqrestore(&priv->lock, flags);
502
503 while (1) {
504 wait_event_interruptible(priv->delta_msr_wait,
505 ((priv->icount.rng != prev.rng) ||
506 (priv->icount.dsr != prev.dsr) ||
507 (priv->icount.dcd != prev.dcd) ||
508 (priv->icount.cts != prev.cts)));
509
510 if (signal_pending(current))
511 return -ERESTARTSYS;
512
513 spin_lock_irqsave(&priv->lock, flags);
514 cur = priv->icount;
515 spin_unlock_irqrestore(&priv->lock, flags);
516
517 if ((prev.rng == cur.rng) &&
518 (prev.dsr == cur.dsr) &&
519 (prev.dcd == cur.dcd) &&
520 (prev.cts == cur.cts))
521 return -EIO;
522
523 if ((arg & TIOCM_RNG && (prev.rng != cur.rng)) ||
524 (arg & TIOCM_DSR && (prev.dsr != cur.dsr)) ||
525 (arg & TIOCM_CD && (prev.dcd != cur.dcd)) ||
526 (arg & TIOCM_CTS && (prev.cts != cur.cts)))
527 return 0;
528 }
529 return 0;
530}
531
532static int qt2_get_icount(struct tty_struct *tty,
533 struct serial_icounter_struct *icount)
534{
535 struct usb_serial_port *port = tty->driver_data;
536 struct qt2_port_private *priv = usb_get_serial_port_data(port);
537 struct async_icount cnow = priv->icount;
538
539 icount->cts = cnow.cts;
540 icount->dsr = cnow.dsr;
541 icount->rng = cnow.rng;
542 icount->dcd = cnow.dcd;
543 icount->rx = cnow.rx;
544 icount->tx = cnow.tx;
545 icount->frame = cnow.frame;
546 icount->overrun = cnow.overrun;
547 icount->parity = cnow.parity;
548 icount->brk = cnow.brk;
549 icount->buf_overrun = cnow.buf_overrun;
550
551 return 0;
552}
553
554static int qt2_ioctl(struct tty_struct *tty,
555 unsigned int cmd, unsigned long arg)
556{
557 struct usb_serial_port *port = tty->driver_data;
558
559 switch (cmd) {
560 case TIOCGSERIAL:
561 return get_serial_info(port,
562 (struct serial_struct __user *)arg);
563
564 case TIOCMIWAIT:
565 return wait_modem_info(port, arg);
566
567 default:
568 break;
569 }
570
571 return -ENOIOCTLCMD;
572}
573
574static void qt2_process_status(struct usb_serial_port *port, unsigned char *ch)
575{
576 switch (*ch) {
577 case QT2_LINE_STATUS:
578 qt2_update_lsr(port, ch + 1);
579 break;
580 case QT2_MODEM_STATUS:
581 qt2_update_msr(port, ch + 1);
582 break;
583 }
584}
585
586/* not needed, kept to document functionality */
587static void qt2_process_xmit_empty(struct usb_serial_port *port,
588 unsigned char *ch)
589{
590 int bytes_written;
591
592 bytes_written = (int)(*ch) + (int)(*(ch + 1) << 4);
593}
594
595/* not needed, kept to document functionality */
596static void qt2_process_flush(struct usb_serial_port *port, unsigned char *ch)
597{
598 return;
599}
600
601void qt2_process_read_urb(struct urb *urb)
602{
603 struct usb_serial *serial;
604 struct qt2_serial_private *serial_priv;
605 struct usb_serial_port *port;
606 struct qt2_port_private *port_priv;
607 struct tty_struct *tty;
608 bool escapeflag;
609 unsigned char *ch;
610 int i;
611 unsigned char newport;
612 int len = urb->actual_length;
613
614 if (!len)
615 return;
616
617 ch = urb->transfer_buffer;
618 tty = NULL;
619 serial = urb->context;
620 serial_priv = usb_get_serial_data(serial);
621 port = serial->port[serial_priv->current_port];
622 port_priv = usb_get_serial_port_data(port);
623
624 if (port_priv->is_open)
625 tty = tty_port_tty_get(&port->port);
626
627 for (i = 0; i < urb->actual_length; i++) {
628 ch = (unsigned char *)urb->transfer_buffer + i;
629 if ((i <= (len - 3)) &&
630 (*ch == QT2_CONTROL_BYTE) &&
631 (*(ch + 1) == QT2_CONTROL_BYTE)) {
632 escapeflag = false;
633 switch (*(ch + 2)) {
634 case QT2_LINE_STATUS:
635 case QT2_MODEM_STATUS:
636 if (i > (len - 4)) {
637 dev_warn(&port->dev,
638 "%s - status message too short\n",
639 __func__);
640 break;
641 }
642 qt2_process_status(port, ch + 2);
643 i += 3;
644 escapeflag = true;
645 break;
646 case QT2_XMIT_HOLD:
647 if (i > (len - 5)) {
648 dev_warn(&port->dev,
649 "%s - xmit_empty message too short\n",
650 __func__);
651 break;
652 }
653 qt2_process_xmit_empty(port, ch + 3);
654 i += 4;
655 escapeflag = true;
656 break;
657 case QT2_CHANGE_PORT:
658 if (i > (len - 4)) {
659 dev_warn(&port->dev,
660 "%s - change_port message too short\n",
661 __func__);
662 break;
663 }
664 if (tty) {
665 tty_flip_buffer_push(tty);
666 tty_kref_put(tty);
667 }
668
669 newport = *(ch + 3);
670
671 if (newport > serial->num_ports) {
672 dev_err(&port->dev,
673 "%s - port change to invalid port: %i\n",
674 __func__, newport);
675 break;
676 }
677
678 serial_priv->current_port = newport;
679 port = serial->port[serial_priv->current_port];
680 port_priv = usb_get_serial_port_data(port);
681 if (port_priv->is_open)
682 tty = tty_port_tty_get(&port->port);
683 else
684 tty = NULL;
685 i += 3;
686 escapeflag = true;
687 break;
688 case QT2_REC_FLUSH:
689 case QT2_XMIT_FLUSH:
690 qt2_process_flush(port, ch + 2);
691 i += 2;
692 escapeflag = true;
693 break;
694 case QT2_CONTROL_ESCAPE:
695 tty_buffer_request_room(tty, 2);
696 tty_insert_flip_string(tty, ch, 2);
697 i += 2;
698 escapeflag = true;
699 break;
700 default:
701 dev_warn(&port->dev,
702 "%s - unsupported command %i\n",
703 __func__, *(ch + 2));
704 break;
705 }
706 if (escapeflag)
707 continue;
708 }
709
710 if (tty) {
711 tty_buffer_request_room(tty, 1);
712 tty_insert_flip_string(tty, ch, 1);
713 }
714 }
715
716 if (tty) {
717 tty_flip_buffer_push(tty);
718 tty_kref_put(tty);
719 }
720}
721
722static void qt2_write_bulk_callback(struct urb *urb)
723{
724 struct usb_serial_port *port;
725 struct qt2_port_private *port_priv;
726
727 port = urb->context;
728 port_priv = usb_get_serial_port_data(port);
729
730 spin_lock(&port_priv->urb_lock);
731
732 port_priv->urb_in_use = false;
733 usb_serial_port_softint(port);
734
735 spin_unlock(&port_priv->urb_lock);
736
737}
738
739static void qt2_read_bulk_callback(struct urb *urb)
740{
741 struct usb_serial *serial = urb->context;
742 int status;
743
744 if (urb->status) {
745 dev_warn(&serial->dev->dev,
746 "%s - non-zero urb status: %i\n", __func__,
747 urb->status);
748 return;
749 }
750
751 qt2_process_read_urb(urb);
752
753 status = usb_submit_urb(urb, GFP_ATOMIC);
754 if (status != 0)
755 dev_err(&serial->dev->dev,
756 "%s - resubmit read urb failed: %i\n",
757 __func__, status);
758}
759
760static int qt2_setup_urbs(struct usb_serial *serial)
761{
Bill Pembertonf7a33e602012-05-10 15:36:02 -0400762 struct usb_serial_port *port0;
763 struct qt2_serial_private *serial_priv;
Johan Hovold40d04732012-10-25 10:29:08 +0200764 int status;
Bill Pembertonf7a33e602012-05-10 15:36:02 -0400765
766 port0 = serial->port[0];
767
768 serial_priv = usb_get_serial_data(serial);
769 serial_priv->read_urb = usb_alloc_urb(0, GFP_KERNEL);
770 if (!serial_priv->read_urb) {
771 dev_err(&serial->dev->dev, "No free urbs available\n");
772 return -ENOMEM;
773 }
774
775 usb_fill_bulk_urb(serial_priv->read_urb, serial->dev,
776 usb_rcvbulkpipe(serial->dev,
777 port0->bulk_in_endpointAddress),
778 serial_priv->read_buffer,
779 sizeof(serial_priv->read_buffer),
780 qt2_read_bulk_callback, serial);
781
Bill Pembertonf7a33e602012-05-10 15:36:02 -0400782 status = usb_submit_urb(serial_priv->read_urb, GFP_KERNEL);
783 if (status != 0) {
784 dev_err(&serial->dev->dev,
785 "%s - submit read urb failed %i\n", __func__, status);
Johan Hovoldb8a00552012-10-25 10:29:07 +0200786 usb_free_urb(serial_priv->read_urb);
Bill Pembertonf7a33e602012-05-10 15:36:02 -0400787 return status;
788 }
789
790 return 0;
Bill Pembertonf7a33e602012-05-10 15:36:02 -0400791}
792
793static int qt2_attach(struct usb_serial *serial)
794{
795 struct qt2_serial_private *serial_priv;
Johan Hovold40d04732012-10-25 10:29:08 +0200796 int status;
Bill Pembertonf7a33e602012-05-10 15:36:02 -0400797
798 /* power on unit */
799 status = usb_control_msg(serial->dev, usb_rcvctrlpipe(serial->dev, 0),
800 0xc2, 0x40, 0x8000, 0, NULL, 0,
801 QT2_USB_TIMEOUT);
802 if (status < 0) {
803 dev_err(&serial->dev->dev,
804 "%s - failed to power on unit: %i\n", __func__, status);
805 return status;
806 }
807
808 serial_priv = kzalloc(sizeof(*serial_priv), GFP_KERNEL);
809 if (!serial_priv) {
810 dev_err(&serial->dev->dev, "%s - Out of memory\n", __func__);
811 return -ENOMEM;
812 }
813
814 usb_set_serial_data(serial, serial_priv);
815
Bill Pembertonf7a33e602012-05-10 15:36:02 -0400816 status = qt2_setup_urbs(serial);
817 if (status != 0)
818 goto attach_failed;
819
820 return 0;
821
822attach_failed:
Bill Pembertonf7a33e602012-05-10 15:36:02 -0400823 kfree(serial_priv);
824 return status;
825}
826
Johan Hovold40d04732012-10-25 10:29:08 +0200827static int qt2_port_probe(struct usb_serial_port *port)
828{
829 struct usb_serial *serial = port->serial;
830 struct qt2_port_private *port_priv;
831 u8 bEndpointAddress;
832
833 port_priv = kzalloc(sizeof(*port_priv), GFP_KERNEL);
834 if (!port_priv)
835 return -ENOMEM;
836
837 spin_lock_init(&port_priv->lock);
838 spin_lock_init(&port_priv->urb_lock);
839 init_waitqueue_head(&port_priv->delta_msr_wait);
840 port_priv->port = port;
841
842 port_priv->write_urb = usb_alloc_urb(0, GFP_KERNEL);
843 if (!port_priv->write_urb) {
844 kfree(port_priv);
845 return -ENOMEM;
846 }
847 bEndpointAddress = serial->port[0]->bulk_out_endpointAddress;
848 usb_fill_bulk_urb(port_priv->write_urb, serial->dev,
849 usb_sndbulkpipe(serial->dev, bEndpointAddress),
850 port_priv->write_buffer,
851 sizeof(port_priv->write_buffer),
852 qt2_write_bulk_callback, port);
853
854 usb_set_serial_port_data(port, port_priv);
855
856 return 0;
857}
858
859static int qt2_port_remove(struct usb_serial_port *port)
860{
861 struct qt2_port_private *port_priv;
862
863 port_priv = usb_get_serial_port_data(port);
864 usb_free_urb(port_priv->write_urb);
865 kfree(port_priv);
866
867 return 0;
868}
869
Bill Pembertonf7a33e602012-05-10 15:36:02 -0400870static int qt2_tiocmget(struct tty_struct *tty)
871{
872 struct usb_serial_port *port = tty->driver_data;
873 struct usb_device *dev = port->serial->dev;
874 struct qt2_port_private *port_priv = usb_get_serial_port_data(port);
875 u8 *d;
876 int r;
877
878 d = kzalloc(2, GFP_KERNEL);
879 if (!d)
880 return -ENOMEM;
881
882 r = qt2_getregister(dev, port_priv->device_port, UART_MCR, d);
883 if (r < 0)
884 goto mget_out;
885
886 r = qt2_getregister(dev, port_priv->device_port, UART_MSR, d + 1);
887 if (r < 0)
888 goto mget_out;
889
890 r = (d[0] & UART_MCR_DTR ? TIOCM_DTR : 0) |
891 (d[0] & UART_MCR_RTS ? TIOCM_RTS : 0) |
892 (d[1] & UART_MSR_CTS ? TIOCM_CTS : 0) |
893 (d[1] & UART_MSR_DCD ? TIOCM_CAR : 0) |
894 (d[1] & UART_MSR_RI ? TIOCM_RI : 0) |
895 (d[1] & UART_MSR_DSR ? TIOCM_DSR : 0);
896
897mget_out:
898 kfree(d);
899 return r;
900}
901
902static int qt2_tiocmset(struct tty_struct *tty,
903 unsigned int set, unsigned int clear)
904{
905 struct qt2_port_private *port_priv;
906
907 port_priv = usb_get_serial_port_data(tty->driver_data);
908 return update_mctrl(port_priv, set, clear);
909}
910
911static void qt2_break_ctl(struct tty_struct *tty, int break_state)
912{
913 struct usb_serial_port *port = tty->driver_data;
914 struct qt2_port_private *port_priv;
915 int status;
916 u16 val;
917
918 port_priv = usb_get_serial_port_data(port);
919
920 if (!port_priv->is_open) {
921 dev_err(&port->dev,
922 "%s - port is not open\n", __func__);
923 return;
924 }
925
926 val = (break_state == -1) ? 1 : 0;
927
928 status = qt2_control_msg(port->serial->dev, QT2_BREAK_CONTROL,
929 val, port_priv->device_port);
930 if (status < 0)
931 dev_warn(&port->dev,
932 "%s - failed to send control message: %i\n", __func__,
933 status);
934}
935
936
937
938static void qt2_dtr_rts(struct usb_serial_port *port, int on)
939{
940 struct usb_device *dev = port->serial->dev;
941 struct qt2_port_private *port_priv = usb_get_serial_port_data(port);
942
943 mutex_lock(&port->serial->disc_mutex);
944 if (!port->serial->disconnected) {
945 /* Disable flow control */
946 if (!on && qt2_setregister(dev, port_priv->device_port,
947 UART_MCR, 0) < 0)
948 dev_warn(&port->dev, "error from flowcontrol urb\n");
949 /* drop RTS and DTR */
950 if (on)
951 update_mctrl(port_priv, TIOCM_DTR | TIOCM_RTS, 0);
952 else
953 update_mctrl(port_priv, 0, TIOCM_DTR | TIOCM_RTS);
954 }
955 mutex_unlock(&port->serial->disc_mutex);
956}
957
958static void qt2_update_msr(struct usb_serial_port *port, unsigned char *ch)
959{
960 struct qt2_port_private *port_priv;
961 u8 newMSR = (u8) *ch;
962 unsigned long flags;
963
964 port_priv = usb_get_serial_port_data(port);
965
966 spin_lock_irqsave(&port_priv->lock, flags);
967 port_priv->shadowMSR = newMSR;
968 spin_unlock_irqrestore(&port_priv->lock, flags);
969
970 if (newMSR & UART_MSR_ANY_DELTA) {
971 /* update input line counters */
972 if (newMSR & UART_MSR_DCTS)
973 port_priv->icount.cts++;
974
975 if (newMSR & UART_MSR_DDSR)
976 port_priv->icount.dsr++;
977
978 if (newMSR & UART_MSR_DDCD)
979 port_priv->icount.dcd++;
980
981 if (newMSR & UART_MSR_TERI)
982 port_priv->icount.rng++;
983
984 wake_up_interruptible(&port_priv->delta_msr_wait);
985 }
986}
987
988static void qt2_update_lsr(struct usb_serial_port *port, unsigned char *ch)
989{
990 struct qt2_port_private *port_priv;
991 struct async_icount *icount;
992 unsigned long flags;
993 u8 newLSR = (u8) *ch;
994
995 port_priv = usb_get_serial_port_data(port);
996
997 if (newLSR & UART_LSR_BI)
998 newLSR &= (u8) (UART_LSR_OE | UART_LSR_BI);
999
1000 spin_lock_irqsave(&port_priv->lock, flags);
1001 port_priv->shadowLSR = newLSR;
1002 spin_unlock_irqrestore(&port_priv->lock, flags);
1003
1004 icount = &port_priv->icount;
1005
1006 if (newLSR & UART_LSR_BRK_ERROR_BITS) {
1007
1008 if (newLSR & UART_LSR_BI)
1009 icount->brk++;
1010
1011 if (newLSR & UART_LSR_OE)
1012 icount->overrun++;
1013
1014 if (newLSR & UART_LSR_PE)
1015 icount->parity++;
1016
1017 if (newLSR & UART_LSR_FE)
1018 icount->frame++;
1019 }
1020
1021}
1022
1023static int qt2_write_room(struct tty_struct *tty)
1024{
1025 struct usb_serial_port *port = tty->driver_data;
1026 struct qt2_port_private *port_priv;
1027 unsigned long flags = 0;
1028 int r;
1029
1030 port_priv = usb_get_serial_port_data(port);
1031
1032 spin_lock_irqsave(&port_priv->urb_lock, flags);
1033
1034 if (port_priv->urb_in_use)
1035 r = 0;
1036 else
1037 r = QT2_WRITE_BUFFER_SIZE - QT2_WRITE_CONTROL_SIZE;
1038
1039 spin_unlock_irqrestore(&port_priv->urb_lock, flags);
1040
1041 return r;
1042}
1043
1044static int qt2_write(struct tty_struct *tty,
1045 struct usb_serial_port *port,
1046 const unsigned char *buf, int count)
1047{
1048 struct qt2_port_private *port_priv;
1049 struct urb *write_urb;
1050 unsigned char *data;
1051 unsigned long flags;
1052 int status;
1053 int bytes_out = 0;
1054
1055 port_priv = usb_get_serial_port_data(port);
1056
1057 if (port_priv->write_urb == NULL) {
1058 dev_err(&port->dev, "%s - no output urb\n", __func__);
1059 return 0;
1060 }
1061 write_urb = port_priv->write_urb;
1062
1063 count = min(count, QT2_WRITE_BUFFER_SIZE - QT2_WRITE_CONTROL_SIZE);
1064
1065 data = write_urb->transfer_buffer;
1066 spin_lock_irqsave(&port_priv->urb_lock, flags);
1067 if (port_priv->urb_in_use == true) {
Greg Kroah-Hartman788a6612012-09-18 17:05:37 +01001068 dev_err(&port->dev, "qt2_write - urb is in use\n");
Bill Pembertonf7a33e602012-05-10 15:36:02 -04001069 goto write_out;
1070 }
1071
1072 *data++ = QT2_CONTROL_BYTE;
1073 *data++ = QT2_CONTROL_BYTE;
1074 *data++ = port_priv->device_port;
1075 put_unaligned_le16(count, data);
1076 data += 2;
1077 memcpy(data, buf, count);
1078
1079 write_urb->transfer_buffer_length = count + QT2_WRITE_CONTROL_SIZE;
1080
1081 status = usb_submit_urb(write_urb, GFP_ATOMIC);
1082 if (status == 0) {
1083 port_priv->urb_in_use = true;
1084 bytes_out += count;
1085 }
1086
1087write_out:
1088 spin_unlock_irqrestore(&port_priv->urb_lock, flags);
1089 return bytes_out;
1090}
1091
1092
1093static struct usb_serial_driver qt2_device = {
1094 .driver = {
1095 .owner = THIS_MODULE,
1096 .name = "quatech-serial",
1097 },
1098 .description = DRIVER_DESC,
1099 .id_table = id_table,
1100 .open = qt2_open,
1101 .close = qt2_close,
1102 .write = qt2_write,
1103 .write_room = qt2_write_room,
1104 .calc_num_ports = qt2_calc_num_ports,
1105 .attach = qt2_attach,
1106 .release = qt2_release,
1107 .disconnect = qt2_disconnect,
Johan Hovold40d04732012-10-25 10:29:08 +02001108 .port_probe = qt2_port_probe,
1109 .port_remove = qt2_port_remove,
Bill Pembertonf7a33e602012-05-10 15:36:02 -04001110 .dtr_rts = qt2_dtr_rts,
1111 .break_ctl = qt2_break_ctl,
1112 .tiocmget = qt2_tiocmget,
1113 .tiocmset = qt2_tiocmset,
1114 .get_icount = qt2_get_icount,
1115 .ioctl = qt2_ioctl,
1116 .set_termios = qt2_set_termios,
1117};
1118
1119static struct usb_serial_driver *const serial_drivers[] = {
1120 &qt2_device, NULL
1121};
1122
1123module_usb_serial_driver(serial_drivers, id_table);
1124
1125MODULE_DESCRIPTION(DRIVER_DESC);
1126MODULE_LICENSE("GPL");