blob: e9e9c78dceb32b903c2d36bfdc86bda0c3434880 [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 Neukum0ffbbe22007-07-09 12:03:08 -070058struct ftdi_private {
Alan Sternc45d6322009-04-30 10:06:19 -040059 struct kref kref;
Oliver Neukum0ffbbe22007-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 Neukum0ffbbe22007-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 Neukum0ffbbe22007-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 Neukum0ffbbe22007-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 Neukum0ffbbe22007-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 Neukum0ffbbe22007-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 Neukum0ffbbe22007-07-09 12:03:08 -070092
Alan Cox557aaa72009-06-11 13:55:34 +010093 unsigned int latency; /* latency setting in use */
Oliver Neukum0ffbbe22007-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 Neukum0ffbbe22007-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);
110static void ftdi_USB_UIRT_setup(struct ftdi_private *priv);
111static void ftdi_HE_TIRA1_setup(struct ftdi_private *priv);
Ian Abbott8f977e42005-06-20 16:45:42 +0100112
Harald Welte20734342008-01-01 15:08:35 +0100113static struct ftdi_sio_quirk ftdi_jtag_quirk = {
114 .probe = ftdi_jtag_probe,
Tony Lindgrenfa91d432007-05-04 18:23:24 -0700115};
116
Kevin Vance546d7ee2008-03-01 13:49:59 -0500117static struct ftdi_sio_quirk ftdi_mtxorb_hack_quirk = {
118 .probe = ftdi_mtxorb_hack_setup,
119};
120
Ian Abbott8f977e42005-06-20 16:45:42 +0100121static struct ftdi_sio_quirk ftdi_USB_UIRT_quirk = {
Oliver Neukum0ffbbe22007-07-09 12:03:08 -0700122 .port_probe = ftdi_USB_UIRT_setup,
Ian Abbott8f977e42005-06-20 16:45:42 +0100123};
124
125static struct ftdi_sio_quirk ftdi_HE_TIRA1_quirk = {
Oliver Neukum0ffbbe22007-07-09 12:03:08 -0700126 .port_probe = ftdi_HE_TIRA1_setup,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127};
128
129/*
130 * The 8U232AM has the same API as the sio except for:
131 * - it can support MUCH higher baudrates; up to:
132 * o 921600 for RS232 and 2000000 for RS422/485 at 48MHz
133 * o 230400 at 12MHz
134 * so .. 8U232AM's baudrate setting codes are different
135 * - it has a two byte status code.
136 * - it returns characters every 16ms (the FTDI does it every 40ms)
137 *
138 * the bcdDevice value is used to differentiate FT232BM and FT245BM from
139 * the earlier FT8U232AM and FT8U232BM. For now, include all known VID/PID
140 * combinations in both tables.
Ian Abbott8f977e42005-06-20 16:45:42 +0100141 * FIXME: perhaps bcdDevice can also identify 12MHz FT8U232AM devices,
142 * but I don't know if those ever went into mass production. [Ian Abbott]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 */
144
145
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
147static struct usb_device_id id_table_combined [] = {
Jonathan Davies2011e922006-08-09 10:48:03 +0100148 { USB_DEVICE(FTDI_VID, FTDI_AMC232_PID) },
149 { USB_DEVICE(FTDI_VID, FTDI_CANUSB_PID) },
Andrew Ewert01ba0852008-12-04 09:09:59 -0600150 { USB_DEVICE(FTDI_VID, FTDI_CANDAPTER_PID) },
Peter Mack6e1ab3e2008-04-22 13:25:11 +0200151 { USB_DEVICE(FTDI_VID, FTDI_SCS_DEVICE_0_PID) },
152 { USB_DEVICE(FTDI_VID, FTDI_SCS_DEVICE_1_PID) },
153 { USB_DEVICE(FTDI_VID, FTDI_SCS_DEVICE_2_PID) },
154 { USB_DEVICE(FTDI_VID, FTDI_SCS_DEVICE_3_PID) },
155 { USB_DEVICE(FTDI_VID, FTDI_SCS_DEVICE_4_PID) },
156 { USB_DEVICE(FTDI_VID, FTDI_SCS_DEVICE_5_PID) },
157 { USB_DEVICE(FTDI_VID, FTDI_SCS_DEVICE_6_PID) },
158 { USB_DEVICE(FTDI_VID, FTDI_SCS_DEVICE_7_PID) },
Razvan Gavril72a9f952006-05-04 11:35:49 +0300159 { USB_DEVICE(FTDI_VID, FTDI_ACTZWAVE_PID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 { USB_DEVICE(FTDI_VID, FTDI_IRTRANS_PID) },
Luiz Fernando N. Capitulino69737df2006-04-11 15:52:41 -0300161 { USB_DEVICE(FTDI_VID, FTDI_IPLUS_PID) },
Luiz Fernando N. Capitulinod0993212007-06-21 22:34:23 -0300162 { USB_DEVICE(FTDI_VID, FTDI_IPLUS2_PID) },
Frank Sievertsenfad14a02006-10-20 09:43:53 +0200163 { USB_DEVICE(FTDI_VID, FTDI_DMX4ALL) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 { USB_DEVICE(FTDI_VID, FTDI_SIO_PID) },
165 { USB_DEVICE(FTDI_VID, FTDI_8U232AM_PID) },
166 { USB_DEVICE(FTDI_VID, FTDI_8U232AM_ALT_PID) },
Gard Spreemannd8b21602007-03-05 00:03:26 +0100167 { USB_DEVICE(FTDI_VID, FTDI_232RL_PID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 { USB_DEVICE(FTDI_VID, FTDI_8U2232C_PID) },
Mark Adamson094c2e62009-04-09 15:03:09 +0100169 { USB_DEVICE(FTDI_VID, FTDI_4232H_PID) },
Christophe Mariacc0f8d562006-06-23 17:36:21 +0200170 { USB_DEVICE(FTDI_VID, FTDI_MICRO_CHAMELEON_PID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 { USB_DEVICE(FTDI_VID, FTDI_RELAIS_PID) },
Guido Scholz2adb80e2007-05-08 19:52:41 +0200172 { USB_DEVICE(FTDI_VID, FTDI_OPENDCC_PID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 { USB_DEVICE(INTERBIOMETRICS_VID, INTERBIOMETRICS_IOBOARD_PID) },
174 { USB_DEVICE(INTERBIOMETRICS_VID, INTERBIOMETRICS_MINI_IOBOARD_PID) },
Alan Coxf2ee6952008-12-06 23:46:04 -0800175 { USB_DEVICE(FTDI_VID, FTDI_SPROG_II) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 { USB_DEVICE(FTDI_VID, FTDI_XF_632_PID) },
177 { USB_DEVICE(FTDI_VID, FTDI_XF_634_PID) },
178 { USB_DEVICE(FTDI_VID, FTDI_XF_547_PID) },
179 { USB_DEVICE(FTDI_VID, FTDI_XF_633_PID) },
180 { USB_DEVICE(FTDI_VID, FTDI_XF_631_PID) },
181 { USB_DEVICE(FTDI_VID, FTDI_XF_635_PID) },
182 { USB_DEVICE(FTDI_VID, FTDI_XF_640_PID) },
183 { USB_DEVICE(FTDI_VID, FTDI_XF_642_PID) },
184 { USB_DEVICE(FTDI_VID, FTDI_DSS20_PID) },
185 { USB_DEVICE(FTDI_NF_RIC_VID, FTDI_NF_RIC_PID) },
186 { USB_DEVICE(FTDI_VID, FTDI_VNHCPCUSB_D_PID) },
Ian Abbott8f977e42005-06-20 16:45:42 +0100187 { USB_DEVICE(FTDI_VID, FTDI_MTXORB_0_PID) },
188 { USB_DEVICE(FTDI_VID, FTDI_MTXORB_1_PID) },
189 { USB_DEVICE(FTDI_VID, FTDI_MTXORB_2_PID) },
190 { USB_DEVICE(FTDI_VID, FTDI_MTXORB_3_PID) },
191 { USB_DEVICE(FTDI_VID, FTDI_MTXORB_4_PID) },
192 { USB_DEVICE(FTDI_VID, FTDI_MTXORB_5_PID) },
193 { USB_DEVICE(FTDI_VID, FTDI_MTXORB_6_PID) },
Folkert van Heusdenb34efee2009-06-19 22:14:42 +0200194 { USB_DEVICE(FTDI_VID, FTDI_R2000KU_TRUE_RNG) },
Alan Cox464cbb22008-07-22 11:11:23 +0100195 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0100_PID) },
196 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0101_PID) },
197 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0102_PID) },
198 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0103_PID) },
199 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0104_PID) },
200 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0105_PID) },
201 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0106_PID) },
202 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0107_PID) },
203 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0108_PID) },
204 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0109_PID) },
205 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_010A_PID) },
206 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_010B_PID) },
207 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_010C_PID) },
208 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_010D_PID) },
209 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_010E_PID) },
210 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_010F_PID) },
211 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0110_PID) },
212 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0111_PID) },
213 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0112_PID) },
214 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0113_PID) },
215 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0114_PID) },
216 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0115_PID) },
217 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0116_PID) },
218 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0117_PID) },
219 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0118_PID) },
220 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0119_PID) },
221 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_011A_PID) },
222 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_011B_PID) },
223 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_011C_PID) },
224 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_011D_PID) },
225 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_011E_PID) },
226 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_011F_PID) },
227 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0120_PID) },
228 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0121_PID) },
229 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0122_PID) },
230 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0123_PID) },
231 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0124_PID) },
232 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0125_PID) },
233 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0126_PID) },
234 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0127_PID),
Kevin Vance546d7ee2008-03-01 13:49:59 -0500235 .driver_info = (kernel_ulong_t)&ftdi_mtxorb_hack_quirk },
Alan Cox464cbb22008-07-22 11:11:23 +0100236 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0128_PID) },
237 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0129_PID) },
238 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_012A_PID) },
239 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_012B_PID) },
240 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_012C_PID),
Ray Molenkampebb37702008-05-21 17:06:26 -0600241 .driver_info = (kernel_ulong_t)&ftdi_mtxorb_hack_quirk },
Alan Cox464cbb22008-07-22 11:11:23 +0100242 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_012D_PID) },
243 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_012E_PID) },
244 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_012F_PID) },
245 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0130_PID) },
246 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0131_PID) },
247 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0132_PID) },
248 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0133_PID) },
249 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0134_PID) },
250 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0135_PID) },
251 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0136_PID) },
252 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0137_PID) },
253 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0138_PID) },
254 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0139_PID) },
255 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_013A_PID) },
256 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_013B_PID) },
257 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_013C_PID) },
258 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_013D_PID) },
259 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_013E_PID) },
260 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_013F_PID) },
261 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0140_PID) },
262 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0141_PID) },
263 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0142_PID) },
264 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0143_PID) },
265 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0144_PID) },
266 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0145_PID) },
267 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0146_PID) },
268 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0147_PID) },
269 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0148_PID) },
270 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0149_PID) },
271 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_014A_PID) },
272 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_014B_PID) },
273 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_014C_PID) },
274 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_014D_PID) },
275 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_014E_PID) },
276 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_014F_PID) },
277 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0150_PID) },
278 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0151_PID) },
279 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0152_PID) },
280 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0153_PID),
Ray Molenkampebb37702008-05-21 17:06:26 -0600281 .driver_info = (kernel_ulong_t)&ftdi_mtxorb_hack_quirk },
Alan Cox464cbb22008-07-22 11:11:23 +0100282 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0154_PID),
Ray Molenkampebb37702008-05-21 17:06:26 -0600283 .driver_info = (kernel_ulong_t)&ftdi_mtxorb_hack_quirk },
Alan Cox464cbb22008-07-22 11:11:23 +0100284 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0155_PID),
Ray Molenkampebb37702008-05-21 17:06:26 -0600285 .driver_info = (kernel_ulong_t)&ftdi_mtxorb_hack_quirk },
Alan Cox464cbb22008-07-22 11:11:23 +0100286 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0156_PID),
Ray Molenkampebb37702008-05-21 17:06:26 -0600287 .driver_info = (kernel_ulong_t)&ftdi_mtxorb_hack_quirk },
Alan Cox464cbb22008-07-22 11:11:23 +0100288 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0157_PID),
Ray Molenkampebb37702008-05-21 17:06:26 -0600289 .driver_info = (kernel_ulong_t)&ftdi_mtxorb_hack_quirk },
Alan Cox464cbb22008-07-22 11:11:23 +0100290 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0158_PID),
Ray Molenkampebb37702008-05-21 17:06:26 -0600291 .driver_info = (kernel_ulong_t)&ftdi_mtxorb_hack_quirk },
Alan Cox464cbb22008-07-22 11:11:23 +0100292 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0159_PID) },
293 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_015A_PID) },
294 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_015B_PID) },
295 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_015C_PID) },
296 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_015D_PID) },
297 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_015E_PID) },
298 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_015F_PID) },
299 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0160_PID) },
300 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0161_PID) },
301 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0162_PID) },
302 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0163_PID) },
303 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0164_PID) },
304 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0165_PID) },
305 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0166_PID) },
306 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0167_PID) },
307 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0168_PID) },
308 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0169_PID) },
309 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_016A_PID) },
310 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_016B_PID) },
311 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_016C_PID) },
312 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_016D_PID) },
313 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_016E_PID) },
314 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_016F_PID) },
315 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0170_PID) },
316 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0171_PID) },
317 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0172_PID) },
318 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0173_PID) },
319 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0174_PID) },
320 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0175_PID) },
321 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0176_PID) },
322 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0177_PID) },
323 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0178_PID) },
324 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0179_PID) },
325 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_017A_PID) },
326 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_017B_PID) },
327 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_017C_PID) },
328 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_017D_PID) },
329 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_017E_PID) },
330 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_017F_PID) },
331 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0180_PID) },
332 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0181_PID) },
333 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0182_PID) },
334 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0183_PID) },
335 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0184_PID) },
336 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0185_PID) },
337 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0186_PID) },
338 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0187_PID) },
339 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0188_PID) },
340 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0189_PID) },
341 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_018A_PID) },
342 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_018B_PID) },
343 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_018C_PID) },
344 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_018D_PID) },
345 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_018E_PID) },
346 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_018F_PID) },
347 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0190_PID) },
348 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0191_PID) },
349 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0192_PID) },
350 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0193_PID) },
351 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0194_PID) },
352 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0195_PID) },
353 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0196_PID) },
354 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0197_PID) },
355 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0198_PID) },
356 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0199_PID) },
357 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_019A_PID) },
358 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_019B_PID) },
359 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_019C_PID) },
360 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_019D_PID) },
361 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_019E_PID) },
362 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_019F_PID) },
363 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01A0_PID) },
364 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01A1_PID) },
365 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01A2_PID) },
366 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01A3_PID) },
367 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01A4_PID) },
368 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01A5_PID) },
369 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01A6_PID) },
370 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01A7_PID) },
371 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01A8_PID) },
372 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01A9_PID) },
373 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01AA_PID) },
374 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01AB_PID) },
375 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01AC_PID) },
376 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01AD_PID) },
377 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01AE_PID) },
378 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01AF_PID) },
379 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01B0_PID) },
380 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01B1_PID) },
381 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01B2_PID) },
382 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01B3_PID) },
383 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01B4_PID) },
384 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01B5_PID) },
385 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01B6_PID) },
386 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01B7_PID) },
387 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01B8_PID) },
388 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01B9_PID) },
389 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01BA_PID) },
390 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01BB_PID) },
391 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01BC_PID) },
392 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01BD_PID) },
393 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01BE_PID) },
394 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01BF_PID) },
395 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01C0_PID) },
396 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01C1_PID) },
397 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01C2_PID) },
398 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01C3_PID) },
399 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01C4_PID) },
400 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01C5_PID) },
401 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01C6_PID) },
402 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01C7_PID) },
403 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01C8_PID) },
404 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01C9_PID) },
405 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01CA_PID) },
406 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01CB_PID) },
407 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01CC_PID) },
408 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01CD_PID) },
409 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01CE_PID) },
410 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01CF_PID) },
411 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01D0_PID) },
412 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01D1_PID) },
413 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01D2_PID) },
414 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01D3_PID) },
415 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01D4_PID) },
416 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01D5_PID) },
417 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01D6_PID) },
418 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01D7_PID) },
419 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01D8_PID) },
420 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01D9_PID) },
421 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01DA_PID) },
422 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01DB_PID) },
423 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01DC_PID) },
424 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01DD_PID) },
425 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01DE_PID) },
426 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01DF_PID) },
427 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01E0_PID) },
428 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01E1_PID) },
429 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01E2_PID) },
430 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01E3_PID) },
431 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01E4_PID) },
432 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01E5_PID) },
433 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01E6_PID) },
434 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01E7_PID) },
435 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01E8_PID) },
436 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01E9_PID) },
437 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01EA_PID) },
438 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01EB_PID) },
439 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01EC_PID) },
440 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01ED_PID) },
441 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01EE_PID) },
442 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01EF_PID) },
443 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01F0_PID) },
444 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01F1_PID) },
445 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01F2_PID) },
446 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01F3_PID) },
447 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01F4_PID) },
448 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01F5_PID) },
449 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01F6_PID) },
450 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01F7_PID) },
451 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01F8_PID) },
452 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01F9_PID) },
453 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01FA_PID) },
454 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01FB_PID) },
455 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01FC_PID) },
456 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01FD_PID) },
457 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01FE_PID) },
458 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01FF_PID) },
Ian Abbott8f977e42005-06-20 16:45:42 +0100459 { USB_DEVICE(FTDI_VID, FTDI_PERLE_ULTRAPORT_PID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 { USB_DEVICE(FTDI_VID, FTDI_PIEGROUP_PID) },
Dave Platt274a4bb2006-07-18 21:26:54 -0700461 { USB_DEVICE(FTDI_VID, FTDI_TNC_X_PID) },
Jelle Foks868e4402007-03-25 21:08:35 -0400462 { USB_DEVICE(FTDI_VID, FTDI_USBX_707_PID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2101_PID) },
464 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2102_PID) },
465 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2103_PID) },
466 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2104_PID) },
Justin Carlsona1484822006-09-24 11:52:12 +0300467 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2106_PID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2201_1_PID) },
469 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2201_2_PID) },
470 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2202_1_PID) },
471 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2202_2_PID) },
472 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2203_1_PID) },
473 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2203_2_PID) },
474 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2401_1_PID) },
475 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2401_2_PID) },
476 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2401_3_PID) },
477 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2401_4_PID) },
478 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2402_1_PID) },
479 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2402_2_PID) },
480 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2402_3_PID) },
481 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2402_4_PID) },
482 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2403_1_PID) },
483 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2403_2_PID) },
484 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2403_3_PID) },
485 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2403_4_PID) },
486 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_1_PID) },
487 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_2_PID) },
488 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_3_PID) },
489 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_4_PID) },
490 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_5_PID) },
491 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_6_PID) },
492 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_7_PID) },
493 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_8_PID) },
494 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_1_PID) },
495 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_2_PID) },
496 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_3_PID) },
497 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_4_PID) },
498 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_5_PID) },
499 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_6_PID) },
500 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_7_PID) },
501 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_8_PID) },
502 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_1_PID) },
503 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_2_PID) },
504 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_3_PID) },
505 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_4_PID) },
506 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_5_PID) },
507 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_6_PID) },
508 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_7_PID) },
509 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_8_PID) },
510 { USB_DEVICE(IDTECH_VID, IDTECH_IDT1221U_PID) },
511 { USB_DEVICE(OCT_VID, OCT_US101_PID) },
Ian Abbott8f977e42005-06-20 16:45:42 +0100512 { USB_DEVICE(FTDI_VID, FTDI_HE_TIRA1_PID),
513 .driver_info = (kernel_ulong_t)&ftdi_HE_TIRA1_quirk },
514 { USB_DEVICE(FTDI_VID, FTDI_USB_UIRT_PID),
515 .driver_info = (kernel_ulong_t)&ftdi_USB_UIRT_quirk },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 { USB_DEVICE(FTDI_VID, PROTEGO_SPECIAL_1) },
517 { USB_DEVICE(FTDI_VID, PROTEGO_R2X0) },
518 { USB_DEVICE(FTDI_VID, PROTEGO_SPECIAL_3) },
519 { USB_DEVICE(FTDI_VID, PROTEGO_SPECIAL_4) },
Ian Abbott8f977e42005-06-20 16:45:42 +0100520 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E808_PID) },
521 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E809_PID) },
522 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E80A_PID) },
523 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E80B_PID) },
524 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E80C_PID) },
525 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E80D_PID) },
526 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E80E_PID) },
527 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E80F_PID) },
528 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E888_PID) },
529 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E889_PID) },
530 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E88A_PID) },
531 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E88B_PID) },
532 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E88C_PID) },
533 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E88D_PID) },
534 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E88E_PID) },
535 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E88F_PID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 { USB_DEVICE(FTDI_VID, FTDI_ELV_UO100_PID) },
Ian Abbott47900742005-05-17 15:12:13 +0100537 { USB_DEVICE(FTDI_VID, FTDI_ELV_UM100_PID) },
Ian Abbotte6ac4a42005-08-02 14:01:27 +0100538 { USB_DEVICE(FTDI_VID, FTDI_ELV_UR100_PID) },
539 { USB_DEVICE(FTDI_VID, FTDI_ELV_ALC8500_PID) },
Thomas Riewe207c47e2005-09-29 14:57:29 +0200540 { USB_DEVICE(FTDI_VID, FTDI_PYRAMID_PID) },
Martin Hagelinbde62182005-10-26 21:10:41 +0200541 { USB_DEVICE(FTDI_VID, FTDI_ELV_FHZ1000PC_PID) },
Thomas Schleusener4eaf60e2007-02-28 22:50:52 +0100542 { USB_DEVICE(FTDI_VID, FTDI_IBS_US485_PID) },
543 { USB_DEVICE(FTDI_VID, FTDI_IBS_PICPRO_PID) },
544 { USB_DEVICE(FTDI_VID, FTDI_IBS_PCMCIA_PID) },
545 { USB_DEVICE(FTDI_VID, FTDI_IBS_PK1_PID) },
546 { USB_DEVICE(FTDI_VID, FTDI_IBS_RS232MON_PID) },
547 { USB_DEVICE(FTDI_VID, FTDI_IBS_APP70_PID) },
548 { USB_DEVICE(FTDI_VID, FTDI_IBS_PEDO_PID) },
549 { USB_DEVICE(FTDI_VID, FTDI_IBS_PROD_PID) },
Ian Abbotte6ac4a42005-08-02 14:01:27 +0100550 /*
Peter Stark42f8aa92007-12-25 18:32:08 +0100551 * Due to many user requests for multiple ELV devices we enable
552 * them by default.
Ian Abbotte6ac4a42005-08-02 14:01:27 +0100553 */
Peter Stark42f8aa92007-12-25 18:32:08 +0100554 { USB_DEVICE(FTDI_VID, FTDI_ELV_CLI7000_PID) },
555 { USB_DEVICE(FTDI_VID, FTDI_ELV_PPS7330_PID) },
556 { USB_DEVICE(FTDI_VID, FTDI_ELV_TFM100_PID) },
557 { USB_DEVICE(FTDI_VID, FTDI_ELV_UDF77_PID) },
558 { USB_DEVICE(FTDI_VID, FTDI_ELV_UIO88_PID) },
559 { USB_DEVICE(FTDI_VID, FTDI_ELV_UAD8_PID) },
560 { USB_DEVICE(FTDI_VID, FTDI_ELV_UDA7_PID) },
561 { USB_DEVICE(FTDI_VID, FTDI_ELV_USI2_PID) },
562 { USB_DEVICE(FTDI_VID, FTDI_ELV_T1100_PID) },
563 { USB_DEVICE(FTDI_VID, FTDI_ELV_PCD200_PID) },
564 { USB_DEVICE(FTDI_VID, FTDI_ELV_ULA200_PID) },
565 { USB_DEVICE(FTDI_VID, FTDI_ELV_CSI8_PID) },
566 { USB_DEVICE(FTDI_VID, FTDI_ELV_EM1000DL_PID) },
567 { USB_DEVICE(FTDI_VID, FTDI_ELV_PCK100_PID) },
568 { USB_DEVICE(FTDI_VID, FTDI_ELV_RFP500_PID) },
569 { USB_DEVICE(FTDI_VID, FTDI_ELV_FS20SIG_PID) },
570 { USB_DEVICE(FTDI_VID, FTDI_ELV_WS300PC_PID) },
571 { USB_DEVICE(FTDI_VID, FTDI_ELV_FHZ1300PC_PID) },
Sven Andersen4ae897d2008-03-04 22:09:11 +0100572 { USB_DEVICE(FTDI_VID, FTDI_ELV_EM1010PC_PID) },
Peter Stark42f8aa92007-12-25 18:32:08 +0100573 { USB_DEVICE(FTDI_VID, FTDI_ELV_WS500_PID) },
André Schenkb5894a52008-07-28 15:48:46 +0200574 { USB_DEVICE(FTDI_VID, FTDI_ELV_HS485_PID) },
David Brownell5c09d142006-10-13 15:57:58 -0700575 { USB_DEVICE(FTDI_VID, LINX_SDMUSBQSS_PID) },
576 { USB_DEVICE(FTDI_VID, LINX_MASTERDEVEL2_PID) },
577 { USB_DEVICE(FTDI_VID, LINX_FUTURE_0_PID) },
578 { USB_DEVICE(FTDI_VID, LINX_FUTURE_1_PID) },
579 { USB_DEVICE(FTDI_VID, LINX_FUTURE_2_PID) },
580 { USB_DEVICE(FTDI_VID, FTDI_CCSICDU20_0_PID) },
581 { USB_DEVICE(FTDI_VID, FTDI_CCSICDU40_1_PID) },
Jan Capekec434e92006-11-28 22:35:12 +0100582 { USB_DEVICE(FTDI_VID, FTDI_CCSMACHX_2_PID) },
Jan Capek9d37ff62009-06-10 18:58:52 +0200583 { USB_DEVICE(FTDI_VID, FTDI_CCSLOAD_N_GO_3_PID) },
584 { USB_DEVICE(FTDI_VID, FTDI_CCSICDU64_4_PID) },
585 { USB_DEVICE(FTDI_VID, FTDI_CCSPRIME8_5_PID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 { USB_DEVICE(FTDI_VID, INSIDE_ACCESSO) },
587 { USB_DEVICE(INTREPID_VID, INTREPID_VALUECAN_PID) },
588 { USB_DEVICE(INTREPID_VID, INTREPID_NEOVI_PID) },
589 { USB_DEVICE(FALCOM_VID, FALCOM_TWIST_PID) },
Ian Abbotte6ac4a42005-08-02 14:01:27 +0100590 { USB_DEVICE(FALCOM_VID, FALCOM_SAMBA_PID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 { USB_DEVICE(FTDI_VID, FTDI_SUUNTO_SPORTS_PID) },
Vladimir Vukicevicc3d36c42008-10-03 17:08:43 -0700592 { USB_DEVICE(FTDI_VID, FTDI_OCEANIC_PID) },
Michael Olbergef31fec2007-02-27 12:57:12 +0100593 { USB_DEVICE(TTI_VID, TTI_QL355P_PID) },
Ian Abbott6f928722005-04-29 16:06:14 +0100594 { USB_DEVICE(FTDI_VID, FTDI_RM_CANVIEW_PID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 { USB_DEVICE(BANDB_VID, BANDB_USOTL4_PID) },
596 { USB_DEVICE(BANDB_VID, BANDB_USTL4_PID) },
597 { USB_DEVICE(BANDB_VID, BANDB_USO9ML2_PID) },
598 { USB_DEVICE(FTDI_VID, EVER_ECO_PRO_CDS) },
Ian Abbott6f928722005-04-29 16:06:14 +0100599 { USB_DEVICE(FTDI_VID, FTDI_4N_GALAXY_DE_1_PID) },
600 { USB_DEVICE(FTDI_VID, FTDI_4N_GALAXY_DE_2_PID) },
Ian Abbotte6ac4a42005-08-02 14:01:27 +0100601 { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_0_PID) },
602 { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_1_PID) },
603 { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_2_PID) },
604 { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_3_PID) },
605 { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_4_PID) },
606 { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_5_PID) },
607 { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_6_PID) },
608 { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_7_PID) },
Ian Abbott6f928722005-04-29 16:06:14 +0100609 { USB_DEVICE(MOBILITY_VID, MOBILITY_USB_SERIAL_PID) },
Ian Abbott8f977e42005-06-20 16:45:42 +0100610 { USB_DEVICE(FTDI_VID, FTDI_ACTIVE_ROBOTS_PID) },
Ian Abbott34d1a8a2006-02-27 14:05:32 +0000611 { USB_DEVICE(FTDI_VID, FTDI_MHAM_KW_PID) },
612 { USB_DEVICE(FTDI_VID, FTDI_MHAM_YS_PID) },
Ian Abbott9b1513d2005-07-29 12:16:31 -0700613 { USB_DEVICE(FTDI_VID, FTDI_MHAM_Y6_PID) },
614 { USB_DEVICE(FTDI_VID, FTDI_MHAM_Y8_PID) },
Ian Abbott34d1a8a2006-02-27 14:05:32 +0000615 { USB_DEVICE(FTDI_VID, FTDI_MHAM_IC_PID) },
616 { USB_DEVICE(FTDI_VID, FTDI_MHAM_DB9_PID) },
617 { USB_DEVICE(FTDI_VID, FTDI_MHAM_RS232_PID) },
618 { USB_DEVICE(FTDI_VID, FTDI_MHAM_Y9_PID) },
Ian Abbott740a4282005-12-13 16:18:47 +0000619 { USB_DEVICE(FTDI_VID, FTDI_TERATRONIK_VCP_PID) },
620 { USB_DEVICE(FTDI_VID, FTDI_TERATRONIK_D2XX_PID) },
Ian Abbott9b1513d2005-07-29 12:16:31 -0700621 { USB_DEVICE(EVOLUTION_VID, EVOLUTION_ER1_PID) },
Søren Haubergc1f8ea72007-08-08 10:50:17 +0200622 { USB_DEVICE(EVOLUTION_VID, EVO_HYBRID_PID) },
623 { USB_DEVICE(EVOLUTION_VID, EVO_RCM4_PID) },
Rui Santosc9c77462005-09-23 20:06:50 +0100624 { USB_DEVICE(FTDI_VID, FTDI_ARTEMIS_PID) },
625 { USB_DEVICE(FTDI_VID, FTDI_ATIK_ATK16_PID) },
Rui Santos09c280a2006-01-09 13:12:40 +0000626 { USB_DEVICE(FTDI_VID, FTDI_ATIK_ATK16C_PID) },
Rui Santosc9c77462005-09-23 20:06:50 +0100627 { USB_DEVICE(FTDI_VID, FTDI_ATIK_ATK16HR_PID) },
Rui Santos09c280a2006-01-09 13:12:40 +0000628 { USB_DEVICE(FTDI_VID, FTDI_ATIK_ATK16HRC_PID) },
Franco Lanza34910432007-12-26 03:29:33 +0100629 { USB_DEVICE(FTDI_VID, FTDI_ATIK_ATK16IC_PID) },
Ian Abbottb4723ae2005-11-23 15:45:23 -0800630 { USB_DEVICE(KOBIL_VID, KOBIL_CONV_B1_PID) },
631 { USB_DEVICE(KOBIL_VID, KOBIL_CONV_KAAN_PID) },
Pavel Fedineffac8b2005-12-09 09:30:59 +0300632 { USB_DEVICE(POSIFLEX_VID, POSIFLEX_PP7000_PID) },
Louis Nyffenegger641adaa2006-01-05 17:20:37 +0100633 { USB_DEVICE(FTDI_VID, FTDI_TTUSB_PID) },
Ian Abbott7e1c0b82006-03-21 14:55:20 +0000634 { USB_DEVICE(FTDI_VID, FTDI_ECLO_COM_1WIRE_PID) },
Ian Abbotta94b52a2006-01-09 17:11:40 +0000635 { USB_DEVICE(FTDI_VID, FTDI_WESTREX_MODEL_777_PID) },
636 { USB_DEVICE(FTDI_VID, FTDI_WESTREX_MODEL_8900F_PID) },
Wouter Paesence40d292006-01-03 14:30:31 +0100637 { USB_DEVICE(FTDI_VID, FTDI_PCDJ_DAC2_PID) },
Nathan Bronsoncdd3b152006-04-10 00:05:09 -0400638 { USB_DEVICE(FTDI_VID, FTDI_RRCIRKITS_LOCOBUFFER_PID) },
Ian Abbott7e0258f2006-04-12 15:20:35 +0100639 { USB_DEVICE(FTDI_VID, FTDI_ASK_RDR400_PID) },
A. Maitland Bottomsbf58fbd2006-03-14 18:44:23 -0500640 { USB_DEVICE(ICOM_ID1_VID, ICOM_ID1_PID) },
Folkert van Heusden62a13db2006-03-28 20:41:26 +0900641 { USB_DEVICE(PAPOUCH_VID, PAPOUCH_TMU_PID) },
Ian Abbott20a0f472006-05-04 11:34:25 +0100642 { USB_DEVICE(FTDI_VID, FTDI_ACG_HFDUAL_PID) },
Ian Abbotteb79b4f2006-05-30 12:36:30 +0100643 { USB_DEVICE(FTDI_VID, FTDI_YEI_SERVOCENTER31_PID) },
D. Peter Siddons48437482006-06-17 18:09:15 -0400644 { USB_DEVICE(FTDI_VID, FTDI_THORLABS_PID) },
Colin Leroye1979fe2006-07-11 11:36:43 +0200645 { USB_DEVICE(TESTO_VID, TESTO_USB_INTERFACE_PID) },
Ralf Schlatterbeckeaede2c2006-09-06 12:15:02 +0200646 { USB_DEVICE(FTDI_VID, FTDI_GAMMA_SCOUT_PID) },
Ian Abbott9978f9e2006-09-25 14:19:19 +0100647 { USB_DEVICE(FTDI_VID, FTDI_TACTRIX_OPENPORT_13M_PID) },
648 { USB_DEVICE(FTDI_VID, FTDI_TACTRIX_OPENPORT_13S_PID) },
649 { USB_DEVICE(FTDI_VID, FTDI_TACTRIX_OPENPORT_13U_PID) },
Kjell Myksvoll40c36092006-10-22 23:26:42 +0200650 { USB_DEVICE(ELEKTOR_VID, ELEKTOR_FT323R_PID) },
Micke Prag822c7ef2007-02-04 23:39:11 +0100651 { USB_DEVICE(TELLDUS_VID, TELLDUS_TELLSTICK_PID) },
Neil \"Superna\" ARMSTRONG762e92f2007-04-25 20:34:28 +0200652 { USB_DEVICE(FTDI_VID, FTDI_MAXSTREAM_PID) },
Lex Rossa5f62392008-08-06 16:25:08 +0400653 { USB_DEVICE(FTDI_VID, FTDI_PHI_FISCO_PID) },
Pierre Castellad7fde2d2007-09-06 22:34:39 +0200654 { USB_DEVICE(TML_VID, TML_USB_SERIAL_PID) },
Ed Beroset4bb0ef12008-01-17 17:37:46 -0500655 { USB_DEVICE(FTDI_VID, FTDI_ELSTER_UNICOM_PID) },
Mirko Bordignon11171d12008-03-10 11:38:55 +0100656 { USB_DEVICE(FTDI_VID, FTDI_PROPOX_JTAGCABLEII_PID) },
Tony Lindgrenfa91d432007-05-04 18:23:24 -0700657 { USB_DEVICE(OLIMEX_VID, OLIMEX_ARM_USB_OCD_PID),
Harald Welte20734342008-01-01 15:08:35 +0100658 .driver_info = (kernel_ulong_t)&ftdi_jtag_quirk },
659 { USB_DEVICE(FIC_VID, FIC_NEO1973_DEBUG_PID),
660 .driver_info = (kernel_ulong_t)&ftdi_jtag_quirk },
661 { USB_DEVICE(FTDI_VID, FTDI_OOCDLINK_PID),
662 .driver_info = (kernel_ulong_t)&ftdi_jtag_quirk },
Frederik Kriewitza00c3ca2008-07-30 16:53:41 +0200663 { USB_DEVICE(FTDI_VID, LMI_LM3S_DEVEL_BOARD_PID),
664 .driver_info = (kernel_ulong_t)&ftdi_jtag_quirk },
665 { USB_DEVICE(FTDI_VID, LMI_LM3S_EVAL_BOARD_PID),
666 .driver_info = (kernel_ulong_t)&ftdi_jtag_quirk },
Atsushi Nemoto26ab7052008-05-17 00:13:56 +0900667 { USB_DEVICE(RATOC_VENDOR_ID, RATOC_PRODUCT_ID_USB60F) },
Jon K Hellan25423352008-06-24 11:43:13 +0200668 { USB_DEVICE(FTDI_VID, FTDI_REU_TINY_PID) },
Jaroslav Kyselaa18f80b2008-09-16 15:46:50 +0200669 { USB_DEVICE(PAPOUCH_VID, PAPOUCH_QUIDO4x4_PID) },
Gaetan Carlier96285cb2008-09-22 15:00:09 -0700670 { USB_DEVICE(FTDI_VID, FTDI_DOMINTELL_DGQG_PID) },
671 { USB_DEVICE(FTDI_VID, FTDI_DOMINTELL_DUSB_PID) },
Robie Basak45eeff82009-01-12 23:05:59 +0000672 { USB_DEVICE(ALTI2_VID, ALTI2_N3_PID) },
Mhayk Whandsonca808012009-01-09 06:48:16 -0400673 { USB_DEVICE(FTDI_VID, DIEBOLD_BCS_SE923_PID) },
Stephane Clerambaulte38c2872009-02-02 13:39:12 -0800674 { USB_DEVICE(FTDI_VID, FTDI_NDI_HUC_PID) },
Axel Wachtler7f82b6d2009-03-05 14:09:22 -0800675 { USB_DEVICE(ATMEL_VID, STK541_PID) },
676 { USB_DEVICE(DE_VID, STB_PID) },
677 { USB_DEVICE(DE_VID, WHT_PID) },
Michael Hennerichb0d659002009-03-06 14:07:43 -0800678 { USB_DEVICE(ADI_VID, ADI_GNICE_PID),
679 .driver_info = (kernel_ulong_t)&ftdi_jtag_quirk },
Peter Korsgaardae27d842009-03-25 11:32:59 +0100680 { USB_DEVICE(JETI_VID, JETI_SPC1201_PID) },
Nicolas Pitre1002bb72009-04-23 22:38:12 -0400681 { USB_DEVICE(MARVELL_VID, MARVELL_SHEEVAPLUG_PID),
682 .driver_info = (kernel_ulong_t)&ftdi_jtag_quirk },
Daniel Suchyd46130a2009-05-13 10:05:48 +0200683 { USB_DEVICE(LARSENBRUSGAARD_VID, LB_ALTITRACK_PID) },
Ian Abbottfdcb0a02005-07-28 18:40:32 +0100684 { }, /* Optional parameter entry */
685 { } /* Terminating entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686};
687
Alan Cox464cbb22008-07-22 11:11:23 +0100688MODULE_DEVICE_TABLE(usb, id_table_combined);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689
690static struct usb_driver ftdi_driver = {
691 .name = "ftdi_sio",
692 .probe = usb_serial_probe,
693 .disconnect = usb_serial_disconnect,
694 .id_table = id_table_combined,
David Brownell5c09d142006-10-13 15:57:58 -0700695 .no_dynamic_id = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696};
697
Arjan van de Ven4c4c9432005-11-29 09:43:42 +0100698static const char *ftdi_chip_name[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 [SIO] = "SIO", /* the serial part of FT8U100AX */
700 [FT8U232AM] = "FT8U232AM",
701 [FT232BM] = "FT232BM",
702 [FT2232C] = "FT2232C",
Gard Spreemannd8b21602007-03-05 00:03:26 +0100703 [FT232RL] = "FT232RL",
Mark Adamson094c2e62009-04-09 15:03:09 +0100704 [FT2232H] = "FT2232H",
705 [FT4232H] = "FT4232H"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706};
707
708
709/* Constants for read urb and write urb */
710#define BUFSZ 512
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
712/* rx_flags */
713#define THROTTLED 0x01
714#define ACTUALLY_THROTTLED 0x02
715
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716/* Used for TIOCMIWAIT */
717#define FTDI_STATUS_B0_MASK (FTDI_RS0_CTS | FTDI_RS0_DSR | FTDI_RS0_RI | FTDI_RS0_RLSD)
718#define FTDI_STATUS_B1_MASK (FTDI_RS_BI)
719/* End TIOCMIWAIT */
720
Roel Kluinbbc5d272008-02-07 01:06:07 +0100721#define FTDI_IMPL_ASYNC_FLAGS = (ASYNC_SPD_HI | ASYNC_SPD_VHI \
722 | ASYNC_SPD_CUST | ASYNC_SPD_SHI | ASYNC_SPD_WARP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
724/* function prototypes for a FTDI serial converter */
Alan Cox464cbb22008-07-22 11:11:23 +0100725static int ftdi_sio_probe(struct usb_serial *serial,
726 const struct usb_device_id *id);
Alan Cox464cbb22008-07-22 11:11:23 +0100727static int ftdi_sio_port_probe(struct usb_serial_port *port);
728static int ftdi_sio_port_remove(struct usb_serial_port *port);
729static int ftdi_open(struct tty_struct *tty,
730 struct usb_serial_port *port, struct file *filp);
Alan Cox335f8512009-06-11 12:26:29 +0100731static void ftdi_close(struct usb_serial_port *port);
732static void ftdi_dtr_rts(struct usb_serial_port *port, int on);
Alan Cox464cbb22008-07-22 11:11:23 +0100733static int ftdi_write(struct tty_struct *tty, struct usb_serial_port *port,
734 const unsigned char *buf, int count);
735static int ftdi_write_room(struct tty_struct *tty);
736static int ftdi_chars_in_buffer(struct tty_struct *tty);
737static void ftdi_write_bulk_callback(struct urb *urb);
738static void ftdi_read_bulk_callback(struct urb *urb);
739static void ftdi_process_read(struct work_struct *work);
740static void ftdi_set_termios(struct tty_struct *tty,
741 struct usb_serial_port *port, struct ktermios *old);
742static int ftdi_tiocmget(struct tty_struct *tty, struct file *file);
743static int ftdi_tiocmset(struct tty_struct *tty, struct file *file,
744 unsigned int set, unsigned int clear);
745static int ftdi_ioctl(struct tty_struct *tty, struct file *file,
746 unsigned int cmd, unsigned long arg);
747static void ftdi_break_ctl(struct tty_struct *tty, int break_state);
748static void ftdi_throttle(struct tty_struct *tty);
749static void ftdi_unthrottle(struct tty_struct *tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
Alan Cox464cbb22008-07-22 11:11:23 +0100751static unsigned short int ftdi_232am_baud_base_to_divisor(int baud, int base);
752static unsigned short int ftdi_232am_baud_to_divisor(int baud);
753static __u32 ftdi_232bm_baud_base_to_divisor(int baud, int base);
754static __u32 ftdi_232bm_baud_to_divisor(int baud);
Mark Adamson094c2e62009-04-09 15:03:09 +0100755static __u32 ftdi_2232h_baud_base_to_divisor(int baud, int base);
756static __u32 ftdi_2232h_baud_to_divisor(int baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -0700758static struct usb_serial_driver ftdi_sio_device = {
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700759 .driver = {
760 .owner = THIS_MODULE,
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -0700761 .name = "ftdi_sio",
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700762 },
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -0700763 .description = "FTDI USB Serial Device",
Johannes Hölzld9b1b782006-12-17 21:50:24 +0100764 .usb_driver = &ftdi_driver ,
Ian Abbott8f977e42005-06-20 16:45:42 +0100765 .id_table = id_table_combined,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 .num_ports = 1,
Ian Abbott8f977e42005-06-20 16:45:42 +0100767 .probe = ftdi_sio_probe,
Jim Radford12bdbe02007-02-28 10:10:50 -0800768 .port_probe = ftdi_sio_port_probe,
769 .port_remove = ftdi_sio_port_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 .open = ftdi_open,
771 .close = ftdi_close,
Alan Cox335f8512009-06-11 12:26:29 +0100772 .dtr_rts = ftdi_dtr_rts,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 .throttle = ftdi_throttle,
774 .unthrottle = ftdi_unthrottle,
775 .write = ftdi_write,
776 .write_room = ftdi_write_room,
777 .chars_in_buffer = ftdi_chars_in_buffer,
778 .read_bulk_callback = ftdi_read_bulk_callback,
779 .write_bulk_callback = ftdi_write_bulk_callback,
780 .tiocmget = ftdi_tiocmget,
781 .tiocmset = ftdi_tiocmset,
782 .ioctl = ftdi_ioctl,
783 .set_termios = ftdi_set_termios,
784 .break_ctl = ftdi_break_ctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785};
786
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787
788#define WDR_TIMEOUT 5000 /* default urb timeout */
Ian Abbott279e1542005-07-29 12:16:52 -0700789#define WDR_SHORT_TIMEOUT 1000 /* shorter urb timeout */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790
791/* High and low are for DTR, RTS etc etc */
792#define HIGH 1
793#define LOW 0
794
Ian Abbott22465402006-06-26 12:59:17 +0100795/* number of outstanding urbs to prevent userspace DoS from happening */
796#define URB_UPPER_LIMIT 42
797
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798/*
799 * ***************************************************************************
Tony Lindgrenfa91d432007-05-04 18:23:24 -0700800 * Utility functions
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 * ***************************************************************************
802 */
803
804static unsigned short int ftdi_232am_baud_base_to_divisor(int baud, int base)
805{
806 unsigned short int divisor;
Alan Cox464cbb22008-07-22 11:11:23 +0100807 /* divisor shifted 3 bits to the left */
808 int divisor3 = base / 2 / baud;
809 if ((divisor3 & 0x7) == 7)
810 divisor3++; /* round x.7/8 up to x+1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 divisor = divisor3 >> 3;
812 divisor3 &= 0x7;
Alan Cox464cbb22008-07-22 11:11:23 +0100813 if (divisor3 == 1)
814 divisor |= 0xc000;
815 else if (divisor3 >= 4)
816 divisor |= 0x4000;
817 else if (divisor3 != 0)
818 divisor |= 0x8000;
819 else if (divisor == 1)
820 divisor = 0; /* special case for maximum baud rate */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 return divisor;
822}
823
824static unsigned short int ftdi_232am_baud_to_divisor(int baud)
825{
Alan Cox464cbb22008-07-22 11:11:23 +0100826 return ftdi_232am_baud_base_to_divisor(baud, 48000000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827}
828
829static __u32 ftdi_232bm_baud_base_to_divisor(int baud, int base)
830{
831 static const unsigned char divfrac[8] = { 0, 3, 2, 4, 1, 5, 6, 7 };
832 __u32 divisor;
Alan Cox464cbb22008-07-22 11:11:23 +0100833 /* divisor shifted 3 bits to the left */
834 int divisor3 = base / 2 / baud;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 divisor = divisor3 >> 3;
836 divisor |= (__u32)divfrac[divisor3 & 0x7] << 14;
837 /* Deal with special cases for highest baud rates. */
Alan Cox464cbb22008-07-22 11:11:23 +0100838 if (divisor == 1)
839 divisor = 0;
840 else if (divisor == 0x4001)
841 divisor = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 return divisor;
843}
844
845static __u32 ftdi_232bm_baud_to_divisor(int baud)
846{
Alan Cox464cbb22008-07-22 11:11:23 +0100847 return ftdi_232bm_baud_base_to_divisor(baud, 48000000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848}
849
Mark Adamson094c2e62009-04-09 15:03:09 +0100850static __u32 ftdi_2232h_baud_base_to_divisor(int baud, int base)
851{
852 static const unsigned char divfrac[8] = { 0, 3, 2, 4, 1, 5, 6, 7 };
853 __u32 divisor;
854 int divisor3;
855
856 /* hi-speed baud rate is 10-bit sampling instead of 16-bit */
857 divisor3 = (base / 10 / baud) * 8;
858
859 divisor = divisor3 >> 3;
860 divisor |= (__u32)divfrac[divisor3 & 0x7] << 14;
861 /* Deal with special cases for highest baud rates. */
862 if (divisor == 1)
863 divisor = 0;
864 else if (divisor == 0x4001)
865 divisor = 1;
866 /*
867 * Set this bit to turn off a divide by 2.5 on baud rate generator
868 * This enables baud rates up to 12Mbaud but cannot reach below 1200
869 * baud with this bit set
870 */
871 divisor |= 0x00020000;
872 return divisor;
873}
874
875static __u32 ftdi_2232h_baud_to_divisor(int baud)
876{
877 return ftdi_2232h_baud_base_to_divisor(baud, 120000000);
878}
879
Ian Abbott74ede0f2005-07-29 12:16:41 -0700880#define set_mctrl(port, set) update_mctrl((port), (set), 0)
881#define clear_mctrl(port, clear) update_mctrl((port), 0, (clear))
882
Alan Cox464cbb22008-07-22 11:11:23 +0100883static int update_mctrl(struct usb_serial_port *port, unsigned int set,
884 unsigned int clear)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885{
886 struct ftdi_private *priv = usb_get_serial_port_data(port);
887 char *buf;
Ian Abbott74ede0f2005-07-29 12:16:41 -0700888 unsigned urb_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 int rv;
Ian Abbott74ede0f2005-07-29 12:16:41 -0700890
891 if (((set | clear) & (TIOCM_DTR | TIOCM_RTS)) == 0) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800892 dbg("%s - DTR|RTS not being set|cleared", __func__);
Ian Abbott74ede0f2005-07-29 12:16:41 -0700893 return 0; /* no change */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 }
Ian Abbott74ede0f2005-07-29 12:16:41 -0700895
896 buf = kmalloc(1, GFP_NOIO);
Alan Cox9b0f2582008-02-20 20:49:53 +0000897 if (!buf)
Ian Abbott74ede0f2005-07-29 12:16:41 -0700898 return -ENOMEM;
Ian Abbott74ede0f2005-07-29 12:16:41 -0700899
900 clear &= ~set; /* 'set' takes precedence over 'clear' */
901 urb_value = 0;
902 if (clear & TIOCM_DTR)
903 urb_value |= FTDI_SIO_SET_DTR_LOW;
904 if (clear & TIOCM_RTS)
905 urb_value |= FTDI_SIO_SET_RTS_LOW;
906 if (set & TIOCM_DTR)
907 urb_value |= FTDI_SIO_SET_DTR_HIGH;
908 if (set & TIOCM_RTS)
909 urb_value |= FTDI_SIO_SET_RTS_HIGH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 rv = usb_control_msg(port->serial->dev,
911 usb_sndctrlpipe(port->serial->dev, 0),
David Brownell5c09d142006-10-13 15:57:58 -0700912 FTDI_SIO_SET_MODEM_CTRL_REQUEST,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 FTDI_SIO_SET_MODEM_CTRL_REQUEST_TYPE,
Ian Abbott74ede0f2005-07-29 12:16:41 -0700914 urb_value, priv->interface,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 buf, 0, WDR_TIMEOUT);
916
917 kfree(buf);
Ian Abbott74ede0f2005-07-29 12:16:41 -0700918 if (rv < 0) {
Alan Cox43b11d32008-10-13 10:36:00 +0100919 dbg("%s Error from MODEM_CTRL urb: DTR %s, RTS %s",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800920 __func__,
Ian Abbott74ede0f2005-07-29 12:16:41 -0700921 (set & TIOCM_DTR) ? "HIGH" :
922 (clear & TIOCM_DTR) ? "LOW" : "unchanged",
923 (set & TIOCM_RTS) ? "HIGH" :
924 (clear & TIOCM_RTS) ? "LOW" : "unchanged");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 } else {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800926 dbg("%s - DTR %s, RTS %s", __func__,
Ian Abbott74ede0f2005-07-29 12:16:41 -0700927 (set & TIOCM_DTR) ? "HIGH" :
928 (clear & TIOCM_DTR) ? "LOW" : "unchanged",
929 (set & TIOCM_RTS) ? "HIGH" :
930 (clear & TIOCM_RTS) ? "LOW" : "unchanged");
Alan Cox9b0f2582008-02-20 20:49:53 +0000931 /* FIXME: locking on last_dtr_rts */
Ian Abbott74ede0f2005-07-29 12:16:41 -0700932 priv->last_dtr_rts = (priv->last_dtr_rts & ~clear) | set;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 return rv;
935}
936
937
Alan Cox464cbb22008-07-22 11:11:23 +0100938static __u32 get_ftdi_divisor(struct tty_struct *tty,
939 struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940{ /* get_ftdi_divisor */
941 struct ftdi_private *priv = usb_get_serial_port_data(port);
942 __u32 div_value = 0;
943 int div_okay = 1;
944 int baud;
945
946 /*
Alan Cox464cbb22008-07-22 11:11:23 +0100947 * The logic involved in setting the baudrate can be cleanly split into
948 * 3 steps.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 * 1. Standard baud rates are set in tty->termios->c_cflag
Alan Cox464cbb22008-07-22 11:11:23 +0100950 * 2. If these are not enough, you can set any speed using alt_speed as
951 * follows:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 * - set tty->termios->c_cflag speed to B38400
953 * - set your real speed in tty->alt_speed; it gets ignored when
954 * alt_speed==0, (or)
Alan Cox464cbb22008-07-22 11:11:23 +0100955 * - call TIOCSSERIAL ioctl with (struct serial_struct) set as
956 * follows:
957 * flags & ASYNC_SPD_MASK == ASYNC_SPD_[HI, VHI, SHI, WARP],
958 * this just sets alt_speed to (HI: 57600, VHI: 115200,
959 * SHI: 230400, WARP: 460800)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 * ** Steps 1, 2 are done courtesy of tty_get_baud_rate
961 * 3. You can also set baud rate by setting custom divisor as follows
962 * - set tty->termios->c_cflag speed to B38400
Alan Cox464cbb22008-07-22 11:11:23 +0100963 * - call TIOCSSERIAL ioctl with (struct serial_struct) set as
964 * follows:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 * o flags & ASYNC_SPD_MASK == ASYNC_SPD_CUST
966 * o custom_divisor set to baud_base / your_new_baudrate
Alan Cox464cbb22008-07-22 11:11:23 +0100967 * ** Step 3 is done courtesy of code borrowed from serial.c
968 * I should really spend some time and separate + move this common
969 * code to serial.c, it is replicated in nearly every serial driver
970 * you see.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 */
972
Alan Cox464cbb22008-07-22 11:11:23 +0100973 /* 1. Get the baud rate from the tty settings, this observes
974 alt_speed hack */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975
Alan Cox95da3102008-07-22 11:09:07 +0100976 baud = tty_get_baud_rate(tty);
Harvey Harrison441b62c2008-03-03 16:08:34 -0800977 dbg("%s - tty_get_baud_rate reports speed %d", __func__, baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978
Alan Cox464cbb22008-07-22 11:11:23 +0100979 /* 2. Observe async-compatible custom_divisor hack, update baudrate
980 if needed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981
982 if (baud == 38400 &&
983 ((priv->flags & ASYNC_SPD_MASK) == ASYNC_SPD_CUST) &&
984 (priv->custom_divisor)) {
985 baud = priv->baud_base / priv->custom_divisor;
Alan Cox464cbb22008-07-22 11:11:23 +0100986 dbg("%s - custom divisor %d sets baud rate to %d",
987 __func__, priv->custom_divisor, baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 }
989
990 /* 3. Convert baudrate to device-specific divisor */
991
Alan Cox464cbb22008-07-22 11:11:23 +0100992 if (!baud)
993 baud = 9600;
994 switch (priv->chip_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 case SIO: /* SIO chip */
Alan Cox464cbb22008-07-22 11:11:23 +0100996 switch (baud) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 case 300: div_value = ftdi_sio_b300; break;
998 case 600: div_value = ftdi_sio_b600; break;
999 case 1200: div_value = ftdi_sio_b1200; break;
1000 case 2400: div_value = ftdi_sio_b2400; break;
1001 case 4800: div_value = ftdi_sio_b4800; break;
1002 case 9600: div_value = ftdi_sio_b9600; break;
1003 case 19200: div_value = ftdi_sio_b19200; break;
1004 case 38400: div_value = ftdi_sio_b38400; break;
1005 case 57600: div_value = ftdi_sio_b57600; break;
1006 case 115200: div_value = ftdi_sio_b115200; break;
1007 } /* baud */
1008 if (div_value == 0) {
Alan Cox464cbb22008-07-22 11:11:23 +01001009 dbg("%s - Baudrate (%d) requested is not supported",
1010 __func__, baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 div_value = ftdi_sio_b9600;
Andrew Mortonbd5e47c2007-10-18 01:24:25 -07001012 baud = 9600;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 div_okay = 0;
1014 }
1015 break;
1016 case FT8U232AM: /* 8U232AM chip */
1017 if (baud <= 3000000) {
1018 div_value = ftdi_232am_baud_to_divisor(baud);
1019 } else {
Alan Cox464cbb22008-07-22 11:11:23 +01001020 dbg("%s - Baud rate too high!", __func__);
Andrew Mortonbd5e47c2007-10-18 01:24:25 -07001021 baud = 9600;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 div_value = ftdi_232am_baud_to_divisor(9600);
1023 div_okay = 0;
1024 }
1025 break;
1026 case FT232BM: /* FT232BM chip */
1027 case FT2232C: /* FT2232C chip */
David Brownell3b009c62007-03-23 12:54:27 -07001028 case FT232RL:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 if (baud <= 3000000) {
1030 div_value = ftdi_232bm_baud_to_divisor(baud);
1031 } else {
Alan Cox464cbb22008-07-22 11:11:23 +01001032 dbg("%s - Baud rate too high!", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 div_value = ftdi_232bm_baud_to_divisor(9600);
1034 div_okay = 0;
Alan Cox669a6db2007-10-18 01:24:24 -07001035 baud = 9600;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 }
1037 break;
Mark Adamson094c2e62009-04-09 15:03:09 +01001038 case FT2232H: /* FT2232H chip */
1039 case FT4232H: /* FT4232H chip */
1040 if ((baud <= 12000000) & (baud >= 1200)) {
1041 div_value = ftdi_2232h_baud_to_divisor(baud);
1042 } else if (baud < 1200) {
1043 div_value = ftdi_232bm_baud_to_divisor(baud);
1044 } else {
1045 dbg("%s - Baud rate too high!", __func__);
1046 div_value = ftdi_232bm_baud_to_divisor(9600);
1047 div_okay = 0;
1048 baud = 9600;
1049 }
1050 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 } /* priv->chip_type */
1052
1053 if (div_okay) {
1054 dbg("%s - Baud rate set to %d (divisor 0x%lX) on chip %s",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001055 __func__, baud, (unsigned long)div_value,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 ftdi_chip_name[priv->chip_type]);
1057 }
1058
Alan Cox95da3102008-07-22 11:09:07 +01001059 tty_encode_baud_rate(tty, baud, baud);
Alan Cox464cbb22008-07-22 11:11:23 +01001060 return div_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061}
1062
Alan Cox95da3102008-07-22 11:09:07 +01001063static int change_speed(struct tty_struct *tty, struct usb_serial_port *port)
1064{
1065 struct ftdi_private *priv = usb_get_serial_port_data(port);
1066 char *buf;
Alan Cox464cbb22008-07-22 11:11:23 +01001067 __u16 urb_value;
Alan Cox95da3102008-07-22 11:09:07 +01001068 __u16 urb_index;
1069 __u32 urb_index_value;
1070 int rv;
1071
1072 buf = kmalloc(1, GFP_NOIO);
1073 if (!buf)
1074 return -ENOMEM;
1075
1076 urb_index_value = get_ftdi_divisor(tty, port);
1077 urb_value = (__u16)urb_index_value;
1078 urb_index = (__u16)(urb_index_value >> 16);
1079 if (priv->interface) { /* FT2232C */
1080 urb_index = (__u16)((urb_index << 8) | priv->interface);
1081 }
1082
1083 rv = usb_control_msg(port->serial->dev,
1084 usb_sndctrlpipe(port->serial->dev, 0),
1085 FTDI_SIO_SET_BAUDRATE_REQUEST,
1086 FTDI_SIO_SET_BAUDRATE_REQUEST_TYPE,
1087 urb_value, urb_index,
1088 buf, 0, WDR_SHORT_TIMEOUT);
1089
1090 kfree(buf);
1091 return rv;
1092}
1093
Alan Cox557aaa72009-06-11 13:55:34 +01001094static int write_latency_timer(struct usb_serial_port *port)
1095{
1096 struct ftdi_private *priv = usb_get_serial_port_data(port);
1097 struct usb_device *udev = port->serial->dev;
1098 char buf[1];
1099 int rv = 0;
1100 int l = priv->latency;
Alan Cox95da3102008-07-22 11:09:07 +01001101
Alan Cox557aaa72009-06-11 13:55:34 +01001102 if (priv->flags & ASYNC_LOW_LATENCY)
1103 l = 1;
1104
1105 dbg("%s: setting latency timer = %i", __func__, l);
1106
1107 rv = usb_control_msg(udev,
1108 usb_sndctrlpipe(udev, 0),
1109 FTDI_SIO_SET_LATENCY_TIMER_REQUEST,
1110 FTDI_SIO_SET_LATENCY_TIMER_REQUEST_TYPE,
1111 l, priv->interface,
1112 buf, 0, WDR_TIMEOUT);
1113
1114 if (rv < 0)
1115 dev_err(&port->dev, "Unable to write latency timer: %i\n", rv);
1116 return rv;
1117}
1118
1119static int read_latency_timer(struct usb_serial_port *port)
1120{
1121 struct ftdi_private *priv = usb_get_serial_port_data(port);
1122 struct usb_device *udev = port->serial->dev;
1123 unsigned short latency = 0;
1124 int rv = 0;
1125
1126
1127 dbg("%s", __func__);
1128
1129 rv = usb_control_msg(udev,
1130 usb_rcvctrlpipe(udev, 0),
1131 FTDI_SIO_GET_LATENCY_TIMER_REQUEST,
1132 FTDI_SIO_GET_LATENCY_TIMER_REQUEST_TYPE,
1133 0, priv->interface,
1134 (char *) &latency, 1, WDR_TIMEOUT);
1135
1136 if (rv < 0) {
1137 dev_err(&port->dev, "Unable to read latency timer: %i\n", rv);
1138 return -EIO;
1139 }
1140 return latency;
1141}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142
Alan Cox464cbb22008-07-22 11:11:23 +01001143static int get_serial_info(struct usb_serial_port *port,
1144 struct serial_struct __user *retinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145{
1146 struct ftdi_private *priv = usb_get_serial_port_data(port);
1147 struct serial_struct tmp;
1148
1149 if (!retinfo)
1150 return -EFAULT;
1151 memset(&tmp, 0, sizeof(tmp));
1152 tmp.flags = priv->flags;
1153 tmp.baud_base = priv->baud_base;
1154 tmp.custom_divisor = priv->custom_divisor;
1155 if (copy_to_user(retinfo, &tmp, sizeof(*retinfo)))
1156 return -EFAULT;
1157 return 0;
1158} /* get_serial_info */
1159
1160
Alan Cox95da3102008-07-22 11:09:07 +01001161static int set_serial_info(struct tty_struct *tty,
Alan Cox464cbb22008-07-22 11:11:23 +01001162 struct usb_serial_port *port, struct serial_struct __user *newinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163{ /* set_serial_info */
1164 struct ftdi_private *priv = usb_get_serial_port_data(port);
1165 struct serial_struct new_serial;
1166 struct ftdi_private old_priv;
1167
1168 if (copy_from_user(&new_serial, newinfo, sizeof(new_serial)))
1169 return -EFAULT;
Alan Cox6b447f042009-01-02 13:48:56 +00001170
1171 lock_kernel();
Alan Cox464cbb22008-07-22 11:11:23 +01001172 old_priv = *priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173
1174 /* Do error checking and permission checking */
1175
1176 if (!capable(CAP_SYS_ADMIN)) {
1177 if (((new_serial.flags & ~ASYNC_USR_MASK) !=
Dan Carpenter64905b42009-02-03 11:11:38 +03001178 (priv->flags & ~ASYNC_USR_MASK))) {
1179 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 return -EPERM;
Dan Carpenter64905b42009-02-03 11:11:38 +03001181 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 priv->flags = ((priv->flags & ~ASYNC_USR_MASK) |
1183 (new_serial.flags & ASYNC_USR_MASK));
1184 priv->custom_divisor = new_serial.custom_divisor;
1185 goto check_and_exit;
1186 }
1187
1188 if ((new_serial.baud_base != priv->baud_base) &&
Alan Cox6b447f042009-01-02 13:48:56 +00001189 (new_serial.baud_base < 9600)) {
1190 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 return -EINVAL;
Alan Cox6b447f042009-01-02 13:48:56 +00001192 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193
1194 /* Make the changes - these are privileged changes! */
1195
1196 priv->flags = ((priv->flags & ~ASYNC_FLAGS) |
Alan Cox464cbb22008-07-22 11:11:23 +01001197 (new_serial.flags & ASYNC_FLAGS));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 priv->custom_divisor = new_serial.custom_divisor;
1199
Alan Cox95da3102008-07-22 11:09:07 +01001200 tty->low_latency = (priv->flags & ASYNC_LOW_LATENCY) ? 1 : 0;
Alan Cox557aaa72009-06-11 13:55:34 +01001201 write_latency_timer(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202
1203check_and_exit:
1204 if ((old_priv.flags & ASYNC_SPD_MASK) !=
1205 (priv->flags & ASYNC_SPD_MASK)) {
1206 if ((priv->flags & ASYNC_SPD_MASK) == ASYNC_SPD_HI)
Alan Cox95da3102008-07-22 11:09:07 +01001207 tty->alt_speed = 57600;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 else if ((priv->flags & ASYNC_SPD_MASK) == ASYNC_SPD_VHI)
Alan Cox95da3102008-07-22 11:09:07 +01001209 tty->alt_speed = 115200;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 else if ((priv->flags & ASYNC_SPD_MASK) == ASYNC_SPD_SHI)
Alan Cox95da3102008-07-22 11:09:07 +01001211 tty->alt_speed = 230400;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 else if ((priv->flags & ASYNC_SPD_MASK) == ASYNC_SPD_WARP)
Alan Cox95da3102008-07-22 11:09:07 +01001213 tty->alt_speed = 460800;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 else
Alan Cox95da3102008-07-22 11:09:07 +01001215 tty->alt_speed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 }
1217 if (((old_priv.flags & ASYNC_SPD_MASK) !=
1218 (priv->flags & ASYNC_SPD_MASK)) ||
1219 (((priv->flags & ASYNC_SPD_MASK) == ASYNC_SPD_CUST) &&
1220 (old_priv.custom_divisor != priv->custom_divisor))) {
Alan Cox6b447f042009-01-02 13:48:56 +00001221 unlock_kernel();
Alan Cox95da3102008-07-22 11:09:07 +01001222 change_speed(tty, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 }
Alan Cox6b447f042009-01-02 13:48:56 +00001224 else
1225 unlock_kernel();
Alan Cox95da3102008-07-22 11:09:07 +01001226 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227
1228} /* set_serial_info */
1229
1230
Ian Abbott8f977e42005-06-20 16:45:42 +01001231/* Determine type of FTDI chip based on USB config and descriptor. */
1232static void ftdi_determine_type(struct usb_serial_port *port)
1233{
1234 struct ftdi_private *priv = usb_get_serial_port_data(port);
1235 struct usb_serial *serial = port->serial;
1236 struct usb_device *udev = serial->dev;
1237 unsigned version;
1238 unsigned interfaces;
1239
1240 /* Assume it is not the original SIO device for now. */
Ian Abbottf5e09b72005-09-12 12:23:25 +01001241 priv->baud_base = 48000000 / 2;
Ian Abbott8f977e42005-06-20 16:45:42 +01001242 priv->write_offset = 0;
1243
1244 version = le16_to_cpu(udev->descriptor.bcdDevice);
1245 interfaces = udev->actconfig->desc.bNumInterfaces;
Harvey Harrison441b62c2008-03-03 16:08:34 -08001246 dbg("%s: bcdDevice = 0x%x, bNumInterfaces = %u", __func__,
Ian Abbott8f977e42005-06-20 16:45:42 +01001247 version, interfaces);
1248 if (interfaces > 1) {
1249 int inter;
1250
Mark Adamson094c2e62009-04-09 15:03:09 +01001251 /* Multiple interfaces.*/
1252 if (version == 0x0800) {
1253 priv->chip_type = FT4232H;
1254 /* Hi-speed - baud clock runs at 120MHz */
1255 priv->baud_base = 120000000 / 2;
1256 } else if (version == 0x0700) {
1257 priv->chip_type = FT2232H;
1258 /* Hi-speed - baud clock runs at 120MHz */
1259 priv->baud_base = 120000000 / 2;
1260 } else
1261 priv->chip_type = FT2232C;
1262
Ian Abbott8f977e42005-06-20 16:45:42 +01001263 /* Determine interface code. */
1264 inter = serial->interface->altsetting->desc.bInterfaceNumber;
Mark Adamson094c2e62009-04-09 15:03:09 +01001265 if (inter == 0) {
1266 priv->interface = INTERFACE_A;
1267 } else if (inter == 1) {
1268 priv->interface = INTERFACE_B;
1269 } else if (inter == 2) {
1270 priv->interface = INTERFACE_C;
1271 } else if (inter == 3) {
1272 priv->interface = INTERFACE_D;
1273 }
Ian Abbott8f977e42005-06-20 16:45:42 +01001274 /* BM-type devices have a bug where bcdDevice gets set
1275 * to 0x200 when iSerialNumber is 0. */
1276 if (version < 0x500) {
1277 dbg("%s: something fishy - bcdDevice too low for multi-interface device",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001278 __func__);
Ian Abbott8f977e42005-06-20 16:45:42 +01001279 }
1280 } else if (version < 0x200) {
1281 /* Old device. Assume its the original SIO. */
1282 priv->chip_type = SIO;
1283 priv->baud_base = 12000000 / 16;
1284 priv->write_offset = 1;
1285 } else if (version < 0x400) {
1286 /* Assume its an FT8U232AM (or FT8U245AM) */
1287 /* (It might be a BM because of the iSerialNumber bug,
1288 * but it will still work as an AM device.) */
1289 priv->chip_type = FT8U232AM;
David Brownell3b009c62007-03-23 12:54:27 -07001290 } else if (version < 0x600) {
Ian Abbott8f977e42005-06-20 16:45:42 +01001291 /* Assume its an FT232BM (or FT245BM) */
1292 priv->chip_type = FT232BM;
David Brownell3b009c62007-03-23 12:54:27 -07001293 } else {
1294 /* Assume its an FT232R */
1295 priv->chip_type = FT232RL;
Ian Abbott8f977e42005-06-20 16:45:42 +01001296 }
Greg Kroah-Hartmanc197a8d2008-08-18 13:21:04 -07001297 dev_info(&udev->dev, "Detected %s\n", ftdi_chip_name[priv->chip_type]);
Ian Abbott8f977e42005-06-20 16:45:42 +01001298}
1299
1300
Mark Adamson895f28b2009-05-01 11:48:45 +01001301/* Determine the maximum packet size for the device. This depends on the chip
1302 * type and the USB host capabilities. The value should be obtained from the
1303 * device descriptor as the chip will use the appropriate values for the host.*/
1304static void ftdi_set_max_packet_size(struct usb_serial_port *port)
1305{
1306 struct ftdi_private *priv = usb_get_serial_port_data(port);
1307 struct usb_serial *serial = port->serial;
1308 struct usb_device *udev = serial->dev;
1309
1310 struct usb_interface *interface = serial->interface;
1311 struct usb_endpoint_descriptor *ep_desc = &interface->cur_altsetting->endpoint[1].desc;
1312
1313 unsigned num_endpoints;
1314 int i = 0;
1315
1316 num_endpoints = interface->cur_altsetting->desc.bNumEndpoints;
1317 dev_info(&udev->dev, "Number of endpoints %d\n", num_endpoints);
1318
1319 /* NOTE: some customers have programmed FT232R/FT245R devices
1320 * with an endpoint size of 0 - not good. In this case, we
1321 * want to override the endpoint descriptor setting and use a
1322 * value of 64 for wMaxPacketSize */
1323 for (i = 0; i < num_endpoints; i++) {
1324 dev_info(&udev->dev, "Endpoint %d MaxPacketSize %d\n", i+1,
1325 interface->cur_altsetting->endpoint[i].desc.wMaxPacketSize);
1326 ep_desc = &interface->cur_altsetting->endpoint[i].desc;
1327 if (ep_desc->wMaxPacketSize == 0) {
1328 ep_desc->wMaxPacketSize = cpu_to_le16(0x40);
1329 dev_info(&udev->dev, "Overriding wMaxPacketSize on endpoint %d\n", i);
1330 }
1331 }
1332
1333 /* set max packet size based on descriptor */
1334 priv->max_packet_size = ep_desc->wMaxPacketSize;
1335
1336 dev_info(&udev->dev, "Setting MaxPacketSize %d\n", priv->max_packet_size);
1337}
1338
1339
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340/*
1341 * ***************************************************************************
1342 * Sysfs Attribute
1343 * ***************************************************************************
1344 */
1345
Alan Cox464cbb22008-07-22 11:11:23 +01001346static ssize_t show_latency_timer(struct device *dev,
1347 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348{
1349 struct usb_serial_port *port = to_usb_serial_port(dev);
1350 struct ftdi_private *priv = usb_get_serial_port_data(port);
Alan Cox557aaa72009-06-11 13:55:34 +01001351 if (priv->flags & ASYNC_LOW_LATENCY)
1352 return sprintf(buf, "1\n");
1353 else
1354 return sprintf(buf, "%i\n", priv->latency);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355}
1356
Alan Cox557aaa72009-06-11 13:55:34 +01001357
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358/* Write a new value of the latency timer, in units of milliseconds. */
Alan Cox464cbb22008-07-22 11:11:23 +01001359static ssize_t store_latency_timer(struct device *dev,
1360 struct device_attribute *attr, const char *valbuf,
1361 size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362{
1363 struct usb_serial_port *port = to_usb_serial_port(dev);
1364 struct ftdi_private *priv = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 int v = simple_strtoul(valbuf, NULL, 10);
1366 int rv = 0;
David Brownell5c09d142006-10-13 15:57:58 -07001367
Alan Cox557aaa72009-06-11 13:55:34 +01001368 priv->latency = v;
1369 rv = write_latency_timer(port);
1370 if (rv < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 return count;
1373}
1374
1375/* Write an event character directly to the FTDI register. The ASCII
1376 value is in the low 8 bits, with the enable bit in the 9th bit. */
Alan Cox464cbb22008-07-22 11:11:23 +01001377static ssize_t store_event_char(struct device *dev,
1378 struct device_attribute *attr, const char *valbuf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379{
1380 struct usb_serial_port *port = to_usb_serial_port(dev);
1381 struct ftdi_private *priv = usb_get_serial_port_data(port);
Jim Radford12bdbe02007-02-28 10:10:50 -08001382 struct usb_device *udev = port->serial->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 char buf[1];
1384 int v = simple_strtoul(valbuf, NULL, 10);
1385 int rv = 0;
David Brownell5c09d142006-10-13 15:57:58 -07001386
Harvey Harrison441b62c2008-03-03 16:08:34 -08001387 dbg("%s: setting event char = %i", __func__, v);
David Brownell5c09d142006-10-13 15:57:58 -07001388
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 rv = usb_control_msg(udev,
1390 usb_sndctrlpipe(udev, 0),
1391 FTDI_SIO_SET_EVENT_CHAR_REQUEST,
1392 FTDI_SIO_SET_EVENT_CHAR_REQUEST_TYPE,
David Brownell5c09d142006-10-13 15:57:58 -07001393 v, priv->interface,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 buf, 0, WDR_TIMEOUT);
David Brownell5c09d142006-10-13 15:57:58 -07001395
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 if (rv < 0) {
1397 dbg("Unable to write event character: %i", rv);
1398 return -EIO;
1399 }
David Brownell5c09d142006-10-13 15:57:58 -07001400
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 return count;
1402}
1403
Alan Cox464cbb22008-07-22 11:11:23 +01001404static DEVICE_ATTR(latency_timer, S_IWUSR | S_IRUGO, show_latency_timer,
1405 store_latency_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406static DEVICE_ATTR(event_char, S_IWUSR, NULL, store_event_char);
1407
Jim Radford12bdbe02007-02-28 10:10:50 -08001408static int create_sysfs_attrs(struct usb_serial_port *port)
Greg Kroah-Hartman13f4db92006-08-28 11:43:25 -07001409{
Jim Radford12bdbe02007-02-28 10:10:50 -08001410 struct ftdi_private *priv = usb_get_serial_port_data(port);
Greg Kroah-Hartman13f4db92006-08-28 11:43:25 -07001411 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412
Alan Cox464cbb22008-07-22 11:11:23 +01001413 dbg("%s", __func__);
Greg Kroah-Hartman13f4db92006-08-28 11:43:25 -07001414
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 /* XXX I've no idea if the original SIO supports the event_char
1416 * sysfs parameter, so I'm playing it safe. */
1417 if (priv->chip_type != SIO) {
1418 dbg("sysfs attributes for %s", ftdi_chip_name[priv->chip_type]);
Jim Radford12bdbe02007-02-28 10:10:50 -08001419 retval = device_create_file(&port->dev, &dev_attr_event_char);
Greg Kroah-Hartman13f4db92006-08-28 11:43:25 -07001420 if ((!retval) &&
Stepan Moskovchenko97cd49e2007-05-09 14:53:04 -04001421 (priv->chip_type == FT232BM ||
1422 priv->chip_type == FT2232C ||
Mark Adamson094c2e62009-04-09 15:03:09 +01001423 priv->chip_type == FT232RL ||
1424 priv->chip_type == FT2232H ||
1425 priv->chip_type == FT4232H)) {
Jim Radford12bdbe02007-02-28 10:10:50 -08001426 retval = device_create_file(&port->dev,
Greg Kroah-Hartman13f4db92006-08-28 11:43:25 -07001427 &dev_attr_latency_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 }
1429 }
Greg Kroah-Hartman13f4db92006-08-28 11:43:25 -07001430 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431}
1432
Jim Radford12bdbe02007-02-28 10:10:50 -08001433static void remove_sysfs_attrs(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434{
Jim Radford12bdbe02007-02-28 10:10:50 -08001435 struct ftdi_private *priv = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436
Alan Cox464cbb22008-07-22 11:11:23 +01001437 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 /* XXX see create_sysfs_attrs */
1440 if (priv->chip_type != SIO) {
Jim Radford12bdbe02007-02-28 10:10:50 -08001441 device_remove_file(&port->dev, &dev_attr_event_char);
Andrew M. Bishoped6e5282007-08-21 19:08:56 +01001442 if (priv->chip_type == FT232BM ||
1443 priv->chip_type == FT2232C ||
Mark Adamson094c2e62009-04-09 15:03:09 +01001444 priv->chip_type == FT232RL ||
1445 priv->chip_type == FT2232H ||
1446 priv->chip_type == FT4232H) {
Jim Radford12bdbe02007-02-28 10:10:50 -08001447 device_remove_file(&port->dev, &dev_attr_latency_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 }
1449 }
David Brownell5c09d142006-10-13 15:57:58 -07001450
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451}
1452
1453/*
1454 * ***************************************************************************
1455 * FTDI driver specific functions
1456 * ***************************************************************************
1457 */
1458
Ian Abbott8f977e42005-06-20 16:45:42 +01001459/* Probe function to check for special devices */
Alan Cox464cbb22008-07-22 11:11:23 +01001460static int ftdi_sio_probe(struct usb_serial *serial,
1461 const struct usb_device_id *id)
Ian Abbott8f977e42005-06-20 16:45:42 +01001462{
Alan Cox464cbb22008-07-22 11:11:23 +01001463 struct ftdi_sio_quirk *quirk =
1464 (struct ftdi_sio_quirk *)id->driver_info;
Tony Lindgrenfa91d432007-05-04 18:23:24 -07001465
1466 if (quirk && quirk->probe) {
1467 int ret = quirk->probe(serial);
1468 if (ret != 0)
1469 return ret;
1470 }
1471
Ian Abbott8f977e42005-06-20 16:45:42 +01001472 usb_set_serial_data(serial, (void *)id->driver_info);
1473
Tony Lindgrenfa91d432007-05-04 18:23:24 -07001474 return 0;
Ian Abbott8f977e42005-06-20 16:45:42 +01001475}
1476
Jim Radford12bdbe02007-02-28 10:10:50 -08001477static int ftdi_sio_port_probe(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 struct ftdi_private *priv;
Oliver Neukum0ffbbe22007-07-09 12:03:08 -07001480 struct ftdi_sio_quirk *quirk = usb_get_serial_data(port->serial);
1481
Greg Kroah-Hartman13f4db92006-08-28 11:43:25 -07001482
Alan Cox464cbb22008-07-22 11:11:23 +01001483 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484
Eric Sesterhenn80b6ca42006-02-27 21:29:43 +01001485 priv = kzalloc(sizeof(struct ftdi_private), GFP_KERNEL);
Alan Cox464cbb22008-07-22 11:11:23 +01001486 if (!priv) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07001487 dev_err(&port->dev, "%s- kmalloc(%Zd) failed.\n", __func__,
Alan Cox464cbb22008-07-22 11:11:23 +01001488 sizeof(struct ftdi_private));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 return -ENOMEM;
1490 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491
Alan Sternc45d6322009-04-30 10:06:19 -04001492 kref_init(&priv->kref);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 spin_lock_init(&priv->rx_lock);
Ian Abbott22465402006-06-26 12:59:17 +01001494 spin_lock_init(&priv->tx_lock);
Alan Cox464cbb22008-07-22 11:11:23 +01001495 init_waitqueue_head(&priv->delta_msr_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 /* This will push the characters through immediately rather
1497 than queue a task to deliver them */
1498 priv->flags = ASYNC_LOW_LATENCY;
1499
Oliver Neukum0ffbbe22007-07-09 12:03:08 -07001500 if (quirk && quirk->port_probe)
1501 quirk->port_probe(priv);
1502
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 /* Increase the size of read buffers */
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -07001504 kfree(port->bulk_in_buffer);
Alan Cox464cbb22008-07-22 11:11:23 +01001505 port->bulk_in_buffer = kmalloc(BUFSZ, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 if (!port->bulk_in_buffer) {
Alan Cox464cbb22008-07-22 11:11:23 +01001507 kfree(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 return -ENOMEM;
1509 }
1510 if (port->read_urb) {
1511 port->read_urb->transfer_buffer = port->bulk_in_buffer;
1512 port->read_urb->transfer_buffer_length = BUFSZ;
1513 }
1514
David Howellsc4028952006-11-22 14:57:56 +00001515 INIT_DELAYED_WORK(&priv->rx_work, ftdi_process_read);
1516 priv->port = port;
Ian Abbott76854ce2005-06-02 10:34:11 +01001517
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 /* Free port's existing write urb and transfer buffer. */
1519 if (port->write_urb) {
Alan Cox464cbb22008-07-22 11:11:23 +01001520 usb_free_urb(port->write_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 port->write_urb = NULL;
1522 }
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -07001523 kfree(port->bulk_out_buffer);
1524 port->bulk_out_buffer = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525
Jim Radford12bdbe02007-02-28 10:10:50 -08001526 usb_set_serial_port_data(port, priv);
Ian Abbott8f977e42005-06-20 16:45:42 +01001527
Alan Cox464cbb22008-07-22 11:11:23 +01001528 ftdi_determine_type(port);
Mark Adamson895f28b2009-05-01 11:48:45 +01001529 ftdi_set_max_packet_size(port);
Alan Cox557aaa72009-06-11 13:55:34 +01001530 read_latency_timer(port);
Jim Radford12bdbe02007-02-28 10:10:50 -08001531 create_sysfs_attrs(port);
1532 return 0;
1533}
Ian Abbott8f977e42005-06-20 16:45:42 +01001534
Ian Abbott8f977e42005-06-20 16:45:42 +01001535/* Setup for the USB-UIRT device, which requires hardwired
1536 * baudrate (38400 gets mapped to 312500) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537/* Called from usbserial:serial_probe */
Alan Cox464cbb22008-07-22 11:11:23 +01001538static void ftdi_USB_UIRT_setup(struct ftdi_private *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539{
Alan Cox464cbb22008-07-22 11:11:23 +01001540 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 priv->flags |= ASYNC_SPD_CUST;
1543 priv->custom_divisor = 77;
Alan Cox669a6db2007-10-18 01:24:24 -07001544 priv->force_baud = 38400;
Ian Abbott8f977e42005-06-20 16:45:42 +01001545} /* ftdi_USB_UIRT_setup */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546
Ian Abbott8f977e42005-06-20 16:45:42 +01001547/* Setup for the HE-TIRA1 device, which requires hardwired
1548 * baudrate (38400 gets mapped to 100000) and RTS-CTS enabled. */
Alan Cox464cbb22008-07-22 11:11:23 +01001549
1550static void ftdi_HE_TIRA1_setup(struct ftdi_private *priv)
Ian Abbott8f977e42005-06-20 16:45:42 +01001551{
Alan Cox464cbb22008-07-22 11:11:23 +01001552 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 priv->flags |= ASYNC_SPD_CUST;
1555 priv->custom_divisor = 240;
Alan Cox669a6db2007-10-18 01:24:24 -07001556 priv->force_baud = 38400;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 priv->force_rtscts = 1;
Ian Abbott8f977e42005-06-20 16:45:42 +01001558} /* ftdi_HE_TIRA1_setup */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559
Tony Lindgrenfa91d432007-05-04 18:23:24 -07001560/*
Harald Welte20734342008-01-01 15:08:35 +01001561 * First port on JTAG adaptors such as Olimex arm-usb-ocd or the FIC/OpenMoko
1562 * Neo1973 Debug Board is reserved for JTAG interface and can be accessed from
1563 * userspace using openocd.
Tony Lindgrenfa91d432007-05-04 18:23:24 -07001564 */
Harald Welte20734342008-01-01 15:08:35 +01001565static int ftdi_jtag_probe(struct usb_serial *serial)
Tony Lindgrenfa91d432007-05-04 18:23:24 -07001566{
1567 struct usb_device *udev = serial->dev;
1568 struct usb_interface *interface = serial->interface;
1569
Alan Cox464cbb22008-07-22 11:11:23 +01001570 dbg("%s", __func__);
Tony Lindgrenfa91d432007-05-04 18:23:24 -07001571
1572 if (interface == udev->actconfig->interface[0]) {
Greg Kroah-Hartmanc197a8d2008-08-18 13:21:04 -07001573 dev_info(&udev->dev,
1574 "Ignoring serial port reserved for JTAG\n");
Tony Lindgrenfa91d432007-05-04 18:23:24 -07001575 return -ENODEV;
1576 }
1577
1578 return 0;
1579}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580
Kevin Vance546d7ee2008-03-01 13:49:59 -05001581/*
1582 * The Matrix Orbital VK204-25-USB has an invalid IN endpoint.
1583 * We have to correct it if we want to read from it.
1584 */
1585static int ftdi_mtxorb_hack_setup(struct usb_serial *serial)
1586{
1587 struct usb_host_endpoint *ep = serial->dev->ep_in[1];
1588 struct usb_endpoint_descriptor *ep_desc = &ep->desc;
1589
1590 if (ep->enabled && ep_desc->wMaxPacketSize == 0) {
Al Virofd05e722008-04-28 07:00:16 +01001591 ep_desc->wMaxPacketSize = cpu_to_le16(0x40);
Greg Kroah-Hartmanc197a8d2008-08-18 13:21:04 -07001592 dev_info(&serial->dev->dev,
1593 "Fixing invalid wMaxPacketSize on read pipe\n");
Kevin Vance546d7ee2008-03-01 13:49:59 -05001594 }
1595
1596 return 0;
1597}
1598
Alan Sternc45d6322009-04-30 10:06:19 -04001599static void ftdi_sio_priv_release(struct kref *k)
1600{
1601 struct ftdi_private *priv = container_of(k, struct ftdi_private, kref);
1602
1603 kfree(priv);
1604}
1605
Jim Radford12bdbe02007-02-28 10:10:50 -08001606static int ftdi_sio_port_remove(struct usb_serial_port *port)
1607{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 struct ftdi_private *priv = usb_get_serial_port_data(port);
1609
Harvey Harrison441b62c2008-03-03 16:08:34 -08001610 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611
Jim Radford12bdbe02007-02-28 10:10:50 -08001612 remove_sysfs_attrs(port);
David Brownell5c09d142006-10-13 15:57:58 -07001613
David Woodhouse80193192009-05-18 13:07:35 +01001614 kref_put(&priv->kref, ftdi_sio_priv_release);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615
Jim Radford12bdbe02007-02-28 10:10:50 -08001616 return 0;
1617}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618
Alan Cox95da3102008-07-22 11:09:07 +01001619static int ftdi_open(struct tty_struct *tty,
1620 struct usb_serial_port *port, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621{ /* ftdi_open */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 struct usb_device *dev = port->serial->dev;
1623 struct ftdi_private *priv = usb_get_serial_port_data(port);
1624 unsigned long flags;
David Brownell5c09d142006-10-13 15:57:58 -07001625
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 int result = 0;
1627 char buf[1]; /* Needed for the usb_control_msg I think */
1628
Harvey Harrison441b62c2008-03-03 16:08:34 -08001629 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630
Ian Abbott22465402006-06-26 12:59:17 +01001631 spin_lock_irqsave(&priv->tx_lock, flags);
1632 priv->tx_bytes = 0;
1633 spin_unlock_irqrestore(&priv->tx_lock, flags);
1634 spin_lock_irqsave(&priv->rx_lock, flags);
1635 priv->rx_bytes = 0;
1636 spin_unlock_irqrestore(&priv->rx_lock, flags);
1637
Alan Cox95da3102008-07-22 11:09:07 +01001638 if (tty)
1639 tty->low_latency = (priv->flags & ASYNC_LOW_LATENCY) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640
Alan Cox557aaa72009-06-11 13:55:34 +01001641 write_latency_timer(port);
1642
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 /* No error checking for this (will get errors later anyway) */
1644 /* See ftdi_sio.h for description of what is reset */
1645 usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
David Brownell5c09d142006-10-13 15:57:58 -07001646 FTDI_SIO_RESET_REQUEST, FTDI_SIO_RESET_REQUEST_TYPE,
1647 FTDI_SIO_RESET_SIO,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 priv->interface, buf, 0, WDR_TIMEOUT);
1649
1650 /* Termios defaults are set by usb_serial_init. We don't change
Nick Andrewc4f01242008-12-05 16:34:46 +00001651 port->tty->termios - this would lose speed settings, etc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 This is same behaviour as serial.c/rs_open() - Kuba */
1653
1654 /* ftdi_set_termios will send usb control messages */
Alan Cox95da3102008-07-22 11:09:07 +01001655 if (tty)
1656 ftdi_set_termios(tty, port, tty->termios);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 /* Not throttled */
1659 spin_lock_irqsave(&priv->rx_lock, flags);
1660 priv->rx_flags &= ~(THROTTLED | ACTUALLY_THROTTLED);
1661 spin_unlock_irqrestore(&priv->rx_lock, flags);
1662
1663 /* Start reading from the device */
Ian Abbott76854ce2005-06-02 10:34:11 +01001664 priv->rx_processed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 usb_fill_bulk_urb(port->read_urb, dev,
Alan Cox464cbb22008-07-22 11:11:23 +01001666 usb_rcvbulkpipe(dev, port->bulk_in_endpointAddress),
1667 port->read_urb->transfer_buffer,
1668 port->read_urb->transfer_buffer_length,
1669 ftdi_read_bulk_callback, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 result = usb_submit_urb(port->read_urb, GFP_KERNEL);
1671 if (result)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07001672 dev_err(&port->dev,
1673 "%s - failed submitting read urb, error %d\n",
1674 __func__, result);
Alan Sternc45d6322009-04-30 10:06:19 -04001675 else
1676 kref_get(&priv->kref);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677
1678 return result;
1679} /* ftdi_open */
1680
1681
Alan Cox335f8512009-06-11 12:26:29 +01001682static void ftdi_dtr_rts(struct usb_serial_port *port, int on)
1683{
1684 struct ftdi_private *priv = usb_get_serial_port_data(port);
1685 char buf[1];
1686
1687 mutex_lock(&port->serial->disc_mutex);
1688 if (!port->serial->disconnected) {
1689 /* Disable flow control */
1690 if (!on && usb_control_msg(port->serial->dev,
1691 usb_sndctrlpipe(port->serial->dev, 0),
1692 FTDI_SIO_SET_FLOW_CTRL_REQUEST,
1693 FTDI_SIO_SET_FLOW_CTRL_REQUEST_TYPE,
1694 0, priv->interface, buf, 0,
1695 WDR_TIMEOUT) < 0) {
1696 dev_err(&port->dev, "error from flowcontrol urb\n");
1697 }
1698 /* drop RTS and DTR */
1699 if (on)
1700 set_mctrl(port, TIOCM_DTR | TIOCM_RTS);
1701 else
1702 clear_mctrl(port, TIOCM_DTR | TIOCM_RTS);
1703 }
1704 mutex_unlock(&port->serial->disc_mutex);
1705}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706
David Brownell5c09d142006-10-13 15:57:58 -07001707/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 * usbserial:__serial_close only calls ftdi_close if the point is open
1709 *
1710 * This only gets called when it is the last close
David Brownell5c09d142006-10-13 15:57:58 -07001711 *
1712 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 */
1714
Alan Cox335f8512009-06-11 12:26:29 +01001715static void ftdi_close(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716{ /* ftdi_close */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 struct ftdi_private *priv = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718
Harvey Harrison441b62c2008-03-03 16:08:34 -08001719 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720
Ian Abbott76854ce2005-06-02 10:34:11 +01001721
1722 /* cancel any scheduled reading */
Alan Sternc45d6322009-04-30 10:06:19 -04001723 cancel_delayed_work_sync(&priv->rx_work);
David Brownell5c09d142006-10-13 15:57:58 -07001724
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 /* shutdown our bulk read */
Mariusz Kozlowski794c9442006-11-08 15:36:25 +01001726 usb_kill_urb(port->read_urb);
Alan Sternc45d6322009-04-30 10:06:19 -04001727 kref_put(&priv->kref, ftdi_sio_priv_release);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728} /* ftdi_close */
1729
1730
David Brownell5c09d142006-10-13 15:57:58 -07001731
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732/* The SIO requires the first byte to have:
1733 * B0 1
1734 * B1 0
1735 * B2..7 length of message excluding byte 0
1736 *
1737 * The new devices do not require this byte
1738 */
Alan Cox95da3102008-07-22 11:09:07 +01001739static int ftdi_write(struct tty_struct *tty, struct usb_serial_port *port,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 const unsigned char *buf, int count)
1741{ /* ftdi_write */
1742 struct ftdi_private *priv = usb_get_serial_port_data(port);
1743 struct urb *urb;
1744 unsigned char *buffer;
1745 int data_offset ; /* will be 1 for the SIO and 0 otherwise */
1746 int status;
1747 int transfer_size;
Ian Abbott22465402006-06-26 12:59:17 +01001748 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749
Harvey Harrison441b62c2008-03-03 16:08:34 -08001750 dbg("%s port %d, %d bytes", __func__, port->number, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751
1752 if (count == 0) {
1753 dbg("write request of 0 bytes");
1754 return 0;
1755 }
Ian Abbott22465402006-06-26 12:59:17 +01001756 spin_lock_irqsave(&priv->tx_lock, flags);
1757 if (priv->tx_outstanding_urbs > URB_UPPER_LIMIT) {
1758 spin_unlock_irqrestore(&priv->tx_lock, flags);
Harvey Harrison441b62c2008-03-03 16:08:34 -08001759 dbg("%s - write limit hit\n", __func__);
Ian Abbott22465402006-06-26 12:59:17 +01001760 return 0;
1761 }
Oliver Neukum62127a52007-03-23 14:30:16 +01001762 priv->tx_outstanding_urbs++;
Ian Abbott22465402006-06-26 12:59:17 +01001763 spin_unlock_irqrestore(&priv->tx_lock, flags);
David Brownell5c09d142006-10-13 15:57:58 -07001764
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 data_offset = priv->write_offset;
Alan Cox464cbb22008-07-22 11:11:23 +01001766 dbg("data_offset set to %d", data_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767
1768 /* Determine total transfer size */
1769 transfer_size = count;
1770 if (data_offset > 0) {
1771 /* Original sio needs control bytes too... */
1772 transfer_size += (data_offset *
Mark Adamson895f28b2009-05-01 11:48:45 +01001773 ((count + (priv->max_packet_size - 1 - data_offset)) /
1774 (priv->max_packet_size - data_offset)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 }
1776
Alan Cox464cbb22008-07-22 11:11:23 +01001777 buffer = kmalloc(transfer_size, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 if (!buffer) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07001779 dev_err(&port->dev,
1780 "%s ran out of kernel memory for urb ...\n", __func__);
Oliver Neukum62127a52007-03-23 14:30:16 +01001781 count = -ENOMEM;
1782 goto error_no_buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 }
1784
1785 urb = usb_alloc_urb(0, GFP_ATOMIC);
1786 if (!urb) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07001787 dev_err(&port->dev, "%s - no more free urbs\n", __func__);
Oliver Neukum62127a52007-03-23 14:30:16 +01001788 count = -ENOMEM;
1789 goto error_no_urb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 }
1791
1792 /* Copy data */
1793 if (data_offset > 0) {
Alan Cox464cbb22008-07-22 11:11:23 +01001794 /* Original sio requires control byte at start of
1795 each packet. */
Mark Adamson895f28b2009-05-01 11:48:45 +01001796 int user_pktsz = priv->max_packet_size - data_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 int todo = count;
1798 unsigned char *first_byte = buffer;
1799 const unsigned char *current_position = buf;
1800
1801 while (todo > 0) {
Alan Cox464cbb22008-07-22 11:11:23 +01001802 if (user_pktsz > todo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 user_pktsz = todo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 /* Write the control byte at the front of the packet*/
David Brownell5c09d142006-10-13 15:57:58 -07001805 *first_byte = 1 | ((user_pktsz) << 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 /* Copy data for packet */
Alan Cox464cbb22008-07-22 11:11:23 +01001807 memcpy(first_byte + data_offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 current_position, user_pktsz);
1809 first_byte += user_pktsz + data_offset;
1810 current_position += user_pktsz;
1811 todo -= user_pktsz;
1812 }
1813 } else {
1814 /* No control byte required. */
1815 /* Copy in the data to send */
Alan Cox464cbb22008-07-22 11:11:23 +01001816 memcpy(buffer, buf, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 }
1818
Alan Cox464cbb22008-07-22 11:11:23 +01001819 usb_serial_debug_data(debug, &port->dev, __func__,
1820 transfer_size, buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821
1822 /* fill the buffer and send it */
David Brownell5c09d142006-10-13 15:57:58 -07001823 usb_fill_bulk_urb(urb, port->serial->dev,
Alan Cox464cbb22008-07-22 11:11:23 +01001824 usb_sndbulkpipe(port->serial->dev,
1825 port->bulk_out_endpointAddress),
1826 buffer, transfer_size,
1827 ftdi_write_bulk_callback, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828
1829 status = usb_submit_urb(urb, GFP_ATOMIC);
1830 if (status) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07001831 dev_err(&port->dev,
1832 "%s - failed submitting write urb, error %d\n",
1833 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 count = status;
Oliver Neukum62127a52007-03-23 14:30:16 +01001835 goto error;
Ian Abbott22465402006-06-26 12:59:17 +01001836 } else {
1837 spin_lock_irqsave(&priv->tx_lock, flags);
Ian Abbott22465402006-06-26 12:59:17 +01001838 priv->tx_outstanding_bytes += count;
1839 priv->tx_bytes += count;
1840 spin_unlock_irqrestore(&priv->tx_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 }
1842
1843 /* we are done with this urb, so let the host driver
1844 * really free it when it is finished with it */
Oliver Neukum62127a52007-03-23 14:30:16 +01001845 usb_free_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846
Harvey Harrison441b62c2008-03-03 16:08:34 -08001847 dbg("%s write returning: %d", __func__, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 return count;
Oliver Neukum62127a52007-03-23 14:30:16 +01001849error:
1850 usb_free_urb(urb);
1851error_no_urb:
Alan Cox464cbb22008-07-22 11:11:23 +01001852 kfree(buffer);
Oliver Neukum62127a52007-03-23 14:30:16 +01001853error_no_buffer:
1854 spin_lock_irqsave(&priv->tx_lock, flags);
1855 priv->tx_outstanding_urbs--;
1856 spin_unlock_irqrestore(&priv->tx_lock, flags);
1857 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858} /* ftdi_write */
1859
1860
1861/* This function may get called when the device is closed */
1862
Alan Cox464cbb22008-07-22 11:11:23 +01001863static void ftdi_write_bulk_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864{
Ian Abbott22465402006-06-26 12:59:17 +01001865 unsigned long flags;
Ming Leicdc97792008-02-24 18:41:47 +08001866 struct usb_serial_port *port = urb->context;
Ian Abbott22465402006-06-26 12:59:17 +01001867 struct ftdi_private *priv;
1868 int data_offset; /* will be 1 for the SIO and 0 otherwise */
1869 unsigned long countback;
Greg Kroah-Hartman0fb0aa12007-06-15 15:44:13 -07001870 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871
1872 /* free up the transfer buffer, as usb_free_urb() does not do this */
Alan Cox464cbb22008-07-22 11:11:23 +01001873 kfree(urb->transfer_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874
Harvey Harrison441b62c2008-03-03 16:08:34 -08001875 dbg("%s - port %d", __func__, port->number);
David Brownell5c09d142006-10-13 15:57:58 -07001876
Ian Abbott22465402006-06-26 12:59:17 +01001877 priv = usb_get_serial_port_data(port);
1878 if (!priv) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001879 dbg("%s - bad port private data pointer - exiting", __func__);
Ian Abbott22465402006-06-26 12:59:17 +01001880 return;
1881 }
1882 /* account for transferred data */
1883 countback = urb->actual_length;
1884 data_offset = priv->write_offset;
1885 if (data_offset > 0) {
1886 /* Subtract the control bytes */
Mark Adamson895f28b2009-05-01 11:48:45 +01001887 countback -= (data_offset * DIV_ROUND_UP(countback, priv->max_packet_size));
Ian Abbott22465402006-06-26 12:59:17 +01001888 }
1889 spin_lock_irqsave(&priv->tx_lock, flags);
1890 --priv->tx_outstanding_urbs;
1891 priv->tx_outstanding_bytes -= countback;
1892 spin_unlock_irqrestore(&priv->tx_lock, flags);
1893
Jason Wessel87c1edd2009-05-11 15:24:08 -05001894 if (status) {
1895 dbg("nonzero write bulk status received: %d", status);
1896 return;
1897 }
1898
Pete Zaitcevcf2c7482006-05-22 21:58:49 -07001899 usb_serial_port_softint(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900} /* ftdi_write_bulk_callback */
1901
1902
Alan Cox95da3102008-07-22 11:09:07 +01001903static int ftdi_write_room(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904{
Alan Cox95da3102008-07-22 11:09:07 +01001905 struct usb_serial_port *port = tty->driver_data;
Ian Abbott22465402006-06-26 12:59:17 +01001906 struct ftdi_private *priv = usb_get_serial_port_data(port);
1907 int room;
1908 unsigned long flags;
1909
Harvey Harrison441b62c2008-03-03 16:08:34 -08001910 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911
Ian Abbott22465402006-06-26 12:59:17 +01001912 spin_lock_irqsave(&priv->tx_lock, flags);
1913 if (priv->tx_outstanding_urbs < URB_UPPER_LIMIT) {
1914 /*
1915 * We really can take anything the user throws at us
1916 * but let's pick a nice big number to tell the tty
1917 * layer that we have lots of free space
1918 */
1919 room = 2048;
1920 } else {
1921 room = 0;
1922 }
1923 spin_unlock_irqrestore(&priv->tx_lock, flags);
1924 return room;
Alan Cox95da3102008-07-22 11:09:07 +01001925}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926
Alan Cox95da3102008-07-22 11:09:07 +01001927static int ftdi_chars_in_buffer(struct tty_struct *tty)
1928{
1929 struct usb_serial_port *port = tty->driver_data;
Ian Abbott22465402006-06-26 12:59:17 +01001930 struct ftdi_private *priv = usb_get_serial_port_data(port);
1931 int buffered;
1932 unsigned long flags;
1933
Harvey Harrison441b62c2008-03-03 16:08:34 -08001934 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935
Ian Abbott22465402006-06-26 12:59:17 +01001936 spin_lock_irqsave(&priv->tx_lock, flags);
1937 buffered = (int)priv->tx_outstanding_bytes;
1938 spin_unlock_irqrestore(&priv->tx_lock, flags);
1939 if (buffered < 0) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07001940 dev_err(&port->dev, "%s outstanding tx bytes is negative!\n",
1941 __func__);
Ian Abbott22465402006-06-26 12:59:17 +01001942 buffered = 0;
1943 }
1944 return buffered;
Alan Cox95da3102008-07-22 11:09:07 +01001945}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946
Alan Cox95da3102008-07-22 11:09:07 +01001947static void ftdi_read_bulk_callback(struct urb *urb)
1948{
Ming Leicdc97792008-02-24 18:41:47 +08001949 struct usb_serial_port *port = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 struct tty_struct *tty;
1951 struct ftdi_private *priv;
Ian Abbott22465402006-06-26 12:59:17 +01001952 unsigned long countread;
1953 unsigned long flags;
Greg Kroah-Hartman0fb0aa12007-06-15 15:44:13 -07001954 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955
1956 if (urb->number_of_packets > 0) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07001957 dev_err(&port->dev, "%s transfer_buffer_length %d "
1958 "actual_length %d number of packets %d\n", __func__,
1959 urb->transfer_buffer_length,
1960 urb->actual_length, urb->number_of_packets);
1961 dev_err(&port->dev, "%s transfer_flags %x\n", __func__,
1962 urb->transfer_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 }
1964
Harvey Harrison441b62c2008-03-03 16:08:34 -08001965 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966
Alan Cox95da3102008-07-22 11:09:07 +01001967 if (port->port.count <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 return;
1969
Alan Cox4a90f092008-10-13 10:39:46 +01001970 tty = tty_port_tty_get(&port->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 if (!tty) {
Alan Cox464cbb22008-07-22 11:11:23 +01001972 dbg("%s - bad tty pointer - exiting", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 return;
1974 }
1975
1976 priv = usb_get_serial_port_data(port);
1977 if (!priv) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001978 dbg("%s - bad port private data pointer - exiting", __func__);
Alan Cox4a90f092008-10-13 10:39:46 +01001979 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 }
1981
Alan Cox464cbb22008-07-22 11:11:23 +01001982 if (urb != port->read_urb)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07001983 dev_err(&port->dev, "%s - Not my urb!\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984
Greg Kroah-Hartman0fb0aa12007-06-15 15:44:13 -07001985 if (status) {
Alan Cox464cbb22008-07-22 11:11:23 +01001986 /* This will happen at close every time so it is a dbg not an
1987 err */
1988 dbg("(this is ok on close) nonzero read bulk status received: %d", status);
Alan Cox4a90f092008-10-13 10:39:46 +01001989 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 }
1991
Ian Abbott22465402006-06-26 12:59:17 +01001992 /* count data bytes, but not status bytes */
1993 countread = urb->actual_length;
Mark Adamson895f28b2009-05-01 11:48:45 +01001994 countread -= 2 * DIV_ROUND_UP(countread, priv->max_packet_size);
Ian Abbott22465402006-06-26 12:59:17 +01001995 spin_lock_irqsave(&priv->rx_lock, flags);
1996 priv->rx_bytes += countread;
1997 spin_unlock_irqrestore(&priv->rx_lock, flags);
1998
David Howellsc4028952006-11-22 14:57:56 +00001999 ftdi_process_read(&priv->rx_work.work);
Alan Cox4a90f092008-10-13 10:39:46 +01002000out:
2001 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002} /* ftdi_read_bulk_callback */
2003
2004
Alan Cox464cbb22008-07-22 11:11:23 +01002005static void ftdi_process_read(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006{ /* ftdi_process_read */
David Howellsc4028952006-11-22 14:57:56 +00002007 struct ftdi_private *priv =
2008 container_of(work, struct ftdi_private, rx_work.work);
2009 struct usb_serial_port *port = priv->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 struct urb *urb;
2011 struct tty_struct *tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 char error_flag;
David Brownell5c09d142006-10-13 15:57:58 -07002013 unsigned char *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014
2015 int i;
2016 int result;
2017 int need_flip;
2018 int packet_offset;
Ian Abbott76854ce2005-06-02 10:34:11 +01002019 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020
Harvey Harrison441b62c2008-03-03 16:08:34 -08002021 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022
Alan Cox95da3102008-07-22 11:09:07 +01002023 if (port->port.count <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 return;
2025
Alan Cox4a90f092008-10-13 10:39:46 +01002026 tty = tty_port_tty_get(&port->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 if (!tty) {
Alan Cox464cbb22008-07-22 11:11:23 +01002028 dbg("%s - bad tty pointer - exiting", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 return;
2030 }
2031
2032 priv = usb_get_serial_port_data(port);
2033 if (!priv) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08002034 dbg("%s - bad port private data pointer - exiting", __func__);
Alan Cox4a90f092008-10-13 10:39:46 +01002035 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 }
2037
2038 urb = port->read_urb;
2039 if (!urb) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08002040 dbg("%s - bad read_urb pointer - exiting", __func__);
Alan Cox4a90f092008-10-13 10:39:46 +01002041 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 }
2043
2044 data = urb->transfer_buffer;
2045
Ian Abbott76854ce2005-06-02 10:34:11 +01002046 if (priv->rx_processed) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08002047 dbg("%s - already processed: %d bytes, %d remain", __func__,
Ian Abbott76854ce2005-06-02 10:34:11 +01002048 priv->rx_processed,
2049 urb->actual_length - priv->rx_processed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 } else {
Ian Abbott76854ce2005-06-02 10:34:11 +01002051 /* The first two bytes of every read packet are status */
Alan Cox464cbb22008-07-22 11:11:23 +01002052 if (urb->actual_length > 2)
2053 usb_serial_debug_data(debug, &port->dev, __func__,
2054 urb->actual_length, data);
2055 else
2056 dbg("Status only: %03oo %03oo", data[0], data[1]);
Ian Abbott76854ce2005-06-02 10:34:11 +01002057 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058
2059
2060 /* TO DO -- check for hung up line and handle appropriately: */
2061 /* send hangup */
2062 /* See acm.c - you do a tty_hangup - eg tty_hangup(tty) */
2063 /* if CD is dropped and the line is not CLOCAL then we should hangup */
2064
2065 need_flip = 0;
Alan Cox464cbb22008-07-22 11:11:23 +01002066 for (packet_offset = priv->rx_processed;
Mark Adamson895f28b2009-05-01 11:48:45 +01002067 packet_offset < urb->actual_length; packet_offset += priv->max_packet_size) {
Ian Abbott76854ce2005-06-02 10:34:11 +01002068 int length;
2069
Alan Cox464cbb22008-07-22 11:11:23 +01002070 /* Compare new line status to the old one, signal if different/
2071 N.B. packet may be processed more than once, but differences
2072 are only processed once. */
Julia Lawall00185a62008-12-21 16:41:36 +01002073 char new_status = data[packet_offset + 0] &
2074 FTDI_STATUS_B0_MASK;
2075 if (new_status != priv->prev_status) {
2076 priv->diff_status |=
2077 new_status ^ priv->prev_status;
2078 wake_up_interruptible(&priv->delta_msr_wait);
2079 priv->prev_status = new_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 }
2081
Mark Adamson895f28b2009-05-01 11:48:45 +01002082 length = min_t(u32, priv->max_packet_size, urb->actual_length-packet_offset)-2;
Ian Abbott76854ce2005-06-02 10:34:11 +01002083 if (length < 0) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07002084 dev_err(&port->dev, "%s - bad packet length: %d\n",
2085 __func__, length+2);
Ian Abbott76854ce2005-06-02 10:34:11 +01002086 length = 0;
2087 }
2088
Ian Abbott76854ce2005-06-02 10:34:11 +01002089 if (priv->rx_flags & THROTTLED) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08002090 dbg("%s - throttled", __func__);
Ian Abbott76854ce2005-06-02 10:34:11 +01002091 break;
2092 }
Alan Cox33f0f882006-01-09 20:54:13 -08002093 if (tty_buffer_request_room(tty, length) < length) {
Alan Cox464cbb22008-07-22 11:11:23 +01002094 /* break out & wait for throttling/unthrottling to
2095 happen */
Harvey Harrison441b62c2008-03-03 16:08:34 -08002096 dbg("%s - receive room low", __func__);
Ian Abbott76854ce2005-06-02 10:34:11 +01002097 break;
2098 }
2099
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 /* Handle errors and break */
2101 error_flag = TTY_NORMAL;
Alan Cox464cbb22008-07-22 11:11:23 +01002102 /* Although the device uses a bitmask and hence can have
2103 multiple errors on a packet - the order here sets the
2104 priority the error is returned to the tty layer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105
Alan Cox464cbb22008-07-22 11:11:23 +01002106 if (data[packet_offset+1] & FTDI_RS_OE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107 error_flag = TTY_OVERRUN;
2108 dbg("OVERRRUN error");
2109 }
Alan Cox464cbb22008-07-22 11:11:23 +01002110 if (data[packet_offset+1] & FTDI_RS_BI) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 error_flag = TTY_BREAK;
2112 dbg("BREAK received");
Jason Wessel72fda3c2009-05-11 15:24:10 -05002113 usb_serial_handle_break(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 }
Alan Cox464cbb22008-07-22 11:11:23 +01002115 if (data[packet_offset+1] & FTDI_RS_PE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 error_flag = TTY_PARITY;
2117 dbg("PARITY error");
2118 }
Alan Cox464cbb22008-07-22 11:11:23 +01002119 if (data[packet_offset+1] & FTDI_RS_FE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 error_flag = TTY_FRAME;
2121 dbg("FRAMING error");
2122 }
Ian Abbott76854ce2005-06-02 10:34:11 +01002123 if (length > 0) {
2124 for (i = 2; i < length+2; i++) {
David Brownell5c09d142006-10-13 15:57:58 -07002125 /* Note that the error flag is duplicated for
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 every character received since we don't know
2127 which character it applied to */
Alan Cox24a15a62009-07-09 13:36:22 +01002128 if (!usb_serial_handle_sysrq_char(tty, port,
Jason Wessel72fda3c2009-05-11 15:24:10 -05002129 data[packet_offset + i]))
2130 tty_insert_flip_char(tty,
2131 data[packet_offset + i],
2132 error_flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 }
2134 need_flip = 1;
2135 }
2136
2137#ifdef NOT_CORRECT_BUT_KEEPING_IT_FOR_NOW
2138 /* if a parity error is detected you get status packets forever
2139 until a character is sent without a parity error.
Alan Cox464cbb22008-07-22 11:11:23 +01002140 This doesn't work well since the application receives a
2141 never ending stream of bad data - even though new data
2142 hasn't been sent. Therefore I (bill) have taken this out.
David Brownell5c09d142006-10-13 15:57:58 -07002143 However - this might make sense for framing errors and so on
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 so I am leaving the code in for now.
2145 */
2146 else {
Alan Cox464cbb22008-07-22 11:11:23 +01002147 if (error_flag != TTY_NORMAL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 dbg("error_flag is not normal");
Alan Cox464cbb22008-07-22 11:11:23 +01002149 /* In this case it is just status - if that is
2150 an error send a bad character */
2151 if (tty->flip.count >= TTY_FLIPBUF_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152 tty_flip_buffer_push(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153 tty_insert_flip_char(tty, 0xff, error_flag);
2154 need_flip = 1;
2155 }
2156 }
2157#endif
2158 } /* "for(packet_offset=0..." */
2159
2160 /* Low latency */
Alan Cox464cbb22008-07-22 11:11:23 +01002161 if (need_flip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162 tty_flip_buffer_push(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163
Ian Abbott76854ce2005-06-02 10:34:11 +01002164 if (packet_offset < urb->actual_length) {
2165 /* not completely processed - record progress */
2166 priv->rx_processed = packet_offset;
2167 dbg("%s - incomplete, %d bytes processed, %d remain",
Harvey Harrison441b62c2008-03-03 16:08:34 -08002168 __func__, packet_offset,
Ian Abbott76854ce2005-06-02 10:34:11 +01002169 urb->actual_length - packet_offset);
2170 /* check if we were throttled while processing */
2171 spin_lock_irqsave(&priv->rx_lock, flags);
2172 if (priv->rx_flags & THROTTLED) {
2173 priv->rx_flags |= ACTUALLY_THROTTLED;
2174 spin_unlock_irqrestore(&priv->rx_lock, flags);
2175 dbg("%s - deferring remainder until unthrottled",
Harvey Harrison441b62c2008-03-03 16:08:34 -08002176 __func__);
Jim Parisa9fec712009-01-15 13:31:07 +00002177 goto out;
Ian Abbott76854ce2005-06-02 10:34:11 +01002178 }
2179 spin_unlock_irqrestore(&priv->rx_lock, flags);
2180 /* if the port is closed stop trying to read */
Alan Cox464cbb22008-07-22 11:11:23 +01002181 if (port->port.count > 0)
Ian Abbott76854ce2005-06-02 10:34:11 +01002182 /* delay processing of remainder */
2183 schedule_delayed_work(&priv->rx_work, 1);
Alan Cox464cbb22008-07-22 11:11:23 +01002184 else
Harvey Harrison441b62c2008-03-03 16:08:34 -08002185 dbg("%s - port is closed", __func__);
Alan Cox4a90f092008-10-13 10:39:46 +01002186 goto out;
Ian Abbott76854ce2005-06-02 10:34:11 +01002187 }
2188
2189 /* urb is completely processed */
2190 priv->rx_processed = 0;
2191
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192 /* if the port is closed stop trying to read */
Alan Cox464cbb22008-07-22 11:11:23 +01002193 if (port->port.count > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 /* Continue trying to always read */
David Brownell5c09d142006-10-13 15:57:58 -07002195 usb_fill_bulk_urb(port->read_urb, port->serial->dev,
Alan Cox464cbb22008-07-22 11:11:23 +01002196 usb_rcvbulkpipe(port->serial->dev,
2197 port->bulk_in_endpointAddress),
2198 port->read_urb->transfer_buffer,
2199 port->read_urb->transfer_buffer_length,
2200 ftdi_read_bulk_callback, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201
2202 result = usb_submit_urb(port->read_urb, GFP_ATOMIC);
2203 if (result)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07002204 dev_err(&port->dev,
2205 "%s - failed resubmitting read urb, error %d\n",
2206 __func__, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 }
Alan Cox4a90f092008-10-13 10:39:46 +01002208out:
2209 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210} /* ftdi_process_read */
2211
2212
Alan Cox95da3102008-07-22 11:09:07 +01002213static void ftdi_break_ctl(struct tty_struct *tty, int break_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214{
Alan Cox95da3102008-07-22 11:09:07 +01002215 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 struct ftdi_private *priv = usb_get_serial_port_data(port);
David Brownell5c09d142006-10-13 15:57:58 -07002217 __u16 urb_value = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218 char buf[1];
David Brownell5c09d142006-10-13 15:57:58 -07002219
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220 /* break_state = -1 to turn on break, and 0 to turn off break */
2221 /* see drivers/char/tty_io.c to see it used */
2222 /* last_set_data_urb_value NEVER has the break bit set in it */
2223
Alan Cox464cbb22008-07-22 11:11:23 +01002224 if (break_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 urb_value = priv->last_set_data_urb_value | FTDI_SIO_SET_BREAK;
Alan Cox464cbb22008-07-22 11:11:23 +01002226 else
David Brownell5c09d142006-10-13 15:57:58 -07002227 urb_value = priv->last_set_data_urb_value;
Alan Cox464cbb22008-07-22 11:11:23 +01002228
2229 if (usb_control_msg(port->serial->dev,
2230 usb_sndctrlpipe(port->serial->dev, 0),
2231 FTDI_SIO_SET_DATA_REQUEST,
2232 FTDI_SIO_SET_DATA_REQUEST_TYPE,
2233 urb_value , priv->interface,
2234 buf, 0, WDR_TIMEOUT) < 0) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07002235 dev_err(&port->dev, "%s FAILED to enable/disable break state "
2236 "(state was %d)\n", __func__, break_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 }
2238
Alan Cox464cbb22008-07-22 11:11:23 +01002239 dbg("%s break state is %d - urb is %d", __func__,
2240 break_state, urb_value);
David Brownell5c09d142006-10-13 15:57:58 -07002241
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242}
2243
2244
2245/* old_termios contains the original termios settings and tty->termios contains
2246 * the new setting to be used
2247 * WARNING: set_termios calls this with old_termios in kernel space
2248 */
2249
Alan Cox95da3102008-07-22 11:09:07 +01002250static void ftdi_set_termios(struct tty_struct *tty,
2251 struct usb_serial_port *port, struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252{ /* ftdi_termios */
2253 struct usb_device *dev = port->serial->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254 struct ftdi_private *priv = usb_get_serial_port_data(port);
Alan Cox95da3102008-07-22 11:09:07 +01002255 struct ktermios *termios = tty->termios;
Alan Cox669a6db2007-10-18 01:24:24 -07002256 unsigned int cflag = termios->c_cflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257 __u16 urb_value; /* will hold the new flags */
2258 char buf[1]; /* Perhaps I should dynamically alloc this? */
David Brownell5c09d142006-10-13 15:57:58 -07002259
Alan Cox464cbb22008-07-22 11:11:23 +01002260 /* Added for xon/xoff support */
Alan Cox669a6db2007-10-18 01:24:24 -07002261 unsigned int iflag = termios->c_iflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262 unsigned char vstop;
2263 unsigned char vstart;
David Brownell5c09d142006-10-13 15:57:58 -07002264
Harvey Harrison441b62c2008-03-03 16:08:34 -08002265 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266
Alan Cox464cbb22008-07-22 11:11:23 +01002267 /* Force baud rate if this device requires it, unless it is set to
2268 B0. */
Alan Cox669a6db2007-10-18 01:24:24 -07002269 if (priv->force_baud && ((termios->c_cflag & CBAUD) != B0)) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08002270 dbg("%s: forcing baud rate for this device", __func__);
Alan Cox95da3102008-07-22 11:09:07 +01002271 tty_encode_baud_rate(tty, priv->force_baud,
Andrew Mortonbd5e47c2007-10-18 01:24:25 -07002272 priv->force_baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273 }
2274
2275 /* Force RTS-CTS if this device requires it. */
2276 if (priv->force_rtscts) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08002277 dbg("%s: forcing rtscts for this device", __func__);
Alan Cox669a6db2007-10-18 01:24:24 -07002278 termios->c_cflag |= CRTSCTS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279 }
2280
Alan Cox669a6db2007-10-18 01:24:24 -07002281 cflag = termios->c_cflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282
David Brownell5c09d142006-10-13 15:57:58 -07002283 /* FIXME -For this cut I don't care if the line is really changing or
2284 not - so just do the change regardless - should be able to
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285 compare old_termios and tty->termios */
David Brownell5c09d142006-10-13 15:57:58 -07002286 /* NOTE These routines can get interrupted by
Alan Cox464cbb22008-07-22 11:11:23 +01002287 ftdi_sio_read_bulk_callback - need to examine what this means -
2288 don't see any problems yet */
David Brownell5c09d142006-10-13 15:57:58 -07002289
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290 /* Set number of data bits, parity, stop bits */
David Brownell5c09d142006-10-13 15:57:58 -07002291
Alan Cox669a6db2007-10-18 01:24:24 -07002292 termios->c_cflag &= ~CMSPAR;
2293
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 urb_value = 0;
2295 urb_value |= (cflag & CSTOPB ? FTDI_SIO_SET_DATA_STOP_BITS_2 :
2296 FTDI_SIO_SET_DATA_STOP_BITS_1);
David Brownell5c09d142006-10-13 15:57:58 -07002297 urb_value |= (cflag & PARENB ?
2298 (cflag & PARODD ? FTDI_SIO_SET_DATA_PARITY_ODD :
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 FTDI_SIO_SET_DATA_PARITY_EVEN) :
2300 FTDI_SIO_SET_DATA_PARITY_NONE);
2301 if (cflag & CSIZE) {
2302 switch (cflag & CSIZE) {
2303 case CS5: urb_value |= 5; dbg("Setting CS5"); break;
2304 case CS6: urb_value |= 6; dbg("Setting CS6"); break;
2305 case CS7: urb_value |= 7; dbg("Setting CS7"); break;
2306 case CS8: urb_value |= 8; dbg("Setting CS8"); break;
2307 default:
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07002308 dev_err(&port->dev, "CSIZE was set but not CS5-CS8\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309 }
2310 }
2311
Alan Cox464cbb22008-07-22 11:11:23 +01002312 /* This is needed by the break command since it uses the same command
2313 - but is or'ed with this value */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314 priv->last_set_data_urb_value = urb_value;
David Brownell5c09d142006-10-13 15:57:58 -07002315
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316 if (usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
David Brownell5c09d142006-10-13 15:57:58 -07002317 FTDI_SIO_SET_DATA_REQUEST,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318 FTDI_SIO_SET_DATA_REQUEST_TYPE,
2319 urb_value , priv->interface,
Ian Abbott279e1542005-07-29 12:16:52 -07002320 buf, 0, WDR_SHORT_TIMEOUT) < 0) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07002321 dev_err(&port->dev, "%s FAILED to set "
2322 "databits/stopbits/parity\n", __func__);
David Brownell5c09d142006-10-13 15:57:58 -07002323 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324
2325 /* Now do the baudrate */
Alan Cox464cbb22008-07-22 11:11:23 +01002326 if ((cflag & CBAUD) == B0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327 /* Disable flow control */
2328 if (usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
David Brownell5c09d142006-10-13 15:57:58 -07002329 FTDI_SIO_SET_FLOW_CTRL_REQUEST,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330 FTDI_SIO_SET_FLOW_CTRL_REQUEST_TYPE,
David Brownell5c09d142006-10-13 15:57:58 -07002331 0, priv->interface,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 buf, 0, WDR_TIMEOUT) < 0) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07002333 dev_err(&port->dev,
2334 "%s error from disable flowcontrol urb\n",
2335 __func__);
David Brownell5c09d142006-10-13 15:57:58 -07002336 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337 /* Drop RTS and DTR */
Ian Abbott74ede0f2005-07-29 12:16:41 -07002338 clear_mctrl(port, TIOCM_DTR | TIOCM_RTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339 } else {
2340 /* set the baudrate determined before */
Alan Cox464cbb22008-07-22 11:11:23 +01002341 if (change_speed(tty, port))
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07002342 dev_err(&port->dev, "%s urb failed to set baudrate\n",
2343 __func__);
Peter Favrholdt72a755f2005-09-22 00:48:49 -07002344 /* Ensure RTS and DTR are raised when baudrate changed from 0 */
Alan Cox464cbb22008-07-22 11:11:23 +01002345 if (!old_termios || (old_termios->c_cflag & CBAUD) == B0)
Peter Favrholdt72a755f2005-09-22 00:48:49 -07002346 set_mctrl(port, TIOCM_DTR | TIOCM_RTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347 }
2348
2349 /* Set flow control */
2350 /* Note device also supports DTR/CD (ugh) and Xon/Xoff in hardware */
2351 if (cflag & CRTSCTS) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08002352 dbg("%s Setting to CRTSCTS flow control", __func__);
David Brownell5c09d142006-10-13 15:57:58 -07002353 if (usb_control_msg(dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354 usb_sndctrlpipe(dev, 0),
David Brownell5c09d142006-10-13 15:57:58 -07002355 FTDI_SIO_SET_FLOW_CTRL_REQUEST,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356 FTDI_SIO_SET_FLOW_CTRL_REQUEST_TYPE,
2357 0 , (FTDI_SIO_RTS_CTS_HS | priv->interface),
2358 buf, 0, WDR_TIMEOUT) < 0) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07002359 dev_err(&port->dev,
2360 "urb failed to set to rts/cts flow control\n");
David Brownell5c09d142006-10-13 15:57:58 -07002361 }
2362
2363 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364 /*
2365 * Xon/Xoff code
2366 *
Alan Cox464cbb22008-07-22 11:11:23 +01002367 * Check the IXOFF status in the iflag component of the
2368 * termios structure. If IXOFF is not set, the pre-xon/xoff
2369 * code is executed.
2370 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371 if (iflag & IXOFF) {
Alan Cox464cbb22008-07-22 11:11:23 +01002372 dbg("%s request to enable xonxoff iflag=%04x",
2373 __func__, iflag);
2374 /* Try to enable the XON/XOFF on the ftdi_sio
2375 * Set the vstart and vstop -- could have been done up
2376 * above where a lot of other dereferencing is done but
2377 * that would be very inefficient as vstart and vstop
2378 * are not always needed.
2379 */
Alan Cox669a6db2007-10-18 01:24:24 -07002380 vstart = termios->c_cc[VSTART];
2381 vstop = termios->c_cc[VSTOP];
Alan Cox464cbb22008-07-22 11:11:23 +01002382 urb_value = (vstop << 8) | (vstart);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383
2384 if (usb_control_msg(dev,
2385 usb_sndctrlpipe(dev, 0),
2386 FTDI_SIO_SET_FLOW_CTRL_REQUEST,
2387 FTDI_SIO_SET_FLOW_CTRL_REQUEST_TYPE,
2388 urb_value , (FTDI_SIO_XON_XOFF_HS
2389 | priv->interface),
2390 buf, 0, WDR_TIMEOUT) < 0) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07002391 dev_err(&port->dev, "urb failed to set to "
2392 "xon/xoff flow control\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393 }
2394 } else {
Alan Cox464cbb22008-07-22 11:11:23 +01002395 /* else clause to only run if cflag ! CRTSCTS and iflag
2396 * ! XOFF. CHECKME Assuming XON/XOFF handled by tty
2397 * stack - not by device */
Harvey Harrison441b62c2008-03-03 16:08:34 -08002398 dbg("%s Turning off hardware flow control", __func__);
David Brownell5c09d142006-10-13 15:57:58 -07002399 if (usb_control_msg(dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400 usb_sndctrlpipe(dev, 0),
David Brownell5c09d142006-10-13 15:57:58 -07002401 FTDI_SIO_SET_FLOW_CTRL_REQUEST,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402 FTDI_SIO_SET_FLOW_CTRL_REQUEST_TYPE,
David Brownell5c09d142006-10-13 15:57:58 -07002403 0, priv->interface,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404 buf, 0, WDR_TIMEOUT) < 0) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07002405 dev_err(&port->dev,
2406 "urb failed to clear flow control\n");
David Brownell5c09d142006-10-13 15:57:58 -07002407 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408 }
David Brownell5c09d142006-10-13 15:57:58 -07002409
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410 }
2411 return;
Alan Cox95da3102008-07-22 11:09:07 +01002412}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413
Alan Cox95da3102008-07-22 11:09:07 +01002414static int ftdi_tiocmget(struct tty_struct *tty, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415{
Alan Cox95da3102008-07-22 11:09:07 +01002416 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417 struct ftdi_private *priv = usb_get_serial_port_data(port);
2418 unsigned char buf[2];
2419 int ret;
2420
Harvey Harrison441b62c2008-03-03 16:08:34 -08002421 dbg("%s TIOCMGET", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422 switch (priv->chip_type) {
2423 case SIO:
2424 /* Request the status from the device */
Alan Cox464cbb22008-07-22 11:11:23 +01002425 ret = usb_control_msg(port->serial->dev,
2426 usb_rcvctrlpipe(port->serial->dev, 0),
2427 FTDI_SIO_GET_MODEM_STATUS_REQUEST,
2428 FTDI_SIO_GET_MODEM_STATUS_REQUEST_TYPE,
2429 0, 0,
2430 buf, 1, WDR_TIMEOUT);
David Brownell5d1ca6c2009-02-06 02:39:11 -08002431 if (ret < 0)
Alan Cox464cbb22008-07-22 11:11:23 +01002432 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433 break;
2434 case FT8U232AM:
2435 case FT232BM:
2436 case FT2232C:
Andrew M. Bishoped6e5282007-08-21 19:08:56 +01002437 case FT232RL:
Mark Adamson094c2e62009-04-09 15:03:09 +01002438 case FT2232H:
2439 case FT4232H:
Alan Cox464cbb22008-07-22 11:11:23 +01002440 /* the 8U232AM returns a two byte value (the sio is a 1 byte
2441 value) - in the same format as the data returned from the in
2442 point */
2443 ret = usb_control_msg(port->serial->dev,
2444 usb_rcvctrlpipe(port->serial->dev, 0),
2445 FTDI_SIO_GET_MODEM_STATUS_REQUEST,
2446 FTDI_SIO_GET_MODEM_STATUS_REQUEST_TYPE,
2447 0, priv->interface,
2448 buf, 2, WDR_TIMEOUT);
David Brownell5d1ca6c2009-02-06 02:39:11 -08002449 if (ret < 0)
Alan Cox464cbb22008-07-22 11:11:23 +01002450 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451 break;
2452 default:
2453 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454 }
David Brownell5c09d142006-10-13 15:57:58 -07002455
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456 return (buf[0] & FTDI_SIO_DSR_MASK ? TIOCM_DSR : 0) |
2457 (buf[0] & FTDI_SIO_CTS_MASK ? TIOCM_CTS : 0) |
2458 (buf[0] & FTDI_SIO_RI_MASK ? TIOCM_RI : 0) |
2459 (buf[0] & FTDI_SIO_RLSD_MASK ? TIOCM_CD : 0) |
David Brownell5c09d142006-10-13 15:57:58 -07002460 priv->last_dtr_rts;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461}
2462
Alan Cox464cbb22008-07-22 11:11:23 +01002463static int ftdi_tiocmset(struct tty_struct *tty, struct file *file,
Alan Cox95da3102008-07-22 11:09:07 +01002464 unsigned int set, unsigned int clear)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465{
Alan Cox95da3102008-07-22 11:09:07 +01002466 struct usb_serial_port *port = tty->driver_data;
Harvey Harrison441b62c2008-03-03 16:08:34 -08002467 dbg("%s TIOCMSET", __func__);
Ian Abbott74ede0f2005-07-29 12:16:41 -07002468 return update_mctrl(port, set, clear);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469}
2470
2471
Alan Cox464cbb22008-07-22 11:11:23 +01002472static int ftdi_ioctl(struct tty_struct *tty, struct file *file,
2473 unsigned int cmd, unsigned long arg)
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
Harvey Harrison441b62c2008-03-03 16:08:34 -08002478 dbg("%s cmd 0x%04x", __func__, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479
2480 /* Based on code from acm.c and others */
2481 switch (cmd) {
2482
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483 case TIOCGSERIAL: /* gets serial port data */
Alan Cox464cbb22008-07-22 11:11:23 +01002484 return get_serial_info(port,
2485 (struct serial_struct __user *) arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486
2487 case TIOCSSERIAL: /* sets serial port data */
Alan Cox464cbb22008-07-22 11:11:23 +01002488 return set_serial_info(tty, port,
2489 (struct serial_struct __user *) arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490
2491 /*
2492 * Wait for any of the 4 modem inputs (DCD,RI,DSR,CTS) to change
2493 * - mask passed in arg for lines of interest
2494 * (use |'ed TIOCM_RNG/DSR/CD/CTS for masking)
2495 * Caller should use TIOCGICOUNT to see which one it was.
2496 *
2497 * This code is borrowed from linux/drivers/char/serial.c
2498 */
2499 case TIOCMIWAIT:
2500 while (priv != NULL) {
2501 interruptible_sleep_on(&priv->delta_msr_wait);
2502 /* see if a signal did it */
2503 if (signal_pending(current))
2504 return -ERESTARTSYS;
2505 else {
2506 char diff = priv->diff_status;
2507
Alan Cox464cbb22008-07-22 11:11:23 +01002508 if (diff == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509 return -EIO; /* no change => error */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510
2511 /* Consume all events */
2512 priv->diff_status = 0;
2513
Alan Cox464cbb22008-07-22 11:11:23 +01002514 /* Return 0 if caller wanted to know about
2515 these bits */
2516 if (((arg & TIOCM_RNG) && (diff & FTDI_RS0_RI)) ||
2517 ((arg & TIOCM_DSR) && (diff & FTDI_RS0_DSR)) ||
2518 ((arg & TIOCM_CD) && (diff & FTDI_RS0_RLSD)) ||
2519 ((arg & TIOCM_CTS) && (diff & FTDI_RS0_CTS))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520 return 0;
2521 }
2522 /*
Alan Cox464cbb22008-07-22 11:11:23 +01002523 * Otherwise caller can't care less about what
2524 * happened,and so we continue to wait for more
2525 * events.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526 */
2527 }
2528 }
Alan Cox95da3102008-07-22 11:09:07 +01002529 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530 default:
2531 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532 }
Alan Cox464cbb22008-07-22 11:11:23 +01002533 /* This is not necessarily an error - turns out the higher layers
2534 * will do some ioctls themselves (see comment above)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535 */
Harvey Harrison441b62c2008-03-03 16:08:34 -08002536 dbg("%s arg not supported - it was 0x%04x - check /usr/include/asm/ioctls.h", __func__, cmd);
Alan Cox95da3102008-07-22 11:09:07 +01002537 return -ENOIOCTLCMD;
2538}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539
Alan Cox95da3102008-07-22 11:09:07 +01002540static void ftdi_throttle(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541{
Alan Cox95da3102008-07-22 11:09:07 +01002542 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543 struct ftdi_private *priv = usb_get_serial_port_data(port);
2544 unsigned long flags;
2545
Harvey Harrison441b62c2008-03-03 16:08:34 -08002546 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547
2548 spin_lock_irqsave(&priv->rx_lock, flags);
2549 priv->rx_flags |= THROTTLED;
2550 spin_unlock_irqrestore(&priv->rx_lock, flags);
2551}
2552
2553
Alan Cox95da3102008-07-22 11:09:07 +01002554static void ftdi_unthrottle(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555{
Alan Cox95da3102008-07-22 11:09:07 +01002556 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557 struct ftdi_private *priv = usb_get_serial_port_data(port);
2558 int actually_throttled;
2559 unsigned long flags;
2560
Harvey Harrison441b62c2008-03-03 16:08:34 -08002561 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562
2563 spin_lock_irqsave(&priv->rx_lock, flags);
2564 actually_throttled = priv->rx_flags & ACTUALLY_THROTTLED;
2565 priv->rx_flags &= ~(THROTTLED | ACTUALLY_THROTTLED);
2566 spin_unlock_irqrestore(&priv->rx_lock, flags);
2567
2568 if (actually_throttled)
David Howellsc4028952006-11-22 14:57:56 +00002569 schedule_delayed_work(&priv->rx_work, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570}
2571
Alan Cox464cbb22008-07-22 11:11:23 +01002572static int __init ftdi_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573{
2574 int retval;
2575
Harvey Harrison441b62c2008-03-03 16:08:34 -08002576 dbg("%s", __func__);
Ian Abbottfdcb0a02005-07-28 18:40:32 +01002577 if (vendor > 0 && product > 0) {
2578 /* Add user specified VID/PID to reserved element of table. */
2579 int i;
2580 for (i = 0; id_table_combined[i].idVendor; i++)
2581 ;
2582 id_table_combined[i].match_flags = USB_DEVICE_ID_MATCH_DEVICE;
2583 id_table_combined[i].idVendor = vendor;
2584 id_table_combined[i].idProduct = product;
2585 }
Ian Abbott8f977e42005-06-20 16:45:42 +01002586 retval = usb_serial_register(&ftdi_sio_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587 if (retval)
Ian Abbott8f977e42005-06-20 16:45:42 +01002588 goto failed_sio_register;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589 retval = usb_register(&ftdi_driver);
David Brownell5c09d142006-10-13 15:57:58 -07002590 if (retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591 goto failed_usb_register;
2592
Greg Kroah-Hartmanc197a8d2008-08-18 13:21:04 -07002593 printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_VERSION ":"
2594 DRIVER_DESC "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595 return 0;
2596failed_usb_register:
Ian Abbott8f977e42005-06-20 16:45:42 +01002597 usb_serial_deregister(&ftdi_sio_device);
2598failed_sio_register:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599 return retval;
2600}
2601
2602
Alan Cox464cbb22008-07-22 11:11:23 +01002603static void __exit ftdi_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604{
2605
Harvey Harrison441b62c2008-03-03 16:08:34 -08002606 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607
Alan Cox464cbb22008-07-22 11:11:23 +01002608 usb_deregister(&ftdi_driver);
2609 usb_serial_deregister(&ftdi_sio_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610
2611}
2612
2613
2614module_init(ftdi_init);
2615module_exit(ftdi_exit);
2616
Alan Cox464cbb22008-07-22 11:11:23 +01002617MODULE_AUTHOR(DRIVER_AUTHOR);
2618MODULE_DESCRIPTION(DRIVER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619MODULE_LICENSE("GPL");
2620
2621module_param(debug, bool, S_IRUGO | S_IWUSR);
2622MODULE_PARM_DESC(debug, "Debug enabled or not");
Ian Abbottfdcb0a02005-07-28 18:40:32 +01002623module_param(vendor, ushort, 0);
2624MODULE_PARM_DESC(vendor, "User specified vendor ID (default="
2625 __MODULE_STRING(FTDI_VID)")");
2626module_param(product, ushort, 0);
Paulius Zaleckas68265042008-09-10 17:18:46 +03002627MODULE_PARM_DESC(product, "User specified product ID");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628