USB: serial: ch341: fix open error handling
[pandora-kernel.git] / drivers / usb / serial / ch341.c
1 /*
2  * Copyright 2007, Frank A Kingswood <frank@kingswood-consulting.co.uk>
3  * Copyright 2007, Werner Cornelius <werner@cornelius-consult.de>
4  * Copyright 2009, Boris Hajduk <boris@hajduk.org>
5  *
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>
19 #include <linux/init.h>
20 #include <linux/tty.h>
21 #include <linux/module.h>
22 #include <linux/slab.h>
23 #include <linux/usb.h>
24 #include <linux/usb/serial.h>
25 #include <linux/serial.h>
26 #include <asm/unaligned.h>
27
28 #define DEFAULT_BAUD_RATE 9600
29 #define DEFAULT_TIMEOUT   1000
30
31 /* flags for IO-Bits */
32 #define CH341_BIT_RTS (1 << 6)
33 #define CH341_BIT_DTR (1 << 5)
34
35 /******************************/
36 /* interrupt pipe definitions */
37 /******************************/
38 /* always 4 interrupt bytes */
39 /* first irq byte normally 0x08 */
40 /* second irq byte base 0x7d + below */
41 /* third irq byte base 0x94 + below */
42 /* fourth irq byte normally 0xee */
43
44 /* second interrupt byte */
45 #define CH341_MULT_STAT 0x04 /* multiple status since last interrupt event */
46
47 /* status returned in third interrupt answer byte, inverted in data
48    from irq */
49 #define CH341_BIT_CTS 0x01
50 #define CH341_BIT_DSR 0x02
51 #define CH341_BIT_RI  0x04
52 #define CH341_BIT_DCD 0x08
53 #define CH341_BITS_MODEM_STAT 0x0f /* all bits */
54
55 /*******************************/
56 /* baudrate calculation factor */
57 /*******************************/
58 #define CH341_BAUDBASE_FACTOR 1532620800
59 #define CH341_BAUDBASE_DIVMAX 3
60
61 /* Break support - the information used to implement this was gleaned from
62  * the Net/FreeBSD uchcom.c driver by Takanori Watanabe.  Domo arigato.
63  */
64
65 #define CH341_REQ_READ_VERSION 0x5F
66 #define CH341_REQ_WRITE_REG    0x9A
67 #define CH341_REQ_READ_REG     0x95
68 #define CH341_REQ_SERIAL_INIT  0xA1
69 #define CH341_REQ_MODEM_CTRL   0xA4
70
71 #define CH341_REG_BREAK        0x05
72 #define CH341_REG_LCR          0x18
73 #define CH341_NBREAK_BITS      0x01
74
75 #define CH341_LCR_ENABLE_RX    0x80
76 #define CH341_LCR_ENABLE_TX    0x40
77 #define CH341_LCR_MARK_SPACE   0x20
78 #define CH341_LCR_PAR_EVEN     0x10
79 #define CH341_LCR_ENABLE_PAR   0x08
80 #define CH341_LCR_STOP_BITS_2  0x04
81 #define CH341_LCR_CS8          0x03
82 #define CH341_LCR_CS7          0x02
83 #define CH341_LCR_CS6          0x01
84 #define CH341_LCR_CS5          0x00
85
86 static int debug;
87
88 static const struct usb_device_id id_table[] = {
89         { USB_DEVICE(0x4348, 0x5523) },
90         { USB_DEVICE(0x1a86, 0x7523) },
91         { USB_DEVICE(0x1a86, 0x5523) },
92         { },
93 };
94 MODULE_DEVICE_TABLE(usb, id_table);
95
96 struct ch341_private {
97         spinlock_t lock; /* access lock */
98         unsigned baud_rate; /* set baud rate */
99         u8 line_control; /* set line control value RTS/DTR */
100         u8 line_status; /* active status of modem control inputs */
101         u8 multi_status_change; /* status changed multiple since last call */
102 };
103
104 static void ch341_set_termios(struct tty_struct *tty,
105                               struct usb_serial_port *port,
106                               struct ktermios *old_termios);
107
108 static int ch341_control_out(struct usb_device *dev, u8 request,
109                              u16 value, u16 index)
110 {
111         int r;
112         dbg("ch341_control_out(%02x,%02x,%04x,%04x)", USB_DIR_OUT|0x40,
113                 (int)request, (int)value, (int)index);
114
115         r = usb_control_msg(dev, usb_sndctrlpipe(dev, 0), request,
116                             USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_OUT,
117                             value, index, NULL, 0, DEFAULT_TIMEOUT);
118
119         return r;
120 }
121
122 static int ch341_control_in(struct usb_device *dev,
123                             u8 request, u16 value, u16 index,
124                             char *buf, unsigned bufsize)
125 {
126         int r;
127         dbg("ch341_control_in(%02x,%02x,%04x,%04x,%p,%u)", USB_DIR_IN|0x40,
128                 (int)request, (int)value, (int)index, buf, (int)bufsize);
129
130         r = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0), request,
131                             USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_IN,
132                             value, index, buf, bufsize, DEFAULT_TIMEOUT);
133         return r;
134 }
135
136 static int ch341_init_set_baudrate(struct usb_device *dev,
137                                    struct ch341_private *priv, unsigned ctrl)
138 {
139         short a;
140         int r;
141         unsigned long factor;
142         short divisor;
143
144         dbg("ch341_set_baudrate(%d)", priv->baud_rate);
145
146         if (!priv->baud_rate)
147                 return -EINVAL;
148         factor = (CH341_BAUDBASE_FACTOR / priv->baud_rate);
149         divisor = CH341_BAUDBASE_DIVMAX;
150
151         while ((factor > 0xfff0) && divisor) {
152                 factor >>= 3;
153                 divisor--;
154         }
155
156         if (factor > 0xfff0)
157                 return -EINVAL;
158
159         factor = 0x10000 - factor;
160         a = (factor & 0xff00) | divisor;
161
162         /* 0x9c is "enable SFR_UART Control register and timer" */
163         r = ch341_control_out(dev, CH341_REQ_SERIAL_INIT,
164                               0x9c | (ctrl << 8), a | 0x80);
165
166         return r;
167 }
168
169 static int ch341_set_handshake(struct usb_device *dev, u8 control)
170 {
171         dbg("ch341_set_handshake(0x%02x)", control);
172         return ch341_control_out(dev, CH341_REQ_MODEM_CTRL, ~control, 0);
173 }
174
175 static int ch341_get_status(struct usb_device *dev, struct ch341_private *priv)
176 {
177         char *buffer;
178         int r;
179         const unsigned size = 8;
180         unsigned long flags;
181
182         dbg("ch341_get_status()");
183
184         buffer = kmalloc(size, GFP_KERNEL);
185         if (!buffer)
186                 return -ENOMEM;
187
188         r = ch341_control_in(dev, CH341_REQ_READ_REG, 0x0706, 0, buffer, size);
189         if (r < 0)
190                 goto out;
191
192         /* setup the private status if available */
193         if (r == 2) {
194                 r = 0;
195                 spin_lock_irqsave(&priv->lock, flags);
196                 priv->line_status = (~(*buffer)) & CH341_BITS_MODEM_STAT;
197                 priv->multi_status_change = 0;
198                 spin_unlock_irqrestore(&priv->lock, flags);
199         } else
200                 r = -EPROTO;
201
202 out:    kfree(buffer);
203         return r;
204 }
205
206 /* -------------------------------------------------------------------------- */
207
208 static int ch341_configure(struct usb_device *dev, struct ch341_private *priv)
209 {
210         char *buffer;
211         int r;
212         const unsigned size = 8;
213
214         dbg("ch341_configure()");
215
216         buffer = kmalloc(size, GFP_KERNEL);
217         if (!buffer)
218                 return -ENOMEM;
219
220         /* expect two bytes 0x27 0x00 */
221         r = ch341_control_in(dev, CH341_REQ_READ_VERSION, 0, 0, buffer, size);
222         if (r < 0)
223                 goto out;
224
225         r = ch341_control_out(dev, CH341_REQ_SERIAL_INIT, 0, 0);
226         if (r < 0)
227                 goto out;
228
229         /* expect two bytes 0x56 0x00 */
230         r = ch341_control_in(dev, CH341_REQ_READ_REG, 0x2518, 0, buffer, size);
231         if (r < 0)
232                 goto out;
233
234         r = ch341_control_out(dev, CH341_REQ_WRITE_REG, 0x2518, 0x0050);
235         if (r < 0)
236                 goto out;
237
238         /* expect 0xff 0xee */
239         r = ch341_get_status(dev, priv);
240         if (r < 0)
241                 goto out;
242
243         r = ch341_init_set_baudrate(dev, priv, 0);
244         if (r < 0)
245                 goto out;
246
247         r = ch341_set_handshake(dev, priv->line_control);
248         if (r < 0)
249                 goto out;
250
251         /* expect 0x9f 0xee */
252         r = ch341_get_status(dev, priv);
253
254 out:    kfree(buffer);
255         return r;
256 }
257
258 /* allocate private data */
259 static int ch341_attach(struct usb_serial *serial)
260 {
261         struct ch341_private *priv;
262         int r;
263
264         dbg("ch341_attach()");
265
266         /* private data */
267         priv = kzalloc(sizeof(struct ch341_private), GFP_KERNEL);
268         if (!priv)
269                 return -ENOMEM;
270
271         spin_lock_init(&priv->lock);
272         priv->baud_rate = DEFAULT_BAUD_RATE;
273
274         r = ch341_configure(serial->dev, priv);
275         if (r < 0)
276                 goto error;
277
278         usb_set_serial_port_data(serial->port[0], priv);
279         return 0;
280
281 error:  kfree(priv);
282         return r;
283 }
284
285 static int ch341_carrier_raised(struct usb_serial_port *port)
286 {
287         struct ch341_private *priv = usb_get_serial_port_data(port);
288         if (priv->line_status & CH341_BIT_DCD)
289                 return 1;
290         return 0;
291 }
292
293 static void ch341_dtr_rts(struct usb_serial_port *port, int on)
294 {
295         struct ch341_private *priv = usb_get_serial_port_data(port);
296         unsigned long flags;
297
298         dbg("%s - port %d", __func__, port->number);
299         /* drop DTR and RTS */
300         spin_lock_irqsave(&priv->lock, flags);
301         if (on)
302                 priv->line_control |= CH341_BIT_RTS | CH341_BIT_DTR;
303         else
304                 priv->line_control &= ~(CH341_BIT_RTS | CH341_BIT_DTR);
305         spin_unlock_irqrestore(&priv->lock, flags);
306         ch341_set_handshake(port->serial->dev, priv->line_control);
307         wake_up_interruptible(&port->delta_msr_wait);
308 }
309
310 static void ch341_close(struct usb_serial_port *port)
311 {
312         dbg("%s - port %d", __func__, port->number);
313
314         usb_serial_generic_close(port);
315         usb_kill_urb(port->interrupt_in_urb);
316 }
317
318
319 /* open this device, set default parameters */
320 static int ch341_open(struct tty_struct *tty, struct usb_serial_port *port)
321 {
322         struct usb_serial *serial = port->serial;
323         struct ch341_private *priv = usb_get_serial_port_data(serial->port[0]);
324         int r;
325
326         dbg("ch341_open()");
327
328         r = ch341_configure(serial->dev, priv);
329         if (r)
330                 return r;
331
332         if (tty)
333                 ch341_set_termios(tty, port, NULL);
334
335         dbg("%s - submitting interrupt urb", __func__);
336         port->interrupt_in_urb->dev = serial->dev;
337         r = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL);
338         if (r) {
339                 dev_err(&port->dev, "%s - failed submitting interrupt urb,"
340                         " error %d\n", __func__, r);
341                 return r;
342         }
343
344         r = usb_serial_generic_open(tty, port);
345         if (r)
346                 goto err_kill_interrupt_urb;
347
348         return 0;
349
350 err_kill_interrupt_urb:
351         usb_kill_urb(port->interrupt_in_urb);
352
353         return r;
354 }
355
356 /* Old_termios contains the original termios settings and
357  * tty->termios contains the new setting to be used.
358  */
359 static void ch341_set_termios(struct tty_struct *tty,
360                 struct usb_serial_port *port, struct ktermios *old_termios)
361 {
362         struct ch341_private *priv = usb_get_serial_port_data(port);
363         unsigned baud_rate;
364         unsigned long flags;
365         unsigned char ctrl;
366         int r;
367
368         /* redundant changes may cause the chip to lose bytes */
369         if (old_termios && !tty_termios_hw_change(tty->termios, old_termios))
370                 return;
371
372         dbg("ch341_set_termios()");
373
374         baud_rate = tty_get_baud_rate(tty);
375
376         ctrl = CH341_LCR_ENABLE_RX | CH341_LCR_ENABLE_TX | CH341_LCR_CS8;
377
378         if (baud_rate) {
379                 priv->baud_rate = baud_rate;
380
381                 r = ch341_init_set_baudrate(port->serial->dev, priv, ctrl);
382                 if (r < 0 && old_termios) {
383                         priv->baud_rate = tty_termios_baud_rate(old_termios);
384                         tty_termios_copy_hw(tty->termios, old_termios);
385                 }
386         }
387
388         spin_lock_irqsave(&priv->lock, flags);
389         if (C_BAUD(tty) == B0)
390                 priv->line_control &= ~(CH341_BIT_DTR | CH341_BIT_RTS);
391         else if (old_termios && (old_termios->c_cflag & CBAUD) == B0)
392                 priv->line_control |= (CH341_BIT_DTR | CH341_BIT_RTS);
393         spin_unlock_irqrestore(&priv->lock, flags);
394
395         /* Unimplemented:
396          * (cflag & CSIZE) : data bits [5, 8]
397          * (cflag & PARENB) : parity {NONE, EVEN, ODD}
398          * (cflag & CSTOPB) : stop bits [1, 2]
399          */
400 }
401
402 static void ch341_break_ctl(struct tty_struct *tty, int break_state)
403 {
404         const uint16_t ch341_break_reg =
405                         ((uint16_t) CH341_REG_LCR << 8) | CH341_REG_BREAK;
406         struct usb_serial_port *port = tty->driver_data;
407         int r;
408         uint16_t reg_contents;
409         uint8_t *break_reg;
410
411         dbg("%s()", __func__);
412
413         break_reg = kmalloc(2, GFP_KERNEL);
414         if (!break_reg) {
415                 dev_err(&port->dev, "%s - kmalloc failed\n", __func__);
416                 return;
417         }
418
419         r = ch341_control_in(port->serial->dev, CH341_REQ_READ_REG,
420                         ch341_break_reg, 0, break_reg, 2);
421         if (r < 0) {
422                 dev_err(&port->dev, "%s - USB control read error (%d)\n",
423                                 __func__, r);
424                 goto out;
425         }
426         dbg("%s - initial ch341 break register contents - reg1: %x, reg2: %x",
427                         __func__, break_reg[0], break_reg[1]);
428         if (break_state != 0) {
429                 dbg("%s - Enter break state requested", __func__);
430                 break_reg[0] &= ~CH341_NBREAK_BITS;
431                 break_reg[1] &= ~CH341_LCR_ENABLE_TX;
432         } else {
433                 dbg("%s - Leave break state requested", __func__);
434                 break_reg[0] |= CH341_NBREAK_BITS;
435                 break_reg[1] |= CH341_LCR_ENABLE_TX;
436         }
437         dbg("%s - New ch341 break register contents - reg1: %x, reg2: %x",
438                         __func__, break_reg[0], break_reg[1]);
439         reg_contents = get_unaligned_le16(break_reg);
440         r = ch341_control_out(port->serial->dev, CH341_REQ_WRITE_REG,
441                         ch341_break_reg, reg_contents);
442         if (r < 0)
443                 dev_err(&port->dev, "%s - USB control write error (%d)\n",
444                                 __func__, r);
445 out:
446         kfree(break_reg);
447 }
448
449 static int ch341_tiocmset(struct tty_struct *tty,
450                           unsigned int set, unsigned int clear)
451 {
452         struct usb_serial_port *port = tty->driver_data;
453         struct ch341_private *priv = usb_get_serial_port_data(port);
454         unsigned long flags;
455         u8 control;
456
457         spin_lock_irqsave(&priv->lock, flags);
458         if (set & TIOCM_RTS)
459                 priv->line_control |= CH341_BIT_RTS;
460         if (set & TIOCM_DTR)
461                 priv->line_control |= CH341_BIT_DTR;
462         if (clear & TIOCM_RTS)
463                 priv->line_control &= ~CH341_BIT_RTS;
464         if (clear & TIOCM_DTR)
465                 priv->line_control &= ~CH341_BIT_DTR;
466         control = priv->line_control;
467         spin_unlock_irqrestore(&priv->lock, flags);
468
469         return ch341_set_handshake(port->serial->dev, control);
470 }
471
472 static void ch341_read_int_callback(struct urb *urb)
473 {
474         struct usb_serial_port *port = (struct usb_serial_port *) urb->context;
475         unsigned char *data = urb->transfer_buffer;
476         unsigned int actual_length = urb->actual_length;
477         int status;
478
479         dbg("%s (%d)", __func__, port->number);
480
481         switch (urb->status) {
482         case 0:
483                 /* success */
484                 break;
485         case -ECONNRESET:
486         case -ENOENT:
487         case -ESHUTDOWN:
488                 /* this urb is terminated, clean up */
489                 dbg("%s - urb shutting down with status: %d", __func__,
490                     urb->status);
491                 return;
492         default:
493                 dbg("%s - nonzero urb status received: %d", __func__,
494                     urb->status);
495                 goto exit;
496         }
497
498         usb_serial_debug_data(debug, &port->dev, __func__,
499                               urb->actual_length, urb->transfer_buffer);
500
501         if (actual_length >= 4) {
502                 struct ch341_private *priv = usb_get_serial_port_data(port);
503                 unsigned long flags;
504                 u8 prev_line_status = priv->line_status;
505
506                 spin_lock_irqsave(&priv->lock, flags);
507                 priv->line_status = (~(data[2])) & CH341_BITS_MODEM_STAT;
508                 if ((data[1] & CH341_MULT_STAT))
509                         priv->multi_status_change = 1;
510                 spin_unlock_irqrestore(&priv->lock, flags);
511
512                 if ((priv->line_status ^ prev_line_status) & CH341_BIT_DCD) {
513                         struct tty_struct *tty = tty_port_tty_get(&port->port);
514                         if (tty)
515                                 usb_serial_handle_dcd_change(port, tty,
516                                             priv->line_status & CH341_BIT_DCD);
517                         tty_kref_put(tty);
518                 }
519
520                 wake_up_interruptible(&port->delta_msr_wait);
521         }
522
523 exit:
524         status = usb_submit_urb(urb, GFP_ATOMIC);
525         if (status)
526                 dev_err(&urb->dev->dev,
527                         "%s - usb_submit_urb failed with result %d\n",
528                         __func__, status);
529 }
530
531 static int wait_modem_info(struct usb_serial_port *port, unsigned int arg)
532 {
533         struct ch341_private *priv = usb_get_serial_port_data(port);
534         unsigned long flags;
535         u8 prevstatus;
536         u8 status;
537         u8 changed;
538         u8 multi_change = 0;
539
540         spin_lock_irqsave(&priv->lock, flags);
541         prevstatus = priv->line_status;
542         priv->multi_status_change = 0;
543         spin_unlock_irqrestore(&priv->lock, flags);
544
545         while (!multi_change) {
546                 interruptible_sleep_on(&port->delta_msr_wait);
547                 /* see if a signal did it */
548                 if (signal_pending(current))
549                         return -ERESTARTSYS;
550
551                 if (port->serial->disconnected)
552                         return -EIO;
553
554                 spin_lock_irqsave(&priv->lock, flags);
555                 status = priv->line_status;
556                 multi_change = priv->multi_status_change;
557                 spin_unlock_irqrestore(&priv->lock, flags);
558
559                 changed = prevstatus ^ status;
560
561                 if (((arg & TIOCM_RNG) && (changed & CH341_BIT_RI)) ||
562                     ((arg & TIOCM_DSR) && (changed & CH341_BIT_DSR)) ||
563                     ((arg & TIOCM_CD)  && (changed & CH341_BIT_DCD)) ||
564                     ((arg & TIOCM_CTS) && (changed & CH341_BIT_CTS))) {
565                         return 0;
566                 }
567                 prevstatus = status;
568         }
569
570         return 0;
571 }
572
573 static int ch341_ioctl(struct tty_struct *tty,
574                         unsigned int cmd, unsigned long arg)
575 {
576         struct usb_serial_port *port = tty->driver_data;
577         dbg("%s (%d) cmd = 0x%04x", __func__, port->number, cmd);
578
579         switch (cmd) {
580         case TIOCMIWAIT:
581                 dbg("%s (%d) TIOCMIWAIT", __func__,  port->number);
582                 return wait_modem_info(port, arg);
583
584         default:
585                 dbg("%s not supported = 0x%04x", __func__, cmd);
586                 break;
587         }
588
589         return -ENOIOCTLCMD;
590 }
591
592 static int ch341_tiocmget(struct tty_struct *tty)
593 {
594         struct usb_serial_port *port = tty->driver_data;
595         struct ch341_private *priv = usb_get_serial_port_data(port);
596         unsigned long flags;
597         u8 mcr;
598         u8 status;
599         unsigned int result;
600
601         dbg("%s (%d)", __func__, port->number);
602
603         spin_lock_irqsave(&priv->lock, flags);
604         mcr = priv->line_control;
605         status = priv->line_status;
606         spin_unlock_irqrestore(&priv->lock, flags);
607
608         result = ((mcr & CH341_BIT_DTR)         ? TIOCM_DTR : 0)
609                   | ((mcr & CH341_BIT_RTS)      ? TIOCM_RTS : 0)
610                   | ((status & CH341_BIT_CTS)   ? TIOCM_CTS : 0)
611                   | ((status & CH341_BIT_DSR)   ? TIOCM_DSR : 0)
612                   | ((status & CH341_BIT_RI)    ? TIOCM_RI  : 0)
613                   | ((status & CH341_BIT_DCD)   ? TIOCM_CD  : 0);
614
615         dbg("%s - result = %x", __func__, result);
616
617         return result;
618 }
619
620
621 static int ch341_reset_resume(struct usb_interface *intf)
622 {
623         struct usb_device *dev = interface_to_usbdev(intf);
624         struct usb_serial *serial = NULL;
625         struct ch341_private *priv;
626
627         serial = usb_get_intfdata(intf);
628         priv = usb_get_serial_port_data(serial->port[0]);
629
630         /*reconfigure ch341 serial port after bus-reset*/
631         ch341_configure(dev, priv);
632
633         usb_serial_resume(intf);
634
635         return 0;
636 }
637
638 static struct usb_driver ch341_driver = {
639         .name           = "ch341",
640         .probe          = usb_serial_probe,
641         .disconnect     = usb_serial_disconnect,
642         .suspend        = usb_serial_suspend,
643         .resume         = usb_serial_resume,
644         .reset_resume   = ch341_reset_resume,
645         .id_table       = id_table,
646         .no_dynamic_id  = 1,
647         .supports_autosuspend = 1,
648 };
649
650 static struct usb_serial_driver ch341_device = {
651         .driver = {
652                 .owner  = THIS_MODULE,
653                 .name   = "ch341-uart",
654         },
655         .id_table          = id_table,
656         .usb_driver        = &ch341_driver,
657         .num_ports         = 1,
658         .open              = ch341_open,
659         .dtr_rts           = ch341_dtr_rts,
660         .carrier_raised    = ch341_carrier_raised,
661         .close             = ch341_close,
662         .ioctl             = ch341_ioctl,
663         .set_termios       = ch341_set_termios,
664         .break_ctl         = ch341_break_ctl,
665         .tiocmget          = ch341_tiocmget,
666         .tiocmset          = ch341_tiocmset,
667         .read_int_callback = ch341_read_int_callback,
668         .attach            = ch341_attach,
669 };
670
671 static int __init ch341_init(void)
672 {
673         int retval;
674
675         retval = usb_serial_register(&ch341_device);
676         if (retval)
677                 return retval;
678         retval = usb_register(&ch341_driver);
679         if (retval)
680                 usb_serial_deregister(&ch341_device);
681         return retval;
682 }
683
684 static void __exit ch341_exit(void)
685 {
686         usb_deregister(&ch341_driver);
687         usb_serial_deregister(&ch341_device);
688 }
689
690 module_init(ch341_init);
691 module_exit(ch341_exit);
692 MODULE_LICENSE("GPL");
693
694 module_param(debug, bool, S_IRUGO | S_IWUSR);
695 MODULE_PARM_DESC(debug, "Debug enabled or not");
696
697 /* EOF ch341.c */