blob: d341555d37d8bbe85f719d782049806522d2a066 [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 Cox813a2242008-07-22 11:10:36 +0100132static void cypress_set_termios(struct tty_struct *tty,
133 struct usb_serial_port *port, struct ktermios *old);
Alan Cox60b33c12011-02-14 16:26:14 +0000134static int cypress_tiocmget(struct tty_struct *tty);
Alan Cox20b9d172011-02-14 16:26:50 +0000135static int cypress_tiocmset(struct tty_struct *tty,
Alan Cox813a2242008-07-22 11:10:36 +0100136 unsigned int set, unsigned int clear);
Johan Hovold493516e2013-03-21 12:37:02 +0100137static int cypress_tiocmiwait(struct tty_struct *tty, unsigned long arg);
Alan Cox813a2242008-07-22 11:10:36 +0100138static int cypress_chars_in_buffer(struct tty_struct *tty);
139static void cypress_throttle(struct tty_struct *tty);
140static void cypress_unthrottle(struct tty_struct *tty);
141static void cypress_set_dead(struct usb_serial_port *port);
142static void cypress_read_int_callback(struct urb *urb);
143static void cypress_write_int_callback(struct urb *urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -0700145static struct usb_serial_driver cypress_earthmate_device = {
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700146 .driver = {
147 .owner = THIS_MODULE,
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -0700148 .name = "earthmate",
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700149 },
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -0700150 .description = "DeLorme Earthmate USB",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 .id_table = id_table_earthmate,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 .num_ports = 1,
Johan Hovold5c1a0f42012-10-17 13:34:55 +0200153 .port_probe = cypress_earthmate_port_probe,
154 .port_remove = cypress_port_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 .open = cypress_open,
156 .close = cypress_close,
Alan Cox335f8512009-06-11 12:26:29 +0100157 .dtr_rts = cypress_dtr_rts,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 .write = cypress_write,
159 .write_room = cypress_write_room,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 .set_termios = cypress_set_termios,
161 .tiocmget = cypress_tiocmget,
162 .tiocmset = cypress_tiocmset,
Johan Hovold493516e2013-03-21 12:37:02 +0100163 .tiocmiwait = cypress_tiocmiwait,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 .chars_in_buffer = cypress_chars_in_buffer,
165 .throttle = cypress_throttle,
166 .unthrottle = cypress_unthrottle,
167 .read_int_callback = cypress_read_int_callback,
168 .write_int_callback = cypress_write_int_callback,
169};
170
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -0700171static struct usb_serial_driver cypress_hidcom_device = {
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700172 .driver = {
173 .owner = THIS_MODULE,
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -0700174 .name = "cyphidcom",
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700175 },
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -0700176 .description = "HID->COM RS232 Adapter",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 .id_table = id_table_cyphidcomrs232,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 .num_ports = 1,
Johan Hovold5c1a0f42012-10-17 13:34:55 +0200179 .port_probe = cypress_hidcom_port_probe,
180 .port_remove = cypress_port_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 .open = cypress_open,
182 .close = cypress_close,
Alan Cox335f8512009-06-11 12:26:29 +0100183 .dtr_rts = cypress_dtr_rts,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 .write = cypress_write,
185 .write_room = cypress_write_room,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 .set_termios = cypress_set_termios,
187 .tiocmget = cypress_tiocmget,
188 .tiocmset = cypress_tiocmset,
Johan Hovold493516e2013-03-21 12:37:02 +0100189 .tiocmiwait = cypress_tiocmiwait,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 .chars_in_buffer = cypress_chars_in_buffer,
191 .throttle = cypress_throttle,
192 .unthrottle = cypress_unthrottle,
193 .read_int_callback = cypress_read_int_callback,
194 .write_int_callback = cypress_write_int_callback,
195};
196
Lonnie Mendeza5c44e22006-03-01 10:45:24 -0600197static struct usb_serial_driver cypress_ca42v2_device = {
198 .driver = {
199 .owner = THIS_MODULE,
Alan Cox813a2242008-07-22 11:10:36 +0100200 .name = "nokiaca42v2",
Lonnie Mendeza5c44e22006-03-01 10:45:24 -0600201 },
202 .description = "Nokia CA-42 V2 Adapter",
203 .id_table = id_table_nokiaca42v2,
Lonnie Mendeza5c44e22006-03-01 10:45:24 -0600204 .num_ports = 1,
Johan Hovold5c1a0f42012-10-17 13:34:55 +0200205 .port_probe = cypress_ca42v2_port_probe,
206 .port_remove = cypress_port_remove,
Lonnie Mendeza5c44e22006-03-01 10:45:24 -0600207 .open = cypress_open,
208 .close = cypress_close,
Alan Cox335f8512009-06-11 12:26:29 +0100209 .dtr_rts = cypress_dtr_rts,
Lonnie Mendeza5c44e22006-03-01 10:45:24 -0600210 .write = cypress_write,
211 .write_room = cypress_write_room,
Lonnie Mendeza5c44e22006-03-01 10:45:24 -0600212 .set_termios = cypress_set_termios,
213 .tiocmget = cypress_tiocmget,
214 .tiocmset = cypress_tiocmset,
Johan Hovold493516e2013-03-21 12:37:02 +0100215 .tiocmiwait = cypress_tiocmiwait,
Lonnie Mendeza5c44e22006-03-01 10:45:24 -0600216 .chars_in_buffer = cypress_chars_in_buffer,
217 .throttle = cypress_throttle,
218 .unthrottle = cypress_unthrottle,
219 .read_int_callback = cypress_read_int_callback,
220 .write_int_callback = cypress_write_int_callback,
221};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Alan Stern08a4f6b2012-02-23 14:56:17 -0500223static struct usb_serial_driver * const serial_drivers[] = {
224 &cypress_earthmate_device, &cypress_hidcom_device,
225 &cypress_ca42v2_device, NULL
226};
227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228/*****************************************************************************
229 * Cypress serial helper functions
230 *****************************************************************************/
231
232
Alan Cox8873aaa2008-03-10 21:59:28 +0000233static int analyze_baud_rate(struct usb_serial_port *port, speed_t new_rate)
Mike Isely92983c22008-02-10 20:23:32 -0600234{
Mike Isely92983c22008-02-10 20:23:32 -0600235 struct cypress_private *priv;
236 priv = usb_get_serial_port_data(port);
237
Mike Frysingerc3126592009-12-18 16:33:03 -0500238 if (unstable_bauds)
239 return new_rate;
240
Mike Isely92983c22008-02-10 20:23:32 -0600241 /*
242 * The general purpose firmware for the Cypress M8 allows for
243 * a maximum speed of 57600bps (I have no idea whether DeLorme
244 * chose to use the general purpose firmware or not), if you
245 * need to modify this speed setting for your own project
246 * please add your own chiptype and modify the code likewise.
247 * The Cypress HID->COM device will work successfully up to
248 * 115200bps (but the actual throughput is around 3kBps).
249 */
Mike Isely92983c22008-02-10 20:23:32 -0600250 if (port->serial->dev->speed == USB_SPEED_LOW) {
251 /*
252 * Mike Isely <isely@pobox.com> 2-Feb-2008: The
253 * Cypress app note that describes this mechanism
254 * states the the low-speed part can't handle more
255 * than 800 bytes/sec, in which case 4800 baud is the
256 * safest speed for a part like that.
257 */
258 if (new_rate > 4800) {
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700259 dev_dbg(&port->dev,
260 "%s - failed setting baud rate, device incapable speed %d\n",
261 __func__, new_rate);
Mike Isely92983c22008-02-10 20:23:32 -0600262 return -1;
263 }
264 }
265 switch (priv->chiptype) {
266 case CT_EARTHMATE:
267 if (new_rate <= 600) {
268 /* 300 and 600 baud rates are supported under
269 * the generic firmware, but are not used with
270 * NMEA and SiRF protocols */
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700271 dev_dbg(&port->dev,
272 "%s - failed setting baud rate, unsupported speed of %d on Earthmate GPS",
273 __func__, new_rate);
Mike Isely92983c22008-02-10 20:23:32 -0600274 return -1;
275 }
276 break;
277 default:
278 break;
279 }
280 return new_rate;
281}
282
283
Steven Cole093cf722005-05-03 19:07:24 -0600284/* This function can either set or retrieve the current serial line settings */
Alan Cox813a2242008-07-22 11:10:36 +0100285static int cypress_serial_control(struct tty_struct *tty,
Alan Cox95da3102008-07-22 11:09:07 +0100286 struct usb_serial_port *port, speed_t baud_rate, int data_bits,
287 int stop_bits, int parity_enable, int parity_type, int reset,
288 int cypress_request_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289{
Lonnie Mendez3cb4a4f2005-05-03 17:02:20 -0500290 int new_baudrate = 0, retval = 0, tries = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 struct cypress_private *priv;
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700292 struct device *dev = &port->dev;
Johan Hovold09546442009-12-28 23:01:48 +0100293 u8 *feature_buffer;
294 const unsigned int feature_len = 5;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 unsigned long flags;
296
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 priv = usb_get_serial_port_data(port);
298
Mike Isely78aef512006-08-29 22:07:11 -0500299 if (!priv->comm_is_ok)
300 return -ENODEV;
301
Johan Hovold09546442009-12-28 23:01:48 +0100302 feature_buffer = kcalloc(feature_len, sizeof(u8), GFP_KERNEL);
303 if (!feature_buffer)
304 return -ENOMEM;
305
Alan Cox813a2242008-07-22 11:10:36 +0100306 switch (cypress_request_type) {
307 case CYPRESS_SET_CONFIG:
Alan Cox813a2242008-07-22 11:10:36 +0100308 /* 0 means 'Hang up' so doesn't change the true bit rate */
Mike Frysinger2805eb12009-12-18 16:33:02 -0500309 new_baudrate = priv->baud_rate;
310 if (baud_rate && baud_rate != priv->baud_rate) {
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700311 dev_dbg(dev, "%s - baud rate is changing\n", __func__);
Alan Cox813a2242008-07-22 11:10:36 +0100312 retval = analyze_baud_rate(port, baud_rate);
Mike Frysinger2805eb12009-12-18 16:33:02 -0500313 if (retval >= 0) {
Alan Cox813a2242008-07-22 11:10:36 +0100314 new_baudrate = retval;
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700315 dev_dbg(dev, "%s - New baud rate set to %d\n",
316 __func__, new_baudrate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 }
Alan Cox813a2242008-07-22 11:10:36 +0100318 }
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700319 dev_dbg(dev, "%s - baud rate is being sent as %d\n", __func__,
320 new_baudrate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
Alan Cox813a2242008-07-22 11:10:36 +0100322 /* fill the feature_buffer with new configuration */
Johan Hovold0f2c2d72009-12-31 16:48:01 +0100323 put_unaligned_le32(new_baudrate, feature_buffer);
Alan Cox813a2242008-07-22 11:10:36 +0100324 feature_buffer[4] |= data_bits; /* assign data bits in 2 bit space ( max 3 ) */
325 /* 1 bit gap */
326 feature_buffer[4] |= (stop_bits << 3); /* assign stop bits in 1 bit space */
327 feature_buffer[4] |= (parity_enable << 4); /* assign parity flag in 1 bit space */
328 feature_buffer[4] |= (parity_type << 5); /* assign parity type in 1 bit space */
329 /* 1 bit gap */
330 feature_buffer[4] |= (reset << 7); /* assign reset at end of byte, 1 bit space */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700332 dev_dbg(dev, "%s - device is being sent this feature report:\n", __func__);
333 dev_dbg(dev, "%s - %02X - %02X - %02X - %02X - %02X\n", __func__,
Alan Cox813a2242008-07-22 11:10:36 +0100334 feature_buffer[0], feature_buffer[1],
335 feature_buffer[2], feature_buffer[3],
336 feature_buffer[4]);
Lonnie Mendez3cb4a4f2005-05-03 17:02:20 -0500337
Alan Cox813a2242008-07-22 11:10:36 +0100338 do {
339 retval = usb_control_msg(port->serial->dev,
340 usb_sndctrlpipe(port->serial->dev, 0),
341 HID_REQ_SET_REPORT,
342 USB_DIR_OUT | USB_RECIP_INTERFACE | USB_TYPE_CLASS,
343 0x0300, 0, feature_buffer,
Johan Hovold09546442009-12-28 23:01:48 +0100344 feature_len, 500);
Lonnie Mendez3cb4a4f2005-05-03 17:02:20 -0500345
Alan Cox813a2242008-07-22 11:10:36 +0100346 if (tries++ >= 3)
347 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
Johan Hovold09546442009-12-28 23:01:48 +0100349 } while (retval != feature_len &&
Alan Cox813a2242008-07-22 11:10:36 +0100350 retval != -ENODEV);
Mike Isely93075542008-02-10 20:23:14 -0600351
Johan Hovold09546442009-12-28 23:01:48 +0100352 if (retval != feature_len) {
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700353 dev_err(dev, "%s - failed sending serial line settings - %d\n",
354 __func__, retval);
Alan Cox813a2242008-07-22 11:10:36 +0100355 cypress_set_dead(port);
356 } else {
357 spin_lock_irqsave(&priv->lock, flags);
358 priv->baud_rate = new_baudrate;
359 priv->current_config = feature_buffer[4];
360 spin_unlock_irqrestore(&priv->lock, flags);
361 /* If we asked for a speed change encode it */
362 if (baud_rate)
363 tty_encode_baud_rate(tty,
364 new_baudrate, new_baudrate);
365 }
366 break;
367 case CYPRESS_GET_CONFIG:
368 if (priv->get_cfg_unsafe) {
369 /* Not implemented for this device,
370 and if we try to do it we're likely
371 to crash the hardware. */
Johan Hovold09546442009-12-28 23:01:48 +0100372 retval = -ENOTTY;
373 goto out;
Alan Cox813a2242008-07-22 11:10:36 +0100374 }
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700375 dev_dbg(dev, "%s - retreiving serial line settings\n", __func__);
Alan Cox813a2242008-07-22 11:10:36 +0100376 do {
377 retval = usb_control_msg(port->serial->dev,
378 usb_rcvctrlpipe(port->serial->dev, 0),
379 HID_REQ_GET_REPORT,
380 USB_DIR_IN | USB_RECIP_INTERFACE | USB_TYPE_CLASS,
381 0x0300, 0, feature_buffer,
Johan Hovold09546442009-12-28 23:01:48 +0100382 feature_len, 500);
Lonnie Mendez3cb4a4f2005-05-03 17:02:20 -0500383
Alan Cox813a2242008-07-22 11:10:36 +0100384 if (tries++ >= 3)
385 break;
Johan Hovold09546442009-12-28 23:01:48 +0100386 } while (retval != feature_len
Alan Cox813a2242008-07-22 11:10:36 +0100387 && retval != -ENODEV);
Lonnie Mendez3cb4a4f2005-05-03 17:02:20 -0500388
Johan Hovold09546442009-12-28 23:01:48 +0100389 if (retval != feature_len) {
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700390 dev_err(dev, "%s - failed to retrieve serial line settings - %d\n",
391 __func__, retval);
Alan Cox813a2242008-07-22 11:10:36 +0100392 cypress_set_dead(port);
Johan Hovold09546442009-12-28 23:01:48 +0100393 goto out;
Alan Cox813a2242008-07-22 11:10:36 +0100394 } else {
395 spin_lock_irqsave(&priv->lock, flags);
396 /* store the config in one byte, and later
397 use bit masks to check values */
398 priv->current_config = feature_buffer[4];
Johan Hovold0f2c2d72009-12-31 16:48:01 +0100399 priv->baud_rate = get_unaligned_le32(feature_buffer);
Alan Cox813a2242008-07-22 11:10:36 +0100400 spin_unlock_irqrestore(&priv->lock, flags);
401 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 }
Lonnie Mendez3cb4a4f2005-05-03 17:02:20 -0500403 spin_lock_irqsave(&priv->lock, flags);
404 ++priv->cmd_count;
405 spin_unlock_irqrestore(&priv->lock, flags);
Johan Hovold09546442009-12-28 23:01:48 +0100406out:
407 kfree(feature_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 return retval;
409} /* cypress_serial_control */
410
411
Mike Isely78aef512006-08-29 22:07:11 -0500412static void cypress_set_dead(struct usb_serial_port *port)
413{
414 struct cypress_private *priv = usb_get_serial_port_data(port);
415 unsigned long flags;
416
417 spin_lock_irqsave(&priv->lock, flags);
418 if (!priv->comm_is_ok) {
419 spin_unlock_irqrestore(&priv->lock, flags);
420 return;
421 }
422 priv->comm_is_ok = 0;
423 spin_unlock_irqrestore(&priv->lock, flags);
424
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700425 dev_err(&port->dev, "cypress_m8 suspending failing port %d - "
426 "interval might be too short\n", port->number);
Mike Isely78aef512006-08-29 22:07:11 -0500427}
428
429
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430/*****************************************************************************
431 * Cypress serial driver functions
432 *****************************************************************************/
433
434
Johan Hovold5c1a0f42012-10-17 13:34:55 +0200435static int cypress_generic_port_probe(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436{
Johan Hovold5c1a0f42012-10-17 13:34:55 +0200437 struct usb_serial *serial = port->serial;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 struct cypress_private *priv;
439
Alan Cox813a2242008-07-22 11:10:36 +0100440 priv = kzalloc(sizeof(struct cypress_private), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 if (!priv)
442 return -ENOMEM;
443
Mike Isely78aef512006-08-29 22:07:11 -0500444 priv->comm_is_ok = !0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 spin_lock_init(&priv->lock);
Johan Hovold117fb8d2010-05-16 20:33:50 +0200446 if (kfifo_alloc(&priv->write_fifo, CYPRESS_BUF_SIZE, GFP_KERNEL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 kfree(priv);
448 return -ENOMEM;
449 }
Alan Cox813a2242008-07-22 11:10:36 +0100450
451 usb_reset_configuration(serial->dev);
452
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 priv->cmd_ctrl = 0;
454 priv->line_control = 0;
455 priv->termios_initialized = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 priv->rx_flags = 0;
Mike Isely3416eaa2008-02-10 20:23:19 -0600457 /* Default packet format setting is determined by packet size.
458 Anything with a size larger then 9 must have a separate
459 count field since the 3 bit count field is otherwise too
460 small. Otherwise we can use the slightly more compact
461 format. This is in accordance with the cypress_m8 serial
462 converter app note. */
Alan Cox813a2242008-07-22 11:10:36 +0100463 if (port->interrupt_out_size > 9)
Mike Isely3416eaa2008-02-10 20:23:19 -0600464 priv->pkt_fmt = packet_format_1;
Alan Cox813a2242008-07-22 11:10:36 +0100465 else
Mike Isely3416eaa2008-02-10 20:23:19 -0600466 priv->pkt_fmt = packet_format_2;
Alan Cox813a2242008-07-22 11:10:36 +0100467
Mike Isely0257fa92006-08-29 22:06:59 -0500468 if (interval > 0) {
469 priv->write_urb_interval = interval;
470 priv->read_urb_interval = interval;
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700471 dev_dbg(&port->dev, "%s - read & write intervals forced to %d\n",
472 __func__, interval);
Mike Isely0257fa92006-08-29 22:06:59 -0500473 } else {
474 priv->write_urb_interval = port->interrupt_out_urb->interval;
475 priv->read_urb_interval = port->interrupt_in_urb->interval;
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700476 dev_dbg(&port->dev, "%s - intervals: read=%d write=%d\n",
477 __func__, priv->read_urb_interval,
478 priv->write_urb_interval);
Mike Isely0257fa92006-08-29 22:06:59 -0500479 }
480 usb_set_serial_port_data(port, priv);
Alan Cox813a2242008-07-22 11:10:36 +0100481
Lonnie Mendezb9db07f2005-07-12 17:21:31 -0500482 return 0;
483}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
485
Johan Hovold5c1a0f42012-10-17 13:34:55 +0200486static int cypress_earthmate_port_probe(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487{
Johan Hovold5c1a0f42012-10-17 13:34:55 +0200488 struct usb_serial *serial = port->serial;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 struct cypress_private *priv;
Johan Hovold5c1a0f42012-10-17 13:34:55 +0200490 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
Johan Hovold5c1a0f42012-10-17 13:34:55 +0200492 ret = cypress_generic_port_probe(port);
493 if (ret) {
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700494 dev_dbg(&port->dev, "%s - Failed setting up port\n", __func__);
Johan Hovold5c1a0f42012-10-17 13:34:55 +0200495 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 }
497
Mike Isely3d6aa322008-02-10 20:23:24 -0600498 priv = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 priv->chiptype = CT_EARTHMATE;
Mike Isely3416eaa2008-02-10 20:23:19 -0600500 /* All Earthmate devices use the separated-count packet
501 format! Idiotic. */
502 priv->pkt_fmt = packet_format_1;
Alan Cox813a2242008-07-22 11:10:36 +0100503 if (serial->dev->descriptor.idProduct !=
504 cpu_to_le16(PRODUCT_ID_EARTHMATEUSB)) {
Mike Isely3d6aa322008-02-10 20:23:24 -0600505 /* The old original USB Earthmate seemed able to
506 handle GET_CONFIG requests; everything they've
507 produced since that time crashes if this command is
508 attempted :-( */
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700509 dev_dbg(&port->dev,
510 "%s - Marking this device as unsafe for GET_CONFIG commands\n",
511 __func__);
Mike Isely3d6aa322008-02-10 20:23:24 -0600512 priv->get_cfg_unsafe = !0;
513 }
Lonnie Mendezb9db07f2005-07-12 17:21:31 -0500514
515 return 0;
Johan Hovold5c1a0f42012-10-17 13:34:55 +0200516}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
Johan Hovold5c1a0f42012-10-17 13:34:55 +0200518static int cypress_hidcom_port_probe(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519{
520 struct cypress_private *priv;
Johan Hovold5c1a0f42012-10-17 13:34:55 +0200521 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
Johan Hovold5c1a0f42012-10-17 13:34:55 +0200523 ret = cypress_generic_port_probe(port);
524 if (ret) {
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700525 dev_dbg(&port->dev, "%s - Failed setting up port\n", __func__);
Johan Hovold5c1a0f42012-10-17 13:34:55 +0200526 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 }
528
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700529 priv = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 priv->chiptype = CT_CYPHIDCOM;
Alan Cox813a2242008-07-22 11:10:36 +0100531
Lonnie Mendezb9db07f2005-07-12 17:21:31 -0500532 return 0;
Johan Hovold5c1a0f42012-10-17 13:34:55 +0200533}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
Johan Hovold5c1a0f42012-10-17 13:34:55 +0200535static int cypress_ca42v2_port_probe(struct usb_serial_port *port)
Lonnie Mendeza5c44e22006-03-01 10:45:24 -0600536{
537 struct cypress_private *priv;
Johan Hovold5c1a0f42012-10-17 13:34:55 +0200538 int ret;
Lonnie Mendeza5c44e22006-03-01 10:45:24 -0600539
Johan Hovold5c1a0f42012-10-17 13:34:55 +0200540 ret = cypress_generic_port_probe(port);
541 if (ret) {
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700542 dev_dbg(&port->dev, "%s - Failed setting up port\n", __func__);
Johan Hovold5c1a0f42012-10-17 13:34:55 +0200543 return ret;
Lonnie Mendeza5c44e22006-03-01 10:45:24 -0600544 }
545
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700546 priv = usb_get_serial_port_data(port);
Lonnie Mendeza5c44e22006-03-01 10:45:24 -0600547 priv->chiptype = CT_CA42V2;
548
549 return 0;
Johan Hovold5c1a0f42012-10-17 13:34:55 +0200550}
Lonnie Mendeza5c44e22006-03-01 10:45:24 -0600551
Johan Hovold5c1a0f42012-10-17 13:34:55 +0200552static int cypress_port_remove(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553{
554 struct cypress_private *priv;
555
Johan Hovold5c1a0f42012-10-17 13:34:55 +0200556 priv = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
Johan Hovold5c1a0f42012-10-17 13:34:55 +0200558 kfifo_free(&priv->write_fifo);
559 kfree(priv);
560
561 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562}
563
Alan Coxa509a7e2009-09-19 13:13:26 -0700564static int cypress_open(struct tty_struct *tty, struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565{
566 struct cypress_private *priv = usb_get_serial_port_data(port);
567 struct usb_serial *serial = port->serial;
568 unsigned long flags;
569 int result = 0;
570
Mike Isely78aef512006-08-29 22:07:11 -0500571 if (!priv->comm_is_ok)
572 return -EIO;
573
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 /* clear halts before open */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 usb_clear_halt(serial->dev, 0x81);
576 usb_clear_halt(serial->dev, 0x02);
577
578 spin_lock_irqsave(&priv->lock, flags);
579 /* reset read/write statistics */
580 priv->bytes_in = 0;
581 priv->bytes_out = 0;
582 priv->cmd_count = 0;
583 priv->rx_flags = 0;
584 spin_unlock_irqrestore(&priv->lock, flags);
585
Alan Cox335f8512009-06-11 12:26:29 +0100586 /* Set termios */
Alan Coxfe1ae7f2009-09-19 13:13:33 -0700587 cypress_send(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588
Alan Cox95da3102008-07-22 11:09:07 +0100589 if (tty)
590 cypress_set_termios(tty, port, &priv->tmp_termios);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
592 /* setup the port and start reading from the device */
Alan Cox813a2242008-07-22 11:10:36 +0100593 if (!port->interrupt_in_urb) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700594 dev_err(&port->dev, "%s - interrupt_in_urb is empty!\n",
595 __func__);
Alan Cox813a2242008-07-22 11:10:36 +0100596 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 }
598
599 usb_fill_int_urb(port->interrupt_in_urb, serial->dev,
600 usb_rcvintpipe(serial->dev, port->interrupt_in_endpointAddress),
Alan Cox813a2242008-07-22 11:10:36 +0100601 port->interrupt_in_urb->transfer_buffer,
602 port->interrupt_in_urb->transfer_buffer_length,
Mike Isely0257fa92006-08-29 22:06:59 -0500603 cypress_read_int_callback, port, priv->read_urb_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 result = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL);
605
Alan Cox813a2242008-07-22 11:10:36 +0100606 if (result) {
607 dev_err(&port->dev,
608 "%s - failed submitting read urb, error %d\n",
609 __func__, result);
Mike Isely78aef512006-08-29 22:07:11 -0500610 cypress_set_dead(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 }
Alan Cox335f8512009-06-11 12:26:29 +0100612 port->port.drain_delay = 256;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 return result;
614} /* cypress_open */
615
Alan Cox335f8512009-06-11 12:26:29 +0100616static void cypress_dtr_rts(struct usb_serial_port *port, int on)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617{
618 struct cypress_private *priv = usb_get_serial_port_data(port);
Alan Cox335f8512009-06-11 12:26:29 +0100619 /* drop dtr and rts */
Alan Cox335f8512009-06-11 12:26:29 +0100620 spin_lock_irq(&priv->lock);
621 if (on == 0)
622 priv->line_control = 0;
623 else
624 priv->line_control = CONTROL_DTR | CONTROL_RTS;
625 priv->cmd_ctrl = 1;
626 spin_unlock_irq(&priv->lock);
627 cypress_write(NULL, port, NULL, 0);
628}
629
630static void cypress_close(struct usb_serial_port *port)
631{
632 struct cypress_private *priv = usb_get_serial_port_data(port);
Johan Hovold117fb8d2010-05-16 20:33:50 +0200633 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634
Johan Hovold117fb8d2010-05-16 20:33:50 +0200635 spin_lock_irqsave(&priv->lock, flags);
636 kfifo_reset_out(&priv->write_fifo);
637 spin_unlock_irqrestore(&priv->lock, flags);
638
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700639 dev_dbg(&port->dev, "%s - stopping urbs\n", __func__);
Alan Cox813a2242008-07-22 11:10:36 +0100640 usb_kill_urb(port->interrupt_in_urb);
641 usb_kill_urb(port->interrupt_out_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 if (stats)
Alan Cox813a2242008-07-22 11:10:36 +0100644 dev_info(&port->dev, "Statistics: %d Bytes In | %d Bytes Out | %d Commands Issued\n",
645 priv->bytes_in, priv->bytes_out, priv->cmd_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646} /* cypress_close */
647
648
Alan Cox95da3102008-07-22 11:09:07 +0100649static int cypress_write(struct tty_struct *tty, struct usb_serial_port *port,
650 const unsigned char *buf, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651{
652 struct cypress_private *priv = usb_get_serial_port_data(port);
Alan Cox813a2242008-07-22 11:10:36 +0100653
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700654 dev_dbg(&port->dev, "%s - port %d, %d bytes\n", __func__, port->number, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
656 /* line control commands, which need to be executed immediately,
657 are not put into the buffer for obvious reasons.
658 */
659 if (priv->cmd_ctrl) {
660 count = 0;
661 goto finish;
662 }
Alan Cox813a2242008-07-22 11:10:36 +0100663
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 if (!count)
665 return count;
Alan Cox813a2242008-07-22 11:10:36 +0100666
Johan Hovold117fb8d2010-05-16 20:33:50 +0200667 count = kfifo_in_locked(&priv->write_fifo, buf, count, &priv->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
669finish:
670 cypress_send(port);
671
672 return count;
673} /* cypress_write */
674
675
676static void cypress_send(struct usb_serial_port *port)
677{
678 int count = 0, result, offset, actual_size;
679 struct cypress_private *priv = usb_get_serial_port_data(port);
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700680 struct device *dev = &port->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 unsigned long flags;
Alan Cox813a2242008-07-22 11:10:36 +0100682
Mike Isely78aef512006-08-29 22:07:11 -0500683 if (!priv->comm_is_ok)
684 return;
685
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700686 dev_dbg(dev, "%s - interrupt out size is %d\n", __func__,
687 port->interrupt_out_size);
Alan Cox813a2242008-07-22 11:10:36 +0100688
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 spin_lock_irqsave(&priv->lock, flags);
690 if (priv->write_urb_in_use) {
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700691 dev_dbg(dev, "%s - can't write, urb in use\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 spin_unlock_irqrestore(&priv->lock, flags);
693 return;
694 }
695 spin_unlock_irqrestore(&priv->lock, flags);
696
697 /* clear buffer */
Alan Cox813a2242008-07-22 11:10:36 +0100698 memset(port->interrupt_out_urb->transfer_buffer, 0,
699 port->interrupt_out_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
701 spin_lock_irqsave(&priv->lock, flags);
Mike Isely3416eaa2008-02-10 20:23:19 -0600702 switch (priv->pkt_fmt) {
703 default:
704 case packet_format_1:
705 /* this is for the CY7C64013... */
706 offset = 2;
707 port->interrupt_out_buffer[0] = priv->line_control;
708 break;
709 case packet_format_2:
710 /* this is for the CY7C63743... */
711 offset = 1;
712 port->interrupt_out_buffer[0] = priv->line_control;
713 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 }
715
716 if (priv->line_control & CONTROL_RESET)
717 priv->line_control &= ~CONTROL_RESET;
718
719 if (priv->cmd_ctrl) {
720 priv->cmd_count++;
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700721 dev_dbg(dev, "%s - line control command being issued\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 spin_unlock_irqrestore(&priv->lock, flags);
723 goto send;
724 } else
725 spin_unlock_irqrestore(&priv->lock, flags);
726
Johan Hovold117fb8d2010-05-16 20:33:50 +0200727 count = kfifo_out_locked(&priv->write_fifo,
728 &port->interrupt_out_buffer[offset],
729 port->interrupt_out_size - offset,
730 &priv->lock);
Alan Cox813a2242008-07-22 11:10:36 +0100731 if (count == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
Mike Isely3416eaa2008-02-10 20:23:19 -0600734 switch (priv->pkt_fmt) {
735 default:
736 case packet_format_1:
737 port->interrupt_out_buffer[1] = count;
738 break;
739 case packet_format_2:
740 port->interrupt_out_buffer[0] |= count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 }
742
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700743 dev_dbg(dev, "%s - count is %d\n", __func__, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744
745send:
746 spin_lock_irqsave(&priv->lock, flags);
747 priv->write_urb_in_use = 1;
748 spin_unlock_irqrestore(&priv->lock, flags);
749
750 if (priv->cmd_ctrl)
751 actual_size = 1;
752 else
Mike Isely3416eaa2008-02-10 20:23:19 -0600753 actual_size = count +
754 (priv->pkt_fmt == packet_format_1 ? 2 : 1);
755
Greg Kroah-Hartman59d33f22012-09-18 09:58:57 +0100756 usb_serial_debug_data(dev, __func__, port->interrupt_out_size,
757 port->interrupt_out_urb->transfer_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758
Mike Isely9aa8dae2006-08-29 22:07:04 -0500759 usb_fill_int_urb(port->interrupt_out_urb, port->serial->dev,
760 usb_sndintpipe(port->serial->dev, port->interrupt_out_endpointAddress),
761 port->interrupt_out_buffer, port->interrupt_out_size,
762 cypress_write_int_callback, port, priv->write_urb_interval);
Alan Cox813a2242008-07-22 11:10:36 +0100763 result = usb_submit_urb(port->interrupt_out_urb, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 if (result) {
Johan Hovold22a416c2012-02-10 13:20:51 +0100765 dev_err_console(port,
Alan Cox813a2242008-07-22 11:10:36 +0100766 "%s - failed submitting write urb, error %d\n",
767 __func__, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 priv->write_urb_in_use = 0;
Mike Isely78aef512006-08-29 22:07:11 -0500769 cypress_set_dead(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 }
771
772 spin_lock_irqsave(&priv->lock, flags);
Alan Cox813a2242008-07-22 11:10:36 +0100773 if (priv->cmd_ctrl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 priv->cmd_ctrl = 0;
Alan Cox813a2242008-07-22 11:10:36 +0100775
776 /* do not count the line control and size bytes */
777 priv->bytes_out += count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 spin_unlock_irqrestore(&priv->lock, flags);
779
Pete Zaitcevcf2c7482006-05-22 21:58:49 -0700780 usb_serial_port_softint(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781} /* cypress_send */
782
783
784/* returns how much space is available in the soft buffer */
Alan Cox95da3102008-07-22 11:09:07 +0100785static int cypress_write_room(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786{
Alan Cox95da3102008-07-22 11:09:07 +0100787 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 struct cypress_private *priv = usb_get_serial_port_data(port);
789 int room = 0;
790 unsigned long flags;
791
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 spin_lock_irqsave(&priv->lock, flags);
Johan Hovold117fb8d2010-05-16 20:33:50 +0200793 room = kfifo_avail(&priv->write_fifo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 spin_unlock_irqrestore(&priv->lock, flags);
795
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700796 dev_dbg(&port->dev, "%s - returns %d\n", __func__, room);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 return room;
798}
799
800
Alan Cox60b33c12011-02-14 16:26:14 +0000801static int cypress_tiocmget(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802{
Alan Cox95da3102008-07-22 11:09:07 +0100803 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 struct cypress_private *priv = usb_get_serial_port_data(port);
805 __u8 status, control;
806 unsigned int result = 0;
807 unsigned long flags;
Alan Cox813a2242008-07-22 11:10:36 +0100808
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 spin_lock_irqsave(&priv->lock, flags);
810 control = priv->line_control;
811 status = priv->current_status;
812 spin_unlock_irqrestore(&priv->lock, flags);
813
814 result = ((control & CONTROL_DTR) ? TIOCM_DTR : 0)
815 | ((control & CONTROL_RTS) ? TIOCM_RTS : 0)
816 | ((status & UART_CTS) ? TIOCM_CTS : 0)
817 | ((status & UART_DSR) ? TIOCM_DSR : 0)
818 | ((status & UART_RI) ? TIOCM_RI : 0)
819 | ((status & UART_CD) ? TIOCM_CD : 0);
820
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700821 dev_dbg(&port->dev, "%s - result = %x\n", __func__, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822
823 return result;
824}
825
826
Alan Cox20b9d172011-02-14 16:26:50 +0000827static int cypress_tiocmset(struct tty_struct *tty,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 unsigned int set, unsigned int clear)
829{
Alan Cox95da3102008-07-22 11:09:07 +0100830 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 struct cypress_private *priv = usb_get_serial_port_data(port);
832 unsigned long flags;
Alan Cox813a2242008-07-22 11:10:36 +0100833
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 spin_lock_irqsave(&priv->lock, flags);
835 if (set & TIOCM_RTS)
836 priv->line_control |= CONTROL_RTS;
837 if (set & TIOCM_DTR)
838 priv->line_control |= CONTROL_DTR;
839 if (clear & TIOCM_RTS)
840 priv->line_control &= ~CONTROL_RTS;
841 if (clear & TIOCM_DTR)
842 priv->line_control &= ~CONTROL_DTR;
Alan Cox8873aaa2008-03-10 21:59:28 +0000843 priv->cmd_ctrl = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 spin_unlock_irqrestore(&priv->lock, flags);
845
Alan Cox95da3102008-07-22 11:09:07 +0100846 return cypress_write(tty, port, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847}
848
849
Johan Hovold493516e2013-03-21 12:37:02 +0100850static int cypress_tiocmiwait(struct tty_struct *tty, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851{
Alan Cox95da3102008-07-22 11:09:07 +0100852 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 struct cypress_private *priv = usb_get_serial_port_data(port);
Johan Hovold493516e2013-03-21 12:37:02 +0100854 char diff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
Johan Hovold493516e2013-03-21 12:37:02 +0100856 for (;;) {
Johan Hovoldc648e942013-03-21 12:37:03 +0100857 interruptible_sleep_on(&port->port.delta_msr_wait);
Johan Hovold493516e2013-03-21 12:37:02 +0100858 /* see if a signal did it */
859 if (signal_pending(current))
860 return -ERESTARTSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861
Johan Hovold493516e2013-03-21 12:37:02 +0100862 if (port->serial->disconnected)
863 return -EIO;
Johan Hovold356050d2013-03-19 09:21:13 +0100864
Johan Hovold493516e2013-03-21 12:37:02 +0100865 diff = priv->diff_status;
866 if (diff == 0)
867 return -EIO; /* no change => error */
Johan Hovold356050d2013-03-19 09:21:13 +0100868
Johan Hovold493516e2013-03-21 12:37:02 +0100869 /* consume all events */
870 priv->diff_status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871
Johan Hovold493516e2013-03-21 12:37:02 +0100872 /* return 0 if caller wanted to know about
873 these bits */
874 if (((arg & TIOCM_RNG) && (diff & UART_RI)) ||
875 ((arg & TIOCM_DSR) && (diff & UART_DSR)) ||
876 ((arg & TIOCM_CD) && (diff & UART_CD)) ||
877 ((arg & TIOCM_CTS) && (diff & UART_CTS)))
878 return 0;
879 /* otherwise caller can't care less about what
880 * happened, and so we continue to wait for
881 * more events.
882 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884
Johan Hovold493516e2013-03-21 12:37:02 +0100885 return 0;
886}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887
Alan Cox95da3102008-07-22 11:09:07 +0100888static void cypress_set_termios(struct tty_struct *tty,
889 struct usb_serial_port *port, struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890{
891 struct cypress_private *priv = usb_get_serial_port_data(port);
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700892 struct device *dev = &port->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 int data_bits, stop_bits, parity_type, parity_enable;
Alan Cox8873aaa2008-03-10 21:59:28 +0000894 unsigned cflag, iflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 unsigned long flags;
896 __u8 oldlines;
Lonnie Mendez3cb4a4f2005-05-03 17:02:20 -0500897 int linechange = 0;
Lonnie Mendezb9db07f2005-07-12 17:21:31 -0500898
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 spin_lock_irqsave(&priv->lock, flags);
Alan Coxfe1ae7f2009-09-19 13:13:33 -0700900 /* We can't clean this one up as we don't know the device type
901 early enough */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 if (!priv->termios_initialized) {
903 if (priv->chiptype == CT_EARTHMATE) {
Alan Coxadc8d742012-07-14 15:31:47 +0100904 tty->termios = tty_std_termios;
905 tty->termios.c_cflag = B4800 | CS8 | CREAD | HUPCL |
Lonnie Mendezb9db07f2005-07-12 17:21:31 -0500906 CLOCAL;
Alan Coxadc8d742012-07-14 15:31:47 +0100907 tty->termios.c_ispeed = 4800;
908 tty->termios.c_ospeed = 4800;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 } else if (priv->chiptype == CT_CYPHIDCOM) {
Alan Coxadc8d742012-07-14 15:31:47 +0100910 tty->termios = tty_std_termios;
911 tty->termios.c_cflag = B9600 | CS8 | CREAD | HUPCL |
Lonnie Mendezb9db07f2005-07-12 17:21:31 -0500912 CLOCAL;
Alan Coxadc8d742012-07-14 15:31:47 +0100913 tty->termios.c_ispeed = 9600;
914 tty->termios.c_ospeed = 9600;
Lonnie Mendeza5c44e22006-03-01 10:45:24 -0600915 } else if (priv->chiptype == CT_CA42V2) {
Alan Coxadc8d742012-07-14 15:31:47 +0100916 tty->termios = tty_std_termios;
917 tty->termios.c_cflag = B9600 | CS8 | CREAD | HUPCL |
Lonnie Mendeza5c44e22006-03-01 10:45:24 -0600918 CLOCAL;
Alan Coxadc8d742012-07-14 15:31:47 +0100919 tty->termios.c_ispeed = 9600;
920 tty->termios.c_ospeed = 9600;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 }
922 priv->termios_initialized = 1;
923 }
924 spin_unlock_irqrestore(&priv->lock, flags);
925
Alan Cox8873aaa2008-03-10 21:59:28 +0000926 /* Unsupported features need clearing */
Alan Coxadc8d742012-07-14 15:31:47 +0100927 tty->termios.c_cflag &= ~(CMSPAR|CRTSCTS);
Alan Cox8873aaa2008-03-10 21:59:28 +0000928
Alan Coxadc8d742012-07-14 15:31:47 +0100929 cflag = tty->termios.c_cflag;
930 iflag = tty->termios.c_iflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931
932 /* check if there are new settings */
933 if (old_termios) {
Alan Cox8873aaa2008-03-10 21:59:28 +0000934 spin_lock_irqsave(&priv->lock, flags);
Alan Coxadc8d742012-07-14 15:31:47 +0100935 priv->tmp_termios = tty->termios;
Alan Cox8873aaa2008-03-10 21:59:28 +0000936 spin_unlock_irqrestore(&priv->lock, flags);
937 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938
939 /* set number of data bits, parity, stop bits */
940 /* when parity is disabled the parity type bit is ignored */
941
Lonnie Mendezb9db07f2005-07-12 17:21:31 -0500942 /* 1 means 2 stop bits, 0 means 1 stop bit */
943 stop_bits = cflag & CSTOPB ? 1 : 0;
944
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 if (cflag & PARENB) {
946 parity_enable = 1;
Lonnie Mendezb9db07f2005-07-12 17:21:31 -0500947 /* 1 means odd parity, 0 means even parity */
948 parity_type = cflag & PARODD ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 } else
950 parity_enable = parity_type = 0;
951
Alan Cox77336822008-07-22 11:10:53 +0100952 switch (cflag & CSIZE) {
953 case CS5:
954 data_bits = 0;
955 break;
956 case CS6:
957 data_bits = 1;
958 break;
959 case CS7:
960 data_bits = 2;
961 break;
962 case CS8:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 data_bits = 3;
Alan Cox77336822008-07-22 11:10:53 +0100964 break;
965 default:
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700966 dev_err(dev, "%s - CSIZE was set, but not CS5-CS8\n", __func__);
Alan Cox77336822008-07-22 11:10:53 +0100967 data_bits = 3;
968 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 spin_lock_irqsave(&priv->lock, flags);
970 oldlines = priv->line_control;
971 if ((cflag & CBAUD) == B0) {
972 /* drop dtr and rts */
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700973 dev_dbg(dev, "%s - dropping the lines, baud rate 0bps\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 priv->line_control &= ~(CONTROL_DTR | CONTROL_RTS);
Alan Cox8873aaa2008-03-10 21:59:28 +0000975 } else
Lonnie Mendez3cb4a4f2005-05-03 17:02:20 -0500976 priv->line_control = (CONTROL_DTR | CONTROL_RTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 spin_unlock_irqrestore(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700979 dev_dbg(dev, "%s - sending %d stop_bits, %d parity_enable, %d parity_type, %d data_bits (+5)\n",
980 __func__, stop_bits, parity_enable, parity_type, data_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981
Alan Cox813a2242008-07-22 11:10:36 +0100982 cypress_serial_control(tty, port, tty_get_baud_rate(tty),
983 data_bits, stop_bits,
984 parity_enable, parity_type,
985 0, CYPRESS_SET_CONFIG);
Lonnie Mendezb9db07f2005-07-12 17:21:31 -0500986
987 /* we perform a CYPRESS_GET_CONFIG so that the current settings are
988 * filled into the private structure this should confirm that all is
989 * working if it returns what we just set */
Alan Cox95da3102008-07-22 11:09:07 +0100990 cypress_serial_control(tty, port, 0, 0, 0, 0, 0, 0, CYPRESS_GET_CONFIG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
Lonnie Mendezb9db07f2005-07-12 17:21:31 -0500992 /* Here we can define custom tty settings for devices; the main tty
993 * termios flag base comes from empeg.c */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994
Lonnie Mendezb9db07f2005-07-12 17:21:31 -0500995 spin_lock_irqsave(&priv->lock, flags);
Alan Cox813a2242008-07-22 11:10:36 +0100996 if (priv->chiptype == CT_EARTHMATE && priv->baud_rate == 4800) {
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700997 dev_dbg(dev, "Using custom termios settings for a baud rate of 4800bps.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 /* define custom termios settings for NMEA protocol */
999
Alan Coxadc8d742012-07-14 15:31:47 +01001000 tty->termios.c_iflag /* input modes - */
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001001 &= ~(IGNBRK /* disable ignore break */
1002 | BRKINT /* disable break causes interrupt */
1003 | PARMRK /* disable mark parity errors */
1004 | ISTRIP /* disable clear high bit of input char */
1005 | INLCR /* disable translate NL to CR */
1006 | IGNCR /* disable ignore CR */
1007 | ICRNL /* disable translate CR to NL */
1008 | IXON); /* disable enable XON/XOFF flow control */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009
Alan Coxadc8d742012-07-14 15:31:47 +01001010 tty->termios.c_oflag /* output modes */
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001011 &= ~OPOST; /* disable postprocess output char */
1012
Alan Coxadc8d742012-07-14 15:31:47 +01001013 tty->termios.c_lflag /* line discipline modes */
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001014 &= ~(ECHO /* disable echo input characters */
1015 | ECHONL /* disable echo new line */
1016 | ICANON /* disable erase, kill, werase, and rprnt
1017 special characters */
1018 | ISIG /* disable interrupt, quit, and suspend
1019 special characters */
1020 | IEXTEN); /* disable non-POSIX special characters */
Lonnie Mendez3cb4a4f2005-05-03 17:02:20 -05001021 } /* CT_CYPHIDCOM: Application should handle this for device */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 linechange = (priv->line_control != oldlines);
1024 spin_unlock_irqrestore(&priv->lock, flags);
1025
1026 /* if necessary, set lines */
Lonnie Mendez3cb4a4f2005-05-03 17:02:20 -05001027 if (linechange) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 priv->cmd_ctrl = 1;
Alan Cox95da3102008-07-22 11:09:07 +01001029 cypress_write(tty, port, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031} /* cypress_set_termios */
1032
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001033
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034/* returns amount of data still left in soft buffer */
Alan Cox95da3102008-07-22 11:09:07 +01001035static int cypress_chars_in_buffer(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036{
Alan Cox95da3102008-07-22 11:09:07 +01001037 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 struct cypress_private *priv = usb_get_serial_port_data(port);
1039 int chars = 0;
1040 unsigned long flags;
1041
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 spin_lock_irqsave(&priv->lock, flags);
Johan Hovold117fb8d2010-05-16 20:33:50 +02001043 chars = kfifo_len(&priv->write_fifo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 spin_unlock_irqrestore(&priv->lock, flags);
1045
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -07001046 dev_dbg(&port->dev, "%s - returns %d\n", __func__, chars);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 return chars;
1048}
1049
1050
Alan Cox95da3102008-07-22 11:09:07 +01001051static void cypress_throttle(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052{
Alan Cox95da3102008-07-22 11:09:07 +01001053 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 struct cypress_private *priv = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055
Oliver Neukum63832512009-10-07 10:50:23 +02001056 spin_lock_irq(&priv->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 priv->rx_flags = THROTTLED;
Oliver Neukum63832512009-10-07 10:50:23 +02001058 spin_unlock_irq(&priv->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059}
1060
1061
Alan Cox95da3102008-07-22 11:09:07 +01001062static void cypress_unthrottle(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063{
Alan Cox95da3102008-07-22 11:09:07 +01001064 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 struct cypress_private *priv = usb_get_serial_port_data(port);
1066 int actually_throttled, result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067
Oliver Neukum63832512009-10-07 10:50:23 +02001068 spin_lock_irq(&priv->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 actually_throttled = priv->rx_flags & ACTUALLY_THROTTLED;
1070 priv->rx_flags = 0;
Oliver Neukum63832512009-10-07 10:50:23 +02001071 spin_unlock_irq(&priv->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072
Mike Isely78aef512006-08-29 22:07:11 -05001073 if (!priv->comm_is_ok)
1074 return;
1075
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 if (actually_throttled) {
Oliver Neukum63832512009-10-07 10:50:23 +02001077 result = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL);
Mike Isely78aef512006-08-29 22:07:11 -05001078 if (result) {
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001079 dev_err(&port->dev, "%s - failed submitting read urb, "
Harvey Harrison441b62c2008-03-03 16:08:34 -08001080 "error %d\n", __func__, result);
Mike Isely78aef512006-08-29 22:07:11 -05001081 cypress_set_dead(port);
1082 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 }
1084}
1085
1086
David Howells7d12e782006-10-05 14:55:46 +01001087static void cypress_read_int_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088{
Ming Leicdc97792008-02-24 18:41:47 +08001089 struct usb_serial_port *port = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 struct cypress_private *priv = usb_get_serial_port_data(port);
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -07001091 struct device *dev = &urb->dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 struct tty_struct *tty;
1093 unsigned char *data = urb->transfer_buffer;
1094 unsigned long flags;
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001095 char tty_flag = TTY_NORMAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 int havedata = 0;
1097 int bytes = 0;
1098 int result;
1099 int i = 0;
Greg Kroah-Hartman8d7bc552007-06-15 15:44:13 -07001100 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101
Greg Kroah-Hartman8d7bc552007-06-15 15:44:13 -07001102 switch (status) {
Mike Isely78aef512006-08-29 22:07:11 -05001103 case 0: /* success */
1104 break;
1105 case -ECONNRESET:
1106 case -ENOENT:
1107 case -ESHUTDOWN:
1108 /* precursor to disconnect so just go away */
1109 return;
1110 case -EPIPE:
Alan Stern4d2fae82009-07-09 12:59:57 -04001111 /* Can't call usb_clear_halt while in_interrupt */
1112 /* FALLS THROUGH */
Mike Isely78aef512006-08-29 22:07:11 -05001113 default:
1114 /* something ugly is going on... */
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -07001115 dev_err(dev, "%s - unexpected nonzero read status received: %d\n",
1116 __func__, status);
Mike Isely78aef512006-08-29 22:07:11 -05001117 cypress_set_dead(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 return;
1119 }
1120
1121 spin_lock_irqsave(&priv->lock, flags);
1122 if (priv->rx_flags & THROTTLED) {
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -07001123 dev_dbg(dev, "%s - now throttling\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 priv->rx_flags |= ACTUALLY_THROTTLED;
1125 spin_unlock_irqrestore(&priv->lock, flags);
1126 return;
1127 }
1128 spin_unlock_irqrestore(&priv->lock, flags);
1129
Alan Cox4a90f092008-10-13 10:39:46 +01001130 tty = tty_port_tty_get(&port->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 if (!tty) {
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -07001132 dev_dbg(dev, "%s - bad tty pointer - exiting\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 return;
1134 }
1135
1136 spin_lock_irqsave(&priv->lock, flags);
Mike Isely3416eaa2008-02-10 20:23:19 -06001137 result = urb->actual_length;
1138 switch (priv->pkt_fmt) {
1139 default:
1140 case packet_format_1:
1141 /* This is for the CY7C64013... */
1142 priv->current_status = data[0] & 0xF8;
1143 bytes = data[1] + 2;
1144 i = 2;
1145 if (bytes > 2)
1146 havedata = 1;
1147 break;
1148 case packet_format_2:
1149 /* This is for the CY7C63743... */
1150 priv->current_status = data[0] & 0xF8;
1151 bytes = (data[0] & 0x07) + 1;
1152 i = 1;
1153 if (bytes > 1)
1154 havedata = 1;
1155 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 }
1157 spin_unlock_irqrestore(&priv->lock, flags);
Mike Isely3416eaa2008-02-10 20:23:19 -06001158 if (result < bytes) {
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -07001159 dev_dbg(dev,
1160 "%s - wrong packet size - received %d bytes but packet said %d bytes\n",
1161 __func__, result, bytes);
Mike Isely3416eaa2008-02-10 20:23:19 -06001162 goto continue_read;
1163 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164
Greg Kroah-Hartman59d33f22012-09-18 09:58:57 +01001165 usb_serial_debug_data(&port->dev, __func__, urb->actual_length, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166
1167 spin_lock_irqsave(&priv->lock, flags);
1168 /* check to see if status has changed */
Mike Isely67683062008-02-10 20:23:28 -06001169 if (priv->current_status != priv->prev_status) {
1170 priv->diff_status |= priv->current_status ^
1171 priv->prev_status;
Johan Hovoldc648e942013-03-21 12:37:03 +01001172 wake_up_interruptible(&port->port.delta_msr_wait);
Mike Isely67683062008-02-10 20:23:28 -06001173 priv->prev_status = priv->current_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 }
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001175 spin_unlock_irqrestore(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001177 /* hangup, as defined in acm.c... this might be a bad place for it
1178 * though */
Alan Coxadc8d742012-07-14 15:31:47 +01001179 if (tty && !(tty->termios.c_cflag & CLOCAL) &&
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001180 !(priv->current_status & UART_CD)) {
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -07001181 dev_dbg(dev, "%s - calling hangup\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 tty_hangup(tty);
1183 goto continue_read;
1184 }
1185
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001186 /* There is one error bit... I'm assuming it is a parity error
1187 * indicator as the generic firmware will set this bit to 1 if a
1188 * parity error occurs.
1189 * I can not find reference to any other error events. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 spin_lock_irqsave(&priv->lock, flags);
1191 if (priv->current_status & CYP_ERROR) {
1192 spin_unlock_irqrestore(&priv->lock, flags);
1193 tty_flag = TTY_PARITY;
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -07001194 dev_dbg(dev, "%s - Parity Error detected\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 } else
1196 spin_unlock_irqrestore(&priv->lock, flags);
1197
1198 /* process read if there is data other than line status */
Jiri Slaby2e124b42013-01-03 15:53:06 +01001199 if (bytes > i) {
Jiri Slaby2f693352013-01-03 15:53:02 +01001200 tty_insert_flip_string_fixed_flag(&port->port, data + i,
Johan Hovold70ced222010-05-07 19:46:56 +02001201 tty_flag, bytes - i);
Jiri Slaby2e124b42013-01-03 15:53:06 +01001202 tty_flip_buffer_push(&port->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 }
1204
1205 spin_lock_irqsave(&priv->lock, flags);
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001206 /* control and status byte(s) are also counted */
1207 priv->bytes_in += bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 spin_unlock_irqrestore(&priv->lock, flags);
1209
1210continue_read:
Alan Cox4a90f092008-10-13 10:39:46 +01001211 tty_kref_put(tty);
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001212
Alan Stern1f871582010-02-17 10:05:47 -05001213 /* Continue trying to always read */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214
Alan Stern1f871582010-02-17 10:05:47 -05001215 if (priv->comm_is_ok) {
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001216 usb_fill_int_urb(port->interrupt_in_urb, port->serial->dev,
1217 usb_rcvintpipe(port->serial->dev,
1218 port->interrupt_in_endpointAddress),
1219 port->interrupt_in_urb->transfer_buffer,
1220 port->interrupt_in_urb->transfer_buffer_length,
Alan Cox813a2242008-07-22 11:10:36 +01001221 cypress_read_int_callback, port,
1222 priv->read_urb_interval);
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001223 result = usb_submit_urb(port->interrupt_in_urb, GFP_ATOMIC);
Alan Stern1f871582010-02-17 10:05:47 -05001224 if (result && result != -EPERM) {
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -07001225 dev_err(dev, "%s - failed resubmitting read urb, error %d\n",
1226 __func__, result);
Mike Isely78aef512006-08-29 22:07:11 -05001227 cypress_set_dead(port);
1228 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230} /* cypress_read_int_callback */
1231
1232
David Howells7d12e782006-10-05 14:55:46 +01001233static void cypress_write_int_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234{
Ming Leicdc97792008-02-24 18:41:47 +08001235 struct usb_serial_port *port = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 struct cypress_private *priv = usb_get_serial_port_data(port);
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -07001237 struct device *dev = &urb->dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 int result;
Greg Kroah-Hartman8d7bc552007-06-15 15:44:13 -07001239 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240
Greg Kroah-Hartman8d7bc552007-06-15 15:44:13 -07001241 switch (status) {
Alan Cox813a2242008-07-22 11:10:36 +01001242 case 0:
1243 /* success */
1244 break;
1245 case -ECONNRESET:
1246 case -ENOENT:
1247 case -ESHUTDOWN:
1248 /* this urb is terminated, clean up */
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -07001249 dev_dbg(dev, "%s - urb shutting down with status: %d\n",
1250 __func__, status);
Alan Cox813a2242008-07-22 11:10:36 +01001251 priv->write_urb_in_use = 0;
1252 return;
1253 case -EPIPE: /* no break needed; clear halt and resubmit */
1254 if (!priv->comm_is_ok)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 break;
Alan Cox813a2242008-07-22 11:10:36 +01001256 usb_clear_halt(port->serial->dev, 0x02);
1257 /* error in the urb, so we have to resubmit it */
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -07001258 dev_dbg(dev, "%s - nonzero write bulk status received: %d\n",
Alan Cox813a2242008-07-22 11:10:36 +01001259 __func__, status);
1260 port->interrupt_out_urb->transfer_buffer_length = 1;
Alan Cox813a2242008-07-22 11:10:36 +01001261 result = usb_submit_urb(port->interrupt_out_urb, GFP_ATOMIC);
1262 if (!result)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 return;
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -07001264 dev_err(dev, "%s - failed resubmitting write urb, error %d\n",
1265 __func__, result);
Alan Cox813a2242008-07-22 11:10:36 +01001266 cypress_set_dead(port);
1267 break;
1268 default:
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -07001269 dev_err(dev, "%s - unexpected nonzero write status received: %d\n",
1270 __func__, status);
Alan Cox813a2242008-07-22 11:10:36 +01001271 cypress_set_dead(port);
1272 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 priv->write_urb_in_use = 0;
Alan Cox813a2242008-07-22 11:10:36 +01001275
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 /* send any buffered data */
1277 cypress_send(port);
1278}
1279
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -07001280module_usb_serial_driver(serial_drivers, id_table_combined);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281
Alan Cox813a2242008-07-22 11:10:36 +01001282MODULE_AUTHOR(DRIVER_AUTHOR);
1283MODULE_DESCRIPTION(DRIVER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284MODULE_LICENSE("GPL");
1285
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286module_param(stats, bool, S_IRUGO | S_IWUSR);
1287MODULE_PARM_DESC(stats, "Enable statistics or not");
Lonnie Mendez3cb4a4f2005-05-03 17:02:20 -05001288module_param(interval, int, S_IRUGO | S_IWUSR);
1289MODULE_PARM_DESC(interval, "Overrides interrupt interval");
Mike Frysingerc3126592009-12-18 16:33:03 -05001290module_param(unstable_bauds, bool, S_IRUGO | S_IWUSR);
1291MODULE_PARM_DESC(unstable_bauds, "Allow unstable baud rates");