blob: 28037c1af93ec01203389d63fafafd402ff28984 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Prolific PL2303 USB to serial adaptor driver
3 *
Greg Kroah-Hartman4d0dce32007-06-12 11:43:37 -07004 * Copyright (C) 2001-2007 Greg Kroah-Hartman (greg@kroah.com)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Copyright (C) 2003 IBM Corp.
6 *
7 * Original driver for 2.2.x by anonymous
8 *
Greg Kroah-Hartman4d0dce32007-06-12 11:43:37 -07009 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License version
11 * 2 as published by the Free Software Foundation.
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 *
Alan Cox3a0f43e2008-07-22 11:14:49 +010013 * See Documentation/usb/usb-serial.txt for more information on using this
14 * driver
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 */
17
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/kernel.h>
19#include <linux/errno.h>
20#include <linux/init.h>
21#include <linux/slab.h>
22#include <linux/tty.h>
23#include <linux/tty_driver.h>
24#include <linux/tty_flip.h>
25#include <linux/serial.h>
26#include <linux/module.h>
27#include <linux/moduleparam.h>
28#include <linux/spinlock.h>
Alan Cox3a0f43e2008-07-22 11:14:49 +010029#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/usb.h>
Greg Kroah-Hartmana9698882006-07-11 21:22:58 -070031#include <linux/usb/serial.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include "pl2303.h"
33
34/*
35 * Version Information
36 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#define DRIVER_DESC "Prolific PL2303 USB to serial adaptor driver"
38
39static int debug;
40
41#define PL2303_CLOSING_WAIT (30*HZ)
42
Németh Márton7d40d7e2010-01-10 15:34:24 +010043static const struct usb_device_id id_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 { USB_DEVICE(PL2303_VENDOR_ID, PL2303_PRODUCT_ID) },
45 { USB_DEVICE(PL2303_VENDOR_ID, PL2303_PRODUCT_ID_RSAQ2) },
Peter Moulder3d861492006-06-19 22:47:49 +100046 { USB_DEVICE(PL2303_VENDOR_ID, PL2303_PRODUCT_ID_DCU11) },
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 { USB_DEVICE(PL2303_VENDOR_ID, PL2303_PRODUCT_ID_RSAQ3) },
48 { USB_DEVICE(PL2303_VENDOR_ID, PL2303_PRODUCT_ID_PHAROS) },
Max Arnoldb483b6a2008-03-20 16:43:56 +070049 { USB_DEVICE(PL2303_VENDOR_ID, PL2303_PRODUCT_ID_ALDIGA) },
Steve Murphy4be2fa12008-05-23 23:39:05 +053050 { USB_DEVICE(PL2303_VENDOR_ID, PL2303_PRODUCT_ID_MMX) },
Greg Kroah-Hartman727df352008-07-02 15:25:41 -050051 { USB_DEVICE(PL2303_VENDOR_ID, PL2303_PRODUCT_ID_GPRS) },
Simone Contini18344a12010-04-12 23:25:10 +020052 { USB_DEVICE(PL2303_VENDOR_ID, PL2303_PRODUCT_ID_HCR331) },
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 { USB_DEVICE(IODATA_VENDOR_ID, IODATA_PRODUCT_ID) },
Masakazu Mokuno8a28dea2007-10-23 13:51:57 +090054 { USB_DEVICE(IODATA_VENDOR_ID, IODATA_PRODUCT_ID_RSAQ5) },
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 { USB_DEVICE(ATEN_VENDOR_ID, ATEN_PRODUCT_ID) },
56 { USB_DEVICE(ATEN_VENDOR_ID2, ATEN_PRODUCT_ID) },
57 { USB_DEVICE(ELCOM_VENDOR_ID, ELCOM_PRODUCT_ID) },
58 { USB_DEVICE(ELCOM_VENDOR_ID, ELCOM_PRODUCT_ID_UCSGT) },
59 { USB_DEVICE(ITEGNO_VENDOR_ID, ITEGNO_PRODUCT_ID) },
Wang Jun58381712006-04-19 16:32:07 +080060 { USB_DEVICE(ITEGNO_VENDOR_ID, ITEGNO_PRODUCT_ID_2080) },
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 { USB_DEVICE(MA620_VENDOR_ID, MA620_PRODUCT_ID) },
62 { USB_DEVICE(RATOC_VENDOR_ID, RATOC_PRODUCT_ID) },
63 { USB_DEVICE(TRIPP_VENDOR_ID, TRIPP_PRODUCT_ID) },
64 { USB_DEVICE(RADIOSHACK_VENDOR_ID, RADIOSHACK_PRODUCT_ID) },
65 { USB_DEVICE(DCU10_VENDOR_ID, DCU10_PRODUCT_ID) },
66 { USB_DEVICE(SITECOM_VENDOR_ID, SITECOM_PRODUCT_ID) },
67 { USB_DEVICE(ALCATEL_VENDOR_ID, ALCATEL_PRODUCT_ID) },
68 { USB_DEVICE(SAMSUNG_VENDOR_ID, SAMSUNG_PRODUCT_ID) },
Luiz Fernando Capitulinoa8310f32005-11-17 09:47:32 -080069 { USB_DEVICE(SIEMENS_VENDOR_ID, SIEMENS_PRODUCT_ID_SX1) },
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 { USB_DEVICE(SIEMENS_VENDOR_ID, SIEMENS_PRODUCT_ID_X65) },
Luiz Fernando Capitulinoa8310f32005-11-17 09:47:32 -080071 { USB_DEVICE(SIEMENS_VENDOR_ID, SIEMENS_PRODUCT_ID_X75) },
Andreas Loible7beb662007-08-24 01:51:11 +020072 { USB_DEVICE(SIEMENS_VENDOR_ID, SIEMENS_PRODUCT_ID_EF81) },
Alan Cox912299f2009-04-06 17:35:12 +010073 { USB_DEVICE(BENQ_VENDOR_ID, BENQ_PRODUCT_ID_S81) }, /* Benq/Siemens S81 */
Peter Favrholdtacbb36f2005-04-18 17:39:32 -070074 { USB_DEVICE(SYNTECH_VENDOR_ID, SYNTECH_PRODUCT_ID) },
Christian Lindnerc6c27722006-02-01 14:10:52 +010075 { USB_DEVICE(NOKIA_CA42_VENDOR_ID, NOKIA_CA42_PRODUCT_ID) },
76 { USB_DEVICE(CA_42_CA42_VENDOR_ID, CA_42_CA42_PRODUCT_ID) },
Denis MONTERRAT6cceb052006-01-19 14:52:38 +010077 { USB_DEVICE(SAGEM_VENDOR_ID, SAGEM_PRODUCT_ID) },
Christian Lindnerc6c27722006-02-01 14:10:52 +010078 { USB_DEVICE(LEADTEK_VENDOR_ID, LEADTEK_9531_PRODUCT_ID) },
Dick Streefland491b04c2006-03-01 00:53:33 -080079 { USB_DEVICE(SPEEDDRAGON_VENDOR_ID, SPEEDDRAGON_PRODUCT_ID) },
Matthew Meno3b928472006-06-21 15:25:53 -040080 { USB_DEVICE(DATAPILOT_U2_VENDOR_ID, DATAPILOT_U2_PRODUCT_ID) },
Kim Oldfieldb7aa94b2006-07-25 15:54:59 +100081 { USB_DEVICE(BELKIN_VENDOR_ID, BELKIN_PRODUCT_ID) },
Johannes Steingraeber8fd80132006-09-16 16:17:34 +020082 { USB_DEVICE(ALCOR_VENDOR_ID, ALCOR_PRODUCT_ID) },
YOSHIFUJI Hideaki2d94b982007-01-26 22:51:38 +090083 { USB_DEVICE(WS002IN_VENDOR_ID, WS002IN_PRODUCT_ID) },
Magnus Damm9e3285d2007-11-08 16:45:46 +090084 { USB_DEVICE(COREGA_VENDOR_ID, COREGA_PRODUCT_ID) },
Damien Stuartcc311ee2008-01-06 13:51:39 -050085 { USB_DEVICE(YCCABLE_VENDOR_ID, YCCABLE_PRODUCT_ID) },
Matthew Arnold7c992002008-12-13 22:42:53 +110086 { USB_DEVICE(SUPERIAL_VENDOR_ID, SUPERIAL_PRODUCT_ID) },
Mike Provencheraf4b8512008-12-16 14:30:14 -060087 { USB_DEVICE(HP_VENDOR_ID, HP_LD220_PRODUCT_ID) },
Gianpaolo Cugola8540d662009-06-05 22:57:52 +020088 { USB_DEVICE(CRESSI_VENDOR_ID, CRESSI_EDY_PRODUCT_ID) },
Khanh-Dang Nguyen Thu Lam49276562009-07-28 19:41:17 +020089 { USB_DEVICE(SONY_VENDOR_ID, SONY_QN3USB_PRODUCT_ID) },
Pawel Ludwikow35904e62009-08-27 14:15:50 +020090 { USB_DEVICE(SANWA_VENDOR_ID, SANWA_PRODUCT_ID) },
Manuel Jander9a61d722010-03-29 23:51:57 +020091 { USB_DEVICE(ADLINK_VENDOR_ID, ADLINK_ND6530_PRODUCT_ID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 { } /* Terminating entry */
93};
94
Thiago Galesi372db8a2006-07-31 15:39:27 -030095MODULE_DEVICE_TABLE(usb, id_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
97static struct usb_driver pl2303_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 .name = "pl2303",
99 .probe = usb_serial_probe,
100 .disconnect = usb_serial_disconnect,
101 .id_table = id_table,
Sarah Sharpfcf9e552007-12-14 14:09:30 -0800102 .suspend = usb_serial_suspend,
103 .resume = usb_serial_resume,
Greg Kroah-Hartmanba9dc652005-11-16 13:41:28 -0800104 .no_dynamic_id = 1,
Sarah Sharpfcf9e552007-12-14 14:09:30 -0800105 .supports_autosuspend = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106};
107
108#define SET_LINE_REQUEST_TYPE 0x21
109#define SET_LINE_REQUEST 0x20
110
111#define SET_CONTROL_REQUEST_TYPE 0x21
112#define SET_CONTROL_REQUEST 0x22
113#define CONTROL_DTR 0x01
114#define CONTROL_RTS 0x02
115
116#define BREAK_REQUEST_TYPE 0x21
Alan Cox3a0f43e2008-07-22 11:14:49 +0100117#define BREAK_REQUEST 0x23
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118#define BREAK_ON 0xffff
119#define BREAK_OFF 0x0000
120
121#define GET_LINE_REQUEST_TYPE 0xa1
122#define GET_LINE_REQUEST 0x21
123
124#define VENDOR_WRITE_REQUEST_TYPE 0x40
125#define VENDOR_WRITE_REQUEST 0x01
126
127#define VENDOR_READ_REQUEST_TYPE 0xc0
128#define VENDOR_READ_REQUEST 0x01
129
130#define UART_STATE 0x08
131#define UART_STATE_TRANSIENT_MASK 0x74
132#define UART_DCD 0x01
133#define UART_DSR 0x02
134#define UART_BREAK_ERROR 0x04
135#define UART_RING 0x08
136#define UART_FRAME_ERROR 0x10
137#define UART_PARITY_ERROR 0x20
138#define UART_OVERRUN_ERROR 0x40
139#define UART_CTS 0x80
140
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
142enum pl2303_type {
143 type_0, /* don't know the difference between type 0 and */
144 type_1, /* type 1, until someone from prolific tells us... */
145 HX, /* HX version of the pl2303 chip */
146};
147
148struct pl2303_private {
149 spinlock_t lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 wait_queue_head_t delta_msr_wait;
151 u8 line_control;
152 u8 line_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 enum pl2303_type type;
154};
155
Sarah Sharpeb44da02007-12-14 14:08:00 -0800156static int pl2303_vendor_read(__u16 value, __u16 index,
157 struct usb_serial *serial, unsigned char *buf)
158{
159 int res = usb_control_msg(serial->dev, usb_rcvctrlpipe(serial->dev, 0),
160 VENDOR_READ_REQUEST, VENDOR_READ_REQUEST_TYPE,
161 value, index, buf, 1, 100);
162 dbg("0x%x:0x%x:0x%x:0x%x %d - %x", VENDOR_READ_REQUEST_TYPE,
163 VENDOR_READ_REQUEST, value, index, res, buf[0]);
164 return res;
165}
166
167static int pl2303_vendor_write(__u16 value, __u16 index,
168 struct usb_serial *serial)
169{
170 int res = usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0),
171 VENDOR_WRITE_REQUEST, VENDOR_WRITE_REQUEST_TYPE,
172 value, index, NULL, 0, 100);
173 dbg("0x%x:0x%x:0x%x:0x%x %d", VENDOR_WRITE_REQUEST_TYPE,
174 VENDOR_WRITE_REQUEST, value, index, res);
175 return res;
176}
177
Thiago Galesi372db8a2006-07-31 15:39:27 -0300178static int pl2303_startup(struct usb_serial *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179{
180 struct pl2303_private *priv;
181 enum pl2303_type type = type_0;
Sarah Sharp3e152502007-12-14 14:08:35 -0800182 unsigned char *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 int i;
184
Sarah Sharp3e152502007-12-14 14:08:35 -0800185 buf = kmalloc(10, GFP_KERNEL);
186 if (buf == NULL)
187 return -ENOMEM;
188
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 if (serial->dev->descriptor.bDeviceClass == 0x02)
190 type = type_0;
191 else if (serial->dev->descriptor.bMaxPacketSize0 == 0x40)
192 type = HX;
193 else if (serial->dev->descriptor.bDeviceClass == 0x00)
194 type = type_1;
195 else if (serial->dev->descriptor.bDeviceClass == 0xFF)
196 type = type_1;
197 dbg("device type: %d", type);
198
199 for (i = 0; i < serial->num_ports; ++i) {
Eric Sesterhenn80b6ca42006-02-27 21:29:43 +0100200 priv = kzalloc(sizeof(struct pl2303_private), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 if (!priv)
202 goto cleanup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 spin_lock_init(&priv->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 init_waitqueue_head(&priv->delta_msr_wait);
205 priv->type = type;
206 usb_set_serial_port_data(serial->port[i], priv);
207 }
Sarah Sharp3e152502007-12-14 14:08:35 -0800208
209 pl2303_vendor_read(0x8484, 0, serial, buf);
210 pl2303_vendor_write(0x0404, 0, serial);
211 pl2303_vendor_read(0x8484, 0, serial, buf);
212 pl2303_vendor_read(0x8383, 0, serial, buf);
213 pl2303_vendor_read(0x8484, 0, serial, buf);
214 pl2303_vendor_write(0x0404, 1, serial);
215 pl2303_vendor_read(0x8484, 0, serial, buf);
216 pl2303_vendor_read(0x8383, 0, serial, buf);
217 pl2303_vendor_write(0, 1, serial);
218 pl2303_vendor_write(1, 0, serial);
219 if (type == HX)
220 pl2303_vendor_write(2, 0x44, serial);
221 else
222 pl2303_vendor_write(2, 0x24, serial);
223
224 kfree(buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 return 0;
226
227cleanup:
Sarah Sharp3e152502007-12-14 14:08:35 -0800228 kfree(buf);
Alan Cox3a0f43e2008-07-22 11:14:49 +0100229 for (--i; i >= 0; --i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 priv = usb_get_serial_port_data(serial->port[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 kfree(priv);
232 usb_set_serial_port_data(serial->port[i], NULL);
233 }
234 return -ENOMEM;
235}
236
Thiago Galesi372db8a2006-07-31 15:39:27 -0300237static int set_control_lines(struct usb_device *dev, u8 value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238{
239 int retval;
Alan Cox3a0f43e2008-07-22 11:14:49 +0100240
Thiago Galesi372db8a2006-07-31 15:39:27 -0300241 retval = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
242 SET_CONTROL_REQUEST, SET_CONTROL_REQUEST_TYPE,
243 value, 0, NULL, 0, 100);
Harvey Harrison441b62c2008-03-03 16:08:34 -0800244 dbg("%s - value = %d, retval = %d", __func__, value, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 return retval;
246}
247
Alan Cox95da3102008-07-22 11:09:07 +0100248static void pl2303_set_termios(struct tty_struct *tty,
249 struct usb_serial_port *port, struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250{
251 struct usb_serial *serial = port->serial;
252 struct pl2303_private *priv = usb_get_serial_port_data(port);
253 unsigned long flags;
254 unsigned int cflag;
255 unsigned char *buf;
256 int baud;
257 int i;
258 u8 control;
Frank Schaefer25b82862009-08-18 20:15:07 +0200259 const int baud_sup[] = { 75, 150, 300, 600, 1200, 1800, 2400, 3600,
260 4800, 7200, 9600, 14400, 19200, 28800, 38400,
261 57600, 115200, 230400, 460800, 614400,
262 921600, 1228800, 2457600, 3000000, 6000000 };
263 int baud_floor, baud_ceil;
264 int k;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
Harvey Harrison441b62c2008-03-03 16:08:34 -0800266 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
Alan Coxbf5e5832008-01-08 14:55:51 +0000268 /* The PL2303 is reported to lose bytes if you change
269 serial settings even to the same values as before. Thus
270 we actually need to filter in this specific case */
271
Alan Cox95da3102008-07-22 11:09:07 +0100272 if (!tty_termios_hw_change(tty->termios, old_termios))
Alan Coxbf5e5832008-01-08 14:55:51 +0000273 return;
274
Alan Cox95da3102008-07-22 11:09:07 +0100275 cflag = tty->termios->c_cflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
Thiago Galesi372db8a2006-07-31 15:39:27 -0300277 buf = kzalloc(7, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 if (!buf) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800279 dev_err(&port->dev, "%s - out of memory.\n", __func__);
Alan Coxa5b6f602008-04-08 17:16:06 +0100280 /* Report back no change occurred */
Alan Cox95da3102008-07-22 11:09:07 +0100281 *tty->termios = *old_termios;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 return;
283 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
Thiago Galesi372db8a2006-07-31 15:39:27 -0300285 i = usb_control_msg(serial->dev, usb_rcvctrlpipe(serial->dev, 0),
286 GET_LINE_REQUEST, GET_LINE_REQUEST_TYPE,
287 0, 0, buf, 7, 100);
288 dbg("0xa1:0x21:0:0 %d - %x %x %x %x %x %x %x", i,
289 buf[0], buf[1], buf[2], buf[3], buf[4], buf[5], buf[6]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
291 if (cflag & CSIZE) {
292 switch (cflag & CSIZE) {
Alan Cox3a0f43e2008-07-22 11:14:49 +0100293 case CS5:
294 buf[6] = 5;
295 break;
296 case CS6:
297 buf[6] = 6;
298 break;
299 case CS7:
300 buf[6] = 7;
301 break;
302 default:
303 case CS8:
304 buf[6] = 8;
305 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 }
Harvey Harrison441b62c2008-03-03 16:08:34 -0800307 dbg("%s - data bits = %d", __func__, buf[6]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 }
309
Frank Schaefer25b82862009-08-18 20:15:07 +0200310 /* For reference buf[0]:buf[3] baud rate value */
311 /* NOTE: Only the values defined in baud_sup are supported !
312 * => if unsupported values are set, the PL2303 seems to use
313 * 9600 baud (at least my PL2303X always does)
314 */
Alan Cox95da3102008-07-22 11:09:07 +0100315 baud = tty_get_baud_rate(tty);
Frank Schaefer25b82862009-08-18 20:15:07 +0200316 dbg("%s - baud requested = %d", __func__, baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 if (baud) {
Frank Schaefer25b82862009-08-18 20:15:07 +0200318 /* Set baudrate to nearest supported value */
319 for (k=0; k<ARRAY_SIZE(baud_sup); k++) {
320 if (baud_sup[k] / baud) {
321 baud_ceil = baud_sup[k];
322 if (k==0) {
323 baud = baud_ceil;
324 } else {
325 baud_floor = baud_sup[k-1];
326 if ((baud_ceil % baud)
327 > (baud % baud_floor))
328 baud = baud_floor;
329 else
330 baud = baud_ceil;
331 }
332 break;
333 }
334 }
335 if (baud > 1228800) {
336 /* type_0, type_1 only support up to 1228800 baud */
337 if (priv->type != HX)
338 baud = 1228800;
339 else if (baud > 6000000)
340 baud = 6000000;
341 }
342 dbg("%s - baud set = %d", __func__, baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 buf[0] = baud & 0xff;
344 buf[1] = (baud >> 8) & 0xff;
345 buf[2] = (baud >> 16) & 0xff;
346 buf[3] = (baud >> 24) & 0xff;
347 }
348
349 /* For reference buf[4]=0 is 1 stop bits */
350 /* For reference buf[4]=1 is 1.5 stop bits */
351 /* For reference buf[4]=2 is 2 stop bits */
352 if (cflag & CSTOPB) {
Frank Schaefer29cf1b72009-08-18 20:34:24 +0200353 /* NOTE: Comply with "real" UARTs / RS232:
354 * use 1.5 instead of 2 stop bits with 5 data bits
355 */
356 if ((cflag & CSIZE) == CS5) {
357 buf[4] = 1;
358 dbg("%s - stop bits = 1.5", __func__);
359 } else {
360 buf[4] = 2;
361 dbg("%s - stop bits = 2", __func__);
362 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 } else {
364 buf[4] = 0;
Harvey Harrison441b62c2008-03-03 16:08:34 -0800365 dbg("%s - stop bits = 1", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 }
367
368 if (cflag & PARENB) {
369 /* For reference buf[5]=0 is none parity */
370 /* For reference buf[5]=1 is odd parity */
371 /* For reference buf[5]=2 is even parity */
372 /* For reference buf[5]=3 is mark parity */
373 /* For reference buf[5]=4 is space parity */
374 if (cflag & PARODD) {
Frank Schaefer6dd81b42009-08-18 20:31:11 +0200375 if (cflag & CMSPAR) {
376 buf[5] = 3;
377 dbg("%s - parity = mark", __func__);
378 } else {
379 buf[5] = 1;
380 dbg("%s - parity = odd", __func__);
381 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 } else {
Frank Schaefer6dd81b42009-08-18 20:31:11 +0200383 if (cflag & CMSPAR) {
384 buf[5] = 4;
385 dbg("%s - parity = space", __func__);
386 } else {
387 buf[5] = 2;
388 dbg("%s - parity = even", __func__);
389 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 }
391 } else {
392 buf[5] = 0;
Harvey Harrison441b62c2008-03-03 16:08:34 -0800393 dbg("%s - parity = none", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 }
395
Thiago Galesi372db8a2006-07-31 15:39:27 -0300396 i = usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0),
397 SET_LINE_REQUEST, SET_LINE_REQUEST_TYPE,
398 0, 0, buf, 7, 100);
399 dbg("0x21:0x20:0:0 %d", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
401 /* change control lines if we are switching to or from B0 */
402 spin_lock_irqsave(&priv->lock, flags);
403 control = priv->line_control;
404 if ((cflag & CBAUD) == B0)
405 priv->line_control &= ~(CONTROL_DTR | CONTROL_RTS);
406 else
407 priv->line_control |= (CONTROL_DTR | CONTROL_RTS);
408 if (control != priv->line_control) {
409 control = priv->line_control;
410 spin_unlock_irqrestore(&priv->lock, flags);
411 set_control_lines(serial->dev, control);
412 } else {
413 spin_unlock_irqrestore(&priv->lock, flags);
414 }
Thiago Galesi372db8a2006-07-31 15:39:27 -0300415
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 buf[0] = buf[1] = buf[2] = buf[3] = buf[4] = buf[5] = buf[6] = 0;
417
Thiago Galesi372db8a2006-07-31 15:39:27 -0300418 i = usb_control_msg(serial->dev, usb_rcvctrlpipe(serial->dev, 0),
419 GET_LINE_REQUEST, GET_LINE_REQUEST_TYPE,
420 0, 0, buf, 7, 100);
421 dbg("0xa1:0x21:0:0 %d - %x %x %x %x %x %x %x", i,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 buf[0], buf[1], buf[2], buf[3], buf[4], buf[5], buf[6]);
423
424 if (cflag & CRTSCTS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 if (priv->type == HX)
Sarah Sharpeb44da02007-12-14 14:08:00 -0800426 pl2303_vendor_write(0x0, 0x61, serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 else
Sarah Sharpeb44da02007-12-14 14:08:00 -0800428 pl2303_vendor_write(0x0, 0x41, serial);
t.sefzick715f9522007-04-25 15:05:22 +0200429 } else {
Sarah Sharpeb44da02007-12-14 14:08:00 -0800430 pl2303_vendor_write(0x0, 0x0, serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 }
432
Frank Schaefer25b82862009-08-18 20:15:07 +0200433 /* Save resulting baud rate */
Alan Coxdf64c472007-10-15 20:54:47 +0100434 if (baud)
Alan Cox95da3102008-07-22 11:09:07 +0100435 tty_encode_baud_rate(tty, baud, baud);
Alan Coxdf64c472007-10-15 20:54:47 +0100436
Thiago Galesi372db8a2006-07-31 15:39:27 -0300437 kfree(buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438}
439
Alan Cox335f8512009-06-11 12:26:29 +0100440static void pl2303_dtr_rts(struct usb_serial_port *port, int on)
Thiago Galesi572d3132006-07-29 10:46:37 -0300441{
442 struct pl2303_private *priv = usb_get_serial_port_data(port);
443 unsigned long flags;
Alan Cox335f8512009-06-11 12:26:29 +0100444 u8 control;
445
446 spin_lock_irqsave(&priv->lock, flags);
447 /* Change DTR and RTS */
448 if (on)
449 priv->line_control |= (CONTROL_DTR | CONTROL_RTS);
450 else
451 priv->line_control &= ~(CONTROL_DTR | CONTROL_RTS);
452 control = priv->line_control;
453 spin_unlock_irqrestore(&priv->lock, flags);
454 set_control_lines(port->serial->dev, control);
455}
456
457static void pl2303_close(struct usb_serial_port *port)
458{
Alan Cox335f8512009-06-11 12:26:29 +0100459 unsigned long flags;
Thiago Galesi572d3132006-07-29 10:46:37 -0300460
Harvey Harrison441b62c2008-03-03 16:08:34 -0800461 dbg("%s - port %d", __func__, port->number);
Thiago Galesi572d3132006-07-29 10:46:37 -0300462
Johan Hovold684c6e32010-03-17 23:06:03 +0100463 spin_lock_irqsave(&port->lock, flags);
Thiago Galesi572d3132006-07-29 10:46:37 -0300464 /* clear out any remaining data in the buffer */
Johan Hovold684c6e32010-03-17 23:06:03 +0100465 kfifo_reset_out(&port->write_fifo);
466 spin_unlock_irqrestore(&port->lock, flags);
Thiago Galesi572d3132006-07-29 10:46:37 -0300467
Thiago Galesi572d3132006-07-29 10:46:37 -0300468 /* shutdown our urbs */
Harvey Harrison441b62c2008-03-03 16:08:34 -0800469 dbg("%s - shutting down urbs", __func__);
Thiago Galesi572d3132006-07-29 10:46:37 -0300470 usb_kill_urb(port->write_urb);
471 usb_kill_urb(port->read_urb);
472 usb_kill_urb(port->interrupt_in_urb);
473
Thiago Galesi572d3132006-07-29 10:46:37 -0300474}
475
Alan Coxa509a7e2009-09-19 13:13:26 -0700476static int pl2303_open(struct tty_struct *tty, struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477{
Alan Cox606d0992006-12-08 02:38:45 -0800478 struct ktermios tmp_termios;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 struct usb_serial *serial = port->serial;
480 struct pl2303_private *priv = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 int result;
482
Harvey Harrison441b62c2008-03-03 16:08:34 -0800483 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
Dariusz M16948992005-07-28 18:06:13 +0200485 if (priv->type != HX) {
486 usb_clear_halt(serial->dev, port->write_urb->pipe);
487 usb_clear_halt(serial->dev, port->read_urb->pipe);
Sarah Sharp3e152502007-12-14 14:08:35 -0800488 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 /* reset upstream data pipes */
Sarah Sharpeb44da02007-12-14 14:08:00 -0800490 pl2303_vendor_write(8, 0, serial);
491 pl2303_vendor_write(9, 0, serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 }
493
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 /* Setup termios */
Alan Cox95da3102008-07-22 11:09:07 +0100495 if (tty)
496 pl2303_set_termios(tty, port, &tmp_termios);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
Harvey Harrison441b62c2008-03-03 16:08:34 -0800498 dbg("%s - submitting read urb", __func__);
Johan Hovoldf08e07a2010-03-17 23:05:58 +0100499 result = usb_serial_generic_submit_read_urb(port, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 if (result) {
Alan Cox335f8512009-06-11 12:26:29 +0100501 pl2303_close(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 return -EPROTO;
503 }
504
Harvey Harrison441b62c2008-03-03 16:08:34 -0800505 dbg("%s - submitting interrupt urb", __func__);
Thiago Galesi372db8a2006-07-31 15:39:27 -0300506 result = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 if (result) {
Thiago Galesi372db8a2006-07-31 15:39:27 -0300508 dev_err(&port->dev, "%s - failed submitting interrupt urb,"
Harvey Harrison441b62c2008-03-03 16:08:34 -0800509 " error %d\n", __func__, result);
Alan Cox335f8512009-06-11 12:26:29 +0100510 pl2303_close(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 return -EPROTO;
512 }
Alan Cox335f8512009-06-11 12:26:29 +0100513 port->port.drain_delay = 256;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 return 0;
515}
516
Alan Cox95da3102008-07-22 11:09:07 +0100517static int pl2303_tiocmset(struct tty_struct *tty, struct file *file,
Thiago Galesi372db8a2006-07-31 15:39:27 -0300518 unsigned int set, unsigned int clear)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519{
Alan Cox95da3102008-07-22 11:09:07 +0100520 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 struct pl2303_private *priv = usb_get_serial_port_data(port);
522 unsigned long flags;
523 u8 control;
524
Flavio Leitner6fdd8e82005-04-18 17:39:31 -0700525 if (!usb_get_intfdata(port->serial->interface))
526 return -ENODEV;
527
Thiago Galesi372db8a2006-07-31 15:39:27 -0300528 spin_lock_irqsave(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 if (set & TIOCM_RTS)
530 priv->line_control |= CONTROL_RTS;
531 if (set & TIOCM_DTR)
532 priv->line_control |= CONTROL_DTR;
533 if (clear & TIOCM_RTS)
534 priv->line_control &= ~CONTROL_RTS;
535 if (clear & TIOCM_DTR)
536 priv->line_control &= ~CONTROL_DTR;
537 control = priv->line_control;
Thiago Galesi372db8a2006-07-31 15:39:27 -0300538 spin_unlock_irqrestore(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
Thiago Galesi372db8a2006-07-31 15:39:27 -0300540 return set_control_lines(port->serial->dev, control);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541}
542
Alan Cox95da3102008-07-22 11:09:07 +0100543static int pl2303_tiocmget(struct tty_struct *tty, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544{
Alan Cox95da3102008-07-22 11:09:07 +0100545 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 struct pl2303_private *priv = usb_get_serial_port_data(port);
547 unsigned long flags;
548 unsigned int mcr;
549 unsigned int status;
550 unsigned int result;
551
Harvey Harrison441b62c2008-03-03 16:08:34 -0800552 dbg("%s (%d)", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
Flavio Leitner6fdd8e82005-04-18 17:39:31 -0700554 if (!usb_get_intfdata(port->serial->interface))
555 return -ENODEV;
556
Thiago Galesi372db8a2006-07-31 15:39:27 -0300557 spin_lock_irqsave(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 mcr = priv->line_control;
559 status = priv->line_status;
Thiago Galesi372db8a2006-07-31 15:39:27 -0300560 spin_unlock_irqrestore(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
562 result = ((mcr & CONTROL_DTR) ? TIOCM_DTR : 0)
563 | ((mcr & CONTROL_RTS) ? TIOCM_RTS : 0)
564 | ((status & UART_CTS) ? TIOCM_CTS : 0)
565 | ((status & UART_DSR) ? TIOCM_DSR : 0)
566 | ((status & UART_RING) ? TIOCM_RI : 0)
567 | ((status & UART_DCD) ? TIOCM_CD : 0);
568
Harvey Harrison441b62c2008-03-03 16:08:34 -0800569 dbg("%s - result = %x", __func__, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570
571 return result;
572}
573
Alan Cox335f8512009-06-11 12:26:29 +0100574static int pl2303_carrier_raised(struct usb_serial_port *port)
575{
576 struct pl2303_private *priv = usb_get_serial_port_data(port);
577 if (priv->line_status & UART_DCD)
578 return 1;
579 return 0;
580}
581
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582static int wait_modem_info(struct usb_serial_port *port, unsigned int arg)
583{
584 struct pl2303_private *priv = usb_get_serial_port_data(port);
585 unsigned long flags;
586 unsigned int prevstatus;
587 unsigned int status;
588 unsigned int changed;
589
Thiago Galesi372db8a2006-07-31 15:39:27 -0300590 spin_lock_irqsave(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 prevstatus = priv->line_status;
Thiago Galesi372db8a2006-07-31 15:39:27 -0300592 spin_unlock_irqrestore(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
594 while (1) {
595 interruptible_sleep_on(&priv->delta_msr_wait);
596 /* see if a signal did it */
597 if (signal_pending(current))
598 return -ERESTARTSYS;
Thiago Galesi372db8a2006-07-31 15:39:27 -0300599
600 spin_lock_irqsave(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 status = priv->line_status;
Thiago Galesi372db8a2006-07-31 15:39:27 -0300602 spin_unlock_irqrestore(&priv->lock, flags);
603
Alan Cox3a0f43e2008-07-22 11:14:49 +0100604 changed = prevstatus ^ status;
Thiago Galesi372db8a2006-07-31 15:39:27 -0300605
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 if (((arg & TIOCM_RNG) && (changed & UART_RING)) ||
607 ((arg & TIOCM_DSR) && (changed & UART_DSR)) ||
608 ((arg & TIOCM_CD) && (changed & UART_DCD)) ||
Alan Cox3a0f43e2008-07-22 11:14:49 +0100609 ((arg & TIOCM_CTS) && (changed & UART_CTS))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 return 0;
611 }
612 prevstatus = status;
613 }
614 /* NOTREACHED */
615 return 0;
616}
617
Alan Cox95da3102008-07-22 11:09:07 +0100618static int pl2303_ioctl(struct tty_struct *tty, struct file *file,
Thiago Galesi372db8a2006-07-31 15:39:27 -0300619 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620{
John Tsiombikas67b99462010-02-25 17:09:08 +0200621 struct serial_struct ser;
Alan Cox95da3102008-07-22 11:09:07 +0100622 struct usb_serial_port *port = tty->driver_data;
Harvey Harrison441b62c2008-03-03 16:08:34 -0800623 dbg("%s (%d) cmd = 0x%04x", __func__, port->number, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
625 switch (cmd) {
John Tsiombikas67b99462010-02-25 17:09:08 +0200626 case TIOCGSERIAL:
627 memset(&ser, 0, sizeof ser);
628 ser.type = PORT_16654;
629 ser.line = port->serial->minor;
630 ser.port = port->number;
631 ser.baud_base = 460800;
632
633 if (copy_to_user((void __user *)arg, &ser, sizeof ser))
634 return -EFAULT;
635
636 return 0;
637
Alan Cox3a0f43e2008-07-22 11:14:49 +0100638 case TIOCMIWAIT:
639 dbg("%s (%d) TIOCMIWAIT", __func__, port->number);
640 return wait_modem_info(port, arg);
641 default:
642 dbg("%s not supported = 0x%04x", __func__, cmd);
643 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 return -ENOIOCTLCMD;
646}
647
Alan Cox95da3102008-07-22 11:09:07 +0100648static void pl2303_break_ctl(struct tty_struct *tty, int break_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649{
Alan Cox95da3102008-07-22 11:09:07 +0100650 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 struct usb_serial *serial = port->serial;
652 u16 state;
653 int result;
654
Harvey Harrison441b62c2008-03-03 16:08:34 -0800655 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656
657 if (break_state == 0)
658 state = BREAK_OFF;
659 else
660 state = BREAK_ON;
Alan Cox3a0f43e2008-07-22 11:14:49 +0100661 dbg("%s - turning break %s", __func__,
662 state == BREAK_OFF ? "off" : "on");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
Thiago Galesi372db8a2006-07-31 15:39:27 -0300664 result = usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0),
665 BREAK_REQUEST, BREAK_REQUEST_TYPE, state,
666 0, NULL, 0, 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 if (result)
Harvey Harrison441b62c2008-03-03 16:08:34 -0800668 dbg("%s - error sending break = %d", __func__, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669}
670
Alan Sternf9c99bb2009-06-02 11:53:55 -0400671static void pl2303_release(struct usb_serial *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672{
673 int i;
674 struct pl2303_private *priv;
675
Harvey Harrison441b62c2008-03-03 16:08:34 -0800676 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
678 for (i = 0; i < serial->num_ports; ++i) {
679 priv = usb_get_serial_port_data(serial->port[i]);
Johan Hovold684c6e32010-03-17 23:06:03 +0100680 kfree(priv);
Thiago Galesi372db8a2006-07-31 15:39:27 -0300681 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682}
683
Flavio Leitner97bb13e2005-04-18 17:39:31 -0700684static void pl2303_update_line_status(struct usb_serial_port *port,
685 unsigned char *data,
686 unsigned int actual_length)
687{
688
689 struct pl2303_private *priv = usb_get_serial_port_data(port);
690 unsigned long flags;
691 u8 status_idx = UART_STATE;
Horst Schirmeier95f209f2005-07-28 15:32:20 +0200692 u8 length = UART_STATE + 1;
Thiago Galesi9c537612006-07-29 10:47:12 -0300693 u16 idv, idp;
Flavio Leitner97bb13e2005-04-18 17:39:31 -0700694
Thiago Galesi9c537612006-07-29 10:47:12 -0300695 idv = le16_to_cpu(port->serial->dev->descriptor.idVendor);
696 idp = le16_to_cpu(port->serial->dev->descriptor.idProduct);
697
698
699 if (idv == SIEMENS_VENDOR_ID) {
700 if (idp == SIEMENS_PRODUCT_ID_X65 ||
701 idp == SIEMENS_PRODUCT_ID_SX1 ||
702 idp == SIEMENS_PRODUCT_ID_X75) {
703
704 length = 1;
705 status_idx = 0;
706 }
Flavio Leitner97bb13e2005-04-18 17:39:31 -0700707 }
708
709 if (actual_length < length)
Luiz Fernando N. Capitulinoa009b752006-07-25 16:58:30 -0300710 return;
Flavio Leitner97bb13e2005-04-18 17:39:31 -0700711
Alan Cox3a0f43e2008-07-22 11:14:49 +0100712 /* Save off the uart status for others to look at */
Flavio Leitner97bb13e2005-04-18 17:39:31 -0700713 spin_lock_irqsave(&priv->lock, flags);
714 priv->line_status = data[status_idx];
715 spin_unlock_irqrestore(&priv->lock, flags);
Jason Wessel430eb0d2009-05-29 13:34:16 -0500716 if (priv->line_status & UART_BREAK_ERROR)
717 usb_serial_handle_break(port);
Thiago Galesi372db8a2006-07-31 15:39:27 -0300718 wake_up_interruptible(&priv->delta_msr_wait);
Flavio Leitner97bb13e2005-04-18 17:39:31 -0700719}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
David Howells7d12e782006-10-05 14:55:46 +0100721static void pl2303_read_int_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722{
Ming Leicdc97792008-02-24 18:41:47 +0800723 struct usb_serial_port *port = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 unsigned char *data = urb->transfer_buffer;
Flavio Leitner97bb13e2005-04-18 17:39:31 -0700725 unsigned int actual_length = urb->actual_length;
Greg Kroah-Hartman461d6962007-06-15 15:44:13 -0700726 int status = urb->status;
727 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
Harvey Harrison441b62c2008-03-03 16:08:34 -0800729 dbg("%s (%d)", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
Greg Kroah-Hartman461d6962007-06-15 15:44:13 -0700731 switch (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 case 0:
733 /* success */
734 break;
735 case -ECONNRESET:
736 case -ENOENT:
737 case -ESHUTDOWN:
738 /* this urb is terminated, clean up */
Harvey Harrison441b62c2008-03-03 16:08:34 -0800739 dbg("%s - urb shutting down with status: %d", __func__,
Greg Kroah-Hartman461d6962007-06-15 15:44:13 -0700740 status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 return;
742 default:
Harvey Harrison441b62c2008-03-03 16:08:34 -0800743 dbg("%s - nonzero urb status received: %d", __func__,
Greg Kroah-Hartman461d6962007-06-15 15:44:13 -0700744 status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 goto exit;
746 }
747
Harvey Harrison441b62c2008-03-03 16:08:34 -0800748 usb_serial_debug_data(debug, &port->dev, __func__,
Thiago Galesi372db8a2006-07-31 15:39:27 -0300749 urb->actual_length, urb->transfer_buffer);
750
Flavio Leitner97bb13e2005-04-18 17:39:31 -0700751 pl2303_update_line_status(port, data, actual_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753exit:
Greg Kroah-Hartman461d6962007-06-15 15:44:13 -0700754 retval = usb_submit_urb(urb, GFP_ATOMIC);
755 if (retval)
Thiago Galesi372db8a2006-07-31 15:39:27 -0300756 dev_err(&urb->dev->dev,
757 "%s - usb_submit_urb failed with result %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800758 __func__, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759}
760
Johan Hovoldf08e07a2010-03-17 23:05:58 +0100761static void pl2303_process_read_urb(struct urb *urb)
Alan Coxd4fc4a72009-07-09 13:36:58 +0100762{
Johan Hovoldf08e07a2010-03-17 23:05:58 +0100763 struct usb_serial_port *port = urb->context;
764 struct pl2303_private *priv = usb_get_serial_port_data(port);
765 struct tty_struct *tty;
Alan Coxd4fc4a72009-07-09 13:36:58 +0100766 unsigned char *data = urb->transfer_buffer;
Alan Coxd4fc4a72009-07-09 13:36:58 +0100767 char tty_flag = TTY_NORMAL;
Johan Hovoldf08e07a2010-03-17 23:05:58 +0100768 unsigned long flags;
769 u8 line_status;
770 int i;
771
772 /* update line status */
773 spin_lock_irqsave(&priv->lock, flags);
774 line_status = priv->line_status;
775 priv->line_status &= ~UART_STATE_TRANSIENT_MASK;
776 spin_unlock_irqrestore(&priv->lock, flags);
777 wake_up_interruptible(&priv->delta_msr_wait);
778
779 if (!urb->actual_length)
780 return;
781
782 tty = tty_port_tty_get(&port->port);
783 if (!tty)
784 return;
785
Alan Coxd4fc4a72009-07-09 13:36:58 +0100786 /* break takes precedence over parity, */
787 /* which takes precedence over framing errors */
788 if (line_status & UART_BREAK_ERROR)
789 tty_flag = TTY_BREAK;
790 else if (line_status & UART_PARITY_ERROR)
791 tty_flag = TTY_PARITY;
792 else if (line_status & UART_FRAME_ERROR)
793 tty_flag = TTY_FRAME;
794 dbg("%s - tty_flag = %d", __func__, tty_flag);
795
Alan Coxd4fc4a72009-07-09 13:36:58 +0100796 /* overrun is special, not associated with a char */
797 if (line_status & UART_OVERRUN_ERROR)
798 tty_insert_flip_char(tty, 0, TTY_OVERRUN);
Johan Hovold9388e2e2009-10-08 11:36:46 +0200799
Jason Wesselbd5afa92010-03-08 21:50:12 -0600800 if (tty_flag == TTY_NORMAL && !(port->port.console && port->sysrq))
Johan Hovold9388e2e2009-10-08 11:36:46 +0200801 tty_insert_flip_string(tty, data, urb->actual_length);
802 else {
Alan Coxd4fc4a72009-07-09 13:36:58 +0100803 for (i = 0; i < urb->actual_length; ++i)
804 if (!usb_serial_handle_sysrq_char(tty, port, data[i]))
805 tty_insert_flip_char(tty, data[i], tty_flag);
Johan Hovold9388e2e2009-10-08 11:36:46 +0200806 }
Johan Hovoldf08e07a2010-03-17 23:05:58 +0100807
Alan Coxd4fc4a72009-07-09 13:36:58 +0100808 tty_flip_buffer_push(tty);
Alan Cox4a90f092008-10-13 10:39:46 +0100809 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810}
811
Thiago Galesi572d3132006-07-29 10:46:37 -0300812/* All of the device info needed for the PL2303 SIO serial converter */
813static struct usb_serial_driver pl2303_device = {
814 .driver = {
815 .owner = THIS_MODULE,
816 .name = "pl2303",
817 },
818 .id_table = id_table,
Johannes Hölzld9b1b782006-12-17 21:50:24 +0100819 .usb_driver = &pl2303_driver,
Thiago Galesi572d3132006-07-29 10:46:37 -0300820 .num_ports = 1,
Johan Hovold7919c2f2010-03-17 23:00:41 +0100821 .bulk_in_size = 256,
Johan Hovold3efeaff2010-03-17 23:00:40 +0100822 .bulk_out_size = 256,
Thiago Galesi572d3132006-07-29 10:46:37 -0300823 .open = pl2303_open,
824 .close = pl2303_close,
Alan Cox335f8512009-06-11 12:26:29 +0100825 .dtr_rts = pl2303_dtr_rts,
826 .carrier_raised = pl2303_carrier_raised,
Thiago Galesi572d3132006-07-29 10:46:37 -0300827 .ioctl = pl2303_ioctl,
828 .break_ctl = pl2303_break_ctl,
829 .set_termios = pl2303_set_termios,
830 .tiocmget = pl2303_tiocmget,
831 .tiocmset = pl2303_tiocmset,
Johan Hovoldf08e07a2010-03-17 23:05:58 +0100832 .process_read_urb = pl2303_process_read_urb,
Thiago Galesi572d3132006-07-29 10:46:37 -0300833 .read_int_callback = pl2303_read_int_callback,
Thiago Galesi572d3132006-07-29 10:46:37 -0300834 .attach = pl2303_startup,
Alan Sternf9c99bb2009-06-02 11:53:55 -0400835 .release = pl2303_release,
Thiago Galesi572d3132006-07-29 10:46:37 -0300836};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
Thiago Galesi372db8a2006-07-31 15:39:27 -0300838static int __init pl2303_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839{
840 int retval;
Thiago Galesi372db8a2006-07-31 15:39:27 -0300841
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 retval = usb_serial_register(&pl2303_device);
843 if (retval)
844 goto failed_usb_serial_register;
845 retval = usb_register(&pl2303_driver);
846 if (retval)
847 goto failed_usb_register;
Greg Kroah-Hartmanc197a8d2008-08-18 13:21:04 -0700848 printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_DESC "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 return 0;
850failed_usb_register:
851 usb_serial_deregister(&pl2303_device);
852failed_usb_serial_register:
853 return retval;
854}
855
Thiago Galesi372db8a2006-07-31 15:39:27 -0300856static void __exit pl2303_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857{
Thiago Galesi372db8a2006-07-31 15:39:27 -0300858 usb_deregister(&pl2303_driver);
859 usb_serial_deregister(&pl2303_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860}
861
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862module_init(pl2303_init);
863module_exit(pl2303_exit);
864
865MODULE_DESCRIPTION(DRIVER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866MODULE_LICENSE("GPL");
867
868module_param(debug, bool, S_IRUGO | S_IWUSR);
869MODULE_PARM_DESC(debug, "Debug enabled or not");
870