blob: 351745aec0e130786c815e5b81ceec22e918e841 [file] [log] [blame]
Frank A Kingswood6ce76102007-08-22 20:48:58 +01001/*
2 * Copyright 2007, Frank A Kingswood <frank@kingswood-consulting.co.uk>
Werner Cornelius664d5df2009-01-16 21:02:41 +01003 * Copyright 2007, Werner Cornelius <werner@cornelius-consult.de>
4 * Copyright 2009, Boris Hajduk <boris@hajduk.org>
Frank A Kingswood6ce76102007-08-22 20:48:58 +01005 *
6 * ch341.c implements a serial port driver for the Winchiphead CH341.
7 *
8 * The CH341 device can be used to implement an RS232 asynchronous
9 * serial port, an IEEE-1284 parallel printer port or a memory-like
10 * interface. In all cases the CH341 supports an I2C interface as well.
11 * This driver only supports the asynchronous serial interface.
12 *
13 * This program is free software; you can redistribute it and/or
14 * modify it under the terms of the GNU General Public License version
15 * 2 as published by the Free Software Foundation.
16 */
17
18#include <linux/kernel.h>
Frank A Kingswood6ce76102007-08-22 20:48:58 +010019#include <linux/tty.h>
20#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090021#include <linux/slab.h>
Frank A Kingswood6ce76102007-08-22 20:48:58 +010022#include <linux/usb.h>
23#include <linux/usb/serial.h>
24#include <linux/serial.h>
Johan Hovold5be796f2009-12-31 16:47:59 +010025#include <asm/unaligned.h>
Frank A Kingswood6ce76102007-08-22 20:48:58 +010026
Werner Cornelius664d5df2009-01-16 21:02:41 +010027#define DEFAULT_BAUD_RATE 9600
Frank A Kingswood6ce76102007-08-22 20:48:58 +010028#define DEFAULT_TIMEOUT 1000
29
Werner Cornelius664d5df2009-01-16 21:02:41 +010030/* flags for IO-Bits */
31#define CH341_BIT_RTS (1 << 6)
32#define CH341_BIT_DTR (1 << 5)
33
34/******************************/
35/* interrupt pipe definitions */
36/******************************/
37/* always 4 interrupt bytes */
38/* first irq byte normally 0x08 */
39/* second irq byte base 0x7d + below */
40/* third irq byte base 0x94 + below */
41/* fourth irq byte normally 0xee */
42
43/* second interrupt byte */
44#define CH341_MULT_STAT 0x04 /* multiple status since last interrupt event */
45
46/* status returned in third interrupt answer byte, inverted in data
47 from irq */
48#define CH341_BIT_CTS 0x01
49#define CH341_BIT_DSR 0x02
50#define CH341_BIT_RI 0x04
51#define CH341_BIT_DCD 0x08
52#define CH341_BITS_MODEM_STAT 0x0f /* all bits */
53
54/*******************************/
55/* baudrate calculation factor */
56/*******************************/
57#define CH341_BAUDBASE_FACTOR 1532620800
58#define CH341_BAUDBASE_DIVMAX 3
59
Tim Small492896f2009-08-17 13:21:57 +010060/* Break support - the information used to implement this was gleaned from
61 * the Net/FreeBSD uchcom.c driver by Takanori Watanabe. Domo arigato.
62 */
63
Aidan Thornton6fde8d22016-10-22 22:02:23 +010064#define CH341_REQ_READ_VERSION 0x5F
Tim Small492896f2009-08-17 13:21:57 +010065#define CH341_REQ_WRITE_REG 0x9A
66#define CH341_REQ_READ_REG 0x95
Aidan Thornton6fde8d22016-10-22 22:02:23 +010067#define CH341_REQ_SERIAL_INIT 0xA1
68#define CH341_REQ_MODEM_CTRL 0xA4
Tim Small492896f2009-08-17 13:21:57 +010069
Aidan Thornton6fde8d22016-10-22 22:02:23 +010070#define CH341_REG_BREAK 0x05
71#define CH341_REG_LCR 0x18
72#define CH341_NBREAK_BITS 0x01
73
74#define CH341_LCR_ENABLE_RX 0x80
75#define CH341_LCR_ENABLE_TX 0x40
76#define CH341_LCR_MARK_SPACE 0x20
77#define CH341_LCR_PAR_EVEN 0x10
78#define CH341_LCR_ENABLE_PAR 0x08
79#define CH341_LCR_STOP_BITS_2 0x04
80#define CH341_LCR_CS8 0x03
81#define CH341_LCR_CS7 0x02
82#define CH341_LCR_CS6 0x01
83#define CH341_LCR_CS5 0x00
Tim Small492896f2009-08-17 13:21:57 +010084
Németh Márton7d40d7e2010-01-10 15:34:24 +010085static const struct usb_device_id id_table[] = {
Frank A Kingswood6ce76102007-08-22 20:48:58 +010086 { USB_DEVICE(0x4348, 0x5523) },
Michael F. Robbins82078232008-05-16 23:48:42 -040087 { USB_DEVICE(0x1a86, 0x7523) },
wangyanqingd0781382011-03-11 06:24:38 -080088 { USB_DEVICE(0x1a86, 0x5523) },
Frank A Kingswood6ce76102007-08-22 20:48:58 +010089 { },
90};
91MODULE_DEVICE_TABLE(usb, id_table);
92
93struct ch341_private {
Werner Cornelius664d5df2009-01-16 21:02:41 +010094 spinlock_t lock; /* access lock */
Werner Cornelius664d5df2009-01-16 21:02:41 +010095 unsigned baud_rate; /* set baud rate */
Johan Hovoldbeea33d2017-01-06 19:15:20 +010096 u8 mcr;
Johan Hovolde8024462017-01-06 19:15:21 +010097 u8 msr;
Johan Hovold3cca8622017-01-06 19:15:15 +010098 u8 lcr;
Frank A Kingswood6ce76102007-08-22 20:48:58 +010099};
100
Nicolas PLANELaa91def2015-03-01 13:47:22 -0500101static void ch341_set_termios(struct tty_struct *tty,
102 struct usb_serial_port *port,
103 struct ktermios *old_termios);
104
Frank A Kingswood6ce76102007-08-22 20:48:58 +0100105static int ch341_control_out(struct usb_device *dev, u8 request,
106 u16 value, u16 index)
107{
108 int r;
Greg Kroah-Hartman79cbeea2012-09-13 17:18:10 -0700109
Johan Hovold91e0efc2017-01-06 19:15:19 +0100110 dev_dbg(&dev->dev, "%s - (%02x,%04x,%04x)\n", __func__,
111 request, value, index);
Frank A Kingswood6ce76102007-08-22 20:48:58 +0100112
113 r = usb_control_msg(dev, usb_sndctrlpipe(dev, 0), request,
114 USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_OUT,
115 value, index, NULL, 0, DEFAULT_TIMEOUT);
Johan Hovold2d5a9c72017-01-06 19:15:18 +0100116 if (r < 0)
117 dev_err(&dev->dev, "failed to send control message: %d\n", r);
Frank A Kingswood6ce76102007-08-22 20:48:58 +0100118
119 return r;
120}
121
122static int ch341_control_in(struct usb_device *dev,
123 u8 request, u16 value, u16 index,
124 char *buf, unsigned bufsize)
125{
126 int r;
Greg Kroah-Hartman79cbeea2012-09-13 17:18:10 -0700127
Johan Hovold91e0efc2017-01-06 19:15:19 +0100128 dev_dbg(&dev->dev, "%s - (%02x,%04x,%04x,%u)\n", __func__,
129 request, value, index, bufsize);
Frank A Kingswood6ce76102007-08-22 20:48:58 +0100130
131 r = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0), request,
132 USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_IN,
133 value, index, buf, bufsize, DEFAULT_TIMEOUT);
Johan Hovold2d5a9c72017-01-06 19:15:18 +0100134 if (r < bufsize) {
135 if (r >= 0) {
136 dev_err(&dev->dev,
137 "short control message received (%d < %u)\n",
138 r, bufsize);
139 r = -EIO;
140 }
141
142 dev_err(&dev->dev, "failed to receive control message: %d\n",
143 r);
144 return r;
145 }
146
147 return 0;
Frank A Kingswood6ce76102007-08-22 20:48:58 +0100148}
149
Johan Hovold55fa15b2017-01-06 19:15:16 +0100150static int ch341_set_baudrate_lcr(struct usb_device *dev,
151 struct ch341_private *priv, u8 lcr)
Frank A Kingswood6ce76102007-08-22 20:48:58 +0100152{
Aidan Thornton4e46c412016-10-22 22:02:24 +0100153 short a;
Frank A Kingswood6ce76102007-08-22 20:48:58 +0100154 int r;
Werner Cornelius664d5df2009-01-16 21:02:41 +0100155 unsigned long factor;
156 short divisor;
Frank A Kingswood6ce76102007-08-22 20:48:58 +0100157
Werner Cornelius664d5df2009-01-16 21:02:41 +0100158 if (!priv->baud_rate)
Frank A Kingswood6ce76102007-08-22 20:48:58 +0100159 return -EINVAL;
Werner Cornelius664d5df2009-01-16 21:02:41 +0100160 factor = (CH341_BAUDBASE_FACTOR / priv->baud_rate);
161 divisor = CH341_BAUDBASE_DIVMAX;
162
163 while ((factor > 0xfff0) && divisor) {
164 factor >>= 3;
165 divisor--;
Frank A Kingswood6ce76102007-08-22 20:48:58 +0100166 }
167
Werner Cornelius664d5df2009-01-16 21:02:41 +0100168 if (factor > 0xfff0)
169 return -EINVAL;
170
171 factor = 0x10000 - factor;
172 a = (factor & 0xff00) | divisor;
Werner Cornelius664d5df2009-01-16 21:02:41 +0100173
Johan Hovold55fa15b2017-01-06 19:15:16 +0100174 /*
175 * CH341A buffers data until a full endpoint-size packet (32 bytes)
176 * has been received unless bit 7 is set.
177 */
178 a |= BIT(7);
179
180 r = ch341_control_out(dev, CH341_REQ_WRITE_REG, 0x1312, a);
181 if (r)
182 return r;
183
184 r = ch341_control_out(dev, CH341_REQ_WRITE_REG, 0x2518, lcr);
185 if (r)
186 return r;
Frank A Kingswood6ce76102007-08-22 20:48:58 +0100187
188 return r;
189}
190
Werner Cornelius664d5df2009-01-16 21:02:41 +0100191static int ch341_set_handshake(struct usb_device *dev, u8 control)
Frank A Kingswood6ce76102007-08-22 20:48:58 +0100192{
Aidan Thornton6fde8d22016-10-22 22:02:23 +0100193 return ch341_control_out(dev, CH341_REQ_MODEM_CTRL, ~control, 0);
Frank A Kingswood6ce76102007-08-22 20:48:58 +0100194}
195
Werner Cornelius664d5df2009-01-16 21:02:41 +0100196static int ch341_get_status(struct usb_device *dev, struct ch341_private *priv)
Frank A Kingswood6ce76102007-08-22 20:48:58 +0100197{
Johan Hovold2d5a9c72017-01-06 19:15:18 +0100198 const unsigned int size = 2;
Frank A Kingswood6ce76102007-08-22 20:48:58 +0100199 char *buffer;
200 int r;
Werner Cornelius664d5df2009-01-16 21:02:41 +0100201 unsigned long flags;
Frank A Kingswood6ce76102007-08-22 20:48:58 +0100202
Frank A Kingswood6ce76102007-08-22 20:48:58 +0100203 buffer = kmalloc(size, GFP_KERNEL);
204 if (!buffer)
205 return -ENOMEM;
206
Aidan Thornton6fde8d22016-10-22 22:02:23 +0100207 r = ch341_control_in(dev, CH341_REQ_READ_REG, 0x0706, 0, buffer, size);
Alan Coxc4d0f8c2008-04-29 14:35:39 +0100208 if (r < 0)
Frank A Kingswood6ce76102007-08-22 20:48:58 +0100209 goto out;
210
Johan Hovold2d5a9c72017-01-06 19:15:18 +0100211 spin_lock_irqsave(&priv->lock, flags);
Johan Hovolde8024462017-01-06 19:15:21 +0100212 priv->msr = (~(*buffer)) & CH341_BITS_MODEM_STAT;
Johan Hovold2d5a9c72017-01-06 19:15:18 +0100213 spin_unlock_irqrestore(&priv->lock, flags);
Frank A Kingswood6ce76102007-08-22 20:48:58 +0100214
215out: kfree(buffer);
216 return r;
217}
218
219/* -------------------------------------------------------------------------- */
220
Adrian Bunk93b64972007-09-09 22:25:04 +0200221static int ch341_configure(struct usb_device *dev, struct ch341_private *priv)
Frank A Kingswood6ce76102007-08-22 20:48:58 +0100222{
Johan Hovold2d5a9c72017-01-06 19:15:18 +0100223 const unsigned int size = 2;
Frank A Kingswood6ce76102007-08-22 20:48:58 +0100224 char *buffer;
225 int r;
Frank A Kingswood6ce76102007-08-22 20:48:58 +0100226
Frank A Kingswood6ce76102007-08-22 20:48:58 +0100227 buffer = kmalloc(size, GFP_KERNEL);
228 if (!buffer)
229 return -ENOMEM;
230
231 /* expect two bytes 0x27 0x00 */
Aidan Thornton6fde8d22016-10-22 22:02:23 +0100232 r = ch341_control_in(dev, CH341_REQ_READ_VERSION, 0, 0, buffer, size);
Frank A Kingswood6ce76102007-08-22 20:48:58 +0100233 if (r < 0)
234 goto out;
Aidan Thorntona98b6902016-10-22 22:02:26 +0100235 dev_dbg(&dev->dev, "Chip version: 0x%02x\n", buffer[0]);
Frank A Kingswood6ce76102007-08-22 20:48:58 +0100236
Aidan Thornton6fde8d22016-10-22 22:02:23 +0100237 r = ch341_control_out(dev, CH341_REQ_SERIAL_INIT, 0, 0);
Frank A Kingswood6ce76102007-08-22 20:48:58 +0100238 if (r < 0)
239 goto out;
240
Johan Hovold55fa15b2017-01-06 19:15:16 +0100241 r = ch341_set_baudrate_lcr(dev, priv, priv->lcr);
Frank A Kingswood6ce76102007-08-22 20:48:58 +0100242 if (r < 0)
243 goto out;
244
Johan Hovoldbeea33d2017-01-06 19:15:20 +0100245 r = ch341_set_handshake(dev, priv->mcr);
Frank A Kingswood6ce76102007-08-22 20:48:58 +0100246
247out: kfree(buffer);
248 return r;
249}
250
Johan Hovold456c5be2012-10-25 10:29:03 +0200251static int ch341_port_probe(struct usb_serial_port *port)
Frank A Kingswood6ce76102007-08-22 20:48:58 +0100252{
253 struct ch341_private *priv;
254 int r;
255
Frank A Kingswood6ce76102007-08-22 20:48:58 +0100256 priv = kzalloc(sizeof(struct ch341_private), GFP_KERNEL);
257 if (!priv)
258 return -ENOMEM;
259
Werner Cornelius664d5df2009-01-16 21:02:41 +0100260 spin_lock_init(&priv->lock);
Frank A Kingswood6ce76102007-08-22 20:48:58 +0100261 priv->baud_rate = DEFAULT_BAUD_RATE;
Johan Hovold7c61b0d2017-01-06 19:15:23 +0100262 /*
263 * Some CH340 devices appear unable to change the initial LCR
264 * settings, so set a sane 8N1 default.
265 */
266 priv->lcr = CH341_LCR_ENABLE_RX | CH341_LCR_ENABLE_TX | CH341_LCR_CS8;
Frank A Kingswood6ce76102007-08-22 20:48:58 +0100267
Johan Hovold456c5be2012-10-25 10:29:03 +0200268 r = ch341_configure(port->serial->dev, priv);
Frank A Kingswood6ce76102007-08-22 20:48:58 +0100269 if (r < 0)
270 goto error;
271
Johan Hovold456c5be2012-10-25 10:29:03 +0200272 usb_set_serial_port_data(port, priv);
Frank A Kingswood6ce76102007-08-22 20:48:58 +0100273 return 0;
274
275error: kfree(priv);
276 return r;
277}
278
Johan Hovold456c5be2012-10-25 10:29:03 +0200279static int ch341_port_remove(struct usb_serial_port *port)
280{
281 struct ch341_private *priv;
282
283 priv = usb_get_serial_port_data(port);
284 kfree(priv);
285
286 return 0;
287}
288
Alan Cox335f8512009-06-11 12:26:29 +0100289static int ch341_carrier_raised(struct usb_serial_port *port)
290{
291 struct ch341_private *priv = usb_get_serial_port_data(port);
Johan Hovolde8024462017-01-06 19:15:21 +0100292 if (priv->msr & CH341_BIT_DCD)
Alan Cox335f8512009-06-11 12:26:29 +0100293 return 1;
294 return 0;
295}
296
297static void ch341_dtr_rts(struct usb_serial_port *port, int on)
Werner Cornelius664d5df2009-01-16 21:02:41 +0100298{
299 struct ch341_private *priv = usb_get_serial_port_data(port);
300 unsigned long flags;
Werner Cornelius664d5df2009-01-16 21:02:41 +0100301
Alan Cox335f8512009-06-11 12:26:29 +0100302 /* drop DTR and RTS */
303 spin_lock_irqsave(&priv->lock, flags);
304 if (on)
Johan Hovoldbeea33d2017-01-06 19:15:20 +0100305 priv->mcr |= CH341_BIT_RTS | CH341_BIT_DTR;
Alan Cox335f8512009-06-11 12:26:29 +0100306 else
Johan Hovoldbeea33d2017-01-06 19:15:20 +0100307 priv->mcr &= ~(CH341_BIT_RTS | CH341_BIT_DTR);
Alan Cox335f8512009-06-11 12:26:29 +0100308 spin_unlock_irqrestore(&priv->lock, flags);
Johan Hovoldbeea33d2017-01-06 19:15:20 +0100309 ch341_set_handshake(port->serial->dev, priv->mcr);
Alan Cox335f8512009-06-11 12:26:29 +0100310}
311
312static void ch341_close(struct usb_serial_port *port)
313{
Johan Hovoldf26788d2010-03-17 23:00:45 +0100314 usb_serial_generic_close(port);
Werner Cornelius664d5df2009-01-16 21:02:41 +0100315 usb_kill_urb(port->interrupt_in_urb);
Werner Cornelius664d5df2009-01-16 21:02:41 +0100316}
317
318
Frank A Kingswood6ce76102007-08-22 20:48:58 +0100319/* open this device, set default parameters */
Alan Coxa509a7e2009-09-19 13:13:26 -0700320static int ch341_open(struct tty_struct *tty, struct usb_serial_port *port)
Frank A Kingswood6ce76102007-08-22 20:48:58 +0100321{
Johan Hovold456c5be2012-10-25 10:29:03 +0200322 struct ch341_private *priv = usb_get_serial_port_data(port);
Frank A Kingswood6ce76102007-08-22 20:48:58 +0100323 int r;
324
Nicolas PLANELaa91def2015-03-01 13:47:22 -0500325 if (tty)
326 ch341_set_termios(tty, port, NULL);
Frank A Kingswood6ce76102007-08-22 20:48:58 +0100327
Johan Hovoldd9a38a82014-03-12 19:09:42 +0100328 dev_dbg(&port->dev, "%s - submitting interrupt urb\n", __func__);
Werner Cornelius664d5df2009-01-16 21:02:41 +0100329 r = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL);
330 if (r) {
Johan Hovoldd9a38a82014-03-12 19:09:42 +0100331 dev_err(&port->dev, "%s - failed to submit interrupt urb: %d\n",
332 __func__, r);
Johan Hovoldf2950b72017-01-06 19:15:13 +0100333 return r;
Werner Cornelius664d5df2009-01-16 21:02:41 +0100334 }
335
Johan Hovolda0467a92017-01-06 19:15:17 +0100336 r = ch341_get_status(port->serial->dev, priv);
337 if (r < 0) {
338 dev_err(&port->dev, "failed to read modem status: %d\n", r);
339 goto err_kill_interrupt_urb;
340 }
341
Alan Coxa509a7e2009-09-19 13:13:26 -0700342 r = usb_serial_generic_open(tty, port);
Johan Hovoldf2950b72017-01-06 19:15:13 +0100343 if (r)
344 goto err_kill_interrupt_urb;
Frank A Kingswood6ce76102007-08-22 20:48:58 +0100345
Johan Hovoldf2950b72017-01-06 19:15:13 +0100346 return 0;
347
348err_kill_interrupt_urb:
349 usb_kill_urb(port->interrupt_in_urb);
350
351 return r;
Frank A Kingswood6ce76102007-08-22 20:48:58 +0100352}
353
354/* Old_termios contains the original termios settings and
355 * tty->termios contains the new setting to be used.
356 */
Alan Cox95da3102008-07-22 11:09:07 +0100357static void ch341_set_termios(struct tty_struct *tty,
358 struct usb_serial_port *port, struct ktermios *old_termios)
Frank A Kingswood6ce76102007-08-22 20:48:58 +0100359{
360 struct ch341_private *priv = usb_get_serial_port_data(port);
Frank A Kingswood6ce76102007-08-22 20:48:58 +0100361 unsigned baud_rate;
Werner Cornelius664d5df2009-01-16 21:02:41 +0100362 unsigned long flags;
Johan Hovold448b6dc2017-01-06 19:15:22 +0100363 u8 lcr;
Aidan Thornton4e46c412016-10-22 22:02:24 +0100364 int r;
365
366 /* redundant changes may cause the chip to lose bytes */
367 if (old_termios && !tty_termios_hw_change(&tty->termios, old_termios))
368 return;
Frank A Kingswood6ce76102007-08-22 20:48:58 +0100369
Frank A Kingswood6ce76102007-08-22 20:48:58 +0100370 baud_rate = tty_get_baud_rate(tty);
371
Johan Hovold448b6dc2017-01-06 19:15:22 +0100372 lcr = CH341_LCR_ENABLE_RX | CH341_LCR_ENABLE_TX;
Werner Cornelius664d5df2009-01-16 21:02:41 +0100373
Aidan Thorntonba781bd2016-10-22 22:02:25 +0100374 switch (C_CSIZE(tty)) {
375 case CS5:
Johan Hovold448b6dc2017-01-06 19:15:22 +0100376 lcr |= CH341_LCR_CS5;
Aidan Thorntonba781bd2016-10-22 22:02:25 +0100377 break;
378 case CS6:
Johan Hovold448b6dc2017-01-06 19:15:22 +0100379 lcr |= CH341_LCR_CS6;
Aidan Thorntonba781bd2016-10-22 22:02:25 +0100380 break;
381 case CS7:
Johan Hovold448b6dc2017-01-06 19:15:22 +0100382 lcr |= CH341_LCR_CS7;
Aidan Thorntonba781bd2016-10-22 22:02:25 +0100383 break;
384 case CS8:
Johan Hovold448b6dc2017-01-06 19:15:22 +0100385 lcr |= CH341_LCR_CS8;
Aidan Thorntonba781bd2016-10-22 22:02:25 +0100386 break;
387 }
388
389 if (C_PARENB(tty)) {
Johan Hovold448b6dc2017-01-06 19:15:22 +0100390 lcr |= CH341_LCR_ENABLE_PAR;
Aidan Thorntonba781bd2016-10-22 22:02:25 +0100391 if (C_PARODD(tty) == 0)
Johan Hovold448b6dc2017-01-06 19:15:22 +0100392 lcr |= CH341_LCR_PAR_EVEN;
Aidan Thorntonba781bd2016-10-22 22:02:25 +0100393 if (C_CMSPAR(tty))
Johan Hovold448b6dc2017-01-06 19:15:22 +0100394 lcr |= CH341_LCR_MARK_SPACE;
Aidan Thorntonba781bd2016-10-22 22:02:25 +0100395 }
396
397 if (C_CSTOPB(tty))
Johan Hovold448b6dc2017-01-06 19:15:22 +0100398 lcr |= CH341_LCR_STOP_BITS_2;
Aidan Thornton4e46c412016-10-22 22:02:24 +0100399
Werner Cornelius664d5df2009-01-16 21:02:41 +0100400 if (baud_rate) {
Johan Hovolda20047f2017-01-06 19:15:11 +0100401 priv->baud_rate = baud_rate;
402
Johan Hovold448b6dc2017-01-06 19:15:22 +0100403 r = ch341_set_baudrate_lcr(port->serial->dev, priv, lcr);
Aidan Thornton4e46c412016-10-22 22:02:24 +0100404 if (r < 0 && old_termios) {
405 priv->baud_rate = tty_termios_baud_rate(old_termios);
406 tty_termios_copy_hw(&tty->termios, old_termios);
Johan Hovold3cca8622017-01-06 19:15:15 +0100407 } else if (r == 0) {
Johan Hovold448b6dc2017-01-06 19:15:22 +0100408 priv->lcr = lcr;
Aidan Thornton4e46c412016-10-22 22:02:24 +0100409 }
Frank A Kingswood6ce76102007-08-22 20:48:58 +0100410 }
411
Johan Hovold030ee7a2017-01-06 19:15:12 +0100412 spin_lock_irqsave(&priv->lock, flags);
413 if (C_BAUD(tty) == B0)
Johan Hovoldbeea33d2017-01-06 19:15:20 +0100414 priv->mcr &= ~(CH341_BIT_DTR | CH341_BIT_RTS);
Johan Hovold030ee7a2017-01-06 19:15:12 +0100415 else if (old_termios && (old_termios->c_cflag & CBAUD) == B0)
Johan Hovoldbeea33d2017-01-06 19:15:20 +0100416 priv->mcr |= (CH341_BIT_DTR | CH341_BIT_RTS);
Johan Hovold030ee7a2017-01-06 19:15:12 +0100417 spin_unlock_irqrestore(&priv->lock, flags);
Frank A Kingswood6ce76102007-08-22 20:48:58 +0100418
Johan Hovoldbeea33d2017-01-06 19:15:20 +0100419 ch341_set_handshake(port->serial->dev, priv->mcr);
Werner Cornelius664d5df2009-01-16 21:02:41 +0100420}
Alan Cox73f59302007-10-18 01:24:18 -0700421
Tim Small492896f2009-08-17 13:21:57 +0100422static void ch341_break_ctl(struct tty_struct *tty, int break_state)
423{
424 const uint16_t ch341_break_reg =
Aidan Thornton6fde8d22016-10-22 22:02:23 +0100425 ((uint16_t) CH341_REG_LCR << 8) | CH341_REG_BREAK;
Tim Small492896f2009-08-17 13:21:57 +0100426 struct usb_serial_port *port = tty->driver_data;
427 int r;
428 uint16_t reg_contents;
Johan Hovoldf2b5cc82009-12-28 23:01:46 +0100429 uint8_t *break_reg;
Tim Small492896f2009-08-17 13:21:57 +0100430
Johan Hovoldf2b5cc82009-12-28 23:01:46 +0100431 break_reg = kmalloc(2, GFP_KERNEL);
Johan Hovold10c642d2013-12-29 19:22:56 +0100432 if (!break_reg)
Johan Hovoldf2b5cc82009-12-28 23:01:46 +0100433 return;
Johan Hovoldf2b5cc82009-12-28 23:01:46 +0100434
Tim Small492896f2009-08-17 13:21:57 +0100435 r = ch341_control_in(port->serial->dev, CH341_REQ_READ_REG,
Johan Hovoldf2b5cc82009-12-28 23:01:46 +0100436 ch341_break_reg, 0, break_reg, 2);
Tim Small492896f2009-08-17 13:21:57 +0100437 if (r < 0) {
Johan Hovold6a9b15f2009-12-28 23:01:45 +0100438 dev_err(&port->dev, "%s - USB control read error (%d)\n",
439 __func__, r);
Johan Hovoldf2b5cc82009-12-28 23:01:46 +0100440 goto out;
Tim Small492896f2009-08-17 13:21:57 +0100441 }
Greg Kroah-Hartman79cbeea2012-09-13 17:18:10 -0700442 dev_dbg(&port->dev, "%s - initial ch341 break register contents - reg1: %x, reg2: %x\n",
443 __func__, break_reg[0], break_reg[1]);
Tim Small492896f2009-08-17 13:21:57 +0100444 if (break_state != 0) {
Greg Kroah-Hartman79cbeea2012-09-13 17:18:10 -0700445 dev_dbg(&port->dev, "%s - Enter break state requested\n", __func__);
Aidan Thornton6fde8d22016-10-22 22:02:23 +0100446 break_reg[0] &= ~CH341_NBREAK_BITS;
447 break_reg[1] &= ~CH341_LCR_ENABLE_TX;
Tim Small492896f2009-08-17 13:21:57 +0100448 } else {
Greg Kroah-Hartman79cbeea2012-09-13 17:18:10 -0700449 dev_dbg(&port->dev, "%s - Leave break state requested\n", __func__);
Aidan Thornton6fde8d22016-10-22 22:02:23 +0100450 break_reg[0] |= CH341_NBREAK_BITS;
451 break_reg[1] |= CH341_LCR_ENABLE_TX;
Tim Small492896f2009-08-17 13:21:57 +0100452 }
Greg Kroah-Hartman79cbeea2012-09-13 17:18:10 -0700453 dev_dbg(&port->dev, "%s - New ch341 break register contents - reg1: %x, reg2: %x\n",
454 __func__, break_reg[0], break_reg[1]);
Johan Hovold5be796f2009-12-31 16:47:59 +0100455 reg_contents = get_unaligned_le16(break_reg);
Tim Small492896f2009-08-17 13:21:57 +0100456 r = ch341_control_out(port->serial->dev, CH341_REQ_WRITE_REG,
457 ch341_break_reg, reg_contents);
458 if (r < 0)
Johan Hovold6a9b15f2009-12-28 23:01:45 +0100459 dev_err(&port->dev, "%s - USB control write error (%d)\n",
460 __func__, r);
Johan Hovoldf2b5cc82009-12-28 23:01:46 +0100461out:
462 kfree(break_reg);
Tim Small492896f2009-08-17 13:21:57 +0100463}
464
Alan Cox20b9d172011-02-14 16:26:50 +0000465static int ch341_tiocmset(struct tty_struct *tty,
Werner Cornelius664d5df2009-01-16 21:02:41 +0100466 unsigned int set, unsigned int clear)
467{
468 struct usb_serial_port *port = tty->driver_data;
469 struct ch341_private *priv = usb_get_serial_port_data(port);
470 unsigned long flags;
471 u8 control;
472
473 spin_lock_irqsave(&priv->lock, flags);
474 if (set & TIOCM_RTS)
Johan Hovoldbeea33d2017-01-06 19:15:20 +0100475 priv->mcr |= CH341_BIT_RTS;
Werner Cornelius664d5df2009-01-16 21:02:41 +0100476 if (set & TIOCM_DTR)
Johan Hovoldbeea33d2017-01-06 19:15:20 +0100477 priv->mcr |= CH341_BIT_DTR;
Werner Cornelius664d5df2009-01-16 21:02:41 +0100478 if (clear & TIOCM_RTS)
Johan Hovoldbeea33d2017-01-06 19:15:20 +0100479 priv->mcr &= ~CH341_BIT_RTS;
Werner Cornelius664d5df2009-01-16 21:02:41 +0100480 if (clear & TIOCM_DTR)
Johan Hovoldbeea33d2017-01-06 19:15:20 +0100481 priv->mcr &= ~CH341_BIT_DTR;
482 control = priv->mcr;
Werner Cornelius664d5df2009-01-16 21:02:41 +0100483 spin_unlock_irqrestore(&priv->lock, flags);
484
485 return ch341_set_handshake(port->serial->dev, control);
486}
487
Johan Hovolde8024462017-01-06 19:15:21 +0100488static void ch341_update_status(struct usb_serial_port *port,
Johan Hovoldac035622014-01-02 22:49:28 +0100489 unsigned char *data, size_t len)
490{
491 struct ch341_private *priv = usb_get_serial_port_data(port);
Johan Hovoldb7700812014-01-02 22:49:29 +0100492 struct tty_struct *tty;
Johan Hovoldac035622014-01-02 22:49:28 +0100493 unsigned long flags;
Johan Hovoldb7700812014-01-02 22:49:29 +0100494 u8 status;
495 u8 delta;
Johan Hovoldac035622014-01-02 22:49:28 +0100496
497 if (len < 4)
498 return;
499
Johan Hovoldb7700812014-01-02 22:49:29 +0100500 status = ~data[2] & CH341_BITS_MODEM_STAT;
501
Johan Hovoldac035622014-01-02 22:49:28 +0100502 spin_lock_irqsave(&priv->lock, flags);
Johan Hovolde8024462017-01-06 19:15:21 +0100503 delta = status ^ priv->msr;
504 priv->msr = status;
Johan Hovoldac035622014-01-02 22:49:28 +0100505 spin_unlock_irqrestore(&priv->lock, flags);
506
Johan Hovoldfd74b0b2014-01-02 22:49:30 +0100507 if (data[1] & CH341_MULT_STAT)
508 dev_dbg(&port->dev, "%s - multiple status change\n", __func__);
509
Johan Hovoldd984fe92014-01-02 22:49:31 +0100510 if (!delta)
511 return;
512
Johan Hovold5e409a22014-01-02 22:49:32 +0100513 if (delta & CH341_BIT_CTS)
514 port->icount.cts++;
515 if (delta & CH341_BIT_DSR)
516 port->icount.dsr++;
517 if (delta & CH341_BIT_RI)
518 port->icount.rng++;
Johan Hovoldb7700812014-01-02 22:49:29 +0100519 if (delta & CH341_BIT_DCD) {
Johan Hovold5e409a22014-01-02 22:49:32 +0100520 port->icount.dcd++;
Johan Hovoldb7700812014-01-02 22:49:29 +0100521 tty = tty_port_tty_get(&port->port);
522 if (tty) {
Johan Hovoldac035622014-01-02 22:49:28 +0100523 usb_serial_handle_dcd_change(port, tty,
Johan Hovoldb7700812014-01-02 22:49:29 +0100524 status & CH341_BIT_DCD);
525 tty_kref_put(tty);
526 }
Johan Hovoldac035622014-01-02 22:49:28 +0100527 }
528
529 wake_up_interruptible(&port->port.delta_msr_wait);
530}
531
Werner Cornelius664d5df2009-01-16 21:02:41 +0100532static void ch341_read_int_callback(struct urb *urb)
533{
Johan Hovold271ec2d2014-01-02 22:49:33 +0100534 struct usb_serial_port *port = urb->context;
Werner Cornelius664d5df2009-01-16 21:02:41 +0100535 unsigned char *data = urb->transfer_buffer;
Johan Hovold271ec2d2014-01-02 22:49:33 +0100536 unsigned int len = urb->actual_length;
Werner Cornelius664d5df2009-01-16 21:02:41 +0100537 int status;
538
Werner Cornelius664d5df2009-01-16 21:02:41 +0100539 switch (urb->status) {
540 case 0:
541 /* success */
542 break;
543 case -ECONNRESET:
544 case -ENOENT:
545 case -ESHUTDOWN:
546 /* this urb is terminated, clean up */
Johan Hovold271ec2d2014-01-02 22:49:33 +0100547 dev_dbg(&urb->dev->dev, "%s - urb shutting down: %d\n",
Greg Kroah-Hartman79cbeea2012-09-13 17:18:10 -0700548 __func__, urb->status);
Werner Cornelius664d5df2009-01-16 21:02:41 +0100549 return;
550 default:
Johan Hovold271ec2d2014-01-02 22:49:33 +0100551 dev_dbg(&urb->dev->dev, "%s - nonzero urb status: %d\n",
Greg Kroah-Hartman79cbeea2012-09-13 17:18:10 -0700552 __func__, urb->status);
Werner Cornelius664d5df2009-01-16 21:02:41 +0100553 goto exit;
554 }
555
Johan Hovold271ec2d2014-01-02 22:49:33 +0100556 usb_serial_debug_data(&port->dev, __func__, len, data);
Johan Hovolde8024462017-01-06 19:15:21 +0100557 ch341_update_status(port, data, len);
Werner Cornelius664d5df2009-01-16 21:02:41 +0100558exit:
559 status = usb_submit_urb(urb, GFP_ATOMIC);
Johan Hovold271ec2d2014-01-02 22:49:33 +0100560 if (status) {
561 dev_err(&urb->dev->dev, "%s - usb_submit_urb failed: %d\n",
Werner Cornelius664d5df2009-01-16 21:02:41 +0100562 __func__, status);
Johan Hovold271ec2d2014-01-02 22:49:33 +0100563 }
Werner Cornelius664d5df2009-01-16 21:02:41 +0100564}
565
Alan Cox60b33c12011-02-14 16:26:14 +0000566static int ch341_tiocmget(struct tty_struct *tty)
Werner Cornelius664d5df2009-01-16 21:02:41 +0100567{
568 struct usb_serial_port *port = tty->driver_data;
569 struct ch341_private *priv = usb_get_serial_port_data(port);
570 unsigned long flags;
571 u8 mcr;
572 u8 status;
573 unsigned int result;
574
Werner Cornelius664d5df2009-01-16 21:02:41 +0100575 spin_lock_irqsave(&priv->lock, flags);
Johan Hovoldbeea33d2017-01-06 19:15:20 +0100576 mcr = priv->mcr;
Johan Hovolde8024462017-01-06 19:15:21 +0100577 status = priv->msr;
Werner Cornelius664d5df2009-01-16 21:02:41 +0100578 spin_unlock_irqrestore(&priv->lock, flags);
579
580 result = ((mcr & CH341_BIT_DTR) ? TIOCM_DTR : 0)
581 | ((mcr & CH341_BIT_RTS) ? TIOCM_RTS : 0)
582 | ((status & CH341_BIT_CTS) ? TIOCM_CTS : 0)
583 | ((status & CH341_BIT_DSR) ? TIOCM_DSR : 0)
584 | ((status & CH341_BIT_RI) ? TIOCM_RI : 0)
585 | ((status & CH341_BIT_DCD) ? TIOCM_CD : 0);
586
Greg Kroah-Hartman79cbeea2012-09-13 17:18:10 -0700587 dev_dbg(&port->dev, "%s - result = %x\n", __func__, result);
Werner Cornelius664d5df2009-01-16 21:02:41 +0100588
589 return result;
Frank A Kingswood6ce76102007-08-22 20:48:58 +0100590}
591
Greg Kroah-Hartman622b80c2012-05-15 15:41:47 -0700592static int ch341_reset_resume(struct usb_serial *serial)
Ming Lei1ded7ea2009-02-20 21:23:09 +0800593{
Johan Hovoldce5e2922017-01-06 19:15:14 +0100594 struct usb_serial_port *port = serial->port[0];
595 struct ch341_private *priv = usb_get_serial_port_data(port);
596 int ret;
Ming Lei1ded7ea2009-02-20 21:23:09 +0800597
Greg Kroah-Hartman2bfd1c92012-05-07 14:10:27 -0700598 /* reconfigure ch341 serial port after bus-reset */
599 ch341_configure(serial->dev, priv);
Ming Lei1ded7ea2009-02-20 21:23:09 +0800600
Johan Hovoldce5e2922017-01-06 19:15:14 +0100601 if (tty_port_initialized(&port->port)) {
602 ret = usb_submit_urb(port->interrupt_in_urb, GFP_NOIO);
603 if (ret) {
604 dev_err(&port->dev, "failed to submit interrupt urb: %d\n",
605 ret);
606 return ret;
607 }
Johan Hovolda0467a92017-01-06 19:15:17 +0100608
609 ret = ch341_get_status(port->serial->dev, priv);
610 if (ret < 0) {
611 dev_err(&port->dev, "failed to read modem status: %d\n",
612 ret);
613 }
Johan Hovoldce5e2922017-01-06 19:15:14 +0100614 }
615
616 return usb_serial_generic_resume(serial);
Ming Lei1ded7ea2009-02-20 21:23:09 +0800617}
618
Frank A Kingswood6ce76102007-08-22 20:48:58 +0100619static struct usb_serial_driver ch341_device = {
620 .driver = {
621 .owner = THIS_MODULE,
622 .name = "ch341-uart",
623 },
Werner Cornelius664d5df2009-01-16 21:02:41 +0100624 .id_table = id_table,
Werner Cornelius664d5df2009-01-16 21:02:41 +0100625 .num_ports = 1,
626 .open = ch341_open,
Alan Cox335f8512009-06-11 12:26:29 +0100627 .dtr_rts = ch341_dtr_rts,
628 .carrier_raised = ch341_carrier_raised,
Werner Cornelius664d5df2009-01-16 21:02:41 +0100629 .close = ch341_close,
Werner Cornelius664d5df2009-01-16 21:02:41 +0100630 .set_termios = ch341_set_termios,
Tim Small492896f2009-08-17 13:21:57 +0100631 .break_ctl = ch341_break_ctl,
Werner Cornelius664d5df2009-01-16 21:02:41 +0100632 .tiocmget = ch341_tiocmget,
633 .tiocmset = ch341_tiocmset,
Johan Hovold5e409a22014-01-02 22:49:32 +0100634 .tiocmiwait = usb_serial_generic_tiocmiwait,
Werner Cornelius664d5df2009-01-16 21:02:41 +0100635 .read_int_callback = ch341_read_int_callback,
Johan Hovold456c5be2012-10-25 10:29:03 +0200636 .port_probe = ch341_port_probe,
637 .port_remove = ch341_port_remove,
Greg Kroah-Hartman1c1eaba2012-05-16 08:36:13 -0700638 .reset_resume = ch341_reset_resume,
Frank A Kingswood6ce76102007-08-22 20:48:58 +0100639};
640
Alan Stern08a4f6b2012-02-23 14:56:17 -0500641static struct usb_serial_driver * const serial_drivers[] = {
642 &ch341_device, NULL
643};
644
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -0700645module_usb_serial_driver(serial_drivers, id_table);
Frank A Kingswood6ce76102007-08-22 20:48:58 +0100646
Frank A Kingswood6ce76102007-08-22 20:48:58 +0100647MODULE_LICENSE("GPL");