blob: 3baf7c0f5a9810c094d378587b60b53a717e1835 [file] [log] [blame]
Greg Kroah-Hartman5fd54ac2017-11-03 11:28:30 +01001// SPDX-License-Identifier: GPL-2.0
Bill Pemberton52af9542010-07-29 11:05:41 -04002/*
3 * usb-serial driver for Quatech SSU-100
4 *
5 * based on ftdi_sio.c and the original serqt_usb.c from Quatech
6 *
7 */
8
9#include <linux/errno.h>
Bill Pemberton52af9542010-07-29 11:05:41 -040010#include <linux/slab.h>
11#include <linux/tty.h>
12#include <linux/tty_driver.h>
13#include <linux/tty_flip.h>
14#include <linux/module.h>
15#include <linux/serial.h>
16#include <linux/usb.h>
17#include <linux/usb/serial.h>
Bill Pemberton79f203a2010-08-05 17:01:07 -040018#include <linux/serial_reg.h>
Bill Pemberton52af9542010-07-29 11:05:41 -040019#include <linux/uaccess.h>
20
21#define QT_OPEN_CLOSE_CHANNEL 0xca
22#define QT_SET_GET_DEVICE 0xc2
23#define QT_SET_GET_REGISTER 0xc0
24#define QT_GET_SET_PREBUF_TRIG_LVL 0xcc
25#define QT_SET_ATF 0xcd
26#define QT_GET_SET_UART 0xc1
27#define QT_TRANSFER_IN 0xc0
28#define QT_HW_FLOW_CONTROL_MASK 0xc5
29#define QT_SW_FLOW_CONTROL_MASK 0xc6
30
Bill Pemberton52af9542010-07-29 11:05:41 -040031#define SERIAL_MSR_MASK 0xf0
32
Bill Pemberton79f203a2010-08-05 17:01:07 -040033#define SERIAL_CRTSCTS ((UART_MCR_RTS << 8) | UART_MSR_CTS)
Bill Pemberton52af9542010-07-29 11:05:41 -040034
Bill Pemberton79f203a2010-08-05 17:01:07 -040035#define SERIAL_EVEN_PARITY (UART_LCR_PARITY | UART_LCR_EPAR)
Bill Pemberton52af9542010-07-29 11:05:41 -040036
37#define MAX_BAUD_RATE 460800
38
39#define ATC_DISABLED 0x00
40#define DUPMODE_BITS 0xc0
41#define RR_BITS 0x03
42#define LOOPMODE_BITS 0x41
43#define RS232_MODE 0x00
44#define RTSCTS_TO_CONNECTOR 0x40
45#define CLKS_X4 0x02
46#define FULLPWRBIT 0x00000080
47#define NEXT_BOARD_POWER_BIT 0x00000004
48
Bill Pemberton52af9542010-07-29 11:05:41 -040049#define DRIVER_DESC "Quatech SSU-100 USB to Serial Driver"
50
51#define USB_VENDOR_ID_QUATECH 0x061d /* Quatech VID */
52#define QUATECH_SSU100 0xC020 /* SSU100 */
53
54static const struct usb_device_id id_table[] = {
55 {USB_DEVICE(USB_VENDOR_ID_QUATECH, QUATECH_SSU100)},
56 {} /* Terminating entry */
57};
Bill Pemberton52af9542010-07-29 11:05:41 -040058MODULE_DEVICE_TABLE(usb, id_table);
59
Bill Pemberton52af9542010-07-29 11:05:41 -040060struct ssu100_port_private {
Bill Pemberton17523052010-08-05 17:01:05 -040061 spinlock_t status_lock;
Bill Pemberton52af9542010-07-29 11:05:41 -040062 u8 shadowLSR;
63 u8 shadowMSR;
Bill Pemberton52af9542010-07-29 11:05:41 -040064};
65
Bill Pemberton52af9542010-07-29 11:05:41 -040066static inline int ssu100_control_msg(struct usb_device *dev,
67 u8 request, u16 data, u16 index)
68{
69 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
70 request, 0x40, data, index,
71 NULL, 0, 300);
72}
73
74static inline int ssu100_setdevice(struct usb_device *dev, u8 *data)
75{
76 u16 x = ((u16)(data[1] << 8) | (u16)(data[0]));
77
78 return ssu100_control_msg(dev, QT_SET_GET_DEVICE, x, 0);
79}
80
81
82static inline int ssu100_getdevice(struct usb_device *dev, u8 *data)
83{
Johan Hovold1eac5c22017-01-12 14:56:22 +010084 int ret;
85
86 ret = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
87 QT_SET_GET_DEVICE, 0xc0, 0, 0,
88 data, 3, 300);
89 if (ret < 3) {
90 if (ret >= 0)
91 ret = -EIO;
92 }
93
94 return ret;
Bill Pemberton52af9542010-07-29 11:05:41 -040095}
96
97static inline int ssu100_getregister(struct usb_device *dev,
98 unsigned short uart,
99 unsigned short reg,
100 u8 *data)
101{
Johan Hovold1eac5c22017-01-12 14:56:22 +0100102 int ret;
Bill Pemberton52af9542010-07-29 11:05:41 -0400103
Johan Hovold1eac5c22017-01-12 14:56:22 +0100104 ret = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
105 QT_SET_GET_REGISTER, 0xc0, reg,
106 uart, data, sizeof(*data), 300);
Chengguang Xu3391ca12018-06-25 15:35:18 +0800107 if (ret < (int)sizeof(*data)) {
Johan Hovold1eac5c22017-01-12 14:56:22 +0100108 if (ret >= 0)
109 ret = -EIO;
110 }
111
112 return ret;
Bill Pemberton52af9542010-07-29 11:05:41 -0400113}
114
115
116static inline int ssu100_setregister(struct usb_device *dev,
117 unsigned short uart,
Bill Pemberton556f1a02010-08-05 17:01:08 -0400118 unsigned short reg,
Bill Pemberton52af9542010-07-29 11:05:41 -0400119 u16 data)
120{
Bill Pemberton556f1a02010-08-05 17:01:08 -0400121 u16 value = (data << 8) | reg;
Bill Pemberton52af9542010-07-29 11:05:41 -0400122
123 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
124 QT_SET_GET_REGISTER, 0x40, value, uart,
125 NULL, 0, 300);
126
127}
128
129#define set_mctrl(dev, set) update_mctrl((dev), (set), 0)
130#define clear_mctrl(dev, clear) update_mctrl((dev), 0, (clear))
131
132/* these do not deal with device that have more than 1 port */
133static inline int update_mctrl(struct usb_device *dev, unsigned int set,
134 unsigned int clear)
135{
136 unsigned urb_value;
137 int result;
138
139 if (((set | clear) & (TIOCM_DTR | TIOCM_RTS)) == 0) {
Greg Kroah-Hartman4f0c6412012-09-14 11:50:35 -0700140 dev_dbg(&dev->dev, "%s - DTR|RTS not being set|cleared\n", __func__);
Bill Pemberton52af9542010-07-29 11:05:41 -0400141 return 0; /* no change */
142 }
143
144 clear &= ~set; /* 'set' takes precedence over 'clear' */
145 urb_value = 0;
146 if (set & TIOCM_DTR)
Bill Pemberton79f203a2010-08-05 17:01:07 -0400147 urb_value |= UART_MCR_DTR;
Bill Pemberton52af9542010-07-29 11:05:41 -0400148 if (set & TIOCM_RTS)
Bill Pemberton79f203a2010-08-05 17:01:07 -0400149 urb_value |= UART_MCR_RTS;
Bill Pemberton52af9542010-07-29 11:05:41 -0400150
Bill Pemberton556f1a02010-08-05 17:01:08 -0400151 result = ssu100_setregister(dev, 0, UART_MCR, urb_value);
Bill Pemberton52af9542010-07-29 11:05:41 -0400152 if (result < 0)
Greg Kroah-Hartman4f0c6412012-09-14 11:50:35 -0700153 dev_dbg(&dev->dev, "%s Error from MODEM_CTRL urb\n", __func__);
Bill Pemberton52af9542010-07-29 11:05:41 -0400154
155 return result;
156}
157
158static int ssu100_initdevice(struct usb_device *dev)
159{
160 u8 *data;
161 int result = 0;
162
Bill Pemberton52af9542010-07-29 11:05:41 -0400163 data = kzalloc(3, GFP_KERNEL);
164 if (!data)
165 return -ENOMEM;
166
167 result = ssu100_getdevice(dev, data);
168 if (result < 0) {
Greg Kroah-Hartman4f0c6412012-09-14 11:50:35 -0700169 dev_dbg(&dev->dev, "%s - get_device failed %i\n", __func__, result);
Bill Pemberton52af9542010-07-29 11:05:41 -0400170 goto out;
171 }
172
173 data[1] &= ~FULLPWRBIT;
174
175 result = ssu100_setdevice(dev, data);
176 if (result < 0) {
Greg Kroah-Hartman4f0c6412012-09-14 11:50:35 -0700177 dev_dbg(&dev->dev, "%s - setdevice failed %i\n", __func__, result);
Bill Pemberton52af9542010-07-29 11:05:41 -0400178 goto out;
179 }
180
181 result = ssu100_control_msg(dev, QT_GET_SET_PREBUF_TRIG_LVL, 128, 0);
182 if (result < 0) {
Greg Kroah-Hartman4f0c6412012-09-14 11:50:35 -0700183 dev_dbg(&dev->dev, "%s - set prebuffer level failed %i\n", __func__, result);
Bill Pemberton52af9542010-07-29 11:05:41 -0400184 goto out;
185 }
186
187 result = ssu100_control_msg(dev, QT_SET_ATF, ATC_DISABLED, 0);
188 if (result < 0) {
Greg Kroah-Hartman4f0c6412012-09-14 11:50:35 -0700189 dev_dbg(&dev->dev, "%s - set ATFprebuffer level failed %i\n", __func__, result);
Bill Pemberton52af9542010-07-29 11:05:41 -0400190 goto out;
191 }
192
193 result = ssu100_getdevice(dev, data);
194 if (result < 0) {
Greg Kroah-Hartman4f0c6412012-09-14 11:50:35 -0700195 dev_dbg(&dev->dev, "%s - get_device failed %i\n", __func__, result);
Bill Pemberton52af9542010-07-29 11:05:41 -0400196 goto out;
197 }
198
199 data[0] &= ~(RR_BITS | DUPMODE_BITS);
200 data[0] |= CLKS_X4;
201 data[1] &= ~(LOOPMODE_BITS);
202 data[1] |= RS232_MODE;
203
204 result = ssu100_setdevice(dev, data);
205 if (result < 0) {
Greg Kroah-Hartman4f0c6412012-09-14 11:50:35 -0700206 dev_dbg(&dev->dev, "%s - setdevice failed %i\n", __func__, result);
Bill Pemberton52af9542010-07-29 11:05:41 -0400207 goto out;
208 }
209
210out: kfree(data);
211 return result;
212
213}
214
215
216static void ssu100_set_termios(struct tty_struct *tty,
217 struct usb_serial_port *port,
218 struct ktermios *old_termios)
219{
220 struct usb_device *dev = port->serial->dev;
Alan Coxadc8d742012-07-14 15:31:47 +0100221 struct ktermios *termios = &tty->termios;
Bill Pemberton52af9542010-07-29 11:05:41 -0400222 u16 baud, divisor, remainder;
223 unsigned int cflag = termios->c_cflag;
224 u16 urb_value = 0; /* will hold the new flags */
225 int result;
226
Bill Pemberton52af9542010-07-29 11:05:41 -0400227 if (cflag & PARENB) {
228 if (cflag & PARODD)
Bill Pemberton79f203a2010-08-05 17:01:07 -0400229 urb_value |= UART_LCR_PARITY;
Bill Pemberton52af9542010-07-29 11:05:41 -0400230 else
231 urb_value |= SERIAL_EVEN_PARITY;
232 }
233
234 switch (cflag & CSIZE) {
235 case CS5:
Bill Pemberton79f203a2010-08-05 17:01:07 -0400236 urb_value |= UART_LCR_WLEN5;
Bill Pemberton52af9542010-07-29 11:05:41 -0400237 break;
238 case CS6:
Bill Pemberton79f203a2010-08-05 17:01:07 -0400239 urb_value |= UART_LCR_WLEN6;
Bill Pemberton52af9542010-07-29 11:05:41 -0400240 break;
241 case CS7:
Bill Pemberton79f203a2010-08-05 17:01:07 -0400242 urb_value |= UART_LCR_WLEN7;
Bill Pemberton52af9542010-07-29 11:05:41 -0400243 break;
244 default:
245 case CS8:
Bill Pemberton79f203a2010-08-05 17:01:07 -0400246 urb_value |= UART_LCR_WLEN8;
Bill Pemberton52af9542010-07-29 11:05:41 -0400247 break;
248 }
249
250 baud = tty_get_baud_rate(tty);
251 if (!baud)
252 baud = 9600;
253
Greg Kroah-Hartman4f0c6412012-09-14 11:50:35 -0700254 dev_dbg(&port->dev, "%s - got baud = %d\n", __func__, baud);
Bill Pemberton52af9542010-07-29 11:05:41 -0400255
256
257 divisor = MAX_BAUD_RATE / baud;
258 remainder = MAX_BAUD_RATE % baud;
259 if (((remainder * 2) >= baud) && (baud != 110))
260 divisor++;
261
262 urb_value = urb_value << 8;
263
264 result = ssu100_control_msg(dev, QT_GET_SET_UART, divisor, urb_value);
265 if (result < 0)
Greg Kroah-Hartman4f0c6412012-09-14 11:50:35 -0700266 dev_dbg(&port->dev, "%s - set uart failed\n", __func__);
Bill Pemberton52af9542010-07-29 11:05:41 -0400267
268 if (cflag & CRTSCTS)
269 result = ssu100_control_msg(dev, QT_HW_FLOW_CONTROL_MASK,
270 SERIAL_CRTSCTS, 0);
271 else
272 result = ssu100_control_msg(dev, QT_HW_FLOW_CONTROL_MASK,
273 0, 0);
274 if (result < 0)
Greg Kroah-Hartman4f0c6412012-09-14 11:50:35 -0700275 dev_dbg(&port->dev, "%s - set HW flow control failed\n", __func__);
Bill Pemberton52af9542010-07-29 11:05:41 -0400276
277 if (I_IXOFF(tty) || I_IXON(tty)) {
278 u16 x = ((u16)(START_CHAR(tty) << 8) | (u16)(STOP_CHAR(tty)));
279
280 result = ssu100_control_msg(dev, QT_SW_FLOW_CONTROL_MASK,
281 x, 0);
282 } else
283 result = ssu100_control_msg(dev, QT_SW_FLOW_CONTROL_MASK,
284 0, 0);
285
286 if (result < 0)
Greg Kroah-Hartman4f0c6412012-09-14 11:50:35 -0700287 dev_dbg(&port->dev, "%s - set SW flow control failed\n", __func__);
Bill Pemberton52af9542010-07-29 11:05:41 -0400288
289}
290
291
292static int ssu100_open(struct tty_struct *tty, struct usb_serial_port *port)
293{
294 struct usb_device *dev = port->serial->dev;
295 struct ssu100_port_private *priv = usb_get_serial_port_data(port);
296 u8 *data;
297 int result;
Bill Pemberton17523052010-08-05 17:01:05 -0400298 unsigned long flags;
Bill Pemberton52af9542010-07-29 11:05:41 -0400299
Bill Pemberton52af9542010-07-29 11:05:41 -0400300 data = kzalloc(2, GFP_KERNEL);
301 if (!data)
302 return -ENOMEM;
303
304 result = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
305 QT_OPEN_CLOSE_CHANNEL,
306 QT_TRANSFER_IN, 0x01,
307 0, data, 2, 300);
Johan Hovold1eac5c22017-01-12 14:56:22 +0100308 if (result < 2) {
Greg Kroah-Hartman4f0c6412012-09-14 11:50:35 -0700309 dev_dbg(&port->dev, "%s - open failed %i\n", __func__, result);
Johan Hovold1eac5c22017-01-12 14:56:22 +0100310 if (result >= 0)
311 result = -EIO;
Bill Pemberton52af9542010-07-29 11:05:41 -0400312 kfree(data);
313 return result;
314 }
315
Bill Pemberton17523052010-08-05 17:01:05 -0400316 spin_lock_irqsave(&priv->status_lock, flags);
Bill Pembertonf81c83d2010-08-05 17:01:09 -0400317 priv->shadowLSR = data[0];
318 priv->shadowMSR = data[1];
Bill Pemberton17523052010-08-05 17:01:05 -0400319 spin_unlock_irqrestore(&priv->status_lock, flags);
Bill Pemberton52af9542010-07-29 11:05:41 -0400320
321 kfree(data);
322
323/* set to 9600 */
324 result = ssu100_control_msg(dev, QT_GET_SET_UART, 0x30, 0x0300);
325 if (result < 0)
Greg Kroah-Hartman4f0c6412012-09-14 11:50:35 -0700326 dev_dbg(&port->dev, "%s - set uart failed\n", __func__);
Bill Pemberton52af9542010-07-29 11:05:41 -0400327
328 if (tty)
Alan Coxadc8d742012-07-14 15:31:47 +0100329 ssu100_set_termios(tty, port, &tty->termios);
Bill Pemberton52af9542010-07-29 11:05:41 -0400330
331 return usb_serial_generic_open(tty, port);
332}
333
Bill Pemberton52af9542010-07-29 11:05:41 -0400334static int ssu100_attach(struct usb_serial *serial)
335{
Johan Hovold638b9e12012-10-17 16:31:34 +0200336 return ssu100_initdevice(serial->dev);
337}
338
339static int ssu100_port_probe(struct usb_serial_port *port)
340{
Bill Pemberton52af9542010-07-29 11:05:41 -0400341 struct ssu100_port_private *priv;
Bill Pemberton52af9542010-07-29 11:05:41 -0400342
Bill Pemberton52af9542010-07-29 11:05:41 -0400343 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
Johan Hovold638b9e12012-10-17 16:31:34 +0200344 if (!priv)
Bill Pemberton52af9542010-07-29 11:05:41 -0400345 return -ENOMEM;
Bill Pemberton52af9542010-07-29 11:05:41 -0400346
Bill Pemberton17523052010-08-05 17:01:05 -0400347 spin_lock_init(&priv->status_lock);
Johan Hovold638b9e12012-10-17 16:31:34 +0200348
Bill Pemberton52af9542010-07-29 11:05:41 -0400349 usb_set_serial_port_data(port, priv);
Bill Pemberton52af9542010-07-29 11:05:41 -0400350
Johan Hovold638b9e12012-10-17 16:31:34 +0200351 return 0;
352}
353
Uwe Kleine-Königc5d14482021-02-08 15:31:49 +0100354static void ssu100_port_remove(struct usb_serial_port *port)
Johan Hovold638b9e12012-10-17 16:31:34 +0200355{
356 struct ssu100_port_private *priv;
357
358 priv = usb_get_serial_port_data(port);
359 kfree(priv);
Bill Pemberton52af9542010-07-29 11:05:41 -0400360}
361
Alan Cox60b33c12011-02-14 16:26:14 +0000362static int ssu100_tiocmget(struct tty_struct *tty)
Bill Pemberton52af9542010-07-29 11:05:41 -0400363{
364 struct usb_serial_port *port = tty->driver_data;
365 struct usb_device *dev = port->serial->dev;
366 u8 *d;
367 int r;
368
Bill Pemberton52af9542010-07-29 11:05:41 -0400369 d = kzalloc(2, GFP_KERNEL);
370 if (!d)
371 return -ENOMEM;
372
Bill Pemberton79f203a2010-08-05 17:01:07 -0400373 r = ssu100_getregister(dev, 0, UART_MCR, d);
Bill Pemberton52af9542010-07-29 11:05:41 -0400374 if (r < 0)
375 goto mget_out;
376
Bill Pemberton79f203a2010-08-05 17:01:07 -0400377 r = ssu100_getregister(dev, 0, UART_MSR, d+1);
Bill Pemberton52af9542010-07-29 11:05:41 -0400378 if (r < 0)
379 goto mget_out;
380
Bill Pemberton79f203a2010-08-05 17:01:07 -0400381 r = (d[0] & UART_MCR_DTR ? TIOCM_DTR : 0) |
382 (d[0] & UART_MCR_RTS ? TIOCM_RTS : 0) |
383 (d[1] & UART_MSR_CTS ? TIOCM_CTS : 0) |
384 (d[1] & UART_MSR_DCD ? TIOCM_CAR : 0) |
385 (d[1] & UART_MSR_RI ? TIOCM_RI : 0) |
386 (d[1] & UART_MSR_DSR ? TIOCM_DSR : 0);
Bill Pemberton52af9542010-07-29 11:05:41 -0400387
388mget_out:
389 kfree(d);
390 return r;
391}
392
Alan Cox20b9d172011-02-14 16:26:50 +0000393static int ssu100_tiocmset(struct tty_struct *tty,
Bill Pemberton52af9542010-07-29 11:05:41 -0400394 unsigned int set, unsigned int clear)
395{
396 struct usb_serial_port *port = tty->driver_data;
397 struct usb_device *dev = port->serial->dev;
398
Bill Pemberton52af9542010-07-29 11:05:41 -0400399 return update_mctrl(dev, set, clear);
400}
401
402static void ssu100_dtr_rts(struct usb_serial_port *port, int on)
403{
404 struct usb_device *dev = port->serial->dev;
405
Johan Hovoldb2ca6992013-02-13 17:53:28 +0100406 /* Disable flow control */
407 if (!on) {
408 if (ssu100_setregister(dev, 0, UART_MCR, 0) < 0)
Bill Pemberton52af9542010-07-29 11:05:41 -0400409 dev_err(&port->dev, "error from flowcontrol urb\n");
Bill Pemberton52af9542010-07-29 11:05:41 -0400410 }
Johan Hovoldb2ca6992013-02-13 17:53:28 +0100411 /* drop RTS and DTR */
412 if (on)
413 set_mctrl(dev, TIOCM_DTR | TIOCM_RTS);
414 else
415 clear_mctrl(dev, TIOCM_DTR | TIOCM_RTS);
Bill Pemberton52af9542010-07-29 11:05:41 -0400416}
417
Bill Pembertonf81c83d2010-08-05 17:01:09 -0400418static void ssu100_update_msr(struct usb_serial_port *port, u8 msr)
419{
420 struct ssu100_port_private *priv = usb_get_serial_port_data(port);
421 unsigned long flags;
422
423 spin_lock_irqsave(&priv->status_lock, flags);
424 priv->shadowMSR = msr;
425 spin_unlock_irqrestore(&priv->status_lock, flags);
426
427 if (msr & UART_MSR_ANY_DELTA) {
428 /* update input line counters */
429 if (msr & UART_MSR_DCTS)
Johan Hovold31ecdb6b2013-03-21 12:37:31 +0100430 port->icount.cts++;
Bill Pembertonf81c83d2010-08-05 17:01:09 -0400431 if (msr & UART_MSR_DDSR)
Johan Hovold31ecdb6b2013-03-21 12:37:31 +0100432 port->icount.dsr++;
Bill Pembertonf81c83d2010-08-05 17:01:09 -0400433 if (msr & UART_MSR_DDCD)
Johan Hovold31ecdb6b2013-03-21 12:37:31 +0100434 port->icount.dcd++;
Bill Pembertonf81c83d2010-08-05 17:01:09 -0400435 if (msr & UART_MSR_TERI)
Johan Hovold31ecdb6b2013-03-21 12:37:31 +0100436 port->icount.rng++;
Johan Hovoldc24c8382013-03-21 12:37:32 +0100437 wake_up_interruptible(&port->port.delta_msr_wait);
Bill Pembertonf81c83d2010-08-05 17:01:09 -0400438 }
439}
440
Bill Pemberton6b8f1ca2010-08-13 09:59:31 -0400441static void ssu100_update_lsr(struct usb_serial_port *port, u8 lsr,
442 char *tty_flag)
Bill Pembertonf81c83d2010-08-05 17:01:09 -0400443{
444 struct ssu100_port_private *priv = usb_get_serial_port_data(port);
445 unsigned long flags;
446
447 spin_lock_irqsave(&priv->status_lock, flags);
448 priv->shadowLSR = lsr;
449 spin_unlock_irqrestore(&priv->status_lock, flags);
450
Bill Pemberton6b8f1ca2010-08-13 09:59:31 -0400451 *tty_flag = TTY_NORMAL;
Bill Pembertonf81c83d2010-08-05 17:01:09 -0400452 if (lsr & UART_LSR_BRK_ERROR_BITS) {
Bill Pemberton6b8f1ca2010-08-13 09:59:31 -0400453 /* we always want to update icount, but we only want to
454 * update tty_flag for one case */
455 if (lsr & UART_LSR_BI) {
Johan Hovold31ecdb6b2013-03-21 12:37:31 +0100456 port->icount.brk++;
Bill Pemberton6b8f1ca2010-08-13 09:59:31 -0400457 *tty_flag = TTY_BREAK;
458 usb_serial_handle_break(port);
459 }
460 if (lsr & UART_LSR_PE) {
Johan Hovold31ecdb6b2013-03-21 12:37:31 +0100461 port->icount.parity++;
Bill Pemberton6b8f1ca2010-08-13 09:59:31 -0400462 if (*tty_flag == TTY_NORMAL)
463 *tty_flag = TTY_PARITY;
464 }
465 if (lsr & UART_LSR_FE) {
Johan Hovold31ecdb6b2013-03-21 12:37:31 +0100466 port->icount.frame++;
Bill Pemberton6b8f1ca2010-08-13 09:59:31 -0400467 if (*tty_flag == TTY_NORMAL)
468 *tty_flag = TTY_FRAME;
469 }
Johan Hovold75bcbf22014-11-18 11:25:21 +0100470 if (lsr & UART_LSR_OE) {
Johan Hovold31ecdb6b2013-03-21 12:37:31 +0100471 port->icount.overrun++;
Johan Hovold75bcbf22014-11-18 11:25:21 +0100472 tty_insert_flip_char(&port->port, 0, TTY_OVERRUN);
Bill Pemberton6b8f1ca2010-08-13 09:59:31 -0400473 }
Bill Pembertonf81c83d2010-08-05 17:01:09 -0400474 }
Bill Pemberton6b8f1ca2010-08-13 09:59:31 -0400475
Bill Pembertonf81c83d2010-08-05 17:01:09 -0400476}
477
Jiri Slaby2e124b42013-01-03 15:53:06 +0100478static void ssu100_process_read_urb(struct urb *urb)
Bill Pemberton52af9542010-07-29 11:05:41 -0400479{
Bill Pembertonf7043ec2010-10-21 14:43:05 -0400480 struct usb_serial_port *port = urb->context;
Johan Hovoldeb0c68e2020-07-08 14:50:00 +0200481 char *packet = urb->transfer_buffer;
Bill Pemberton6b8f1ca2010-08-13 09:59:31 -0400482 char flag = TTY_NORMAL;
Bill Pembertonf7043ec2010-10-21 14:43:05 -0400483 u32 len = urb->actual_length;
484 int i;
Bill Pemberton52af9542010-07-29 11:05:41 -0400485 char *ch;
486
Bill Pemberton9b2cef32010-08-05 17:01:06 -0400487 if ((len >= 4) &&
488 (packet[0] == 0x1b) && (packet[1] == 0x1b) &&
Bill Pemberton52af9542010-07-29 11:05:41 -0400489 ((packet[2] == 0x00) || (packet[2] == 0x01))) {
Johan Hovold75bcbf22014-11-18 11:25:21 +0100490 if (packet[2] == 0x00)
Bill Pemberton6b8f1ca2010-08-13 09:59:31 -0400491 ssu100_update_lsr(port, packet[3], &flag);
Bill Pembertonf81c83d2010-08-05 17:01:09 -0400492 if (packet[2] == 0x01)
493 ssu100_update_msr(port, packet[3]);
Bill Pemberton52af9542010-07-29 11:05:41 -0400494
495 len -= 4;
496 ch = packet + 4;
497 } else
498 ch = packet;
499
500 if (!len)
Jiri Slaby2e124b42013-01-03 15:53:06 +0100501 return; /* status only */
Bill Pemberton52af9542010-07-29 11:05:41 -0400502
Johan Hovold37ae2312020-07-08 14:49:54 +0200503 if (port->sysrq) {
Bill Pemberton52af9542010-07-29 11:05:41 -0400504 for (i = 0; i < len; i++, ch++) {
Dmitry Torokhov6ee9f4b2010-08-17 21:15:47 -0700505 if (!usb_serial_handle_sysrq_char(port, *ch))
Jiri Slaby92a19f92013-01-03 15:53:03 +0100506 tty_insert_flip_char(&port->port, *ch, flag);
Bill Pemberton52af9542010-07-29 11:05:41 -0400507 }
Johan Hovold37ae2312020-07-08 14:49:54 +0200508 } else {
Jiri Slaby2f693352013-01-03 15:53:02 +0100509 tty_insert_flip_string_fixed_flag(&port->port, ch, flag, len);
Johan Hovold37ae2312020-07-08 14:49:54 +0200510 }
Bill Pemberton52af9542010-07-29 11:05:41 -0400511
Jiri Slaby2e124b42013-01-03 15:53:06 +0100512 tty_flip_buffer_push(&port->port);
Bill Pemberton52af9542010-07-29 11:05:41 -0400513}
514
Bill Pemberton52af9542010-07-29 11:05:41 -0400515static struct usb_serial_driver ssu100_device = {
516 .driver = {
517 .owner = THIS_MODULE,
518 .name = "ssu100",
519 },
520 .description = DRIVER_DESC,
521 .id_table = id_table,
Bill Pemberton52af9542010-07-29 11:05:41 -0400522 .num_ports = 1,
Bill Pemberton52af9542010-07-29 11:05:41 -0400523 .open = ssu100_open,
Bill Pemberton52af9542010-07-29 11:05:41 -0400524 .attach = ssu100_attach,
Johan Hovold638b9e12012-10-17 16:31:34 +0200525 .port_probe = ssu100_port_probe,
526 .port_remove = ssu100_port_remove,
Bill Pemberton52af9542010-07-29 11:05:41 -0400527 .dtr_rts = ssu100_dtr_rts,
528 .process_read_urb = ssu100_process_read_urb,
529 .tiocmget = ssu100_tiocmget,
530 .tiocmset = ssu100_tiocmset,
Johan Hovoldc24c8382013-03-21 12:37:32 +0100531 .tiocmiwait = usb_serial_generic_tiocmiwait,
Johan Hovold31ecdb6b2013-03-21 12:37:31 +0100532 .get_icount = usb_serial_generic_get_icount,
Bill Pemberton52af9542010-07-29 11:05:41 -0400533 .set_termios = ssu100_set_termios,
Bill Pemberton52af9542010-07-29 11:05:41 -0400534};
535
Alan Sternd8603222012-02-23 14:57:25 -0500536static struct usb_serial_driver * const serial_drivers[] = {
537 &ssu100_device, NULL
538};
539
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -0700540module_usb_serial_driver(serial_drivers, id_table);
Bill Pemberton52af9542010-07-29 11:05:41 -0400541
542MODULE_DESCRIPTION(DRIVER_DESC);
Johan Hovold627cfa82017-11-03 18:12:08 +0100543MODULE_LICENSE("GPL v2");