Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Prolific PL2303 USB to serial adaptor driver |
| 3 | * |
Greg Kroah-Hartman | 4d0dce3 | 2007-06-12 11:43:37 -0700 | [diff] [blame] | 4 | * Copyright (C) 2001-2007 Greg Kroah-Hartman (greg@kroah.com) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | * Copyright (C) 2003 IBM Corp. |
| 6 | * |
| 7 | * Original driver for 2.2.x by anonymous |
| 8 | * |
Greg Kroah-Hartman | 4d0dce3 | 2007-06-12 11:43:37 -0700 | [diff] [blame] | 9 | * 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | * |
| 13 | * See Documentation/usb/usb-serial.txt for more information on using this driver |
| 14 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | */ |
| 16 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include <linux/kernel.h> |
| 18 | #include <linux/errno.h> |
| 19 | #include <linux/init.h> |
| 20 | #include <linux/slab.h> |
| 21 | #include <linux/tty.h> |
| 22 | #include <linux/tty_driver.h> |
| 23 | #include <linux/tty_flip.h> |
| 24 | #include <linux/serial.h> |
| 25 | #include <linux/module.h> |
| 26 | #include <linux/moduleparam.h> |
| 27 | #include <linux/spinlock.h> |
| 28 | #include <asm/uaccess.h> |
| 29 | #include <linux/usb.h> |
Greg Kroah-Hartman | a969888 | 2006-07-11 21:22:58 -0700 | [diff] [blame] | 30 | #include <linux/usb/serial.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | #include "pl2303.h" |
| 32 | |
| 33 | /* |
| 34 | * Version Information |
| 35 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | #define DRIVER_DESC "Prolific PL2303 USB to serial adaptor driver" |
| 37 | |
| 38 | static int debug; |
| 39 | |
| 40 | #define PL2303_CLOSING_WAIT (30*HZ) |
| 41 | |
| 42 | #define PL2303_BUF_SIZE 1024 |
| 43 | #define PL2303_TMP_BUF_SIZE 1024 |
| 44 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | struct pl2303_buf { |
| 46 | unsigned int buf_size; |
| 47 | char *buf_buf; |
| 48 | char *buf_get; |
| 49 | char *buf_put; |
| 50 | }; |
| 51 | |
| 52 | static struct usb_device_id id_table [] = { |
| 53 | { USB_DEVICE(PL2303_VENDOR_ID, PL2303_PRODUCT_ID) }, |
| 54 | { USB_DEVICE(PL2303_VENDOR_ID, PL2303_PRODUCT_ID_RSAQ2) }, |
Peter Moulder | 3d86149 | 2006-06-19 22:47:49 +1000 | [diff] [blame] | 55 | { USB_DEVICE(PL2303_VENDOR_ID, PL2303_PRODUCT_ID_DCU11) }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | { USB_DEVICE(PL2303_VENDOR_ID, PL2303_PRODUCT_ID_RSAQ3) }, |
| 57 | { USB_DEVICE(PL2303_VENDOR_ID, PL2303_PRODUCT_ID_PHAROS) }, |
| 58 | { USB_DEVICE(IODATA_VENDOR_ID, IODATA_PRODUCT_ID) }, |
| 59 | { USB_DEVICE(ATEN_VENDOR_ID, ATEN_PRODUCT_ID) }, |
| 60 | { USB_DEVICE(ATEN_VENDOR_ID2, ATEN_PRODUCT_ID) }, |
| 61 | { USB_DEVICE(ELCOM_VENDOR_ID, ELCOM_PRODUCT_ID) }, |
| 62 | { USB_DEVICE(ELCOM_VENDOR_ID, ELCOM_PRODUCT_ID_UCSGT) }, |
| 63 | { USB_DEVICE(ITEGNO_VENDOR_ID, ITEGNO_PRODUCT_ID) }, |
Wang Jun | 5838171 | 2006-04-19 16:32:07 +0800 | [diff] [blame] | 64 | { USB_DEVICE(ITEGNO_VENDOR_ID, ITEGNO_PRODUCT_ID_2080) }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | { USB_DEVICE(MA620_VENDOR_ID, MA620_PRODUCT_ID) }, |
| 66 | { USB_DEVICE(RATOC_VENDOR_ID, RATOC_PRODUCT_ID) }, |
| 67 | { USB_DEVICE(TRIPP_VENDOR_ID, TRIPP_PRODUCT_ID) }, |
| 68 | { USB_DEVICE(RADIOSHACK_VENDOR_ID, RADIOSHACK_PRODUCT_ID) }, |
| 69 | { USB_DEVICE(DCU10_VENDOR_ID, DCU10_PRODUCT_ID) }, |
| 70 | { USB_DEVICE(SITECOM_VENDOR_ID, SITECOM_PRODUCT_ID) }, |
| 71 | { USB_DEVICE(ALCATEL_VENDOR_ID, ALCATEL_PRODUCT_ID) }, |
| 72 | { USB_DEVICE(SAMSUNG_VENDOR_ID, SAMSUNG_PRODUCT_ID) }, |
Luiz Fernando Capitulino | a8310f3 | 2005-11-17 09:47:32 -0800 | [diff] [blame] | 73 | { USB_DEVICE(SIEMENS_VENDOR_ID, SIEMENS_PRODUCT_ID_SX1) }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | { USB_DEVICE(SIEMENS_VENDOR_ID, SIEMENS_PRODUCT_ID_X65) }, |
Luiz Fernando Capitulino | a8310f3 | 2005-11-17 09:47:32 -0800 | [diff] [blame] | 75 | { USB_DEVICE(SIEMENS_VENDOR_ID, SIEMENS_PRODUCT_ID_X75) }, |
Peter Favrholdt | acbb36f | 2005-04-18 17:39:32 -0700 | [diff] [blame] | 76 | { USB_DEVICE(SYNTECH_VENDOR_ID, SYNTECH_PRODUCT_ID) }, |
Christian Lindner | c6c2772 | 2006-02-01 14:10:52 +0100 | [diff] [blame] | 77 | { USB_DEVICE(NOKIA_CA42_VENDOR_ID, NOKIA_CA42_PRODUCT_ID) }, |
| 78 | { USB_DEVICE(CA_42_CA42_VENDOR_ID, CA_42_CA42_PRODUCT_ID) }, |
Denis MONTERRAT | 6cceb05 | 2006-01-19 14:52:38 +0100 | [diff] [blame] | 79 | { USB_DEVICE(SAGEM_VENDOR_ID, SAGEM_PRODUCT_ID) }, |
Christian Lindner | c6c2772 | 2006-02-01 14:10:52 +0100 | [diff] [blame] | 80 | { USB_DEVICE(LEADTEK_VENDOR_ID, LEADTEK_9531_PRODUCT_ID) }, |
Dick Streefland | 491b04c | 2006-03-01 00:53:33 -0800 | [diff] [blame] | 81 | { USB_DEVICE(SPEEDDRAGON_VENDOR_ID, SPEEDDRAGON_PRODUCT_ID) }, |
Matthew Meno | 3b92847 | 2006-06-21 15:25:53 -0400 | [diff] [blame] | 82 | { USB_DEVICE(DATAPILOT_U2_VENDOR_ID, DATAPILOT_U2_PRODUCT_ID) }, |
Kim Oldfield | b7aa94b | 2006-07-25 15:54:59 +1000 | [diff] [blame] | 83 | { USB_DEVICE(BELKIN_VENDOR_ID, BELKIN_PRODUCT_ID) }, |
Johannes Steingraeber | 8fd8013 | 2006-09-16 16:17:34 +0200 | [diff] [blame] | 84 | { USB_DEVICE(ALCOR_VENDOR_ID, ALCOR_PRODUCT_ID) }, |
Wesley PA4WDH | b697f70 | 2006-09-28 20:45:38 +0200 | [diff] [blame] | 85 | { USB_DEVICE(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_ID) }, |
YOSHIFUJI Hideaki | 2d94b98 | 2007-01-26 22:51:38 +0900 | [diff] [blame] | 86 | { USB_DEVICE(WS002IN_VENDOR_ID, WS002IN_PRODUCT_ID) }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | { } /* Terminating entry */ |
| 88 | }; |
| 89 | |
Thiago Galesi | 372db8a | 2006-07-31 15:39:27 -0300 | [diff] [blame] | 90 | MODULE_DEVICE_TABLE(usb, id_table); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | |
| 92 | static struct usb_driver pl2303_driver = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | .name = "pl2303", |
| 94 | .probe = usb_serial_probe, |
| 95 | .disconnect = usb_serial_disconnect, |
| 96 | .id_table = id_table, |
Greg Kroah-Hartman | ba9dc65 | 2005-11-16 13:41:28 -0800 | [diff] [blame] | 97 | .no_dynamic_id = 1, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | }; |
| 99 | |
| 100 | #define SET_LINE_REQUEST_TYPE 0x21 |
| 101 | #define SET_LINE_REQUEST 0x20 |
| 102 | |
| 103 | #define SET_CONTROL_REQUEST_TYPE 0x21 |
| 104 | #define SET_CONTROL_REQUEST 0x22 |
| 105 | #define CONTROL_DTR 0x01 |
| 106 | #define CONTROL_RTS 0x02 |
| 107 | |
| 108 | #define BREAK_REQUEST_TYPE 0x21 |
| 109 | #define BREAK_REQUEST 0x23 |
| 110 | #define BREAK_ON 0xffff |
| 111 | #define BREAK_OFF 0x0000 |
| 112 | |
| 113 | #define GET_LINE_REQUEST_TYPE 0xa1 |
| 114 | #define GET_LINE_REQUEST 0x21 |
| 115 | |
| 116 | #define VENDOR_WRITE_REQUEST_TYPE 0x40 |
| 117 | #define VENDOR_WRITE_REQUEST 0x01 |
| 118 | |
| 119 | #define VENDOR_READ_REQUEST_TYPE 0xc0 |
| 120 | #define VENDOR_READ_REQUEST 0x01 |
| 121 | |
| 122 | #define UART_STATE 0x08 |
| 123 | #define UART_STATE_TRANSIENT_MASK 0x74 |
| 124 | #define UART_DCD 0x01 |
| 125 | #define UART_DSR 0x02 |
| 126 | #define UART_BREAK_ERROR 0x04 |
| 127 | #define UART_RING 0x08 |
| 128 | #define UART_FRAME_ERROR 0x10 |
| 129 | #define UART_PARITY_ERROR 0x20 |
| 130 | #define UART_OVERRUN_ERROR 0x40 |
| 131 | #define UART_CTS 0x80 |
| 132 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | |
| 134 | enum pl2303_type { |
| 135 | type_0, /* don't know the difference between type 0 and */ |
| 136 | type_1, /* type 1, until someone from prolific tells us... */ |
| 137 | HX, /* HX version of the pl2303 chip */ |
| 138 | }; |
| 139 | |
| 140 | struct pl2303_private { |
| 141 | spinlock_t lock; |
| 142 | struct pl2303_buf *buf; |
| 143 | int write_urb_in_use; |
| 144 | wait_queue_head_t delta_msr_wait; |
| 145 | u8 line_control; |
| 146 | u8 line_status; |
| 147 | u8 termios_initialized; |
| 148 | enum pl2303_type type; |
| 149 | }; |
| 150 | |
Thiago Galesi | 572d313 | 2006-07-29 10:46:37 -0300 | [diff] [blame] | 151 | /* |
| 152 | * pl2303_buf_alloc |
| 153 | * |
| 154 | * Allocate a circular buffer and all associated memory. |
| 155 | */ |
| 156 | static struct pl2303_buf *pl2303_buf_alloc(unsigned int size) |
| 157 | { |
| 158 | struct pl2303_buf *pb; |
| 159 | |
| 160 | if (size == 0) |
| 161 | return NULL; |
| 162 | |
Robert P. J. Day | 5cbded5 | 2006-12-13 00:35:56 -0800 | [diff] [blame] | 163 | pb = kmalloc(sizeof(struct pl2303_buf), GFP_KERNEL); |
Thiago Galesi | 572d313 | 2006-07-29 10:46:37 -0300 | [diff] [blame] | 164 | if (pb == NULL) |
| 165 | return NULL; |
| 166 | |
| 167 | pb->buf_buf = kmalloc(size, GFP_KERNEL); |
| 168 | if (pb->buf_buf == NULL) { |
| 169 | kfree(pb); |
| 170 | return NULL; |
| 171 | } |
| 172 | |
| 173 | pb->buf_size = size; |
| 174 | pb->buf_get = pb->buf_put = pb->buf_buf; |
| 175 | |
| 176 | return pb; |
| 177 | } |
| 178 | |
| 179 | /* |
| 180 | * pl2303_buf_free |
| 181 | * |
| 182 | * Free the buffer and all associated memory. |
| 183 | */ |
| 184 | static void pl2303_buf_free(struct pl2303_buf *pb) |
| 185 | { |
| 186 | if (pb) { |
| 187 | kfree(pb->buf_buf); |
| 188 | kfree(pb); |
| 189 | } |
| 190 | } |
| 191 | |
| 192 | /* |
| 193 | * pl2303_buf_clear |
| 194 | * |
| 195 | * Clear out all data in the circular buffer. |
| 196 | */ |
| 197 | static void pl2303_buf_clear(struct pl2303_buf *pb) |
| 198 | { |
| 199 | if (pb != NULL) |
| 200 | pb->buf_get = pb->buf_put; |
| 201 | /* equivalent to a get of all data available */ |
| 202 | } |
| 203 | |
| 204 | /* |
| 205 | * pl2303_buf_data_avail |
| 206 | * |
| 207 | * Return the number of bytes of data available in the circular |
| 208 | * buffer. |
| 209 | */ |
| 210 | static unsigned int pl2303_buf_data_avail(struct pl2303_buf *pb) |
| 211 | { |
| 212 | if (pb == NULL) |
| 213 | return 0; |
| 214 | |
| 215 | return ((pb->buf_size + pb->buf_put - pb->buf_get) % pb->buf_size); |
| 216 | } |
| 217 | |
| 218 | /* |
| 219 | * pl2303_buf_space_avail |
| 220 | * |
| 221 | * Return the number of bytes of space available in the circular |
| 222 | * buffer. |
| 223 | */ |
| 224 | static unsigned int pl2303_buf_space_avail(struct pl2303_buf *pb) |
| 225 | { |
| 226 | if (pb == NULL) |
| 227 | return 0; |
| 228 | |
| 229 | return ((pb->buf_size + pb->buf_get - pb->buf_put - 1) % pb->buf_size); |
| 230 | } |
| 231 | |
| 232 | /* |
| 233 | * pl2303_buf_put |
| 234 | * |
| 235 | * Copy data data from a user buffer and put it into the circular buffer. |
| 236 | * Restrict to the amount of space available. |
| 237 | * |
| 238 | * Return the number of bytes copied. |
| 239 | */ |
| 240 | static unsigned int pl2303_buf_put(struct pl2303_buf *pb, const char *buf, |
| 241 | unsigned int count) |
| 242 | { |
| 243 | unsigned int len; |
| 244 | |
| 245 | if (pb == NULL) |
| 246 | return 0; |
| 247 | |
| 248 | len = pl2303_buf_space_avail(pb); |
| 249 | if (count > len) |
| 250 | count = len; |
| 251 | |
| 252 | if (count == 0) |
| 253 | return 0; |
| 254 | |
| 255 | len = pb->buf_buf + pb->buf_size - pb->buf_put; |
| 256 | if (count > len) { |
| 257 | memcpy(pb->buf_put, buf, len); |
| 258 | memcpy(pb->buf_buf, buf+len, count - len); |
| 259 | pb->buf_put = pb->buf_buf + count - len; |
| 260 | } else { |
| 261 | memcpy(pb->buf_put, buf, count); |
| 262 | if (count < len) |
| 263 | pb->buf_put += count; |
| 264 | else /* count == len */ |
| 265 | pb->buf_put = pb->buf_buf; |
| 266 | } |
| 267 | |
| 268 | return count; |
| 269 | } |
| 270 | |
| 271 | /* |
| 272 | * pl2303_buf_get |
| 273 | * |
| 274 | * Get data from the circular buffer and copy to the given buffer. |
| 275 | * Restrict to the amount of data available. |
| 276 | * |
| 277 | * Return the number of bytes copied. |
| 278 | */ |
| 279 | static unsigned int pl2303_buf_get(struct pl2303_buf *pb, char *buf, |
| 280 | unsigned int count) |
| 281 | { |
| 282 | unsigned int len; |
| 283 | |
| 284 | if (pb == NULL) |
| 285 | return 0; |
| 286 | |
| 287 | len = pl2303_buf_data_avail(pb); |
| 288 | if (count > len) |
| 289 | count = len; |
| 290 | |
| 291 | if (count == 0) |
| 292 | return 0; |
| 293 | |
| 294 | len = pb->buf_buf + pb->buf_size - pb->buf_get; |
| 295 | if (count > len) { |
| 296 | memcpy(buf, pb->buf_get, len); |
| 297 | memcpy(buf+len, pb->buf_buf, count - len); |
| 298 | pb->buf_get = pb->buf_buf + count - len; |
| 299 | } else { |
| 300 | memcpy(buf, pb->buf_get, count); |
| 301 | if (count < len) |
| 302 | pb->buf_get += count; |
| 303 | else /* count == len */ |
| 304 | pb->buf_get = pb->buf_buf; |
| 305 | } |
| 306 | |
| 307 | return count; |
| 308 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 | |
Thiago Galesi | 372db8a | 2006-07-31 15:39:27 -0300 | [diff] [blame] | 310 | static int pl2303_startup(struct usb_serial *serial) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 311 | { |
| 312 | struct pl2303_private *priv; |
| 313 | enum pl2303_type type = type_0; |
| 314 | int i; |
| 315 | |
| 316 | if (serial->dev->descriptor.bDeviceClass == 0x02) |
| 317 | type = type_0; |
| 318 | else if (serial->dev->descriptor.bMaxPacketSize0 == 0x40) |
| 319 | type = HX; |
| 320 | else if (serial->dev->descriptor.bDeviceClass == 0x00) |
| 321 | type = type_1; |
| 322 | else if (serial->dev->descriptor.bDeviceClass == 0xFF) |
| 323 | type = type_1; |
| 324 | dbg("device type: %d", type); |
| 325 | |
| 326 | for (i = 0; i < serial->num_ports; ++i) { |
Eric Sesterhenn | 80b6ca4 | 2006-02-27 21:29:43 +0100 | [diff] [blame] | 327 | priv = kzalloc(sizeof(struct pl2303_private), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 328 | if (!priv) |
| 329 | goto cleanup; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 330 | spin_lock_init(&priv->lock); |
| 331 | priv->buf = pl2303_buf_alloc(PL2303_BUF_SIZE); |
| 332 | if (priv->buf == NULL) { |
| 333 | kfree(priv); |
| 334 | goto cleanup; |
| 335 | } |
| 336 | init_waitqueue_head(&priv->delta_msr_wait); |
| 337 | priv->type = type; |
| 338 | usb_set_serial_port_data(serial->port[i], priv); |
| 339 | } |
| 340 | return 0; |
| 341 | |
| 342 | cleanup: |
| 343 | for (--i; i>=0; --i) { |
| 344 | priv = usb_get_serial_port_data(serial->port[i]); |
| 345 | pl2303_buf_free(priv->buf); |
| 346 | kfree(priv); |
| 347 | usb_set_serial_port_data(serial->port[i], NULL); |
| 348 | } |
| 349 | return -ENOMEM; |
| 350 | } |
| 351 | |
Thiago Galesi | 372db8a | 2006-07-31 15:39:27 -0300 | [diff] [blame] | 352 | static int set_control_lines(struct usb_device *dev, u8 value) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 | { |
| 354 | int retval; |
| 355 | |
Thiago Galesi | 372db8a | 2006-07-31 15:39:27 -0300 | [diff] [blame] | 356 | retval = usb_control_msg(dev, usb_sndctrlpipe(dev, 0), |
| 357 | SET_CONTROL_REQUEST, SET_CONTROL_REQUEST_TYPE, |
| 358 | value, 0, NULL, 0, 100); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 359 | dbg("%s - value = %d, retval = %d", __FUNCTION__, value, retval); |
| 360 | return retval; |
| 361 | } |
| 362 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | static void pl2303_send(struct usb_serial_port *port) |
| 364 | { |
| 365 | int count, result; |
| 366 | struct pl2303_private *priv = usb_get_serial_port_data(port); |
| 367 | unsigned long flags; |
| 368 | |
| 369 | dbg("%s - port %d", __FUNCTION__, port->number); |
| 370 | |
| 371 | spin_lock_irqsave(&priv->lock, flags); |
| 372 | |
| 373 | if (priv->write_urb_in_use) { |
| 374 | spin_unlock_irqrestore(&priv->lock, flags); |
| 375 | return; |
| 376 | } |
| 377 | |
| 378 | count = pl2303_buf_get(priv->buf, port->write_urb->transfer_buffer, |
Thiago Galesi | 372db8a | 2006-07-31 15:39:27 -0300 | [diff] [blame] | 379 | port->bulk_out_size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 380 | |
| 381 | if (count == 0) { |
| 382 | spin_unlock_irqrestore(&priv->lock, flags); |
| 383 | return; |
| 384 | } |
| 385 | |
| 386 | priv->write_urb_in_use = 1; |
| 387 | |
| 388 | spin_unlock_irqrestore(&priv->lock, flags); |
| 389 | |
Thiago Galesi | 372db8a | 2006-07-31 15:39:27 -0300 | [diff] [blame] | 390 | usb_serial_debug_data(debug, &port->dev, __FUNCTION__, count, |
| 391 | port->write_urb->transfer_buffer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 392 | |
| 393 | port->write_urb->transfer_buffer_length = count; |
| 394 | port->write_urb->dev = port->serial->dev; |
Thiago Galesi | 372db8a | 2006-07-31 15:39:27 -0300 | [diff] [blame] | 395 | result = usb_submit_urb(port->write_urb, GFP_ATOMIC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 396 | if (result) { |
Thiago Galesi | 372db8a | 2006-07-31 15:39:27 -0300 | [diff] [blame] | 397 | dev_err(&port->dev, "%s - failed submitting write urb," |
| 398 | " error %d\n", __FUNCTION__, result); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | priv->write_urb_in_use = 0; |
| 400 | // TODO: reschedule pl2303_send |
| 401 | } |
| 402 | |
Pete Zaitcev | cf2c748 | 2006-05-22 21:58:49 -0700 | [diff] [blame] | 403 | usb_serial_port_softint(port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 404 | } |
| 405 | |
Thiago Galesi | 572d313 | 2006-07-29 10:46:37 -0300 | [diff] [blame] | 406 | static int pl2303_write(struct usb_serial_port *port, const unsigned char *buf, |
| 407 | int count) |
| 408 | { |
| 409 | struct pl2303_private *priv = usb_get_serial_port_data(port); |
| 410 | unsigned long flags; |
| 411 | |
| 412 | dbg("%s - port %d, %d bytes", __FUNCTION__, port->number, count); |
| 413 | |
| 414 | if (!count) |
| 415 | return count; |
| 416 | |
| 417 | spin_lock_irqsave(&priv->lock, flags); |
| 418 | count = pl2303_buf_put(priv->buf, buf, count); |
| 419 | spin_unlock_irqrestore(&priv->lock, flags); |
| 420 | |
| 421 | pl2303_send(port); |
| 422 | |
| 423 | return count; |
| 424 | } |
| 425 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 | static int pl2303_write_room(struct usb_serial_port *port) |
| 427 | { |
| 428 | struct pl2303_private *priv = usb_get_serial_port_data(port); |
| 429 | int room = 0; |
| 430 | unsigned long flags; |
| 431 | |
| 432 | dbg("%s - port %d", __FUNCTION__, port->number); |
| 433 | |
| 434 | spin_lock_irqsave(&priv->lock, flags); |
| 435 | room = pl2303_buf_space_avail(priv->buf); |
| 436 | spin_unlock_irqrestore(&priv->lock, flags); |
| 437 | |
| 438 | dbg("%s - returns %d", __FUNCTION__, room); |
| 439 | return room; |
| 440 | } |
| 441 | |
| 442 | static int pl2303_chars_in_buffer(struct usb_serial_port *port) |
| 443 | { |
| 444 | struct pl2303_private *priv = usb_get_serial_port_data(port); |
| 445 | int chars = 0; |
| 446 | unsigned long flags; |
| 447 | |
| 448 | dbg("%s - port %d", __FUNCTION__, port->number); |
| 449 | |
| 450 | spin_lock_irqsave(&priv->lock, flags); |
| 451 | chars = pl2303_buf_data_avail(priv->buf); |
| 452 | spin_unlock_irqrestore(&priv->lock, flags); |
| 453 | |
| 454 | dbg("%s - returns %d", __FUNCTION__, chars); |
| 455 | return chars; |
| 456 | } |
| 457 | |
Thiago Galesi | 372db8a | 2006-07-31 15:39:27 -0300 | [diff] [blame] | 458 | static void pl2303_set_termios(struct usb_serial_port *port, |
Alan Cox | 606d099 | 2006-12-08 02:38:45 -0800 | [diff] [blame] | 459 | struct ktermios *old_termios) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 460 | { |
| 461 | struct usb_serial *serial = port->serial; |
| 462 | struct pl2303_private *priv = usb_get_serial_port_data(port); |
| 463 | unsigned long flags; |
| 464 | unsigned int cflag; |
| 465 | unsigned char *buf; |
| 466 | int baud; |
| 467 | int i; |
| 468 | u8 control; |
| 469 | |
| 470 | dbg("%s - port %d", __FUNCTION__, port->number); |
| 471 | |
| 472 | if ((!port->tty) || (!port->tty->termios)) { |
| 473 | dbg("%s - no tty structures", __FUNCTION__); |
| 474 | return; |
| 475 | } |
| 476 | |
| 477 | spin_lock_irqsave(&priv->lock, flags); |
| 478 | if (!priv->termios_initialized) { |
| 479 | *(port->tty->termios) = tty_std_termios; |
Thiago Galesi | 372db8a | 2006-07-31 15:39:27 -0300 | [diff] [blame] | 480 | port->tty->termios->c_cflag = B9600 | CS8 | CREAD | |
| 481 | HUPCL | CLOCAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 482 | priv->termios_initialized = 1; |
| 483 | } |
| 484 | spin_unlock_irqrestore(&priv->lock, flags); |
| 485 | |
| 486 | cflag = port->tty->termios->c_cflag; |
| 487 | /* check that they really want us to change something */ |
| 488 | if (old_termios) { |
| 489 | if ((cflag == old_termios->c_cflag) && |
Thiago Galesi | 372db8a | 2006-07-31 15:39:27 -0300 | [diff] [blame] | 490 | (RELEVANT_IFLAG(port->tty->termios->c_iflag) == |
| 491 | RELEVANT_IFLAG(old_termios->c_iflag))) { |
| 492 | dbg("%s - nothing to change...", __FUNCTION__); |
| 493 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 494 | } |
| 495 | } |
| 496 | |
Thiago Galesi | 372db8a | 2006-07-31 15:39:27 -0300 | [diff] [blame] | 497 | buf = kzalloc(7, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 498 | if (!buf) { |
| 499 | dev_err(&port->dev, "%s - out of memory.\n", __FUNCTION__); |
| 500 | return; |
| 501 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 502 | |
Thiago Galesi | 372db8a | 2006-07-31 15:39:27 -0300 | [diff] [blame] | 503 | i = usb_control_msg(serial->dev, usb_rcvctrlpipe(serial->dev, 0), |
| 504 | GET_LINE_REQUEST, GET_LINE_REQUEST_TYPE, |
| 505 | 0, 0, buf, 7, 100); |
| 506 | dbg("0xa1:0x21:0:0 %d - %x %x %x %x %x %x %x", i, |
| 507 | buf[0], buf[1], buf[2], buf[3], buf[4], buf[5], buf[6]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 508 | |
| 509 | if (cflag & CSIZE) { |
| 510 | switch (cflag & CSIZE) { |
| 511 | case CS5: buf[6] = 5; break; |
| 512 | case CS6: buf[6] = 6; break; |
| 513 | case CS7: buf[6] = 7; break; |
| 514 | default: |
| 515 | case CS8: buf[6] = 8; break; |
| 516 | } |
| 517 | dbg("%s - data bits = %d", __FUNCTION__, buf[6]); |
| 518 | } |
| 519 | |
| 520 | baud = 0; |
| 521 | switch (cflag & CBAUD) { |
| 522 | case B0: baud = 0; break; |
| 523 | case B75: baud = 75; break; |
| 524 | case B150: baud = 150; break; |
| 525 | case B300: baud = 300; break; |
| 526 | case B600: baud = 600; break; |
| 527 | case B1200: baud = 1200; break; |
| 528 | case B1800: baud = 1800; break; |
| 529 | case B2400: baud = 2400; break; |
| 530 | case B4800: baud = 4800; break; |
| 531 | case B9600: baud = 9600; break; |
| 532 | case B19200: baud = 19200; break; |
| 533 | case B38400: baud = 38400; break; |
| 534 | case B57600: baud = 57600; break; |
| 535 | case B115200: baud = 115200; break; |
| 536 | case B230400: baud = 230400; break; |
| 537 | case B460800: baud = 460800; break; |
| 538 | default: |
Thiago Galesi | 372db8a | 2006-07-31 15:39:27 -0300 | [diff] [blame] | 539 | dev_err(&port->dev, "pl2303 driver does not support" |
| 540 | " the baudrate requested (fix it)\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 541 | break; |
| 542 | } |
| 543 | dbg("%s - baud = %d", __FUNCTION__, baud); |
| 544 | if (baud) { |
| 545 | buf[0] = baud & 0xff; |
| 546 | buf[1] = (baud >> 8) & 0xff; |
| 547 | buf[2] = (baud >> 16) & 0xff; |
| 548 | buf[3] = (baud >> 24) & 0xff; |
| 549 | } |
| 550 | |
| 551 | /* For reference buf[4]=0 is 1 stop bits */ |
| 552 | /* For reference buf[4]=1 is 1.5 stop bits */ |
| 553 | /* For reference buf[4]=2 is 2 stop bits */ |
| 554 | if (cflag & CSTOPB) { |
| 555 | buf[4] = 2; |
| 556 | dbg("%s - stop bits = 2", __FUNCTION__); |
| 557 | } else { |
| 558 | buf[4] = 0; |
| 559 | dbg("%s - stop bits = 1", __FUNCTION__); |
| 560 | } |
| 561 | |
| 562 | if (cflag & PARENB) { |
| 563 | /* For reference buf[5]=0 is none parity */ |
| 564 | /* For reference buf[5]=1 is odd parity */ |
| 565 | /* For reference buf[5]=2 is even parity */ |
| 566 | /* For reference buf[5]=3 is mark parity */ |
| 567 | /* For reference buf[5]=4 is space parity */ |
| 568 | if (cflag & PARODD) { |
| 569 | buf[5] = 1; |
| 570 | dbg("%s - parity = odd", __FUNCTION__); |
| 571 | } else { |
| 572 | buf[5] = 2; |
| 573 | dbg("%s - parity = even", __FUNCTION__); |
| 574 | } |
| 575 | } else { |
| 576 | buf[5] = 0; |
| 577 | dbg("%s - parity = none", __FUNCTION__); |
| 578 | } |
| 579 | |
Thiago Galesi | 372db8a | 2006-07-31 15:39:27 -0300 | [diff] [blame] | 580 | i = usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0), |
| 581 | SET_LINE_REQUEST, SET_LINE_REQUEST_TYPE, |
| 582 | 0, 0, buf, 7, 100); |
| 583 | dbg("0x21:0x20:0:0 %d", i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 584 | |
| 585 | /* change control lines if we are switching to or from B0 */ |
| 586 | spin_lock_irqsave(&priv->lock, flags); |
| 587 | control = priv->line_control; |
| 588 | if ((cflag & CBAUD) == B0) |
| 589 | priv->line_control &= ~(CONTROL_DTR | CONTROL_RTS); |
| 590 | else |
| 591 | priv->line_control |= (CONTROL_DTR | CONTROL_RTS); |
| 592 | if (control != priv->line_control) { |
| 593 | control = priv->line_control; |
| 594 | spin_unlock_irqrestore(&priv->lock, flags); |
| 595 | set_control_lines(serial->dev, control); |
| 596 | } else { |
| 597 | spin_unlock_irqrestore(&priv->lock, flags); |
| 598 | } |
Thiago Galesi | 372db8a | 2006-07-31 15:39:27 -0300 | [diff] [blame] | 599 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 600 | buf[0] = buf[1] = buf[2] = buf[3] = buf[4] = buf[5] = buf[6] = 0; |
| 601 | |
Thiago Galesi | 372db8a | 2006-07-31 15:39:27 -0300 | [diff] [blame] | 602 | i = usb_control_msg(serial->dev, usb_rcvctrlpipe(serial->dev, 0), |
| 603 | GET_LINE_REQUEST, GET_LINE_REQUEST_TYPE, |
| 604 | 0, 0, buf, 7, 100); |
| 605 | dbg("0xa1:0x21:0:0 %d - %x %x %x %x %x %x %x", i, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 606 | buf[0], buf[1], buf[2], buf[3], buf[4], buf[5], buf[6]); |
| 607 | |
| 608 | if (cflag & CRTSCTS) { |
| 609 | __u16 index; |
| 610 | if (priv->type == HX) |
| 611 | index = 0x61; |
| 612 | else |
| 613 | index = 0x41; |
Thiago Galesi | 372db8a | 2006-07-31 15:39:27 -0300 | [diff] [blame] | 614 | i = usb_control_msg(serial->dev, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 615 | usb_sndctrlpipe(serial->dev, 0), |
| 616 | VENDOR_WRITE_REQUEST, |
| 617 | VENDOR_WRITE_REQUEST_TYPE, |
| 618 | 0x0, index, NULL, 0, 100); |
Thiago Galesi | 372db8a | 2006-07-31 15:39:27 -0300 | [diff] [blame] | 619 | dbg("0x40:0x1:0x0:0x%x %d", index, i); |
t.sefzick | 715f952 | 2007-04-25 15:05:22 +0200 | [diff] [blame] | 620 | } else { |
| 621 | i = usb_control_msg(serial->dev, |
| 622 | usb_sndctrlpipe(serial->dev, 0), |
| 623 | VENDOR_WRITE_REQUEST, |
| 624 | VENDOR_WRITE_REQUEST_TYPE, |
| 625 | 0x0, 0x0, NULL, 0, 100); |
| 626 | dbg ("0x40:0x1:0x0:0x0 %d", i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 627 | } |
| 628 | |
Thiago Galesi | 372db8a | 2006-07-31 15:39:27 -0300 | [diff] [blame] | 629 | kfree(buf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 630 | } |
| 631 | |
Thiago Galesi | 572d313 | 2006-07-29 10:46:37 -0300 | [diff] [blame] | 632 | static void pl2303_close(struct usb_serial_port *port, struct file *filp) |
| 633 | { |
| 634 | struct pl2303_private *priv = usb_get_serial_port_data(port); |
| 635 | unsigned long flags; |
| 636 | unsigned int c_cflag; |
| 637 | int bps; |
| 638 | long timeout; |
| 639 | wait_queue_t wait; |
| 640 | |
| 641 | dbg("%s - port %d", __FUNCTION__, port->number); |
| 642 | |
| 643 | /* wait for data to drain from the buffer */ |
| 644 | spin_lock_irqsave(&priv->lock, flags); |
| 645 | timeout = PL2303_CLOSING_WAIT; |
| 646 | init_waitqueue_entry(&wait, current); |
| 647 | add_wait_queue(&port->tty->write_wait, &wait); |
| 648 | for (;;) { |
| 649 | set_current_state(TASK_INTERRUPTIBLE); |
| 650 | if (pl2303_buf_data_avail(priv->buf) == 0 || |
| 651 | timeout == 0 || signal_pending(current) || |
| 652 | !usb_get_intfdata(port->serial->interface)) /* disconnect */ |
| 653 | break; |
| 654 | spin_unlock_irqrestore(&priv->lock, flags); |
| 655 | timeout = schedule_timeout(timeout); |
| 656 | spin_lock_irqsave(&priv->lock, flags); |
| 657 | } |
| 658 | set_current_state(TASK_RUNNING); |
| 659 | remove_wait_queue(&port->tty->write_wait, &wait); |
| 660 | /* clear out any remaining data in the buffer */ |
| 661 | pl2303_buf_clear(priv->buf); |
| 662 | spin_unlock_irqrestore(&priv->lock, flags); |
| 663 | |
| 664 | /* wait for characters to drain from the device */ |
| 665 | /* (this is long enough for the entire 256 byte */ |
| 666 | /* pl2303 hardware buffer to drain with no flow */ |
| 667 | /* control for data rates of 1200 bps or more, */ |
| 668 | /* for lower rates we should really know how much */ |
| 669 | /* data is in the buffer to compute a delay */ |
| 670 | /* that is not unnecessarily long) */ |
| 671 | bps = tty_get_baud_rate(port->tty); |
| 672 | if (bps > 1200) |
| 673 | timeout = max((HZ*2560)/bps,HZ/10); |
| 674 | else |
| 675 | timeout = 2*HZ; |
| 676 | schedule_timeout_interruptible(timeout); |
| 677 | |
| 678 | /* shutdown our urbs */ |
| 679 | dbg("%s - shutting down urbs", __FUNCTION__); |
| 680 | usb_kill_urb(port->write_urb); |
| 681 | usb_kill_urb(port->read_urb); |
| 682 | usb_kill_urb(port->interrupt_in_urb); |
| 683 | |
| 684 | if (port->tty) { |
| 685 | c_cflag = port->tty->termios->c_cflag; |
| 686 | if (c_cflag & HUPCL) { |
| 687 | /* drop DTR and RTS */ |
| 688 | spin_lock_irqsave(&priv->lock, flags); |
| 689 | priv->line_control = 0; |
| 690 | spin_unlock_irqrestore(&priv->lock, flags); |
| 691 | set_control_lines(port->serial->dev, 0); |
| 692 | } |
| 693 | } |
| 694 | } |
| 695 | |
Thiago Galesi | 372db8a | 2006-07-31 15:39:27 -0300 | [diff] [blame] | 696 | static int pl2303_open(struct usb_serial_port *port, struct file *filp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 697 | { |
Alan Cox | 606d099 | 2006-12-08 02:38:45 -0800 | [diff] [blame] | 698 | struct ktermios tmp_termios; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 699 | struct usb_serial *serial = port->serial; |
| 700 | struct pl2303_private *priv = usb_get_serial_port_data(port); |
| 701 | unsigned char *buf; |
| 702 | int result; |
| 703 | |
| 704 | dbg("%s - port %d", __FUNCTION__, port->number); |
| 705 | |
Dariusz M | 1694899 | 2005-07-28 18:06:13 +0200 | [diff] [blame] | 706 | if (priv->type != HX) { |
| 707 | usb_clear_halt(serial->dev, port->write_urb->pipe); |
| 708 | usb_clear_halt(serial->dev, port->read_urb->pipe); |
| 709 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 710 | |
| 711 | buf = kmalloc(10, GFP_KERNEL); |
| 712 | if (buf==NULL) |
| 713 | return -ENOMEM; |
| 714 | |
| 715 | #define FISH(a,b,c,d) \ |
| 716 | result=usb_control_msg(serial->dev, usb_rcvctrlpipe(serial->dev,0), \ |
| 717 | b, a, c, d, buf, 1, 100); \ |
| 718 | dbg("0x%x:0x%x:0x%x:0x%x %d - %x",a,b,c,d,result,buf[0]); |
| 719 | |
| 720 | #define SOUP(a,b,c,d) \ |
| 721 | result=usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev,0), \ |
| 722 | b, a, c, d, NULL, 0, 100); \ |
| 723 | dbg("0x%x:0x%x:0x%x:0x%x %d",a,b,c,d,result); |
| 724 | |
| 725 | FISH (VENDOR_READ_REQUEST_TYPE, VENDOR_READ_REQUEST, 0x8484, 0); |
| 726 | SOUP (VENDOR_WRITE_REQUEST_TYPE, VENDOR_WRITE_REQUEST, 0x0404, 0); |
| 727 | FISH (VENDOR_READ_REQUEST_TYPE, VENDOR_READ_REQUEST, 0x8484, 0); |
| 728 | FISH (VENDOR_READ_REQUEST_TYPE, VENDOR_READ_REQUEST, 0x8383, 0); |
| 729 | FISH (VENDOR_READ_REQUEST_TYPE, VENDOR_READ_REQUEST, 0x8484, 0); |
| 730 | SOUP (VENDOR_WRITE_REQUEST_TYPE, VENDOR_WRITE_REQUEST, 0x0404, 1); |
| 731 | FISH (VENDOR_READ_REQUEST_TYPE, VENDOR_READ_REQUEST, 0x8484, 0); |
| 732 | FISH (VENDOR_READ_REQUEST_TYPE, VENDOR_READ_REQUEST, 0x8383, 0); |
| 733 | SOUP (VENDOR_WRITE_REQUEST_TYPE, VENDOR_WRITE_REQUEST, 0, 1); |
| 734 | SOUP (VENDOR_WRITE_REQUEST_TYPE, VENDOR_WRITE_REQUEST, 1, 0); |
| 735 | |
| 736 | if (priv->type == HX) { |
| 737 | /* HX chip */ |
| 738 | SOUP (VENDOR_WRITE_REQUEST_TYPE, VENDOR_WRITE_REQUEST, 2, 0x44); |
| 739 | /* reset upstream data pipes */ |
| 740 | SOUP (VENDOR_WRITE_REQUEST_TYPE, VENDOR_WRITE_REQUEST, 8, 0); |
| 741 | SOUP (VENDOR_WRITE_REQUEST_TYPE, VENDOR_WRITE_REQUEST, 9, 0); |
| 742 | } else { |
| 743 | SOUP (VENDOR_WRITE_REQUEST_TYPE, VENDOR_WRITE_REQUEST, 2, 0x24); |
| 744 | } |
| 745 | |
| 746 | kfree(buf); |
| 747 | |
| 748 | /* Setup termios */ |
| 749 | if (port->tty) { |
Thiago Galesi | 372db8a | 2006-07-31 15:39:27 -0300 | [diff] [blame] | 750 | pl2303_set_termios(port, &tmp_termios); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 751 | } |
| 752 | |
| 753 | //FIXME: need to assert RTS and DTR if CRTSCTS off |
| 754 | |
| 755 | dbg("%s - submitting read urb", __FUNCTION__); |
| 756 | port->read_urb->dev = serial->dev; |
Thiago Galesi | 372db8a | 2006-07-31 15:39:27 -0300 | [diff] [blame] | 757 | result = usb_submit_urb(port->read_urb, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 758 | if (result) { |
Thiago Galesi | 372db8a | 2006-07-31 15:39:27 -0300 | [diff] [blame] | 759 | dev_err(&port->dev, "%s - failed submitting read urb," |
| 760 | " error %d\n", __FUNCTION__, result); |
| 761 | pl2303_close(port, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 762 | return -EPROTO; |
| 763 | } |
| 764 | |
| 765 | dbg("%s - submitting interrupt urb", __FUNCTION__); |
| 766 | port->interrupt_in_urb->dev = serial->dev; |
Thiago Galesi | 372db8a | 2006-07-31 15:39:27 -0300 | [diff] [blame] | 767 | result = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 768 | if (result) { |
Thiago Galesi | 372db8a | 2006-07-31 15:39:27 -0300 | [diff] [blame] | 769 | dev_err(&port->dev, "%s - failed submitting interrupt urb," |
| 770 | " error %d\n", __FUNCTION__, result); |
| 771 | pl2303_close(port, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 772 | return -EPROTO; |
| 773 | } |
| 774 | return 0; |
| 775 | } |
| 776 | |
Thiago Galesi | 372db8a | 2006-07-31 15:39:27 -0300 | [diff] [blame] | 777 | static int pl2303_tiocmset(struct usb_serial_port *port, struct file *file, |
| 778 | unsigned int set, unsigned int clear) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 779 | { |
| 780 | struct pl2303_private *priv = usb_get_serial_port_data(port); |
| 781 | unsigned long flags; |
| 782 | u8 control; |
| 783 | |
Flavio Leitner | 6fdd8e8 | 2005-04-18 17:39:31 -0700 | [diff] [blame] | 784 | if (!usb_get_intfdata(port->serial->interface)) |
| 785 | return -ENODEV; |
| 786 | |
Thiago Galesi | 372db8a | 2006-07-31 15:39:27 -0300 | [diff] [blame] | 787 | spin_lock_irqsave(&priv->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 788 | if (set & TIOCM_RTS) |
| 789 | priv->line_control |= CONTROL_RTS; |
| 790 | if (set & TIOCM_DTR) |
| 791 | priv->line_control |= CONTROL_DTR; |
| 792 | if (clear & TIOCM_RTS) |
| 793 | priv->line_control &= ~CONTROL_RTS; |
| 794 | if (clear & TIOCM_DTR) |
| 795 | priv->line_control &= ~CONTROL_DTR; |
| 796 | control = priv->line_control; |
Thiago Galesi | 372db8a | 2006-07-31 15:39:27 -0300 | [diff] [blame] | 797 | spin_unlock_irqrestore(&priv->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 798 | |
Thiago Galesi | 372db8a | 2006-07-31 15:39:27 -0300 | [diff] [blame] | 799 | return set_control_lines(port->serial->dev, control); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 800 | } |
| 801 | |
Thiago Galesi | 372db8a | 2006-07-31 15:39:27 -0300 | [diff] [blame] | 802 | static int pl2303_tiocmget(struct usb_serial_port *port, struct file *file) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 803 | { |
| 804 | struct pl2303_private *priv = usb_get_serial_port_data(port); |
| 805 | unsigned long flags; |
| 806 | unsigned int mcr; |
| 807 | unsigned int status; |
| 808 | unsigned int result; |
| 809 | |
| 810 | dbg("%s (%d)", __FUNCTION__, port->number); |
| 811 | |
Flavio Leitner | 6fdd8e8 | 2005-04-18 17:39:31 -0700 | [diff] [blame] | 812 | if (!usb_get_intfdata(port->serial->interface)) |
| 813 | return -ENODEV; |
| 814 | |
Thiago Galesi | 372db8a | 2006-07-31 15:39:27 -0300 | [diff] [blame] | 815 | spin_lock_irqsave(&priv->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 816 | mcr = priv->line_control; |
| 817 | status = priv->line_status; |
Thiago Galesi | 372db8a | 2006-07-31 15:39:27 -0300 | [diff] [blame] | 818 | spin_unlock_irqrestore(&priv->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 819 | |
| 820 | result = ((mcr & CONTROL_DTR) ? TIOCM_DTR : 0) |
| 821 | | ((mcr & CONTROL_RTS) ? TIOCM_RTS : 0) |
| 822 | | ((status & UART_CTS) ? TIOCM_CTS : 0) |
| 823 | | ((status & UART_DSR) ? TIOCM_DSR : 0) |
| 824 | | ((status & UART_RING) ? TIOCM_RI : 0) |
| 825 | | ((status & UART_DCD) ? TIOCM_CD : 0); |
| 826 | |
| 827 | dbg("%s - result = %x", __FUNCTION__, result); |
| 828 | |
| 829 | return result; |
| 830 | } |
| 831 | |
| 832 | static int wait_modem_info(struct usb_serial_port *port, unsigned int arg) |
| 833 | { |
| 834 | struct pl2303_private *priv = usb_get_serial_port_data(port); |
| 835 | unsigned long flags; |
| 836 | unsigned int prevstatus; |
| 837 | unsigned int status; |
| 838 | unsigned int changed; |
| 839 | |
Thiago Galesi | 372db8a | 2006-07-31 15:39:27 -0300 | [diff] [blame] | 840 | spin_lock_irqsave(&priv->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 841 | prevstatus = priv->line_status; |
Thiago Galesi | 372db8a | 2006-07-31 15:39:27 -0300 | [diff] [blame] | 842 | spin_unlock_irqrestore(&priv->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 843 | |
| 844 | while (1) { |
| 845 | interruptible_sleep_on(&priv->delta_msr_wait); |
| 846 | /* see if a signal did it */ |
| 847 | if (signal_pending(current)) |
| 848 | return -ERESTARTSYS; |
Thiago Galesi | 372db8a | 2006-07-31 15:39:27 -0300 | [diff] [blame] | 849 | |
| 850 | spin_lock_irqsave(&priv->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 851 | status = priv->line_status; |
Thiago Galesi | 372db8a | 2006-07-31 15:39:27 -0300 | [diff] [blame] | 852 | spin_unlock_irqrestore(&priv->lock, flags); |
| 853 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 854 | changed=prevstatus^status; |
Thiago Galesi | 372db8a | 2006-07-31 15:39:27 -0300 | [diff] [blame] | 855 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 856 | if (((arg & TIOCM_RNG) && (changed & UART_RING)) || |
| 857 | ((arg & TIOCM_DSR) && (changed & UART_DSR)) || |
| 858 | ((arg & TIOCM_CD) && (changed & UART_DCD)) || |
| 859 | ((arg & TIOCM_CTS) && (changed & UART_CTS)) ) { |
| 860 | return 0; |
| 861 | } |
| 862 | prevstatus = status; |
| 863 | } |
| 864 | /* NOTREACHED */ |
| 865 | return 0; |
| 866 | } |
| 867 | |
Thiago Galesi | 372db8a | 2006-07-31 15:39:27 -0300 | [diff] [blame] | 868 | static int pl2303_ioctl(struct usb_serial_port *port, struct file *file, |
| 869 | unsigned int cmd, unsigned long arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 870 | { |
| 871 | dbg("%s (%d) cmd = 0x%04x", __FUNCTION__, port->number, cmd); |
| 872 | |
| 873 | switch (cmd) { |
| 874 | case TIOCMIWAIT: |
| 875 | dbg("%s (%d) TIOCMIWAIT", __FUNCTION__, port->number); |
| 876 | return wait_modem_info(port, arg); |
| 877 | |
| 878 | default: |
| 879 | dbg("%s not supported = 0x%04x", __FUNCTION__, cmd); |
| 880 | break; |
| 881 | } |
| 882 | |
| 883 | return -ENOIOCTLCMD; |
| 884 | } |
| 885 | |
Thiago Galesi | 372db8a | 2006-07-31 15:39:27 -0300 | [diff] [blame] | 886 | static void pl2303_break_ctl(struct usb_serial_port *port, int break_state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 887 | { |
| 888 | struct usb_serial *serial = port->serial; |
| 889 | u16 state; |
| 890 | int result; |
| 891 | |
| 892 | dbg("%s - port %d", __FUNCTION__, port->number); |
| 893 | |
| 894 | if (break_state == 0) |
| 895 | state = BREAK_OFF; |
| 896 | else |
| 897 | state = BREAK_ON; |
| 898 | dbg("%s - turning break %s", __FUNCTION__, state==BREAK_OFF ? "off" : "on"); |
| 899 | |
Thiago Galesi | 372db8a | 2006-07-31 15:39:27 -0300 | [diff] [blame] | 900 | result = usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0), |
| 901 | BREAK_REQUEST, BREAK_REQUEST_TYPE, state, |
| 902 | 0, NULL, 0, 100); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 903 | if (result) |
| 904 | dbg("%s - error sending break = %d", __FUNCTION__, result); |
| 905 | } |
| 906 | |
Thiago Galesi | 372db8a | 2006-07-31 15:39:27 -0300 | [diff] [blame] | 907 | static void pl2303_shutdown(struct usb_serial *serial) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 908 | { |
| 909 | int i; |
| 910 | struct pl2303_private *priv; |
| 911 | |
| 912 | dbg("%s", __FUNCTION__); |
| 913 | |
| 914 | for (i = 0; i < serial->num_ports; ++i) { |
| 915 | priv = usb_get_serial_port_data(serial->port[i]); |
| 916 | if (priv) { |
| 917 | pl2303_buf_free(priv->buf); |
| 918 | kfree(priv); |
| 919 | usb_set_serial_port_data(serial->port[i], NULL); |
| 920 | } |
Thiago Galesi | 372db8a | 2006-07-31 15:39:27 -0300 | [diff] [blame] | 921 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 922 | } |
| 923 | |
Flavio Leitner | 97bb13e | 2005-04-18 17:39:31 -0700 | [diff] [blame] | 924 | static void pl2303_update_line_status(struct usb_serial_port *port, |
| 925 | unsigned char *data, |
| 926 | unsigned int actual_length) |
| 927 | { |
| 928 | |
| 929 | struct pl2303_private *priv = usb_get_serial_port_data(port); |
| 930 | unsigned long flags; |
| 931 | u8 status_idx = UART_STATE; |
Horst Schirmeier | 95f209f | 2005-07-28 15:32:20 +0200 | [diff] [blame] | 932 | u8 length = UART_STATE + 1; |
Thiago Galesi | 9c53761 | 2006-07-29 10:47:12 -0300 | [diff] [blame] | 933 | u16 idv, idp; |
Flavio Leitner | 97bb13e | 2005-04-18 17:39:31 -0700 | [diff] [blame] | 934 | |
Thiago Galesi | 9c53761 | 2006-07-29 10:47:12 -0300 | [diff] [blame] | 935 | idv = le16_to_cpu(port->serial->dev->descriptor.idVendor); |
| 936 | idp = le16_to_cpu(port->serial->dev->descriptor.idProduct); |
| 937 | |
| 938 | |
| 939 | if (idv == SIEMENS_VENDOR_ID) { |
| 940 | if (idp == SIEMENS_PRODUCT_ID_X65 || |
| 941 | idp == SIEMENS_PRODUCT_ID_SX1 || |
| 942 | idp == SIEMENS_PRODUCT_ID_X75) { |
| 943 | |
| 944 | length = 1; |
| 945 | status_idx = 0; |
| 946 | } |
Flavio Leitner | 97bb13e | 2005-04-18 17:39:31 -0700 | [diff] [blame] | 947 | } |
| 948 | |
| 949 | if (actual_length < length) |
Luiz Fernando N. Capitulino | a009b75 | 2006-07-25 16:58:30 -0300 | [diff] [blame] | 950 | return; |
Flavio Leitner | 97bb13e | 2005-04-18 17:39:31 -0700 | [diff] [blame] | 951 | |
| 952 | /* Save off the uart status for others to look at */ |
| 953 | spin_lock_irqsave(&priv->lock, flags); |
| 954 | priv->line_status = data[status_idx]; |
| 955 | spin_unlock_irqrestore(&priv->lock, flags); |
Thiago Galesi | 372db8a | 2006-07-31 15:39:27 -0300 | [diff] [blame] | 956 | wake_up_interruptible(&priv->delta_msr_wait); |
Flavio Leitner | 97bb13e | 2005-04-18 17:39:31 -0700 | [diff] [blame] | 957 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 958 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 959 | static void pl2303_read_int_callback(struct urb *urb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 960 | { |
| 961 | struct usb_serial_port *port = (struct usb_serial_port *) urb->context; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 962 | unsigned char *data = urb->transfer_buffer; |
Flavio Leitner | 97bb13e | 2005-04-18 17:39:31 -0700 | [diff] [blame] | 963 | unsigned int actual_length = urb->actual_length; |
Greg Kroah-Hartman | 461d696 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 964 | int status = urb->status; |
| 965 | int retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 966 | |
| 967 | dbg("%s (%d)", __FUNCTION__, port->number); |
| 968 | |
Greg Kroah-Hartman | 461d696 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 969 | switch (status) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 970 | case 0: |
| 971 | /* success */ |
| 972 | break; |
| 973 | case -ECONNRESET: |
| 974 | case -ENOENT: |
| 975 | case -ESHUTDOWN: |
| 976 | /* this urb is terminated, clean up */ |
Thiago Galesi | 372db8a | 2006-07-31 15:39:27 -0300 | [diff] [blame] | 977 | dbg("%s - urb shutting down with status: %d", __FUNCTION__, |
Greg Kroah-Hartman | 461d696 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 978 | status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 979 | return; |
| 980 | default: |
Thiago Galesi | 372db8a | 2006-07-31 15:39:27 -0300 | [diff] [blame] | 981 | dbg("%s - nonzero urb status received: %d", __FUNCTION__, |
Greg Kroah-Hartman | 461d696 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 982 | status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 983 | goto exit; |
| 984 | } |
| 985 | |
Thiago Galesi | 372db8a | 2006-07-31 15:39:27 -0300 | [diff] [blame] | 986 | usb_serial_debug_data(debug, &port->dev, __FUNCTION__, |
| 987 | urb->actual_length, urb->transfer_buffer); |
| 988 | |
Flavio Leitner | 97bb13e | 2005-04-18 17:39:31 -0700 | [diff] [blame] | 989 | pl2303_update_line_status(port, data, actual_length); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 990 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 991 | exit: |
Greg Kroah-Hartman | 461d696 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 992 | retval = usb_submit_urb(urb, GFP_ATOMIC); |
| 993 | if (retval) |
Thiago Galesi | 372db8a | 2006-07-31 15:39:27 -0300 | [diff] [blame] | 994 | dev_err(&urb->dev->dev, |
| 995 | "%s - usb_submit_urb failed with result %d\n", |
Greg Kroah-Hartman | 461d696 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 996 | __FUNCTION__, retval); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 997 | } |
| 998 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 999 | static void pl2303_read_bulk_callback(struct urb *urb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1000 | { |
| 1001 | struct usb_serial_port *port = (struct usb_serial_port *) urb->context; |
| 1002 | struct pl2303_private *priv = usb_get_serial_port_data(port); |
| 1003 | struct tty_struct *tty; |
| 1004 | unsigned char *data = urb->transfer_buffer; |
| 1005 | unsigned long flags; |
| 1006 | int i; |
| 1007 | int result; |
Greg Kroah-Hartman | 461d696 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 1008 | int status = urb->status; |
| 1009 | u8 line_status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1010 | char tty_flag; |
| 1011 | |
| 1012 | dbg("%s - port %d", __FUNCTION__, port->number); |
| 1013 | |
Greg Kroah-Hartman | 461d696 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 1014 | if (status) { |
| 1015 | dbg("%s - urb status = %d", __FUNCTION__, status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1016 | if (!port->open_count) { |
| 1017 | dbg("%s - port is closed, exiting.", __FUNCTION__); |
| 1018 | return; |
| 1019 | } |
Greg Kroah-Hartman | 461d696 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 1020 | if (status == -EPROTO) { |
Thiago Galesi | 372db8a | 2006-07-31 15:39:27 -0300 | [diff] [blame] | 1021 | /* PL2303 mysteriously fails with -EPROTO reschedule |
| 1022 | * the read */ |
| 1023 | dbg("%s - caught -EPROTO, resubmitting the urb", |
| 1024 | __FUNCTION__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1025 | urb->dev = port->serial->dev; |
| 1026 | result = usb_submit_urb(urb, GFP_ATOMIC); |
| 1027 | if (result) |
Thiago Galesi | 372db8a | 2006-07-31 15:39:27 -0300 | [diff] [blame] | 1028 | dev_err(&urb->dev->dev, "%s - failed" |
| 1029 | " resubmitting read urb, error %d\n", |
| 1030 | __FUNCTION__, result); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1031 | return; |
| 1032 | } |
| 1033 | dbg("%s - unable to handle the error, exiting.", __FUNCTION__); |
| 1034 | return; |
| 1035 | } |
| 1036 | |
Thiago Galesi | 372db8a | 2006-07-31 15:39:27 -0300 | [diff] [blame] | 1037 | usb_serial_debug_data(debug, &port->dev, __FUNCTION__, |
| 1038 | urb->actual_length, data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1039 | |
| 1040 | /* get tty_flag from status */ |
| 1041 | tty_flag = TTY_NORMAL; |
| 1042 | |
| 1043 | spin_lock_irqsave(&priv->lock, flags); |
Greg Kroah-Hartman | 461d696 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 1044 | line_status = priv->line_status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1045 | priv->line_status &= ~UART_STATE_TRANSIENT_MASK; |
| 1046 | spin_unlock_irqrestore(&priv->lock, flags); |
Thiago Galesi | 372db8a | 2006-07-31 15:39:27 -0300 | [diff] [blame] | 1047 | wake_up_interruptible(&priv->delta_msr_wait); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1048 | |
| 1049 | /* break takes precedence over parity, */ |
| 1050 | /* which takes precedence over framing errors */ |
Greg Kroah-Hartman | 461d696 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 1051 | if (line_status & UART_BREAK_ERROR ) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1052 | tty_flag = TTY_BREAK; |
Greg Kroah-Hartman | 461d696 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 1053 | else if (line_status & UART_PARITY_ERROR) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1054 | tty_flag = TTY_PARITY; |
Greg Kroah-Hartman | 461d696 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 1055 | else if (line_status & UART_FRAME_ERROR) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1056 | tty_flag = TTY_FRAME; |
| 1057 | dbg("%s - tty_flag = %d", __FUNCTION__, tty_flag); |
| 1058 | |
| 1059 | tty = port->tty; |
| 1060 | if (tty && urb->actual_length) { |
Alan Cox | 33f0f88 | 2006-01-09 20:54:13 -0800 | [diff] [blame] | 1061 | tty_buffer_request_room(tty, urb->actual_length + 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1062 | /* overrun is special, not associated with a char */ |
Greg Kroah-Hartman | 461d696 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 1063 | if (line_status & UART_OVERRUN_ERROR) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1064 | tty_insert_flip_char(tty, 0, TTY_OVERRUN); |
Alan Cox | 33f0f88 | 2006-01-09 20:54:13 -0800 | [diff] [blame] | 1065 | for (i = 0; i < urb->actual_length; ++i) |
Thiago Galesi | 372db8a | 2006-07-31 15:39:27 -0300 | [diff] [blame] | 1066 | tty_insert_flip_char(tty, data[i], tty_flag); |
| 1067 | tty_flip_buffer_push(tty); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1068 | } |
| 1069 | |
| 1070 | /* Schedule the next read _if_ we are still open */ |
| 1071 | if (port->open_count) { |
| 1072 | urb->dev = port->serial->dev; |
| 1073 | result = usb_submit_urb(urb, GFP_ATOMIC); |
| 1074 | if (result) |
Thiago Galesi | 372db8a | 2006-07-31 15:39:27 -0300 | [diff] [blame] | 1075 | dev_err(&urb->dev->dev, "%s - failed resubmitting" |
| 1076 | " read urb, error %d\n", __FUNCTION__, result); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1077 | } |
| 1078 | |
| 1079 | return; |
| 1080 | } |
| 1081 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 1082 | static void pl2303_write_bulk_callback(struct urb *urb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1083 | { |
| 1084 | struct usb_serial_port *port = (struct usb_serial_port *) urb->context; |
| 1085 | struct pl2303_private *priv = usb_get_serial_port_data(port); |
| 1086 | int result; |
Greg Kroah-Hartman | 461d696 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 1087 | int status = urb->status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1088 | |
| 1089 | dbg("%s - port %d", __FUNCTION__, port->number); |
| 1090 | |
Greg Kroah-Hartman | 461d696 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 1091 | switch (status) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1092 | case 0: |
| 1093 | /* success */ |
| 1094 | break; |
| 1095 | case -ECONNRESET: |
| 1096 | case -ENOENT: |
| 1097 | case -ESHUTDOWN: |
| 1098 | /* this urb is terminated, clean up */ |
Thiago Galesi | 372db8a | 2006-07-31 15:39:27 -0300 | [diff] [blame] | 1099 | dbg("%s - urb shutting down with status: %d", __FUNCTION__, |
Greg Kroah-Hartman | 461d696 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 1100 | status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1101 | priv->write_urb_in_use = 0; |
| 1102 | return; |
| 1103 | default: |
| 1104 | /* error in the urb, so we have to resubmit it */ |
| 1105 | dbg("%s - Overflow in write", __FUNCTION__); |
Thiago Galesi | 372db8a | 2006-07-31 15:39:27 -0300 | [diff] [blame] | 1106 | dbg("%s - nonzero write bulk status received: %d", __FUNCTION__, |
Greg Kroah-Hartman | 461d696 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 1107 | status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1108 | port->write_urb->transfer_buffer_length = 1; |
| 1109 | port->write_urb->dev = port->serial->dev; |
Thiago Galesi | 372db8a | 2006-07-31 15:39:27 -0300 | [diff] [blame] | 1110 | result = usb_submit_urb(port->write_urb, GFP_ATOMIC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1111 | if (result) |
Thiago Galesi | 372db8a | 2006-07-31 15:39:27 -0300 | [diff] [blame] | 1112 | dev_err(&urb->dev->dev, "%s - failed resubmitting write" |
| 1113 | " urb, error %d\n", __FUNCTION__, result); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1114 | else |
| 1115 | return; |
| 1116 | } |
| 1117 | |
| 1118 | priv->write_urb_in_use = 0; |
| 1119 | |
| 1120 | /* send any buffered data */ |
| 1121 | pl2303_send(port); |
| 1122 | } |
| 1123 | |
Thiago Galesi | 572d313 | 2006-07-29 10:46:37 -0300 | [diff] [blame] | 1124 | /* All of the device info needed for the PL2303 SIO serial converter */ |
| 1125 | static struct usb_serial_driver pl2303_device = { |
| 1126 | .driver = { |
| 1127 | .owner = THIS_MODULE, |
| 1128 | .name = "pl2303", |
| 1129 | }, |
| 1130 | .id_table = id_table, |
Johannes Hölzl | d9b1b78 | 2006-12-17 21:50:24 +0100 | [diff] [blame] | 1131 | .usb_driver = &pl2303_driver, |
Thiago Galesi | 572d313 | 2006-07-29 10:46:37 -0300 | [diff] [blame] | 1132 | .num_interrupt_in = NUM_DONT_CARE, |
| 1133 | .num_bulk_in = 1, |
| 1134 | .num_bulk_out = 1, |
| 1135 | .num_ports = 1, |
| 1136 | .open = pl2303_open, |
| 1137 | .close = pl2303_close, |
| 1138 | .write = pl2303_write, |
| 1139 | .ioctl = pl2303_ioctl, |
| 1140 | .break_ctl = pl2303_break_ctl, |
| 1141 | .set_termios = pl2303_set_termios, |
| 1142 | .tiocmget = pl2303_tiocmget, |
| 1143 | .tiocmset = pl2303_tiocmset, |
| 1144 | .read_bulk_callback = pl2303_read_bulk_callback, |
| 1145 | .read_int_callback = pl2303_read_int_callback, |
| 1146 | .write_bulk_callback = pl2303_write_bulk_callback, |
| 1147 | .write_room = pl2303_write_room, |
| 1148 | .chars_in_buffer = pl2303_chars_in_buffer, |
| 1149 | .attach = pl2303_startup, |
| 1150 | .shutdown = pl2303_shutdown, |
| 1151 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1152 | |
Thiago Galesi | 372db8a | 2006-07-31 15:39:27 -0300 | [diff] [blame] | 1153 | static int __init pl2303_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1154 | { |
| 1155 | int retval; |
Thiago Galesi | 372db8a | 2006-07-31 15:39:27 -0300 | [diff] [blame] | 1156 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1157 | retval = usb_serial_register(&pl2303_device); |
| 1158 | if (retval) |
| 1159 | goto failed_usb_serial_register; |
| 1160 | retval = usb_register(&pl2303_driver); |
| 1161 | if (retval) |
| 1162 | goto failed_usb_register; |
Greg Kroah-Hartman | 17a882f | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 1163 | info(DRIVER_DESC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1164 | return 0; |
| 1165 | failed_usb_register: |
| 1166 | usb_serial_deregister(&pl2303_device); |
| 1167 | failed_usb_serial_register: |
| 1168 | return retval; |
| 1169 | } |
| 1170 | |
Thiago Galesi | 372db8a | 2006-07-31 15:39:27 -0300 | [diff] [blame] | 1171 | static void __exit pl2303_exit(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1172 | { |
Thiago Galesi | 372db8a | 2006-07-31 15:39:27 -0300 | [diff] [blame] | 1173 | usb_deregister(&pl2303_driver); |
| 1174 | usb_serial_deregister(&pl2303_device); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1175 | } |
| 1176 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1177 | module_init(pl2303_init); |
| 1178 | module_exit(pl2303_exit); |
| 1179 | |
| 1180 | MODULE_DESCRIPTION(DRIVER_DESC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1181 | MODULE_LICENSE("GPL"); |
| 1182 | |
| 1183 | module_param(debug, bool, S_IRUGO | S_IWUSR); |
| 1184 | MODULE_PARM_DESC(debug, "Debug enabled or not"); |
| 1185 | |