blob: bbeeb2bd55a83cebf4cfec9b4b8f2876edde1ca0 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/slab.h>
31#include <linux/tty.h>
32#include <linux/tty_driver.h>
33#include <linux/tty_flip.h>
34#include <linux/module.h>
35#include <linux/moduleparam.h>
36#include <linux/spinlock.h>
37#include <linux/usb.h>
Greg Kroah-Hartmana9698882006-07-11 21:22:58 -070038#include <linux/usb/serial.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/serial.h>
Johan Hovold117fb8d2010-05-16 20:33:50 +020040#include <linux/kfifo.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <linux/delay.h>
Alan Cox813a2242008-07-22 11:10:36 +010042#include <linux/uaccess.h>
Johan Hovold0f2c2d72009-12-31 16:48:01 +010043#include <asm/unaligned.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include "cypress_m8.h"
46
47
Rusty Russell90ab5ee2012-01-13 09:32:20 +103048static bool stats;
Lonnie Mendez3cb4a4f2005-05-03 17:02:20 -050049static int interval;
Rusty Russell90ab5ee2012-01-13 09:32:20 +103050static bool unstable_bauds;
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#define DRIVER_AUTHOR "Lonnie Mendez <dignome@gmail.com>, Neil Whelchel <koyama@firstlight.net>"
53#define DRIVER_DESC "Cypress USB to Serial Driver"
54
55/* write buffer size defines */
56#define CYPRESS_BUF_SIZE 1024
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Németh Márton7d40d7e2010-01-10 15:34:24 +010058static const struct usb_device_id id_table_earthmate[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 { USB_DEVICE(VENDOR_ID_DELORME, PRODUCT_ID_EARTHMATEUSB) },
Lonnie Mendez25b6f082005-05-10 17:09:52 -050060 { USB_DEVICE(VENDOR_ID_DELORME, PRODUCT_ID_EARTHMATEUSB_LT20) },
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 { } /* Terminating entry */
62};
63
Németh Márton7d40d7e2010-01-10 15:34:24 +010064static const struct usb_device_id id_table_cyphidcomrs232[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 { USB_DEVICE(VENDOR_ID_CYPRESS, PRODUCT_ID_CYPHIDCOM) },
Dmitry Shapin6f6f06e2008-03-04 15:25:10 -080066 { USB_DEVICE(VENDOR_ID_POWERCOM, PRODUCT_ID_UPS) },
Robert Butora65295912013-05-31 18:09:51 +030067 { USB_DEVICE(VENDOR_ID_FRWD, PRODUCT_ID_CYPHIDCOM_FRWD) },
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) },
Robert Butora65295912013-05-31 18:09:51 +030081 { USB_DEVICE(VENDOR_ID_FRWD, PRODUCT_ID_CYPHIDCOM_FRWD) },
Lonnie Mendeza5c44e22006-03-01 10:45:24 -060082 { USB_DEVICE(VENDOR_ID_DAZZLE, PRODUCT_ID_CA42) },
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 { } /* Terminating entry */
84};
85
Alan Cox813a2242008-07-22 11:10:36 +010086MODULE_DEVICE_TABLE(usb, id_table_combined);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
Mike Isely3416eaa2008-02-10 20:23:19 -060088enum packet_format {
89 packet_format_1, /* b0:status, b1:payload count */
90 packet_format_2 /* b0[7:3]:status, b0[2:0]:payload count */
91};
92
Linus Torvalds1da177e2005-04-16 15:20:36 -070093struct cypress_private {
94 spinlock_t lock; /* private lock */
95 int chiptype; /* identifier of device, for quirks/etc */
96 int bytes_in; /* used for statistics */
97 int bytes_out; /* used for statistics */
98 int cmd_count; /* used for statistics */
99 int cmd_ctrl; /* always set this to 1 before issuing a command */
Johan Hovold117fb8d2010-05-16 20:33:50 +0200100 struct kfifo write_fifo; /* write fifo */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 int write_urb_in_use; /* write urb in use indicator */
Mike Isely0257fa92006-08-29 22:06:59 -0500102 int write_urb_interval; /* interval to use for write urb */
103 int read_urb_interval; /* interval to use for read urb */
Mike Isely78aef512006-08-29 22:07:11 -0500104 int comm_is_ok; /* true if communication is (still) ok */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 int termios_initialized;
106 __u8 line_control; /* holds dtr / rts value */
107 __u8 current_status; /* received from last read - info on dsr,cts,cd,ri,etc */
108 __u8 current_config; /* stores the current configuration byte */
109 __u8 rx_flags; /* throttling - used from whiteheat/ftdi_sio */
Mike Isely3416eaa2008-02-10 20:23:19 -0600110 enum packet_format pkt_fmt; /* format to use for packet send / receive */
Mike Isely3d6aa322008-02-10 20:23:24 -0600111 int get_cfg_unsafe; /* If true, the CYPRESS_GET_CONFIG is unsafe */
Alan Cox813a2242008-07-22 11:10:36 +0100112 int baud_rate; /* stores current baud rate in
113 integer form */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 int isthrottled; /* if throttled, discard reads */
Johan Hovoldab62a582014-01-02 22:49:27 +0100115 char prev_status; /* used for TIOCMIWAIT */
Daniel Mack3ad2f3f2010-02-03 08:01:28 +0800116 /* we pass a pointer to this as the argument sent to
Alan Cox813a2242008-07-22 11:10:36 +0100117 cypress_set_termios old_termios */
Alan Cox606d0992006-12-08 02:38:45 -0800118 struct ktermios tmp_termios; /* stores the old termios settings */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119};
120
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121/* function prototypes for the Cypress USB to serial device */
Johan Hovold5c1a0f42012-10-17 13:34:55 +0200122static int cypress_earthmate_port_probe(struct usb_serial_port *port);
123static int cypress_hidcom_port_probe(struct usb_serial_port *port);
124static int cypress_ca42v2_port_probe(struct usb_serial_port *port);
125static int cypress_port_remove(struct usb_serial_port *port);
Alan Coxa509a7e2009-09-19 13:13:26 -0700126static int cypress_open(struct tty_struct *tty, struct usb_serial_port *port);
Alan Cox335f8512009-06-11 12:26:29 +0100127static void cypress_close(struct usb_serial_port *port);
128static void cypress_dtr_rts(struct usb_serial_port *port, int on);
Alan Cox813a2242008-07-22 11:10:36 +0100129static int cypress_write(struct tty_struct *tty, struct usb_serial_port *port,
130 const unsigned char *buf, int count);
131static void cypress_send(struct usb_serial_port *port);
132static int cypress_write_room(struct tty_struct *tty);
Alan Cox813a2242008-07-22 11:10:36 +0100133static void cypress_set_termios(struct tty_struct *tty,
134 struct usb_serial_port *port, struct ktermios *old);
Alan Cox60b33c12011-02-14 16:26:14 +0000135static int cypress_tiocmget(struct tty_struct *tty);
Alan Cox20b9d172011-02-14 16:26:50 +0000136static int cypress_tiocmset(struct tty_struct *tty,
Alan Cox813a2242008-07-22 11:10:36 +0100137 unsigned int set, unsigned int clear);
138static 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 Hovoldab62a582014-01-02 22:49:27 +0100163 .tiocmiwait = usb_serial_generic_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 Hovoldab62a582014-01-02 22:49:27 +0100189 .tiocmiwait = usb_serial_generic_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 Hovoldab62a582014-01-02 22:49:27 +0100215 .tiocmiwait = usb_serial_generic_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
Robert Butora65295912013-05-31 18:09:51 +0300232/* FRWD Dongle hidcom needs to skip reset and speed checks */
233static inline bool is_frwd(struct usb_device *dev)
234{
235 return ((le16_to_cpu(dev->descriptor.idVendor) == VENDOR_ID_FRWD) &&
236 (le16_to_cpu(dev->descriptor.idProduct) == PRODUCT_ID_CYPHIDCOM_FRWD));
237}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
Alan Cox8873aaa2008-03-10 21:59:28 +0000239static int analyze_baud_rate(struct usb_serial_port *port, speed_t new_rate)
Mike Isely92983c22008-02-10 20:23:32 -0600240{
Mike Isely92983c22008-02-10 20:23:32 -0600241 struct cypress_private *priv;
242 priv = usb_get_serial_port_data(port);
243
Mike Frysingerc3126592009-12-18 16:33:03 -0500244 if (unstable_bauds)
245 return new_rate;
246
Robert Butora65295912013-05-31 18:09:51 +0300247 /* FRWD Dongle uses 115200 bps */
248 if (is_frwd(port->serial->dev))
249 return new_rate;
250
Mike Isely92983c22008-02-10 20:23:32 -0600251 /*
252 * The general purpose firmware for the Cypress M8 allows for
253 * a maximum speed of 57600bps (I have no idea whether DeLorme
254 * chose to use the general purpose firmware or not), if you
255 * need to modify this speed setting for your own project
256 * please add your own chiptype and modify the code likewise.
257 * The Cypress HID->COM device will work successfully up to
258 * 115200bps (but the actual throughput is around 3kBps).
259 */
Mike Isely92983c22008-02-10 20:23:32 -0600260 if (port->serial->dev->speed == USB_SPEED_LOW) {
261 /*
262 * Mike Isely <isely@pobox.com> 2-Feb-2008: The
263 * Cypress app note that describes this mechanism
264 * states the the low-speed part can't handle more
265 * than 800 bytes/sec, in which case 4800 baud is the
266 * safest speed for a part like that.
267 */
268 if (new_rate > 4800) {
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700269 dev_dbg(&port->dev,
270 "%s - failed setting baud rate, device incapable speed %d\n",
271 __func__, new_rate);
Mike Isely92983c22008-02-10 20:23:32 -0600272 return -1;
273 }
274 }
275 switch (priv->chiptype) {
276 case CT_EARTHMATE:
277 if (new_rate <= 600) {
278 /* 300 and 600 baud rates are supported under
279 * the generic firmware, but are not used with
280 * NMEA and SiRF protocols */
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700281 dev_dbg(&port->dev,
Johan Hovoldd9a38a82014-03-12 19:09:42 +0100282 "%s - failed setting baud rate, unsupported speed of %d on Earthmate GPS\n",
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700283 __func__, new_rate);
Mike Isely92983c22008-02-10 20:23:32 -0600284 return -1;
285 }
286 break;
287 default:
288 break;
289 }
290 return new_rate;
291}
292
293
Steven Cole093cf722005-05-03 19:07:24 -0600294/* This function can either set or retrieve the current serial line settings */
Alan Cox813a2242008-07-22 11:10:36 +0100295static int cypress_serial_control(struct tty_struct *tty,
Alan Cox95da3102008-07-22 11:09:07 +0100296 struct usb_serial_port *port, speed_t baud_rate, int data_bits,
297 int stop_bits, int parity_enable, int parity_type, int reset,
298 int cypress_request_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299{
Lonnie Mendez3cb4a4f2005-05-03 17:02:20 -0500300 int new_baudrate = 0, retval = 0, tries = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 struct cypress_private *priv;
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700302 struct device *dev = &port->dev;
Johan Hovold09546442009-12-28 23:01:48 +0100303 u8 *feature_buffer;
304 const unsigned int feature_len = 5;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 unsigned long flags;
306
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 priv = usb_get_serial_port_data(port);
308
Mike Isely78aef512006-08-29 22:07:11 -0500309 if (!priv->comm_is_ok)
310 return -ENODEV;
311
Johan Hovold09546442009-12-28 23:01:48 +0100312 feature_buffer = kcalloc(feature_len, sizeof(u8), GFP_KERNEL);
313 if (!feature_buffer)
314 return -ENOMEM;
315
Alan Cox813a2242008-07-22 11:10:36 +0100316 switch (cypress_request_type) {
317 case CYPRESS_SET_CONFIG:
Alan Cox813a2242008-07-22 11:10:36 +0100318 /* 0 means 'Hang up' so doesn't change the true bit rate */
Mike Frysinger2805eb12009-12-18 16:33:02 -0500319 new_baudrate = priv->baud_rate;
320 if (baud_rate && baud_rate != priv->baud_rate) {
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700321 dev_dbg(dev, "%s - baud rate is changing\n", __func__);
Alan Cox813a2242008-07-22 11:10:36 +0100322 retval = analyze_baud_rate(port, baud_rate);
Mike Frysinger2805eb12009-12-18 16:33:02 -0500323 if (retval >= 0) {
Alan Cox813a2242008-07-22 11:10:36 +0100324 new_baudrate = retval;
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700325 dev_dbg(dev, "%s - New baud rate set to %d\n",
326 __func__, new_baudrate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 }
Alan Cox813a2242008-07-22 11:10:36 +0100328 }
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700329 dev_dbg(dev, "%s - baud rate is being sent as %d\n", __func__,
330 new_baudrate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
Alan Cox813a2242008-07-22 11:10:36 +0100332 /* fill the feature_buffer with new configuration */
Johan Hovold0f2c2d72009-12-31 16:48:01 +0100333 put_unaligned_le32(new_baudrate, feature_buffer);
Alan Cox813a2242008-07-22 11:10:36 +0100334 feature_buffer[4] |= data_bits; /* assign data bits in 2 bit space ( max 3 ) */
335 /* 1 bit gap */
336 feature_buffer[4] |= (stop_bits << 3); /* assign stop bits in 1 bit space */
337 feature_buffer[4] |= (parity_enable << 4); /* assign parity flag in 1 bit space */
338 feature_buffer[4] |= (parity_type << 5); /* assign parity type in 1 bit space */
339 /* 1 bit gap */
340 feature_buffer[4] |= (reset << 7); /* assign reset at end of byte, 1 bit space */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700342 dev_dbg(dev, "%s - device is being sent this feature report:\n", __func__);
343 dev_dbg(dev, "%s - %02X - %02X - %02X - %02X - %02X\n", __func__,
Alan Cox813a2242008-07-22 11:10:36 +0100344 feature_buffer[0], feature_buffer[1],
345 feature_buffer[2], feature_buffer[3],
346 feature_buffer[4]);
Lonnie Mendez3cb4a4f2005-05-03 17:02:20 -0500347
Alan Cox813a2242008-07-22 11:10:36 +0100348 do {
349 retval = usb_control_msg(port->serial->dev,
350 usb_sndctrlpipe(port->serial->dev, 0),
351 HID_REQ_SET_REPORT,
352 USB_DIR_OUT | USB_RECIP_INTERFACE | USB_TYPE_CLASS,
353 0x0300, 0, feature_buffer,
Johan Hovold09546442009-12-28 23:01:48 +0100354 feature_len, 500);
Lonnie Mendez3cb4a4f2005-05-03 17:02:20 -0500355
Alan Cox813a2242008-07-22 11:10:36 +0100356 if (tries++ >= 3)
357 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
Johan Hovold09546442009-12-28 23:01:48 +0100359 } while (retval != feature_len &&
Alan Cox813a2242008-07-22 11:10:36 +0100360 retval != -ENODEV);
Mike Isely93075542008-02-10 20:23:14 -0600361
Johan Hovold09546442009-12-28 23:01:48 +0100362 if (retval != feature_len) {
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700363 dev_err(dev, "%s - failed sending serial line settings - %d\n",
364 __func__, retval);
Alan Cox813a2242008-07-22 11:10:36 +0100365 cypress_set_dead(port);
366 } else {
367 spin_lock_irqsave(&priv->lock, flags);
368 priv->baud_rate = new_baudrate;
369 priv->current_config = feature_buffer[4];
370 spin_unlock_irqrestore(&priv->lock, flags);
371 /* If we asked for a speed change encode it */
372 if (baud_rate)
373 tty_encode_baud_rate(tty,
374 new_baudrate, new_baudrate);
375 }
376 break;
377 case CYPRESS_GET_CONFIG:
378 if (priv->get_cfg_unsafe) {
379 /* Not implemented for this device,
380 and if we try to do it we're likely
381 to crash the hardware. */
Johan Hovold09546442009-12-28 23:01:48 +0100382 retval = -ENOTTY;
383 goto out;
Alan Cox813a2242008-07-22 11:10:36 +0100384 }
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700385 dev_dbg(dev, "%s - retreiving serial line settings\n", __func__);
Alan Cox813a2242008-07-22 11:10:36 +0100386 do {
387 retval = usb_control_msg(port->serial->dev,
388 usb_rcvctrlpipe(port->serial->dev, 0),
389 HID_REQ_GET_REPORT,
390 USB_DIR_IN | USB_RECIP_INTERFACE | USB_TYPE_CLASS,
391 0x0300, 0, feature_buffer,
Johan Hovold09546442009-12-28 23:01:48 +0100392 feature_len, 500);
Lonnie Mendez3cb4a4f2005-05-03 17:02:20 -0500393
Alan Cox813a2242008-07-22 11:10:36 +0100394 if (tries++ >= 3)
395 break;
Johan Hovold09546442009-12-28 23:01:48 +0100396 } while (retval != feature_len
Alan Cox813a2242008-07-22 11:10:36 +0100397 && retval != -ENODEV);
Lonnie Mendez3cb4a4f2005-05-03 17:02:20 -0500398
Johan Hovold09546442009-12-28 23:01:48 +0100399 if (retval != feature_len) {
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700400 dev_err(dev, "%s - failed to retrieve serial line settings - %d\n",
401 __func__, retval);
Alan Cox813a2242008-07-22 11:10:36 +0100402 cypress_set_dead(port);
Johan Hovold09546442009-12-28 23:01:48 +0100403 goto out;
Alan Cox813a2242008-07-22 11:10:36 +0100404 } else {
405 spin_lock_irqsave(&priv->lock, flags);
406 /* store the config in one byte, and later
407 use bit masks to check values */
408 priv->current_config = feature_buffer[4];
Johan Hovold0f2c2d72009-12-31 16:48:01 +0100409 priv->baud_rate = get_unaligned_le32(feature_buffer);
Alan Cox813a2242008-07-22 11:10:36 +0100410 spin_unlock_irqrestore(&priv->lock, flags);
411 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 }
Lonnie Mendez3cb4a4f2005-05-03 17:02:20 -0500413 spin_lock_irqsave(&priv->lock, flags);
414 ++priv->cmd_count;
415 spin_unlock_irqrestore(&priv->lock, flags);
Johan Hovold09546442009-12-28 23:01:48 +0100416out:
417 kfree(feature_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 return retval;
419} /* cypress_serial_control */
420
421
Mike Isely78aef512006-08-29 22:07:11 -0500422static void cypress_set_dead(struct usb_serial_port *port)
423{
424 struct cypress_private *priv = usb_get_serial_port_data(port);
425 unsigned long flags;
426
427 spin_lock_irqsave(&priv->lock, flags);
428 if (!priv->comm_is_ok) {
429 spin_unlock_irqrestore(&priv->lock, flags);
430 return;
431 }
432 priv->comm_is_ok = 0;
433 spin_unlock_irqrestore(&priv->lock, flags);
434
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700435 dev_err(&port->dev, "cypress_m8 suspending failing port %d - "
Greg Kroah-Hartman11438322013-06-06 10:32:00 -0700436 "interval might be too short\n", port->port_number);
Mike Isely78aef512006-08-29 22:07:11 -0500437}
438
439
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440/*****************************************************************************
441 * Cypress serial driver functions
442 *****************************************************************************/
443
444
Johan Hovold5c1a0f42012-10-17 13:34:55 +0200445static int cypress_generic_port_probe(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446{
Johan Hovold5c1a0f42012-10-17 13:34:55 +0200447 struct usb_serial *serial = port->serial;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 struct cypress_private *priv;
449
Oliver Neukumc55aee12016-03-31 12:04:25 -0400450 if (!port->interrupt_out_urb || !port->interrupt_in_urb) {
451 dev_err(&port->dev, "required endpoint is missing\n");
452 return -ENODEV;
453 }
454
Alan Cox813a2242008-07-22 11:10:36 +0100455 priv = kzalloc(sizeof(struct cypress_private), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 if (!priv)
457 return -ENOMEM;
458
Mike Isely78aef512006-08-29 22:07:11 -0500459 priv->comm_is_ok = !0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 spin_lock_init(&priv->lock);
Johan Hovold117fb8d2010-05-16 20:33:50 +0200461 if (kfifo_alloc(&priv->write_fifo, CYPRESS_BUF_SIZE, GFP_KERNEL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 kfree(priv);
463 return -ENOMEM;
464 }
Alan Cox813a2242008-07-22 11:10:36 +0100465
Robert Butora65295912013-05-31 18:09:51 +0300466 /* Skip reset for FRWD device. It is a workaound:
467 device hangs if it receives SET_CONFIGURE in Configured
468 state. */
469 if (!is_frwd(serial->dev))
470 usb_reset_configuration(serial->dev);
Alan Cox813a2242008-07-22 11:10:36 +0100471
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 priv->cmd_ctrl = 0;
473 priv->line_control = 0;
474 priv->termios_initialized = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 priv->rx_flags = 0;
Mike Isely3416eaa2008-02-10 20:23:19 -0600476 /* Default packet format setting is determined by packet size.
477 Anything with a size larger then 9 must have a separate
478 count field since the 3 bit count field is otherwise too
479 small. Otherwise we can use the slightly more compact
480 format. This is in accordance with the cypress_m8 serial
481 converter app note. */
Alan Cox813a2242008-07-22 11:10:36 +0100482 if (port->interrupt_out_size > 9)
Mike Isely3416eaa2008-02-10 20:23:19 -0600483 priv->pkt_fmt = packet_format_1;
Alan Cox813a2242008-07-22 11:10:36 +0100484 else
Mike Isely3416eaa2008-02-10 20:23:19 -0600485 priv->pkt_fmt = packet_format_2;
Alan Cox813a2242008-07-22 11:10:36 +0100486
Mike Isely0257fa92006-08-29 22:06:59 -0500487 if (interval > 0) {
488 priv->write_urb_interval = interval;
489 priv->read_urb_interval = interval;
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700490 dev_dbg(&port->dev, "%s - read & write intervals forced to %d\n",
491 __func__, interval);
Mike Isely0257fa92006-08-29 22:06:59 -0500492 } else {
493 priv->write_urb_interval = port->interrupt_out_urb->interval;
494 priv->read_urb_interval = port->interrupt_in_urb->interval;
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700495 dev_dbg(&port->dev, "%s - intervals: read=%d write=%d\n",
496 __func__, priv->read_urb_interval,
497 priv->write_urb_interval);
Mike Isely0257fa92006-08-29 22:06:59 -0500498 }
499 usb_set_serial_port_data(port, priv);
Alan Cox813a2242008-07-22 11:10:36 +0100500
Johan Hovoldd7be6222013-06-26 16:47:23 +0200501 port->port.drain_delay = 256;
502
Lonnie Mendezb9db07f2005-07-12 17:21:31 -0500503 return 0;
504}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
506
Johan Hovold5c1a0f42012-10-17 13:34:55 +0200507static int cypress_earthmate_port_probe(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508{
Johan Hovold5c1a0f42012-10-17 13:34:55 +0200509 struct usb_serial *serial = port->serial;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 struct cypress_private *priv;
Johan Hovold5c1a0f42012-10-17 13:34:55 +0200511 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
Johan Hovold5c1a0f42012-10-17 13:34:55 +0200513 ret = cypress_generic_port_probe(port);
514 if (ret) {
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700515 dev_dbg(&port->dev, "%s - Failed setting up port\n", __func__);
Johan Hovold5c1a0f42012-10-17 13:34:55 +0200516 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 }
518
Mike Isely3d6aa322008-02-10 20:23:24 -0600519 priv = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 priv->chiptype = CT_EARTHMATE;
Mike Isely3416eaa2008-02-10 20:23:19 -0600521 /* All Earthmate devices use the separated-count packet
522 format! Idiotic. */
523 priv->pkt_fmt = packet_format_1;
Alan Cox813a2242008-07-22 11:10:36 +0100524 if (serial->dev->descriptor.idProduct !=
525 cpu_to_le16(PRODUCT_ID_EARTHMATEUSB)) {
Mike Isely3d6aa322008-02-10 20:23:24 -0600526 /* The old original USB Earthmate seemed able to
527 handle GET_CONFIG requests; everything they've
528 produced since that time crashes if this command is
529 attempted :-( */
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700530 dev_dbg(&port->dev,
531 "%s - Marking this device as unsafe for GET_CONFIG commands\n",
532 __func__);
Mike Isely3d6aa322008-02-10 20:23:24 -0600533 priv->get_cfg_unsafe = !0;
534 }
Lonnie Mendezb9db07f2005-07-12 17:21:31 -0500535
536 return 0;
Johan Hovold5c1a0f42012-10-17 13:34:55 +0200537}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
Johan Hovold5c1a0f42012-10-17 13:34:55 +0200539static int cypress_hidcom_port_probe(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540{
541 struct cypress_private *priv;
Johan Hovold5c1a0f42012-10-17 13:34:55 +0200542 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
Johan Hovold5c1a0f42012-10-17 13:34:55 +0200544 ret = cypress_generic_port_probe(port);
545 if (ret) {
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700546 dev_dbg(&port->dev, "%s - Failed setting up port\n", __func__);
Johan Hovold5c1a0f42012-10-17 13:34:55 +0200547 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 }
549
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700550 priv = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 priv->chiptype = CT_CYPHIDCOM;
Alan Cox813a2242008-07-22 11:10:36 +0100552
Lonnie Mendezb9db07f2005-07-12 17:21:31 -0500553 return 0;
Johan Hovold5c1a0f42012-10-17 13:34:55 +0200554}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
Johan Hovold5c1a0f42012-10-17 13:34:55 +0200556static int cypress_ca42v2_port_probe(struct usb_serial_port *port)
Lonnie Mendeza5c44e22006-03-01 10:45:24 -0600557{
558 struct cypress_private *priv;
Johan Hovold5c1a0f42012-10-17 13:34:55 +0200559 int ret;
Lonnie Mendeza5c44e22006-03-01 10:45:24 -0600560
Johan Hovold5c1a0f42012-10-17 13:34:55 +0200561 ret = cypress_generic_port_probe(port);
562 if (ret) {
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700563 dev_dbg(&port->dev, "%s - Failed setting up port\n", __func__);
Johan Hovold5c1a0f42012-10-17 13:34:55 +0200564 return ret;
Lonnie Mendeza5c44e22006-03-01 10:45:24 -0600565 }
566
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700567 priv = usb_get_serial_port_data(port);
Lonnie Mendeza5c44e22006-03-01 10:45:24 -0600568 priv->chiptype = CT_CA42V2;
569
570 return 0;
Johan Hovold5c1a0f42012-10-17 13:34:55 +0200571}
Lonnie Mendeza5c44e22006-03-01 10:45:24 -0600572
Johan Hovold5c1a0f42012-10-17 13:34:55 +0200573static int cypress_port_remove(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574{
575 struct cypress_private *priv;
576
Johan Hovold5c1a0f42012-10-17 13:34:55 +0200577 priv = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
Johan Hovold5c1a0f42012-10-17 13:34:55 +0200579 kfifo_free(&priv->write_fifo);
580 kfree(priv);
581
582 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583}
584
Alan Coxa509a7e2009-09-19 13:13:26 -0700585static int cypress_open(struct tty_struct *tty, struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586{
587 struct cypress_private *priv = usb_get_serial_port_data(port);
588 struct usb_serial *serial = port->serial;
589 unsigned long flags;
590 int result = 0;
591
Mike Isely78aef512006-08-29 22:07:11 -0500592 if (!priv->comm_is_ok)
593 return -EIO;
594
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 /* clear halts before open */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 usb_clear_halt(serial->dev, 0x81);
597 usb_clear_halt(serial->dev, 0x02);
598
599 spin_lock_irqsave(&priv->lock, flags);
600 /* reset read/write statistics */
601 priv->bytes_in = 0;
602 priv->bytes_out = 0;
603 priv->cmd_count = 0;
604 priv->rx_flags = 0;
605 spin_unlock_irqrestore(&priv->lock, flags);
606
Alan Cox335f8512009-06-11 12:26:29 +0100607 /* Set termios */
Alan Coxfe1ae7f2009-09-19 13:13:33 -0700608 cypress_send(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
Alan Cox95da3102008-07-22 11:09:07 +0100610 if (tty)
611 cypress_set_termios(tty, port, &priv->tmp_termios);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
613 /* setup the port and start reading from the device */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 usb_fill_int_urb(port->interrupt_in_urb, serial->dev,
615 usb_rcvintpipe(serial->dev, port->interrupt_in_endpointAddress),
Alan Cox813a2242008-07-22 11:10:36 +0100616 port->interrupt_in_urb->transfer_buffer,
617 port->interrupt_in_urb->transfer_buffer_length,
Mike Isely0257fa92006-08-29 22:06:59 -0500618 cypress_read_int_callback, port, priv->read_urb_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 result = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL);
620
Alan Cox813a2242008-07-22 11:10:36 +0100621 if (result) {
622 dev_err(&port->dev,
623 "%s - failed submitting read urb, error %d\n",
624 __func__, result);
Mike Isely78aef512006-08-29 22:07:11 -0500625 cypress_set_dead(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 }
Johan Hovoldd7be6222013-06-26 16:47:23 +0200627
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 return result;
629} /* cypress_open */
630
Alan Cox335f8512009-06-11 12:26:29 +0100631static void cypress_dtr_rts(struct usb_serial_port *port, int on)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632{
633 struct cypress_private *priv = usb_get_serial_port_data(port);
Alan Cox335f8512009-06-11 12:26:29 +0100634 /* drop dtr and rts */
Alan Cox335f8512009-06-11 12:26:29 +0100635 spin_lock_irq(&priv->lock);
636 if (on == 0)
637 priv->line_control = 0;
638 else
639 priv->line_control = CONTROL_DTR | CONTROL_RTS;
640 priv->cmd_ctrl = 1;
641 spin_unlock_irq(&priv->lock);
642 cypress_write(NULL, port, NULL, 0);
643}
644
645static void cypress_close(struct usb_serial_port *port)
646{
647 struct cypress_private *priv = usb_get_serial_port_data(port);
Johan Hovold117fb8d2010-05-16 20:33:50 +0200648 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
Johan Hovold117fb8d2010-05-16 20:33:50 +0200650 spin_lock_irqsave(&priv->lock, flags);
651 kfifo_reset_out(&priv->write_fifo);
652 spin_unlock_irqrestore(&priv->lock, flags);
653
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700654 dev_dbg(&port->dev, "%s - stopping urbs\n", __func__);
Alan Cox813a2242008-07-22 11:10:36 +0100655 usb_kill_urb(port->interrupt_in_urb);
656 usb_kill_urb(port->interrupt_out_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 if (stats)
Alan Cox813a2242008-07-22 11:10:36 +0100659 dev_info(&port->dev, "Statistics: %d Bytes In | %d Bytes Out | %d Commands Issued\n",
660 priv->bytes_in, priv->bytes_out, priv->cmd_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661} /* cypress_close */
662
663
Alan Cox95da3102008-07-22 11:09:07 +0100664static int cypress_write(struct tty_struct *tty, struct usb_serial_port *port,
665 const unsigned char *buf, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666{
667 struct cypress_private *priv = usb_get_serial_port_data(port);
Alan Cox813a2242008-07-22 11:10:36 +0100668
Greg Kroah-Hartman11438322013-06-06 10:32:00 -0700669 dev_dbg(&port->dev, "%s - %d bytes\n", __func__, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
671 /* line control commands, which need to be executed immediately,
672 are not put into the buffer for obvious reasons.
673 */
674 if (priv->cmd_ctrl) {
675 count = 0;
676 goto finish;
677 }
Alan Cox813a2242008-07-22 11:10:36 +0100678
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 if (!count)
680 return count;
Alan Cox813a2242008-07-22 11:10:36 +0100681
Johan Hovold117fb8d2010-05-16 20:33:50 +0200682 count = kfifo_in_locked(&priv->write_fifo, buf, count, &priv->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
684finish:
685 cypress_send(port);
686
687 return count;
688} /* cypress_write */
689
690
691static void cypress_send(struct usb_serial_port *port)
692{
693 int count = 0, result, offset, actual_size;
694 struct cypress_private *priv = usb_get_serial_port_data(port);
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700695 struct device *dev = &port->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 unsigned long flags;
Alan Cox813a2242008-07-22 11:10:36 +0100697
Mike Isely78aef512006-08-29 22:07:11 -0500698 if (!priv->comm_is_ok)
699 return;
700
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700701 dev_dbg(dev, "%s - interrupt out size is %d\n", __func__,
702 port->interrupt_out_size);
Alan Cox813a2242008-07-22 11:10:36 +0100703
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 spin_lock_irqsave(&priv->lock, flags);
705 if (priv->write_urb_in_use) {
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700706 dev_dbg(dev, "%s - can't write, urb in use\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 spin_unlock_irqrestore(&priv->lock, flags);
708 return;
709 }
710 spin_unlock_irqrestore(&priv->lock, flags);
711
712 /* clear buffer */
Alan Cox813a2242008-07-22 11:10:36 +0100713 memset(port->interrupt_out_urb->transfer_buffer, 0,
714 port->interrupt_out_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
716 spin_lock_irqsave(&priv->lock, flags);
Mike Isely3416eaa2008-02-10 20:23:19 -0600717 switch (priv->pkt_fmt) {
718 default:
719 case packet_format_1:
720 /* this is for the CY7C64013... */
721 offset = 2;
722 port->interrupt_out_buffer[0] = priv->line_control;
723 break;
724 case packet_format_2:
725 /* this is for the CY7C63743... */
726 offset = 1;
727 port->interrupt_out_buffer[0] = priv->line_control;
728 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 }
730
731 if (priv->line_control & CONTROL_RESET)
732 priv->line_control &= ~CONTROL_RESET;
733
734 if (priv->cmd_ctrl) {
735 priv->cmd_count++;
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700736 dev_dbg(dev, "%s - line control command being issued\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 spin_unlock_irqrestore(&priv->lock, flags);
738 goto send;
739 } else
740 spin_unlock_irqrestore(&priv->lock, flags);
741
Johan Hovold117fb8d2010-05-16 20:33:50 +0200742 count = kfifo_out_locked(&priv->write_fifo,
743 &port->interrupt_out_buffer[offset],
744 port->interrupt_out_size - offset,
745 &priv->lock);
Alan Cox813a2242008-07-22 11:10:36 +0100746 if (count == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
Mike Isely3416eaa2008-02-10 20:23:19 -0600749 switch (priv->pkt_fmt) {
750 default:
751 case packet_format_1:
752 port->interrupt_out_buffer[1] = count;
753 break;
754 case packet_format_2:
755 port->interrupt_out_buffer[0] |= count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 }
757
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700758 dev_dbg(dev, "%s - count is %d\n", __func__, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
760send:
761 spin_lock_irqsave(&priv->lock, flags);
762 priv->write_urb_in_use = 1;
763 spin_unlock_irqrestore(&priv->lock, flags);
764
765 if (priv->cmd_ctrl)
766 actual_size = 1;
767 else
Mike Isely3416eaa2008-02-10 20:23:19 -0600768 actual_size = count +
769 (priv->pkt_fmt == packet_format_1 ? 2 : 1);
770
Greg Kroah-Hartman59d33f22012-09-18 09:58:57 +0100771 usb_serial_debug_data(dev, __func__, port->interrupt_out_size,
772 port->interrupt_out_urb->transfer_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
Mike Isely9aa8dae2006-08-29 22:07:04 -0500774 usb_fill_int_urb(port->interrupt_out_urb, port->serial->dev,
775 usb_sndintpipe(port->serial->dev, port->interrupt_out_endpointAddress),
776 port->interrupt_out_buffer, port->interrupt_out_size,
777 cypress_write_int_callback, port, priv->write_urb_interval);
Alan Cox813a2242008-07-22 11:10:36 +0100778 result = usb_submit_urb(port->interrupt_out_urb, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 if (result) {
Johan Hovold22a416c2012-02-10 13:20:51 +0100780 dev_err_console(port,
Alan Cox813a2242008-07-22 11:10:36 +0100781 "%s - failed submitting write urb, error %d\n",
782 __func__, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 priv->write_urb_in_use = 0;
Mike Isely78aef512006-08-29 22:07:11 -0500784 cypress_set_dead(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 }
786
787 spin_lock_irqsave(&priv->lock, flags);
Alan Cox813a2242008-07-22 11:10:36 +0100788 if (priv->cmd_ctrl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 priv->cmd_ctrl = 0;
Alan Cox813a2242008-07-22 11:10:36 +0100790
791 /* do not count the line control and size bytes */
792 priv->bytes_out += count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 spin_unlock_irqrestore(&priv->lock, flags);
794
Pete Zaitcevcf2c7482006-05-22 21:58:49 -0700795 usb_serial_port_softint(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796} /* cypress_send */
797
798
799/* returns how much space is available in the soft buffer */
Alan Cox95da3102008-07-22 11:09:07 +0100800static int cypress_write_room(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801{
Alan Cox95da3102008-07-22 11:09:07 +0100802 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 struct cypress_private *priv = usb_get_serial_port_data(port);
804 int room = 0;
805 unsigned long flags;
806
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 spin_lock_irqsave(&priv->lock, flags);
Johan Hovold117fb8d2010-05-16 20:33:50 +0200808 room = kfifo_avail(&priv->write_fifo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 spin_unlock_irqrestore(&priv->lock, flags);
810
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700811 dev_dbg(&port->dev, "%s - returns %d\n", __func__, room);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 return room;
813}
814
815
Alan Cox60b33c12011-02-14 16:26:14 +0000816static int cypress_tiocmget(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817{
Alan Cox95da3102008-07-22 11:09:07 +0100818 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 struct cypress_private *priv = usb_get_serial_port_data(port);
820 __u8 status, control;
821 unsigned int result = 0;
822 unsigned long flags;
Alan Cox813a2242008-07-22 11:10:36 +0100823
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 spin_lock_irqsave(&priv->lock, flags);
825 control = priv->line_control;
826 status = priv->current_status;
827 spin_unlock_irqrestore(&priv->lock, flags);
828
829 result = ((control & CONTROL_DTR) ? TIOCM_DTR : 0)
830 | ((control & CONTROL_RTS) ? TIOCM_RTS : 0)
831 | ((status & UART_CTS) ? TIOCM_CTS : 0)
832 | ((status & UART_DSR) ? TIOCM_DSR : 0)
833 | ((status & UART_RI) ? TIOCM_RI : 0)
834 | ((status & UART_CD) ? TIOCM_CD : 0);
835
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700836 dev_dbg(&port->dev, "%s - result = %x\n", __func__, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
838 return result;
839}
840
841
Alan Cox20b9d172011-02-14 16:26:50 +0000842static int cypress_tiocmset(struct tty_struct *tty,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 unsigned int set, unsigned int clear)
844{
Alan Cox95da3102008-07-22 11:09:07 +0100845 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 struct cypress_private *priv = usb_get_serial_port_data(port);
847 unsigned long flags;
Alan Cox813a2242008-07-22 11:10:36 +0100848
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 spin_lock_irqsave(&priv->lock, flags);
850 if (set & TIOCM_RTS)
851 priv->line_control |= CONTROL_RTS;
852 if (set & TIOCM_DTR)
853 priv->line_control |= CONTROL_DTR;
854 if (clear & TIOCM_RTS)
855 priv->line_control &= ~CONTROL_RTS;
856 if (clear & TIOCM_DTR)
857 priv->line_control &= ~CONTROL_DTR;
Alan Cox8873aaa2008-03-10 21:59:28 +0000858 priv->cmd_ctrl = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 spin_unlock_irqrestore(&priv->lock, flags);
860
Alan Cox95da3102008-07-22 11:09:07 +0100861 return cypress_write(tty, port, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862}
863
Alan Cox95da3102008-07-22 11:09:07 +0100864static void cypress_set_termios(struct tty_struct *tty,
865 struct usb_serial_port *port, struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866{
867 struct cypress_private *priv = usb_get_serial_port_data(port);
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700868 struct device *dev = &port->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 int data_bits, stop_bits, parity_type, parity_enable;
Alan Cox8873aaa2008-03-10 21:59:28 +0000870 unsigned cflag, iflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 unsigned long flags;
872 __u8 oldlines;
Lonnie Mendez3cb4a4f2005-05-03 17:02:20 -0500873 int linechange = 0;
Lonnie Mendezb9db07f2005-07-12 17:21:31 -0500874
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 spin_lock_irqsave(&priv->lock, flags);
Alan Coxfe1ae7f2009-09-19 13:13:33 -0700876 /* We can't clean this one up as we don't know the device type
877 early enough */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 if (!priv->termios_initialized) {
879 if (priv->chiptype == CT_EARTHMATE) {
Alan Coxadc8d742012-07-14 15:31:47 +0100880 tty->termios = tty_std_termios;
881 tty->termios.c_cflag = B4800 | CS8 | CREAD | HUPCL |
Lonnie Mendezb9db07f2005-07-12 17:21:31 -0500882 CLOCAL;
Alan Coxadc8d742012-07-14 15:31:47 +0100883 tty->termios.c_ispeed = 4800;
884 tty->termios.c_ospeed = 4800;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 } else if (priv->chiptype == CT_CYPHIDCOM) {
Alan Coxadc8d742012-07-14 15:31:47 +0100886 tty->termios = tty_std_termios;
887 tty->termios.c_cflag = B9600 | CS8 | CREAD | HUPCL |
Lonnie Mendezb9db07f2005-07-12 17:21:31 -0500888 CLOCAL;
Alan Coxadc8d742012-07-14 15:31:47 +0100889 tty->termios.c_ispeed = 9600;
890 tty->termios.c_ospeed = 9600;
Lonnie Mendeza5c44e22006-03-01 10:45:24 -0600891 } else if (priv->chiptype == CT_CA42V2) {
Alan Coxadc8d742012-07-14 15:31:47 +0100892 tty->termios = tty_std_termios;
893 tty->termios.c_cflag = B9600 | CS8 | CREAD | HUPCL |
Lonnie Mendeza5c44e22006-03-01 10:45:24 -0600894 CLOCAL;
Alan Coxadc8d742012-07-14 15:31:47 +0100895 tty->termios.c_ispeed = 9600;
896 tty->termios.c_ospeed = 9600;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 }
898 priv->termios_initialized = 1;
899 }
900 spin_unlock_irqrestore(&priv->lock, flags);
901
Alan Cox8873aaa2008-03-10 21:59:28 +0000902 /* Unsupported features need clearing */
Alan Coxadc8d742012-07-14 15:31:47 +0100903 tty->termios.c_cflag &= ~(CMSPAR|CRTSCTS);
Alan Cox8873aaa2008-03-10 21:59:28 +0000904
Alan Coxadc8d742012-07-14 15:31:47 +0100905 cflag = tty->termios.c_cflag;
906 iflag = tty->termios.c_iflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907
908 /* check if there are new settings */
909 if (old_termios) {
Alan Cox8873aaa2008-03-10 21:59:28 +0000910 spin_lock_irqsave(&priv->lock, flags);
Alan Coxadc8d742012-07-14 15:31:47 +0100911 priv->tmp_termios = tty->termios;
Alan Cox8873aaa2008-03-10 21:59:28 +0000912 spin_unlock_irqrestore(&priv->lock, flags);
913 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914
915 /* set number of data bits, parity, stop bits */
916 /* when parity is disabled the parity type bit is ignored */
917
Lonnie Mendezb9db07f2005-07-12 17:21:31 -0500918 /* 1 means 2 stop bits, 0 means 1 stop bit */
919 stop_bits = cflag & CSTOPB ? 1 : 0;
920
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 if (cflag & PARENB) {
922 parity_enable = 1;
Lonnie Mendezb9db07f2005-07-12 17:21:31 -0500923 /* 1 means odd parity, 0 means even parity */
924 parity_type = cflag & PARODD ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 } else
926 parity_enable = parity_type = 0;
927
Alan Cox77336822008-07-22 11:10:53 +0100928 switch (cflag & CSIZE) {
929 case CS5:
930 data_bits = 0;
931 break;
932 case CS6:
933 data_bits = 1;
934 break;
935 case CS7:
936 data_bits = 2;
937 break;
938 case CS8:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 data_bits = 3;
Alan Cox77336822008-07-22 11:10:53 +0100940 break;
941 default:
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700942 dev_err(dev, "%s - CSIZE was set, but not CS5-CS8\n", __func__);
Alan Cox77336822008-07-22 11:10:53 +0100943 data_bits = 3;
944 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 spin_lock_irqsave(&priv->lock, flags);
946 oldlines = priv->line_control;
947 if ((cflag & CBAUD) == B0) {
948 /* drop dtr and rts */
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700949 dev_dbg(dev, "%s - dropping the lines, baud rate 0bps\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 priv->line_control &= ~(CONTROL_DTR | CONTROL_RTS);
Alan Cox8873aaa2008-03-10 21:59:28 +0000951 } else
Lonnie Mendez3cb4a4f2005-05-03 17:02:20 -0500952 priv->line_control = (CONTROL_DTR | CONTROL_RTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 spin_unlock_irqrestore(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700955 dev_dbg(dev, "%s - sending %d stop_bits, %d parity_enable, %d parity_type, %d data_bits (+5)\n",
956 __func__, stop_bits, parity_enable, parity_type, data_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957
Alan Cox813a2242008-07-22 11:10:36 +0100958 cypress_serial_control(tty, port, tty_get_baud_rate(tty),
959 data_bits, stop_bits,
960 parity_enable, parity_type,
961 0, CYPRESS_SET_CONFIG);
Lonnie Mendezb9db07f2005-07-12 17:21:31 -0500962
963 /* we perform a CYPRESS_GET_CONFIG so that the current settings are
964 * filled into the private structure this should confirm that all is
965 * working if it returns what we just set */
Alan Cox95da3102008-07-22 11:09:07 +0100966 cypress_serial_control(tty, port, 0, 0, 0, 0, 0, 0, CYPRESS_GET_CONFIG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967
Lonnie Mendezb9db07f2005-07-12 17:21:31 -0500968 /* Here we can define custom tty settings for devices; the main tty
969 * termios flag base comes from empeg.c */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970
Lonnie Mendezb9db07f2005-07-12 17:21:31 -0500971 spin_lock_irqsave(&priv->lock, flags);
Alan Cox813a2242008-07-22 11:10:36 +0100972 if (priv->chiptype == CT_EARTHMATE && priv->baud_rate == 4800) {
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -0700973 dev_dbg(dev, "Using custom termios settings for a baud rate of 4800bps.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 /* define custom termios settings for NMEA protocol */
975
Alan Coxadc8d742012-07-14 15:31:47 +0100976 tty->termios.c_iflag /* input modes - */
Lonnie Mendezb9db07f2005-07-12 17:21:31 -0500977 &= ~(IGNBRK /* disable ignore break */
978 | BRKINT /* disable break causes interrupt */
979 | PARMRK /* disable mark parity errors */
980 | ISTRIP /* disable clear high bit of input char */
981 | INLCR /* disable translate NL to CR */
982 | IGNCR /* disable ignore CR */
983 | ICRNL /* disable translate CR to NL */
984 | IXON); /* disable enable XON/XOFF flow control */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985
Alan Coxadc8d742012-07-14 15:31:47 +0100986 tty->termios.c_oflag /* output modes */
Lonnie Mendezb9db07f2005-07-12 17:21:31 -0500987 &= ~OPOST; /* disable postprocess output char */
988
Alan Coxadc8d742012-07-14 15:31:47 +0100989 tty->termios.c_lflag /* line discipline modes */
Lonnie Mendezb9db07f2005-07-12 17:21:31 -0500990 &= ~(ECHO /* disable echo input characters */
991 | ECHONL /* disable echo new line */
992 | ICANON /* disable erase, kill, werase, and rprnt
993 special characters */
994 | ISIG /* disable interrupt, quit, and suspend
995 special characters */
996 | IEXTEN); /* disable non-POSIX special characters */
Lonnie Mendez3cb4a4f2005-05-03 17:02:20 -0500997 } /* CT_CYPHIDCOM: Application should handle this for device */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 linechange = (priv->line_control != oldlines);
1000 spin_unlock_irqrestore(&priv->lock, flags);
1001
1002 /* if necessary, set lines */
Lonnie Mendez3cb4a4f2005-05-03 17:02:20 -05001003 if (linechange) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 priv->cmd_ctrl = 1;
Alan Cox95da3102008-07-22 11:09:07 +01001005 cypress_write(tty, port, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007} /* cypress_set_termios */
1008
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001009
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010/* returns amount of data still left in soft buffer */
Alan Cox95da3102008-07-22 11:09:07 +01001011static int cypress_chars_in_buffer(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012{
Alan Cox95da3102008-07-22 11:09:07 +01001013 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 struct cypress_private *priv = usb_get_serial_port_data(port);
1015 int chars = 0;
1016 unsigned long flags;
1017
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 spin_lock_irqsave(&priv->lock, flags);
Johan Hovold117fb8d2010-05-16 20:33:50 +02001019 chars = kfifo_len(&priv->write_fifo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 spin_unlock_irqrestore(&priv->lock, flags);
1021
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -07001022 dev_dbg(&port->dev, "%s - returns %d\n", __func__, chars);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 return chars;
1024}
1025
1026
Alan Cox95da3102008-07-22 11:09:07 +01001027static void cypress_throttle(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028{
Alan Cox95da3102008-07-22 11:09:07 +01001029 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 struct cypress_private *priv = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031
Oliver Neukum63832512009-10-07 10:50:23 +02001032 spin_lock_irq(&priv->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 priv->rx_flags = THROTTLED;
Oliver Neukum63832512009-10-07 10:50:23 +02001034 spin_unlock_irq(&priv->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035}
1036
1037
Alan Cox95da3102008-07-22 11:09:07 +01001038static void cypress_unthrottle(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039{
Alan Cox95da3102008-07-22 11:09:07 +01001040 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 struct cypress_private *priv = usb_get_serial_port_data(port);
1042 int actually_throttled, result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043
Oliver Neukum63832512009-10-07 10:50:23 +02001044 spin_lock_irq(&priv->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 actually_throttled = priv->rx_flags & ACTUALLY_THROTTLED;
1046 priv->rx_flags = 0;
Oliver Neukum63832512009-10-07 10:50:23 +02001047 spin_unlock_irq(&priv->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048
Mike Isely78aef512006-08-29 22:07:11 -05001049 if (!priv->comm_is_ok)
1050 return;
1051
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 if (actually_throttled) {
Oliver Neukum63832512009-10-07 10:50:23 +02001053 result = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL);
Mike Isely78aef512006-08-29 22:07:11 -05001054 if (result) {
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001055 dev_err(&port->dev, "%s - failed submitting read urb, "
Harvey Harrison441b62c2008-03-03 16:08:34 -08001056 "error %d\n", __func__, result);
Mike Isely78aef512006-08-29 22:07:11 -05001057 cypress_set_dead(port);
1058 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 }
1060}
1061
1062
David Howells7d12e782006-10-05 14:55:46 +01001063static void cypress_read_int_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064{
Ming Leicdc97792008-02-24 18:41:47 +08001065 struct usb_serial_port *port = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 struct cypress_private *priv = usb_get_serial_port_data(port);
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -07001067 struct device *dev = &urb->dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 struct tty_struct *tty;
1069 unsigned char *data = urb->transfer_buffer;
1070 unsigned long flags;
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001071 char tty_flag = TTY_NORMAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 int havedata = 0;
1073 int bytes = 0;
1074 int result;
1075 int i = 0;
Greg Kroah-Hartman8d7bc552007-06-15 15:44:13 -07001076 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077
Greg Kroah-Hartman8d7bc552007-06-15 15:44:13 -07001078 switch (status) {
Mike Isely78aef512006-08-29 22:07:11 -05001079 case 0: /* success */
1080 break;
1081 case -ECONNRESET:
1082 case -ENOENT:
1083 case -ESHUTDOWN:
1084 /* precursor to disconnect so just go away */
1085 return;
1086 case -EPIPE:
Alan Stern4d2fae82009-07-09 12:59:57 -04001087 /* Can't call usb_clear_halt while in_interrupt */
1088 /* FALLS THROUGH */
Mike Isely78aef512006-08-29 22:07:11 -05001089 default:
1090 /* something ugly is going on... */
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -07001091 dev_err(dev, "%s - unexpected nonzero read status received: %d\n",
1092 __func__, status);
Mike Isely78aef512006-08-29 22:07:11 -05001093 cypress_set_dead(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 return;
1095 }
1096
1097 spin_lock_irqsave(&priv->lock, flags);
1098 if (priv->rx_flags & THROTTLED) {
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -07001099 dev_dbg(dev, "%s - now throttling\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 priv->rx_flags |= ACTUALLY_THROTTLED;
1101 spin_unlock_irqrestore(&priv->lock, flags);
1102 return;
1103 }
1104 spin_unlock_irqrestore(&priv->lock, flags);
1105
Alan Cox4a90f092008-10-13 10:39:46 +01001106 tty = tty_port_tty_get(&port->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 if (!tty) {
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -07001108 dev_dbg(dev, "%s - bad tty pointer - exiting\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 return;
1110 }
1111
1112 spin_lock_irqsave(&priv->lock, flags);
Mike Isely3416eaa2008-02-10 20:23:19 -06001113 result = urb->actual_length;
1114 switch (priv->pkt_fmt) {
1115 default:
1116 case packet_format_1:
1117 /* This is for the CY7C64013... */
1118 priv->current_status = data[0] & 0xF8;
1119 bytes = data[1] + 2;
1120 i = 2;
1121 if (bytes > 2)
1122 havedata = 1;
1123 break;
1124 case packet_format_2:
1125 /* This is for the CY7C63743... */
1126 priv->current_status = data[0] & 0xF8;
1127 bytes = (data[0] & 0x07) + 1;
1128 i = 1;
1129 if (bytes > 1)
1130 havedata = 1;
1131 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 }
1133 spin_unlock_irqrestore(&priv->lock, flags);
Mike Isely3416eaa2008-02-10 20:23:19 -06001134 if (result < bytes) {
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -07001135 dev_dbg(dev,
1136 "%s - wrong packet size - received %d bytes but packet said %d bytes\n",
1137 __func__, result, bytes);
Mike Isely3416eaa2008-02-10 20:23:19 -06001138 goto continue_read;
1139 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140
Greg Kroah-Hartman59d33f22012-09-18 09:58:57 +01001141 usb_serial_debug_data(&port->dev, __func__, urb->actual_length, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142
1143 spin_lock_irqsave(&priv->lock, flags);
1144 /* check to see if status has changed */
Mike Isely67683062008-02-10 20:23:28 -06001145 if (priv->current_status != priv->prev_status) {
Johan Hovoldab62a582014-01-02 22:49:27 +01001146 u8 delta = priv->current_status ^ priv->prev_status;
Johan Hovold76033812014-01-02 22:49:26 +01001147
Johan Hovoldab62a582014-01-02 22:49:27 +01001148 if (delta & UART_MSR_MASK) {
1149 if (delta & UART_CTS)
1150 port->icount.cts++;
1151 if (delta & UART_DSR)
1152 port->icount.dsr++;
1153 if (delta & UART_RI)
1154 port->icount.rng++;
1155 if (delta & UART_CD)
1156 port->icount.dcd++;
1157
Johan Hovold76033812014-01-02 22:49:26 +01001158 wake_up_interruptible(&port->port.delta_msr_wait);
Johan Hovoldab62a582014-01-02 22:49:27 +01001159 }
Johan Hovold76033812014-01-02 22:49:26 +01001160
Mike Isely67683062008-02-10 20:23:28 -06001161 priv->prev_status = priv->current_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 }
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001163 spin_unlock_irqrestore(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001165 /* hangup, as defined in acm.c... this might be a bad place for it
1166 * though */
Peter Hurley9db276f2016-01-10 20:36:15 -08001167 if (tty && !C_CLOCAL(tty) && !(priv->current_status & UART_CD)) {
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -07001168 dev_dbg(dev, "%s - calling hangup\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 tty_hangup(tty);
1170 goto continue_read;
1171 }
1172
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001173 /* There is one error bit... I'm assuming it is a parity error
1174 * indicator as the generic firmware will set this bit to 1 if a
1175 * parity error occurs.
1176 * I can not find reference to any other error events. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 spin_lock_irqsave(&priv->lock, flags);
1178 if (priv->current_status & CYP_ERROR) {
1179 spin_unlock_irqrestore(&priv->lock, flags);
1180 tty_flag = TTY_PARITY;
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -07001181 dev_dbg(dev, "%s - Parity Error detected\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 } else
1183 spin_unlock_irqrestore(&priv->lock, flags);
1184
1185 /* process read if there is data other than line status */
Jiri Slaby2e124b42013-01-03 15:53:06 +01001186 if (bytes > i) {
Jiri Slaby2f693352013-01-03 15:53:02 +01001187 tty_insert_flip_string_fixed_flag(&port->port, data + i,
Johan Hovold70ced222010-05-07 19:46:56 +02001188 tty_flag, bytes - i);
Jiri Slaby2e124b42013-01-03 15:53:06 +01001189 tty_flip_buffer_push(&port->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 }
1191
1192 spin_lock_irqsave(&priv->lock, flags);
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001193 /* control and status byte(s) are also counted */
1194 priv->bytes_in += bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 spin_unlock_irqrestore(&priv->lock, flags);
1196
1197continue_read:
Alan Cox4a90f092008-10-13 10:39:46 +01001198 tty_kref_put(tty);
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001199
Alan Stern1f871582010-02-17 10:05:47 -05001200 /* Continue trying to always read */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201
Alan Stern1f871582010-02-17 10:05:47 -05001202 if (priv->comm_is_ok) {
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001203 usb_fill_int_urb(port->interrupt_in_urb, port->serial->dev,
1204 usb_rcvintpipe(port->serial->dev,
1205 port->interrupt_in_endpointAddress),
1206 port->interrupt_in_urb->transfer_buffer,
1207 port->interrupt_in_urb->transfer_buffer_length,
Alan Cox813a2242008-07-22 11:10:36 +01001208 cypress_read_int_callback, port,
1209 priv->read_urb_interval);
Lonnie Mendezb9db07f2005-07-12 17:21:31 -05001210 result = usb_submit_urb(port->interrupt_in_urb, GFP_ATOMIC);
Alan Stern1f871582010-02-17 10:05:47 -05001211 if (result && result != -EPERM) {
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -07001212 dev_err(dev, "%s - failed resubmitting read urb, error %d\n",
1213 __func__, result);
Mike Isely78aef512006-08-29 22:07:11 -05001214 cypress_set_dead(port);
1215 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217} /* cypress_read_int_callback */
1218
1219
David Howells7d12e782006-10-05 14:55:46 +01001220static void cypress_write_int_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221{
Ming Leicdc97792008-02-24 18:41:47 +08001222 struct usb_serial_port *port = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 struct cypress_private *priv = usb_get_serial_port_data(port);
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -07001224 struct device *dev = &urb->dev->dev;
Greg Kroah-Hartman8d7bc552007-06-15 15:44:13 -07001225 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226
Greg Kroah-Hartman8d7bc552007-06-15 15:44:13 -07001227 switch (status) {
Alan Cox813a2242008-07-22 11:10:36 +01001228 case 0:
1229 /* success */
1230 break;
1231 case -ECONNRESET:
1232 case -ENOENT:
1233 case -ESHUTDOWN:
1234 /* this urb is terminated, clean up */
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -07001235 dev_dbg(dev, "%s - urb shutting down with status: %d\n",
1236 __func__, status);
Alan Cox813a2242008-07-22 11:10:36 +01001237 priv->write_urb_in_use = 0;
1238 return;
Johan Hovoldd7c933a2014-03-12 19:09:37 +01001239 case -EPIPE:
1240 /* Cannot call usb_clear_halt while in_interrupt */
1241 /* FALLTHROUGH */
Alan Cox813a2242008-07-22 11:10:36 +01001242 default:
Greg Kroah-Hartmandfa1c312012-09-14 09:47:38 -07001243 dev_err(dev, "%s - unexpected nonzero write status received: %d\n",
1244 __func__, status);
Alan Cox813a2242008-07-22 11:10:36 +01001245 cypress_set_dead(port);
1246 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 priv->write_urb_in_use = 0;
Alan Cox813a2242008-07-22 11:10:36 +01001249
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 /* send any buffered data */
1251 cypress_send(port);
1252}
1253
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -07001254module_usb_serial_driver(serial_drivers, id_table_combined);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255
Alan Cox813a2242008-07-22 11:10:36 +01001256MODULE_AUTHOR(DRIVER_AUTHOR);
1257MODULE_DESCRIPTION(DRIVER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258MODULE_LICENSE("GPL");
1259
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260module_param(stats, bool, S_IRUGO | S_IWUSR);
1261MODULE_PARM_DESC(stats, "Enable statistics or not");
Lonnie Mendez3cb4a4f2005-05-03 17:02:20 -05001262module_param(interval, int, S_IRUGO | S_IWUSR);
1263MODULE_PARM_DESC(interval, "Overrides interrupt interval");
Mike Frysingerc3126592009-12-18 16:33:03 -05001264module_param(unstable_bauds, bool, S_IRUGO | S_IWUSR);
1265MODULE_PARM_DESC(unstable_bauds, "Allow unstable baud rates");