blob: ba7352e4187efbd1ef73a09297d1cbb1825a4b08 [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.
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 */
20
Alan Cox813a2242008-07-22 11:10:36 +010021/* Thanks to Neil Whelchel for writing the first cypress m8 implementation
22 for linux. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070023/* Thanks to cypress for providing references for the hid reports. */
24/* Thanks to Jiang Zhang for providing links and for general help. */
Alan Cox813a2242008-07-22 11:10:36 +010025/* Code originates and was built up from ftdi_sio, belkin, pl2303 and others.*/
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
27
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/kernel.h>
29#include <linux/errno.h>
30#include <linux/init.h>
31#include <linux/slab.h>
32#include <linux/tty.h>
33#include <linux/tty_driver.h>
34#include <linux/tty_flip.h>
35#include <linux/module.h>
36#include <linux/moduleparam.h>
37#include <linux/spinlock.h>
38#include <linux/usb.h>
Greg Kroah-Hartmana9698882006-07-11 21:22:58 -070039#include <linux/usb/serial.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <linux/serial.h>
Johan Hovold117fb8d2010-05-16 20:33:50 +020041#include <linux/kfifo.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <linux/delay.h>
Alan Cox813a2242008-07-22 11:10:36 +010043#include <linux/uaccess.h>
Johan Hovold0f2c2d72009-12-31 16:48:01 +010044#include <asm/unaligned.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include "cypress_m8.h"
47
48
Rusty Russell90ab5ee2012-01-13 09:32:20 +103049static bool stats;
Lonnie Mendez3cb4a4f2005-05-03 17:02:20 -050050static int interval;
Rusty Russell90ab5ee2012-01-13 09:32:20 +103051static bool unstable_bauds;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#define DRIVER_AUTHOR "Lonnie Mendez <dignome@gmail.com>, Neil Whelchel <koyama@firstlight.net>"
54#define DRIVER_DESC "Cypress USB to Serial Driver"
55
56/* write buffer size defines */
57#define CYPRESS_BUF_SIZE 1024
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Németh Márton7d40d7e2010-01-10 15:34:24 +010059static const struct usb_device_id id_table_earthmate[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 { USB_DEVICE(VENDOR_ID_DELORME, PRODUCT_ID_EARTHMATEUSB) },
Lonnie Mendez25b6f082005-05-10 17:09:52 -050061 { USB_DEVICE(VENDOR_ID_DELORME, PRODUCT_ID_EARTHMATEUSB_LT20) },
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 { } /* Terminating entry */
63};
64
Németh Márton7d40d7e2010-01-10 15:34:24 +010065static const struct usb_device_id id_table_cyphidcomrs232[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 { USB_DEVICE(VENDOR_ID_CYPRESS, PRODUCT_ID_CYPHIDCOM) },
Dmitry Shapin6f6f06e2008-03-04 15:25:10 -080067 { USB_DEVICE(VENDOR_ID_POWERCOM, PRODUCT_ID_UPS) },
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 { } /* Terminating entry */
69};
70
Németh Márton7d40d7e2010-01-10 15:34:24 +010071static const struct usb_device_id id_table_nokiaca42v2[] = {
Lonnie Mendeza5c44e22006-03-01 10:45:24 -060072 { USB_DEVICE(VENDOR_ID_DAZZLE, PRODUCT_ID_CA42) },
73 { } /* Terminating entry */
74};
75
Németh Márton7d40d7e2010-01-10 15:34:24 +010076static const struct usb_device_id id_table_combined[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 { USB_DEVICE(VENDOR_ID_DELORME, PRODUCT_ID_EARTHMATEUSB) },
Lonnie Mendez25b6f082005-05-10 17:09:52 -050078 { USB_DEVICE(VENDOR_ID_DELORME, PRODUCT_ID_EARTHMATEUSB_LT20) },
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 { USB_DEVICE(VENDOR_ID_CYPRESS, PRODUCT_ID_CYPHIDCOM) },
Dmitry Shapin6f6f06e2008-03-04 15:25:10 -080080 { USB_DEVICE(VENDOR_ID_POWERCOM, PRODUCT_ID_UPS) },
Lonnie Mendeza5c44e22006-03-01 10:45:24 -060081 { USB_DEVICE(VENDOR_ID_DAZZLE, PRODUCT_ID_CA42) },
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 { } /* Terminating entry */
83};
84
Alan Cox813a2242008-07-22 11:10:36 +010085MODULE_DEVICE_TABLE(usb, id_table_combined);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
Mike Isely3416eaa2008-02-10 20:23:19 -060087enum packet_format {
88 packet_format_1, /* b0:status, b1:payload count */
89 packet_format_2 /* b0[7:3]:status, b0[2:0]:payload count */
90};
91
Linus Torvalds1da177e2005-04-16 15:20:36 -070092struct cypress_private {
93 spinlock_t lock; /* private lock */
94 int chiptype; /* identifier of device, for quirks/etc */
95 int bytes_in; /* used for statistics */
96 int bytes_out; /* used for statistics */
97 int cmd_count; /* used for statistics */
98 int cmd_ctrl; /* always set this to 1 before issuing a command */
Johan Hovold117fb8d2010-05-16 20:33:50 +020099 struct kfifo write_fifo; /* write fifo */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 int write_urb_in_use; /* write urb in use indicator */
Mike Isely0257fa92006-08-29 22:06:59 -0500101 int write_urb_interval; /* interval to use for write urb */
102 int read_urb_interval; /* interval to use for read urb */
Mike Isely78aef512006-08-29 22:07:11 -0500103 int comm_is_ok; /* true if communication is (still) ok */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 int termios_initialized;
105 __u8 line_control; /* holds dtr / rts value */
106 __u8 current_status; /* received from last read - info on dsr,cts,cd,ri,etc */
107 __u8 current_config; /* stores the current configuration byte */
108 __u8 rx_flags; /* throttling - used from whiteheat/ftdi_sio */
Mike Isely3416eaa2008-02-10 20:23:19 -0600109 enum packet_format pkt_fmt; /* format to use for packet send / receive */
Mike Isely3d6aa322008-02-10 20:23:24 -0600110 int get_cfg_unsafe; /* If true, the CYPRESS_GET_CONFIG is unsafe */
Alan Cox813a2242008-07-22 11:10:36 +0100111 int baud_rate; /* stores current baud rate in
112 integer form */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 int isthrottled; /* if throttled, discard reads */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 char prev_status, diff_status; /* used for TIOCMIWAIT */
Daniel Mack3ad2f3f2010-02-03 08:01:28 +0800115 /* we pass a pointer to this as the argument sent to
Alan Cox813a2242008-07-22 11:10:36 +0100116 cypress_set_termios old_termios */
Alan Cox606d0992006-12-08 02:38:45 -0800117 struct ktermios tmp_termios; /* stores the old termios settings */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118};
119
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120/* function prototypes for the Cypress USB to serial device */
Johan Hovold5c1a0f42012-10-17 13:34:55 +0200121static int cypress_earthmate_port_probe(struct usb_serial_port *port);
122static int cypress_hidcom_port_probe(struct usb_serial_port *port);
123static int cypress_ca42v2_port_probe(struct usb_serial_port *port);
124static int cypress_port_remove(struct usb_serial_port *port);
Alan Coxa509a7e2009-09-19 13:13:26 -0700125static int cypress_open(struct tty_struct *tty, struct usb_serial_port *port);
Alan Cox335f8512009-06-11 12:26:29 +0100126static void cypress_close(struct usb_serial_port *port);
127static void cypress_dtr_rts(struct usb_serial_port *port, int on);
Alan Cox813a2242008-07-22 11:10:36 +0100128static int cypress_write(struct tty_struct *tty, struct usb_serial_port *port,
129 const unsigned char *buf, int count);
130static void cypress_send(struct usb_serial_port *port);
131static int cypress_write_room(struct tty_struct *tty);
Alan Cox00a0d0d2011-02-14 16:27:06 +0000132static int cypress_ioctl(struct tty_struct *tty,
Alan Cox813a2242008-07-22 11:10:36 +0100133 unsigned int cmd, unsigned long arg);
134static void cypress_set_termios(struct tty_struct *tty,
135 struct usb_serial_port *port, struct ktermios *old);
Alan Cox60b33c12011-02-14 16:26:14 +0000136static int cypress_tiocmget(struct tty_struct *tty);
Alan Cox20b9d172011-02-14 16:26:50 +0000137static int cypress_tiocmset(struct tty_struct *tty,
Alan Cox813a2242008-07-22 11:10:36 +0100138 unsigned int set, unsigned int clear);
139static int cypress_chars_in_buffer(struct tty_struct *tty);
140static void cypress_throttle(struct tty_struct *tty);
141static void cypress_unthrottle(struct tty_struct *tty);
142static void cypress_set_dead(struct usb_serial_port *port);
143static void cypress_read_int_callback(struct urb *urb);
144static void cypress_write_int_callback(struct urb *urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -0700146static struct usb_serial_driver cypress_earthmate_device = {
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700147 .driver = {
148 .owner = THIS_MODULE,
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -0700149 .name = "earthmate",
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700150 },
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -0700151 .description = "DeLorme Earthmate USB",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 .id_table = id_table_earthmate,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 .num_ports = 1,
Johan Hovold5c1a0f42012-10-17 13:34:55 +0200154 .port_probe = cypress_earthmate_port_probe,
155 .port_remove = cypress_port_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 .open = cypress_open,
157 .close = cypress_close,
Alan Cox335f8512009-06-11 12:26:29 +0100158 .dtr_rts = cypress_dtr_rts,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 .write = cypress_write,
160 .write_room = cypress_write_room,
161 .ioctl = cypress_ioctl,
162 .set_termios = cypress_set_termios,
163 .tiocmget = cypress_tiocmget,
164 .tiocmset = cypress_tiocmset,
165 .chars_in_buffer = cypress_chars_in_buffer,
166 .throttle = cypress_throttle,
167 .unthrottle = cypress_unthrottle,
168 .read_int_callback = cypress_read_int_callback,
169 .write_int_callback = cypress_write_int_callback,
170};
171
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -0700172static struct usb_serial_driver cypress_hidcom_device = {
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700173 .driver = {
174 .owner = THIS_MODULE,
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -0700175 .name = "cyphidcom",
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700176 },
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -0700177 .description = "HID->COM RS232 Adapter",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 .id_table = id_table_cyphidcomrs232,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 .num_ports = 1,
Johan Hovold5c1a0f42012-10-17 13:34:55 +0200180 .port_probe = cypress_hidcom_port_probe,
181 .port_remove = cypress_port_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 .open = cypress_open,
183 .close = cypress_close,
Alan Cox335f8512009-06-11 12:26:29 +0100184 .dtr_rts = cypress_dtr_rts,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 .write = cypress_write,
186 .write_room = cypress_write_room,
187 .ioctl = cypress_ioctl,
188 .set_termios = cypress_set_termios,
189 .tiocmget = cypress_tiocmget,
190 .tiocmset = cypress_tiocmset,
191 .chars_in_buffer = cypress_chars_in_buffer,
192 .throttle = cypress_throttle,
193 .unthrottle = cypress_unthrottle,
194 .read_int_callback = cypress_read_int_callback,
195 .write_int_callback = cypress_write_int_callback,
196};
197
Lonnie Mendeza5c44e22006-03-01 10:45:24 -0600198static struct usb_serial_driver cypress_ca42v2_device = {
199 .driver = {
200 .owner = THIS_MODULE,
Alan Cox813a2242008-07-22 11:10:36 +0100201 .name = "nokiaca42v2",
Lonnie Mendeza5c44e22006-03-01 10:45:24 -0600202 },
203 .description = "Nokia CA-42 V2 Adapter",
204 .id_table = id_table_nokiaca42v2,
Lonnie Mendeza5c44e22006-03-01 10:45:24 -0600205 .num_ports = 1,
Johan Hovold5c1a0f42012-10-17 13:34:55 +0200206 .port_probe = cypress_ca42v2_port_probe,
207 .port_remove = cypress_port_remove,
Lonnie Mendeza5c44e22006-03-01 10:45:24 -0600208 .open = cypress_open,
209 .close = cypress_close,
Alan Cox335f8512009-06-11 12:26:29 +0100210 .dtr_rts = cypress_dtr_rts,
Lonnie Mendeza5c44e22006-03-01 10:45:24 -0600211 .write = cypress_write,
212 .write_room = cypress_write_room,
213 .ioctl = cypress_ioctl,
214 .set_termios = cypress_set_termios,
215 .tiocmget = cypress_tiocmget,
216 .tiocmset = cypress_tiocmset,
217 .chars_in_buffer = cypress_chars_in_buffer,
218 .throttle = cypress_throttle,
219 .unthrottle = cypress_unthrottle,
220 .read_int_callback = cypress_read_int_callback,
221 .write_int_callback = cypress_write_int_callback,
222};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Alan Stern08a4f6b2012-02-23 14:56:17 -0500224static struct usb_serial_driver * const serial_drivers[] = {
225 &cypress_earthmate_device, &cypress_hidcom_device,
226 &cypress_ca42v2_device, NULL
227};
228
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229/*****************************************************************************
230 * Cypress serial helper functions
231 *****************************************************************************/
232
233
Alan Cox8873aaa2008-03-10 21:59:28 +0000234static int analyze_baud_rate(struct usb_serial_port *port, speed_t new_rate)
Mike Isely92983c22008-02-10 20:23:32 -0600235{
Mike Isely92983c22008-02-10 20:23:32 -0600236 struct cypress_private *priv;
237 priv = usb_get_serial_port_data(port);
238
Mike Frysingerc3126592009-12-18 16:33:03 -0500239 if (unstable_bauds)
240 return new_rate;
241
Mike Isely92983c22008-02-10 20:23:32 -0600242 /*
243 * The general purpose firmware for the Cypress M8 allows for
244 * a maximum speed of 57600bps (I have no idea whether DeLorme
245 * chose to use the general purpose firmware or not), if you
246 * need to modify this speed setting for your own project
247 * please add your own chiptype and modify the code likewise.
248 * The Cypress HID->COM device will work successfully up to
249 * 115200bps (but the actual throughput is around 3kBps).
250 */
Mike Isely92983c22008-02-10 20:23:32 -0600251 if (port->serial->dev->speed == USB_SPEED_LOW) {
252 /*
253 * Mike Isely <isely@pobox.com> 2-Feb-2008: The
254 * Cypress app note that describes this mechanism
255 * states the the low-speed part can't handle more
256 * than 800 bytes/sec, in which case 4800 baud is the
257 * safest speed for a part like that.
258 */
259 if (new_rate > 4800) {
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700260 dev_dbg(&port->dev,
261 "%s - failed setting baud rate, device incapable speed %d\n",
262 __func__, new_rate);
Mike Isely92983c22008-02-10 20:23:32 -0600263 return -1;
264 }
265 }
266 switch (priv->chiptype) {
267 case CT_EARTHMATE:
268 if (new_rate <= 600) {
269 /* 300 and 600 baud rates are supported under
270 * the generic firmware, but are not used with
271 * NMEA and SiRF protocols */
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700272 dev_dbg(&port->dev,
273 "%s - failed setting baud rate, unsupported speed of %d on Earthmate GPS",
274 __func__, new_rate);
Mike Isely92983c22008-02-10 20:23:32 -0600275 return -1;
276 }
277 break;
278 default:
279 break;
280 }
281 return new_rate;
282}
283
284
Steven Cole093cf722005-05-03 19:07:24 -0600285/* This function can either set or retrieve the current serial line settings */
Alan Cox813a2242008-07-22 11:10:36 +0100286static int cypress_serial_control(struct tty_struct *tty,
Alan Cox95da3102008-07-22 11:09:07 +0100287 struct usb_serial_port *port, speed_t baud_rate, int data_bits,
288 int stop_bits, int parity_enable, int parity_type, int reset,
289 int cypress_request_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290{
Lonnie Mendez3cb4a4f2005-05-03 17:02:20 -0500291 int new_baudrate = 0, retval = 0, tries = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 struct cypress_private *priv;
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700293 struct device *dev = &port->dev;
Johan Hovold09546442009-12-28 23:01:48 +0100294 u8 *feature_buffer;
295 const unsigned int feature_len = 5;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 unsigned long flags;
297
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 priv = usb_get_serial_port_data(port);
299
Mike Isely78aef512006-08-29 22:07:11 -0500300 if (!priv->comm_is_ok)
301 return -ENODEV;
302
Johan Hovold09546442009-12-28 23:01:48 +0100303 feature_buffer = kcalloc(feature_len, sizeof(u8), GFP_KERNEL);
304 if (!feature_buffer)
305 return -ENOMEM;
306
Alan Cox813a2242008-07-22 11:10:36 +0100307 switch (cypress_request_type) {
308 case CYPRESS_SET_CONFIG:
Alan Cox813a2242008-07-22 11:10:36 +0100309 /* 0 means 'Hang up' so doesn't change the true bit rate */
Mike Frysinger2805eb12009-12-18 16:33:02 -0500310 new_baudrate = priv->baud_rate;
311 if (baud_rate && baud_rate != priv->baud_rate) {
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700312 dev_dbg(dev, "%s - baud rate is changing\n", __func__);
Alan Cox813a2242008-07-22 11:10:36 +0100313 retval = analyze_baud_rate(port, baud_rate);
Mike Frysinger2805eb12009-12-18 16:33:02 -0500314 if (retval >= 0) {
Alan Cox813a2242008-07-22 11:10:36 +0100315 new_baudrate = retval;
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700316 dev_dbg(dev, "%s - New baud rate set to %d\n",
317 __func__, new_baudrate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 }
Alan Cox813a2242008-07-22 11:10:36 +0100319 }
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700320 dev_dbg(dev, "%s - baud rate is being sent as %d\n", __func__,
321 new_baudrate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
Alan Cox813a2242008-07-22 11:10:36 +0100323 /* fill the feature_buffer with new configuration */
Johan Hovold0f2c2d72009-12-31 16:48:01 +0100324 put_unaligned_le32(new_baudrate, feature_buffer);
Alan Cox813a2242008-07-22 11:10:36 +0100325 feature_buffer[4] |= data_bits; /* assign data bits in 2 bit space ( max 3 ) */
326 /* 1 bit gap */
327 feature_buffer[4] |= (stop_bits << 3); /* assign stop bits in 1 bit space */
328 feature_buffer[4] |= (parity_enable << 4); /* assign parity flag in 1 bit space */
329 feature_buffer[4] |= (parity_type << 5); /* assign parity type in 1 bit space */
330 /* 1 bit gap */
331 feature_buffer[4] |= (reset << 7); /* assign reset at end of byte, 1 bit space */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700333 dev_dbg(dev, "%s - device is being sent this feature report:\n", __func__);
334 dev_dbg(dev, "%s - %02X - %02X - %02X - %02X - %02X\n", __func__,
Alan Cox813a2242008-07-22 11:10:36 +0100335 feature_buffer[0], feature_buffer[1],
336 feature_buffer[2], feature_buffer[3],
337 feature_buffer[4]);
Lonnie Mendez3cb4a4f2005-05-03 17:02:20 -0500338
Alan Cox813a2242008-07-22 11:10:36 +0100339 do {
340 retval = usb_control_msg(port->serial->dev,
341 usb_sndctrlpipe(port->serial->dev, 0),
342 HID_REQ_SET_REPORT,
343 USB_DIR_OUT | USB_RECIP_INTERFACE | USB_TYPE_CLASS,
344 0x0300, 0, feature_buffer,
Johan Hovold09546442009-12-28 23:01:48 +0100345 feature_len, 500);
Lonnie Mendez3cb4a4f2005-05-03 17:02:20 -0500346
Alan Cox813a2242008-07-22 11:10:36 +0100347 if (tries++ >= 3)
348 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
Johan Hovold09546442009-12-28 23:01:48 +0100350 } while (retval != feature_len &&
Alan Cox813a2242008-07-22 11:10:36 +0100351 retval != -ENODEV);
Mike Isely93075542008-02-10 20:23:14 -0600352
Johan Hovold09546442009-12-28 23:01:48 +0100353 if (retval != feature_len) {
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700354 dev_err(dev, "%s - failed sending serial line settings - %d\n",
355 __func__, retval);
Alan Cox813a2242008-07-22 11:10:36 +0100356 cypress_set_dead(port);
357 } else {
358 spin_lock_irqsave(&priv->lock, flags);
359 priv->baud_rate = new_baudrate;
360 priv->current_config = feature_buffer[4];
361 spin_unlock_irqrestore(&priv->lock, flags);
362 /* If we asked for a speed change encode it */
363 if (baud_rate)
364 tty_encode_baud_rate(tty,
365 new_baudrate, new_baudrate);
366 }
367 break;
368 case CYPRESS_GET_CONFIG:
369 if (priv->get_cfg_unsafe) {
370 /* Not implemented for this device,
371 and if we try to do it we're likely
372 to crash the hardware. */
Johan Hovold09546442009-12-28 23:01:48 +0100373 retval = -ENOTTY;
374 goto out;
Alan Cox813a2242008-07-22 11:10:36 +0100375 }
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700376 dev_dbg(dev, "%s - retreiving serial line settings\n", __func__);
Alan Cox813a2242008-07-22 11:10:36 +0100377 do {
378 retval = usb_control_msg(port->serial->dev,
379 usb_rcvctrlpipe(port->serial->dev, 0),
380 HID_REQ_GET_REPORT,
381 USB_DIR_IN | USB_RECIP_INTERFACE | USB_TYPE_CLASS,
382 0x0300, 0, feature_buffer,
Johan Hovold09546442009-12-28 23:01:48 +0100383 feature_len, 500);
Lonnie Mendez3cb4a4f2005-05-03 17:02:20 -0500384
Alan Cox813a2242008-07-22 11:10:36 +0100385 if (tries++ >= 3)
386 break;
Johan Hovold09546442009-12-28 23:01:48 +0100387 } while (retval != feature_len
Alan Cox813a2242008-07-22 11:10:36 +0100388 && retval != -ENODEV);
Lonnie Mendez3cb4a4f2005-05-03 17:02:20 -0500389
Johan Hovold09546442009-12-28 23:01:48 +0100390 if (retval != feature_len) {
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700391 dev_err(dev, "%s - failed to retrieve serial line settings - %d\n",
392 __func__, retval);
Alan Cox813a2242008-07-22 11:10:36 +0100393 cypress_set_dead(port);
Johan Hovold09546442009-12-28 23:01:48 +0100394 goto out;
Alan Cox813a2242008-07-22 11:10:36 +0100395 } else {
396 spin_lock_irqsave(&priv->lock, flags);
397 /* store the config in one byte, and later
398 use bit masks to check values */
399 priv->current_config = feature_buffer[4];
Johan Hovold0f2c2d72009-12-31 16:48:01 +0100400 priv->baud_rate = get_unaligned_le32(feature_buffer);
Alan Cox813a2242008-07-22 11:10:36 +0100401 spin_unlock_irqrestore(&priv->lock, flags);
402 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 }
Lonnie Mendez3cb4a4f2005-05-03 17:02:20 -0500404 spin_lock_irqsave(&priv->lock, flags);
405 ++priv->cmd_count;
406 spin_unlock_irqrestore(&priv->lock, flags);
Johan Hovold09546442009-12-28 23:01:48 +0100407out:
408 kfree(feature_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 return retval;
410} /* cypress_serial_control */
411
412
Mike Isely78aef512006-08-29 22:07:11 -0500413static void cypress_set_dead(struct usb_serial_port *port)
414{
415 struct cypress_private *priv = usb_get_serial_port_data(port);
416 unsigned long flags;
417
418 spin_lock_irqsave(&priv->lock, flags);
419 if (!priv->comm_is_ok) {
420 spin_unlock_irqrestore(&priv->lock, flags);
421 return;
422 }
423 priv->comm_is_ok = 0;
424 spin_unlock_irqrestore(&priv->lock, flags);
425
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700426 dev_err(&port->dev, "cypress_m8 suspending failing port %d - "
427 "interval might be too short\n", port->number);
Mike Isely78aef512006-08-29 22:07:11 -0500428}
429
430
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431/*****************************************************************************
432 * Cypress serial driver functions
433 *****************************************************************************/
434
435
Johan Hovold5c1a0f42012-10-17 13:34:55 +0200436static int cypress_generic_port_probe(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437{
Johan Hovold5c1a0f42012-10-17 13:34:55 +0200438 struct usb_serial *serial = port->serial;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 struct cypress_private *priv;
440
Alan Cox813a2242008-07-22 11:10:36 +0100441 priv = kzalloc(sizeof(struct cypress_private), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 if (!priv)
443 return -ENOMEM;
444
Mike Isely78aef512006-08-29 22:07:11 -0500445 priv->comm_is_ok = !0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 spin_lock_init(&priv->lock);
Johan Hovold117fb8d2010-05-16 20:33:50 +0200447 if (kfifo_alloc(&priv->write_fifo, CYPRESS_BUF_SIZE, GFP_KERNEL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 kfree(priv);
449 return -ENOMEM;
450 }
Alan Cox813a2242008-07-22 11:10:36 +0100451
452 usb_reset_configuration(serial->dev);
453
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 priv->cmd_ctrl = 0;
455 priv->line_control = 0;
456 priv->termios_initialized = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 priv->rx_flags = 0;
Mike Isely3416eaa2008-02-10 20:23:19 -0600458 /* Default packet format setting is determined by packet size.
459 Anything with a size larger then 9 must have a separate
460 count field since the 3 bit count field is otherwise too
461 small. Otherwise we can use the slightly more compact
462 format. This is in accordance with the cypress_m8 serial
463 converter app note. */
Alan Cox813a2242008-07-22 11:10:36 +0100464 if (port->interrupt_out_size > 9)
Mike Isely3416eaa2008-02-10 20:23:19 -0600465 priv->pkt_fmt = packet_format_1;
Alan Cox813a2242008-07-22 11:10:36 +0100466 else
Mike Isely3416eaa2008-02-10 20:23:19 -0600467 priv->pkt_fmt = packet_format_2;
Alan Cox813a2242008-07-22 11:10:36 +0100468
Mike Isely0257fa92006-08-29 22:06:59 -0500469 if (interval > 0) {
470 priv->write_urb_interval = interval;
471 priv->read_urb_interval = interval;
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700472 dev_dbg(&port->dev, "%s - read & write intervals forced to %d\n",
473 __func__, interval);
Mike Isely0257fa92006-08-29 22:06:59 -0500474 } else {
475 priv->write_urb_interval = port->interrupt_out_urb->interval;
476 priv->read_urb_interval = port->interrupt_in_urb->interval;
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700477 dev_dbg(&port->dev, "%s - intervals: read=%d write=%d\n",
478 __func__, priv->read_urb_interval,
479 priv->write_urb_interval);
Mike Isely0257fa92006-08-29 22:06:59 -0500480 }
481 usb_set_serial_port_data(port, priv);
Alan Cox813a2242008-07-22 11:10:36 +0100482
Lonnie Mendezb9db07f2005-07-12 17:21:31 -0500483 return 0;
484}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
486
Johan Hovold5c1a0f42012-10-17 13:34:55 +0200487static int cypress_earthmate_port_probe(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488{
Johan Hovold5c1a0f42012-10-17 13:34:55 +0200489 struct usb_serial *serial = port->serial;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 struct cypress_private *priv;
Johan Hovold5c1a0f42012-10-17 13:34:55 +0200491 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
Johan Hovold5c1a0f42012-10-17 13:34:55 +0200493 ret = cypress_generic_port_probe(port);
494 if (ret) {
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700495 dev_dbg(&port->dev, "%s - Failed setting up port\n", __func__);
Johan Hovold5c1a0f42012-10-17 13:34:55 +0200496 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 }
498
Mike Isely3d6aa322008-02-10 20:23:24 -0600499 priv = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 priv->chiptype = CT_EARTHMATE;
Mike Isely3416eaa2008-02-10 20:23:19 -0600501 /* All Earthmate devices use the separated-count packet
502 format! Idiotic. */
503 priv->pkt_fmt = packet_format_1;
Alan Cox813a2242008-07-22 11:10:36 +0100504 if (serial->dev->descriptor.idProduct !=
505 cpu_to_le16(PRODUCT_ID_EARTHMATEUSB)) {
Mike Isely3d6aa322008-02-10 20:23:24 -0600506 /* The old original USB Earthmate seemed able to
507 handle GET_CONFIG requests; everything they've
508 produced since that time crashes if this command is
509 attempted :-( */
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700510 dev_dbg(&port->dev,
511 "%s - Marking this device as unsafe for GET_CONFIG commands\n",
512 __func__);
Mike Isely3d6aa322008-02-10 20:23:24 -0600513 priv->get_cfg_unsafe = !0;
514 }
Lonnie Mendezb9db07f2005-07-12 17:21:31 -0500515
516 return 0;
Johan Hovold5c1a0f42012-10-17 13:34:55 +0200517}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
Johan Hovold5c1a0f42012-10-17 13:34:55 +0200519static int cypress_hidcom_port_probe(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520{
521 struct cypress_private *priv;
Johan Hovold5c1a0f42012-10-17 13:34:55 +0200522 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
Johan Hovold5c1a0f42012-10-17 13:34:55 +0200524 ret = cypress_generic_port_probe(port);
525 if (ret) {
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700526 dev_dbg(&port->dev, "%s - Failed setting up port\n", __func__);
Johan Hovold5c1a0f42012-10-17 13:34:55 +0200527 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 }
529
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700530 priv = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 priv->chiptype = CT_CYPHIDCOM;
Alan Cox813a2242008-07-22 11:10:36 +0100532
Lonnie Mendezb9db07f2005-07-12 17:21:31 -0500533 return 0;
Johan Hovold5c1a0f42012-10-17 13:34:55 +0200534}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535
Johan Hovold5c1a0f42012-10-17 13:34:55 +0200536static int cypress_ca42v2_port_probe(struct usb_serial_port *port)
Lonnie Mendeza5c44e22006-03-01 10:45:24 -0600537{
538 struct cypress_private *priv;
Johan Hovold5c1a0f42012-10-17 13:34:55 +0200539 int ret;
Lonnie Mendeza5c44e22006-03-01 10:45:24 -0600540
Johan Hovold5c1a0f42012-10-17 13:34:55 +0200541 ret = cypress_generic_port_probe(port);
542 if (ret) {
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700543 dev_dbg(&port->dev, "%s - Failed setting up port\n", __func__);
Johan Hovold5c1a0f42012-10-17 13:34:55 +0200544 return ret;
Lonnie Mendeza5c44e22006-03-01 10:45:24 -0600545 }
546
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700547 priv = usb_get_serial_port_data(port);
Lonnie Mendeza5c44e22006-03-01 10:45:24 -0600548 priv->chiptype = CT_CA42V2;
549
550 return 0;
Johan Hovold5c1a0f42012-10-17 13:34:55 +0200551}
Lonnie Mendeza5c44e22006-03-01 10:45:24 -0600552
Johan Hovold5c1a0f42012-10-17 13:34:55 +0200553static int cypress_port_remove(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554{
555 struct cypress_private *priv;
556
Johan Hovold5c1a0f42012-10-17 13:34:55 +0200557 priv = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
Johan Hovold5c1a0f42012-10-17 13:34:55 +0200559 kfifo_free(&priv->write_fifo);
560 kfree(priv);
561
562 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563}
564
Alan Coxa509a7e2009-09-19 13:13:26 -0700565static int cypress_open(struct tty_struct *tty, struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566{
567 struct cypress_private *priv = usb_get_serial_port_data(port);
568 struct usb_serial *serial = port->serial;
569 unsigned long flags;
570 int result = 0;
571
Mike Isely78aef512006-08-29 22:07:11 -0500572 if (!priv->comm_is_ok)
573 return -EIO;
574
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 /* clear halts before open */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 usb_clear_halt(serial->dev, 0x81);
577 usb_clear_halt(serial->dev, 0x02);
578
579 spin_lock_irqsave(&priv->lock, flags);
580 /* reset read/write statistics */
581 priv->bytes_in = 0;
582 priv->bytes_out = 0;
583 priv->cmd_count = 0;
584 priv->rx_flags = 0;
585 spin_unlock_irqrestore(&priv->lock, flags);
586
Alan Cox335f8512009-06-11 12:26:29 +0100587 /* Set termios */
Alan Coxfe1ae7f2009-09-19 13:13:33 -0700588 cypress_send(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
Alan Cox95da3102008-07-22 11:09:07 +0100590 if (tty)
591 cypress_set_termios(tty, port, &priv->tmp_termios);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
593 /* setup the port and start reading from the device */
Alan Cox813a2242008-07-22 11:10:36 +0100594 if (!port->interrupt_in_urb) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700595 dev_err(&port->dev, "%s - interrupt_in_urb is empty!\n",
596 __func__);
Alan Cox813a2242008-07-22 11:10:36 +0100597 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 }
599
600 usb_fill_int_urb(port->interrupt_in_urb, serial->dev,
601 usb_rcvintpipe(serial->dev, port->interrupt_in_endpointAddress),
Alan Cox813a2242008-07-22 11:10:36 +0100602 port->interrupt_in_urb->transfer_buffer,
603 port->interrupt_in_urb->transfer_buffer_length,
Mike Isely0257fa92006-08-29 22:06:59 -0500604 cypress_read_int_callback, port, priv->read_urb_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 result = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL);
606
Alan Cox813a2242008-07-22 11:10:36 +0100607 if (result) {
608 dev_err(&port->dev,
609 "%s - failed submitting read urb, error %d\n",
610 __func__, result);
Mike Isely78aef512006-08-29 22:07:11 -0500611 cypress_set_dead(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 }
Alan Cox335f8512009-06-11 12:26:29 +0100613 port->port.drain_delay = 256;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 return result;
615} /* cypress_open */
616
Alan Cox335f8512009-06-11 12:26:29 +0100617static void cypress_dtr_rts(struct usb_serial_port *port, int on)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618{
619 struct cypress_private *priv = usb_get_serial_port_data(port);
Alan Cox335f8512009-06-11 12:26:29 +0100620 /* drop dtr and rts */
Alan Cox335f8512009-06-11 12:26:29 +0100621 spin_lock_irq(&priv->lock);
622 if (on == 0)
623 priv->line_control = 0;
624 else
625 priv->line_control = CONTROL_DTR | CONTROL_RTS;
626 priv->cmd_ctrl = 1;
627 spin_unlock_irq(&priv->lock);
628 cypress_write(NULL, port, NULL, 0);
629}
630
631static void cypress_close(struct usb_serial_port *port)
632{
633 struct cypress_private *priv = usb_get_serial_port_data(port);
Johan Hovold117fb8d2010-05-16 20:33:50 +0200634 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
Oliver Neukum9e3b1d82008-01-22 15:54:54 +0100636 /* writing is potentially harmful, lock must be taken */
637 mutex_lock(&port->serial->disc_mutex);
638 if (port->serial->disconnected) {
639 mutex_unlock(&port->serial->disc_mutex);
640 return;
641 }
Johan Hovold117fb8d2010-05-16 20:33:50 +0200642 spin_lock_irqsave(&priv->lock, flags);
643 kfifo_reset_out(&priv->write_fifo);
644 spin_unlock_irqrestore(&priv->lock, flags);
645
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700646 dev_dbg(&port->dev, "%s - stopping urbs\n", __func__);
Alan Cox813a2242008-07-22 11:10:36 +0100647 usb_kill_urb(port->interrupt_in_urb);
648 usb_kill_urb(port->interrupt_out_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 if (stats)
Alan Cox813a2242008-07-22 11:10:36 +0100651 dev_info(&port->dev, "Statistics: %d Bytes In | %d Bytes Out | %d Commands Issued\n",
652 priv->bytes_in, priv->bytes_out, priv->cmd_count);
Oliver Neukum9e3b1d82008-01-22 15:54:54 +0100653 mutex_unlock(&port->serial->disc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654} /* cypress_close */
655
656
Alan Cox95da3102008-07-22 11:09:07 +0100657static int cypress_write(struct tty_struct *tty, struct usb_serial_port *port,
658 const unsigned char *buf, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659{
660 struct cypress_private *priv = usb_get_serial_port_data(port);
Alan Cox813a2242008-07-22 11:10:36 +0100661
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700662 dev_dbg(&port->dev, "%s - port %d, %d bytes\n", __func__, port->number, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
664 /* line control commands, which need to be executed immediately,
665 are not put into the buffer for obvious reasons.
666 */
667 if (priv->cmd_ctrl) {
668 count = 0;
669 goto finish;
670 }
Alan Cox813a2242008-07-22 11:10:36 +0100671
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 if (!count)
673 return count;
Alan Cox813a2242008-07-22 11:10:36 +0100674
Johan Hovold117fb8d2010-05-16 20:33:50 +0200675 count = kfifo_in_locked(&priv->write_fifo, buf, count, &priv->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
677finish:
678 cypress_send(port);
679
680 return count;
681} /* cypress_write */
682
683
684static void cypress_send(struct usb_serial_port *port)
685{
686 int count = 0, result, offset, actual_size;
687 struct cypress_private *priv = usb_get_serial_port_data(port);
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700688 struct device *dev = &port->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 unsigned long flags;
Alan Cox813a2242008-07-22 11:10:36 +0100690
Mike Isely78aef512006-08-29 22:07:11 -0500691 if (!priv->comm_is_ok)
692 return;
693
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700694 dev_dbg(dev, "%s - interrupt out size is %d\n", __func__,
695 port->interrupt_out_size);
Alan Cox813a2242008-07-22 11:10:36 +0100696
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 spin_lock_irqsave(&priv->lock, flags);
698 if (priv->write_urb_in_use) {
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700699 dev_dbg(dev, "%s - can't write, urb in use\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 spin_unlock_irqrestore(&priv->lock, flags);
701 return;
702 }
703 spin_unlock_irqrestore(&priv->lock, flags);
704
705 /* clear buffer */
Alan Cox813a2242008-07-22 11:10:36 +0100706 memset(port->interrupt_out_urb->transfer_buffer, 0,
707 port->interrupt_out_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708
709 spin_lock_irqsave(&priv->lock, flags);
Mike Isely3416eaa2008-02-10 20:23:19 -0600710 switch (priv->pkt_fmt) {
711 default:
712 case packet_format_1:
713 /* this is for the CY7C64013... */
714 offset = 2;
715 port->interrupt_out_buffer[0] = priv->line_control;
716 break;
717 case packet_format_2:
718 /* this is for the CY7C63743... */
719 offset = 1;
720 port->interrupt_out_buffer[0] = priv->line_control;
721 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 }
723
724 if (priv->line_control & CONTROL_RESET)
725 priv->line_control &= ~CONTROL_RESET;
726
727 if (priv->cmd_ctrl) {
728 priv->cmd_count++;
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700729 dev_dbg(dev, "%s - line control command being issued\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 spin_unlock_irqrestore(&priv->lock, flags);
731 goto send;
732 } else
733 spin_unlock_irqrestore(&priv->lock, flags);
734
Johan Hovold117fb8d2010-05-16 20:33:50 +0200735 count = kfifo_out_locked(&priv->write_fifo,
736 &port->interrupt_out_buffer[offset],
737 port->interrupt_out_size - offset,
738 &priv->lock);
Alan Cox813a2242008-07-22 11:10:36 +0100739 if (count == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
Mike Isely3416eaa2008-02-10 20:23:19 -0600742 switch (priv->pkt_fmt) {
743 default:
744 case packet_format_1:
745 port->interrupt_out_buffer[1] = count;
746 break;
747 case packet_format_2:
748 port->interrupt_out_buffer[0] |= count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 }
750
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700751 dev_dbg(dev, "%s - count is %d\n", __func__, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752
753send:
754 spin_lock_irqsave(&priv->lock, flags);
755 priv->write_urb_in_use = 1;
756 spin_unlock_irqrestore(&priv->lock, flags);
757
758 if (priv->cmd_ctrl)
759 actual_size = 1;
760 else
Mike Isely3416eaa2008-02-10 20:23:19 -0600761 actual_size = count +
762 (priv->pkt_fmt == packet_format_1 ? 2 : 1);
763
Greg Kroah-Hartman59d33f22012-09-18 09:58:57 +0100764 usb_serial_debug_data(dev, __func__, port->interrupt_out_size,
765 port->interrupt_out_urb->transfer_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
Mike Isely9aa8dae2006-08-29 22:07:04 -0500767 usb_fill_int_urb(port->interrupt_out_urb, port->serial->dev,
768 usb_sndintpipe(port->serial->dev, port->interrupt_out_endpointAddress),
769 port->interrupt_out_buffer, port->interrupt_out_size,
770 cypress_write_int_callback, port, priv->write_urb_interval);
Alan Cox813a2242008-07-22 11:10:36 +0100771 result = usb_submit_urb(port->interrupt_out_urb, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 if (result) {
Johan Hovold22a416c2012-02-10 13:20:51 +0100773 dev_err_console(port,
Alan Cox813a2242008-07-22 11:10:36 +0100774 "%s - failed submitting write urb, error %d\n",
775 __func__, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 priv->write_urb_in_use = 0;
Mike Isely78aef512006-08-29 22:07:11 -0500777 cypress_set_dead(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 }
779
780 spin_lock_irqsave(&priv->lock, flags);
Alan Cox813a2242008-07-22 11:10:36 +0100781 if (priv->cmd_ctrl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 priv->cmd_ctrl = 0;
Alan Cox813a2242008-07-22 11:10:36 +0100783
784 /* do not count the line control and size bytes */
785 priv->bytes_out += count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 spin_unlock_irqrestore(&priv->lock, flags);
787
Pete Zaitcevcf2c7482006-05-22 21:58:49 -0700788 usb_serial_port_softint(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789} /* cypress_send */
790
791
792/* returns how much space is available in the soft buffer */
Alan Cox95da3102008-07-22 11:09:07 +0100793static int cypress_write_room(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794{
Alan Cox95da3102008-07-22 11:09:07 +0100795 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 struct cypress_private *priv = usb_get_serial_port_data(port);
797 int room = 0;
798 unsigned long flags;
799
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 spin_lock_irqsave(&priv->lock, flags);
Johan Hovold117fb8d2010-05-16 20:33:50 +0200801 room = kfifo_avail(&priv->write_fifo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 spin_unlock_irqrestore(&priv->lock, flags);
803
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700804 dev_dbg(&port->dev, "%s - returns %d\n", __func__, room);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 return room;
806}
807
808
Alan Cox60b33c12011-02-14 16:26:14 +0000809static int cypress_tiocmget(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810{
Alan Cox95da3102008-07-22 11:09:07 +0100811 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 struct cypress_private *priv = usb_get_serial_port_data(port);
813 __u8 status, control;
814 unsigned int result = 0;
815 unsigned long flags;
Alan Cox813a2242008-07-22 11:10:36 +0100816
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 spin_lock_irqsave(&priv->lock, flags);
818 control = priv->line_control;
819 status = priv->current_status;
820 spin_unlock_irqrestore(&priv->lock, flags);
821
822 result = ((control & CONTROL_DTR) ? TIOCM_DTR : 0)
823 | ((control & CONTROL_RTS) ? TIOCM_RTS : 0)
824 | ((status & UART_CTS) ? TIOCM_CTS : 0)
825 | ((status & UART_DSR) ? TIOCM_DSR : 0)
826 | ((status & UART_RI) ? TIOCM_RI : 0)
827 | ((status & UART_CD) ? TIOCM_CD : 0);
828
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700829 dev_dbg(&port->dev, "%s - result = %x\n", __func__, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830
831 return result;
832}
833
834
Alan Cox20b9d172011-02-14 16:26:50 +0000835static int cypress_tiocmset(struct tty_struct *tty,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 unsigned int set, unsigned int clear)
837{
Alan Cox95da3102008-07-22 11:09:07 +0100838 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 struct cypress_private *priv = usb_get_serial_port_data(port);
840 unsigned long flags;
Alan Cox813a2242008-07-22 11:10:36 +0100841
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 spin_lock_irqsave(&priv->lock, flags);
843 if (set & TIOCM_RTS)
844 priv->line_control |= CONTROL_RTS;
845 if (set & TIOCM_DTR)
846 priv->line_control |= CONTROL_DTR;
847 if (clear & TIOCM_RTS)
848 priv->line_control &= ~CONTROL_RTS;
849 if (clear & TIOCM_DTR)
850 priv->line_control &= ~CONTROL_DTR;
Alan Cox8873aaa2008-03-10 21:59:28 +0000851 priv->cmd_ctrl = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 spin_unlock_irqrestore(&priv->lock, flags);
853
Alan Cox95da3102008-07-22 11:09:07 +0100854 return cypress_write(tty, port, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855}
856
857
Alan Cox00a0d0d2011-02-14 16:27:06 +0000858static int cypress_ioctl(struct tty_struct *tty,
Alan Cox95da3102008-07-22 11:09:07 +0100859 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860{
Alan Cox95da3102008-07-22 11:09:07 +0100861 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 struct cypress_private *priv = usb_get_serial_port_data(port);
863
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700864 dev_dbg(&port->dev, "%s - port %d, cmd 0x%.4x\n", __func__, port->number, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
866 switch (cmd) {
Alan Cox813a2242008-07-22 11:10:36 +0100867 /* This code comes from drivers/char/serial.c and ftdi_sio.c */
868 case TIOCMIWAIT:
Johan Hovold356050d2013-03-19 09:21:13 +0100869 for (;;) {
870 interruptible_sleep_on(&port->delta_msr_wait);
Alan Cox813a2242008-07-22 11:10:36 +0100871 /* see if a signal did it */
872 if (signal_pending(current))
873 return -ERESTARTSYS;
Johan Hovold356050d2013-03-19 09:21:13 +0100874
875 if (port->serial->disconnected)
876 return -EIO;
877
878 {
Alan Cox813a2242008-07-22 11:10:36 +0100879 char diff = priv->diff_status;
880 if (diff == 0)
881 return -EIO; /* no change => error */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882
Alan Cox813a2242008-07-22 11:10:36 +0100883 /* consume all events */
884 priv->diff_status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885
Alan Cox813a2242008-07-22 11:10:36 +0100886 /* return 0 if caller wanted to know about
887 these bits */
888 if (((arg & TIOCM_RNG) && (diff & UART_RI)) ||
889 ((arg & TIOCM_DSR) && (diff & UART_DSR)) ||
890 ((arg & TIOCM_CD) && (diff & UART_CD)) ||
891 ((arg & TIOCM_CTS) && (diff & UART_CTS)))
892 return 0;
893 /* otherwise caller can't care less about what
894 * happened, and so we continue to wait for
895 * more events.
896 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 }
Alan Cox813a2242008-07-22 11:10:36 +0100898 }
899 return 0;
900 default:
901 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 }
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700903 dev_dbg(&port->dev, "%s - arg not supported - it was 0x%04x - check include/asm/ioctls.h\n", __func__, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 return -ENOIOCTLCMD;
905} /* cypress_ioctl */
906
907
Alan Cox95da3102008-07-22 11:09:07 +0100908static void cypress_set_termios(struct tty_struct *tty,
909 struct usb_serial_port *port, struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910{
911 struct cypress_private *priv = usb_get_serial_port_data(port);
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700912 struct device *dev = &port->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 int data_bits, stop_bits, parity_type, parity_enable;
Alan Cox8873aaa2008-03-10 21:59:28 +0000914 unsigned cflag, iflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 unsigned long flags;
916 __u8 oldlines;
Lonnie Mendez3cb4a4f2005-05-03 17:02:20 -0500917 int linechange = 0;
Lonnie Mendezb9db07f2005-07-12 17:21:31 -0500918
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 spin_lock_irqsave(&priv->lock, flags);
Alan Coxfe1ae7f2009-09-19 13:13:33 -0700920 /* We can't clean this one up as we don't know the device type
921 early enough */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 if (!priv->termios_initialized) {
923 if (priv->chiptype == CT_EARTHMATE) {
Alan Coxadc8d742012-07-14 15:31:47 +0100924 tty->termios = tty_std_termios;
925 tty->termios.c_cflag = B4800 | CS8 | CREAD | HUPCL |
Lonnie Mendezb9db07f2005-07-12 17:21:31 -0500926 CLOCAL;
Alan Coxadc8d742012-07-14 15:31:47 +0100927 tty->termios.c_ispeed = 4800;
928 tty->termios.c_ospeed = 4800;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 } else if (priv->chiptype == CT_CYPHIDCOM) {
Alan Coxadc8d742012-07-14 15:31:47 +0100930 tty->termios = tty_std_termios;
931 tty->termios.c_cflag = B9600 | CS8 | CREAD | HUPCL |
Lonnie Mendezb9db07f2005-07-12 17:21:31 -0500932 CLOCAL;
Alan Coxadc8d742012-07-14 15:31:47 +0100933 tty->termios.c_ispeed = 9600;
934 tty->termios.c_ospeed = 9600;
Lonnie Mendeza5c44e22006-03-01 10:45:24 -0600935 } else if (priv->chiptype == CT_CA42V2) {
Alan Coxadc8d742012-07-14 15:31:47 +0100936 tty->termios = tty_std_termios;
937 tty->termios.c_cflag = B9600 | CS8 | CREAD | HUPCL |
Lonnie Mendeza5c44e22006-03-01 10:45:24 -0600938 CLOCAL;
Alan Coxadc8d742012-07-14 15:31:47 +0100939 tty->termios.c_ispeed = 9600;
940 tty->termios.c_ospeed = 9600;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 }
942 priv->termios_initialized = 1;
943 }
944 spin_unlock_irqrestore(&priv->lock, flags);
945
Alan Cox8873aaa2008-03-10 21:59:28 +0000946 /* Unsupported features need clearing */
Alan Coxadc8d742012-07-14 15:31:47 +0100947 tty->termios.c_cflag &= ~(CMSPAR|CRTSCTS);
Alan Cox8873aaa2008-03-10 21:59:28 +0000948
Alan Coxadc8d742012-07-14 15:31:47 +0100949 cflag = tty->termios.c_cflag;
950 iflag = tty->termios.c_iflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951
952 /* check if there are new settings */
953 if (old_termios) {
Alan Cox8873aaa2008-03-10 21:59:28 +0000954 spin_lock_irqsave(&priv->lock, flags);
Alan Coxadc8d742012-07-14 15:31:47 +0100955 priv->tmp_termios = tty->termios;
Alan Cox8873aaa2008-03-10 21:59:28 +0000956 spin_unlock_irqrestore(&priv->lock, flags);
957 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958
959 /* set number of data bits, parity, stop bits */
960 /* when parity is disabled the parity type bit is ignored */
961
Lonnie Mendezb9db07f2005-07-12 17:21:31 -0500962 /* 1 means 2 stop bits, 0 means 1 stop bit */
963 stop_bits = cflag & CSTOPB ? 1 : 0;
964
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 if (cflag & PARENB) {
966 parity_enable = 1;
Lonnie Mendezb9db07f2005-07-12 17:21:31 -0500967 /* 1 means odd parity, 0 means even parity */
968 parity_type = cflag & PARODD ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 } else
970 parity_enable = parity_type = 0;
971
Alan Cox77336822008-07-22 11:10:53 +0100972 switch (cflag & CSIZE) {
973 case CS5:
974 data_bits = 0;
975 break;
976 case CS6:
977 data_bits = 1;
978 break;
979 case CS7:
980 data_bits = 2;
981 break;
982 case CS8:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 data_bits = 3;
Alan Cox77336822008-07-22 11:10:53 +0100984 break;
985 default:
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700986 dev_err(dev, "%s - CSIZE was set, but not CS5-CS8\n", __func__);
Alan Cox77336822008-07-22 11:10:53 +0100987 data_bits = 3;
988 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 spin_lock_irqsave(&priv->lock, flags);
990 oldlines = priv->line_control;
991 if ((cflag & CBAUD) == B0) {
992 /* drop dtr and rts */
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700993 dev_dbg(dev, "%s - dropping the lines, baud rate 0bps\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 priv->line_control &= ~(CONTROL_DTR | CONTROL_RTS);
Alan Cox8873aaa2008-03-10 21:59:28 +0000995 } else
Lonnie Mendez3cb4a4f2005-05-03 17:02:20 -0500996 priv->line_control = (CONTROL_DTR | CONTROL_RTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 spin_unlock_irqrestore(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700999 dev_dbg(dev, "%s - sending %d stop_bits, %d parity_enable, %d parity_type, %d data_bits (+5)\n",
1000 __func__, stop_bits, parity_enable, parity_type, data_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001
Alan Cox813a2242008-07-22 11:10:36 +01001002 cypress_serial_control(tty, port, tty_get_baud_rate(tty),
1003 data_bits, stop_bits,
1004 parity_enable, parity_type,
1005 0, CYPRESS_SET_CONFIG);
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001006
1007 /* we perform a CYPRESS_GET_CONFIG so that the current settings are
1008 * filled into the private structure this should confirm that all is
1009 * working if it returns what we just set */
Alan Cox95da3102008-07-22 11:09:07 +01001010 cypress_serial_control(tty, port, 0, 0, 0, 0, 0, 0, CYPRESS_GET_CONFIG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001012 /* Here we can define custom tty settings for devices; the main tty
1013 * termios flag base comes from empeg.c */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001015 spin_lock_irqsave(&priv->lock, flags);
Alan Cox813a2242008-07-22 11:10:36 +01001016 if (priv->chiptype == CT_EARTHMATE && priv->baud_rate == 4800) {
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -07001017 dev_dbg(dev, "Using custom termios settings for a baud rate of 4800bps.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 /* define custom termios settings for NMEA protocol */
1019
Alan Coxadc8d742012-07-14 15:31:47 +01001020 tty->termios.c_iflag /* input modes - */
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001021 &= ~(IGNBRK /* disable ignore break */
1022 | BRKINT /* disable break causes interrupt */
1023 | PARMRK /* disable mark parity errors */
1024 | ISTRIP /* disable clear high bit of input char */
1025 | INLCR /* disable translate NL to CR */
1026 | IGNCR /* disable ignore CR */
1027 | ICRNL /* disable translate CR to NL */
1028 | IXON); /* disable enable XON/XOFF flow control */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029
Alan Coxadc8d742012-07-14 15:31:47 +01001030 tty->termios.c_oflag /* output modes */
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001031 &= ~OPOST; /* disable postprocess output char */
1032
Alan Coxadc8d742012-07-14 15:31:47 +01001033 tty->termios.c_lflag /* line discipline modes */
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001034 &= ~(ECHO /* disable echo input characters */
1035 | ECHONL /* disable echo new line */
1036 | ICANON /* disable erase, kill, werase, and rprnt
1037 special characters */
1038 | ISIG /* disable interrupt, quit, and suspend
1039 special characters */
1040 | IEXTEN); /* disable non-POSIX special characters */
Lonnie Mendez3cb4a4f2005-05-03 17:02:20 -05001041 } /* CT_CYPHIDCOM: Application should handle this for device */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 linechange = (priv->line_control != oldlines);
1044 spin_unlock_irqrestore(&priv->lock, flags);
1045
1046 /* if necessary, set lines */
Lonnie Mendez3cb4a4f2005-05-03 17:02:20 -05001047 if (linechange) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 priv->cmd_ctrl = 1;
Alan Cox95da3102008-07-22 11:09:07 +01001049 cypress_write(tty, port, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051} /* cypress_set_termios */
1052
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001053
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054/* returns amount of data still left in soft buffer */
Alan Cox95da3102008-07-22 11:09:07 +01001055static int cypress_chars_in_buffer(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056{
Alan Cox95da3102008-07-22 11:09:07 +01001057 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 struct cypress_private *priv = usb_get_serial_port_data(port);
1059 int chars = 0;
1060 unsigned long flags;
1061
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 spin_lock_irqsave(&priv->lock, flags);
Johan Hovold117fb8d2010-05-16 20:33:50 +02001063 chars = kfifo_len(&priv->write_fifo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 spin_unlock_irqrestore(&priv->lock, flags);
1065
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -07001066 dev_dbg(&port->dev, "%s - returns %d\n", __func__, chars);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 return chars;
1068}
1069
1070
Alan Cox95da3102008-07-22 11:09:07 +01001071static void cypress_throttle(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072{
Alan Cox95da3102008-07-22 11:09:07 +01001073 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 struct cypress_private *priv = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075
Oliver Neukum63832512009-10-07 10:50:23 +02001076 spin_lock_irq(&priv->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 priv->rx_flags = THROTTLED;
Oliver Neukum63832512009-10-07 10:50:23 +02001078 spin_unlock_irq(&priv->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079}
1080
1081
Alan Cox95da3102008-07-22 11:09:07 +01001082static void cypress_unthrottle(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083{
Alan Cox95da3102008-07-22 11:09:07 +01001084 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 struct cypress_private *priv = usb_get_serial_port_data(port);
1086 int actually_throttled, result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087
Oliver Neukum63832512009-10-07 10:50:23 +02001088 spin_lock_irq(&priv->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 actually_throttled = priv->rx_flags & ACTUALLY_THROTTLED;
1090 priv->rx_flags = 0;
Oliver Neukum63832512009-10-07 10:50:23 +02001091 spin_unlock_irq(&priv->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092
Mike Isely78aef512006-08-29 22:07:11 -05001093 if (!priv->comm_is_ok)
1094 return;
1095
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 if (actually_throttled) {
Oliver Neukum63832512009-10-07 10:50:23 +02001097 result = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL);
Mike Isely78aef512006-08-29 22:07:11 -05001098 if (result) {
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001099 dev_err(&port->dev, "%s - failed submitting read urb, "
Harvey Harrison441b62c2008-03-03 16:08:34 -08001100 "error %d\n", __func__, result);
Mike Isely78aef512006-08-29 22:07:11 -05001101 cypress_set_dead(port);
1102 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 }
1104}
1105
1106
David Howells7d12e782006-10-05 14:55:46 +01001107static void cypress_read_int_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108{
Ming Leicdc97792008-02-24 18:41:47 +08001109 struct usb_serial_port *port = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 struct cypress_private *priv = usb_get_serial_port_data(port);
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -07001111 struct device *dev = &urb->dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 struct tty_struct *tty;
1113 unsigned char *data = urb->transfer_buffer;
1114 unsigned long flags;
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001115 char tty_flag = TTY_NORMAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 int havedata = 0;
1117 int bytes = 0;
1118 int result;
1119 int i = 0;
Greg Kroah-Hartman8d7bc552007-06-15 15:44:13 -07001120 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121
Greg Kroah-Hartman8d7bc552007-06-15 15:44:13 -07001122 switch (status) {
Mike Isely78aef512006-08-29 22:07:11 -05001123 case 0: /* success */
1124 break;
1125 case -ECONNRESET:
1126 case -ENOENT:
1127 case -ESHUTDOWN:
1128 /* precursor to disconnect so just go away */
1129 return;
1130 case -EPIPE:
Alan Stern4d2fae82009-07-09 12:59:57 -04001131 /* Can't call usb_clear_halt while in_interrupt */
1132 /* FALLS THROUGH */
Mike Isely78aef512006-08-29 22:07:11 -05001133 default:
1134 /* something ugly is going on... */
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -07001135 dev_err(dev, "%s - unexpected nonzero read status received: %d\n",
1136 __func__, status);
Mike Isely78aef512006-08-29 22:07:11 -05001137 cypress_set_dead(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 return;
1139 }
1140
1141 spin_lock_irqsave(&priv->lock, flags);
1142 if (priv->rx_flags & THROTTLED) {
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -07001143 dev_dbg(dev, "%s - now throttling\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 priv->rx_flags |= ACTUALLY_THROTTLED;
1145 spin_unlock_irqrestore(&priv->lock, flags);
1146 return;
1147 }
1148 spin_unlock_irqrestore(&priv->lock, flags);
1149
Alan Cox4a90f092008-10-13 10:39:46 +01001150 tty = tty_port_tty_get(&port->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 if (!tty) {
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -07001152 dev_dbg(dev, "%s - bad tty pointer - exiting\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 return;
1154 }
1155
1156 spin_lock_irqsave(&priv->lock, flags);
Mike Isely3416eaa2008-02-10 20:23:19 -06001157 result = urb->actual_length;
1158 switch (priv->pkt_fmt) {
1159 default:
1160 case packet_format_1:
1161 /* This is for the CY7C64013... */
1162 priv->current_status = data[0] & 0xF8;
1163 bytes = data[1] + 2;
1164 i = 2;
1165 if (bytes > 2)
1166 havedata = 1;
1167 break;
1168 case packet_format_2:
1169 /* This is for the CY7C63743... */
1170 priv->current_status = data[0] & 0xF8;
1171 bytes = (data[0] & 0x07) + 1;
1172 i = 1;
1173 if (bytes > 1)
1174 havedata = 1;
1175 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 }
1177 spin_unlock_irqrestore(&priv->lock, flags);
Mike Isely3416eaa2008-02-10 20:23:19 -06001178 if (result < bytes) {
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -07001179 dev_dbg(dev,
1180 "%s - wrong packet size - received %d bytes but packet said %d bytes\n",
1181 __func__, result, bytes);
Mike Isely3416eaa2008-02-10 20:23:19 -06001182 goto continue_read;
1183 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184
Greg Kroah-Hartman59d33f22012-09-18 09:58:57 +01001185 usb_serial_debug_data(&port->dev, __func__, urb->actual_length, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186
1187 spin_lock_irqsave(&priv->lock, flags);
1188 /* check to see if status has changed */
Mike Isely67683062008-02-10 20:23:28 -06001189 if (priv->current_status != priv->prev_status) {
1190 priv->diff_status |= priv->current_status ^
1191 priv->prev_status;
Johan Hovold356050d2013-03-19 09:21:13 +01001192 wake_up_interruptible(&port->delta_msr_wait);
Mike Isely67683062008-02-10 20:23:28 -06001193 priv->prev_status = priv->current_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 }
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001195 spin_unlock_irqrestore(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001197 /* hangup, as defined in acm.c... this might be a bad place for it
1198 * though */
Alan Coxadc8d742012-07-14 15:31:47 +01001199 if (tty && !(tty->termios.c_cflag & CLOCAL) &&
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001200 !(priv->current_status & UART_CD)) {
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -07001201 dev_dbg(dev, "%s - calling hangup\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 tty_hangup(tty);
1203 goto continue_read;
1204 }
1205
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001206 /* There is one error bit... I'm assuming it is a parity error
1207 * indicator as the generic firmware will set this bit to 1 if a
1208 * parity error occurs.
1209 * I can not find reference to any other error events. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 spin_lock_irqsave(&priv->lock, flags);
1211 if (priv->current_status & CYP_ERROR) {
1212 spin_unlock_irqrestore(&priv->lock, flags);
1213 tty_flag = TTY_PARITY;
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -07001214 dev_dbg(dev, "%s - Parity Error detected\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 } else
1216 spin_unlock_irqrestore(&priv->lock, flags);
1217
1218 /* process read if there is data other than line status */
Jiri Slaby2e124b42013-01-03 15:53:06 +01001219 if (bytes > i) {
Jiri Slaby2f693352013-01-03 15:53:02 +01001220 tty_insert_flip_string_fixed_flag(&port->port, data + i,
Johan Hovold70ced222010-05-07 19:46:56 +02001221 tty_flag, bytes - i);
Jiri Slaby2e124b42013-01-03 15:53:06 +01001222 tty_flip_buffer_push(&port->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 }
1224
1225 spin_lock_irqsave(&priv->lock, flags);
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001226 /* control and status byte(s) are also counted */
1227 priv->bytes_in += bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 spin_unlock_irqrestore(&priv->lock, flags);
1229
1230continue_read:
Alan Cox4a90f092008-10-13 10:39:46 +01001231 tty_kref_put(tty);
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001232
Alan Stern1f871582010-02-17 10:05:47 -05001233 /* Continue trying to always read */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234
Alan Stern1f871582010-02-17 10:05:47 -05001235 if (priv->comm_is_ok) {
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001236 usb_fill_int_urb(port->interrupt_in_urb, port->serial->dev,
1237 usb_rcvintpipe(port->serial->dev,
1238 port->interrupt_in_endpointAddress),
1239 port->interrupt_in_urb->transfer_buffer,
1240 port->interrupt_in_urb->transfer_buffer_length,
Alan Cox813a2242008-07-22 11:10:36 +01001241 cypress_read_int_callback, port,
1242 priv->read_urb_interval);
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001243 result = usb_submit_urb(port->interrupt_in_urb, GFP_ATOMIC);
Alan Stern1f871582010-02-17 10:05:47 -05001244 if (result && result != -EPERM) {
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -07001245 dev_err(dev, "%s - failed resubmitting read urb, error %d\n",
1246 __func__, result);
Mike Isely78aef512006-08-29 22:07:11 -05001247 cypress_set_dead(port);
1248 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250} /* cypress_read_int_callback */
1251
1252
David Howells7d12e782006-10-05 14:55:46 +01001253static void cypress_write_int_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254{
Ming Leicdc97792008-02-24 18:41:47 +08001255 struct usb_serial_port *port = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 struct cypress_private *priv = usb_get_serial_port_data(port);
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -07001257 struct device *dev = &urb->dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 int result;
Greg Kroah-Hartman8d7bc552007-06-15 15:44:13 -07001259 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260
Greg Kroah-Hartman8d7bc552007-06-15 15:44:13 -07001261 switch (status) {
Alan Cox813a2242008-07-22 11:10:36 +01001262 case 0:
1263 /* success */
1264 break;
1265 case -ECONNRESET:
1266 case -ENOENT:
1267 case -ESHUTDOWN:
1268 /* this urb is terminated, clean up */
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -07001269 dev_dbg(dev, "%s - urb shutting down with status: %d\n",
1270 __func__, status);
Alan Cox813a2242008-07-22 11:10:36 +01001271 priv->write_urb_in_use = 0;
1272 return;
1273 case -EPIPE: /* no break needed; clear halt and resubmit */
1274 if (!priv->comm_is_ok)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 break;
Alan Cox813a2242008-07-22 11:10:36 +01001276 usb_clear_halt(port->serial->dev, 0x02);
1277 /* error in the urb, so we have to resubmit it */
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -07001278 dev_dbg(dev, "%s - nonzero write bulk status received: %d\n",
Alan Cox813a2242008-07-22 11:10:36 +01001279 __func__, status);
1280 port->interrupt_out_urb->transfer_buffer_length = 1;
Alan Cox813a2242008-07-22 11:10:36 +01001281 result = usb_submit_urb(port->interrupt_out_urb, GFP_ATOMIC);
1282 if (!result)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 return;
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -07001284 dev_err(dev, "%s - failed resubmitting write urb, error %d\n",
1285 __func__, result);
Alan Cox813a2242008-07-22 11:10:36 +01001286 cypress_set_dead(port);
1287 break;
1288 default:
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -07001289 dev_err(dev, "%s - unexpected nonzero write status received: %d\n",
1290 __func__, status);
Alan Cox813a2242008-07-22 11:10:36 +01001291 cypress_set_dead(port);
1292 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 priv->write_urb_in_use = 0;
Alan Cox813a2242008-07-22 11:10:36 +01001295
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 /* send any buffered data */
1297 cypress_send(port);
1298}
1299
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -07001300module_usb_serial_driver(serial_drivers, id_table_combined);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301
Alan Cox813a2242008-07-22 11:10:36 +01001302MODULE_AUTHOR(DRIVER_AUTHOR);
1303MODULE_DESCRIPTION(DRIVER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304MODULE_LICENSE("GPL");
1305
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306module_param(stats, bool, S_IRUGO | S_IWUSR);
1307MODULE_PARM_DESC(stats, "Enable statistics or not");
Lonnie Mendez3cb4a4f2005-05-03 17:02:20 -05001308module_param(interval, int, S_IRUGO | S_IWUSR);
1309MODULE_PARM_DESC(interval, "Overrides interrupt interval");
Mike Frysingerc3126592009-12-18 16:33:03 -05001310module_param(unstable_bauds, bool, S_IRUGO | S_IWUSR);
1311MODULE_PARM_DESC(unstable_bauds, "Allow unstable baud rates");