blob: 8d0c4a0b6a7b6fec8a9cbe30c358fee065bf171c [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);
426 if (port_priv->write_urb->status == -EINPROGRESS)
427 usb_kill_urb(port_priv->write_urb);
428 port_priv->urb_in_use = false;
429 spin_unlock_irqrestore(&port_priv->urb_lock, flags);
430
431 /* flush the port transmit buffer */
432 i = usb_control_msg(serial->dev,
433 usb_rcvctrlpipe(serial->dev, 0),
434 QT2_FLUSH_DEVICE, 0x40, 1,
435 port_priv->device_port, NULL, 0, QT2_USB_TIMEOUT);
436
437 if (i < 0)
438 dev_err(&port->dev, "%s - transmit buffer flush failed: %i\n",
439 __func__, i);
440
441 /* flush the port receive buffer */
442 i = usb_control_msg(serial->dev,
443 usb_rcvctrlpipe(serial->dev, 0),
444 QT2_FLUSH_DEVICE, 0x40, 0,
445 port_priv->device_port, NULL, 0, QT2_USB_TIMEOUT);
446
447 if (i < 0)
448 dev_err(&port->dev, "%s - receive buffer flush failed: %i\n",
449 __func__, i);
450
451 /* close the port */
452 i = usb_control_msg(serial->dev,
453 usb_sndctrlpipe(serial->dev, 0),
454 QT_OPEN_CLOSE_CHANNEL,
455 0x40, 0,
456 port_priv->device_port, NULL, 0, QT2_USB_TIMEOUT);
457
458 if (i < 0)
459 dev_err(&port->dev, "%s - close port failed %i\n",
460 __func__, i);
461
462}
463
464static void qt2_disconnect(struct usb_serial *serial)
465{
466 struct qt2_serial_private *serial_priv = usb_get_serial_data(serial);
Bill Pembertonf7a33e602012-05-10 15:36:02 -0400467
468 if (serial_priv->read_urb->status == -EINPROGRESS)
469 usb_kill_urb(serial_priv->read_urb);
Bill Pembertonf7a33e602012-05-10 15:36:02 -0400470}
471
472static int get_serial_info(struct usb_serial_port *port,
473 struct serial_struct __user *retinfo)
474{
475 struct serial_struct tmp;
476
477 if (!retinfo)
478 return -EFAULT;
479
480 memset(&tmp, 0, sizeof(tmp));
481 tmp.line = port->serial->minor;
482 tmp.port = 0;
483 tmp.irq = 0;
484 tmp.flags = ASYNC_SKIP_TEST | ASYNC_AUTO_IRQ;
485 tmp.xmit_fifo_size = port->bulk_out_size;
486 tmp.baud_base = 9600;
487 tmp.close_delay = 5*HZ;
488 tmp.closing_wait = 30*HZ;
489
490 if (copy_to_user(retinfo, &tmp, sizeof(*retinfo)))
491 return -EFAULT;
492 return 0;
493}
494
495static int wait_modem_info(struct usb_serial_port *port, unsigned int arg)
496{
497 struct qt2_port_private *priv = usb_get_serial_port_data(port);
498 struct async_icount prev, cur;
499 unsigned long flags;
500
501 spin_lock_irqsave(&priv->lock, flags);
502 prev = priv->icount;
503 spin_unlock_irqrestore(&priv->lock, flags);
504
505 while (1) {
506 wait_event_interruptible(priv->delta_msr_wait,
507 ((priv->icount.rng != prev.rng) ||
508 (priv->icount.dsr != prev.dsr) ||
509 (priv->icount.dcd != prev.dcd) ||
510 (priv->icount.cts != prev.cts)));
511
512 if (signal_pending(current))
513 return -ERESTARTSYS;
514
515 spin_lock_irqsave(&priv->lock, flags);
516 cur = priv->icount;
517 spin_unlock_irqrestore(&priv->lock, flags);
518
519 if ((prev.rng == cur.rng) &&
520 (prev.dsr == cur.dsr) &&
521 (prev.dcd == cur.dcd) &&
522 (prev.cts == cur.cts))
523 return -EIO;
524
525 if ((arg & TIOCM_RNG && (prev.rng != cur.rng)) ||
526 (arg & TIOCM_DSR && (prev.dsr != cur.dsr)) ||
527 (arg & TIOCM_CD && (prev.dcd != cur.dcd)) ||
528 (arg & TIOCM_CTS && (prev.cts != cur.cts)))
529 return 0;
530 }
531 return 0;
532}
533
534static int qt2_get_icount(struct tty_struct *tty,
535 struct serial_icounter_struct *icount)
536{
537 struct usb_serial_port *port = tty->driver_data;
538 struct qt2_port_private *priv = usb_get_serial_port_data(port);
539 struct async_icount cnow = priv->icount;
540
541 icount->cts = cnow.cts;
542 icount->dsr = cnow.dsr;
543 icount->rng = cnow.rng;
544 icount->dcd = cnow.dcd;
545 icount->rx = cnow.rx;
546 icount->tx = cnow.tx;
547 icount->frame = cnow.frame;
548 icount->overrun = cnow.overrun;
549 icount->parity = cnow.parity;
550 icount->brk = cnow.brk;
551 icount->buf_overrun = cnow.buf_overrun;
552
553 return 0;
554}
555
556static int qt2_ioctl(struct tty_struct *tty,
557 unsigned int cmd, unsigned long arg)
558{
559 struct usb_serial_port *port = tty->driver_data;
560
561 switch (cmd) {
562 case TIOCGSERIAL:
563 return get_serial_info(port,
564 (struct serial_struct __user *)arg);
565
566 case TIOCMIWAIT:
567 return wait_modem_info(port, arg);
568
569 default:
570 break;
571 }
572
573 return -ENOIOCTLCMD;
574}
575
576static void qt2_process_status(struct usb_serial_port *port, unsigned char *ch)
577{
578 switch (*ch) {
579 case QT2_LINE_STATUS:
580 qt2_update_lsr(port, ch + 1);
581 break;
582 case QT2_MODEM_STATUS:
583 qt2_update_msr(port, ch + 1);
584 break;
585 }
586}
587
588/* not needed, kept to document functionality */
589static void qt2_process_xmit_empty(struct usb_serial_port *port,
590 unsigned char *ch)
591{
592 int bytes_written;
593
594 bytes_written = (int)(*ch) + (int)(*(ch + 1) << 4);
595}
596
597/* not needed, kept to document functionality */
598static void qt2_process_flush(struct usb_serial_port *port, unsigned char *ch)
599{
600 return;
601}
602
603void qt2_process_read_urb(struct urb *urb)
604{
605 struct usb_serial *serial;
606 struct qt2_serial_private *serial_priv;
607 struct usb_serial_port *port;
608 struct qt2_port_private *port_priv;
609 struct tty_struct *tty;
610 bool escapeflag;
611 unsigned char *ch;
612 int i;
613 unsigned char newport;
614 int len = urb->actual_length;
615
616 if (!len)
617 return;
618
619 ch = urb->transfer_buffer;
620 tty = NULL;
621 serial = urb->context;
622 serial_priv = usb_get_serial_data(serial);
623 port = serial->port[serial_priv->current_port];
624 port_priv = usb_get_serial_port_data(port);
625
626 if (port_priv->is_open)
627 tty = tty_port_tty_get(&port->port);
628
629 for (i = 0; i < urb->actual_length; i++) {
630 ch = (unsigned char *)urb->transfer_buffer + i;
631 if ((i <= (len - 3)) &&
632 (*ch == QT2_CONTROL_BYTE) &&
633 (*(ch + 1) == QT2_CONTROL_BYTE)) {
634 escapeflag = false;
635 switch (*(ch + 2)) {
636 case QT2_LINE_STATUS:
637 case QT2_MODEM_STATUS:
638 if (i > (len - 4)) {
639 dev_warn(&port->dev,
640 "%s - status message too short\n",
641 __func__);
642 break;
643 }
644 qt2_process_status(port, ch + 2);
645 i += 3;
646 escapeflag = true;
647 break;
648 case QT2_XMIT_HOLD:
649 if (i > (len - 5)) {
650 dev_warn(&port->dev,
651 "%s - xmit_empty message too short\n",
652 __func__);
653 break;
654 }
655 qt2_process_xmit_empty(port, ch + 3);
656 i += 4;
657 escapeflag = true;
658 break;
659 case QT2_CHANGE_PORT:
660 if (i > (len - 4)) {
661 dev_warn(&port->dev,
662 "%s - change_port message too short\n",
663 __func__);
664 break;
665 }
666 if (tty) {
667 tty_flip_buffer_push(tty);
668 tty_kref_put(tty);
669 }
670
671 newport = *(ch + 3);
672
673 if (newport > serial->num_ports) {
674 dev_err(&port->dev,
675 "%s - port change to invalid port: %i\n",
676 __func__, newport);
677 break;
678 }
679
680 serial_priv->current_port = newport;
681 port = serial->port[serial_priv->current_port];
682 port_priv = usb_get_serial_port_data(port);
683 if (port_priv->is_open)
684 tty = tty_port_tty_get(&port->port);
685 else
686 tty = NULL;
687 i += 3;
688 escapeflag = true;
689 break;
690 case QT2_REC_FLUSH:
691 case QT2_XMIT_FLUSH:
692 qt2_process_flush(port, ch + 2);
693 i += 2;
694 escapeflag = true;
695 break;
696 case QT2_CONTROL_ESCAPE:
697 tty_buffer_request_room(tty, 2);
698 tty_insert_flip_string(tty, ch, 2);
699 i += 2;
700 escapeflag = true;
701 break;
702 default:
703 dev_warn(&port->dev,
704 "%s - unsupported command %i\n",
705 __func__, *(ch + 2));
706 break;
707 }
708 if (escapeflag)
709 continue;
710 }
711
712 if (tty) {
713 tty_buffer_request_room(tty, 1);
714 tty_insert_flip_string(tty, ch, 1);
715 }
716 }
717
718 if (tty) {
719 tty_flip_buffer_push(tty);
720 tty_kref_put(tty);
721 }
722}
723
724static void qt2_write_bulk_callback(struct urb *urb)
725{
726 struct usb_serial_port *port;
727 struct qt2_port_private *port_priv;
728
729 port = urb->context;
730 port_priv = usb_get_serial_port_data(port);
731
732 spin_lock(&port_priv->urb_lock);
733
734 port_priv->urb_in_use = false;
735 usb_serial_port_softint(port);
736
737 spin_unlock(&port_priv->urb_lock);
738
739}
740
741static void qt2_read_bulk_callback(struct urb *urb)
742{
743 struct usb_serial *serial = urb->context;
744 int status;
745
746 if (urb->status) {
747 dev_warn(&serial->dev->dev,
748 "%s - non-zero urb status: %i\n", __func__,
749 urb->status);
750 return;
751 }
752
753 qt2_process_read_urb(urb);
754
755 status = usb_submit_urb(urb, GFP_ATOMIC);
756 if (status != 0)
757 dev_err(&serial->dev->dev,
758 "%s - resubmit read urb failed: %i\n",
759 __func__, status);
760}
761
762static int qt2_setup_urbs(struct usb_serial *serial)
763{
Bill Pembertonf7a33e602012-05-10 15:36:02 -0400764 struct usb_serial_port *port0;
765 struct qt2_serial_private *serial_priv;
Johan Hovold40d04732012-10-25 10:29:08 +0200766 int status;
Bill Pembertonf7a33e602012-05-10 15:36:02 -0400767
768 port0 = serial->port[0];
769
770 serial_priv = usb_get_serial_data(serial);
771 serial_priv->read_urb = usb_alloc_urb(0, GFP_KERNEL);
772 if (!serial_priv->read_urb) {
773 dev_err(&serial->dev->dev, "No free urbs available\n");
774 return -ENOMEM;
775 }
776
777 usb_fill_bulk_urb(serial_priv->read_urb, serial->dev,
778 usb_rcvbulkpipe(serial->dev,
779 port0->bulk_in_endpointAddress),
780 serial_priv->read_buffer,
781 sizeof(serial_priv->read_buffer),
782 qt2_read_bulk_callback, serial);
783
Bill Pembertonf7a33e602012-05-10 15:36:02 -0400784 status = usb_submit_urb(serial_priv->read_urb, GFP_KERNEL);
785 if (status != 0) {
786 dev_err(&serial->dev->dev,
787 "%s - submit read urb failed %i\n", __func__, status);
Johan Hovoldb8a00552012-10-25 10:29:07 +0200788 usb_free_urb(serial_priv->read_urb);
Bill Pembertonf7a33e602012-05-10 15:36:02 -0400789 return status;
790 }
791
792 return 0;
Bill Pembertonf7a33e602012-05-10 15:36:02 -0400793}
794
795static int qt2_attach(struct usb_serial *serial)
796{
797 struct qt2_serial_private *serial_priv;
Johan Hovold40d04732012-10-25 10:29:08 +0200798 int status;
Bill Pembertonf7a33e602012-05-10 15:36:02 -0400799
800 /* power on unit */
801 status = usb_control_msg(serial->dev, usb_rcvctrlpipe(serial->dev, 0),
802 0xc2, 0x40, 0x8000, 0, NULL, 0,
803 QT2_USB_TIMEOUT);
804 if (status < 0) {
805 dev_err(&serial->dev->dev,
806 "%s - failed to power on unit: %i\n", __func__, status);
807 return status;
808 }
809
810 serial_priv = kzalloc(sizeof(*serial_priv), GFP_KERNEL);
811 if (!serial_priv) {
812 dev_err(&serial->dev->dev, "%s - Out of memory\n", __func__);
813 return -ENOMEM;
814 }
815
816 usb_set_serial_data(serial, serial_priv);
817
Bill Pembertonf7a33e602012-05-10 15:36:02 -0400818 status = qt2_setup_urbs(serial);
819 if (status != 0)
820 goto attach_failed;
821
822 return 0;
823
824attach_failed:
Bill Pembertonf7a33e602012-05-10 15:36:02 -0400825 kfree(serial_priv);
826 return status;
827}
828
Johan Hovold40d04732012-10-25 10:29:08 +0200829static int qt2_port_probe(struct usb_serial_port *port)
830{
831 struct usb_serial *serial = port->serial;
832 struct qt2_port_private *port_priv;
833 u8 bEndpointAddress;
834
835 port_priv = kzalloc(sizeof(*port_priv), GFP_KERNEL);
836 if (!port_priv)
837 return -ENOMEM;
838
839 spin_lock_init(&port_priv->lock);
840 spin_lock_init(&port_priv->urb_lock);
841 init_waitqueue_head(&port_priv->delta_msr_wait);
842 port_priv->port = port;
843
844 port_priv->write_urb = usb_alloc_urb(0, GFP_KERNEL);
845 if (!port_priv->write_urb) {
846 kfree(port_priv);
847 return -ENOMEM;
848 }
849 bEndpointAddress = serial->port[0]->bulk_out_endpointAddress;
850 usb_fill_bulk_urb(port_priv->write_urb, serial->dev,
851 usb_sndbulkpipe(serial->dev, bEndpointAddress),
852 port_priv->write_buffer,
853 sizeof(port_priv->write_buffer),
854 qt2_write_bulk_callback, port);
855
856 usb_set_serial_port_data(port, port_priv);
857
858 return 0;
859}
860
861static int qt2_port_remove(struct usb_serial_port *port)
862{
863 struct qt2_port_private *port_priv;
864
865 port_priv = usb_get_serial_port_data(port);
866 usb_free_urb(port_priv->write_urb);
867 kfree(port_priv);
868
869 return 0;
870}
871
Bill Pembertonf7a33e602012-05-10 15:36:02 -0400872static int qt2_tiocmget(struct tty_struct *tty)
873{
874 struct usb_serial_port *port = tty->driver_data;
875 struct usb_device *dev = port->serial->dev;
876 struct qt2_port_private *port_priv = usb_get_serial_port_data(port);
877 u8 *d;
878 int r;
879
880 d = kzalloc(2, GFP_KERNEL);
881 if (!d)
882 return -ENOMEM;
883
884 r = qt2_getregister(dev, port_priv->device_port, UART_MCR, d);
885 if (r < 0)
886 goto mget_out;
887
888 r = qt2_getregister(dev, port_priv->device_port, UART_MSR, d + 1);
889 if (r < 0)
890 goto mget_out;
891
892 r = (d[0] & UART_MCR_DTR ? TIOCM_DTR : 0) |
893 (d[0] & UART_MCR_RTS ? TIOCM_RTS : 0) |
894 (d[1] & UART_MSR_CTS ? TIOCM_CTS : 0) |
895 (d[1] & UART_MSR_DCD ? TIOCM_CAR : 0) |
896 (d[1] & UART_MSR_RI ? TIOCM_RI : 0) |
897 (d[1] & UART_MSR_DSR ? TIOCM_DSR : 0);
898
899mget_out:
900 kfree(d);
901 return r;
902}
903
904static int qt2_tiocmset(struct tty_struct *tty,
905 unsigned int set, unsigned int clear)
906{
907 struct qt2_port_private *port_priv;
908
909 port_priv = usb_get_serial_port_data(tty->driver_data);
910 return update_mctrl(port_priv, set, clear);
911}
912
913static void qt2_break_ctl(struct tty_struct *tty, int break_state)
914{
915 struct usb_serial_port *port = tty->driver_data;
916 struct qt2_port_private *port_priv;
917 int status;
918 u16 val;
919
920 port_priv = usb_get_serial_port_data(port);
921
922 if (!port_priv->is_open) {
923 dev_err(&port->dev,
924 "%s - port is not open\n", __func__);
925 return;
926 }
927
928 val = (break_state == -1) ? 1 : 0;
929
930 status = qt2_control_msg(port->serial->dev, QT2_BREAK_CONTROL,
931 val, port_priv->device_port);
932 if (status < 0)
933 dev_warn(&port->dev,
934 "%s - failed to send control message: %i\n", __func__,
935 status);
936}
937
938
939
940static void qt2_dtr_rts(struct usb_serial_port *port, int on)
941{
942 struct usb_device *dev = port->serial->dev;
943 struct qt2_port_private *port_priv = usb_get_serial_port_data(port);
944
945 mutex_lock(&port->serial->disc_mutex);
946 if (!port->serial->disconnected) {
947 /* Disable flow control */
948 if (!on && qt2_setregister(dev, port_priv->device_port,
949 UART_MCR, 0) < 0)
950 dev_warn(&port->dev, "error from flowcontrol urb\n");
951 /* drop RTS and DTR */
952 if (on)
953 update_mctrl(port_priv, TIOCM_DTR | TIOCM_RTS, 0);
954 else
955 update_mctrl(port_priv, 0, TIOCM_DTR | TIOCM_RTS);
956 }
957 mutex_unlock(&port->serial->disc_mutex);
958}
959
960static void qt2_update_msr(struct usb_serial_port *port, unsigned char *ch)
961{
962 struct qt2_port_private *port_priv;
963 u8 newMSR = (u8) *ch;
964 unsigned long flags;
965
966 port_priv = usb_get_serial_port_data(port);
967
968 spin_lock_irqsave(&port_priv->lock, flags);
969 port_priv->shadowMSR = newMSR;
970 spin_unlock_irqrestore(&port_priv->lock, flags);
971
972 if (newMSR & UART_MSR_ANY_DELTA) {
973 /* update input line counters */
974 if (newMSR & UART_MSR_DCTS)
975 port_priv->icount.cts++;
976
977 if (newMSR & UART_MSR_DDSR)
978 port_priv->icount.dsr++;
979
980 if (newMSR & UART_MSR_DDCD)
981 port_priv->icount.dcd++;
982
983 if (newMSR & UART_MSR_TERI)
984 port_priv->icount.rng++;
985
986 wake_up_interruptible(&port_priv->delta_msr_wait);
987 }
988}
989
990static void qt2_update_lsr(struct usb_serial_port *port, unsigned char *ch)
991{
992 struct qt2_port_private *port_priv;
993 struct async_icount *icount;
994 unsigned long flags;
995 u8 newLSR = (u8) *ch;
996
997 port_priv = usb_get_serial_port_data(port);
998
999 if (newLSR & UART_LSR_BI)
1000 newLSR &= (u8) (UART_LSR_OE | UART_LSR_BI);
1001
1002 spin_lock_irqsave(&port_priv->lock, flags);
1003 port_priv->shadowLSR = newLSR;
1004 spin_unlock_irqrestore(&port_priv->lock, flags);
1005
1006 icount = &port_priv->icount;
1007
1008 if (newLSR & UART_LSR_BRK_ERROR_BITS) {
1009
1010 if (newLSR & UART_LSR_BI)
1011 icount->brk++;
1012
1013 if (newLSR & UART_LSR_OE)
1014 icount->overrun++;
1015
1016 if (newLSR & UART_LSR_PE)
1017 icount->parity++;
1018
1019 if (newLSR & UART_LSR_FE)
1020 icount->frame++;
1021 }
1022
1023}
1024
1025static int qt2_write_room(struct tty_struct *tty)
1026{
1027 struct usb_serial_port *port = tty->driver_data;
1028 struct qt2_port_private *port_priv;
1029 unsigned long flags = 0;
1030 int r;
1031
1032 port_priv = usb_get_serial_port_data(port);
1033
1034 spin_lock_irqsave(&port_priv->urb_lock, flags);
1035
1036 if (port_priv->urb_in_use)
1037 r = 0;
1038 else
1039 r = QT2_WRITE_BUFFER_SIZE - QT2_WRITE_CONTROL_SIZE;
1040
1041 spin_unlock_irqrestore(&port_priv->urb_lock, flags);
1042
1043 return r;
1044}
1045
1046static int qt2_write(struct tty_struct *tty,
1047 struct usb_serial_port *port,
1048 const unsigned char *buf, int count)
1049{
1050 struct qt2_port_private *port_priv;
1051 struct urb *write_urb;
1052 unsigned char *data;
1053 unsigned long flags;
1054 int status;
1055 int bytes_out = 0;
1056
1057 port_priv = usb_get_serial_port_data(port);
1058
1059 if (port_priv->write_urb == NULL) {
1060 dev_err(&port->dev, "%s - no output urb\n", __func__);
1061 return 0;
1062 }
1063 write_urb = port_priv->write_urb;
1064
1065 count = min(count, QT2_WRITE_BUFFER_SIZE - QT2_WRITE_CONTROL_SIZE);
1066
1067 data = write_urb->transfer_buffer;
1068 spin_lock_irqsave(&port_priv->urb_lock, flags);
1069 if (port_priv->urb_in_use == true) {
Greg Kroah-Hartman788a6612012-09-18 17:05:37 +01001070 dev_err(&port->dev, "qt2_write - urb is in use\n");
Bill Pembertonf7a33e602012-05-10 15:36:02 -04001071 goto write_out;
1072 }
1073
1074 *data++ = QT2_CONTROL_BYTE;
1075 *data++ = QT2_CONTROL_BYTE;
1076 *data++ = port_priv->device_port;
1077 put_unaligned_le16(count, data);
1078 data += 2;
1079 memcpy(data, buf, count);
1080
1081 write_urb->transfer_buffer_length = count + QT2_WRITE_CONTROL_SIZE;
1082
1083 status = usb_submit_urb(write_urb, GFP_ATOMIC);
1084 if (status == 0) {
1085 port_priv->urb_in_use = true;
1086 bytes_out += count;
1087 }
1088
1089write_out:
1090 spin_unlock_irqrestore(&port_priv->urb_lock, flags);
1091 return bytes_out;
1092}
1093
1094
1095static struct usb_serial_driver qt2_device = {
1096 .driver = {
1097 .owner = THIS_MODULE,
1098 .name = "quatech-serial",
1099 },
1100 .description = DRIVER_DESC,
1101 .id_table = id_table,
1102 .open = qt2_open,
1103 .close = qt2_close,
1104 .write = qt2_write,
1105 .write_room = qt2_write_room,
1106 .calc_num_ports = qt2_calc_num_ports,
1107 .attach = qt2_attach,
1108 .release = qt2_release,
1109 .disconnect = qt2_disconnect,
Johan Hovold40d04732012-10-25 10:29:08 +02001110 .port_probe = qt2_port_probe,
1111 .port_remove = qt2_port_remove,
Bill Pembertonf7a33e602012-05-10 15:36:02 -04001112 .dtr_rts = qt2_dtr_rts,
1113 .break_ctl = qt2_break_ctl,
1114 .tiocmget = qt2_tiocmget,
1115 .tiocmset = qt2_tiocmset,
1116 .get_icount = qt2_get_icount,
1117 .ioctl = qt2_ioctl,
1118 .set_termios = qt2_set_termios,
1119};
1120
1121static struct usb_serial_driver *const serial_drivers[] = {
1122 &qt2_device, NULL
1123};
1124
1125module_usb_serial_driver(serial_drivers, id_table);
1126
1127MODULE_DESCRIPTION(DRIVER_DESC);
1128MODULE_LICENSE("GPL");