blob: 60c200230bc8955d2da36835d969e0c119486d67 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * USB Cypress M8 driver
3 *
4 * Copyright (C) 2004
Alan Cox813a2242008-07-22 11:10:36 +01005 * Lonnie Mendez (dignome@gmail.com)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * Copyright (C) 2003,2004
7 * Neil Whelchel (koyama@firstlight.net)
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
Alan Cox813a2242008-07-22 11:10:36 +010014 * See Documentation/usb/usb-serial.txt for more information on using this
15 * driver
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 *
17 * See http://geocities.com/i0xox0i for information on this driver and the
18 * earthmate usb device.
19 *
Lonnie Mendez3cb4a4f2005-05-03 17:02:20 -050020 * Lonnie Mendez <dignome@gmail.com>
21 * 4-29-2005
Alan Cox813a2242008-07-22 11:10:36 +010022 * Fixed problem where setting or retreiving the serial config would fail
23 * with EPIPE. Removed CRTS toggling so the driver behaves more like
24 * other usbserial adapters. Issued new interval of 1ms instead of the
25 * default 10ms. As a result, transfer speed has been substantially
26 * increased from avg. 850bps to avg. 3300bps. initial termios has also
27 * been modified. Cleaned up code and formatting issues so it is more
28 * readable. Replaced the C++ style comments.
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 *
30 * Lonnie Mendez <dignome@gmail.com>
31 * 12-15-2004
32 * Incorporated write buffering from pl2303 driver. Fixed bug with line
33 * handling so both lines are raised in cypress_open. (was dropping rts)
34 * Various code cleanups made as well along with other misc bug fixes.
35 *
36 * Lonnie Mendez <dignome@gmail.com>
37 * 04-10-2004
38 * Driver modified to support dynamic line settings. Various improvments
39 * and features.
40 *
41 * Neil Whelchel
42 * 10-2003
43 * Driver first released.
44 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 */
46
Alan Cox813a2242008-07-22 11:10:36 +010047/* Thanks to Neil Whelchel for writing the first cypress m8 implementation
48 for linux. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070049/* Thanks to cypress for providing references for the hid reports. */
50/* Thanks to Jiang Zhang for providing links and for general help. */
Alan Cox813a2242008-07-22 11:10:36 +010051/* Code originates and was built up from ftdi_sio, belkin, pl2303 and others.*/
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#include <linux/kernel.h>
55#include <linux/errno.h>
56#include <linux/init.h>
57#include <linux/slab.h>
58#include <linux/tty.h>
59#include <linux/tty_driver.h>
60#include <linux/tty_flip.h>
61#include <linux/module.h>
62#include <linux/moduleparam.h>
63#include <linux/spinlock.h>
64#include <linux/usb.h>
Greg Kroah-Hartmana9698882006-07-11 21:22:58 -070065#include <linux/usb/serial.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070066#include <linux/serial.h>
67#include <linux/delay.h>
Alan Cox813a2242008-07-22 11:10:36 +010068#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
Linus Torvalds1da177e2005-04-16 15:20:36 -070070#include "cypress_m8.h"
71
72
Mike Frysinger64319dd2009-12-18 16:33:01 -050073static int debug;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074static int stats;
Lonnie Mendez3cb4a4f2005-05-03 17:02:20 -050075static int interval;
Mike Frysingerc3126592009-12-18 16:33:03 -050076static int unstable_bauds;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
78/*
79 * Version Information
80 */
Lonnie Mendez3cb4a4f2005-05-03 17:02:20 -050081#define DRIVER_VERSION "v1.09"
Linus Torvalds1da177e2005-04-16 15:20:36 -070082#define DRIVER_AUTHOR "Lonnie Mendez <dignome@gmail.com>, Neil Whelchel <koyama@firstlight.net>"
83#define DRIVER_DESC "Cypress USB to Serial Driver"
84
85/* write buffer size defines */
86#define CYPRESS_BUF_SIZE 1024
87#define CYPRESS_CLOSING_WAIT (30*HZ)
88
89static struct usb_device_id id_table_earthmate [] = {
90 { USB_DEVICE(VENDOR_ID_DELORME, PRODUCT_ID_EARTHMATEUSB) },
Lonnie Mendez25b6f082005-05-10 17:09:52 -050091 { USB_DEVICE(VENDOR_ID_DELORME, PRODUCT_ID_EARTHMATEUSB_LT20) },
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 { } /* Terminating entry */
93};
94
95static struct usb_device_id id_table_cyphidcomrs232 [] = {
96 { USB_DEVICE(VENDOR_ID_CYPRESS, PRODUCT_ID_CYPHIDCOM) },
Dmitry Shapin6f6f06e2008-03-04 15:25:10 -080097 { USB_DEVICE(VENDOR_ID_POWERCOM, PRODUCT_ID_UPS) },
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 { } /* Terminating entry */
99};
100
Lonnie Mendeza5c44e22006-03-01 10:45:24 -0600101static struct usb_device_id id_table_nokiaca42v2 [] = {
102 { USB_DEVICE(VENDOR_ID_DAZZLE, PRODUCT_ID_CA42) },
103 { } /* Terminating entry */
104};
105
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106static struct usb_device_id id_table_combined [] = {
107 { USB_DEVICE(VENDOR_ID_DELORME, PRODUCT_ID_EARTHMATEUSB) },
Lonnie Mendez25b6f082005-05-10 17:09:52 -0500108 { USB_DEVICE(VENDOR_ID_DELORME, PRODUCT_ID_EARTHMATEUSB_LT20) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 { USB_DEVICE(VENDOR_ID_CYPRESS, PRODUCT_ID_CYPHIDCOM) },
Dmitry Shapin6f6f06e2008-03-04 15:25:10 -0800110 { USB_DEVICE(VENDOR_ID_POWERCOM, PRODUCT_ID_UPS) },
Lonnie Mendeza5c44e22006-03-01 10:45:24 -0600111 { USB_DEVICE(VENDOR_ID_DAZZLE, PRODUCT_ID_CA42) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 { } /* Terminating entry */
113};
114
Alan Cox813a2242008-07-22 11:10:36 +0100115MODULE_DEVICE_TABLE(usb, id_table_combined);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
117static struct usb_driver cypress_driver = {
118 .name = "cypress",
119 .probe = usb_serial_probe,
120 .disconnect = usb_serial_disconnect,
121 .id_table = id_table_combined,
Greg Kroah-Hartmanba9dc652005-11-16 13:41:28 -0800122 .no_dynamic_id = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123};
124
Mike Isely3416eaa2008-02-10 20:23:19 -0600125enum packet_format {
126 packet_format_1, /* b0:status, b1:payload count */
127 packet_format_2 /* b0[7:3]:status, b0[2:0]:payload count */
128};
129
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130struct cypress_private {
131 spinlock_t lock; /* private lock */
132 int chiptype; /* identifier of device, for quirks/etc */
133 int bytes_in; /* used for statistics */
134 int bytes_out; /* used for statistics */
135 int cmd_count; /* used for statistics */
136 int cmd_ctrl; /* always set this to 1 before issuing a command */
137 struct cypress_buf *buf; /* write buffer */
138 int write_urb_in_use; /* write urb in use indicator */
Mike Isely0257fa92006-08-29 22:06:59 -0500139 int write_urb_interval; /* interval to use for write urb */
140 int read_urb_interval; /* interval to use for read urb */
Mike Isely78aef512006-08-29 22:07:11 -0500141 int comm_is_ok; /* true if communication is (still) ok */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 int termios_initialized;
143 __u8 line_control; /* holds dtr / rts value */
144 __u8 current_status; /* received from last read - info on dsr,cts,cd,ri,etc */
145 __u8 current_config; /* stores the current configuration byte */
146 __u8 rx_flags; /* throttling - used from whiteheat/ftdi_sio */
Mike Isely3416eaa2008-02-10 20:23:19 -0600147 enum packet_format pkt_fmt; /* format to use for packet send / receive */
Mike Isely3d6aa322008-02-10 20:23:24 -0600148 int get_cfg_unsafe; /* If true, the CYPRESS_GET_CONFIG is unsafe */
Alan Cox813a2242008-07-22 11:10:36 +0100149 int baud_rate; /* stores current baud rate in
150 integer form */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 int isthrottled; /* if throttled, discard reads */
152 wait_queue_head_t delta_msr_wait; /* used for TIOCMIWAIT */
153 char prev_status, diff_status; /* used for TIOCMIWAIT */
Alan Cox813a2242008-07-22 11:10:36 +0100154 /* we pass a pointer to this as the arguement sent to
155 cypress_set_termios old_termios */
Alan Cox606d0992006-12-08 02:38:45 -0800156 struct ktermios tmp_termios; /* stores the old termios settings */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157};
158
159/* write buffer structure */
160struct cypress_buf {
161 unsigned int buf_size;
162 char *buf_buf;
163 char *buf_get;
164 char *buf_put;
165};
166
167/* function prototypes for the Cypress USB to serial device */
Alan Cox813a2242008-07-22 11:10:36 +0100168static int cypress_earthmate_startup(struct usb_serial *serial);
169static int cypress_hidcom_startup(struct usb_serial *serial);
170static int cypress_ca42v2_startup(struct usb_serial *serial);
Alan Sternf9c99bb2009-06-02 11:53:55 -0400171static void cypress_release(struct usb_serial *serial);
Alan Coxa509a7e2009-09-19 13:13:26 -0700172static int cypress_open(struct tty_struct *tty, struct usb_serial_port *port);
Alan Cox335f8512009-06-11 12:26:29 +0100173static void cypress_close(struct usb_serial_port *port);
174static void cypress_dtr_rts(struct usb_serial_port *port, int on);
Alan Cox813a2242008-07-22 11:10:36 +0100175static int cypress_write(struct tty_struct *tty, struct usb_serial_port *port,
176 const unsigned char *buf, int count);
177static void cypress_send(struct usb_serial_port *port);
178static int cypress_write_room(struct tty_struct *tty);
179static int cypress_ioctl(struct tty_struct *tty, struct file *file,
180 unsigned int cmd, unsigned long arg);
181static void cypress_set_termios(struct tty_struct *tty,
182 struct usb_serial_port *port, struct ktermios *old);
183static int cypress_tiocmget(struct tty_struct *tty, struct file *file);
184static int cypress_tiocmset(struct tty_struct *tty, struct file *file,
185 unsigned int set, unsigned int clear);
186static int cypress_chars_in_buffer(struct tty_struct *tty);
187static void cypress_throttle(struct tty_struct *tty);
188static void cypress_unthrottle(struct tty_struct *tty);
189static void cypress_set_dead(struct usb_serial_port *port);
190static void cypress_read_int_callback(struct urb *urb);
191static void cypress_write_int_callback(struct urb *urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192/* write buffer functions */
193static struct cypress_buf *cypress_buf_alloc(unsigned int size);
Alan Cox813a2242008-07-22 11:10:36 +0100194static void cypress_buf_free(struct cypress_buf *cb);
195static void cypress_buf_clear(struct cypress_buf *cb);
196static unsigned int cypress_buf_data_avail(struct cypress_buf *cb);
197static unsigned int cypress_buf_space_avail(struct cypress_buf *cb);
198static unsigned int cypress_buf_put(struct cypress_buf *cb,
199 const char *buf, unsigned int count);
200static unsigned int cypress_buf_get(struct cypress_buf *cb,
201 char *buf, unsigned int count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
203
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -0700204static struct usb_serial_driver cypress_earthmate_device = {
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700205 .driver = {
206 .owner = THIS_MODULE,
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -0700207 .name = "earthmate",
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700208 },
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -0700209 .description = "DeLorme Earthmate USB",
Johannes Hölzld9b1b782006-12-17 21:50:24 +0100210 .usb_driver = &cypress_driver,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 .id_table = id_table_earthmate,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 .num_ports = 1,
213 .attach = cypress_earthmate_startup,
Alan Sternf9c99bb2009-06-02 11:53:55 -0400214 .release = cypress_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 .open = cypress_open,
216 .close = cypress_close,
Alan Cox335f8512009-06-11 12:26:29 +0100217 .dtr_rts = cypress_dtr_rts,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 .write = cypress_write,
219 .write_room = cypress_write_room,
220 .ioctl = cypress_ioctl,
221 .set_termios = cypress_set_termios,
222 .tiocmget = cypress_tiocmget,
223 .tiocmset = cypress_tiocmset,
224 .chars_in_buffer = cypress_chars_in_buffer,
225 .throttle = cypress_throttle,
226 .unthrottle = cypress_unthrottle,
227 .read_int_callback = cypress_read_int_callback,
228 .write_int_callback = cypress_write_int_callback,
229};
230
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -0700231static struct usb_serial_driver cypress_hidcom_device = {
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700232 .driver = {
233 .owner = THIS_MODULE,
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -0700234 .name = "cyphidcom",
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700235 },
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -0700236 .description = "HID->COM RS232 Adapter",
Johannes Hölzld9b1b782006-12-17 21:50:24 +0100237 .usb_driver = &cypress_driver,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 .id_table = id_table_cyphidcomrs232,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 .num_ports = 1,
240 .attach = cypress_hidcom_startup,
Alan Sternf9c99bb2009-06-02 11:53:55 -0400241 .release = cypress_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 .open = cypress_open,
243 .close = cypress_close,
Alan Cox335f8512009-06-11 12:26:29 +0100244 .dtr_rts = cypress_dtr_rts,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 .write = cypress_write,
246 .write_room = cypress_write_room,
247 .ioctl = cypress_ioctl,
248 .set_termios = cypress_set_termios,
249 .tiocmget = cypress_tiocmget,
250 .tiocmset = cypress_tiocmset,
251 .chars_in_buffer = cypress_chars_in_buffer,
252 .throttle = cypress_throttle,
253 .unthrottle = cypress_unthrottle,
254 .read_int_callback = cypress_read_int_callback,
255 .write_int_callback = cypress_write_int_callback,
256};
257
Lonnie Mendeza5c44e22006-03-01 10:45:24 -0600258static struct usb_serial_driver cypress_ca42v2_device = {
259 .driver = {
260 .owner = THIS_MODULE,
Alan Cox813a2242008-07-22 11:10:36 +0100261 .name = "nokiaca42v2",
Lonnie Mendeza5c44e22006-03-01 10:45:24 -0600262 },
263 .description = "Nokia CA-42 V2 Adapter",
Johannes Hölzld9b1b782006-12-17 21:50:24 +0100264 .usb_driver = &cypress_driver,
Lonnie Mendeza5c44e22006-03-01 10:45:24 -0600265 .id_table = id_table_nokiaca42v2,
Lonnie Mendeza5c44e22006-03-01 10:45:24 -0600266 .num_ports = 1,
267 .attach = cypress_ca42v2_startup,
Alan Sternf9c99bb2009-06-02 11:53:55 -0400268 .release = cypress_release,
Lonnie Mendeza5c44e22006-03-01 10:45:24 -0600269 .open = cypress_open,
270 .close = cypress_close,
Alan Cox335f8512009-06-11 12:26:29 +0100271 .dtr_rts = cypress_dtr_rts,
Lonnie Mendeza5c44e22006-03-01 10:45:24 -0600272 .write = cypress_write,
273 .write_room = cypress_write_room,
274 .ioctl = cypress_ioctl,
275 .set_termios = cypress_set_termios,
276 .tiocmget = cypress_tiocmget,
277 .tiocmset = cypress_tiocmset,
278 .chars_in_buffer = cypress_chars_in_buffer,
279 .throttle = cypress_throttle,
280 .unthrottle = cypress_unthrottle,
281 .read_int_callback = cypress_read_int_callback,
282 .write_int_callback = cypress_write_int_callback,
283};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
285/*****************************************************************************
286 * Cypress serial helper functions
287 *****************************************************************************/
288
289
Alan Cox8873aaa2008-03-10 21:59:28 +0000290static int analyze_baud_rate(struct usb_serial_port *port, speed_t new_rate)
Mike Isely92983c22008-02-10 20:23:32 -0600291{
Mike Isely92983c22008-02-10 20:23:32 -0600292 struct cypress_private *priv;
293 priv = usb_get_serial_port_data(port);
294
Mike Frysingerc3126592009-12-18 16:33:03 -0500295 if (unstable_bauds)
296 return new_rate;
297
Mike Isely92983c22008-02-10 20:23:32 -0600298 /*
299 * The general purpose firmware for the Cypress M8 allows for
300 * a maximum speed of 57600bps (I have no idea whether DeLorme
301 * chose to use the general purpose firmware or not), if you
302 * need to modify this speed setting for your own project
303 * please add your own chiptype and modify the code likewise.
304 * The Cypress HID->COM device will work successfully up to
305 * 115200bps (but the actual throughput is around 3kBps).
306 */
Mike Isely92983c22008-02-10 20:23:32 -0600307 if (port->serial->dev->speed == USB_SPEED_LOW) {
308 /*
309 * Mike Isely <isely@pobox.com> 2-Feb-2008: The
310 * Cypress app note that describes this mechanism
311 * states the the low-speed part can't handle more
312 * than 800 bytes/sec, in which case 4800 baud is the
313 * safest speed for a part like that.
314 */
315 if (new_rate > 4800) {
316 dbg("%s - failed setting baud rate, device incapable "
317 "speed %d", __func__, new_rate);
318 return -1;
319 }
320 }
321 switch (priv->chiptype) {
322 case CT_EARTHMATE:
323 if (new_rate <= 600) {
324 /* 300 and 600 baud rates are supported under
325 * the generic firmware, but are not used with
326 * NMEA and SiRF protocols */
327 dbg("%s - failed setting baud rate, unsupported speed "
328 "of %d on Earthmate GPS", __func__, new_rate);
329 return -1;
330 }
331 break;
332 default:
333 break;
334 }
335 return new_rate;
336}
337
338
Steven Cole093cf722005-05-03 19:07:24 -0600339/* This function can either set or retrieve the current serial line settings */
Alan Cox813a2242008-07-22 11:10:36 +0100340static int cypress_serial_control(struct tty_struct *tty,
Alan Cox95da3102008-07-22 11:09:07 +0100341 struct usb_serial_port *port, speed_t baud_rate, int data_bits,
342 int stop_bits, int parity_enable, int parity_type, int reset,
343 int cypress_request_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344{
Lonnie Mendez3cb4a4f2005-05-03 17:02:20 -0500345 int new_baudrate = 0, retval = 0, tries = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 struct cypress_private *priv;
Mike Isely93075542008-02-10 20:23:14 -0600347 __u8 feature_buffer[5];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 unsigned long flags;
349
Harvey Harrison441b62c2008-03-03 16:08:34 -0800350 dbg("%s", __func__);
Alan Cox813a2242008-07-22 11:10:36 +0100351
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 priv = usb_get_serial_port_data(port);
353
Mike Isely78aef512006-08-29 22:07:11 -0500354 if (!priv->comm_is_ok)
355 return -ENODEV;
356
Alan Cox813a2242008-07-22 11:10:36 +0100357 switch (cypress_request_type) {
358 case CYPRESS_SET_CONFIG:
Alan Cox813a2242008-07-22 11:10:36 +0100359 /* 0 means 'Hang up' so doesn't change the true bit rate */
Mike Frysinger2805eb12009-12-18 16:33:02 -0500360 new_baudrate = priv->baud_rate;
361 if (baud_rate && baud_rate != priv->baud_rate) {
Alan Cox813a2242008-07-22 11:10:36 +0100362 dbg("%s - baud rate is changing", __func__);
363 retval = analyze_baud_rate(port, baud_rate);
Mike Frysinger2805eb12009-12-18 16:33:02 -0500364 if (retval >= 0) {
Alan Cox813a2242008-07-22 11:10:36 +0100365 new_baudrate = retval;
366 dbg("%s - New baud rate set to %d",
367 __func__, new_baudrate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 }
Alan Cox813a2242008-07-22 11:10:36 +0100369 }
370 dbg("%s - baud rate is being sent as %d",
371 __func__, new_baudrate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
Alan Cox813a2242008-07-22 11:10:36 +0100373 memset(feature_buffer, 0, sizeof(feature_buffer));
374 /* fill the feature_buffer with new configuration */
375 *((u_int32_t *)feature_buffer) = new_baudrate;
376 feature_buffer[4] |= data_bits; /* assign data bits in 2 bit space ( max 3 ) */
377 /* 1 bit gap */
378 feature_buffer[4] |= (stop_bits << 3); /* assign stop bits in 1 bit space */
379 feature_buffer[4] |= (parity_enable << 4); /* assign parity flag in 1 bit space */
380 feature_buffer[4] |= (parity_type << 5); /* assign parity type in 1 bit space */
381 /* 1 bit gap */
382 feature_buffer[4] |= (reset << 7); /* assign reset at end of byte, 1 bit space */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
Alan Cox813a2242008-07-22 11:10:36 +0100384 dbg("%s - device is being sent this feature report:",
385 __func__);
386 dbg("%s - %02X - %02X - %02X - %02X - %02X", __func__,
387 feature_buffer[0], feature_buffer[1],
388 feature_buffer[2], feature_buffer[3],
389 feature_buffer[4]);
Lonnie Mendez3cb4a4f2005-05-03 17:02:20 -0500390
Alan Cox813a2242008-07-22 11:10:36 +0100391 do {
392 retval = usb_control_msg(port->serial->dev,
393 usb_sndctrlpipe(port->serial->dev, 0),
394 HID_REQ_SET_REPORT,
395 USB_DIR_OUT | USB_RECIP_INTERFACE | USB_TYPE_CLASS,
396 0x0300, 0, feature_buffer,
397 sizeof(feature_buffer), 500);
Lonnie Mendez3cb4a4f2005-05-03 17:02:20 -0500398
Alan Cox813a2242008-07-22 11:10:36 +0100399 if (tries++ >= 3)
400 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
Alan Cox813a2242008-07-22 11:10:36 +0100402 } while (retval != sizeof(feature_buffer) &&
403 retval != -ENODEV);
Mike Isely93075542008-02-10 20:23:14 -0600404
Alan Cox813a2242008-07-22 11:10:36 +0100405 if (retval != sizeof(feature_buffer)) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700406 dev_err(&port->dev, "%s - failed sending serial "
407 "line settings - %d\n", __func__, retval);
Alan Cox813a2242008-07-22 11:10:36 +0100408 cypress_set_dead(port);
409 } else {
410 spin_lock_irqsave(&priv->lock, flags);
411 priv->baud_rate = new_baudrate;
412 priv->current_config = feature_buffer[4];
413 spin_unlock_irqrestore(&priv->lock, flags);
414 /* If we asked for a speed change encode it */
415 if (baud_rate)
416 tty_encode_baud_rate(tty,
417 new_baudrate, new_baudrate);
418 }
419 break;
420 case CYPRESS_GET_CONFIG:
421 if (priv->get_cfg_unsafe) {
422 /* Not implemented for this device,
423 and if we try to do it we're likely
424 to crash the hardware. */
425 return -ENOTTY;
426 }
427 dbg("%s - retreiving serial line settings", __func__);
428 /* set initial values in feature buffer */
429 memset(feature_buffer, 0, sizeof(feature_buffer));
Lonnie Mendez3cb4a4f2005-05-03 17:02:20 -0500430
Alan Cox813a2242008-07-22 11:10:36 +0100431 do {
432 retval = usb_control_msg(port->serial->dev,
433 usb_rcvctrlpipe(port->serial->dev, 0),
434 HID_REQ_GET_REPORT,
435 USB_DIR_IN | USB_RECIP_INTERFACE | USB_TYPE_CLASS,
436 0x0300, 0, feature_buffer,
437 sizeof(feature_buffer), 500);
Lonnie Mendez3cb4a4f2005-05-03 17:02:20 -0500438
Alan Cox813a2242008-07-22 11:10:36 +0100439 if (tries++ >= 3)
440 break;
441 } while (retval != sizeof(feature_buffer)
442 && retval != -ENODEV);
Lonnie Mendez3cb4a4f2005-05-03 17:02:20 -0500443
Alan Cox813a2242008-07-22 11:10:36 +0100444 if (retval != sizeof(feature_buffer)) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700445 dev_err(&port->dev, "%s - failed to retrieve serial "
446 "line settings - %d\n", __func__, retval);
Alan Cox813a2242008-07-22 11:10:36 +0100447 cypress_set_dead(port);
448 return retval;
449 } else {
450 spin_lock_irqsave(&priv->lock, flags);
451 /* store the config in one byte, and later
452 use bit masks to check values */
453 priv->current_config = feature_buffer[4];
454 priv->baud_rate = *((u_int32_t *)feature_buffer);
455 spin_unlock_irqrestore(&priv->lock, flags);
456 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 }
Lonnie Mendez3cb4a4f2005-05-03 17:02:20 -0500458 spin_lock_irqsave(&priv->lock, flags);
459 ++priv->cmd_count;
460 spin_unlock_irqrestore(&priv->lock, flags);
461
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 return retval;
463} /* cypress_serial_control */
464
465
Mike Isely78aef512006-08-29 22:07:11 -0500466static void cypress_set_dead(struct usb_serial_port *port)
467{
468 struct cypress_private *priv = usb_get_serial_port_data(port);
469 unsigned long flags;
470
471 spin_lock_irqsave(&priv->lock, flags);
472 if (!priv->comm_is_ok) {
473 spin_unlock_irqrestore(&priv->lock, flags);
474 return;
475 }
476 priv->comm_is_ok = 0;
477 spin_unlock_irqrestore(&priv->lock, flags);
478
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700479 dev_err(&port->dev, "cypress_m8 suspending failing port %d - "
480 "interval might be too short\n", port->number);
Mike Isely78aef512006-08-29 22:07:11 -0500481}
482
483
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484/*****************************************************************************
485 * Cypress serial driver functions
486 *****************************************************************************/
487
488
Alan Cox813a2242008-07-22 11:10:36 +0100489static int generic_startup(struct usb_serial *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490{
491 struct cypress_private *priv;
Mike Isely0257fa92006-08-29 22:06:59 -0500492 struct usb_serial_port *port = serial->port[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
Harvey Harrison441b62c2008-03-03 16:08:34 -0800494 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
Alan Cox813a2242008-07-22 11:10:36 +0100496 priv = kzalloc(sizeof(struct cypress_private), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 if (!priv)
498 return -ENOMEM;
499
Mike Isely78aef512006-08-29 22:07:11 -0500500 priv->comm_is_ok = !0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 spin_lock_init(&priv->lock);
502 priv->buf = cypress_buf_alloc(CYPRESS_BUF_SIZE);
503 if (priv->buf == NULL) {
504 kfree(priv);
505 return -ENOMEM;
506 }
507 init_waitqueue_head(&priv->delta_msr_wait);
Alan Cox813a2242008-07-22 11:10:36 +0100508
509 usb_reset_configuration(serial->dev);
510
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 priv->cmd_ctrl = 0;
512 priv->line_control = 0;
513 priv->termios_initialized = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 priv->rx_flags = 0;
Mike Isely3416eaa2008-02-10 20:23:19 -0600515 /* Default packet format setting is determined by packet size.
516 Anything with a size larger then 9 must have a separate
517 count field since the 3 bit count field is otherwise too
518 small. Otherwise we can use the slightly more compact
519 format. This is in accordance with the cypress_m8 serial
520 converter app note. */
Alan Cox813a2242008-07-22 11:10:36 +0100521 if (port->interrupt_out_size > 9)
Mike Isely3416eaa2008-02-10 20:23:19 -0600522 priv->pkt_fmt = packet_format_1;
Alan Cox813a2242008-07-22 11:10:36 +0100523 else
Mike Isely3416eaa2008-02-10 20:23:19 -0600524 priv->pkt_fmt = packet_format_2;
Alan Cox813a2242008-07-22 11:10:36 +0100525
Mike Isely0257fa92006-08-29 22:06:59 -0500526 if (interval > 0) {
527 priv->write_urb_interval = interval;
528 priv->read_urb_interval = interval;
529 dbg("%s - port %d read & write intervals forced to %d",
Alan Cox813a2242008-07-22 11:10:36 +0100530 __func__, port->number, interval);
Mike Isely0257fa92006-08-29 22:06:59 -0500531 } else {
532 priv->write_urb_interval = port->interrupt_out_urb->interval;
533 priv->read_urb_interval = port->interrupt_in_urb->interval;
534 dbg("%s - port %d intervals: read=%d write=%d",
Alan Cox813a2242008-07-22 11:10:36 +0100535 __func__, port->number,
536 priv->read_urb_interval, priv->write_urb_interval);
Mike Isely0257fa92006-08-29 22:06:59 -0500537 }
538 usb_set_serial_port_data(port, priv);
Alan Cox813a2242008-07-22 11:10:36 +0100539
Lonnie Mendezb9db07f2005-07-12 17:21:31 -0500540 return 0;
541}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
543
Alan Cox813a2242008-07-22 11:10:36 +0100544static int cypress_earthmate_startup(struct usb_serial *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545{
546 struct cypress_private *priv;
Mike Isely3d6aa322008-02-10 20:23:24 -0600547 struct usb_serial_port *port = serial->port[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
Harvey Harrison441b62c2008-03-03 16:08:34 -0800549 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
551 if (generic_startup(serial)) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800552 dbg("%s - Failed setting up port %d", __func__,
Mike Isely3d6aa322008-02-10 20:23:24 -0600553 port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 return 1;
555 }
556
Mike Isely3d6aa322008-02-10 20:23:24 -0600557 priv = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 priv->chiptype = CT_EARTHMATE;
Mike Isely3416eaa2008-02-10 20:23:19 -0600559 /* All Earthmate devices use the separated-count packet
560 format! Idiotic. */
561 priv->pkt_fmt = packet_format_1;
Alan Cox813a2242008-07-22 11:10:36 +0100562 if (serial->dev->descriptor.idProduct !=
563 cpu_to_le16(PRODUCT_ID_EARTHMATEUSB)) {
Mike Isely3d6aa322008-02-10 20:23:24 -0600564 /* The old original USB Earthmate seemed able to
565 handle GET_CONFIG requests; everything they've
566 produced since that time crashes if this command is
567 attempted :-( */
568 dbg("%s - Marking this device as unsafe for GET_CONFIG "
569 "commands", __func__);
570 priv->get_cfg_unsafe = !0;
571 }
Lonnie Mendezb9db07f2005-07-12 17:21:31 -0500572
573 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574} /* cypress_earthmate_startup */
575
576
Alan Cox813a2242008-07-22 11:10:36 +0100577static int cypress_hidcom_startup(struct usb_serial *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578{
579 struct cypress_private *priv;
580
Harvey Harrison441b62c2008-03-03 16:08:34 -0800581 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
583 if (generic_startup(serial)) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800584 dbg("%s - Failed setting up port %d", __func__,
Lonnie Mendezb9db07f2005-07-12 17:21:31 -0500585 serial->port[0]->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 return 1;
587 }
588
589 priv = usb_get_serial_port_data(serial->port[0]);
590 priv->chiptype = CT_CYPHIDCOM;
Alan Cox813a2242008-07-22 11:10:36 +0100591
Lonnie Mendezb9db07f2005-07-12 17:21:31 -0500592 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593} /* cypress_hidcom_startup */
594
595
Alan Cox813a2242008-07-22 11:10:36 +0100596static int cypress_ca42v2_startup(struct usb_serial *serial)
Lonnie Mendeza5c44e22006-03-01 10:45:24 -0600597{
598 struct cypress_private *priv;
599
Harvey Harrison441b62c2008-03-03 16:08:34 -0800600 dbg("%s", __func__);
Lonnie Mendeza5c44e22006-03-01 10:45:24 -0600601
602 if (generic_startup(serial)) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800603 dbg("%s - Failed setting up port %d", __func__,
Lonnie Mendeza5c44e22006-03-01 10:45:24 -0600604 serial->port[0]->number);
605 return 1;
606 }
607
608 priv = usb_get_serial_port_data(serial->port[0]);
609 priv->chiptype = CT_CA42V2;
610
611 return 0;
612} /* cypress_ca42v2_startup */
613
614
Alan Sternf9c99bb2009-06-02 11:53:55 -0400615static void cypress_release(struct usb_serial *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616{
617 struct cypress_private *priv;
618
Alan Cox813a2242008-07-22 11:10:36 +0100619 dbg("%s - port %d", __func__, serial->port[0]->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
621 /* all open ports are closed at this point */
622
623 priv = usb_get_serial_port_data(serial->port[0]);
624
625 if (priv) {
626 cypress_buf_free(priv->buf);
627 kfree(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 }
629}
630
631
Alan Coxa509a7e2009-09-19 13:13:26 -0700632static int cypress_open(struct tty_struct *tty, struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633{
634 struct cypress_private *priv = usb_get_serial_port_data(port);
635 struct usb_serial *serial = port->serial;
636 unsigned long flags;
637 int result = 0;
638
Harvey Harrison441b62c2008-03-03 16:08:34 -0800639 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
Mike Isely78aef512006-08-29 22:07:11 -0500641 if (!priv->comm_is_ok)
642 return -EIO;
643
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 /* clear halts before open */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 usb_clear_halt(serial->dev, 0x81);
646 usb_clear_halt(serial->dev, 0x02);
647
648 spin_lock_irqsave(&priv->lock, flags);
649 /* reset read/write statistics */
650 priv->bytes_in = 0;
651 priv->bytes_out = 0;
652 priv->cmd_count = 0;
653 priv->rx_flags = 0;
654 spin_unlock_irqrestore(&priv->lock, flags);
655
Alan Cox335f8512009-06-11 12:26:29 +0100656 /* Set termios */
Alan Coxfe1ae7f2009-09-19 13:13:33 -0700657 cypress_send(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
Alan Cox95da3102008-07-22 11:09:07 +0100659 if (tty)
660 cypress_set_termios(tty, port, &priv->tmp_termios);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661
662 /* setup the port and start reading from the device */
Alan Cox813a2242008-07-22 11:10:36 +0100663 if (!port->interrupt_in_urb) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700664 dev_err(&port->dev, "%s - interrupt_in_urb is empty!\n",
665 __func__);
Alan Cox813a2242008-07-22 11:10:36 +0100666 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 }
668
669 usb_fill_int_urb(port->interrupt_in_urb, serial->dev,
670 usb_rcvintpipe(serial->dev, port->interrupt_in_endpointAddress),
Alan Cox813a2242008-07-22 11:10:36 +0100671 port->interrupt_in_urb->transfer_buffer,
672 port->interrupt_in_urb->transfer_buffer_length,
Mike Isely0257fa92006-08-29 22:06:59 -0500673 cypress_read_int_callback, port, priv->read_urb_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 result = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL);
675
Alan Cox813a2242008-07-22 11:10:36 +0100676 if (result) {
677 dev_err(&port->dev,
678 "%s - failed submitting read urb, error %d\n",
679 __func__, result);
Mike Isely78aef512006-08-29 22:07:11 -0500680 cypress_set_dead(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 }
Alan Cox335f8512009-06-11 12:26:29 +0100682 port->port.drain_delay = 256;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 return result;
684} /* cypress_open */
685
Alan Cox335f8512009-06-11 12:26:29 +0100686static void cypress_dtr_rts(struct usb_serial_port *port, int on)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687{
688 struct cypress_private *priv = usb_get_serial_port_data(port);
Alan Cox335f8512009-06-11 12:26:29 +0100689 /* drop dtr and rts */
690 priv = usb_get_serial_port_data(port);
691 spin_lock_irq(&priv->lock);
692 if (on == 0)
693 priv->line_control = 0;
694 else
695 priv->line_control = CONTROL_DTR | CONTROL_RTS;
696 priv->cmd_ctrl = 1;
697 spin_unlock_irq(&priv->lock);
698 cypress_write(NULL, port, NULL, 0);
699}
700
701static void cypress_close(struct usb_serial_port *port)
702{
703 struct cypress_private *priv = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
Harvey Harrison441b62c2008-03-03 16:08:34 -0800705 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
Oliver Neukum9e3b1d82008-01-22 15:54:54 +0100707 /* writing is potentially harmful, lock must be taken */
708 mutex_lock(&port->serial->disc_mutex);
709 if (port->serial->disconnected) {
710 mutex_unlock(&port->serial->disc_mutex);
711 return;
712 }
Alan Cox335f8512009-06-11 12:26:29 +0100713 cypress_buf_clear(priv->buf);
Harvey Harrison441b62c2008-03-03 16:08:34 -0800714 dbg("%s - stopping urbs", __func__);
Alan Cox813a2242008-07-22 11:10:36 +0100715 usb_kill_urb(port->interrupt_in_urb);
716 usb_kill_urb(port->interrupt_out_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718
719 if (stats)
Alan Cox813a2242008-07-22 11:10:36 +0100720 dev_info(&port->dev, "Statistics: %d Bytes In | %d Bytes Out | %d Commands Issued\n",
721 priv->bytes_in, priv->bytes_out, priv->cmd_count);
Oliver Neukum9e3b1d82008-01-22 15:54:54 +0100722 mutex_unlock(&port->serial->disc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723} /* cypress_close */
724
725
Alan Cox95da3102008-07-22 11:09:07 +0100726static int cypress_write(struct tty_struct *tty, struct usb_serial_port *port,
727 const unsigned char *buf, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728{
729 struct cypress_private *priv = usb_get_serial_port_data(port);
730 unsigned long flags;
Alan Cox813a2242008-07-22 11:10:36 +0100731
Harvey Harrison441b62c2008-03-03 16:08:34 -0800732 dbg("%s - port %d, %d bytes", __func__, port->number, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
734 /* line control commands, which need to be executed immediately,
735 are not put into the buffer for obvious reasons.
736 */
737 if (priv->cmd_ctrl) {
738 count = 0;
739 goto finish;
740 }
Alan Cox813a2242008-07-22 11:10:36 +0100741
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 if (!count)
743 return count;
Alan Cox813a2242008-07-22 11:10:36 +0100744
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 spin_lock_irqsave(&priv->lock, flags);
746 count = cypress_buf_put(priv->buf, buf, count);
747 spin_unlock_irqrestore(&priv->lock, flags);
748
749finish:
750 cypress_send(port);
751
752 return count;
753} /* cypress_write */
754
755
756static void cypress_send(struct usb_serial_port *port)
757{
758 int count = 0, result, offset, actual_size;
759 struct cypress_private *priv = usb_get_serial_port_data(port);
760 unsigned long flags;
Alan Cox813a2242008-07-22 11:10:36 +0100761
Mike Isely78aef512006-08-29 22:07:11 -0500762 if (!priv->comm_is_ok)
763 return;
764
Harvey Harrison441b62c2008-03-03 16:08:34 -0800765 dbg("%s - port %d", __func__, port->number);
Alan Cox813a2242008-07-22 11:10:36 +0100766 dbg("%s - interrupt out size is %d", __func__,
767 port->interrupt_out_size);
768
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 spin_lock_irqsave(&priv->lock, flags);
770 if (priv->write_urb_in_use) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800771 dbg("%s - can't write, urb in use", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 spin_unlock_irqrestore(&priv->lock, flags);
773 return;
774 }
775 spin_unlock_irqrestore(&priv->lock, flags);
776
777 /* clear buffer */
Alan Cox813a2242008-07-22 11:10:36 +0100778 memset(port->interrupt_out_urb->transfer_buffer, 0,
779 port->interrupt_out_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780
781 spin_lock_irqsave(&priv->lock, flags);
Mike Isely3416eaa2008-02-10 20:23:19 -0600782 switch (priv->pkt_fmt) {
783 default:
784 case packet_format_1:
785 /* this is for the CY7C64013... */
786 offset = 2;
787 port->interrupt_out_buffer[0] = priv->line_control;
788 break;
789 case packet_format_2:
790 /* this is for the CY7C63743... */
791 offset = 1;
792 port->interrupt_out_buffer[0] = priv->line_control;
793 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 }
795
796 if (priv->line_control & CONTROL_RESET)
797 priv->line_control &= ~CONTROL_RESET;
798
799 if (priv->cmd_ctrl) {
800 priv->cmd_count++;
Harvey Harrison441b62c2008-03-03 16:08:34 -0800801 dbg("%s - line control command being issued", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 spin_unlock_irqrestore(&priv->lock, flags);
803 goto send;
804 } else
805 spin_unlock_irqrestore(&priv->lock, flags);
806
807 count = cypress_buf_get(priv->buf, &port->interrupt_out_buffer[offset],
808 port->interrupt_out_size-offset);
809
Alan Cox813a2242008-07-22 11:10:36 +0100810 if (count == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812
Mike Isely3416eaa2008-02-10 20:23:19 -0600813 switch (priv->pkt_fmt) {
814 default:
815 case packet_format_1:
816 port->interrupt_out_buffer[1] = count;
817 break;
818 case packet_format_2:
819 port->interrupt_out_buffer[0] |= count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 }
821
Harvey Harrison441b62c2008-03-03 16:08:34 -0800822 dbg("%s - count is %d", __func__, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
824send:
825 spin_lock_irqsave(&priv->lock, flags);
826 priv->write_urb_in_use = 1;
827 spin_unlock_irqrestore(&priv->lock, flags);
828
829 if (priv->cmd_ctrl)
830 actual_size = 1;
831 else
Mike Isely3416eaa2008-02-10 20:23:19 -0600832 actual_size = count +
833 (priv->pkt_fmt == packet_format_1 ? 2 : 1);
834
Alan Cox813a2242008-07-22 11:10:36 +0100835 usb_serial_debug_data(debug, &port->dev, __func__,
836 port->interrupt_out_size,
837 port->interrupt_out_urb->transfer_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
Mike Isely9aa8dae2006-08-29 22:07:04 -0500839 usb_fill_int_urb(port->interrupt_out_urb, port->serial->dev,
840 usb_sndintpipe(port->serial->dev, port->interrupt_out_endpointAddress),
841 port->interrupt_out_buffer, port->interrupt_out_size,
842 cypress_write_int_callback, port, priv->write_urb_interval);
Alan Cox813a2242008-07-22 11:10:36 +0100843 result = usb_submit_urb(port->interrupt_out_urb, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 if (result) {
Alan Cox813a2242008-07-22 11:10:36 +0100845 dev_err(&port->dev,
846 "%s - failed submitting write urb, error %d\n",
847 __func__, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 priv->write_urb_in_use = 0;
Mike Isely78aef512006-08-29 22:07:11 -0500849 cypress_set_dead(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 }
851
852 spin_lock_irqsave(&priv->lock, flags);
Alan Cox813a2242008-07-22 11:10:36 +0100853 if (priv->cmd_ctrl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 priv->cmd_ctrl = 0;
Alan Cox813a2242008-07-22 11:10:36 +0100855
856 /* do not count the line control and size bytes */
857 priv->bytes_out += count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 spin_unlock_irqrestore(&priv->lock, flags);
859
Pete Zaitcevcf2c7482006-05-22 21:58:49 -0700860 usb_serial_port_softint(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861} /* cypress_send */
862
863
864/* returns how much space is available in the soft buffer */
Alan Cox95da3102008-07-22 11:09:07 +0100865static int cypress_write_room(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866{
Alan Cox95da3102008-07-22 11:09:07 +0100867 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 struct cypress_private *priv = usb_get_serial_port_data(port);
869 int room = 0;
870 unsigned long flags;
871
Harvey Harrison441b62c2008-03-03 16:08:34 -0800872 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873
874 spin_lock_irqsave(&priv->lock, flags);
875 room = cypress_buf_space_avail(priv->buf);
876 spin_unlock_irqrestore(&priv->lock, flags);
877
Harvey Harrison441b62c2008-03-03 16:08:34 -0800878 dbg("%s - returns %d", __func__, room);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 return room;
880}
881
882
Alan Cox95da3102008-07-22 11:09:07 +0100883static int cypress_tiocmget(struct tty_struct *tty, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884{
Alan Cox95da3102008-07-22 11:09:07 +0100885 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 struct cypress_private *priv = usb_get_serial_port_data(port);
887 __u8 status, control;
888 unsigned int result = 0;
889 unsigned long flags;
Alan Cox813a2242008-07-22 11:10:36 +0100890
Harvey Harrison441b62c2008-03-03 16:08:34 -0800891 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892
893 spin_lock_irqsave(&priv->lock, flags);
894 control = priv->line_control;
895 status = priv->current_status;
896 spin_unlock_irqrestore(&priv->lock, flags);
897
898 result = ((control & CONTROL_DTR) ? TIOCM_DTR : 0)
899 | ((control & CONTROL_RTS) ? TIOCM_RTS : 0)
900 | ((status & UART_CTS) ? TIOCM_CTS : 0)
901 | ((status & UART_DSR) ? TIOCM_DSR : 0)
902 | ((status & UART_RI) ? TIOCM_RI : 0)
903 | ((status & UART_CD) ? TIOCM_CD : 0);
904
Harvey Harrison441b62c2008-03-03 16:08:34 -0800905 dbg("%s - result = %x", __func__, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906
907 return result;
908}
909
910
Alan Cox95da3102008-07-22 11:09:07 +0100911static int cypress_tiocmset(struct tty_struct *tty, struct file *file,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 unsigned int set, unsigned int clear)
913{
Alan Cox95da3102008-07-22 11:09:07 +0100914 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 struct cypress_private *priv = usb_get_serial_port_data(port);
916 unsigned long flags;
Alan Cox813a2242008-07-22 11:10:36 +0100917
Harvey Harrison441b62c2008-03-03 16:08:34 -0800918 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919
920 spin_lock_irqsave(&priv->lock, flags);
921 if (set & TIOCM_RTS)
922 priv->line_control |= CONTROL_RTS;
923 if (set & TIOCM_DTR)
924 priv->line_control |= CONTROL_DTR;
925 if (clear & TIOCM_RTS)
926 priv->line_control &= ~CONTROL_RTS;
927 if (clear & TIOCM_DTR)
928 priv->line_control &= ~CONTROL_DTR;
Alan Cox8873aaa2008-03-10 21:59:28 +0000929 priv->cmd_ctrl = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 spin_unlock_irqrestore(&priv->lock, flags);
931
Alan Cox95da3102008-07-22 11:09:07 +0100932 return cypress_write(tty, port, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933}
934
935
Alan Cox813a2242008-07-22 11:10:36 +0100936static int cypress_ioctl(struct tty_struct *tty, struct file *file,
Alan Cox95da3102008-07-22 11:09:07 +0100937 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938{
Alan Cox95da3102008-07-22 11:09:07 +0100939 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 struct cypress_private *priv = usb_get_serial_port_data(port);
941
Harvey Harrison441b62c2008-03-03 16:08:34 -0800942 dbg("%s - port %d, cmd 0x%.4x", __func__, port->number, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943
944 switch (cmd) {
Alan Cox813a2242008-07-22 11:10:36 +0100945 /* This code comes from drivers/char/serial.c and ftdi_sio.c */
946 case TIOCMIWAIT:
947 while (priv != NULL) {
948 interruptible_sleep_on(&priv->delta_msr_wait);
949 /* see if a signal did it */
950 if (signal_pending(current))
951 return -ERESTARTSYS;
952 else {
953 char diff = priv->diff_status;
954 if (diff == 0)
955 return -EIO; /* no change => error */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956
Alan Cox813a2242008-07-22 11:10:36 +0100957 /* consume all events */
958 priv->diff_status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959
Alan Cox813a2242008-07-22 11:10:36 +0100960 /* return 0 if caller wanted to know about
961 these bits */
962 if (((arg & TIOCM_RNG) && (diff & UART_RI)) ||
963 ((arg & TIOCM_DSR) && (diff & UART_DSR)) ||
964 ((arg & TIOCM_CD) && (diff & UART_CD)) ||
965 ((arg & TIOCM_CTS) && (diff & UART_CTS)))
966 return 0;
967 /* otherwise caller can't care less about what
968 * happened, and so we continue to wait for
969 * more events.
970 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 }
Alan Cox813a2242008-07-22 11:10:36 +0100972 }
973 return 0;
974 default:
975 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 }
Harvey Harrison441b62c2008-03-03 16:08:34 -0800977 dbg("%s - arg not supported - it was 0x%04x - check include/asm/ioctls.h", __func__, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 return -ENOIOCTLCMD;
979} /* cypress_ioctl */
980
981
Alan Cox95da3102008-07-22 11:09:07 +0100982static void cypress_set_termios(struct tty_struct *tty,
983 struct usb_serial_port *port, struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984{
985 struct cypress_private *priv = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 int data_bits, stop_bits, parity_type, parity_enable;
Alan Cox8873aaa2008-03-10 21:59:28 +0000987 unsigned cflag, iflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 unsigned long flags;
989 __u8 oldlines;
Lonnie Mendez3cb4a4f2005-05-03 17:02:20 -0500990 int linechange = 0;
Lonnie Mendezb9db07f2005-07-12 17:21:31 -0500991
Harvey Harrison441b62c2008-03-03 16:08:34 -0800992 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 spin_lock_irqsave(&priv->lock, flags);
Alan Coxfe1ae7f2009-09-19 13:13:33 -0700995 /* We can't clean this one up as we don't know the device type
996 early enough */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 if (!priv->termios_initialized) {
998 if (priv->chiptype == CT_EARTHMATE) {
999 *(tty->termios) = tty_std_termios;
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001000 tty->termios->c_cflag = B4800 | CS8 | CREAD | HUPCL |
1001 CLOCAL;
Alan Cox8873aaa2008-03-10 21:59:28 +00001002 tty->termios->c_ispeed = 4800;
1003 tty->termios->c_ospeed = 4800;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 } else if (priv->chiptype == CT_CYPHIDCOM) {
1005 *(tty->termios) = tty_std_termios;
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001006 tty->termios->c_cflag = B9600 | CS8 | CREAD | HUPCL |
1007 CLOCAL;
Alan Cox8873aaa2008-03-10 21:59:28 +00001008 tty->termios->c_ispeed = 9600;
1009 tty->termios->c_ospeed = 9600;
Lonnie Mendeza5c44e22006-03-01 10:45:24 -06001010 } else if (priv->chiptype == CT_CA42V2) {
1011 *(tty->termios) = tty_std_termios;
1012 tty->termios->c_cflag = B9600 | CS8 | CREAD | HUPCL |
1013 CLOCAL;
Alan Cox8873aaa2008-03-10 21:59:28 +00001014 tty->termios->c_ispeed = 9600;
1015 tty->termios->c_ospeed = 9600;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 }
1017 priv->termios_initialized = 1;
1018 }
1019 spin_unlock_irqrestore(&priv->lock, flags);
1020
Alan Cox8873aaa2008-03-10 21:59:28 +00001021 /* Unsupported features need clearing */
1022 tty->termios->c_cflag &= ~(CMSPAR|CRTSCTS);
1023
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 cflag = tty->termios->c_cflag;
1025 iflag = tty->termios->c_iflag;
1026
1027 /* check if there are new settings */
1028 if (old_termios) {
Alan Cox8873aaa2008-03-10 21:59:28 +00001029 spin_lock_irqsave(&priv->lock, flags);
1030 priv->tmp_termios = *(tty->termios);
1031 spin_unlock_irqrestore(&priv->lock, flags);
1032 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033
1034 /* set number of data bits, parity, stop bits */
1035 /* when parity is disabled the parity type bit is ignored */
1036
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001037 /* 1 means 2 stop bits, 0 means 1 stop bit */
1038 stop_bits = cflag & CSTOPB ? 1 : 0;
1039
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 if (cflag & PARENB) {
1041 parity_enable = 1;
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001042 /* 1 means odd parity, 0 means even parity */
1043 parity_type = cflag & PARODD ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 } else
1045 parity_enable = parity_type = 0;
1046
Alan Cox77336822008-07-22 11:10:53 +01001047 switch (cflag & CSIZE) {
1048 case CS5:
1049 data_bits = 0;
1050 break;
1051 case CS6:
1052 data_bits = 1;
1053 break;
1054 case CS7:
1055 data_bits = 2;
1056 break;
1057 case CS8:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 data_bits = 3;
Alan Cox77336822008-07-22 11:10:53 +01001059 break;
1060 default:
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07001061 dev_err(&port->dev, "%s - CSIZE was set, but not CS5-CS8\n",
1062 __func__);
Alan Cox77336822008-07-22 11:10:53 +01001063 data_bits = 3;
1064 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 spin_lock_irqsave(&priv->lock, flags);
1066 oldlines = priv->line_control;
1067 if ((cflag & CBAUD) == B0) {
1068 /* drop dtr and rts */
Harvey Harrison441b62c2008-03-03 16:08:34 -08001069 dbg("%s - dropping the lines, baud rate 0bps", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 priv->line_control &= ~(CONTROL_DTR | CONTROL_RTS);
Alan Cox8873aaa2008-03-10 21:59:28 +00001071 } else
Lonnie Mendez3cb4a4f2005-05-03 17:02:20 -05001072 priv->line_control = (CONTROL_DTR | CONTROL_RTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 spin_unlock_irqrestore(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001075 dbg("%s - sending %d stop_bits, %d parity_enable, %d parity_type, "
Harvey Harrison441b62c2008-03-03 16:08:34 -08001076 "%d data_bits (+5)", __func__, stop_bits,
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001077 parity_enable, parity_type, data_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078
Alan Cox813a2242008-07-22 11:10:36 +01001079 cypress_serial_control(tty, port, tty_get_baud_rate(tty),
1080 data_bits, stop_bits,
1081 parity_enable, parity_type,
1082 0, CYPRESS_SET_CONFIG);
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001083
1084 /* we perform a CYPRESS_GET_CONFIG so that the current settings are
1085 * filled into the private structure this should confirm that all is
1086 * working if it returns what we just set */
Alan Cox95da3102008-07-22 11:09:07 +01001087 cypress_serial_control(tty, port, 0, 0, 0, 0, 0, 0, CYPRESS_GET_CONFIG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001089 /* Here we can define custom tty settings for devices; the main tty
1090 * termios flag base comes from empeg.c */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001092 spin_lock_irqsave(&priv->lock, flags);
Alan Cox813a2242008-07-22 11:10:36 +01001093 if (priv->chiptype == CT_EARTHMATE && priv->baud_rate == 4800) {
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001094 dbg("Using custom termios settings for a baud rate of "
1095 "4800bps.");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 /* define custom termios settings for NMEA protocol */
1097
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 tty->termios->c_iflag /* input modes - */
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001099 &= ~(IGNBRK /* disable ignore break */
1100 | BRKINT /* disable break causes interrupt */
1101 | PARMRK /* disable mark parity errors */
1102 | ISTRIP /* disable clear high bit of input char */
1103 | INLCR /* disable translate NL to CR */
1104 | IGNCR /* disable ignore CR */
1105 | ICRNL /* disable translate CR to NL */
1106 | IXON); /* disable enable XON/XOFF flow control */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001108 tty->termios->c_oflag /* output modes */
1109 &= ~OPOST; /* disable postprocess output char */
1110
1111 tty->termios->c_lflag /* line discipline modes */
1112 &= ~(ECHO /* disable echo input characters */
1113 | ECHONL /* disable echo new line */
1114 | ICANON /* disable erase, kill, werase, and rprnt
1115 special characters */
1116 | ISIG /* disable interrupt, quit, and suspend
1117 special characters */
1118 | IEXTEN); /* disable non-POSIX special characters */
Lonnie Mendez3cb4a4f2005-05-03 17:02:20 -05001119 } /* CT_CYPHIDCOM: Application should handle this for device */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 linechange = (priv->line_control != oldlines);
1122 spin_unlock_irqrestore(&priv->lock, flags);
1123
1124 /* if necessary, set lines */
Lonnie Mendez3cb4a4f2005-05-03 17:02:20 -05001125 if (linechange) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 priv->cmd_ctrl = 1;
Alan Cox95da3102008-07-22 11:09:07 +01001127 cypress_write(tty, port, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129} /* cypress_set_termios */
1130
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001131
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132/* returns amount of data still left in soft buffer */
Alan Cox95da3102008-07-22 11:09:07 +01001133static int cypress_chars_in_buffer(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134{
Alan Cox95da3102008-07-22 11:09:07 +01001135 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 struct cypress_private *priv = usb_get_serial_port_data(port);
1137 int chars = 0;
1138 unsigned long flags;
1139
Harvey Harrison441b62c2008-03-03 16:08:34 -08001140 dbg("%s - port %d", __func__, port->number);
Alan Cox813a2242008-07-22 11:10:36 +01001141
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 spin_lock_irqsave(&priv->lock, flags);
1143 chars = cypress_buf_data_avail(priv->buf);
1144 spin_unlock_irqrestore(&priv->lock, flags);
1145
Harvey Harrison441b62c2008-03-03 16:08:34 -08001146 dbg("%s - returns %d", __func__, chars);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 return chars;
1148}
1149
1150
Alan Cox95da3102008-07-22 11:09:07 +01001151static void cypress_throttle(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152{
Alan Cox95da3102008-07-22 11:09:07 +01001153 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 struct cypress_private *priv = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155
Harvey Harrison441b62c2008-03-03 16:08:34 -08001156 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157
Oliver Neukum63832512009-10-07 10:50:23 +02001158 spin_lock_irq(&priv->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 priv->rx_flags = THROTTLED;
Oliver Neukum63832512009-10-07 10:50:23 +02001160 spin_unlock_irq(&priv->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161}
1162
1163
Alan Cox95da3102008-07-22 11:09:07 +01001164static void cypress_unthrottle(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165{
Alan Cox95da3102008-07-22 11:09:07 +01001166 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 struct cypress_private *priv = usb_get_serial_port_data(port);
1168 int actually_throttled, result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169
Harvey Harrison441b62c2008-03-03 16:08:34 -08001170 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171
Oliver Neukum63832512009-10-07 10:50:23 +02001172 spin_lock_irq(&priv->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 actually_throttled = priv->rx_flags & ACTUALLY_THROTTLED;
1174 priv->rx_flags = 0;
Oliver Neukum63832512009-10-07 10:50:23 +02001175 spin_unlock_irq(&priv->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176
Mike Isely78aef512006-08-29 22:07:11 -05001177 if (!priv->comm_is_ok)
1178 return;
1179
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 if (actually_throttled) {
1181 port->interrupt_in_urb->dev = port->serial->dev;
1182
Oliver Neukum63832512009-10-07 10:50:23 +02001183 result = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL);
Mike Isely78aef512006-08-29 22:07:11 -05001184 if (result) {
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001185 dev_err(&port->dev, "%s - failed submitting read urb, "
Harvey Harrison441b62c2008-03-03 16:08:34 -08001186 "error %d\n", __func__, result);
Mike Isely78aef512006-08-29 22:07:11 -05001187 cypress_set_dead(port);
1188 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 }
1190}
1191
1192
David Howells7d12e782006-10-05 14:55:46 +01001193static void cypress_read_int_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194{
Ming Leicdc97792008-02-24 18:41:47 +08001195 struct usb_serial_port *port = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 struct cypress_private *priv = usb_get_serial_port_data(port);
1197 struct tty_struct *tty;
1198 unsigned char *data = urb->transfer_buffer;
1199 unsigned long flags;
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001200 char tty_flag = TTY_NORMAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 int havedata = 0;
1202 int bytes = 0;
1203 int result;
1204 int i = 0;
Greg Kroah-Hartman8d7bc552007-06-15 15:44:13 -07001205 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206
Harvey Harrison441b62c2008-03-03 16:08:34 -08001207 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208
Greg Kroah-Hartman8d7bc552007-06-15 15:44:13 -07001209 switch (status) {
Mike Isely78aef512006-08-29 22:07:11 -05001210 case 0: /* success */
1211 break;
1212 case -ECONNRESET:
1213 case -ENOENT:
1214 case -ESHUTDOWN:
1215 /* precursor to disconnect so just go away */
1216 return;
1217 case -EPIPE:
Alan Stern4d2fae82009-07-09 12:59:57 -04001218 /* Can't call usb_clear_halt while in_interrupt */
1219 /* FALLS THROUGH */
Mike Isely78aef512006-08-29 22:07:11 -05001220 default:
1221 /* something ugly is going on... */
Alan Cox813a2242008-07-22 11:10:36 +01001222 dev_err(&urb->dev->dev,
1223 "%s - unexpected nonzero read status received: %d\n",
1224 __func__, status);
Mike Isely78aef512006-08-29 22:07:11 -05001225 cypress_set_dead(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 return;
1227 }
1228
1229 spin_lock_irqsave(&priv->lock, flags);
1230 if (priv->rx_flags & THROTTLED) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001231 dbg("%s - now throttling", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 priv->rx_flags |= ACTUALLY_THROTTLED;
1233 spin_unlock_irqrestore(&priv->lock, flags);
1234 return;
1235 }
1236 spin_unlock_irqrestore(&priv->lock, flags);
1237
Alan Cox4a90f092008-10-13 10:39:46 +01001238 tty = tty_port_tty_get(&port->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 if (!tty) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001240 dbg("%s - bad tty pointer - exiting", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 return;
1242 }
1243
1244 spin_lock_irqsave(&priv->lock, flags);
Mike Isely3416eaa2008-02-10 20:23:19 -06001245 result = urb->actual_length;
1246 switch (priv->pkt_fmt) {
1247 default:
1248 case packet_format_1:
1249 /* This is for the CY7C64013... */
1250 priv->current_status = data[0] & 0xF8;
1251 bytes = data[1] + 2;
1252 i = 2;
1253 if (bytes > 2)
1254 havedata = 1;
1255 break;
1256 case packet_format_2:
1257 /* This is for the CY7C63743... */
1258 priv->current_status = data[0] & 0xF8;
1259 bytes = (data[0] & 0x07) + 1;
1260 i = 1;
1261 if (bytes > 1)
1262 havedata = 1;
1263 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 }
1265 spin_unlock_irqrestore(&priv->lock, flags);
Mike Isely3416eaa2008-02-10 20:23:19 -06001266 if (result < bytes) {
1267 dbg("%s - wrong packet size - received %d bytes but packet "
1268 "said %d bytes", __func__, result, bytes);
1269 goto continue_read;
1270 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271
Alan Cox813a2242008-07-22 11:10:36 +01001272 usb_serial_debug_data(debug, &port->dev, __func__,
1273 urb->actual_length, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274
1275 spin_lock_irqsave(&priv->lock, flags);
1276 /* check to see if status has changed */
Mike Isely67683062008-02-10 20:23:28 -06001277 if (priv->current_status != priv->prev_status) {
1278 priv->diff_status |= priv->current_status ^
1279 priv->prev_status;
1280 wake_up_interruptible(&priv->delta_msr_wait);
1281 priv->prev_status = priv->current_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 }
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001283 spin_unlock_irqrestore(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001285 /* hangup, as defined in acm.c... this might be a bad place for it
1286 * though */
1287 if (tty && !(tty->termios->c_cflag & CLOCAL) &&
1288 !(priv->current_status & UART_CD)) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001289 dbg("%s - calling hangup", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 tty_hangup(tty);
1291 goto continue_read;
1292 }
1293
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001294 /* There is one error bit... I'm assuming it is a parity error
1295 * indicator as the generic firmware will set this bit to 1 if a
1296 * parity error occurs.
1297 * I can not find reference to any other error events. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 spin_lock_irqsave(&priv->lock, flags);
1299 if (priv->current_status & CYP_ERROR) {
1300 spin_unlock_irqrestore(&priv->lock, flags);
1301 tty_flag = TTY_PARITY;
Harvey Harrison441b62c2008-03-03 16:08:34 -08001302 dbg("%s - Parity Error detected", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 } else
1304 spin_unlock_irqrestore(&priv->lock, flags);
1305
1306 /* process read if there is data other than line status */
1307 if (tty && (bytes > i)) {
Alan Cox33f0f882006-01-09 20:54:13 -08001308 bytes = tty_buffer_request_room(tty, bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 for (; i < bytes ; ++i) {
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001310 dbg("pushing byte number %d - %d - %c", i, data[i],
1311 data[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 tty_insert_flip_char(tty, data[i], tty_flag);
1313 }
Alan Cox4a90f092008-10-13 10:39:46 +01001314 tty_flip_buffer_push(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 }
1316
1317 spin_lock_irqsave(&priv->lock, flags);
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001318 /* control and status byte(s) are also counted */
1319 priv->bytes_in += bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 spin_unlock_irqrestore(&priv->lock, flags);
1321
1322continue_read:
Alan Cox4a90f092008-10-13 10:39:46 +01001323 tty_kref_put(tty);
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001324
1325 /* Continue trying to always read... unless the port has closed. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326
Alan Cox95da3102008-07-22 11:09:07 +01001327 if (port->port.count > 0 && priv->comm_is_ok) {
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001328 usb_fill_int_urb(port->interrupt_in_urb, port->serial->dev,
1329 usb_rcvintpipe(port->serial->dev,
1330 port->interrupt_in_endpointAddress),
1331 port->interrupt_in_urb->transfer_buffer,
1332 port->interrupt_in_urb->transfer_buffer_length,
Alan Cox813a2242008-07-22 11:10:36 +01001333 cypress_read_int_callback, port,
1334 priv->read_urb_interval);
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001335 result = usb_submit_urb(port->interrupt_in_urb, GFP_ATOMIC);
Mike Isely78aef512006-08-29 22:07:11 -05001336 if (result) {
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001337 dev_err(&urb->dev->dev, "%s - failed resubmitting "
Harvey Harrison441b62c2008-03-03 16:08:34 -08001338 "read urb, error %d\n", __func__,
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001339 result);
Mike Isely78aef512006-08-29 22:07:11 -05001340 cypress_set_dead(port);
1341 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 }
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001343
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 return;
1345} /* cypress_read_int_callback */
1346
1347
David Howells7d12e782006-10-05 14:55:46 +01001348static void cypress_write_int_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349{
Ming Leicdc97792008-02-24 18:41:47 +08001350 struct usb_serial_port *port = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 struct cypress_private *priv = usb_get_serial_port_data(port);
1352 int result;
Greg Kroah-Hartman8d7bc552007-06-15 15:44:13 -07001353 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354
Harvey Harrison441b62c2008-03-03 16:08:34 -08001355 dbg("%s - port %d", __func__, port->number);
Greg Kroah-Hartman8d7bc552007-06-15 15:44:13 -07001356
1357 switch (status) {
Alan Cox813a2242008-07-22 11:10:36 +01001358 case 0:
1359 /* success */
1360 break;
1361 case -ECONNRESET:
1362 case -ENOENT:
1363 case -ESHUTDOWN:
1364 /* this urb is terminated, clean up */
1365 dbg("%s - urb shutting down with status: %d",
1366 __func__, status);
1367 priv->write_urb_in_use = 0;
1368 return;
1369 case -EPIPE: /* no break needed; clear halt and resubmit */
1370 if (!priv->comm_is_ok)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 break;
Alan Cox813a2242008-07-22 11:10:36 +01001372 usb_clear_halt(port->serial->dev, 0x02);
1373 /* error in the urb, so we have to resubmit it */
1374 dbg("%s - nonzero write bulk status received: %d",
1375 __func__, status);
1376 port->interrupt_out_urb->transfer_buffer_length = 1;
1377 port->interrupt_out_urb->dev = port->serial->dev;
1378 result = usb_submit_urb(port->interrupt_out_urb, GFP_ATOMIC);
1379 if (!result)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 return;
Alan Cox813a2242008-07-22 11:10:36 +01001381 dev_err(&urb->dev->dev,
1382 "%s - failed resubmitting write urb, error %d\n",
1383 __func__, result);
1384 cypress_set_dead(port);
1385 break;
1386 default:
1387 dev_err(&urb->dev->dev,
1388 "%s - unexpected nonzero write status received: %d\n",
1389 __func__, status);
1390 cypress_set_dead(port);
1391 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 priv->write_urb_in_use = 0;
Alan Cox813a2242008-07-22 11:10:36 +01001394
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 /* send any buffered data */
1396 cypress_send(port);
1397}
1398
1399
1400/*****************************************************************************
1401 * Write buffer functions - buffering code from pl2303 used
1402 *****************************************************************************/
1403
1404/*
1405 * cypress_buf_alloc
1406 *
1407 * Allocate a circular buffer and all associated memory.
1408 */
1409
1410static struct cypress_buf *cypress_buf_alloc(unsigned int size)
1411{
1412
1413 struct cypress_buf *cb;
1414
1415
1416 if (size == 0)
1417 return NULL;
1418
Robert P. J. Day5cbded52006-12-13 00:35:56 -08001419 cb = kmalloc(sizeof(struct cypress_buf), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 if (cb == NULL)
1421 return NULL;
1422
1423 cb->buf_buf = kmalloc(size, GFP_KERNEL);
1424 if (cb->buf_buf == NULL) {
1425 kfree(cb);
1426 return NULL;
1427 }
1428
1429 cb->buf_size = size;
1430 cb->buf_get = cb->buf_put = cb->buf_buf;
1431
1432 return cb;
1433
1434}
1435
1436
1437/*
1438 * cypress_buf_free
1439 *
1440 * Free the buffer and all associated memory.
1441 */
1442
1443static void cypress_buf_free(struct cypress_buf *cb)
1444{
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -07001445 if (cb) {
1446 kfree(cb->buf_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 kfree(cb);
1448 }
1449}
1450
1451
1452/*
1453 * cypress_buf_clear
1454 *
1455 * Clear out all data in the circular buffer.
1456 */
1457
1458static void cypress_buf_clear(struct cypress_buf *cb)
1459{
1460 if (cb != NULL)
1461 cb->buf_get = cb->buf_put;
1462 /* equivalent to a get of all data available */
1463}
1464
1465
1466/*
1467 * cypress_buf_data_avail
1468 *
1469 * Return the number of bytes of data available in the circular
1470 * buffer.
1471 */
1472
1473static unsigned int cypress_buf_data_avail(struct cypress_buf *cb)
1474{
1475 if (cb != NULL)
Alan Cox813a2242008-07-22 11:10:36 +01001476 return (cb->buf_size + cb->buf_put - cb->buf_get)
1477 % cb->buf_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 else
1479 return 0;
1480}
1481
1482
1483/*
1484 * cypress_buf_space_avail
1485 *
1486 * Return the number of bytes of space available in the circular
1487 * buffer.
1488 */
1489
1490static unsigned int cypress_buf_space_avail(struct cypress_buf *cb)
1491{
1492 if (cb != NULL)
Alan Cox813a2242008-07-22 11:10:36 +01001493 return (cb->buf_size + cb->buf_get - cb->buf_put - 1)
1494 % cb->buf_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 else
1496 return 0;
1497}
1498
1499
1500/*
1501 * cypress_buf_put
1502 *
1503 * Copy data data from a user buffer and put it into the circular buffer.
1504 * Restrict to the amount of space available.
1505 *
1506 * Return the number of bytes copied.
1507 */
1508
1509static unsigned int cypress_buf_put(struct cypress_buf *cb, const char *buf,
1510 unsigned int count)
1511{
1512
1513 unsigned int len;
1514
1515
1516 if (cb == NULL)
1517 return 0;
1518
1519 len = cypress_buf_space_avail(cb);
1520 if (count > len)
1521 count = len;
1522
1523 if (count == 0)
1524 return 0;
1525
1526 len = cb->buf_buf + cb->buf_size - cb->buf_put;
1527 if (count > len) {
1528 memcpy(cb->buf_put, buf, len);
1529 memcpy(cb->buf_buf, buf+len, count - len);
1530 cb->buf_put = cb->buf_buf + count - len;
1531 } else {
1532 memcpy(cb->buf_put, buf, count);
1533 if (count < len)
1534 cb->buf_put += count;
1535 else /* count == len */
1536 cb->buf_put = cb->buf_buf;
1537 }
1538
1539 return count;
1540
1541}
1542
1543
1544/*
1545 * cypress_buf_get
1546 *
1547 * Get data from the circular buffer and copy to the given buffer.
1548 * Restrict to the amount of data available.
1549 *
1550 * Return the number of bytes copied.
1551 */
1552
1553static unsigned int cypress_buf_get(struct cypress_buf *cb, char *buf,
1554 unsigned int count)
1555{
1556
1557 unsigned int len;
1558
1559
1560 if (cb == NULL)
1561 return 0;
1562
1563 len = cypress_buf_data_avail(cb);
1564 if (count > len)
1565 count = len;
1566
1567 if (count == 0)
1568 return 0;
1569
1570 len = cb->buf_buf + cb->buf_size - cb->buf_get;
1571 if (count > len) {
1572 memcpy(buf, cb->buf_get, len);
1573 memcpy(buf+len, cb->buf_buf, count - len);
1574 cb->buf_get = cb->buf_buf + count - len;
1575 } else {
1576 memcpy(buf, cb->buf_get, count);
1577 if (count < len)
1578 cb->buf_get += count;
1579 else /* count == len */
1580 cb->buf_get = cb->buf_buf;
1581 }
1582
1583 return count;
1584
1585}
1586
1587/*****************************************************************************
1588 * Module functions
1589 *****************************************************************************/
1590
1591static int __init cypress_init(void)
1592{
1593 int retval;
Alan Cox813a2242008-07-22 11:10:36 +01001594
Harvey Harrison441b62c2008-03-03 16:08:34 -08001595 dbg("%s", __func__);
Alan Cox813a2242008-07-22 11:10:36 +01001596
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 retval = usb_serial_register(&cypress_earthmate_device);
1598 if (retval)
1599 goto failed_em_register;
1600 retval = usb_serial_register(&cypress_hidcom_device);
1601 if (retval)
1602 goto failed_hidcom_register;
Lonnie Mendeza5c44e22006-03-01 10:45:24 -06001603 retval = usb_serial_register(&cypress_ca42v2_device);
1604 if (retval)
1605 goto failed_ca42v2_register;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 retval = usb_register(&cypress_driver);
1607 if (retval)
1608 goto failed_usb_register;
1609
Greg Kroah-Hartmanc197a8d2008-08-18 13:21:04 -07001610 printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_VERSION ":"
1611 DRIVER_DESC "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613
Mariusz Kozlowski2e46b742006-11-17 17:49:22 +01001614failed_usb_register:
1615 usb_serial_deregister(&cypress_ca42v2_device);
1616failed_ca42v2_register:
1617 usb_serial_deregister(&cypress_hidcom_device);
1618failed_hidcom_register:
1619 usb_serial_deregister(&cypress_earthmate_device);
1620failed_em_register:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 return retval;
1622}
1623
1624
Alan Cox813a2242008-07-22 11:10:36 +01001625static void __exit cypress_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626{
Harvey Harrison441b62c2008-03-03 16:08:34 -08001627 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628
Alan Cox813a2242008-07-22 11:10:36 +01001629 usb_deregister(&cypress_driver);
1630 usb_serial_deregister(&cypress_earthmate_device);
1631 usb_serial_deregister(&cypress_hidcom_device);
1632 usb_serial_deregister(&cypress_ca42v2_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633}
1634
1635
1636module_init(cypress_init);
1637module_exit(cypress_exit);
1638
Alan Cox813a2242008-07-22 11:10:36 +01001639MODULE_AUTHOR(DRIVER_AUTHOR);
1640MODULE_DESCRIPTION(DRIVER_DESC);
1641MODULE_VERSION(DRIVER_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642MODULE_LICENSE("GPL");
1643
1644module_param(debug, bool, S_IRUGO | S_IWUSR);
1645MODULE_PARM_DESC(debug, "Debug enabled or not");
1646module_param(stats, bool, S_IRUGO | S_IWUSR);
1647MODULE_PARM_DESC(stats, "Enable statistics or not");
Lonnie Mendez3cb4a4f2005-05-03 17:02:20 -05001648module_param(interval, int, S_IRUGO | S_IWUSR);
1649MODULE_PARM_DESC(interval, "Overrides interrupt interval");
Mike Frysingerc3126592009-12-18 16:33:03 -05001650module_param(unstable_bauds, bool, S_IRUGO | S_IWUSR);
1651MODULE_PARM_DESC(unstable_bauds, "Allow unstable baud rates");