blob: d5ea072f3823f296cefae12463e1508e86c70478 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * USB FTDI SIO driver
3 *
David Brownell5c09d142006-10-13 15:57:58 -07004 * Copyright (C) 1999 - 2001
5 * Greg Kroah-Hartman (greg@kroah.com)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * Bill Ryder (bryder@sgi.com)
7 * Copyright (C) 2002
8 * Kuba Ober (kuba@mareimbrium.org)
9 *
David Brownell5c09d142006-10-13 15:57:58 -070010 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 *
Alan Cox464cbb22008-07-22 11:11:23 +010015 * See Documentation/usb/usb-serial.txt for more information on using this
16 * driver
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 *
18 * See http://ftdi-usb-sio.sourceforge.net for upto date testing info
19 * and extra documentation
20 *
Greg Kroah-Hartman504b55c2002-04-09 12:14:34 -070021 * Change entries from 2004 and earlier can be found in versions of this
22 * file in kernel versions prior to the 2.6.24 release.
Linus Torvalds1da177e2005-04-16 15:20:36 -070023 *
24 */
25
26/* Bill Ryder - bryder@sgi.com - wrote the FTDI_SIO implementation */
27/* Thanx to FTDI for so kindly providing details of the protocol required */
28/* to talk to the device */
Alan Cox464cbb22008-07-22 11:11:23 +010029/* Thanx to gkh and the rest of the usb dev group for all code I have
30 assimilated :-) */
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/kernel.h>
33#include <linux/errno.h>
34#include <linux/init.h>
35#include <linux/slab.h>
36#include <linux/tty.h>
37#include <linux/tty_driver.h>
38#include <linux/tty_flip.h>
39#include <linux/module.h>
40#include <linux/spinlock.h>
Alan Cox464cbb22008-07-22 11:11:23 +010041#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <linux/usb.h>
43#include <linux/serial.h>
Greg Kroah-Hartmana9698882006-07-11 21:22:58 -070044#include <linux/usb/serial.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include "ftdi_sio.h"
46
47/*
48 * Version Information
49 */
Mark Adamson094c2e62009-04-09 15:03:09 +010050#define DRIVER_VERSION "v1.5.0"
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#define DRIVER_AUTHOR "Greg Kroah-Hartman <greg@kroah.com>, Bill Ryder <bryder@sgi.com>, Kuba Ober <kuba@mareimbrium.org>"
52#define DRIVER_DESC "USB FTDI Serial Converters Driver"
53
54static int debug;
Ian Abbottfdcb0a02005-07-28 18:40:32 +010055static __u16 vendor = FTDI_VID;
56static __u16 product;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Oliver Neukum0ffbbe252007-07-09 12:03:08 -070058struct ftdi_private {
Alan Sternc45d6322009-04-30 10:06:19 -040059 struct kref kref;
Oliver Neukum0ffbbe252007-07-09 12:03:08 -070060 ftdi_chip_type_t chip_type;
Alan Cox464cbb22008-07-22 11:11:23 +010061 /* type of device, either SIO or FT8U232AM */
Oliver Neukum0ffbbe252007-07-09 12:03:08 -070062 int baud_base; /* baud base clock for divisor setting */
Alan Cox464cbb22008-07-22 11:11:23 +010063 int custom_divisor; /* custom_divisor kludge, this is for
64 baud_base (different from what goes to the
65 chip!) */
Oliver Neukum0ffbbe252007-07-09 12:03:08 -070066 __u16 last_set_data_urb_value ;
Alan Cox464cbb22008-07-22 11:11:23 +010067 /* the last data state set - needed for doing
68 * a break
69 */
70 int write_offset; /* This is the offset in the usb data block to
71 * write the serial data - it varies between
72 * devices
Oliver Neukum0ffbbe252007-07-09 12:03:08 -070073 */
74 int flags; /* some ASYNC_xxxx flags are supported */
75 unsigned long last_dtr_rts; /* saved modem control outputs */
Alan Cox464cbb22008-07-22 11:11:23 +010076 wait_queue_head_t delta_msr_wait; /* Used for TIOCMIWAIT */
Oliver Neukum0ffbbe252007-07-09 12:03:08 -070077 char prev_status, diff_status; /* Used for TIOCMIWAIT */
78 __u8 rx_flags; /* receive state flags (throttling) */
79 spinlock_t rx_lock; /* spinlock for receive state */
80 struct delayed_work rx_work;
81 struct usb_serial_port *port;
82 int rx_processed;
83 unsigned long rx_bytes;
84
Mark Adamson094c2e62009-04-09 15:03:09 +010085 __u16 interface; /* FT2232C, FT2232H or FT4232H port interface
86 (0 for FT232/245) */
Oliver Neukum0ffbbe252007-07-09 12:03:08 -070087
Alan Cox464cbb22008-07-22 11:11:23 +010088 speed_t force_baud; /* if non-zero, force the baud rate to
89 this value */
90 int force_rtscts; /* if non-zero, force RTS-CTS to always
91 be enabled */
Oliver Neukum0ffbbe252007-07-09 12:03:08 -070092
Alan Cox557aaa72009-06-11 13:55:34 +010093 unsigned int latency; /* latency setting in use */
Oliver Neukum0ffbbe252007-07-09 12:03:08 -070094 spinlock_t tx_lock; /* spinlock for transmit state */
95 unsigned long tx_bytes;
96 unsigned long tx_outstanding_bytes;
97 unsigned long tx_outstanding_urbs;
Mark Adamson895f28b2009-05-01 11:48:45 +010098 unsigned short max_packet_size;
Oliver Neukum0ffbbe252007-07-09 12:03:08 -070099};
100
Ian Abbott8f977e42005-06-20 16:45:42 +0100101/* struct ftdi_sio_quirk is used by devices requiring special attention. */
102struct ftdi_sio_quirk {
Tony Lindgrenfa91d432007-05-04 18:23:24 -0700103 int (*probe)(struct usb_serial *);
Alan Cox464cbb22008-07-22 11:11:23 +0100104 /* Special settings for probed ports. */
105 void (*port_probe)(struct ftdi_private *);
Ian Abbott8f977e42005-06-20 16:45:42 +0100106};
107
Alan Cox464cbb22008-07-22 11:11:23 +0100108static int ftdi_jtag_probe(struct usb_serial *serial);
109static int ftdi_mtxorb_hack_setup(struct usb_serial *serial);
Martin Geleynseb760dac2009-07-02 13:10:35 -0400110static int ftdi_NDI_device_setup(struct usb_serial *serial);
Alan Cox464cbb22008-07-22 11:11:23 +0100111static void ftdi_USB_UIRT_setup(struct ftdi_private *priv);
112static void ftdi_HE_TIRA1_setup(struct ftdi_private *priv);
Ian Abbott8f977e42005-06-20 16:45:42 +0100113
Harald Welte20734342008-01-01 15:08:35 +0100114static struct ftdi_sio_quirk ftdi_jtag_quirk = {
115 .probe = ftdi_jtag_probe,
Tony Lindgrenfa91d432007-05-04 18:23:24 -0700116};
117
Kevin Vance546d7ee2008-03-01 13:49:59 -0500118static struct ftdi_sio_quirk ftdi_mtxorb_hack_quirk = {
119 .probe = ftdi_mtxorb_hack_setup,
120};
121
Martin Geleynseb760dac2009-07-02 13:10:35 -0400122static struct ftdi_sio_quirk ftdi_NDI_device_quirk = {
123 .probe = ftdi_NDI_device_setup,
124};
125
Ian Abbott8f977e42005-06-20 16:45:42 +0100126static struct ftdi_sio_quirk ftdi_USB_UIRT_quirk = {
Oliver Neukum0ffbbe252007-07-09 12:03:08 -0700127 .port_probe = ftdi_USB_UIRT_setup,
Ian Abbott8f977e42005-06-20 16:45:42 +0100128};
129
130static struct ftdi_sio_quirk ftdi_HE_TIRA1_quirk = {
Oliver Neukum0ffbbe252007-07-09 12:03:08 -0700131 .port_probe = ftdi_HE_TIRA1_setup,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132};
133
134/*
135 * The 8U232AM has the same API as the sio except for:
136 * - it can support MUCH higher baudrates; up to:
137 * o 921600 for RS232 and 2000000 for RS422/485 at 48MHz
138 * o 230400 at 12MHz
139 * so .. 8U232AM's baudrate setting codes are different
140 * - it has a two byte status code.
141 * - it returns characters every 16ms (the FTDI does it every 40ms)
142 *
143 * the bcdDevice value is used to differentiate FT232BM and FT245BM from
144 * the earlier FT8U232AM and FT8U232BM. For now, include all known VID/PID
145 * combinations in both tables.
Ian Abbott8f977e42005-06-20 16:45:42 +0100146 * FIXME: perhaps bcdDevice can also identify 12MHz FT8U232AM devices,
147 * but I don't know if those ever went into mass production. [Ian Abbott]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 */
149
150
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
152static struct usb_device_id id_table_combined [] = {
Jonathan Davies2011e922006-08-09 10:48:03 +0100153 { USB_DEVICE(FTDI_VID, FTDI_AMC232_PID) },
154 { USB_DEVICE(FTDI_VID, FTDI_CANUSB_PID) },
Andrew Ewert01ba0852008-12-04 09:09:59 -0600155 { USB_DEVICE(FTDI_VID, FTDI_CANDAPTER_PID) },
Peter Mack6e1ab3e2008-04-22 13:25:11 +0200156 { USB_DEVICE(FTDI_VID, FTDI_SCS_DEVICE_0_PID) },
157 { USB_DEVICE(FTDI_VID, FTDI_SCS_DEVICE_1_PID) },
158 { USB_DEVICE(FTDI_VID, FTDI_SCS_DEVICE_2_PID) },
159 { USB_DEVICE(FTDI_VID, FTDI_SCS_DEVICE_3_PID) },
160 { USB_DEVICE(FTDI_VID, FTDI_SCS_DEVICE_4_PID) },
161 { USB_DEVICE(FTDI_VID, FTDI_SCS_DEVICE_5_PID) },
162 { USB_DEVICE(FTDI_VID, FTDI_SCS_DEVICE_6_PID) },
163 { USB_DEVICE(FTDI_VID, FTDI_SCS_DEVICE_7_PID) },
Razvan Gavril72a9f952006-05-04 11:35:49 +0300164 { USB_DEVICE(FTDI_VID, FTDI_ACTZWAVE_PID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 { USB_DEVICE(FTDI_VID, FTDI_IRTRANS_PID) },
Luiz Fernando N. Capitulino69737df2006-04-11 15:52:41 -0300166 { USB_DEVICE(FTDI_VID, FTDI_IPLUS_PID) },
Luiz Fernando N. Capitulinod0993212007-06-21 22:34:23 -0300167 { USB_DEVICE(FTDI_VID, FTDI_IPLUS2_PID) },
Frank Sievertsenfad14a02006-10-20 09:43:53 +0200168 { USB_DEVICE(FTDI_VID, FTDI_DMX4ALL) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 { USB_DEVICE(FTDI_VID, FTDI_SIO_PID) },
170 { USB_DEVICE(FTDI_VID, FTDI_8U232AM_PID) },
171 { USB_DEVICE(FTDI_VID, FTDI_8U232AM_ALT_PID) },
Gard Spreemannd8b21602007-03-05 00:03:26 +0100172 { USB_DEVICE(FTDI_VID, FTDI_232RL_PID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 { USB_DEVICE(FTDI_VID, FTDI_8U2232C_PID) },
Mark Adamson094c2e62009-04-09 15:03:09 +0100174 { USB_DEVICE(FTDI_VID, FTDI_4232H_PID) },
Christophe Mariacc0f8d562006-06-23 17:36:21 +0200175 { USB_DEVICE(FTDI_VID, FTDI_MICRO_CHAMELEON_PID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 { USB_DEVICE(FTDI_VID, FTDI_RELAIS_PID) },
Guido Scholz2adb80e2007-05-08 19:52:41 +0200177 { USB_DEVICE(FTDI_VID, FTDI_OPENDCC_PID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 { USB_DEVICE(INTERBIOMETRICS_VID, INTERBIOMETRICS_IOBOARD_PID) },
179 { USB_DEVICE(INTERBIOMETRICS_VID, INTERBIOMETRICS_MINI_IOBOARD_PID) },
Alan Coxf2ee6952008-12-06 23:46:04 -0800180 { USB_DEVICE(FTDI_VID, FTDI_SPROG_II) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 { USB_DEVICE(FTDI_VID, FTDI_XF_632_PID) },
182 { USB_DEVICE(FTDI_VID, FTDI_XF_634_PID) },
183 { USB_DEVICE(FTDI_VID, FTDI_XF_547_PID) },
184 { USB_DEVICE(FTDI_VID, FTDI_XF_633_PID) },
185 { USB_DEVICE(FTDI_VID, FTDI_XF_631_PID) },
186 { USB_DEVICE(FTDI_VID, FTDI_XF_635_PID) },
187 { USB_DEVICE(FTDI_VID, FTDI_XF_640_PID) },
188 { USB_DEVICE(FTDI_VID, FTDI_XF_642_PID) },
189 { USB_DEVICE(FTDI_VID, FTDI_DSS20_PID) },
190 { USB_DEVICE(FTDI_NF_RIC_VID, FTDI_NF_RIC_PID) },
191 { USB_DEVICE(FTDI_VID, FTDI_VNHCPCUSB_D_PID) },
Ian Abbott8f977e42005-06-20 16:45:42 +0100192 { USB_DEVICE(FTDI_VID, FTDI_MTXORB_0_PID) },
193 { USB_DEVICE(FTDI_VID, FTDI_MTXORB_1_PID) },
194 { USB_DEVICE(FTDI_VID, FTDI_MTXORB_2_PID) },
195 { USB_DEVICE(FTDI_VID, FTDI_MTXORB_3_PID) },
196 { USB_DEVICE(FTDI_VID, FTDI_MTXORB_4_PID) },
197 { USB_DEVICE(FTDI_VID, FTDI_MTXORB_5_PID) },
198 { USB_DEVICE(FTDI_VID, FTDI_MTXORB_6_PID) },
Folkert van Heusdenb34efee2009-06-19 22:14:42 +0200199 { USB_DEVICE(FTDI_VID, FTDI_R2000KU_TRUE_RNG) },
Alan Cox464cbb22008-07-22 11:11:23 +0100200 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0100_PID) },
201 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0101_PID) },
202 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0102_PID) },
203 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0103_PID) },
204 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0104_PID) },
205 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0105_PID) },
206 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0106_PID) },
207 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0107_PID) },
208 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0108_PID) },
209 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0109_PID) },
210 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_010A_PID) },
211 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_010B_PID) },
212 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_010C_PID) },
213 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_010D_PID) },
214 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_010E_PID) },
215 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_010F_PID) },
216 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0110_PID) },
217 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0111_PID) },
218 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0112_PID) },
219 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0113_PID) },
220 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0114_PID) },
221 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0115_PID) },
222 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0116_PID) },
223 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0117_PID) },
224 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0118_PID) },
225 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0119_PID) },
226 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_011A_PID) },
227 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_011B_PID) },
228 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_011C_PID) },
229 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_011D_PID) },
230 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_011E_PID) },
231 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_011F_PID) },
232 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0120_PID) },
233 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0121_PID) },
234 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0122_PID) },
235 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0123_PID) },
236 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0124_PID) },
237 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0125_PID) },
238 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0126_PID) },
239 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0127_PID),
Kevin Vance546d7ee2008-03-01 13:49:59 -0500240 .driver_info = (kernel_ulong_t)&ftdi_mtxorb_hack_quirk },
Alan Cox464cbb22008-07-22 11:11:23 +0100241 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0128_PID) },
242 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0129_PID) },
243 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_012A_PID) },
244 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_012B_PID) },
245 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_012C_PID),
Ray Molenkampebb37702008-05-21 17:06:26 -0600246 .driver_info = (kernel_ulong_t)&ftdi_mtxorb_hack_quirk },
Alan Cox464cbb22008-07-22 11:11:23 +0100247 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_012D_PID) },
248 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_012E_PID) },
249 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_012F_PID) },
250 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0130_PID) },
251 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0131_PID) },
252 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0132_PID) },
253 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0133_PID) },
254 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0134_PID) },
255 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0135_PID) },
256 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0136_PID) },
257 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0137_PID) },
258 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0138_PID) },
259 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0139_PID) },
260 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_013A_PID) },
261 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_013B_PID) },
262 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_013C_PID) },
263 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_013D_PID) },
264 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_013E_PID) },
265 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_013F_PID) },
266 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0140_PID) },
267 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0141_PID) },
268 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0142_PID) },
269 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0143_PID) },
270 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0144_PID) },
271 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0145_PID) },
272 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0146_PID) },
273 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0147_PID) },
274 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0148_PID) },
275 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0149_PID) },
276 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_014A_PID) },
277 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_014B_PID) },
278 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_014C_PID) },
279 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_014D_PID) },
280 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_014E_PID) },
281 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_014F_PID) },
282 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0150_PID) },
283 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0151_PID) },
284 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0152_PID) },
285 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0153_PID),
Ray Molenkampebb37702008-05-21 17:06:26 -0600286 .driver_info = (kernel_ulong_t)&ftdi_mtxorb_hack_quirk },
Alan Cox464cbb22008-07-22 11:11:23 +0100287 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0154_PID),
Ray Molenkampebb37702008-05-21 17:06:26 -0600288 .driver_info = (kernel_ulong_t)&ftdi_mtxorb_hack_quirk },
Alan Cox464cbb22008-07-22 11:11:23 +0100289 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0155_PID),
Ray Molenkampebb37702008-05-21 17:06:26 -0600290 .driver_info = (kernel_ulong_t)&ftdi_mtxorb_hack_quirk },
Alan Cox464cbb22008-07-22 11:11:23 +0100291 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0156_PID),
Ray Molenkampebb37702008-05-21 17:06:26 -0600292 .driver_info = (kernel_ulong_t)&ftdi_mtxorb_hack_quirk },
Alan Cox464cbb22008-07-22 11:11:23 +0100293 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0157_PID),
Ray Molenkampebb37702008-05-21 17:06:26 -0600294 .driver_info = (kernel_ulong_t)&ftdi_mtxorb_hack_quirk },
Alan Cox464cbb22008-07-22 11:11:23 +0100295 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0158_PID),
Ray Molenkampebb37702008-05-21 17:06:26 -0600296 .driver_info = (kernel_ulong_t)&ftdi_mtxorb_hack_quirk },
Alan Cox464cbb22008-07-22 11:11:23 +0100297 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0159_PID) },
298 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_015A_PID) },
299 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_015B_PID) },
300 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_015C_PID) },
301 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_015D_PID) },
302 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_015E_PID) },
303 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_015F_PID) },
304 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0160_PID) },
305 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0161_PID) },
306 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0162_PID) },
307 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0163_PID) },
308 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0164_PID) },
309 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0165_PID) },
310 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0166_PID) },
311 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0167_PID) },
312 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0168_PID) },
313 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0169_PID) },
314 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_016A_PID) },
315 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_016B_PID) },
316 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_016C_PID) },
317 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_016D_PID) },
318 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_016E_PID) },
319 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_016F_PID) },
320 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0170_PID) },
321 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0171_PID) },
322 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0172_PID) },
323 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0173_PID) },
324 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0174_PID) },
325 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0175_PID) },
326 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0176_PID) },
327 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0177_PID) },
328 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0178_PID) },
329 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0179_PID) },
330 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_017A_PID) },
331 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_017B_PID) },
332 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_017C_PID) },
333 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_017D_PID) },
334 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_017E_PID) },
335 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_017F_PID) },
336 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0180_PID) },
337 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0181_PID) },
338 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0182_PID) },
339 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0183_PID) },
340 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0184_PID) },
341 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0185_PID) },
342 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0186_PID) },
343 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0187_PID) },
344 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0188_PID) },
345 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0189_PID) },
346 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_018A_PID) },
347 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_018B_PID) },
348 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_018C_PID) },
349 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_018D_PID) },
350 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_018E_PID) },
351 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_018F_PID) },
352 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0190_PID) },
353 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0191_PID) },
354 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0192_PID) },
355 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0193_PID) },
356 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0194_PID) },
357 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0195_PID) },
358 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0196_PID) },
359 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0197_PID) },
360 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0198_PID) },
361 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0199_PID) },
362 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_019A_PID) },
363 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_019B_PID) },
364 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_019C_PID) },
365 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_019D_PID) },
366 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_019E_PID) },
367 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_019F_PID) },
368 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01A0_PID) },
369 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01A1_PID) },
370 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01A2_PID) },
371 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01A3_PID) },
372 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01A4_PID) },
373 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01A5_PID) },
374 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01A6_PID) },
375 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01A7_PID) },
376 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01A8_PID) },
377 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01A9_PID) },
378 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01AA_PID) },
379 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01AB_PID) },
380 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01AC_PID) },
381 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01AD_PID) },
382 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01AE_PID) },
383 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01AF_PID) },
384 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01B0_PID) },
385 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01B1_PID) },
386 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01B2_PID) },
387 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01B3_PID) },
388 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01B4_PID) },
389 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01B5_PID) },
390 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01B6_PID) },
391 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01B7_PID) },
392 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01B8_PID) },
393 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01B9_PID) },
394 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01BA_PID) },
395 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01BB_PID) },
396 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01BC_PID) },
397 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01BD_PID) },
398 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01BE_PID) },
399 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01BF_PID) },
400 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01C0_PID) },
401 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01C1_PID) },
402 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01C2_PID) },
403 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01C3_PID) },
404 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01C4_PID) },
405 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01C5_PID) },
406 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01C6_PID) },
407 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01C7_PID) },
408 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01C8_PID) },
409 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01C9_PID) },
410 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01CA_PID) },
411 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01CB_PID) },
412 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01CC_PID) },
413 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01CD_PID) },
414 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01CE_PID) },
415 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01CF_PID) },
416 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01D0_PID) },
417 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01D1_PID) },
418 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01D2_PID) },
419 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01D3_PID) },
420 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01D4_PID) },
421 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01D5_PID) },
422 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01D6_PID) },
423 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01D7_PID) },
424 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01D8_PID) },
425 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01D9_PID) },
426 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01DA_PID) },
427 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01DB_PID) },
428 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01DC_PID) },
429 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01DD_PID) },
430 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01DE_PID) },
431 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01DF_PID) },
432 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01E0_PID) },
433 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01E1_PID) },
434 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01E2_PID) },
435 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01E3_PID) },
436 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01E4_PID) },
437 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01E5_PID) },
438 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01E6_PID) },
439 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01E7_PID) },
440 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01E8_PID) },
441 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01E9_PID) },
442 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01EA_PID) },
443 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01EB_PID) },
444 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01EC_PID) },
445 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01ED_PID) },
446 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01EE_PID) },
447 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01EF_PID) },
448 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01F0_PID) },
449 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01F1_PID) },
450 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01F2_PID) },
451 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01F3_PID) },
452 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01F4_PID) },
453 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01F5_PID) },
454 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01F6_PID) },
455 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01F7_PID) },
456 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01F8_PID) },
457 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01F9_PID) },
458 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01FA_PID) },
459 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01FB_PID) },
460 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01FC_PID) },
461 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01FD_PID) },
462 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01FE_PID) },
463 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01FF_PID) },
Ian Abbott8f977e42005-06-20 16:45:42 +0100464 { USB_DEVICE(FTDI_VID, FTDI_PERLE_ULTRAPORT_PID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 { USB_DEVICE(FTDI_VID, FTDI_PIEGROUP_PID) },
Dave Platt274a4bb2006-07-18 21:26:54 -0700466 { USB_DEVICE(FTDI_VID, FTDI_TNC_X_PID) },
Jelle Foks868e4402007-03-25 21:08:35 -0400467 { USB_DEVICE(FTDI_VID, FTDI_USBX_707_PID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2101_PID) },
469 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2102_PID) },
470 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2103_PID) },
471 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2104_PID) },
Justin Carlsona1484822006-09-24 11:52:12 +0300472 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2106_PID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2201_1_PID) },
474 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2201_2_PID) },
475 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2202_1_PID) },
476 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2202_2_PID) },
477 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2203_1_PID) },
478 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2203_2_PID) },
479 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2401_1_PID) },
480 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2401_2_PID) },
481 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2401_3_PID) },
482 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2401_4_PID) },
483 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2402_1_PID) },
484 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2402_2_PID) },
485 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2402_3_PID) },
486 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2402_4_PID) },
487 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2403_1_PID) },
488 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2403_2_PID) },
489 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2403_3_PID) },
490 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2403_4_PID) },
491 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_1_PID) },
492 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_2_PID) },
493 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_3_PID) },
494 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_4_PID) },
495 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_5_PID) },
496 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_6_PID) },
497 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_7_PID) },
498 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_8_PID) },
499 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_1_PID) },
500 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_2_PID) },
501 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_3_PID) },
502 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_4_PID) },
503 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_5_PID) },
504 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_6_PID) },
505 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_7_PID) },
506 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_8_PID) },
507 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_1_PID) },
508 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_2_PID) },
509 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_3_PID) },
510 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_4_PID) },
511 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_5_PID) },
512 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_6_PID) },
513 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_7_PID) },
514 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_8_PID) },
515 { USB_DEVICE(IDTECH_VID, IDTECH_IDT1221U_PID) },
516 { USB_DEVICE(OCT_VID, OCT_US101_PID) },
Ian Abbott8f977e42005-06-20 16:45:42 +0100517 { USB_DEVICE(FTDI_VID, FTDI_HE_TIRA1_PID),
518 .driver_info = (kernel_ulong_t)&ftdi_HE_TIRA1_quirk },
519 { USB_DEVICE(FTDI_VID, FTDI_USB_UIRT_PID),
520 .driver_info = (kernel_ulong_t)&ftdi_USB_UIRT_quirk },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 { USB_DEVICE(FTDI_VID, PROTEGO_SPECIAL_1) },
522 { USB_DEVICE(FTDI_VID, PROTEGO_R2X0) },
523 { USB_DEVICE(FTDI_VID, PROTEGO_SPECIAL_3) },
524 { USB_DEVICE(FTDI_VID, PROTEGO_SPECIAL_4) },
Ian Abbott8f977e42005-06-20 16:45:42 +0100525 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E808_PID) },
526 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E809_PID) },
527 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E80A_PID) },
528 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E80B_PID) },
529 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E80C_PID) },
530 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E80D_PID) },
531 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E80E_PID) },
532 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E80F_PID) },
533 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E888_PID) },
534 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E889_PID) },
535 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E88A_PID) },
536 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E88B_PID) },
537 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E88C_PID) },
538 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E88D_PID) },
539 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E88E_PID) },
540 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E88F_PID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 { USB_DEVICE(FTDI_VID, FTDI_ELV_UO100_PID) },
Ian Abbott47900742005-05-17 15:12:13 +0100542 { USB_DEVICE(FTDI_VID, FTDI_ELV_UM100_PID) },
Ian Abbotte6ac4a42005-08-02 14:01:27 +0100543 { USB_DEVICE(FTDI_VID, FTDI_ELV_UR100_PID) },
544 { USB_DEVICE(FTDI_VID, FTDI_ELV_ALC8500_PID) },
Thomas Riewe207c47e2005-09-29 14:57:29 +0200545 { USB_DEVICE(FTDI_VID, FTDI_PYRAMID_PID) },
Martin Hagelinbde62182005-10-26 21:10:41 +0200546 { USB_DEVICE(FTDI_VID, FTDI_ELV_FHZ1000PC_PID) },
Thomas Schleusener4eaf60e2007-02-28 22:50:52 +0100547 { USB_DEVICE(FTDI_VID, FTDI_IBS_US485_PID) },
548 { USB_DEVICE(FTDI_VID, FTDI_IBS_PICPRO_PID) },
549 { USB_DEVICE(FTDI_VID, FTDI_IBS_PCMCIA_PID) },
550 { USB_DEVICE(FTDI_VID, FTDI_IBS_PK1_PID) },
551 { USB_DEVICE(FTDI_VID, FTDI_IBS_RS232MON_PID) },
552 { USB_DEVICE(FTDI_VID, FTDI_IBS_APP70_PID) },
553 { USB_DEVICE(FTDI_VID, FTDI_IBS_PEDO_PID) },
554 { USB_DEVICE(FTDI_VID, FTDI_IBS_PROD_PID) },
Ian Abbotte6ac4a42005-08-02 14:01:27 +0100555 /*
Peter Stark42f8aa92007-12-25 18:32:08 +0100556 * Due to many user requests for multiple ELV devices we enable
557 * them by default.
Ian Abbotte6ac4a42005-08-02 14:01:27 +0100558 */
Peter Stark42f8aa92007-12-25 18:32:08 +0100559 { USB_DEVICE(FTDI_VID, FTDI_ELV_CLI7000_PID) },
560 { USB_DEVICE(FTDI_VID, FTDI_ELV_PPS7330_PID) },
561 { USB_DEVICE(FTDI_VID, FTDI_ELV_TFM100_PID) },
562 { USB_DEVICE(FTDI_VID, FTDI_ELV_UDF77_PID) },
563 { USB_DEVICE(FTDI_VID, FTDI_ELV_UIO88_PID) },
564 { USB_DEVICE(FTDI_VID, FTDI_ELV_UAD8_PID) },
565 { USB_DEVICE(FTDI_VID, FTDI_ELV_UDA7_PID) },
566 { USB_DEVICE(FTDI_VID, FTDI_ELV_USI2_PID) },
567 { USB_DEVICE(FTDI_VID, FTDI_ELV_T1100_PID) },
568 { USB_DEVICE(FTDI_VID, FTDI_ELV_PCD200_PID) },
569 { USB_DEVICE(FTDI_VID, FTDI_ELV_ULA200_PID) },
570 { USB_DEVICE(FTDI_VID, FTDI_ELV_CSI8_PID) },
571 { USB_DEVICE(FTDI_VID, FTDI_ELV_EM1000DL_PID) },
572 { USB_DEVICE(FTDI_VID, FTDI_ELV_PCK100_PID) },
573 { USB_DEVICE(FTDI_VID, FTDI_ELV_RFP500_PID) },
574 { USB_DEVICE(FTDI_VID, FTDI_ELV_FS20SIG_PID) },
575 { USB_DEVICE(FTDI_VID, FTDI_ELV_WS300PC_PID) },
576 { USB_DEVICE(FTDI_VID, FTDI_ELV_FHZ1300PC_PID) },
Sven Andersen4ae897d2008-03-04 22:09:11 +0100577 { USB_DEVICE(FTDI_VID, FTDI_ELV_EM1010PC_PID) },
Peter Stark42f8aa92007-12-25 18:32:08 +0100578 { USB_DEVICE(FTDI_VID, FTDI_ELV_WS500_PID) },
André Schenkb5894a52008-07-28 15:48:46 +0200579 { USB_DEVICE(FTDI_VID, FTDI_ELV_HS485_PID) },
David Brownell5c09d142006-10-13 15:57:58 -0700580 { USB_DEVICE(FTDI_VID, LINX_SDMUSBQSS_PID) },
581 { USB_DEVICE(FTDI_VID, LINX_MASTERDEVEL2_PID) },
582 { USB_DEVICE(FTDI_VID, LINX_FUTURE_0_PID) },
583 { USB_DEVICE(FTDI_VID, LINX_FUTURE_1_PID) },
584 { USB_DEVICE(FTDI_VID, LINX_FUTURE_2_PID) },
585 { USB_DEVICE(FTDI_VID, FTDI_CCSICDU20_0_PID) },
586 { USB_DEVICE(FTDI_VID, FTDI_CCSICDU40_1_PID) },
Jan Capekec434e92006-11-28 22:35:12 +0100587 { USB_DEVICE(FTDI_VID, FTDI_CCSMACHX_2_PID) },
Jan Capek9d37ff62009-06-10 18:58:52 +0200588 { USB_DEVICE(FTDI_VID, FTDI_CCSLOAD_N_GO_3_PID) },
589 { USB_DEVICE(FTDI_VID, FTDI_CCSICDU64_4_PID) },
590 { USB_DEVICE(FTDI_VID, FTDI_CCSPRIME8_5_PID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 { USB_DEVICE(FTDI_VID, INSIDE_ACCESSO) },
592 { USB_DEVICE(INTREPID_VID, INTREPID_VALUECAN_PID) },
593 { USB_DEVICE(INTREPID_VID, INTREPID_NEOVI_PID) },
594 { USB_DEVICE(FALCOM_VID, FALCOM_TWIST_PID) },
Ian Abbotte6ac4a42005-08-02 14:01:27 +0100595 { USB_DEVICE(FALCOM_VID, FALCOM_SAMBA_PID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 { USB_DEVICE(FTDI_VID, FTDI_SUUNTO_SPORTS_PID) },
Vladimir Vukicevicc3d36c42008-10-03 17:08:43 -0700597 { USB_DEVICE(FTDI_VID, FTDI_OCEANIC_PID) },
Michael Olbergef31fec2007-02-27 12:57:12 +0100598 { USB_DEVICE(TTI_VID, TTI_QL355P_PID) },
Ian Abbott6f928722005-04-29 16:06:14 +0100599 { USB_DEVICE(FTDI_VID, FTDI_RM_CANVIEW_PID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 { USB_DEVICE(BANDB_VID, BANDB_USOTL4_PID) },
601 { USB_DEVICE(BANDB_VID, BANDB_USTL4_PID) },
602 { USB_DEVICE(BANDB_VID, BANDB_USO9ML2_PID) },
603 { USB_DEVICE(FTDI_VID, EVER_ECO_PRO_CDS) },
Ian Abbott6f928722005-04-29 16:06:14 +0100604 { USB_DEVICE(FTDI_VID, FTDI_4N_GALAXY_DE_1_PID) },
605 { USB_DEVICE(FTDI_VID, FTDI_4N_GALAXY_DE_2_PID) },
Ian Abbotte6ac4a42005-08-02 14:01:27 +0100606 { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_0_PID) },
607 { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_1_PID) },
608 { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_2_PID) },
609 { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_3_PID) },
610 { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_4_PID) },
611 { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_5_PID) },
612 { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_6_PID) },
613 { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_7_PID) },
Ian Abbott6f928722005-04-29 16:06:14 +0100614 { USB_DEVICE(MOBILITY_VID, MOBILITY_USB_SERIAL_PID) },
Ian Abbott8f977e42005-06-20 16:45:42 +0100615 { USB_DEVICE(FTDI_VID, FTDI_ACTIVE_ROBOTS_PID) },
Ian Abbott34d1a8a2006-02-27 14:05:32 +0000616 { USB_DEVICE(FTDI_VID, FTDI_MHAM_KW_PID) },
617 { USB_DEVICE(FTDI_VID, FTDI_MHAM_YS_PID) },
Ian Abbott9b1513d2005-07-29 12:16:31 -0700618 { USB_DEVICE(FTDI_VID, FTDI_MHAM_Y6_PID) },
619 { USB_DEVICE(FTDI_VID, FTDI_MHAM_Y8_PID) },
Ian Abbott34d1a8a2006-02-27 14:05:32 +0000620 { USB_DEVICE(FTDI_VID, FTDI_MHAM_IC_PID) },
621 { USB_DEVICE(FTDI_VID, FTDI_MHAM_DB9_PID) },
622 { USB_DEVICE(FTDI_VID, FTDI_MHAM_RS232_PID) },
623 { USB_DEVICE(FTDI_VID, FTDI_MHAM_Y9_PID) },
Ian Abbott740a42822005-12-13 16:18:47 +0000624 { USB_DEVICE(FTDI_VID, FTDI_TERATRONIK_VCP_PID) },
625 { USB_DEVICE(FTDI_VID, FTDI_TERATRONIK_D2XX_PID) },
Ian Abbott9b1513d2005-07-29 12:16:31 -0700626 { USB_DEVICE(EVOLUTION_VID, EVOLUTION_ER1_PID) },
Søren Haubergc1f8ea72007-08-08 10:50:17 +0200627 { USB_DEVICE(EVOLUTION_VID, EVO_HYBRID_PID) },
628 { USB_DEVICE(EVOLUTION_VID, EVO_RCM4_PID) },
Rui Santosc9c77462005-09-23 20:06:50 +0100629 { USB_DEVICE(FTDI_VID, FTDI_ARTEMIS_PID) },
630 { USB_DEVICE(FTDI_VID, FTDI_ATIK_ATK16_PID) },
Rui Santos09c280a2006-01-09 13:12:40 +0000631 { USB_DEVICE(FTDI_VID, FTDI_ATIK_ATK16C_PID) },
Rui Santosc9c77462005-09-23 20:06:50 +0100632 { USB_DEVICE(FTDI_VID, FTDI_ATIK_ATK16HR_PID) },
Rui Santos09c280a2006-01-09 13:12:40 +0000633 { USB_DEVICE(FTDI_VID, FTDI_ATIK_ATK16HRC_PID) },
Franco Lanza34910432007-12-26 03:29:33 +0100634 { USB_DEVICE(FTDI_VID, FTDI_ATIK_ATK16IC_PID) },
Ian Abbottb4723ae2005-11-23 15:45:23 -0800635 { USB_DEVICE(KOBIL_VID, KOBIL_CONV_B1_PID) },
636 { USB_DEVICE(KOBIL_VID, KOBIL_CONV_KAAN_PID) },
Pavel Fedineffac8b2005-12-09 09:30:59 +0300637 { USB_DEVICE(POSIFLEX_VID, POSIFLEX_PP7000_PID) },
Louis Nyffenegger641adaa2006-01-05 17:20:37 +0100638 { USB_DEVICE(FTDI_VID, FTDI_TTUSB_PID) },
Ian Abbott7e1c0b82006-03-21 14:55:20 +0000639 { USB_DEVICE(FTDI_VID, FTDI_ECLO_COM_1WIRE_PID) },
Ian Abbotta94b52a2006-01-09 17:11:40 +0000640 { USB_DEVICE(FTDI_VID, FTDI_WESTREX_MODEL_777_PID) },
641 { USB_DEVICE(FTDI_VID, FTDI_WESTREX_MODEL_8900F_PID) },
Wouter Paesence40d292006-01-03 14:30:31 +0100642 { USB_DEVICE(FTDI_VID, FTDI_PCDJ_DAC2_PID) },
Nathan Bronsoncdd3b152006-04-10 00:05:09 -0400643 { USB_DEVICE(FTDI_VID, FTDI_RRCIRKITS_LOCOBUFFER_PID) },
Ian Abbott7e0258f2006-04-12 15:20:35 +0100644 { USB_DEVICE(FTDI_VID, FTDI_ASK_RDR400_PID) },
A. Maitland Bottomsbf58fbd2006-03-14 18:44:23 -0500645 { USB_DEVICE(ICOM_ID1_VID, ICOM_ID1_PID) },
Folkert van Heusden62a13db2006-03-28 20:41:26 +0900646 { USB_DEVICE(PAPOUCH_VID, PAPOUCH_TMU_PID) },
Ian Abbott20a0f472006-05-04 11:34:25 +0100647 { USB_DEVICE(FTDI_VID, FTDI_ACG_HFDUAL_PID) },
Ian Abbotteb79b4f2006-05-30 12:36:30 +0100648 { USB_DEVICE(FTDI_VID, FTDI_YEI_SERVOCENTER31_PID) },
D. Peter Siddons48437482006-06-17 18:09:15 -0400649 { USB_DEVICE(FTDI_VID, FTDI_THORLABS_PID) },
Colin Leroye1979fe2006-07-11 11:36:43 +0200650 { USB_DEVICE(TESTO_VID, TESTO_USB_INTERFACE_PID) },
Ralf Schlatterbeckeaede2c2006-09-06 12:15:02 +0200651 { USB_DEVICE(FTDI_VID, FTDI_GAMMA_SCOUT_PID) },
Ian Abbott9978f9e2006-09-25 14:19:19 +0100652 { USB_DEVICE(FTDI_VID, FTDI_TACTRIX_OPENPORT_13M_PID) },
653 { USB_DEVICE(FTDI_VID, FTDI_TACTRIX_OPENPORT_13S_PID) },
654 { USB_DEVICE(FTDI_VID, FTDI_TACTRIX_OPENPORT_13U_PID) },
Kjell Myksvoll40c36092006-10-22 23:26:42 +0200655 { USB_DEVICE(ELEKTOR_VID, ELEKTOR_FT323R_PID) },
Martin Geleynseb760dac2009-07-02 13:10:35 -0400656 { USB_DEVICE(FTDI_VID, FTDI_NDI_HUC_PID),
657 .driver_info = (kernel_ulong_t)&ftdi_NDI_device_quirk },
658 { USB_DEVICE(FTDI_VID, FTDI_NDI_SPECTRA_SCU_PID),
659 .driver_info = (kernel_ulong_t)&ftdi_NDI_device_quirk },
660 { USB_DEVICE(FTDI_VID, FTDI_NDI_FUTURE_2_PID),
661 .driver_info = (kernel_ulong_t)&ftdi_NDI_device_quirk },
662 { USB_DEVICE(FTDI_VID, FTDI_NDI_FUTURE_3_PID),
663 .driver_info = (kernel_ulong_t)&ftdi_NDI_device_quirk },
664 { USB_DEVICE(FTDI_VID, FTDI_NDI_AURORA_SCU_PID),
665 .driver_info = (kernel_ulong_t)&ftdi_NDI_device_quirk },
Micke Prag822c7ef2007-02-04 23:39:11 +0100666 { USB_DEVICE(TELLDUS_VID, TELLDUS_TELLSTICK_PID) },
Neil \"Superna\" ARMSTRONG762e92f2007-04-25 20:34:28 +0200667 { USB_DEVICE(FTDI_VID, FTDI_MAXSTREAM_PID) },
Lex Rossa5f62392008-08-06 16:25:08 +0400668 { USB_DEVICE(FTDI_VID, FTDI_PHI_FISCO_PID) },
Pierre Castellad7fde2d2007-09-06 22:34:39 +0200669 { USB_DEVICE(TML_VID, TML_USB_SERIAL_PID) },
Ed Beroset4bb0ef12008-01-17 17:37:46 -0500670 { USB_DEVICE(FTDI_VID, FTDI_ELSTER_UNICOM_PID) },
Mirko Bordignon11171d12008-03-10 11:38:55 +0100671 { USB_DEVICE(FTDI_VID, FTDI_PROPOX_JTAGCABLEII_PID) },
Tony Lindgrenfa91d432007-05-04 18:23:24 -0700672 { USB_DEVICE(OLIMEX_VID, OLIMEX_ARM_USB_OCD_PID),
Harald Welte20734342008-01-01 15:08:35 +0100673 .driver_info = (kernel_ulong_t)&ftdi_jtag_quirk },
674 { USB_DEVICE(FIC_VID, FIC_NEO1973_DEBUG_PID),
675 .driver_info = (kernel_ulong_t)&ftdi_jtag_quirk },
676 { USB_DEVICE(FTDI_VID, FTDI_OOCDLINK_PID),
677 .driver_info = (kernel_ulong_t)&ftdi_jtag_quirk },
Frederik Kriewitza00c3ca2008-07-30 16:53:41 +0200678 { USB_DEVICE(FTDI_VID, LMI_LM3S_DEVEL_BOARD_PID),
679 .driver_info = (kernel_ulong_t)&ftdi_jtag_quirk },
680 { USB_DEVICE(FTDI_VID, LMI_LM3S_EVAL_BOARD_PID),
681 .driver_info = (kernel_ulong_t)&ftdi_jtag_quirk },
Krzysztof Halasa14511412009-07-10 01:06:23 +0200682 { USB_DEVICE(FTDI_VID, FTDI_TURTELIZER_PID),
683 .driver_info = (kernel_ulong_t)&ftdi_jtag_quirk },
Atsushi Nemoto26ab7052008-05-17 00:13:56 +0900684 { USB_DEVICE(RATOC_VENDOR_ID, RATOC_PRODUCT_ID_USB60F) },
Jon K Hellan25423352008-06-24 11:43:13 +0200685 { USB_DEVICE(FTDI_VID, FTDI_REU_TINY_PID) },
Jaroslav Kyselaa18f80b2008-09-16 15:46:50 +0200686 { USB_DEVICE(PAPOUCH_VID, PAPOUCH_QUIDO4x4_PID) },
Gaetan Carlier96285cb2008-09-22 15:00:09 -0700687 { USB_DEVICE(FTDI_VID, FTDI_DOMINTELL_DGQG_PID) },
688 { USB_DEVICE(FTDI_VID, FTDI_DOMINTELL_DUSB_PID) },
Robie Basak45eeff82009-01-12 23:05:59 +0000689 { USB_DEVICE(ALTI2_VID, ALTI2_N3_PID) },
Mhayk Whandsonca808012009-01-09 06:48:16 -0400690 { USB_DEVICE(FTDI_VID, DIEBOLD_BCS_SE923_PID) },
Axel Wachtler7f82b6d2009-03-05 14:09:22 -0800691 { USB_DEVICE(ATMEL_VID, STK541_PID) },
692 { USB_DEVICE(DE_VID, STB_PID) },
693 { USB_DEVICE(DE_VID, WHT_PID) },
Michael Hennerichb0d659002009-03-06 14:07:43 -0800694 { USB_DEVICE(ADI_VID, ADI_GNICE_PID),
695 .driver_info = (kernel_ulong_t)&ftdi_jtag_quirk },
Peter Korsgaardae27d842009-03-25 11:32:59 +0100696 { USB_DEVICE(JETI_VID, JETI_SPC1201_PID) },
Nicolas Pitre1002bb72009-04-23 22:38:12 -0400697 { USB_DEVICE(MARVELL_VID, MARVELL_SHEEVAPLUG_PID),
698 .driver_info = (kernel_ulong_t)&ftdi_jtag_quirk },
Daniel Suchyd46130a2009-05-13 10:05:48 +0200699 { USB_DEVICE(LARSENBRUSGAARD_VID, LB_ALTITRACK_PID) },
Ian Abbottfdcb0a02005-07-28 18:40:32 +0100700 { }, /* Optional parameter entry */
701 { } /* Terminating entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702};
703
Alan Cox464cbb22008-07-22 11:11:23 +0100704MODULE_DEVICE_TABLE(usb, id_table_combined);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
706static struct usb_driver ftdi_driver = {
707 .name = "ftdi_sio",
708 .probe = usb_serial_probe,
709 .disconnect = usb_serial_disconnect,
710 .id_table = id_table_combined,
David Brownell5c09d142006-10-13 15:57:58 -0700711 .no_dynamic_id = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712};
713
Arjan van de Ven4c4c9432005-11-29 09:43:42 +0100714static const char *ftdi_chip_name[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 [SIO] = "SIO", /* the serial part of FT8U100AX */
716 [FT8U232AM] = "FT8U232AM",
717 [FT232BM] = "FT232BM",
718 [FT2232C] = "FT2232C",
Gard Spreemannd8b21602007-03-05 00:03:26 +0100719 [FT232RL] = "FT232RL",
Mark Adamson094c2e62009-04-09 15:03:09 +0100720 [FT2232H] = "FT2232H",
721 [FT4232H] = "FT4232H"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722};
723
724
725/* Constants for read urb and write urb */
726#define BUFSZ 512
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727
728/* rx_flags */
729#define THROTTLED 0x01
730#define ACTUALLY_THROTTLED 0x02
731
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732/* Used for TIOCMIWAIT */
733#define FTDI_STATUS_B0_MASK (FTDI_RS0_CTS | FTDI_RS0_DSR | FTDI_RS0_RI | FTDI_RS0_RLSD)
734#define FTDI_STATUS_B1_MASK (FTDI_RS_BI)
735/* End TIOCMIWAIT */
736
Roel Kluinbbc5d272008-02-07 01:06:07 +0100737#define FTDI_IMPL_ASYNC_FLAGS = (ASYNC_SPD_HI | ASYNC_SPD_VHI \
738 | ASYNC_SPD_CUST | ASYNC_SPD_SHI | ASYNC_SPD_WARP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
740/* function prototypes for a FTDI serial converter */
Alan Cox464cbb22008-07-22 11:11:23 +0100741static int ftdi_sio_probe(struct usb_serial *serial,
742 const struct usb_device_id *id);
Alan Cox464cbb22008-07-22 11:11:23 +0100743static int ftdi_sio_port_probe(struct usb_serial_port *port);
744static int ftdi_sio_port_remove(struct usb_serial_port *port);
745static int ftdi_open(struct tty_struct *tty,
746 struct usb_serial_port *port, struct file *filp);
Alan Cox335f8512009-06-11 12:26:29 +0100747static void ftdi_close(struct usb_serial_port *port);
748static void ftdi_dtr_rts(struct usb_serial_port *port, int on);
Alan Cox464cbb22008-07-22 11:11:23 +0100749static int ftdi_write(struct tty_struct *tty, struct usb_serial_port *port,
750 const unsigned char *buf, int count);
751static int ftdi_write_room(struct tty_struct *tty);
752static int ftdi_chars_in_buffer(struct tty_struct *tty);
753static void ftdi_write_bulk_callback(struct urb *urb);
754static void ftdi_read_bulk_callback(struct urb *urb);
755static void ftdi_process_read(struct work_struct *work);
756static void ftdi_set_termios(struct tty_struct *tty,
757 struct usb_serial_port *port, struct ktermios *old);
758static int ftdi_tiocmget(struct tty_struct *tty, struct file *file);
759static int ftdi_tiocmset(struct tty_struct *tty, struct file *file,
760 unsigned int set, unsigned int clear);
761static int ftdi_ioctl(struct tty_struct *tty, struct file *file,
762 unsigned int cmd, unsigned long arg);
763static void ftdi_break_ctl(struct tty_struct *tty, int break_state);
764static void ftdi_throttle(struct tty_struct *tty);
765static void ftdi_unthrottle(struct tty_struct *tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
Alan Cox464cbb22008-07-22 11:11:23 +0100767static unsigned short int ftdi_232am_baud_base_to_divisor(int baud, int base);
768static unsigned short int ftdi_232am_baud_to_divisor(int baud);
769static __u32 ftdi_232bm_baud_base_to_divisor(int baud, int base);
770static __u32 ftdi_232bm_baud_to_divisor(int baud);
Mark Adamson094c2e62009-04-09 15:03:09 +0100771static __u32 ftdi_2232h_baud_base_to_divisor(int baud, int base);
772static __u32 ftdi_2232h_baud_to_divisor(int baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -0700774static struct usb_serial_driver ftdi_sio_device = {
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700775 .driver = {
776 .owner = THIS_MODULE,
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -0700777 .name = "ftdi_sio",
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700778 },
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -0700779 .description = "FTDI USB Serial Device",
Johannes Hölzld9b1b782006-12-17 21:50:24 +0100780 .usb_driver = &ftdi_driver ,
Ian Abbott8f977e42005-06-20 16:45:42 +0100781 .id_table = id_table_combined,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 .num_ports = 1,
Ian Abbott8f977e42005-06-20 16:45:42 +0100783 .probe = ftdi_sio_probe,
Jim Radford12bdbe02007-02-28 10:10:50 -0800784 .port_probe = ftdi_sio_port_probe,
785 .port_remove = ftdi_sio_port_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 .open = ftdi_open,
787 .close = ftdi_close,
Alan Cox335f8512009-06-11 12:26:29 +0100788 .dtr_rts = ftdi_dtr_rts,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 .throttle = ftdi_throttle,
790 .unthrottle = ftdi_unthrottle,
791 .write = ftdi_write,
792 .write_room = ftdi_write_room,
793 .chars_in_buffer = ftdi_chars_in_buffer,
794 .read_bulk_callback = ftdi_read_bulk_callback,
795 .write_bulk_callback = ftdi_write_bulk_callback,
796 .tiocmget = ftdi_tiocmget,
797 .tiocmset = ftdi_tiocmset,
798 .ioctl = ftdi_ioctl,
799 .set_termios = ftdi_set_termios,
800 .break_ctl = ftdi_break_ctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801};
802
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
804#define WDR_TIMEOUT 5000 /* default urb timeout */
Ian Abbott279e1542005-07-29 12:16:52 -0700805#define WDR_SHORT_TIMEOUT 1000 /* shorter urb timeout */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806
807/* High and low are for DTR, RTS etc etc */
808#define HIGH 1
809#define LOW 0
810
Ian Abbott22465402006-06-26 12:59:17 +0100811/* number of outstanding urbs to prevent userspace DoS from happening */
812#define URB_UPPER_LIMIT 42
813
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814/*
815 * ***************************************************************************
Tony Lindgrenfa91d432007-05-04 18:23:24 -0700816 * Utility functions
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 * ***************************************************************************
818 */
819
820static unsigned short int ftdi_232am_baud_base_to_divisor(int baud, int base)
821{
822 unsigned short int divisor;
Alan Cox464cbb22008-07-22 11:11:23 +0100823 /* divisor shifted 3 bits to the left */
824 int divisor3 = base / 2 / baud;
825 if ((divisor3 & 0x7) == 7)
826 divisor3++; /* round x.7/8 up to x+1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 divisor = divisor3 >> 3;
828 divisor3 &= 0x7;
Alan Cox464cbb22008-07-22 11:11:23 +0100829 if (divisor3 == 1)
830 divisor |= 0xc000;
831 else if (divisor3 >= 4)
832 divisor |= 0x4000;
833 else if (divisor3 != 0)
834 divisor |= 0x8000;
835 else if (divisor == 1)
836 divisor = 0; /* special case for maximum baud rate */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 return divisor;
838}
839
840static unsigned short int ftdi_232am_baud_to_divisor(int baud)
841{
Alan Cox464cbb22008-07-22 11:11:23 +0100842 return ftdi_232am_baud_base_to_divisor(baud, 48000000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843}
844
845static __u32 ftdi_232bm_baud_base_to_divisor(int baud, int base)
846{
847 static const unsigned char divfrac[8] = { 0, 3, 2, 4, 1, 5, 6, 7 };
848 __u32 divisor;
Alan Cox464cbb22008-07-22 11:11:23 +0100849 /* divisor shifted 3 bits to the left */
850 int divisor3 = base / 2 / baud;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 divisor = divisor3 >> 3;
852 divisor |= (__u32)divfrac[divisor3 & 0x7] << 14;
853 /* Deal with special cases for highest baud rates. */
Alan Cox464cbb22008-07-22 11:11:23 +0100854 if (divisor == 1)
855 divisor = 0;
856 else if (divisor == 0x4001)
857 divisor = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 return divisor;
859}
860
861static __u32 ftdi_232bm_baud_to_divisor(int baud)
862{
Alan Cox464cbb22008-07-22 11:11:23 +0100863 return ftdi_232bm_baud_base_to_divisor(baud, 48000000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864}
865
Mark Adamson094c2e62009-04-09 15:03:09 +0100866static __u32 ftdi_2232h_baud_base_to_divisor(int baud, int base)
867{
868 static const unsigned char divfrac[8] = { 0, 3, 2, 4, 1, 5, 6, 7 };
869 __u32 divisor;
870 int divisor3;
871
872 /* hi-speed baud rate is 10-bit sampling instead of 16-bit */
873 divisor3 = (base / 10 / baud) * 8;
874
875 divisor = divisor3 >> 3;
876 divisor |= (__u32)divfrac[divisor3 & 0x7] << 14;
877 /* Deal with special cases for highest baud rates. */
878 if (divisor == 1)
879 divisor = 0;
880 else if (divisor == 0x4001)
881 divisor = 1;
882 /*
883 * Set this bit to turn off a divide by 2.5 on baud rate generator
884 * This enables baud rates up to 12Mbaud but cannot reach below 1200
885 * baud with this bit set
886 */
887 divisor |= 0x00020000;
888 return divisor;
889}
890
891static __u32 ftdi_2232h_baud_to_divisor(int baud)
892{
893 return ftdi_2232h_baud_base_to_divisor(baud, 120000000);
894}
895
Ian Abbott74ede0f2005-07-29 12:16:41 -0700896#define set_mctrl(port, set) update_mctrl((port), (set), 0)
897#define clear_mctrl(port, clear) update_mctrl((port), 0, (clear))
898
Alan Cox464cbb22008-07-22 11:11:23 +0100899static int update_mctrl(struct usb_serial_port *port, unsigned int set,
900 unsigned int clear)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901{
902 struct ftdi_private *priv = usb_get_serial_port_data(port);
903 char *buf;
Ian Abbott74ede0f2005-07-29 12:16:41 -0700904 unsigned urb_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 int rv;
Ian Abbott74ede0f2005-07-29 12:16:41 -0700906
907 if (((set | clear) & (TIOCM_DTR | TIOCM_RTS)) == 0) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800908 dbg("%s - DTR|RTS not being set|cleared", __func__);
Ian Abbott74ede0f2005-07-29 12:16:41 -0700909 return 0; /* no change */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 }
Ian Abbott74ede0f2005-07-29 12:16:41 -0700911
912 buf = kmalloc(1, GFP_NOIO);
Alan Cox9b0f2582008-02-20 20:49:53 +0000913 if (!buf)
Ian Abbott74ede0f2005-07-29 12:16:41 -0700914 return -ENOMEM;
Ian Abbott74ede0f2005-07-29 12:16:41 -0700915
916 clear &= ~set; /* 'set' takes precedence over 'clear' */
917 urb_value = 0;
918 if (clear & TIOCM_DTR)
919 urb_value |= FTDI_SIO_SET_DTR_LOW;
920 if (clear & TIOCM_RTS)
921 urb_value |= FTDI_SIO_SET_RTS_LOW;
922 if (set & TIOCM_DTR)
923 urb_value |= FTDI_SIO_SET_DTR_HIGH;
924 if (set & TIOCM_RTS)
925 urb_value |= FTDI_SIO_SET_RTS_HIGH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 rv = usb_control_msg(port->serial->dev,
927 usb_sndctrlpipe(port->serial->dev, 0),
David Brownell5c09d142006-10-13 15:57:58 -0700928 FTDI_SIO_SET_MODEM_CTRL_REQUEST,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 FTDI_SIO_SET_MODEM_CTRL_REQUEST_TYPE,
Ian Abbott74ede0f2005-07-29 12:16:41 -0700930 urb_value, priv->interface,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 buf, 0, WDR_TIMEOUT);
932
933 kfree(buf);
Ian Abbott74ede0f2005-07-29 12:16:41 -0700934 if (rv < 0) {
Alan Cox43b11d32008-10-13 10:36:00 +0100935 dbg("%s Error from MODEM_CTRL urb: DTR %s, RTS %s",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800936 __func__,
Ian Abbott74ede0f2005-07-29 12:16:41 -0700937 (set & TIOCM_DTR) ? "HIGH" :
938 (clear & TIOCM_DTR) ? "LOW" : "unchanged",
939 (set & TIOCM_RTS) ? "HIGH" :
940 (clear & TIOCM_RTS) ? "LOW" : "unchanged");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 } else {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800942 dbg("%s - DTR %s, RTS %s", __func__,
Ian Abbott74ede0f2005-07-29 12:16:41 -0700943 (set & TIOCM_DTR) ? "HIGH" :
944 (clear & TIOCM_DTR) ? "LOW" : "unchanged",
945 (set & TIOCM_RTS) ? "HIGH" :
946 (clear & TIOCM_RTS) ? "LOW" : "unchanged");
Alan Cox9b0f2582008-02-20 20:49:53 +0000947 /* FIXME: locking on last_dtr_rts */
Ian Abbott74ede0f2005-07-29 12:16:41 -0700948 priv->last_dtr_rts = (priv->last_dtr_rts & ~clear) | set;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 return rv;
951}
952
953
Alan Cox464cbb22008-07-22 11:11:23 +0100954static __u32 get_ftdi_divisor(struct tty_struct *tty,
955 struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956{ /* get_ftdi_divisor */
957 struct ftdi_private *priv = usb_get_serial_port_data(port);
958 __u32 div_value = 0;
959 int div_okay = 1;
960 int baud;
961
962 /*
Alan Cox464cbb22008-07-22 11:11:23 +0100963 * The logic involved in setting the baudrate can be cleanly split into
964 * 3 steps.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 * 1. Standard baud rates are set in tty->termios->c_cflag
Alan Cox464cbb22008-07-22 11:11:23 +0100966 * 2. If these are not enough, you can set any speed using alt_speed as
967 * follows:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 * - set tty->termios->c_cflag speed to B38400
969 * - set your real speed in tty->alt_speed; it gets ignored when
970 * alt_speed==0, (or)
Alan Cox464cbb22008-07-22 11:11:23 +0100971 * - call TIOCSSERIAL ioctl with (struct serial_struct) set as
972 * follows:
973 * flags & ASYNC_SPD_MASK == ASYNC_SPD_[HI, VHI, SHI, WARP],
974 * this just sets alt_speed to (HI: 57600, VHI: 115200,
975 * SHI: 230400, WARP: 460800)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 * ** Steps 1, 2 are done courtesy of tty_get_baud_rate
977 * 3. You can also set baud rate by setting custom divisor as follows
978 * - set tty->termios->c_cflag speed to B38400
Alan Cox464cbb22008-07-22 11:11:23 +0100979 * - call TIOCSSERIAL ioctl with (struct serial_struct) set as
980 * follows:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 * o flags & ASYNC_SPD_MASK == ASYNC_SPD_CUST
982 * o custom_divisor set to baud_base / your_new_baudrate
Alan Cox464cbb22008-07-22 11:11:23 +0100983 * ** Step 3 is done courtesy of code borrowed from serial.c
984 * I should really spend some time and separate + move this common
985 * code to serial.c, it is replicated in nearly every serial driver
986 * you see.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 */
988
Alan Cox464cbb22008-07-22 11:11:23 +0100989 /* 1. Get the baud rate from the tty settings, this observes
990 alt_speed hack */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
Alan Cox95da3102008-07-22 11:09:07 +0100992 baud = tty_get_baud_rate(tty);
Harvey Harrison441b62c2008-03-03 16:08:34 -0800993 dbg("%s - tty_get_baud_rate reports speed %d", __func__, baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994
Alan Cox464cbb22008-07-22 11:11:23 +0100995 /* 2. Observe async-compatible custom_divisor hack, update baudrate
996 if needed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997
998 if (baud == 38400 &&
999 ((priv->flags & ASYNC_SPD_MASK) == ASYNC_SPD_CUST) &&
1000 (priv->custom_divisor)) {
1001 baud = priv->baud_base / priv->custom_divisor;
Alan Cox464cbb22008-07-22 11:11:23 +01001002 dbg("%s - custom divisor %d sets baud rate to %d",
1003 __func__, priv->custom_divisor, baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 }
1005
1006 /* 3. Convert baudrate to device-specific divisor */
1007
Alan Cox464cbb22008-07-22 11:11:23 +01001008 if (!baud)
1009 baud = 9600;
1010 switch (priv->chip_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 case SIO: /* SIO chip */
Alan Cox464cbb22008-07-22 11:11:23 +01001012 switch (baud) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 case 300: div_value = ftdi_sio_b300; break;
1014 case 600: div_value = ftdi_sio_b600; break;
1015 case 1200: div_value = ftdi_sio_b1200; break;
1016 case 2400: div_value = ftdi_sio_b2400; break;
1017 case 4800: div_value = ftdi_sio_b4800; break;
1018 case 9600: div_value = ftdi_sio_b9600; break;
1019 case 19200: div_value = ftdi_sio_b19200; break;
1020 case 38400: div_value = ftdi_sio_b38400; break;
1021 case 57600: div_value = ftdi_sio_b57600; break;
1022 case 115200: div_value = ftdi_sio_b115200; break;
1023 } /* baud */
1024 if (div_value == 0) {
Alan Cox464cbb22008-07-22 11:11:23 +01001025 dbg("%s - Baudrate (%d) requested is not supported",
1026 __func__, baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 div_value = ftdi_sio_b9600;
Andrew Mortonbd5e47c2007-10-18 01:24:25 -07001028 baud = 9600;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 div_okay = 0;
1030 }
1031 break;
1032 case FT8U232AM: /* 8U232AM chip */
1033 if (baud <= 3000000) {
1034 div_value = ftdi_232am_baud_to_divisor(baud);
1035 } else {
Alan Cox464cbb22008-07-22 11:11:23 +01001036 dbg("%s - Baud rate too high!", __func__);
Andrew Mortonbd5e47c2007-10-18 01:24:25 -07001037 baud = 9600;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 div_value = ftdi_232am_baud_to_divisor(9600);
1039 div_okay = 0;
1040 }
1041 break;
1042 case FT232BM: /* FT232BM chip */
1043 case FT2232C: /* FT2232C chip */
David Brownell3b009c62007-03-23 12:54:27 -07001044 case FT232RL:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 if (baud <= 3000000) {
Martin Geleynseb760dac2009-07-02 13:10:35 -04001046 __u16 product_id = le16_to_cpu(
1047 port->serial->dev->descriptor.idProduct);
1048 if (((FTDI_NDI_HUC_PID == product_id) ||
1049 (FTDI_NDI_SPECTRA_SCU_PID == product_id) ||
1050 (FTDI_NDI_FUTURE_2_PID == product_id) ||
1051 (FTDI_NDI_FUTURE_3_PID == product_id) ||
1052 (FTDI_NDI_AURORA_SCU_PID == product_id)) &&
1053 (baud == 19200)) {
1054 baud = 1200000;
1055 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 div_value = ftdi_232bm_baud_to_divisor(baud);
1057 } else {
Alan Cox464cbb22008-07-22 11:11:23 +01001058 dbg("%s - Baud rate too high!", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 div_value = ftdi_232bm_baud_to_divisor(9600);
1060 div_okay = 0;
Alan Cox669a6db2007-10-18 01:24:24 -07001061 baud = 9600;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 }
1063 break;
Mark Adamson094c2e62009-04-09 15:03:09 +01001064 case FT2232H: /* FT2232H chip */
1065 case FT4232H: /* FT4232H chip */
1066 if ((baud <= 12000000) & (baud >= 1200)) {
1067 div_value = ftdi_2232h_baud_to_divisor(baud);
1068 } else if (baud < 1200) {
1069 div_value = ftdi_232bm_baud_to_divisor(baud);
1070 } else {
1071 dbg("%s - Baud rate too high!", __func__);
1072 div_value = ftdi_232bm_baud_to_divisor(9600);
1073 div_okay = 0;
1074 baud = 9600;
1075 }
1076 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 } /* priv->chip_type */
1078
1079 if (div_okay) {
1080 dbg("%s - Baud rate set to %d (divisor 0x%lX) on chip %s",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001081 __func__, baud, (unsigned long)div_value,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 ftdi_chip_name[priv->chip_type]);
1083 }
1084
Alan Cox95da3102008-07-22 11:09:07 +01001085 tty_encode_baud_rate(tty, baud, baud);
Alan Cox464cbb22008-07-22 11:11:23 +01001086 return div_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087}
1088
Alan Cox95da3102008-07-22 11:09:07 +01001089static int change_speed(struct tty_struct *tty, struct usb_serial_port *port)
1090{
1091 struct ftdi_private *priv = usb_get_serial_port_data(port);
1092 char *buf;
Alan Cox464cbb22008-07-22 11:11:23 +01001093 __u16 urb_value;
Alan Cox95da3102008-07-22 11:09:07 +01001094 __u16 urb_index;
1095 __u32 urb_index_value;
1096 int rv;
1097
1098 buf = kmalloc(1, GFP_NOIO);
1099 if (!buf)
1100 return -ENOMEM;
1101
1102 urb_index_value = get_ftdi_divisor(tty, port);
1103 urb_value = (__u16)urb_index_value;
1104 urb_index = (__u16)(urb_index_value >> 16);
1105 if (priv->interface) { /* FT2232C */
1106 urb_index = (__u16)((urb_index << 8) | priv->interface);
1107 }
1108
1109 rv = usb_control_msg(port->serial->dev,
1110 usb_sndctrlpipe(port->serial->dev, 0),
1111 FTDI_SIO_SET_BAUDRATE_REQUEST,
1112 FTDI_SIO_SET_BAUDRATE_REQUEST_TYPE,
1113 urb_value, urb_index,
1114 buf, 0, WDR_SHORT_TIMEOUT);
1115
1116 kfree(buf);
1117 return rv;
1118}
1119
Alan Cox557aaa72009-06-11 13:55:34 +01001120static int write_latency_timer(struct usb_serial_port *port)
1121{
1122 struct ftdi_private *priv = usb_get_serial_port_data(port);
1123 struct usb_device *udev = port->serial->dev;
1124 char buf[1];
1125 int rv = 0;
1126 int l = priv->latency;
Alan Cox95da3102008-07-22 11:09:07 +01001127
Alan Cox557aaa72009-06-11 13:55:34 +01001128 if (priv->flags & ASYNC_LOW_LATENCY)
1129 l = 1;
1130
1131 dbg("%s: setting latency timer = %i", __func__, l);
1132
1133 rv = usb_control_msg(udev,
1134 usb_sndctrlpipe(udev, 0),
1135 FTDI_SIO_SET_LATENCY_TIMER_REQUEST,
1136 FTDI_SIO_SET_LATENCY_TIMER_REQUEST_TYPE,
1137 l, priv->interface,
1138 buf, 0, WDR_TIMEOUT);
1139
1140 if (rv < 0)
1141 dev_err(&port->dev, "Unable to write latency timer: %i\n", rv);
1142 return rv;
1143}
1144
1145static int read_latency_timer(struct usb_serial_port *port)
1146{
1147 struct ftdi_private *priv = usb_get_serial_port_data(port);
1148 struct usb_device *udev = port->serial->dev;
1149 unsigned short latency = 0;
1150 int rv = 0;
1151
1152
1153 dbg("%s", __func__);
1154
1155 rv = usb_control_msg(udev,
1156 usb_rcvctrlpipe(udev, 0),
1157 FTDI_SIO_GET_LATENCY_TIMER_REQUEST,
1158 FTDI_SIO_GET_LATENCY_TIMER_REQUEST_TYPE,
1159 0, priv->interface,
1160 (char *) &latency, 1, WDR_TIMEOUT);
1161
1162 if (rv < 0) {
1163 dev_err(&port->dev, "Unable to read latency timer: %i\n", rv);
1164 return -EIO;
1165 }
1166 return latency;
1167}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168
Alan Cox464cbb22008-07-22 11:11:23 +01001169static int get_serial_info(struct usb_serial_port *port,
1170 struct serial_struct __user *retinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171{
1172 struct ftdi_private *priv = usb_get_serial_port_data(port);
1173 struct serial_struct tmp;
1174
1175 if (!retinfo)
1176 return -EFAULT;
1177 memset(&tmp, 0, sizeof(tmp));
1178 tmp.flags = priv->flags;
1179 tmp.baud_base = priv->baud_base;
1180 tmp.custom_divisor = priv->custom_divisor;
1181 if (copy_to_user(retinfo, &tmp, sizeof(*retinfo)))
1182 return -EFAULT;
1183 return 0;
1184} /* get_serial_info */
1185
1186
Alan Cox95da3102008-07-22 11:09:07 +01001187static int set_serial_info(struct tty_struct *tty,
Alan Cox464cbb22008-07-22 11:11:23 +01001188 struct usb_serial_port *port, struct serial_struct __user *newinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189{ /* set_serial_info */
1190 struct ftdi_private *priv = usb_get_serial_port_data(port);
1191 struct serial_struct new_serial;
1192 struct ftdi_private old_priv;
1193
1194 if (copy_from_user(&new_serial, newinfo, sizeof(new_serial)))
1195 return -EFAULT;
Alan Cox6b447f042009-01-02 13:48:56 +00001196
1197 lock_kernel();
Alan Cox464cbb22008-07-22 11:11:23 +01001198 old_priv = *priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199
1200 /* Do error checking and permission checking */
1201
1202 if (!capable(CAP_SYS_ADMIN)) {
1203 if (((new_serial.flags & ~ASYNC_USR_MASK) !=
Dan Carpenter64905b42009-02-03 11:11:38 +03001204 (priv->flags & ~ASYNC_USR_MASK))) {
1205 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 return -EPERM;
Dan Carpenter64905b42009-02-03 11:11:38 +03001207 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 priv->flags = ((priv->flags & ~ASYNC_USR_MASK) |
1209 (new_serial.flags & ASYNC_USR_MASK));
1210 priv->custom_divisor = new_serial.custom_divisor;
1211 goto check_and_exit;
1212 }
1213
1214 if ((new_serial.baud_base != priv->baud_base) &&
Alan Cox6b447f042009-01-02 13:48:56 +00001215 (new_serial.baud_base < 9600)) {
1216 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 return -EINVAL;
Alan Cox6b447f042009-01-02 13:48:56 +00001218 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219
1220 /* Make the changes - these are privileged changes! */
1221
1222 priv->flags = ((priv->flags & ~ASYNC_FLAGS) |
Alan Cox464cbb22008-07-22 11:11:23 +01001223 (new_serial.flags & ASYNC_FLAGS));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 priv->custom_divisor = new_serial.custom_divisor;
1225
Alan Cox95da3102008-07-22 11:09:07 +01001226 tty->low_latency = (priv->flags & ASYNC_LOW_LATENCY) ? 1 : 0;
Alan Cox557aaa72009-06-11 13:55:34 +01001227 write_latency_timer(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228
1229check_and_exit:
1230 if ((old_priv.flags & ASYNC_SPD_MASK) !=
1231 (priv->flags & ASYNC_SPD_MASK)) {
1232 if ((priv->flags & ASYNC_SPD_MASK) == ASYNC_SPD_HI)
Alan Cox95da3102008-07-22 11:09:07 +01001233 tty->alt_speed = 57600;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 else if ((priv->flags & ASYNC_SPD_MASK) == ASYNC_SPD_VHI)
Alan Cox95da3102008-07-22 11:09:07 +01001235 tty->alt_speed = 115200;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 else if ((priv->flags & ASYNC_SPD_MASK) == ASYNC_SPD_SHI)
Alan Cox95da3102008-07-22 11:09:07 +01001237 tty->alt_speed = 230400;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 else if ((priv->flags & ASYNC_SPD_MASK) == ASYNC_SPD_WARP)
Alan Cox95da3102008-07-22 11:09:07 +01001239 tty->alt_speed = 460800;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 else
Alan Cox95da3102008-07-22 11:09:07 +01001241 tty->alt_speed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 }
1243 if (((old_priv.flags & ASYNC_SPD_MASK) !=
1244 (priv->flags & ASYNC_SPD_MASK)) ||
1245 (((priv->flags & ASYNC_SPD_MASK) == ASYNC_SPD_CUST) &&
1246 (old_priv.custom_divisor != priv->custom_divisor))) {
Alan Cox6b447f042009-01-02 13:48:56 +00001247 unlock_kernel();
Alan Cox95da3102008-07-22 11:09:07 +01001248 change_speed(tty, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 }
Alan Cox6b447f042009-01-02 13:48:56 +00001250 else
1251 unlock_kernel();
Alan Cox95da3102008-07-22 11:09:07 +01001252 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253
1254} /* set_serial_info */
1255
1256
Ian Abbott8f977e42005-06-20 16:45:42 +01001257/* Determine type of FTDI chip based on USB config and descriptor. */
1258static void ftdi_determine_type(struct usb_serial_port *port)
1259{
1260 struct ftdi_private *priv = usb_get_serial_port_data(port);
1261 struct usb_serial *serial = port->serial;
1262 struct usb_device *udev = serial->dev;
1263 unsigned version;
1264 unsigned interfaces;
1265
1266 /* Assume it is not the original SIO device for now. */
Ian Abbottf5e09b72005-09-12 12:23:25 +01001267 priv->baud_base = 48000000 / 2;
Ian Abbott8f977e42005-06-20 16:45:42 +01001268 priv->write_offset = 0;
1269
1270 version = le16_to_cpu(udev->descriptor.bcdDevice);
1271 interfaces = udev->actconfig->desc.bNumInterfaces;
Harvey Harrison441b62c2008-03-03 16:08:34 -08001272 dbg("%s: bcdDevice = 0x%x, bNumInterfaces = %u", __func__,
Ian Abbott8f977e42005-06-20 16:45:42 +01001273 version, interfaces);
1274 if (interfaces > 1) {
1275 int inter;
1276
Mark Adamson094c2e62009-04-09 15:03:09 +01001277 /* Multiple interfaces.*/
1278 if (version == 0x0800) {
1279 priv->chip_type = FT4232H;
1280 /* Hi-speed - baud clock runs at 120MHz */
1281 priv->baud_base = 120000000 / 2;
1282 } else if (version == 0x0700) {
1283 priv->chip_type = FT2232H;
1284 /* Hi-speed - baud clock runs at 120MHz */
1285 priv->baud_base = 120000000 / 2;
1286 } else
1287 priv->chip_type = FT2232C;
1288
Ian Abbott8f977e42005-06-20 16:45:42 +01001289 /* Determine interface code. */
1290 inter = serial->interface->altsetting->desc.bInterfaceNumber;
Mark Adamson094c2e62009-04-09 15:03:09 +01001291 if (inter == 0) {
1292 priv->interface = INTERFACE_A;
1293 } else if (inter == 1) {
1294 priv->interface = INTERFACE_B;
1295 } else if (inter == 2) {
1296 priv->interface = INTERFACE_C;
1297 } else if (inter == 3) {
1298 priv->interface = INTERFACE_D;
1299 }
Ian Abbott8f977e42005-06-20 16:45:42 +01001300 /* BM-type devices have a bug where bcdDevice gets set
1301 * to 0x200 when iSerialNumber is 0. */
1302 if (version < 0x500) {
1303 dbg("%s: something fishy - bcdDevice too low for multi-interface device",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001304 __func__);
Ian Abbott8f977e42005-06-20 16:45:42 +01001305 }
1306 } else if (version < 0x200) {
1307 /* Old device. Assume its the original SIO. */
1308 priv->chip_type = SIO;
1309 priv->baud_base = 12000000 / 16;
1310 priv->write_offset = 1;
1311 } else if (version < 0x400) {
1312 /* Assume its an FT8U232AM (or FT8U245AM) */
1313 /* (It might be a BM because of the iSerialNumber bug,
1314 * but it will still work as an AM device.) */
1315 priv->chip_type = FT8U232AM;
David Brownell3b009c62007-03-23 12:54:27 -07001316 } else if (version < 0x600) {
Ian Abbott8f977e42005-06-20 16:45:42 +01001317 /* Assume its an FT232BM (or FT245BM) */
1318 priv->chip_type = FT232BM;
David Brownell3b009c62007-03-23 12:54:27 -07001319 } else {
1320 /* Assume its an FT232R */
1321 priv->chip_type = FT232RL;
Ian Abbott8f977e42005-06-20 16:45:42 +01001322 }
Greg Kroah-Hartmanc197a8d2008-08-18 13:21:04 -07001323 dev_info(&udev->dev, "Detected %s\n", ftdi_chip_name[priv->chip_type]);
Ian Abbott8f977e42005-06-20 16:45:42 +01001324}
1325
1326
Mark Adamson895f28b2009-05-01 11:48:45 +01001327/* Determine the maximum packet size for the device. This depends on the chip
1328 * type and the USB host capabilities. The value should be obtained from the
1329 * device descriptor as the chip will use the appropriate values for the host.*/
1330static void ftdi_set_max_packet_size(struct usb_serial_port *port)
1331{
1332 struct ftdi_private *priv = usb_get_serial_port_data(port);
1333 struct usb_serial *serial = port->serial;
1334 struct usb_device *udev = serial->dev;
1335
1336 struct usb_interface *interface = serial->interface;
1337 struct usb_endpoint_descriptor *ep_desc = &interface->cur_altsetting->endpoint[1].desc;
1338
1339 unsigned num_endpoints;
1340 int i = 0;
1341
1342 num_endpoints = interface->cur_altsetting->desc.bNumEndpoints;
1343 dev_info(&udev->dev, "Number of endpoints %d\n", num_endpoints);
1344
1345 /* NOTE: some customers have programmed FT232R/FT245R devices
1346 * with an endpoint size of 0 - not good. In this case, we
1347 * want to override the endpoint descriptor setting and use a
1348 * value of 64 for wMaxPacketSize */
1349 for (i = 0; i < num_endpoints; i++) {
1350 dev_info(&udev->dev, "Endpoint %d MaxPacketSize %d\n", i+1,
1351 interface->cur_altsetting->endpoint[i].desc.wMaxPacketSize);
1352 ep_desc = &interface->cur_altsetting->endpoint[i].desc;
1353 if (ep_desc->wMaxPacketSize == 0) {
1354 ep_desc->wMaxPacketSize = cpu_to_le16(0x40);
1355 dev_info(&udev->dev, "Overriding wMaxPacketSize on endpoint %d\n", i);
1356 }
1357 }
1358
1359 /* set max packet size based on descriptor */
1360 priv->max_packet_size = ep_desc->wMaxPacketSize;
1361
1362 dev_info(&udev->dev, "Setting MaxPacketSize %d\n", priv->max_packet_size);
1363}
1364
1365
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366/*
1367 * ***************************************************************************
1368 * Sysfs Attribute
1369 * ***************************************************************************
1370 */
1371
Alan Cox464cbb22008-07-22 11:11:23 +01001372static ssize_t show_latency_timer(struct device *dev,
1373 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374{
1375 struct usb_serial_port *port = to_usb_serial_port(dev);
1376 struct ftdi_private *priv = usb_get_serial_port_data(port);
Alan Cox557aaa72009-06-11 13:55:34 +01001377 if (priv->flags & ASYNC_LOW_LATENCY)
1378 return sprintf(buf, "1\n");
1379 else
1380 return sprintf(buf, "%i\n", priv->latency);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381}
1382
Alan Cox557aaa72009-06-11 13:55:34 +01001383
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384/* Write a new value of the latency timer, in units of milliseconds. */
Alan Cox464cbb22008-07-22 11:11:23 +01001385static ssize_t store_latency_timer(struct device *dev,
1386 struct device_attribute *attr, const char *valbuf,
1387 size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388{
1389 struct usb_serial_port *port = to_usb_serial_port(dev);
1390 struct ftdi_private *priv = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 int v = simple_strtoul(valbuf, NULL, 10);
1392 int rv = 0;
David Brownell5c09d142006-10-13 15:57:58 -07001393
Alan Cox557aaa72009-06-11 13:55:34 +01001394 priv->latency = v;
1395 rv = write_latency_timer(port);
1396 if (rv < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 return count;
1399}
1400
1401/* Write an event character directly to the FTDI register. The ASCII
1402 value is in the low 8 bits, with the enable bit in the 9th bit. */
Alan Cox464cbb22008-07-22 11:11:23 +01001403static ssize_t store_event_char(struct device *dev,
1404 struct device_attribute *attr, const char *valbuf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405{
1406 struct usb_serial_port *port = to_usb_serial_port(dev);
1407 struct ftdi_private *priv = usb_get_serial_port_data(port);
Jim Radford12bdbe02007-02-28 10:10:50 -08001408 struct usb_device *udev = port->serial->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 char buf[1];
1410 int v = simple_strtoul(valbuf, NULL, 10);
1411 int rv = 0;
David Brownell5c09d142006-10-13 15:57:58 -07001412
Harvey Harrison441b62c2008-03-03 16:08:34 -08001413 dbg("%s: setting event char = %i", __func__, v);
David Brownell5c09d142006-10-13 15:57:58 -07001414
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 rv = usb_control_msg(udev,
1416 usb_sndctrlpipe(udev, 0),
1417 FTDI_SIO_SET_EVENT_CHAR_REQUEST,
1418 FTDI_SIO_SET_EVENT_CHAR_REQUEST_TYPE,
David Brownell5c09d142006-10-13 15:57:58 -07001419 v, priv->interface,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 buf, 0, WDR_TIMEOUT);
David Brownell5c09d142006-10-13 15:57:58 -07001421
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 if (rv < 0) {
1423 dbg("Unable to write event character: %i", rv);
1424 return -EIO;
1425 }
David Brownell5c09d142006-10-13 15:57:58 -07001426
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 return count;
1428}
1429
Alan Cox464cbb22008-07-22 11:11:23 +01001430static DEVICE_ATTR(latency_timer, S_IWUSR | S_IRUGO, show_latency_timer,
1431 store_latency_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432static DEVICE_ATTR(event_char, S_IWUSR, NULL, store_event_char);
1433
Jim Radford12bdbe02007-02-28 10:10:50 -08001434static int create_sysfs_attrs(struct usb_serial_port *port)
Greg Kroah-Hartman13f4db92006-08-28 11:43:25 -07001435{
Jim Radford12bdbe02007-02-28 10:10:50 -08001436 struct ftdi_private *priv = usb_get_serial_port_data(port);
Greg Kroah-Hartman13f4db92006-08-28 11:43:25 -07001437 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438
Alan Cox464cbb22008-07-22 11:11:23 +01001439 dbg("%s", __func__);
Greg Kroah-Hartman13f4db92006-08-28 11:43:25 -07001440
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 /* XXX I've no idea if the original SIO supports the event_char
1442 * sysfs parameter, so I'm playing it safe. */
1443 if (priv->chip_type != SIO) {
1444 dbg("sysfs attributes for %s", ftdi_chip_name[priv->chip_type]);
Jim Radford12bdbe02007-02-28 10:10:50 -08001445 retval = device_create_file(&port->dev, &dev_attr_event_char);
Greg Kroah-Hartman13f4db92006-08-28 11:43:25 -07001446 if ((!retval) &&
Stepan Moskovchenko97cd49e2007-05-09 14:53:04 -04001447 (priv->chip_type == FT232BM ||
1448 priv->chip_type == FT2232C ||
Mark Adamson094c2e62009-04-09 15:03:09 +01001449 priv->chip_type == FT232RL ||
1450 priv->chip_type == FT2232H ||
1451 priv->chip_type == FT4232H)) {
Jim Radford12bdbe02007-02-28 10:10:50 -08001452 retval = device_create_file(&port->dev,
Greg Kroah-Hartman13f4db92006-08-28 11:43:25 -07001453 &dev_attr_latency_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 }
1455 }
Greg Kroah-Hartman13f4db92006-08-28 11:43:25 -07001456 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457}
1458
Jim Radford12bdbe02007-02-28 10:10:50 -08001459static void remove_sysfs_attrs(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460{
Jim Radford12bdbe02007-02-28 10:10:50 -08001461 struct ftdi_private *priv = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462
Alan Cox464cbb22008-07-22 11:11:23 +01001463 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 /* XXX see create_sysfs_attrs */
1466 if (priv->chip_type != SIO) {
Jim Radford12bdbe02007-02-28 10:10:50 -08001467 device_remove_file(&port->dev, &dev_attr_event_char);
Andrew M. Bishoped6e5282007-08-21 19:08:56 +01001468 if (priv->chip_type == FT232BM ||
1469 priv->chip_type == FT2232C ||
Mark Adamson094c2e62009-04-09 15:03:09 +01001470 priv->chip_type == FT232RL ||
1471 priv->chip_type == FT2232H ||
1472 priv->chip_type == FT4232H) {
Jim Radford12bdbe02007-02-28 10:10:50 -08001473 device_remove_file(&port->dev, &dev_attr_latency_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 }
1475 }
David Brownell5c09d142006-10-13 15:57:58 -07001476
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477}
1478
1479/*
1480 * ***************************************************************************
1481 * FTDI driver specific functions
1482 * ***************************************************************************
1483 */
1484
Ian Abbott8f977e42005-06-20 16:45:42 +01001485/* Probe function to check for special devices */
Alan Cox464cbb22008-07-22 11:11:23 +01001486static int ftdi_sio_probe(struct usb_serial *serial,
1487 const struct usb_device_id *id)
Ian Abbott8f977e42005-06-20 16:45:42 +01001488{
Alan Cox464cbb22008-07-22 11:11:23 +01001489 struct ftdi_sio_quirk *quirk =
1490 (struct ftdi_sio_quirk *)id->driver_info;
Tony Lindgrenfa91d432007-05-04 18:23:24 -07001491
1492 if (quirk && quirk->probe) {
1493 int ret = quirk->probe(serial);
1494 if (ret != 0)
1495 return ret;
1496 }
1497
Ian Abbott8f977e42005-06-20 16:45:42 +01001498 usb_set_serial_data(serial, (void *)id->driver_info);
1499
Tony Lindgrenfa91d432007-05-04 18:23:24 -07001500 return 0;
Ian Abbott8f977e42005-06-20 16:45:42 +01001501}
1502
Jim Radford12bdbe02007-02-28 10:10:50 -08001503static int ftdi_sio_port_probe(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 struct ftdi_private *priv;
Oliver Neukum0ffbbe252007-07-09 12:03:08 -07001506 struct ftdi_sio_quirk *quirk = usb_get_serial_data(port->serial);
1507
Greg Kroah-Hartman13f4db92006-08-28 11:43:25 -07001508
Alan Cox464cbb22008-07-22 11:11:23 +01001509 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510
Eric Sesterhenn80b6ca42006-02-27 21:29:43 +01001511 priv = kzalloc(sizeof(struct ftdi_private), GFP_KERNEL);
Alan Cox464cbb22008-07-22 11:11:23 +01001512 if (!priv) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07001513 dev_err(&port->dev, "%s- kmalloc(%Zd) failed.\n", __func__,
Alan Cox464cbb22008-07-22 11:11:23 +01001514 sizeof(struct ftdi_private));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 return -ENOMEM;
1516 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517
Alan Sternc45d6322009-04-30 10:06:19 -04001518 kref_init(&priv->kref);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 spin_lock_init(&priv->rx_lock);
Ian Abbott22465402006-06-26 12:59:17 +01001520 spin_lock_init(&priv->tx_lock);
Alan Cox464cbb22008-07-22 11:11:23 +01001521 init_waitqueue_head(&priv->delta_msr_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 /* This will push the characters through immediately rather
1523 than queue a task to deliver them */
1524 priv->flags = ASYNC_LOW_LATENCY;
1525
Oliver Neukum0ffbbe252007-07-09 12:03:08 -07001526 if (quirk && quirk->port_probe)
1527 quirk->port_probe(priv);
1528
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 /* Increase the size of read buffers */
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -07001530 kfree(port->bulk_in_buffer);
Alan Cox464cbb22008-07-22 11:11:23 +01001531 port->bulk_in_buffer = kmalloc(BUFSZ, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 if (!port->bulk_in_buffer) {
Alan Cox464cbb22008-07-22 11:11:23 +01001533 kfree(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 return -ENOMEM;
1535 }
1536 if (port->read_urb) {
1537 port->read_urb->transfer_buffer = port->bulk_in_buffer;
1538 port->read_urb->transfer_buffer_length = BUFSZ;
1539 }
1540
David Howellsc4028952006-11-22 14:57:56 +00001541 INIT_DELAYED_WORK(&priv->rx_work, ftdi_process_read);
1542 priv->port = port;
Ian Abbott76854ce2005-06-02 10:34:11 +01001543
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 /* Free port's existing write urb and transfer buffer. */
1545 if (port->write_urb) {
Alan Cox464cbb22008-07-22 11:11:23 +01001546 usb_free_urb(port->write_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 port->write_urb = NULL;
1548 }
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -07001549 kfree(port->bulk_out_buffer);
1550 port->bulk_out_buffer = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551
Jim Radford12bdbe02007-02-28 10:10:50 -08001552 usb_set_serial_port_data(port, priv);
Ian Abbott8f977e42005-06-20 16:45:42 +01001553
Alan Cox464cbb22008-07-22 11:11:23 +01001554 ftdi_determine_type(port);
Mark Adamson895f28b2009-05-01 11:48:45 +01001555 ftdi_set_max_packet_size(port);
Alan Cox557aaa72009-06-11 13:55:34 +01001556 read_latency_timer(port);
Jim Radford12bdbe02007-02-28 10:10:50 -08001557 create_sysfs_attrs(port);
1558 return 0;
1559}
Ian Abbott8f977e42005-06-20 16:45:42 +01001560
Ian Abbott8f977e42005-06-20 16:45:42 +01001561/* Setup for the USB-UIRT device, which requires hardwired
1562 * baudrate (38400 gets mapped to 312500) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563/* Called from usbserial:serial_probe */
Alan Cox464cbb22008-07-22 11:11:23 +01001564static void ftdi_USB_UIRT_setup(struct ftdi_private *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565{
Alan Cox464cbb22008-07-22 11:11:23 +01001566 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 priv->flags |= ASYNC_SPD_CUST;
1569 priv->custom_divisor = 77;
Alan Cox669a6db2007-10-18 01:24:24 -07001570 priv->force_baud = 38400;
Ian Abbott8f977e42005-06-20 16:45:42 +01001571} /* ftdi_USB_UIRT_setup */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572
Ian Abbott8f977e42005-06-20 16:45:42 +01001573/* Setup for the HE-TIRA1 device, which requires hardwired
1574 * baudrate (38400 gets mapped to 100000) and RTS-CTS enabled. */
Alan Cox464cbb22008-07-22 11:11:23 +01001575
1576static void ftdi_HE_TIRA1_setup(struct ftdi_private *priv)
Ian Abbott8f977e42005-06-20 16:45:42 +01001577{
Alan Cox464cbb22008-07-22 11:11:23 +01001578 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 priv->flags |= ASYNC_SPD_CUST;
1581 priv->custom_divisor = 240;
Alan Cox669a6db2007-10-18 01:24:24 -07001582 priv->force_baud = 38400;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 priv->force_rtscts = 1;
Ian Abbott8f977e42005-06-20 16:45:42 +01001584} /* ftdi_HE_TIRA1_setup */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585
Tony Lindgrenfa91d432007-05-04 18:23:24 -07001586/*
Martin Geleynseb760dac2009-07-02 13:10:35 -04001587 * Module parameter to control latency timer for NDI FTDI-based USB devices.
1588 * If this value is not set in modprobe.conf.local its value will be set to 1ms.
1589 */
1590static int ndi_latency_timer = 1;
1591
1592/* Setup for the NDI FTDI-based USB devices, which requires hardwired
1593 * baudrate (19200 gets mapped to 1200000).
1594 *
1595 * Called from usbserial:serial_probe.
1596 */
1597static int ftdi_NDI_device_setup(struct usb_serial *serial)
1598{
1599 struct usb_device *udev = serial->dev;
1600 int latency = ndi_latency_timer;
1601 int rv = 0;
1602 char buf[1];
1603
1604 if (latency == 0)
1605 latency = 1;
1606 if (latency > 99)
1607 latency = 99;
1608
1609 dbg("%s setting NDI device latency to %d", __func__, latency);
1610 dev_info(&udev->dev, "NDI device with a latency value of %d", latency);
1611
1612 rv = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
1613 FTDI_SIO_SET_LATENCY_TIMER_REQUEST,
1614 FTDI_SIO_SET_LATENCY_TIMER_REQUEST_TYPE,
1615 latency, 0, buf, 0, WDR_TIMEOUT);
1616 return 0;
1617}
1618
1619/*
Harald Welte20734342008-01-01 15:08:35 +01001620 * First port on JTAG adaptors such as Olimex arm-usb-ocd or the FIC/OpenMoko
1621 * Neo1973 Debug Board is reserved for JTAG interface and can be accessed from
1622 * userspace using openocd.
Tony Lindgrenfa91d432007-05-04 18:23:24 -07001623 */
Harald Welte20734342008-01-01 15:08:35 +01001624static int ftdi_jtag_probe(struct usb_serial *serial)
Tony Lindgrenfa91d432007-05-04 18:23:24 -07001625{
1626 struct usb_device *udev = serial->dev;
1627 struct usb_interface *interface = serial->interface;
1628
Alan Cox464cbb22008-07-22 11:11:23 +01001629 dbg("%s", __func__);
Tony Lindgrenfa91d432007-05-04 18:23:24 -07001630
1631 if (interface == udev->actconfig->interface[0]) {
Greg Kroah-Hartmanc197a8d2008-08-18 13:21:04 -07001632 dev_info(&udev->dev,
1633 "Ignoring serial port reserved for JTAG\n");
Tony Lindgrenfa91d432007-05-04 18:23:24 -07001634 return -ENODEV;
1635 }
1636
1637 return 0;
1638}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639
Kevin Vance546d7ee2008-03-01 13:49:59 -05001640/*
1641 * The Matrix Orbital VK204-25-USB has an invalid IN endpoint.
1642 * We have to correct it if we want to read from it.
1643 */
1644static int ftdi_mtxorb_hack_setup(struct usb_serial *serial)
1645{
1646 struct usb_host_endpoint *ep = serial->dev->ep_in[1];
1647 struct usb_endpoint_descriptor *ep_desc = &ep->desc;
1648
1649 if (ep->enabled && ep_desc->wMaxPacketSize == 0) {
Al Virofd05e722008-04-28 07:00:16 +01001650 ep_desc->wMaxPacketSize = cpu_to_le16(0x40);
Greg Kroah-Hartmanc197a8d2008-08-18 13:21:04 -07001651 dev_info(&serial->dev->dev,
1652 "Fixing invalid wMaxPacketSize on read pipe\n");
Kevin Vance546d7ee2008-03-01 13:49:59 -05001653 }
1654
1655 return 0;
1656}
1657
Alan Sternc45d6322009-04-30 10:06:19 -04001658static void ftdi_sio_priv_release(struct kref *k)
1659{
1660 struct ftdi_private *priv = container_of(k, struct ftdi_private, kref);
1661
1662 kfree(priv);
1663}
1664
Jim Radford12bdbe02007-02-28 10:10:50 -08001665static int ftdi_sio_port_remove(struct usb_serial_port *port)
1666{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 struct ftdi_private *priv = usb_get_serial_port_data(port);
1668
Harvey Harrison441b62c2008-03-03 16:08:34 -08001669 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670
Jim Radford12bdbe02007-02-28 10:10:50 -08001671 remove_sysfs_attrs(port);
David Brownell5c09d142006-10-13 15:57:58 -07001672
David Woodhouse80193192009-05-18 13:07:35 +01001673 kref_put(&priv->kref, ftdi_sio_priv_release);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674
Jim Radford12bdbe02007-02-28 10:10:50 -08001675 return 0;
1676}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677
Alan Cox95da3102008-07-22 11:09:07 +01001678static int ftdi_open(struct tty_struct *tty,
1679 struct usb_serial_port *port, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680{ /* ftdi_open */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 struct usb_device *dev = port->serial->dev;
1682 struct ftdi_private *priv = usb_get_serial_port_data(port);
1683 unsigned long flags;
David Brownell5c09d142006-10-13 15:57:58 -07001684
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 int result = 0;
1686 char buf[1]; /* Needed for the usb_control_msg I think */
1687
Harvey Harrison441b62c2008-03-03 16:08:34 -08001688 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689
Ian Abbott22465402006-06-26 12:59:17 +01001690 spin_lock_irqsave(&priv->tx_lock, flags);
1691 priv->tx_bytes = 0;
1692 spin_unlock_irqrestore(&priv->tx_lock, flags);
1693 spin_lock_irqsave(&priv->rx_lock, flags);
1694 priv->rx_bytes = 0;
1695 spin_unlock_irqrestore(&priv->rx_lock, flags);
1696
Alan Cox95da3102008-07-22 11:09:07 +01001697 if (tty)
1698 tty->low_latency = (priv->flags & ASYNC_LOW_LATENCY) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699
Alan Cox557aaa72009-06-11 13:55:34 +01001700 write_latency_timer(port);
1701
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 /* No error checking for this (will get errors later anyway) */
1703 /* See ftdi_sio.h for description of what is reset */
1704 usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
David Brownell5c09d142006-10-13 15:57:58 -07001705 FTDI_SIO_RESET_REQUEST, FTDI_SIO_RESET_REQUEST_TYPE,
1706 FTDI_SIO_RESET_SIO,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 priv->interface, buf, 0, WDR_TIMEOUT);
1708
1709 /* Termios defaults are set by usb_serial_init. We don't change
Nick Andrewc4f01242008-12-05 16:34:46 +00001710 port->tty->termios - this would lose speed settings, etc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 This is same behaviour as serial.c/rs_open() - Kuba */
1712
1713 /* ftdi_set_termios will send usb control messages */
Alan Cox95da3102008-07-22 11:09:07 +01001714 if (tty)
1715 ftdi_set_termios(tty, port, tty->termios);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 /* Not throttled */
1718 spin_lock_irqsave(&priv->rx_lock, flags);
1719 priv->rx_flags &= ~(THROTTLED | ACTUALLY_THROTTLED);
1720 spin_unlock_irqrestore(&priv->rx_lock, flags);
1721
1722 /* Start reading from the device */
Ian Abbott76854ce2005-06-02 10:34:11 +01001723 priv->rx_processed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 usb_fill_bulk_urb(port->read_urb, dev,
Alan Cox464cbb22008-07-22 11:11:23 +01001725 usb_rcvbulkpipe(dev, port->bulk_in_endpointAddress),
1726 port->read_urb->transfer_buffer,
1727 port->read_urb->transfer_buffer_length,
1728 ftdi_read_bulk_callback, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 result = usb_submit_urb(port->read_urb, GFP_KERNEL);
1730 if (result)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07001731 dev_err(&port->dev,
1732 "%s - failed submitting read urb, error %d\n",
1733 __func__, result);
Alan Sternc45d6322009-04-30 10:06:19 -04001734 else
1735 kref_get(&priv->kref);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736
1737 return result;
1738} /* ftdi_open */
1739
1740
Alan Cox335f8512009-06-11 12:26:29 +01001741static void ftdi_dtr_rts(struct usb_serial_port *port, int on)
1742{
1743 struct ftdi_private *priv = usb_get_serial_port_data(port);
1744 char buf[1];
1745
1746 mutex_lock(&port->serial->disc_mutex);
1747 if (!port->serial->disconnected) {
1748 /* Disable flow control */
1749 if (!on && usb_control_msg(port->serial->dev,
1750 usb_sndctrlpipe(port->serial->dev, 0),
1751 FTDI_SIO_SET_FLOW_CTRL_REQUEST,
1752 FTDI_SIO_SET_FLOW_CTRL_REQUEST_TYPE,
1753 0, priv->interface, buf, 0,
1754 WDR_TIMEOUT) < 0) {
1755 dev_err(&port->dev, "error from flowcontrol urb\n");
1756 }
1757 /* drop RTS and DTR */
1758 if (on)
1759 set_mctrl(port, TIOCM_DTR | TIOCM_RTS);
1760 else
1761 clear_mctrl(port, TIOCM_DTR | TIOCM_RTS);
1762 }
1763 mutex_unlock(&port->serial->disc_mutex);
1764}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765
David Brownell5c09d142006-10-13 15:57:58 -07001766/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 * usbserial:__serial_close only calls ftdi_close if the point is open
1768 *
1769 * This only gets called when it is the last close
David Brownell5c09d142006-10-13 15:57:58 -07001770 *
1771 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 */
1773
Alan Cox335f8512009-06-11 12:26:29 +01001774static void ftdi_close(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775{ /* ftdi_close */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 struct ftdi_private *priv = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777
Harvey Harrison441b62c2008-03-03 16:08:34 -08001778 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779
Ian Abbott76854ce2005-06-02 10:34:11 +01001780
1781 /* cancel any scheduled reading */
Alan Sternc45d6322009-04-30 10:06:19 -04001782 cancel_delayed_work_sync(&priv->rx_work);
David Brownell5c09d142006-10-13 15:57:58 -07001783
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 /* shutdown our bulk read */
Mariusz Kozlowski794c9442006-11-08 15:36:25 +01001785 usb_kill_urb(port->read_urb);
Alan Sternc45d6322009-04-30 10:06:19 -04001786 kref_put(&priv->kref, ftdi_sio_priv_release);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787} /* ftdi_close */
1788
1789
David Brownell5c09d142006-10-13 15:57:58 -07001790
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791/* The SIO requires the first byte to have:
1792 * B0 1
1793 * B1 0
1794 * B2..7 length of message excluding byte 0
1795 *
1796 * The new devices do not require this byte
1797 */
Alan Cox95da3102008-07-22 11:09:07 +01001798static int ftdi_write(struct tty_struct *tty, struct usb_serial_port *port,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 const unsigned char *buf, int count)
1800{ /* ftdi_write */
1801 struct ftdi_private *priv = usb_get_serial_port_data(port);
1802 struct urb *urb;
1803 unsigned char *buffer;
1804 int data_offset ; /* will be 1 for the SIO and 0 otherwise */
1805 int status;
1806 int transfer_size;
Ian Abbott22465402006-06-26 12:59:17 +01001807 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808
Harvey Harrison441b62c2008-03-03 16:08:34 -08001809 dbg("%s port %d, %d bytes", __func__, port->number, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810
1811 if (count == 0) {
1812 dbg("write request of 0 bytes");
1813 return 0;
1814 }
Ian Abbott22465402006-06-26 12:59:17 +01001815 spin_lock_irqsave(&priv->tx_lock, flags);
1816 if (priv->tx_outstanding_urbs > URB_UPPER_LIMIT) {
1817 spin_unlock_irqrestore(&priv->tx_lock, flags);
Harvey Harrison441b62c2008-03-03 16:08:34 -08001818 dbg("%s - write limit hit\n", __func__);
Ian Abbott22465402006-06-26 12:59:17 +01001819 return 0;
1820 }
Oliver Neukum62127a52007-03-23 14:30:16 +01001821 priv->tx_outstanding_urbs++;
Ian Abbott22465402006-06-26 12:59:17 +01001822 spin_unlock_irqrestore(&priv->tx_lock, flags);
David Brownell5c09d142006-10-13 15:57:58 -07001823
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 data_offset = priv->write_offset;
Alan Cox464cbb22008-07-22 11:11:23 +01001825 dbg("data_offset set to %d", data_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826
1827 /* Determine total transfer size */
1828 transfer_size = count;
1829 if (data_offset > 0) {
1830 /* Original sio needs control bytes too... */
1831 transfer_size += (data_offset *
Mark Adamson895f28b2009-05-01 11:48:45 +01001832 ((count + (priv->max_packet_size - 1 - data_offset)) /
1833 (priv->max_packet_size - data_offset)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 }
1835
Alan Cox464cbb22008-07-22 11:11:23 +01001836 buffer = kmalloc(transfer_size, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 if (!buffer) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07001838 dev_err(&port->dev,
1839 "%s ran out of kernel memory for urb ...\n", __func__);
Oliver Neukum62127a52007-03-23 14:30:16 +01001840 count = -ENOMEM;
1841 goto error_no_buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 }
1843
1844 urb = usb_alloc_urb(0, GFP_ATOMIC);
1845 if (!urb) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07001846 dev_err(&port->dev, "%s - no more free urbs\n", __func__);
Oliver Neukum62127a52007-03-23 14:30:16 +01001847 count = -ENOMEM;
1848 goto error_no_urb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 }
1850
1851 /* Copy data */
1852 if (data_offset > 0) {
Alan Cox464cbb22008-07-22 11:11:23 +01001853 /* Original sio requires control byte at start of
1854 each packet. */
Mark Adamson895f28b2009-05-01 11:48:45 +01001855 int user_pktsz = priv->max_packet_size - data_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 int todo = count;
1857 unsigned char *first_byte = buffer;
1858 const unsigned char *current_position = buf;
1859
1860 while (todo > 0) {
Alan Cox464cbb22008-07-22 11:11:23 +01001861 if (user_pktsz > todo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 user_pktsz = todo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 /* Write the control byte at the front of the packet*/
David Brownell5c09d142006-10-13 15:57:58 -07001864 *first_byte = 1 | ((user_pktsz) << 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 /* Copy data for packet */
Alan Cox464cbb22008-07-22 11:11:23 +01001866 memcpy(first_byte + data_offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 current_position, user_pktsz);
1868 first_byte += user_pktsz + data_offset;
1869 current_position += user_pktsz;
1870 todo -= user_pktsz;
1871 }
1872 } else {
1873 /* No control byte required. */
1874 /* Copy in the data to send */
Alan Cox464cbb22008-07-22 11:11:23 +01001875 memcpy(buffer, buf, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 }
1877
Alan Cox464cbb22008-07-22 11:11:23 +01001878 usb_serial_debug_data(debug, &port->dev, __func__,
1879 transfer_size, buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880
1881 /* fill the buffer and send it */
David Brownell5c09d142006-10-13 15:57:58 -07001882 usb_fill_bulk_urb(urb, port->serial->dev,
Alan Cox464cbb22008-07-22 11:11:23 +01001883 usb_sndbulkpipe(port->serial->dev,
1884 port->bulk_out_endpointAddress),
1885 buffer, transfer_size,
1886 ftdi_write_bulk_callback, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887
1888 status = usb_submit_urb(urb, GFP_ATOMIC);
1889 if (status) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07001890 dev_err(&port->dev,
1891 "%s - failed submitting write urb, error %d\n",
1892 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 count = status;
Oliver Neukum62127a52007-03-23 14:30:16 +01001894 goto error;
Ian Abbott22465402006-06-26 12:59:17 +01001895 } else {
1896 spin_lock_irqsave(&priv->tx_lock, flags);
Ian Abbott22465402006-06-26 12:59:17 +01001897 priv->tx_outstanding_bytes += count;
1898 priv->tx_bytes += count;
1899 spin_unlock_irqrestore(&priv->tx_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 }
1901
1902 /* we are done with this urb, so let the host driver
1903 * really free it when it is finished with it */
Oliver Neukum62127a52007-03-23 14:30:16 +01001904 usb_free_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905
Harvey Harrison441b62c2008-03-03 16:08:34 -08001906 dbg("%s write returning: %d", __func__, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 return count;
Oliver Neukum62127a52007-03-23 14:30:16 +01001908error:
1909 usb_free_urb(urb);
1910error_no_urb:
Alan Cox464cbb22008-07-22 11:11:23 +01001911 kfree(buffer);
Oliver Neukum62127a52007-03-23 14:30:16 +01001912error_no_buffer:
1913 spin_lock_irqsave(&priv->tx_lock, flags);
1914 priv->tx_outstanding_urbs--;
1915 spin_unlock_irqrestore(&priv->tx_lock, flags);
1916 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917} /* ftdi_write */
1918
1919
1920/* This function may get called when the device is closed */
1921
Alan Cox464cbb22008-07-22 11:11:23 +01001922static void ftdi_write_bulk_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923{
Ian Abbott22465402006-06-26 12:59:17 +01001924 unsigned long flags;
Ming Leicdc97792008-02-24 18:41:47 +08001925 struct usb_serial_port *port = urb->context;
Ian Abbott22465402006-06-26 12:59:17 +01001926 struct ftdi_private *priv;
1927 int data_offset; /* will be 1 for the SIO and 0 otherwise */
1928 unsigned long countback;
Greg Kroah-Hartman0fb0aa12007-06-15 15:44:13 -07001929 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930
1931 /* free up the transfer buffer, as usb_free_urb() does not do this */
Alan Cox464cbb22008-07-22 11:11:23 +01001932 kfree(urb->transfer_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933
Harvey Harrison441b62c2008-03-03 16:08:34 -08001934 dbg("%s - port %d", __func__, port->number);
David Brownell5c09d142006-10-13 15:57:58 -07001935
Ian Abbott22465402006-06-26 12:59:17 +01001936 priv = usb_get_serial_port_data(port);
1937 if (!priv) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001938 dbg("%s - bad port private data pointer - exiting", __func__);
Ian Abbott22465402006-06-26 12:59:17 +01001939 return;
1940 }
1941 /* account for transferred data */
1942 countback = urb->actual_length;
1943 data_offset = priv->write_offset;
1944 if (data_offset > 0) {
1945 /* Subtract the control bytes */
Mark Adamson895f28b2009-05-01 11:48:45 +01001946 countback -= (data_offset * DIV_ROUND_UP(countback, priv->max_packet_size));
Ian Abbott22465402006-06-26 12:59:17 +01001947 }
1948 spin_lock_irqsave(&priv->tx_lock, flags);
1949 --priv->tx_outstanding_urbs;
1950 priv->tx_outstanding_bytes -= countback;
1951 spin_unlock_irqrestore(&priv->tx_lock, flags);
1952
Jason Wessel87c1edd2009-05-11 15:24:08 -05001953 if (status) {
1954 dbg("nonzero write bulk status received: %d", status);
1955 return;
1956 }
1957
Pete Zaitcevcf2c7482006-05-22 21:58:49 -07001958 usb_serial_port_softint(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959} /* ftdi_write_bulk_callback */
1960
1961
Alan Cox95da3102008-07-22 11:09:07 +01001962static int ftdi_write_room(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963{
Alan Cox95da3102008-07-22 11:09:07 +01001964 struct usb_serial_port *port = tty->driver_data;
Ian Abbott22465402006-06-26 12:59:17 +01001965 struct ftdi_private *priv = usb_get_serial_port_data(port);
1966 int room;
1967 unsigned long flags;
1968
Harvey Harrison441b62c2008-03-03 16:08:34 -08001969 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970
Ian Abbott22465402006-06-26 12:59:17 +01001971 spin_lock_irqsave(&priv->tx_lock, flags);
1972 if (priv->tx_outstanding_urbs < URB_UPPER_LIMIT) {
1973 /*
1974 * We really can take anything the user throws at us
1975 * but let's pick a nice big number to tell the tty
1976 * layer that we have lots of free space
1977 */
1978 room = 2048;
1979 } else {
1980 room = 0;
1981 }
1982 spin_unlock_irqrestore(&priv->tx_lock, flags);
1983 return room;
Alan Cox95da3102008-07-22 11:09:07 +01001984}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985
Alan Cox95da3102008-07-22 11:09:07 +01001986static int ftdi_chars_in_buffer(struct tty_struct *tty)
1987{
1988 struct usb_serial_port *port = tty->driver_data;
Ian Abbott22465402006-06-26 12:59:17 +01001989 struct ftdi_private *priv = usb_get_serial_port_data(port);
1990 int buffered;
1991 unsigned long flags;
1992
Harvey Harrison441b62c2008-03-03 16:08:34 -08001993 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994
Ian Abbott22465402006-06-26 12:59:17 +01001995 spin_lock_irqsave(&priv->tx_lock, flags);
1996 buffered = (int)priv->tx_outstanding_bytes;
1997 spin_unlock_irqrestore(&priv->tx_lock, flags);
1998 if (buffered < 0) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07001999 dev_err(&port->dev, "%s outstanding tx bytes is negative!\n",
2000 __func__);
Ian Abbott22465402006-06-26 12:59:17 +01002001 buffered = 0;
2002 }
2003 return buffered;
Alan Cox95da3102008-07-22 11:09:07 +01002004}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005
Alan Cox95da3102008-07-22 11:09:07 +01002006static void ftdi_read_bulk_callback(struct urb *urb)
2007{
Ming Leicdc97792008-02-24 18:41:47 +08002008 struct usb_serial_port *port = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 struct tty_struct *tty;
2010 struct ftdi_private *priv;
Ian Abbott22465402006-06-26 12:59:17 +01002011 unsigned long countread;
2012 unsigned long flags;
Greg Kroah-Hartman0fb0aa12007-06-15 15:44:13 -07002013 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014
2015 if (urb->number_of_packets > 0) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07002016 dev_err(&port->dev, "%s transfer_buffer_length %d "
2017 "actual_length %d number of packets %d\n", __func__,
2018 urb->transfer_buffer_length,
2019 urb->actual_length, urb->number_of_packets);
2020 dev_err(&port->dev, "%s transfer_flags %x\n", __func__,
2021 urb->transfer_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 }
2023
Harvey Harrison441b62c2008-03-03 16:08:34 -08002024 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025
Alan Cox95da3102008-07-22 11:09:07 +01002026 if (port->port.count <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 return;
2028
Alan Cox4a90f092008-10-13 10:39:46 +01002029 tty = tty_port_tty_get(&port->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 if (!tty) {
Alan Cox464cbb22008-07-22 11:11:23 +01002031 dbg("%s - bad tty pointer - exiting", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 return;
2033 }
2034
2035 priv = usb_get_serial_port_data(port);
2036 if (!priv) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08002037 dbg("%s - bad port private data pointer - exiting", __func__);
Alan Cox4a90f092008-10-13 10:39:46 +01002038 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 }
2040
Alan Cox464cbb22008-07-22 11:11:23 +01002041 if (urb != port->read_urb)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07002042 dev_err(&port->dev, "%s - Not my urb!\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043
Greg Kroah-Hartman0fb0aa12007-06-15 15:44:13 -07002044 if (status) {
Alan Cox464cbb22008-07-22 11:11:23 +01002045 /* This will happen at close every time so it is a dbg not an
2046 err */
2047 dbg("(this is ok on close) nonzero read bulk status received: %d", status);
Alan Cox4a90f092008-10-13 10:39:46 +01002048 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 }
2050
Ian Abbott22465402006-06-26 12:59:17 +01002051 /* count data bytes, but not status bytes */
2052 countread = urb->actual_length;
Mark Adamson895f28b2009-05-01 11:48:45 +01002053 countread -= 2 * DIV_ROUND_UP(countread, priv->max_packet_size);
Ian Abbott22465402006-06-26 12:59:17 +01002054 spin_lock_irqsave(&priv->rx_lock, flags);
2055 priv->rx_bytes += countread;
2056 spin_unlock_irqrestore(&priv->rx_lock, flags);
2057
David Howellsc4028952006-11-22 14:57:56 +00002058 ftdi_process_read(&priv->rx_work.work);
Alan Cox4a90f092008-10-13 10:39:46 +01002059out:
2060 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061} /* ftdi_read_bulk_callback */
2062
2063
Alan Cox464cbb22008-07-22 11:11:23 +01002064static void ftdi_process_read(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065{ /* ftdi_process_read */
David Howellsc4028952006-11-22 14:57:56 +00002066 struct ftdi_private *priv =
2067 container_of(work, struct ftdi_private, rx_work.work);
2068 struct usb_serial_port *port = priv->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 struct urb *urb;
2070 struct tty_struct *tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 char error_flag;
David Brownell5c09d142006-10-13 15:57:58 -07002072 unsigned char *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073
2074 int i;
2075 int result;
2076 int need_flip;
2077 int packet_offset;
Ian Abbott76854ce2005-06-02 10:34:11 +01002078 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079
Harvey Harrison441b62c2008-03-03 16:08:34 -08002080 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081
Alan Cox95da3102008-07-22 11:09:07 +01002082 if (port->port.count <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083 return;
2084
Alan Cox4a90f092008-10-13 10:39:46 +01002085 tty = tty_port_tty_get(&port->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 if (!tty) {
Alan Cox464cbb22008-07-22 11:11:23 +01002087 dbg("%s - bad tty pointer - exiting", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 return;
2089 }
2090
2091 priv = usb_get_serial_port_data(port);
2092 if (!priv) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08002093 dbg("%s - bad port private data pointer - exiting", __func__);
Alan Cox4a90f092008-10-13 10:39:46 +01002094 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 }
2096
2097 urb = port->read_urb;
2098 if (!urb) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08002099 dbg("%s - bad read_urb pointer - exiting", __func__);
Alan Cox4a90f092008-10-13 10:39:46 +01002100 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 }
2102
2103 data = urb->transfer_buffer;
2104
Ian Abbott76854ce2005-06-02 10:34:11 +01002105 if (priv->rx_processed) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08002106 dbg("%s - already processed: %d bytes, %d remain", __func__,
Ian Abbott76854ce2005-06-02 10:34:11 +01002107 priv->rx_processed,
2108 urb->actual_length - priv->rx_processed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 } else {
Ian Abbott76854ce2005-06-02 10:34:11 +01002110 /* The first two bytes of every read packet are status */
Alan Cox464cbb22008-07-22 11:11:23 +01002111 if (urb->actual_length > 2)
2112 usb_serial_debug_data(debug, &port->dev, __func__,
2113 urb->actual_length, data);
2114 else
2115 dbg("Status only: %03oo %03oo", data[0], data[1]);
Ian Abbott76854ce2005-06-02 10:34:11 +01002116 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117
2118
2119 /* TO DO -- check for hung up line and handle appropriately: */
2120 /* send hangup */
2121 /* See acm.c - you do a tty_hangup - eg tty_hangup(tty) */
2122 /* if CD is dropped and the line is not CLOCAL then we should hangup */
2123
2124 need_flip = 0;
Alan Cox464cbb22008-07-22 11:11:23 +01002125 for (packet_offset = priv->rx_processed;
Mark Adamson895f28b2009-05-01 11:48:45 +01002126 packet_offset < urb->actual_length; packet_offset += priv->max_packet_size) {
Ian Abbott76854ce2005-06-02 10:34:11 +01002127 int length;
2128
Alan Cox464cbb22008-07-22 11:11:23 +01002129 /* Compare new line status to the old one, signal if different/
2130 N.B. packet may be processed more than once, but differences
2131 are only processed once. */
Julia Lawall00185a62008-12-21 16:41:36 +01002132 char new_status = data[packet_offset + 0] &
2133 FTDI_STATUS_B0_MASK;
2134 if (new_status != priv->prev_status) {
2135 priv->diff_status |=
2136 new_status ^ priv->prev_status;
2137 wake_up_interruptible(&priv->delta_msr_wait);
2138 priv->prev_status = new_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139 }
2140
Mark Adamson895f28b2009-05-01 11:48:45 +01002141 length = min_t(u32, priv->max_packet_size, urb->actual_length-packet_offset)-2;
Ian Abbott76854ce2005-06-02 10:34:11 +01002142 if (length < 0) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07002143 dev_err(&port->dev, "%s - bad packet length: %d\n",
2144 __func__, length+2);
Ian Abbott76854ce2005-06-02 10:34:11 +01002145 length = 0;
2146 }
2147
Ian Abbott76854ce2005-06-02 10:34:11 +01002148 if (priv->rx_flags & THROTTLED) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08002149 dbg("%s - throttled", __func__);
Ian Abbott76854ce2005-06-02 10:34:11 +01002150 break;
2151 }
Alan Cox33f0f882006-01-09 20:54:13 -08002152 if (tty_buffer_request_room(tty, length) < length) {
Alan Cox464cbb22008-07-22 11:11:23 +01002153 /* break out & wait for throttling/unthrottling to
2154 happen */
Harvey Harrison441b62c2008-03-03 16:08:34 -08002155 dbg("%s - receive room low", __func__);
Ian Abbott76854ce2005-06-02 10:34:11 +01002156 break;
2157 }
2158
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 /* Handle errors and break */
2160 error_flag = TTY_NORMAL;
Alan Cox464cbb22008-07-22 11:11:23 +01002161 /* Although the device uses a bitmask and hence can have
2162 multiple errors on a packet - the order here sets the
2163 priority the error is returned to the tty layer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164
Alan Cox464cbb22008-07-22 11:11:23 +01002165 if (data[packet_offset+1] & FTDI_RS_OE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166 error_flag = TTY_OVERRUN;
2167 dbg("OVERRRUN error");
2168 }
Alan Cox464cbb22008-07-22 11:11:23 +01002169 if (data[packet_offset+1] & FTDI_RS_BI) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 error_flag = TTY_BREAK;
2171 dbg("BREAK received");
Jason Wessel72fda3c2009-05-11 15:24:10 -05002172 usb_serial_handle_break(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173 }
Alan Cox464cbb22008-07-22 11:11:23 +01002174 if (data[packet_offset+1] & FTDI_RS_PE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175 error_flag = TTY_PARITY;
2176 dbg("PARITY error");
2177 }
Alan Cox464cbb22008-07-22 11:11:23 +01002178 if (data[packet_offset+1] & FTDI_RS_FE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179 error_flag = TTY_FRAME;
2180 dbg("FRAMING error");
2181 }
Ian Abbott76854ce2005-06-02 10:34:11 +01002182 if (length > 0) {
2183 for (i = 2; i < length+2; i++) {
David Brownell5c09d142006-10-13 15:57:58 -07002184 /* Note that the error flag is duplicated for
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 every character received since we don't know
2186 which character it applied to */
Alan Cox24a15a62009-07-09 13:36:22 +01002187 if (!usb_serial_handle_sysrq_char(tty, port,
Jason Wessel72fda3c2009-05-11 15:24:10 -05002188 data[packet_offset + i]))
2189 tty_insert_flip_char(tty,
2190 data[packet_offset + i],
2191 error_flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192 }
2193 need_flip = 1;
2194 }
2195
2196#ifdef NOT_CORRECT_BUT_KEEPING_IT_FOR_NOW
2197 /* if a parity error is detected you get status packets forever
2198 until a character is sent without a parity error.
Alan Cox464cbb22008-07-22 11:11:23 +01002199 This doesn't work well since the application receives a
2200 never ending stream of bad data - even though new data
2201 hasn't been sent. Therefore I (bill) have taken this out.
David Brownell5c09d142006-10-13 15:57:58 -07002202 However - this might make sense for framing errors and so on
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 so I am leaving the code in for now.
2204 */
2205 else {
Alan Cox464cbb22008-07-22 11:11:23 +01002206 if (error_flag != TTY_NORMAL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 dbg("error_flag is not normal");
Alan Cox464cbb22008-07-22 11:11:23 +01002208 /* In this case it is just status - if that is
2209 an error send a bad character */
2210 if (tty->flip.count >= TTY_FLIPBUF_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 tty_flip_buffer_push(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212 tty_insert_flip_char(tty, 0xff, error_flag);
2213 need_flip = 1;
2214 }
2215 }
2216#endif
2217 } /* "for(packet_offset=0..." */
2218
2219 /* Low latency */
Alan Cox464cbb22008-07-22 11:11:23 +01002220 if (need_flip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221 tty_flip_buffer_push(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222
Ian Abbott76854ce2005-06-02 10:34:11 +01002223 if (packet_offset < urb->actual_length) {
2224 /* not completely processed - record progress */
2225 priv->rx_processed = packet_offset;
2226 dbg("%s - incomplete, %d bytes processed, %d remain",
Harvey Harrison441b62c2008-03-03 16:08:34 -08002227 __func__, packet_offset,
Ian Abbott76854ce2005-06-02 10:34:11 +01002228 urb->actual_length - packet_offset);
2229 /* check if we were throttled while processing */
2230 spin_lock_irqsave(&priv->rx_lock, flags);
2231 if (priv->rx_flags & THROTTLED) {
2232 priv->rx_flags |= ACTUALLY_THROTTLED;
2233 spin_unlock_irqrestore(&priv->rx_lock, flags);
2234 dbg("%s - deferring remainder until unthrottled",
Harvey Harrison441b62c2008-03-03 16:08:34 -08002235 __func__);
Jim Parisa9fec712009-01-15 13:31:07 +00002236 goto out;
Ian Abbott76854ce2005-06-02 10:34:11 +01002237 }
2238 spin_unlock_irqrestore(&priv->rx_lock, flags);
2239 /* if the port is closed stop trying to read */
Alan Cox464cbb22008-07-22 11:11:23 +01002240 if (port->port.count > 0)
Ian Abbott76854ce2005-06-02 10:34:11 +01002241 /* delay processing of remainder */
2242 schedule_delayed_work(&priv->rx_work, 1);
Alan Cox464cbb22008-07-22 11:11:23 +01002243 else
Harvey Harrison441b62c2008-03-03 16:08:34 -08002244 dbg("%s - port is closed", __func__);
Alan Cox4a90f092008-10-13 10:39:46 +01002245 goto out;
Ian Abbott76854ce2005-06-02 10:34:11 +01002246 }
2247
2248 /* urb is completely processed */
2249 priv->rx_processed = 0;
2250
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251 /* if the port is closed stop trying to read */
Alan Cox464cbb22008-07-22 11:11:23 +01002252 if (port->port.count > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253 /* Continue trying to always read */
David Brownell5c09d142006-10-13 15:57:58 -07002254 usb_fill_bulk_urb(port->read_urb, port->serial->dev,
Alan Cox464cbb22008-07-22 11:11:23 +01002255 usb_rcvbulkpipe(port->serial->dev,
2256 port->bulk_in_endpointAddress),
2257 port->read_urb->transfer_buffer,
2258 port->read_urb->transfer_buffer_length,
2259 ftdi_read_bulk_callback, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260
2261 result = usb_submit_urb(port->read_urb, GFP_ATOMIC);
2262 if (result)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07002263 dev_err(&port->dev,
2264 "%s - failed resubmitting read urb, error %d\n",
2265 __func__, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266 }
Alan Cox4a90f092008-10-13 10:39:46 +01002267out:
2268 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269} /* ftdi_process_read */
2270
2271
Alan Cox95da3102008-07-22 11:09:07 +01002272static void ftdi_break_ctl(struct tty_struct *tty, int break_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273{
Alan Cox95da3102008-07-22 11:09:07 +01002274 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275 struct ftdi_private *priv = usb_get_serial_port_data(port);
David Brownell5c09d142006-10-13 15:57:58 -07002276 __u16 urb_value = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277 char buf[1];
David Brownell5c09d142006-10-13 15:57:58 -07002278
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279 /* break_state = -1 to turn on break, and 0 to turn off break */
2280 /* see drivers/char/tty_io.c to see it used */
2281 /* last_set_data_urb_value NEVER has the break bit set in it */
2282
Alan Cox464cbb22008-07-22 11:11:23 +01002283 if (break_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284 urb_value = priv->last_set_data_urb_value | FTDI_SIO_SET_BREAK;
Alan Cox464cbb22008-07-22 11:11:23 +01002285 else
David Brownell5c09d142006-10-13 15:57:58 -07002286 urb_value = priv->last_set_data_urb_value;
Alan Cox464cbb22008-07-22 11:11:23 +01002287
2288 if (usb_control_msg(port->serial->dev,
2289 usb_sndctrlpipe(port->serial->dev, 0),
2290 FTDI_SIO_SET_DATA_REQUEST,
2291 FTDI_SIO_SET_DATA_REQUEST_TYPE,
2292 urb_value , priv->interface,
2293 buf, 0, WDR_TIMEOUT) < 0) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07002294 dev_err(&port->dev, "%s FAILED to enable/disable break state "
2295 "(state was %d)\n", __func__, break_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296 }
2297
Alan Cox464cbb22008-07-22 11:11:23 +01002298 dbg("%s break state is %d - urb is %d", __func__,
2299 break_state, urb_value);
David Brownell5c09d142006-10-13 15:57:58 -07002300
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301}
2302
2303
2304/* old_termios contains the original termios settings and tty->termios contains
2305 * the new setting to be used
2306 * WARNING: set_termios calls this with old_termios in kernel space
2307 */
2308
Alan Cox95da3102008-07-22 11:09:07 +01002309static void ftdi_set_termios(struct tty_struct *tty,
2310 struct usb_serial_port *port, struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311{ /* ftdi_termios */
2312 struct usb_device *dev = port->serial->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 struct ftdi_private *priv = usb_get_serial_port_data(port);
Alan Cox95da3102008-07-22 11:09:07 +01002314 struct ktermios *termios = tty->termios;
Alan Cox669a6db2007-10-18 01:24:24 -07002315 unsigned int cflag = termios->c_cflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316 __u16 urb_value; /* will hold the new flags */
2317 char buf[1]; /* Perhaps I should dynamically alloc this? */
David Brownell5c09d142006-10-13 15:57:58 -07002318
Alan Cox464cbb22008-07-22 11:11:23 +01002319 /* Added for xon/xoff support */
Alan Cox669a6db2007-10-18 01:24:24 -07002320 unsigned int iflag = termios->c_iflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321 unsigned char vstop;
2322 unsigned char vstart;
David Brownell5c09d142006-10-13 15:57:58 -07002323
Harvey Harrison441b62c2008-03-03 16:08:34 -08002324 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325
Alan Cox464cbb22008-07-22 11:11:23 +01002326 /* Force baud rate if this device requires it, unless it is set to
2327 B0. */
Alan Cox669a6db2007-10-18 01:24:24 -07002328 if (priv->force_baud && ((termios->c_cflag & CBAUD) != B0)) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08002329 dbg("%s: forcing baud rate for this device", __func__);
Alan Cox95da3102008-07-22 11:09:07 +01002330 tty_encode_baud_rate(tty, priv->force_baud,
Andrew Mortonbd5e47c2007-10-18 01:24:25 -07002331 priv->force_baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 }
2333
2334 /* Force RTS-CTS if this device requires it. */
2335 if (priv->force_rtscts) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08002336 dbg("%s: forcing rtscts for this device", __func__);
Alan Cox669a6db2007-10-18 01:24:24 -07002337 termios->c_cflag |= CRTSCTS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338 }
2339
Alan Cox669a6db2007-10-18 01:24:24 -07002340 cflag = termios->c_cflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341
David Brownell5c09d142006-10-13 15:57:58 -07002342 /* FIXME -For this cut I don't care if the line is really changing or
2343 not - so just do the change regardless - should be able to
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344 compare old_termios and tty->termios */
David Brownell5c09d142006-10-13 15:57:58 -07002345 /* NOTE These routines can get interrupted by
Alan Cox464cbb22008-07-22 11:11:23 +01002346 ftdi_sio_read_bulk_callback - need to examine what this means -
2347 don't see any problems yet */
David Brownell5c09d142006-10-13 15:57:58 -07002348
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349 /* Set number of data bits, parity, stop bits */
David Brownell5c09d142006-10-13 15:57:58 -07002350
Alan Cox669a6db2007-10-18 01:24:24 -07002351 termios->c_cflag &= ~CMSPAR;
2352
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353 urb_value = 0;
2354 urb_value |= (cflag & CSTOPB ? FTDI_SIO_SET_DATA_STOP_BITS_2 :
2355 FTDI_SIO_SET_DATA_STOP_BITS_1);
David Brownell5c09d142006-10-13 15:57:58 -07002356 urb_value |= (cflag & PARENB ?
2357 (cflag & PARODD ? FTDI_SIO_SET_DATA_PARITY_ODD :
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358 FTDI_SIO_SET_DATA_PARITY_EVEN) :
2359 FTDI_SIO_SET_DATA_PARITY_NONE);
2360 if (cflag & CSIZE) {
2361 switch (cflag & CSIZE) {
2362 case CS5: urb_value |= 5; dbg("Setting CS5"); break;
2363 case CS6: urb_value |= 6; dbg("Setting CS6"); break;
2364 case CS7: urb_value |= 7; dbg("Setting CS7"); break;
2365 case CS8: urb_value |= 8; dbg("Setting CS8"); break;
2366 default:
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07002367 dev_err(&port->dev, "CSIZE was set but not CS5-CS8\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368 }
2369 }
2370
Alan Cox464cbb22008-07-22 11:11:23 +01002371 /* This is needed by the break command since it uses the same command
2372 - but is or'ed with this value */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373 priv->last_set_data_urb_value = urb_value;
David Brownell5c09d142006-10-13 15:57:58 -07002374
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375 if (usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
David Brownell5c09d142006-10-13 15:57:58 -07002376 FTDI_SIO_SET_DATA_REQUEST,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377 FTDI_SIO_SET_DATA_REQUEST_TYPE,
2378 urb_value , priv->interface,
Ian Abbott279e1542005-07-29 12:16:52 -07002379 buf, 0, WDR_SHORT_TIMEOUT) < 0) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07002380 dev_err(&port->dev, "%s FAILED to set "
2381 "databits/stopbits/parity\n", __func__);
David Brownell5c09d142006-10-13 15:57:58 -07002382 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383
2384 /* Now do the baudrate */
Alan Cox464cbb22008-07-22 11:11:23 +01002385 if ((cflag & CBAUD) == B0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386 /* Disable flow control */
2387 if (usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
David Brownell5c09d142006-10-13 15:57:58 -07002388 FTDI_SIO_SET_FLOW_CTRL_REQUEST,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389 FTDI_SIO_SET_FLOW_CTRL_REQUEST_TYPE,
David Brownell5c09d142006-10-13 15:57:58 -07002390 0, priv->interface,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391 buf, 0, WDR_TIMEOUT) < 0) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07002392 dev_err(&port->dev,
2393 "%s error from disable flowcontrol urb\n",
2394 __func__);
David Brownell5c09d142006-10-13 15:57:58 -07002395 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396 /* Drop RTS and DTR */
Ian Abbott74ede0f2005-07-29 12:16:41 -07002397 clear_mctrl(port, TIOCM_DTR | TIOCM_RTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398 } else {
2399 /* set the baudrate determined before */
Alan Cox464cbb22008-07-22 11:11:23 +01002400 if (change_speed(tty, port))
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07002401 dev_err(&port->dev, "%s urb failed to set baudrate\n",
2402 __func__);
Peter Favrholdt72a755f2005-09-22 00:48:49 -07002403 /* Ensure RTS and DTR are raised when baudrate changed from 0 */
Alan Cox464cbb22008-07-22 11:11:23 +01002404 if (!old_termios || (old_termios->c_cflag & CBAUD) == B0)
Peter Favrholdt72a755f2005-09-22 00:48:49 -07002405 set_mctrl(port, TIOCM_DTR | TIOCM_RTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406 }
2407
2408 /* Set flow control */
2409 /* Note device also supports DTR/CD (ugh) and Xon/Xoff in hardware */
2410 if (cflag & CRTSCTS) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08002411 dbg("%s Setting to CRTSCTS flow control", __func__);
David Brownell5c09d142006-10-13 15:57:58 -07002412 if (usb_control_msg(dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413 usb_sndctrlpipe(dev, 0),
David Brownell5c09d142006-10-13 15:57:58 -07002414 FTDI_SIO_SET_FLOW_CTRL_REQUEST,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415 FTDI_SIO_SET_FLOW_CTRL_REQUEST_TYPE,
2416 0 , (FTDI_SIO_RTS_CTS_HS | priv->interface),
2417 buf, 0, WDR_TIMEOUT) < 0) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07002418 dev_err(&port->dev,
2419 "urb failed to set to rts/cts flow control\n");
David Brownell5c09d142006-10-13 15:57:58 -07002420 }
2421
2422 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423 /*
2424 * Xon/Xoff code
2425 *
Alan Cox464cbb22008-07-22 11:11:23 +01002426 * Check the IXOFF status in the iflag component of the
2427 * termios structure. If IXOFF is not set, the pre-xon/xoff
2428 * code is executed.
2429 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430 if (iflag & IXOFF) {
Alan Cox464cbb22008-07-22 11:11:23 +01002431 dbg("%s request to enable xonxoff iflag=%04x",
2432 __func__, iflag);
2433 /* Try to enable the XON/XOFF on the ftdi_sio
2434 * Set the vstart and vstop -- could have been done up
2435 * above where a lot of other dereferencing is done but
2436 * that would be very inefficient as vstart and vstop
2437 * are not always needed.
2438 */
Alan Cox669a6db2007-10-18 01:24:24 -07002439 vstart = termios->c_cc[VSTART];
2440 vstop = termios->c_cc[VSTOP];
Alan Cox464cbb22008-07-22 11:11:23 +01002441 urb_value = (vstop << 8) | (vstart);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442
2443 if (usb_control_msg(dev,
2444 usb_sndctrlpipe(dev, 0),
2445 FTDI_SIO_SET_FLOW_CTRL_REQUEST,
2446 FTDI_SIO_SET_FLOW_CTRL_REQUEST_TYPE,
2447 urb_value , (FTDI_SIO_XON_XOFF_HS
2448 | priv->interface),
2449 buf, 0, WDR_TIMEOUT) < 0) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07002450 dev_err(&port->dev, "urb failed to set to "
2451 "xon/xoff flow control\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452 }
2453 } else {
Alan Cox464cbb22008-07-22 11:11:23 +01002454 /* else clause to only run if cflag ! CRTSCTS and iflag
2455 * ! XOFF. CHECKME Assuming XON/XOFF handled by tty
2456 * stack - not by device */
Harvey Harrison441b62c2008-03-03 16:08:34 -08002457 dbg("%s Turning off hardware flow control", __func__);
David Brownell5c09d142006-10-13 15:57:58 -07002458 if (usb_control_msg(dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459 usb_sndctrlpipe(dev, 0),
David Brownell5c09d142006-10-13 15:57:58 -07002460 FTDI_SIO_SET_FLOW_CTRL_REQUEST,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461 FTDI_SIO_SET_FLOW_CTRL_REQUEST_TYPE,
David Brownell5c09d142006-10-13 15:57:58 -07002462 0, priv->interface,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463 buf, 0, WDR_TIMEOUT) < 0) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07002464 dev_err(&port->dev,
2465 "urb failed to clear flow control\n");
David Brownell5c09d142006-10-13 15:57:58 -07002466 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467 }
David Brownell5c09d142006-10-13 15:57:58 -07002468
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469 }
2470 return;
Alan Cox95da3102008-07-22 11:09:07 +01002471}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472
Alan Cox95da3102008-07-22 11:09:07 +01002473static int ftdi_tiocmget(struct tty_struct *tty, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474{
Alan Cox95da3102008-07-22 11:09:07 +01002475 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476 struct ftdi_private *priv = usb_get_serial_port_data(port);
2477 unsigned char buf[2];
2478 int ret;
2479
Harvey Harrison441b62c2008-03-03 16:08:34 -08002480 dbg("%s TIOCMGET", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481 switch (priv->chip_type) {
2482 case SIO:
2483 /* Request the status from the device */
Alan Cox464cbb22008-07-22 11:11:23 +01002484 ret = usb_control_msg(port->serial->dev,
2485 usb_rcvctrlpipe(port->serial->dev, 0),
2486 FTDI_SIO_GET_MODEM_STATUS_REQUEST,
2487 FTDI_SIO_GET_MODEM_STATUS_REQUEST_TYPE,
2488 0, 0,
2489 buf, 1, WDR_TIMEOUT);
David Brownell5d1ca6c2009-02-06 02:39:11 -08002490 if (ret < 0)
Alan Cox464cbb22008-07-22 11:11:23 +01002491 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492 break;
2493 case FT8U232AM:
2494 case FT232BM:
2495 case FT2232C:
Andrew M. Bishoped6e5282007-08-21 19:08:56 +01002496 case FT232RL:
Mark Adamson094c2e62009-04-09 15:03:09 +01002497 case FT2232H:
2498 case FT4232H:
Alan Cox464cbb22008-07-22 11:11:23 +01002499 /* the 8U232AM returns a two byte value (the sio is a 1 byte
2500 value) - in the same format as the data returned from the in
2501 point */
2502 ret = usb_control_msg(port->serial->dev,
2503 usb_rcvctrlpipe(port->serial->dev, 0),
2504 FTDI_SIO_GET_MODEM_STATUS_REQUEST,
2505 FTDI_SIO_GET_MODEM_STATUS_REQUEST_TYPE,
2506 0, priv->interface,
2507 buf, 2, WDR_TIMEOUT);
David Brownell5d1ca6c2009-02-06 02:39:11 -08002508 if (ret < 0)
Alan Cox464cbb22008-07-22 11:11:23 +01002509 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510 break;
2511 default:
2512 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513 }
David Brownell5c09d142006-10-13 15:57:58 -07002514
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515 return (buf[0] & FTDI_SIO_DSR_MASK ? TIOCM_DSR : 0) |
2516 (buf[0] & FTDI_SIO_CTS_MASK ? TIOCM_CTS : 0) |
2517 (buf[0] & FTDI_SIO_RI_MASK ? TIOCM_RI : 0) |
2518 (buf[0] & FTDI_SIO_RLSD_MASK ? TIOCM_CD : 0) |
David Brownell5c09d142006-10-13 15:57:58 -07002519 priv->last_dtr_rts;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520}
2521
Alan Cox464cbb22008-07-22 11:11:23 +01002522static int ftdi_tiocmset(struct tty_struct *tty, struct file *file,
Alan Cox95da3102008-07-22 11:09:07 +01002523 unsigned int set, unsigned int clear)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524{
Alan Cox95da3102008-07-22 11:09:07 +01002525 struct usb_serial_port *port = tty->driver_data;
Harvey Harrison441b62c2008-03-03 16:08:34 -08002526 dbg("%s TIOCMSET", __func__);
Ian Abbott74ede0f2005-07-29 12:16:41 -07002527 return update_mctrl(port, set, clear);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528}
2529
2530
Alan Cox464cbb22008-07-22 11:11:23 +01002531static int ftdi_ioctl(struct tty_struct *tty, struct file *file,
2532 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533{
Alan Cox95da3102008-07-22 11:09:07 +01002534 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535 struct ftdi_private *priv = usb_get_serial_port_data(port);
2536
Harvey Harrison441b62c2008-03-03 16:08:34 -08002537 dbg("%s cmd 0x%04x", __func__, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538
2539 /* Based on code from acm.c and others */
2540 switch (cmd) {
2541
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542 case TIOCGSERIAL: /* gets serial port data */
Alan Cox464cbb22008-07-22 11:11:23 +01002543 return get_serial_info(port,
2544 (struct serial_struct __user *) arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545
2546 case TIOCSSERIAL: /* sets serial port data */
Alan Cox464cbb22008-07-22 11:11:23 +01002547 return set_serial_info(tty, port,
2548 (struct serial_struct __user *) arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549
2550 /*
2551 * Wait for any of the 4 modem inputs (DCD,RI,DSR,CTS) to change
2552 * - mask passed in arg for lines of interest
2553 * (use |'ed TIOCM_RNG/DSR/CD/CTS for masking)
2554 * Caller should use TIOCGICOUNT to see which one it was.
2555 *
2556 * This code is borrowed from linux/drivers/char/serial.c
2557 */
2558 case TIOCMIWAIT:
2559 while (priv != NULL) {
2560 interruptible_sleep_on(&priv->delta_msr_wait);
2561 /* see if a signal did it */
2562 if (signal_pending(current))
2563 return -ERESTARTSYS;
2564 else {
2565 char diff = priv->diff_status;
2566
Alan Cox464cbb22008-07-22 11:11:23 +01002567 if (diff == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568 return -EIO; /* no change => error */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569
2570 /* Consume all events */
2571 priv->diff_status = 0;
2572
Alan Cox464cbb22008-07-22 11:11:23 +01002573 /* Return 0 if caller wanted to know about
2574 these bits */
2575 if (((arg & TIOCM_RNG) && (diff & FTDI_RS0_RI)) ||
2576 ((arg & TIOCM_DSR) && (diff & FTDI_RS0_DSR)) ||
2577 ((arg & TIOCM_CD) && (diff & FTDI_RS0_RLSD)) ||
2578 ((arg & TIOCM_CTS) && (diff & FTDI_RS0_CTS))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579 return 0;
2580 }
2581 /*
Alan Cox464cbb22008-07-22 11:11:23 +01002582 * Otherwise caller can't care less about what
2583 * happened,and so we continue to wait for more
2584 * events.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585 */
2586 }
2587 }
Alan Cox95da3102008-07-22 11:09:07 +01002588 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589 default:
2590 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591 }
Alan Cox464cbb22008-07-22 11:11:23 +01002592 /* This is not necessarily an error - turns out the higher layers
2593 * will do some ioctls themselves (see comment above)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594 */
Harvey Harrison441b62c2008-03-03 16:08:34 -08002595 dbg("%s arg not supported - it was 0x%04x - check /usr/include/asm/ioctls.h", __func__, cmd);
Alan Cox95da3102008-07-22 11:09:07 +01002596 return -ENOIOCTLCMD;
2597}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598
Alan Cox95da3102008-07-22 11:09:07 +01002599static void ftdi_throttle(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600{
Alan Cox95da3102008-07-22 11:09:07 +01002601 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602 struct ftdi_private *priv = usb_get_serial_port_data(port);
2603 unsigned long flags;
2604
Harvey Harrison441b62c2008-03-03 16:08:34 -08002605 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606
2607 spin_lock_irqsave(&priv->rx_lock, flags);
2608 priv->rx_flags |= THROTTLED;
2609 spin_unlock_irqrestore(&priv->rx_lock, flags);
2610}
2611
2612
Alan Cox95da3102008-07-22 11:09:07 +01002613static void ftdi_unthrottle(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614{
Alan Cox95da3102008-07-22 11:09:07 +01002615 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616 struct ftdi_private *priv = usb_get_serial_port_data(port);
2617 int actually_throttled;
2618 unsigned long flags;
2619
Harvey Harrison441b62c2008-03-03 16:08:34 -08002620 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621
2622 spin_lock_irqsave(&priv->rx_lock, flags);
2623 actually_throttled = priv->rx_flags & ACTUALLY_THROTTLED;
2624 priv->rx_flags &= ~(THROTTLED | ACTUALLY_THROTTLED);
2625 spin_unlock_irqrestore(&priv->rx_lock, flags);
2626
2627 if (actually_throttled)
David Howellsc4028952006-11-22 14:57:56 +00002628 schedule_delayed_work(&priv->rx_work, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629}
2630
Alan Cox464cbb22008-07-22 11:11:23 +01002631static int __init ftdi_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632{
2633 int retval;
2634
Harvey Harrison441b62c2008-03-03 16:08:34 -08002635 dbg("%s", __func__);
Ian Abbottfdcb0a02005-07-28 18:40:32 +01002636 if (vendor > 0 && product > 0) {
2637 /* Add user specified VID/PID to reserved element of table. */
2638 int i;
2639 for (i = 0; id_table_combined[i].idVendor; i++)
2640 ;
2641 id_table_combined[i].match_flags = USB_DEVICE_ID_MATCH_DEVICE;
2642 id_table_combined[i].idVendor = vendor;
2643 id_table_combined[i].idProduct = product;
2644 }
Ian Abbott8f977e42005-06-20 16:45:42 +01002645 retval = usb_serial_register(&ftdi_sio_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646 if (retval)
Ian Abbott8f977e42005-06-20 16:45:42 +01002647 goto failed_sio_register;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648 retval = usb_register(&ftdi_driver);
David Brownell5c09d142006-10-13 15:57:58 -07002649 if (retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650 goto failed_usb_register;
2651
Greg Kroah-Hartmanc197a8d2008-08-18 13:21:04 -07002652 printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_VERSION ":"
2653 DRIVER_DESC "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654 return 0;
2655failed_usb_register:
Ian Abbott8f977e42005-06-20 16:45:42 +01002656 usb_serial_deregister(&ftdi_sio_device);
2657failed_sio_register:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658 return retval;
2659}
2660
2661
Alan Cox464cbb22008-07-22 11:11:23 +01002662static void __exit ftdi_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663{
2664
Harvey Harrison441b62c2008-03-03 16:08:34 -08002665 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666
Alan Cox464cbb22008-07-22 11:11:23 +01002667 usb_deregister(&ftdi_driver);
2668 usb_serial_deregister(&ftdi_sio_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669
2670}
2671
2672
2673module_init(ftdi_init);
2674module_exit(ftdi_exit);
2675
Alan Cox464cbb22008-07-22 11:11:23 +01002676MODULE_AUTHOR(DRIVER_AUTHOR);
2677MODULE_DESCRIPTION(DRIVER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678MODULE_LICENSE("GPL");
2679
2680module_param(debug, bool, S_IRUGO | S_IWUSR);
2681MODULE_PARM_DESC(debug, "Debug enabled or not");
Ian Abbottfdcb0a02005-07-28 18:40:32 +01002682module_param(vendor, ushort, 0);
2683MODULE_PARM_DESC(vendor, "User specified vendor ID (default="
2684 __MODULE_STRING(FTDI_VID)")");
2685module_param(product, ushort, 0);
Paulius Zaleckas68265042008-09-10 17:18:46 +03002686MODULE_PARM_DESC(product, "User specified product ID");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687
Martin Geleynseb760dac2009-07-02 13:10:35 -04002688module_param(ndi_latency_timer, int, S_IRUGO | S_IWUSR);
2689MODULE_PARM_DESC(ndi_latency_timer, "NDI device latency timer override");