blob: 89fdc5c19285d09a8234454c2d2091db5c497231 [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
Al Viroee08cef2018-09-12 07:26:07 -0400334static int get_serial_info(struct tty_struct *tty,
335 struct serial_struct *ss)
Bill Pemberton52af9542010-07-29 11:05:41 -0400336{
337 struct usb_serial_port *port = tty->driver_data;
Bill Pemberton52af9542010-07-29 11:05:41 -0400338
Al Viroee08cef2018-09-12 07:26:07 -0400339 ss->line = port->minor;
340 ss->port = 0;
341 ss->irq = 0;
342 ss->xmit_fifo_size = port->bulk_out_size;
343 ss->baud_base = 9600;
344 ss->close_delay = 5*HZ;
345 ss->closing_wait = 30*HZ;
346 return 0;
Bill Pemberton52af9542010-07-29 11:05:41 -0400347}
348
Bill Pemberton52af9542010-07-29 11:05:41 -0400349static int ssu100_attach(struct usb_serial *serial)
350{
Johan Hovold638b9e12012-10-17 16:31:34 +0200351 return ssu100_initdevice(serial->dev);
352}
353
354static int ssu100_port_probe(struct usb_serial_port *port)
355{
Bill Pemberton52af9542010-07-29 11:05:41 -0400356 struct ssu100_port_private *priv;
Bill Pemberton52af9542010-07-29 11:05:41 -0400357
Bill Pemberton52af9542010-07-29 11:05:41 -0400358 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
Johan Hovold638b9e12012-10-17 16:31:34 +0200359 if (!priv)
Bill Pemberton52af9542010-07-29 11:05:41 -0400360 return -ENOMEM;
Bill Pemberton52af9542010-07-29 11:05:41 -0400361
Bill Pemberton17523052010-08-05 17:01:05 -0400362 spin_lock_init(&priv->status_lock);
Johan Hovold638b9e12012-10-17 16:31:34 +0200363
Bill Pemberton52af9542010-07-29 11:05:41 -0400364 usb_set_serial_port_data(port, priv);
Bill Pemberton52af9542010-07-29 11:05:41 -0400365
Johan Hovold638b9e12012-10-17 16:31:34 +0200366 return 0;
367}
368
Uwe Kleine-Königc5d14482021-02-08 15:31:49 +0100369static void ssu100_port_remove(struct usb_serial_port *port)
Johan Hovold638b9e12012-10-17 16:31:34 +0200370{
371 struct ssu100_port_private *priv;
372
373 priv = usb_get_serial_port_data(port);
374 kfree(priv);
Bill Pemberton52af9542010-07-29 11:05:41 -0400375}
376
Alan Cox60b33c12011-02-14 16:26:14 +0000377static int ssu100_tiocmget(struct tty_struct *tty)
Bill Pemberton52af9542010-07-29 11:05:41 -0400378{
379 struct usb_serial_port *port = tty->driver_data;
380 struct usb_device *dev = port->serial->dev;
381 u8 *d;
382 int r;
383
Bill Pemberton52af9542010-07-29 11:05:41 -0400384 d = kzalloc(2, GFP_KERNEL);
385 if (!d)
386 return -ENOMEM;
387
Bill Pemberton79f203a2010-08-05 17:01:07 -0400388 r = ssu100_getregister(dev, 0, UART_MCR, d);
Bill Pemberton52af9542010-07-29 11:05:41 -0400389 if (r < 0)
390 goto mget_out;
391
Bill Pemberton79f203a2010-08-05 17:01:07 -0400392 r = ssu100_getregister(dev, 0, UART_MSR, d+1);
Bill Pemberton52af9542010-07-29 11:05:41 -0400393 if (r < 0)
394 goto mget_out;
395
Bill Pemberton79f203a2010-08-05 17:01:07 -0400396 r = (d[0] & UART_MCR_DTR ? TIOCM_DTR : 0) |
397 (d[0] & UART_MCR_RTS ? TIOCM_RTS : 0) |
398 (d[1] & UART_MSR_CTS ? TIOCM_CTS : 0) |
399 (d[1] & UART_MSR_DCD ? TIOCM_CAR : 0) |
400 (d[1] & UART_MSR_RI ? TIOCM_RI : 0) |
401 (d[1] & UART_MSR_DSR ? TIOCM_DSR : 0);
Bill Pemberton52af9542010-07-29 11:05:41 -0400402
403mget_out:
404 kfree(d);
405 return r;
406}
407
Alan Cox20b9d172011-02-14 16:26:50 +0000408static int ssu100_tiocmset(struct tty_struct *tty,
Bill Pemberton52af9542010-07-29 11:05:41 -0400409 unsigned int set, unsigned int clear)
410{
411 struct usb_serial_port *port = tty->driver_data;
412 struct usb_device *dev = port->serial->dev;
413
Bill Pemberton52af9542010-07-29 11:05:41 -0400414 return update_mctrl(dev, set, clear);
415}
416
417static void ssu100_dtr_rts(struct usb_serial_port *port, int on)
418{
419 struct usb_device *dev = port->serial->dev;
420
Johan Hovoldb2ca6992013-02-13 17:53:28 +0100421 /* Disable flow control */
422 if (!on) {
423 if (ssu100_setregister(dev, 0, UART_MCR, 0) < 0)
Bill Pemberton52af9542010-07-29 11:05:41 -0400424 dev_err(&port->dev, "error from flowcontrol urb\n");
Bill Pemberton52af9542010-07-29 11:05:41 -0400425 }
Johan Hovoldb2ca6992013-02-13 17:53:28 +0100426 /* drop RTS and DTR */
427 if (on)
428 set_mctrl(dev, TIOCM_DTR | TIOCM_RTS);
429 else
430 clear_mctrl(dev, TIOCM_DTR | TIOCM_RTS);
Bill Pemberton52af9542010-07-29 11:05:41 -0400431}
432
Bill Pembertonf81c83d2010-08-05 17:01:09 -0400433static void ssu100_update_msr(struct usb_serial_port *port, u8 msr)
434{
435 struct ssu100_port_private *priv = usb_get_serial_port_data(port);
436 unsigned long flags;
437
438 spin_lock_irqsave(&priv->status_lock, flags);
439 priv->shadowMSR = msr;
440 spin_unlock_irqrestore(&priv->status_lock, flags);
441
442 if (msr & UART_MSR_ANY_DELTA) {
443 /* update input line counters */
444 if (msr & UART_MSR_DCTS)
Johan Hovold31ecdb6b2013-03-21 12:37:31 +0100445 port->icount.cts++;
Bill Pembertonf81c83d2010-08-05 17:01:09 -0400446 if (msr & UART_MSR_DDSR)
Johan Hovold31ecdb6b2013-03-21 12:37:31 +0100447 port->icount.dsr++;
Bill Pembertonf81c83d2010-08-05 17:01:09 -0400448 if (msr & UART_MSR_DDCD)
Johan Hovold31ecdb6b2013-03-21 12:37:31 +0100449 port->icount.dcd++;
Bill Pembertonf81c83d2010-08-05 17:01:09 -0400450 if (msr & UART_MSR_TERI)
Johan Hovold31ecdb6b2013-03-21 12:37:31 +0100451 port->icount.rng++;
Johan Hovoldc24c8382013-03-21 12:37:32 +0100452 wake_up_interruptible(&port->port.delta_msr_wait);
Bill Pembertonf81c83d2010-08-05 17:01:09 -0400453 }
454}
455
Bill Pemberton6b8f1ca2010-08-13 09:59:31 -0400456static void ssu100_update_lsr(struct usb_serial_port *port, u8 lsr,
457 char *tty_flag)
Bill Pembertonf81c83d2010-08-05 17:01:09 -0400458{
459 struct ssu100_port_private *priv = usb_get_serial_port_data(port);
460 unsigned long flags;
461
462 spin_lock_irqsave(&priv->status_lock, flags);
463 priv->shadowLSR = lsr;
464 spin_unlock_irqrestore(&priv->status_lock, flags);
465
Bill Pemberton6b8f1ca2010-08-13 09:59:31 -0400466 *tty_flag = TTY_NORMAL;
Bill Pembertonf81c83d2010-08-05 17:01:09 -0400467 if (lsr & UART_LSR_BRK_ERROR_BITS) {
Bill Pemberton6b8f1ca2010-08-13 09:59:31 -0400468 /* we always want to update icount, but we only want to
469 * update tty_flag for one case */
470 if (lsr & UART_LSR_BI) {
Johan Hovold31ecdb6b2013-03-21 12:37:31 +0100471 port->icount.brk++;
Bill Pemberton6b8f1ca2010-08-13 09:59:31 -0400472 *tty_flag = TTY_BREAK;
473 usb_serial_handle_break(port);
474 }
475 if (lsr & UART_LSR_PE) {
Johan Hovold31ecdb6b2013-03-21 12:37:31 +0100476 port->icount.parity++;
Bill Pemberton6b8f1ca2010-08-13 09:59:31 -0400477 if (*tty_flag == TTY_NORMAL)
478 *tty_flag = TTY_PARITY;
479 }
480 if (lsr & UART_LSR_FE) {
Johan Hovold31ecdb6b2013-03-21 12:37:31 +0100481 port->icount.frame++;
Bill Pemberton6b8f1ca2010-08-13 09:59:31 -0400482 if (*tty_flag == TTY_NORMAL)
483 *tty_flag = TTY_FRAME;
484 }
Johan Hovold75bcbf22014-11-18 11:25:21 +0100485 if (lsr & UART_LSR_OE) {
Johan Hovold31ecdb6b2013-03-21 12:37:31 +0100486 port->icount.overrun++;
Johan Hovold75bcbf22014-11-18 11:25:21 +0100487 tty_insert_flip_char(&port->port, 0, TTY_OVERRUN);
Bill Pemberton6b8f1ca2010-08-13 09:59:31 -0400488 }
Bill Pembertonf81c83d2010-08-05 17:01:09 -0400489 }
Bill Pemberton6b8f1ca2010-08-13 09:59:31 -0400490
Bill Pembertonf81c83d2010-08-05 17:01:09 -0400491}
492
Jiri Slaby2e124b42013-01-03 15:53:06 +0100493static void ssu100_process_read_urb(struct urb *urb)
Bill Pemberton52af9542010-07-29 11:05:41 -0400494{
Bill Pembertonf7043ec2010-10-21 14:43:05 -0400495 struct usb_serial_port *port = urb->context;
Johan Hovoldeb0c68e2020-07-08 14:50:00 +0200496 char *packet = urb->transfer_buffer;
Bill Pemberton6b8f1ca2010-08-13 09:59:31 -0400497 char flag = TTY_NORMAL;
Bill Pembertonf7043ec2010-10-21 14:43:05 -0400498 u32 len = urb->actual_length;
499 int i;
Bill Pemberton52af9542010-07-29 11:05:41 -0400500 char *ch;
501
Bill Pemberton9b2cef32010-08-05 17:01:06 -0400502 if ((len >= 4) &&
503 (packet[0] == 0x1b) && (packet[1] == 0x1b) &&
Bill Pemberton52af9542010-07-29 11:05:41 -0400504 ((packet[2] == 0x00) || (packet[2] == 0x01))) {
Johan Hovold75bcbf22014-11-18 11:25:21 +0100505 if (packet[2] == 0x00)
Bill Pemberton6b8f1ca2010-08-13 09:59:31 -0400506 ssu100_update_lsr(port, packet[3], &flag);
Bill Pembertonf81c83d2010-08-05 17:01:09 -0400507 if (packet[2] == 0x01)
508 ssu100_update_msr(port, packet[3]);
Bill Pemberton52af9542010-07-29 11:05:41 -0400509
510 len -= 4;
511 ch = packet + 4;
512 } else
513 ch = packet;
514
515 if (!len)
Jiri Slaby2e124b42013-01-03 15:53:06 +0100516 return; /* status only */
Bill Pemberton52af9542010-07-29 11:05:41 -0400517
Johan Hovold37ae2312020-07-08 14:49:54 +0200518 if (port->sysrq) {
Bill Pemberton52af9542010-07-29 11:05:41 -0400519 for (i = 0; i < len; i++, ch++) {
Dmitry Torokhov6ee9f4b2010-08-17 21:15:47 -0700520 if (!usb_serial_handle_sysrq_char(port, *ch))
Jiri Slaby92a19f92013-01-03 15:53:03 +0100521 tty_insert_flip_char(&port->port, *ch, flag);
Bill Pemberton52af9542010-07-29 11:05:41 -0400522 }
Johan Hovold37ae2312020-07-08 14:49:54 +0200523 } else {
Jiri Slaby2f693352013-01-03 15:53:02 +0100524 tty_insert_flip_string_fixed_flag(&port->port, ch, flag, len);
Johan Hovold37ae2312020-07-08 14:49:54 +0200525 }
Bill Pemberton52af9542010-07-29 11:05:41 -0400526
Jiri Slaby2e124b42013-01-03 15:53:06 +0100527 tty_flip_buffer_push(&port->port);
Bill Pemberton52af9542010-07-29 11:05:41 -0400528}
529
Bill Pemberton52af9542010-07-29 11:05:41 -0400530static struct usb_serial_driver ssu100_device = {
531 .driver = {
532 .owner = THIS_MODULE,
533 .name = "ssu100",
534 },
535 .description = DRIVER_DESC,
536 .id_table = id_table,
Bill Pemberton52af9542010-07-29 11:05:41 -0400537 .num_ports = 1,
Bill Pemberton52af9542010-07-29 11:05:41 -0400538 .open = ssu100_open,
Bill Pemberton52af9542010-07-29 11:05:41 -0400539 .attach = ssu100_attach,
Johan Hovold638b9e12012-10-17 16:31:34 +0200540 .port_probe = ssu100_port_probe,
541 .port_remove = ssu100_port_remove,
Bill Pemberton52af9542010-07-29 11:05:41 -0400542 .dtr_rts = ssu100_dtr_rts,
543 .process_read_urb = ssu100_process_read_urb,
544 .tiocmget = ssu100_tiocmget,
545 .tiocmset = ssu100_tiocmset,
Johan Hovoldc24c8382013-03-21 12:37:32 +0100546 .tiocmiwait = usb_serial_generic_tiocmiwait,
Johan Hovold31ecdb6b2013-03-21 12:37:31 +0100547 .get_icount = usb_serial_generic_get_icount,
Al Viroee08cef2018-09-12 07:26:07 -0400548 .get_serial = get_serial_info,
Bill Pemberton52af9542010-07-29 11:05:41 -0400549 .set_termios = ssu100_set_termios,
Bill Pemberton52af9542010-07-29 11:05:41 -0400550};
551
Alan Sternd8603222012-02-23 14:57:25 -0500552static struct usb_serial_driver * const serial_drivers[] = {
553 &ssu100_device, NULL
554};
555
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -0700556module_usb_serial_driver(serial_drivers, id_table);
Bill Pemberton52af9542010-07-29 11:05:41 -0400557
558MODULE_DESCRIPTION(DRIVER_DESC);
Johan Hovold627cfa82017-11-03 18:12:08 +0100559MODULE_LICENSE("GPL v2");