blob: cdbb09691aeee23593020122c9dc0d4f594d124d [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
Oliver Neukum9e3b1d82008-01-22 15:54:54 +0100635 /* writing is potentially harmful, lock must be taken */
636 mutex_lock(&port->serial->disc_mutex);
637 if (port->serial->disconnected) {
638 mutex_unlock(&port->serial->disc_mutex);
639 return;
640 }
Johan Hovold117fb8d2010-05-16 20:33:50 +0200641 spin_lock_irqsave(&priv->lock, flags);
642 kfifo_reset_out(&priv->write_fifo);
643 spin_unlock_irqrestore(&priv->lock, flags);
644
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700645 dev_dbg(&port->dev, "%s - stopping urbs\n", __func__);
Alan Cox813a2242008-07-22 11:10:36 +0100646 usb_kill_urb(port->interrupt_in_urb);
647 usb_kill_urb(port->interrupt_out_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 if (stats)
Alan Cox813a2242008-07-22 11:10:36 +0100650 dev_info(&port->dev, "Statistics: %d Bytes In | %d Bytes Out | %d Commands Issued\n",
651 priv->bytes_in, priv->bytes_out, priv->cmd_count);
Oliver Neukum9e3b1d82008-01-22 15:54:54 +0100652 mutex_unlock(&port->serial->disc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653} /* cypress_close */
654
655
Alan Cox95da3102008-07-22 11:09:07 +0100656static int cypress_write(struct tty_struct *tty, struct usb_serial_port *port,
657 const unsigned char *buf, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658{
659 struct cypress_private *priv = usb_get_serial_port_data(port);
Alan Cox813a2242008-07-22 11:10:36 +0100660
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700661 dev_dbg(&port->dev, "%s - port %d, %d bytes\n", __func__, port->number, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
663 /* line control commands, which need to be executed immediately,
664 are not put into the buffer for obvious reasons.
665 */
666 if (priv->cmd_ctrl) {
667 count = 0;
668 goto finish;
669 }
Alan Cox813a2242008-07-22 11:10:36 +0100670
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 if (!count)
672 return count;
Alan Cox813a2242008-07-22 11:10:36 +0100673
Johan Hovold117fb8d2010-05-16 20:33:50 +0200674 count = kfifo_in_locked(&priv->write_fifo, buf, count, &priv->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
676finish:
677 cypress_send(port);
678
679 return count;
680} /* cypress_write */
681
682
683static void cypress_send(struct usb_serial_port *port)
684{
685 int count = 0, result, offset, actual_size;
686 struct cypress_private *priv = usb_get_serial_port_data(port);
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700687 struct device *dev = &port->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 unsigned long flags;
Alan Cox813a2242008-07-22 11:10:36 +0100689
Mike Isely78aef512006-08-29 22:07:11 -0500690 if (!priv->comm_is_ok)
691 return;
692
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700693 dev_dbg(dev, "%s - interrupt out size is %d\n", __func__,
694 port->interrupt_out_size);
Alan Cox813a2242008-07-22 11:10:36 +0100695
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 spin_lock_irqsave(&priv->lock, flags);
697 if (priv->write_urb_in_use) {
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700698 dev_dbg(dev, "%s - can't write, urb in use\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 spin_unlock_irqrestore(&priv->lock, flags);
700 return;
701 }
702 spin_unlock_irqrestore(&priv->lock, flags);
703
704 /* clear buffer */
Alan Cox813a2242008-07-22 11:10:36 +0100705 memset(port->interrupt_out_urb->transfer_buffer, 0,
706 port->interrupt_out_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707
708 spin_lock_irqsave(&priv->lock, flags);
Mike Isely3416eaa2008-02-10 20:23:19 -0600709 switch (priv->pkt_fmt) {
710 default:
711 case packet_format_1:
712 /* this is for the CY7C64013... */
713 offset = 2;
714 port->interrupt_out_buffer[0] = priv->line_control;
715 break;
716 case packet_format_2:
717 /* this is for the CY7C63743... */
718 offset = 1;
719 port->interrupt_out_buffer[0] = priv->line_control;
720 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 }
722
723 if (priv->line_control & CONTROL_RESET)
724 priv->line_control &= ~CONTROL_RESET;
725
726 if (priv->cmd_ctrl) {
727 priv->cmd_count++;
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700728 dev_dbg(dev, "%s - line control command being issued\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 spin_unlock_irqrestore(&priv->lock, flags);
730 goto send;
731 } else
732 spin_unlock_irqrestore(&priv->lock, flags);
733
Johan Hovold117fb8d2010-05-16 20:33:50 +0200734 count = kfifo_out_locked(&priv->write_fifo,
735 &port->interrupt_out_buffer[offset],
736 port->interrupt_out_size - offset,
737 &priv->lock);
Alan Cox813a2242008-07-22 11:10:36 +0100738 if (count == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740
Mike Isely3416eaa2008-02-10 20:23:19 -0600741 switch (priv->pkt_fmt) {
742 default:
743 case packet_format_1:
744 port->interrupt_out_buffer[1] = count;
745 break;
746 case packet_format_2:
747 port->interrupt_out_buffer[0] |= count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 }
749
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700750 dev_dbg(dev, "%s - count is %d\n", __func__, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751
752send:
753 spin_lock_irqsave(&priv->lock, flags);
754 priv->write_urb_in_use = 1;
755 spin_unlock_irqrestore(&priv->lock, flags);
756
757 if (priv->cmd_ctrl)
758 actual_size = 1;
759 else
Mike Isely3416eaa2008-02-10 20:23:19 -0600760 actual_size = count +
761 (priv->pkt_fmt == packet_format_1 ? 2 : 1);
762
Greg Kroah-Hartman59d33f22012-09-18 09:58:57 +0100763 usb_serial_debug_data(dev, __func__, port->interrupt_out_size,
764 port->interrupt_out_urb->transfer_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765
Mike Isely9aa8dae2006-08-29 22:07:04 -0500766 usb_fill_int_urb(port->interrupt_out_urb, port->serial->dev,
767 usb_sndintpipe(port->serial->dev, port->interrupt_out_endpointAddress),
768 port->interrupt_out_buffer, port->interrupt_out_size,
769 cypress_write_int_callback, port, priv->write_urb_interval);
Alan Cox813a2242008-07-22 11:10:36 +0100770 result = usb_submit_urb(port->interrupt_out_urb, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 if (result) {
Johan Hovold22a416c2012-02-10 13:20:51 +0100772 dev_err_console(port,
Alan Cox813a2242008-07-22 11:10:36 +0100773 "%s - failed submitting write urb, error %d\n",
774 __func__, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 priv->write_urb_in_use = 0;
Mike Isely78aef512006-08-29 22:07:11 -0500776 cypress_set_dead(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 }
778
779 spin_lock_irqsave(&priv->lock, flags);
Alan Cox813a2242008-07-22 11:10:36 +0100780 if (priv->cmd_ctrl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 priv->cmd_ctrl = 0;
Alan Cox813a2242008-07-22 11:10:36 +0100782
783 /* do not count the line control and size bytes */
784 priv->bytes_out += count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 spin_unlock_irqrestore(&priv->lock, flags);
786
Pete Zaitcevcf2c7482006-05-22 21:58:49 -0700787 usb_serial_port_softint(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788} /* cypress_send */
789
790
791/* returns how much space is available in the soft buffer */
Alan Cox95da3102008-07-22 11:09:07 +0100792static int cypress_write_room(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793{
Alan Cox95da3102008-07-22 11:09:07 +0100794 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 struct cypress_private *priv = usb_get_serial_port_data(port);
796 int room = 0;
797 unsigned long flags;
798
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 spin_lock_irqsave(&priv->lock, flags);
Johan Hovold117fb8d2010-05-16 20:33:50 +0200800 room = kfifo_avail(&priv->write_fifo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 spin_unlock_irqrestore(&priv->lock, flags);
802
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700803 dev_dbg(&port->dev, "%s - returns %d\n", __func__, room);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 return room;
805}
806
807
Alan Cox60b33c12011-02-14 16:26:14 +0000808static int cypress_tiocmget(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809{
Alan Cox95da3102008-07-22 11:09:07 +0100810 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 struct cypress_private *priv = usb_get_serial_port_data(port);
812 __u8 status, control;
813 unsigned int result = 0;
814 unsigned long flags;
Alan Cox813a2242008-07-22 11:10:36 +0100815
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 spin_lock_irqsave(&priv->lock, flags);
817 control = priv->line_control;
818 status = priv->current_status;
819 spin_unlock_irqrestore(&priv->lock, flags);
820
821 result = ((control & CONTROL_DTR) ? TIOCM_DTR : 0)
822 | ((control & CONTROL_RTS) ? TIOCM_RTS : 0)
823 | ((status & UART_CTS) ? TIOCM_CTS : 0)
824 | ((status & UART_DSR) ? TIOCM_DSR : 0)
825 | ((status & UART_RI) ? TIOCM_RI : 0)
826 | ((status & UART_CD) ? TIOCM_CD : 0);
827
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700828 dev_dbg(&port->dev, "%s - result = %x\n", __func__, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
830 return result;
831}
832
833
Alan Cox20b9d172011-02-14 16:26:50 +0000834static int cypress_tiocmset(struct tty_struct *tty,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 unsigned int set, unsigned int clear)
836{
Alan Cox95da3102008-07-22 11:09:07 +0100837 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 struct cypress_private *priv = usb_get_serial_port_data(port);
839 unsigned long flags;
Alan Cox813a2242008-07-22 11:10:36 +0100840
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 spin_lock_irqsave(&priv->lock, flags);
842 if (set & TIOCM_RTS)
843 priv->line_control |= CONTROL_RTS;
844 if (set & TIOCM_DTR)
845 priv->line_control |= CONTROL_DTR;
846 if (clear & TIOCM_RTS)
847 priv->line_control &= ~CONTROL_RTS;
848 if (clear & TIOCM_DTR)
849 priv->line_control &= ~CONTROL_DTR;
Alan Cox8873aaa2008-03-10 21:59:28 +0000850 priv->cmd_ctrl = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 spin_unlock_irqrestore(&priv->lock, flags);
852
Alan Cox95da3102008-07-22 11:09:07 +0100853 return cypress_write(tty, port, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854}
855
856
Johan Hovold493516e2013-03-21 12:37:02 +0100857static int cypress_tiocmiwait(struct tty_struct *tty, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858{
Alan Cox95da3102008-07-22 11:09:07 +0100859 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 struct cypress_private *priv = usb_get_serial_port_data(port);
Johan Hovold493516e2013-03-21 12:37:02 +0100861 char diff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
Johan Hovold493516e2013-03-21 12:37:02 +0100863 for (;;) {
864 interruptible_sleep_on(&port->delta_msr_wait);
865 /* see if a signal did it */
866 if (signal_pending(current))
867 return -ERESTARTSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868
Johan Hovold493516e2013-03-21 12:37:02 +0100869 if (port->serial->disconnected)
870 return -EIO;
Johan Hovold356050d2013-03-19 09:21:13 +0100871
Johan Hovold493516e2013-03-21 12:37:02 +0100872 diff = priv->diff_status;
873 if (diff == 0)
874 return -EIO; /* no change => error */
Johan Hovold356050d2013-03-19 09:21:13 +0100875
Johan Hovold493516e2013-03-21 12:37:02 +0100876 /* consume all events */
877 priv->diff_status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878
Johan Hovold493516e2013-03-21 12:37:02 +0100879 /* return 0 if caller wanted to know about
880 these bits */
881 if (((arg & TIOCM_RNG) && (diff & UART_RI)) ||
882 ((arg & TIOCM_DSR) && (diff & UART_DSR)) ||
883 ((arg & TIOCM_CD) && (diff & UART_CD)) ||
884 ((arg & TIOCM_CTS) && (diff & UART_CTS)))
885 return 0;
886 /* otherwise caller can't care less about what
887 * happened, and so we continue to wait for
888 * more events.
889 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891
Johan Hovold493516e2013-03-21 12:37:02 +0100892 return 0;
893}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894
Alan Cox95da3102008-07-22 11:09:07 +0100895static void cypress_set_termios(struct tty_struct *tty,
896 struct usb_serial_port *port, struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897{
898 struct cypress_private *priv = usb_get_serial_port_data(port);
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700899 struct device *dev = &port->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 int data_bits, stop_bits, parity_type, parity_enable;
Alan Cox8873aaa2008-03-10 21:59:28 +0000901 unsigned cflag, iflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 unsigned long flags;
903 __u8 oldlines;
Lonnie Mendez3cb4a4f2005-05-03 17:02:20 -0500904 int linechange = 0;
Lonnie Mendezb9db07f2005-07-12 17:21:31 -0500905
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 spin_lock_irqsave(&priv->lock, flags);
Alan Coxfe1ae7f2009-09-19 13:13:33 -0700907 /* We can't clean this one up as we don't know the device type
908 early enough */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 if (!priv->termios_initialized) {
910 if (priv->chiptype == CT_EARTHMATE) {
Alan Coxadc8d742012-07-14 15:31:47 +0100911 tty->termios = tty_std_termios;
912 tty->termios.c_cflag = B4800 | CS8 | CREAD | HUPCL |
Lonnie Mendezb9db07f2005-07-12 17:21:31 -0500913 CLOCAL;
Alan Coxadc8d742012-07-14 15:31:47 +0100914 tty->termios.c_ispeed = 4800;
915 tty->termios.c_ospeed = 4800;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 } else if (priv->chiptype == CT_CYPHIDCOM) {
Alan Coxadc8d742012-07-14 15:31:47 +0100917 tty->termios = tty_std_termios;
918 tty->termios.c_cflag = B9600 | CS8 | CREAD | HUPCL |
Lonnie Mendezb9db07f2005-07-12 17:21:31 -0500919 CLOCAL;
Alan Coxadc8d742012-07-14 15:31:47 +0100920 tty->termios.c_ispeed = 9600;
921 tty->termios.c_ospeed = 9600;
Lonnie Mendeza5c44e22006-03-01 10:45:24 -0600922 } else if (priv->chiptype == CT_CA42V2) {
Alan Coxadc8d742012-07-14 15:31:47 +0100923 tty->termios = tty_std_termios;
924 tty->termios.c_cflag = B9600 | CS8 | CREAD | HUPCL |
Lonnie Mendeza5c44e22006-03-01 10:45:24 -0600925 CLOCAL;
Alan Coxadc8d742012-07-14 15:31:47 +0100926 tty->termios.c_ispeed = 9600;
927 tty->termios.c_ospeed = 9600;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 }
929 priv->termios_initialized = 1;
930 }
931 spin_unlock_irqrestore(&priv->lock, flags);
932
Alan Cox8873aaa2008-03-10 21:59:28 +0000933 /* Unsupported features need clearing */
Alan Coxadc8d742012-07-14 15:31:47 +0100934 tty->termios.c_cflag &= ~(CMSPAR|CRTSCTS);
Alan Cox8873aaa2008-03-10 21:59:28 +0000935
Alan Coxadc8d742012-07-14 15:31:47 +0100936 cflag = tty->termios.c_cflag;
937 iflag = tty->termios.c_iflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938
939 /* check if there are new settings */
940 if (old_termios) {
Alan Cox8873aaa2008-03-10 21:59:28 +0000941 spin_lock_irqsave(&priv->lock, flags);
Alan Coxadc8d742012-07-14 15:31:47 +0100942 priv->tmp_termios = tty->termios;
Alan Cox8873aaa2008-03-10 21:59:28 +0000943 spin_unlock_irqrestore(&priv->lock, flags);
944 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945
946 /* set number of data bits, parity, stop bits */
947 /* when parity is disabled the parity type bit is ignored */
948
Lonnie Mendezb9db07f2005-07-12 17:21:31 -0500949 /* 1 means 2 stop bits, 0 means 1 stop bit */
950 stop_bits = cflag & CSTOPB ? 1 : 0;
951
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 if (cflag & PARENB) {
953 parity_enable = 1;
Lonnie Mendezb9db07f2005-07-12 17:21:31 -0500954 /* 1 means odd parity, 0 means even parity */
955 parity_type = cflag & PARODD ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 } else
957 parity_enable = parity_type = 0;
958
Alan Cox77336822008-07-22 11:10:53 +0100959 switch (cflag & CSIZE) {
960 case CS5:
961 data_bits = 0;
962 break;
963 case CS6:
964 data_bits = 1;
965 break;
966 case CS7:
967 data_bits = 2;
968 break;
969 case CS8:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 data_bits = 3;
Alan Cox77336822008-07-22 11:10:53 +0100971 break;
972 default:
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700973 dev_err(dev, "%s - CSIZE was set, but not CS5-CS8\n", __func__);
Alan Cox77336822008-07-22 11:10:53 +0100974 data_bits = 3;
975 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 spin_lock_irqsave(&priv->lock, flags);
977 oldlines = priv->line_control;
978 if ((cflag & CBAUD) == B0) {
979 /* drop dtr and rts */
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700980 dev_dbg(dev, "%s - dropping the lines, baud rate 0bps\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 priv->line_control &= ~(CONTROL_DTR | CONTROL_RTS);
Alan Cox8873aaa2008-03-10 21:59:28 +0000982 } else
Lonnie Mendez3cb4a4f2005-05-03 17:02:20 -0500983 priv->line_control = (CONTROL_DTR | CONTROL_RTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 spin_unlock_irqrestore(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700986 dev_dbg(dev, "%s - sending %d stop_bits, %d parity_enable, %d parity_type, %d data_bits (+5)\n",
987 __func__, stop_bits, parity_enable, parity_type, data_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988
Alan Cox813a2242008-07-22 11:10:36 +0100989 cypress_serial_control(tty, port, tty_get_baud_rate(tty),
990 data_bits, stop_bits,
991 parity_enable, parity_type,
992 0, CYPRESS_SET_CONFIG);
Lonnie Mendezb9db07f2005-07-12 17:21:31 -0500993
994 /* we perform a CYPRESS_GET_CONFIG so that the current settings are
995 * filled into the private structure this should confirm that all is
996 * working if it returns what we just set */
Alan Cox95da3102008-07-22 11:09:07 +0100997 cypress_serial_control(tty, port, 0, 0, 0, 0, 0, 0, CYPRESS_GET_CONFIG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998
Lonnie Mendezb9db07f2005-07-12 17:21:31 -0500999 /* Here we can define custom tty settings for devices; the main tty
1000 * termios flag base comes from empeg.c */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001002 spin_lock_irqsave(&priv->lock, flags);
Alan Cox813a2242008-07-22 11:10:36 +01001003 if (priv->chiptype == CT_EARTHMATE && priv->baud_rate == 4800) {
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -07001004 dev_dbg(dev, "Using custom termios settings for a baud rate of 4800bps.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 /* define custom termios settings for NMEA protocol */
1006
Alan Coxadc8d742012-07-14 15:31:47 +01001007 tty->termios.c_iflag /* input modes - */
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001008 &= ~(IGNBRK /* disable ignore break */
1009 | BRKINT /* disable break causes interrupt */
1010 | PARMRK /* disable mark parity errors */
1011 | ISTRIP /* disable clear high bit of input char */
1012 | INLCR /* disable translate NL to CR */
1013 | IGNCR /* disable ignore CR */
1014 | ICRNL /* disable translate CR to NL */
1015 | IXON); /* disable enable XON/XOFF flow control */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016
Alan Coxadc8d742012-07-14 15:31:47 +01001017 tty->termios.c_oflag /* output modes */
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001018 &= ~OPOST; /* disable postprocess output char */
1019
Alan Coxadc8d742012-07-14 15:31:47 +01001020 tty->termios.c_lflag /* line discipline modes */
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001021 &= ~(ECHO /* disable echo input characters */
1022 | ECHONL /* disable echo new line */
1023 | ICANON /* disable erase, kill, werase, and rprnt
1024 special characters */
1025 | ISIG /* disable interrupt, quit, and suspend
1026 special characters */
1027 | IEXTEN); /* disable non-POSIX special characters */
Lonnie Mendez3cb4a4f2005-05-03 17:02:20 -05001028 } /* CT_CYPHIDCOM: Application should handle this for device */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 linechange = (priv->line_control != oldlines);
1031 spin_unlock_irqrestore(&priv->lock, flags);
1032
1033 /* if necessary, set lines */
Lonnie Mendez3cb4a4f2005-05-03 17:02:20 -05001034 if (linechange) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 priv->cmd_ctrl = 1;
Alan Cox95da3102008-07-22 11:09:07 +01001036 cypress_write(tty, port, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038} /* cypress_set_termios */
1039
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001040
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041/* returns amount of data still left in soft buffer */
Alan Cox95da3102008-07-22 11:09:07 +01001042static int cypress_chars_in_buffer(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043{
Alan Cox95da3102008-07-22 11:09:07 +01001044 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 struct cypress_private *priv = usb_get_serial_port_data(port);
1046 int chars = 0;
1047 unsigned long flags;
1048
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 spin_lock_irqsave(&priv->lock, flags);
Johan Hovold117fb8d2010-05-16 20:33:50 +02001050 chars = kfifo_len(&priv->write_fifo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 spin_unlock_irqrestore(&priv->lock, flags);
1052
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -07001053 dev_dbg(&port->dev, "%s - returns %d\n", __func__, chars);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 return chars;
1055}
1056
1057
Alan Cox95da3102008-07-22 11:09:07 +01001058static void cypress_throttle(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059{
Alan Cox95da3102008-07-22 11:09:07 +01001060 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 struct cypress_private *priv = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062
Oliver Neukum63832512009-10-07 10:50:23 +02001063 spin_lock_irq(&priv->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 priv->rx_flags = THROTTLED;
Oliver Neukum63832512009-10-07 10:50:23 +02001065 spin_unlock_irq(&priv->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066}
1067
1068
Alan Cox95da3102008-07-22 11:09:07 +01001069static void cypress_unthrottle(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070{
Alan Cox95da3102008-07-22 11:09:07 +01001071 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 struct cypress_private *priv = usb_get_serial_port_data(port);
1073 int actually_throttled, result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074
Oliver Neukum63832512009-10-07 10:50:23 +02001075 spin_lock_irq(&priv->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 actually_throttled = priv->rx_flags & ACTUALLY_THROTTLED;
1077 priv->rx_flags = 0;
Oliver Neukum63832512009-10-07 10:50:23 +02001078 spin_unlock_irq(&priv->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079
Mike Isely78aef512006-08-29 22:07:11 -05001080 if (!priv->comm_is_ok)
1081 return;
1082
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 if (actually_throttled) {
Oliver Neukum63832512009-10-07 10:50:23 +02001084 result = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL);
Mike Isely78aef512006-08-29 22:07:11 -05001085 if (result) {
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001086 dev_err(&port->dev, "%s - failed submitting read urb, "
Harvey Harrison441b62c2008-03-03 16:08:34 -08001087 "error %d\n", __func__, result);
Mike Isely78aef512006-08-29 22:07:11 -05001088 cypress_set_dead(port);
1089 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 }
1091}
1092
1093
David Howells7d12e782006-10-05 14:55:46 +01001094static void cypress_read_int_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095{
Ming Leicdc97792008-02-24 18:41:47 +08001096 struct usb_serial_port *port = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 struct cypress_private *priv = usb_get_serial_port_data(port);
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -07001098 struct device *dev = &urb->dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 struct tty_struct *tty;
1100 unsigned char *data = urb->transfer_buffer;
1101 unsigned long flags;
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001102 char tty_flag = TTY_NORMAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 int havedata = 0;
1104 int bytes = 0;
1105 int result;
1106 int i = 0;
Greg Kroah-Hartman8d7bc552007-06-15 15:44:13 -07001107 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108
Greg Kroah-Hartman8d7bc552007-06-15 15:44:13 -07001109 switch (status) {
Mike Isely78aef512006-08-29 22:07:11 -05001110 case 0: /* success */
1111 break;
1112 case -ECONNRESET:
1113 case -ENOENT:
1114 case -ESHUTDOWN:
1115 /* precursor to disconnect so just go away */
1116 return;
1117 case -EPIPE:
Alan Stern4d2fae82009-07-09 12:59:57 -04001118 /* Can't call usb_clear_halt while in_interrupt */
1119 /* FALLS THROUGH */
Mike Isely78aef512006-08-29 22:07:11 -05001120 default:
1121 /* something ugly is going on... */
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -07001122 dev_err(dev, "%s - unexpected nonzero read status received: %d\n",
1123 __func__, status);
Mike Isely78aef512006-08-29 22:07:11 -05001124 cypress_set_dead(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 return;
1126 }
1127
1128 spin_lock_irqsave(&priv->lock, flags);
1129 if (priv->rx_flags & THROTTLED) {
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -07001130 dev_dbg(dev, "%s - now throttling\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 priv->rx_flags |= ACTUALLY_THROTTLED;
1132 spin_unlock_irqrestore(&priv->lock, flags);
1133 return;
1134 }
1135 spin_unlock_irqrestore(&priv->lock, flags);
1136
Alan Cox4a90f092008-10-13 10:39:46 +01001137 tty = tty_port_tty_get(&port->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 if (!tty) {
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -07001139 dev_dbg(dev, "%s - bad tty pointer - exiting\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 return;
1141 }
1142
1143 spin_lock_irqsave(&priv->lock, flags);
Mike Isely3416eaa2008-02-10 20:23:19 -06001144 result = urb->actual_length;
1145 switch (priv->pkt_fmt) {
1146 default:
1147 case packet_format_1:
1148 /* This is for the CY7C64013... */
1149 priv->current_status = data[0] & 0xF8;
1150 bytes = data[1] + 2;
1151 i = 2;
1152 if (bytes > 2)
1153 havedata = 1;
1154 break;
1155 case packet_format_2:
1156 /* This is for the CY7C63743... */
1157 priv->current_status = data[0] & 0xF8;
1158 bytes = (data[0] & 0x07) + 1;
1159 i = 1;
1160 if (bytes > 1)
1161 havedata = 1;
1162 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 }
1164 spin_unlock_irqrestore(&priv->lock, flags);
Mike Isely3416eaa2008-02-10 20:23:19 -06001165 if (result < bytes) {
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -07001166 dev_dbg(dev,
1167 "%s - wrong packet size - received %d bytes but packet said %d bytes\n",
1168 __func__, result, bytes);
Mike Isely3416eaa2008-02-10 20:23:19 -06001169 goto continue_read;
1170 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171
Greg Kroah-Hartman59d33f22012-09-18 09:58:57 +01001172 usb_serial_debug_data(&port->dev, __func__, urb->actual_length, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173
1174 spin_lock_irqsave(&priv->lock, flags);
1175 /* check to see if status has changed */
Mike Isely67683062008-02-10 20:23:28 -06001176 if (priv->current_status != priv->prev_status) {
1177 priv->diff_status |= priv->current_status ^
1178 priv->prev_status;
Johan Hovold356050d2013-03-19 09:21:13 +01001179 wake_up_interruptible(&port->delta_msr_wait);
Mike Isely67683062008-02-10 20:23:28 -06001180 priv->prev_status = priv->current_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 }
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001182 spin_unlock_irqrestore(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001184 /* hangup, as defined in acm.c... this might be a bad place for it
1185 * though */
Alan Coxadc8d742012-07-14 15:31:47 +01001186 if (tty && !(tty->termios.c_cflag & CLOCAL) &&
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001187 !(priv->current_status & UART_CD)) {
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -07001188 dev_dbg(dev, "%s - calling hangup\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 tty_hangup(tty);
1190 goto continue_read;
1191 }
1192
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001193 /* There is one error bit... I'm assuming it is a parity error
1194 * indicator as the generic firmware will set this bit to 1 if a
1195 * parity error occurs.
1196 * I can not find reference to any other error events. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 spin_lock_irqsave(&priv->lock, flags);
1198 if (priv->current_status & CYP_ERROR) {
1199 spin_unlock_irqrestore(&priv->lock, flags);
1200 tty_flag = TTY_PARITY;
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -07001201 dev_dbg(dev, "%s - Parity Error detected\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 } else
1203 spin_unlock_irqrestore(&priv->lock, flags);
1204
1205 /* process read if there is data other than line status */
Jiri Slaby2e124b42013-01-03 15:53:06 +01001206 if (bytes > i) {
Jiri Slaby2f693352013-01-03 15:53:02 +01001207 tty_insert_flip_string_fixed_flag(&port->port, data + i,
Johan Hovold70ced222010-05-07 19:46:56 +02001208 tty_flag, bytes - i);
Jiri Slaby2e124b42013-01-03 15:53:06 +01001209 tty_flip_buffer_push(&port->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 }
1211
1212 spin_lock_irqsave(&priv->lock, flags);
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001213 /* control and status byte(s) are also counted */
1214 priv->bytes_in += bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 spin_unlock_irqrestore(&priv->lock, flags);
1216
1217continue_read:
Alan Cox4a90f092008-10-13 10:39:46 +01001218 tty_kref_put(tty);
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001219
Alan Stern1f871582010-02-17 10:05:47 -05001220 /* Continue trying to always read */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221
Alan Stern1f871582010-02-17 10:05:47 -05001222 if (priv->comm_is_ok) {
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001223 usb_fill_int_urb(port->interrupt_in_urb, port->serial->dev,
1224 usb_rcvintpipe(port->serial->dev,
1225 port->interrupt_in_endpointAddress),
1226 port->interrupt_in_urb->transfer_buffer,
1227 port->interrupt_in_urb->transfer_buffer_length,
Alan Cox813a2242008-07-22 11:10:36 +01001228 cypress_read_int_callback, port,
1229 priv->read_urb_interval);
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001230 result = usb_submit_urb(port->interrupt_in_urb, GFP_ATOMIC);
Alan Stern1f871582010-02-17 10:05:47 -05001231 if (result && result != -EPERM) {
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -07001232 dev_err(dev, "%s - failed resubmitting read urb, error %d\n",
1233 __func__, result);
Mike Isely78aef512006-08-29 22:07:11 -05001234 cypress_set_dead(port);
1235 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237} /* cypress_read_int_callback */
1238
1239
David Howells7d12e782006-10-05 14:55:46 +01001240static void cypress_write_int_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241{
Ming Leicdc97792008-02-24 18:41:47 +08001242 struct usb_serial_port *port = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 struct cypress_private *priv = usb_get_serial_port_data(port);
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -07001244 struct device *dev = &urb->dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 int result;
Greg Kroah-Hartman8d7bc552007-06-15 15:44:13 -07001246 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247
Greg Kroah-Hartman8d7bc552007-06-15 15:44:13 -07001248 switch (status) {
Alan Cox813a2242008-07-22 11:10:36 +01001249 case 0:
1250 /* success */
1251 break;
1252 case -ECONNRESET:
1253 case -ENOENT:
1254 case -ESHUTDOWN:
1255 /* this urb is terminated, clean up */
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -07001256 dev_dbg(dev, "%s - urb shutting down with status: %d\n",
1257 __func__, status);
Alan Cox813a2242008-07-22 11:10:36 +01001258 priv->write_urb_in_use = 0;
1259 return;
1260 case -EPIPE: /* no break needed; clear halt and resubmit */
1261 if (!priv->comm_is_ok)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 break;
Alan Cox813a2242008-07-22 11:10:36 +01001263 usb_clear_halt(port->serial->dev, 0x02);
1264 /* error in the urb, so we have to resubmit it */
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -07001265 dev_dbg(dev, "%s - nonzero write bulk status received: %d\n",
Alan Cox813a2242008-07-22 11:10:36 +01001266 __func__, status);
1267 port->interrupt_out_urb->transfer_buffer_length = 1;
Alan Cox813a2242008-07-22 11:10:36 +01001268 result = usb_submit_urb(port->interrupt_out_urb, GFP_ATOMIC);
1269 if (!result)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 return;
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -07001271 dev_err(dev, "%s - failed resubmitting write urb, error %d\n",
1272 __func__, result);
Alan Cox813a2242008-07-22 11:10:36 +01001273 cypress_set_dead(port);
1274 break;
1275 default:
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -07001276 dev_err(dev, "%s - unexpected nonzero write status received: %d\n",
1277 __func__, status);
Alan Cox813a2242008-07-22 11:10:36 +01001278 cypress_set_dead(port);
1279 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 priv->write_urb_in_use = 0;
Alan Cox813a2242008-07-22 11:10:36 +01001282
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 /* send any buffered data */
1284 cypress_send(port);
1285}
1286
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -07001287module_usb_serial_driver(serial_drivers, id_table_combined);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288
Alan Cox813a2242008-07-22 11:10:36 +01001289MODULE_AUTHOR(DRIVER_AUTHOR);
1290MODULE_DESCRIPTION(DRIVER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291MODULE_LICENSE("GPL");
1292
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293module_param(stats, bool, S_IRUGO | S_IWUSR);
1294MODULE_PARM_DESC(stats, "Enable statistics or not");
Lonnie Mendez3cb4a4f2005-05-03 17:02:20 -05001295module_param(interval, int, S_IRUGO | S_IWUSR);
1296MODULE_PARM_DESC(interval, "Overrides interrupt interval");
Mike Frysingerc3126592009-12-18 16:33:03 -05001297module_param(unstable_bauds, bool, S_IRUGO | S_IWUSR);
1298MODULE_PARM_DESC(unstable_bauds, "Allow unstable baud rates");