blob: d9d87111f9a9c25ddbc483016fc0a2dc5456d835 [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 */
Ian Abbott8f977e42005-06-20 16:45:42 +010050#define DRIVER_VERSION "v1.4.3"
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
85 __u16 interface; /* FT2232C port interface (0 for FT232/245) */
86
Alan Cox464cbb22008-07-22 11:11:23 +010087 speed_t force_baud; /* if non-zero, force the baud rate to
88 this value */
89 int force_rtscts; /* if non-zero, force RTS-CTS to always
90 be enabled */
Oliver Neukum0ffbbe22007-07-09 12:03:08 -070091
92 spinlock_t tx_lock; /* spinlock for transmit state */
93 unsigned long tx_bytes;
94 unsigned long tx_outstanding_bytes;
95 unsigned long tx_outstanding_urbs;
96};
97
Ian Abbott8f977e42005-06-20 16:45:42 +010098/* struct ftdi_sio_quirk is used by devices requiring special attention. */
99struct ftdi_sio_quirk {
Tony Lindgrenfa91d432007-05-04 18:23:24 -0700100 int (*probe)(struct usb_serial *);
Alan Cox464cbb22008-07-22 11:11:23 +0100101 /* Special settings for probed ports. */
102 void (*port_probe)(struct ftdi_private *);
Ian Abbott8f977e42005-06-20 16:45:42 +0100103};
104
Alan Cox464cbb22008-07-22 11:11:23 +0100105static int ftdi_jtag_probe(struct usb_serial *serial);
106static int ftdi_mtxorb_hack_setup(struct usb_serial *serial);
107static void ftdi_USB_UIRT_setup(struct ftdi_private *priv);
108static void ftdi_HE_TIRA1_setup(struct ftdi_private *priv);
Ian Abbott8f977e42005-06-20 16:45:42 +0100109
Harald Welte20734342008-01-01 15:08:35 +0100110static struct ftdi_sio_quirk ftdi_jtag_quirk = {
111 .probe = ftdi_jtag_probe,
Tony Lindgrenfa91d432007-05-04 18:23:24 -0700112};
113
Kevin Vance546d7ee2008-03-01 13:49:59 -0500114static struct ftdi_sio_quirk ftdi_mtxorb_hack_quirk = {
115 .probe = ftdi_mtxorb_hack_setup,
116};
117
Ian Abbott8f977e42005-06-20 16:45:42 +0100118static struct ftdi_sio_quirk ftdi_USB_UIRT_quirk = {
Oliver Neukum0ffbbe22007-07-09 12:03:08 -0700119 .port_probe = ftdi_USB_UIRT_setup,
Ian Abbott8f977e42005-06-20 16:45:42 +0100120};
121
122static struct ftdi_sio_quirk ftdi_HE_TIRA1_quirk = {
Oliver Neukum0ffbbe22007-07-09 12:03:08 -0700123 .port_probe = ftdi_HE_TIRA1_setup,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124};
125
126/*
127 * The 8U232AM has the same API as the sio except for:
128 * - it can support MUCH higher baudrates; up to:
129 * o 921600 for RS232 and 2000000 for RS422/485 at 48MHz
130 * o 230400 at 12MHz
131 * so .. 8U232AM's baudrate setting codes are different
132 * - it has a two byte status code.
133 * - it returns characters every 16ms (the FTDI does it every 40ms)
134 *
135 * the bcdDevice value is used to differentiate FT232BM and FT245BM from
136 * the earlier FT8U232AM and FT8U232BM. For now, include all known VID/PID
137 * combinations in both tables.
Ian Abbott8f977e42005-06-20 16:45:42 +0100138 * FIXME: perhaps bcdDevice can also identify 12MHz FT8U232AM devices,
139 * but I don't know if those ever went into mass production. [Ian Abbott]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 */
141
142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
144static struct usb_device_id id_table_combined [] = {
Jonathan Davies2011e922006-08-09 10:48:03 +0100145 { USB_DEVICE(FTDI_VID, FTDI_AMC232_PID) },
146 { USB_DEVICE(FTDI_VID, FTDI_CANUSB_PID) },
Andrew Ewert01ba0852008-12-04 09:09:59 -0600147 { USB_DEVICE(FTDI_VID, FTDI_CANDAPTER_PID) },
Peter Mack6e1ab3e2008-04-22 13:25:11 +0200148 { USB_DEVICE(FTDI_VID, FTDI_SCS_DEVICE_0_PID) },
149 { USB_DEVICE(FTDI_VID, FTDI_SCS_DEVICE_1_PID) },
150 { USB_DEVICE(FTDI_VID, FTDI_SCS_DEVICE_2_PID) },
151 { USB_DEVICE(FTDI_VID, FTDI_SCS_DEVICE_3_PID) },
152 { USB_DEVICE(FTDI_VID, FTDI_SCS_DEVICE_4_PID) },
153 { USB_DEVICE(FTDI_VID, FTDI_SCS_DEVICE_5_PID) },
154 { USB_DEVICE(FTDI_VID, FTDI_SCS_DEVICE_6_PID) },
155 { USB_DEVICE(FTDI_VID, FTDI_SCS_DEVICE_7_PID) },
Razvan Gavril72a9f952006-05-04 11:35:49 +0300156 { USB_DEVICE(FTDI_VID, FTDI_ACTZWAVE_PID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 { USB_DEVICE(FTDI_VID, FTDI_IRTRANS_PID) },
Luiz Fernando N. Capitulino69737df2006-04-11 15:52:41 -0300158 { USB_DEVICE(FTDI_VID, FTDI_IPLUS_PID) },
Luiz Fernando N. Capitulinod0993212007-06-21 22:34:23 -0300159 { USB_DEVICE(FTDI_VID, FTDI_IPLUS2_PID) },
Frank Sievertsenfad14a02006-10-20 09:43:53 +0200160 { USB_DEVICE(FTDI_VID, FTDI_DMX4ALL) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 { USB_DEVICE(FTDI_VID, FTDI_SIO_PID) },
162 { USB_DEVICE(FTDI_VID, FTDI_8U232AM_PID) },
163 { USB_DEVICE(FTDI_VID, FTDI_8U232AM_ALT_PID) },
Gard Spreemannd8b21602007-03-05 00:03:26 +0100164 { USB_DEVICE(FTDI_VID, FTDI_232RL_PID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 { USB_DEVICE(FTDI_VID, FTDI_8U2232C_PID) },
Christophe Mariacc0f8d562006-06-23 17:36:21 +0200166 { USB_DEVICE(FTDI_VID, FTDI_MICRO_CHAMELEON_PID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 { USB_DEVICE(FTDI_VID, FTDI_RELAIS_PID) },
Guido Scholz2adb80e2007-05-08 19:52:41 +0200168 { USB_DEVICE(FTDI_VID, FTDI_OPENDCC_PID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 { USB_DEVICE(INTERBIOMETRICS_VID, INTERBIOMETRICS_IOBOARD_PID) },
170 { USB_DEVICE(INTERBIOMETRICS_VID, INTERBIOMETRICS_MINI_IOBOARD_PID) },
Alan Coxf2ee6952008-12-06 23:46:04 -0800171 { USB_DEVICE(FTDI_VID, FTDI_SPROG_II) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 { USB_DEVICE(FTDI_VID, FTDI_XF_632_PID) },
173 { USB_DEVICE(FTDI_VID, FTDI_XF_634_PID) },
174 { USB_DEVICE(FTDI_VID, FTDI_XF_547_PID) },
175 { USB_DEVICE(FTDI_VID, FTDI_XF_633_PID) },
176 { USB_DEVICE(FTDI_VID, FTDI_XF_631_PID) },
177 { USB_DEVICE(FTDI_VID, FTDI_XF_635_PID) },
178 { USB_DEVICE(FTDI_VID, FTDI_XF_640_PID) },
179 { USB_DEVICE(FTDI_VID, FTDI_XF_642_PID) },
180 { USB_DEVICE(FTDI_VID, FTDI_DSS20_PID) },
181 { USB_DEVICE(FTDI_NF_RIC_VID, FTDI_NF_RIC_PID) },
182 { USB_DEVICE(FTDI_VID, FTDI_VNHCPCUSB_D_PID) },
Ian Abbott8f977e42005-06-20 16:45:42 +0100183 { USB_DEVICE(FTDI_VID, FTDI_MTXORB_0_PID) },
184 { USB_DEVICE(FTDI_VID, FTDI_MTXORB_1_PID) },
185 { USB_DEVICE(FTDI_VID, FTDI_MTXORB_2_PID) },
186 { USB_DEVICE(FTDI_VID, FTDI_MTXORB_3_PID) },
187 { USB_DEVICE(FTDI_VID, FTDI_MTXORB_4_PID) },
188 { USB_DEVICE(FTDI_VID, FTDI_MTXORB_5_PID) },
189 { USB_DEVICE(FTDI_VID, FTDI_MTXORB_6_PID) },
Alan Cox464cbb22008-07-22 11:11:23 +0100190 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0100_PID) },
191 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0101_PID) },
192 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0102_PID) },
193 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0103_PID) },
194 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0104_PID) },
195 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0105_PID) },
196 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0106_PID) },
197 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0107_PID) },
198 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0108_PID) },
199 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0109_PID) },
200 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_010A_PID) },
201 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_010B_PID) },
202 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_010C_PID) },
203 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_010D_PID) },
204 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_010E_PID) },
205 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_010F_PID) },
206 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0110_PID) },
207 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0111_PID) },
208 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0112_PID) },
209 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0113_PID) },
210 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0114_PID) },
211 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0115_PID) },
212 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0116_PID) },
213 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0117_PID) },
214 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0118_PID) },
215 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0119_PID) },
216 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_011A_PID) },
217 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_011B_PID) },
218 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_011C_PID) },
219 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_011D_PID) },
220 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_011E_PID) },
221 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_011F_PID) },
222 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0120_PID) },
223 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0121_PID) },
224 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0122_PID) },
225 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0123_PID) },
226 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0124_PID) },
227 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0125_PID) },
228 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0126_PID) },
229 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0127_PID),
Kevin Vance546d7ee2008-03-01 13:49:59 -0500230 .driver_info = (kernel_ulong_t)&ftdi_mtxorb_hack_quirk },
Alan Cox464cbb22008-07-22 11:11:23 +0100231 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0128_PID) },
232 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0129_PID) },
233 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_012A_PID) },
234 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_012B_PID) },
235 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_012C_PID),
Ray Molenkampebb37702008-05-21 17:06:26 -0600236 .driver_info = (kernel_ulong_t)&ftdi_mtxorb_hack_quirk },
Alan Cox464cbb22008-07-22 11:11:23 +0100237 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_012D_PID) },
238 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_012E_PID) },
239 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_012F_PID) },
240 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0130_PID) },
241 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0131_PID) },
242 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0132_PID) },
243 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0133_PID) },
244 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0134_PID) },
245 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0135_PID) },
246 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0136_PID) },
247 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0137_PID) },
248 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0138_PID) },
249 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0139_PID) },
250 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_013A_PID) },
251 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_013B_PID) },
252 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_013C_PID) },
253 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_013D_PID) },
254 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_013E_PID) },
255 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_013F_PID) },
256 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0140_PID) },
257 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0141_PID) },
258 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0142_PID) },
259 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0143_PID) },
260 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0144_PID) },
261 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0145_PID) },
262 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0146_PID) },
263 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0147_PID) },
264 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0148_PID) },
265 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0149_PID) },
266 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_014A_PID) },
267 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_014B_PID) },
268 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_014C_PID) },
269 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_014D_PID) },
270 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_014E_PID) },
271 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_014F_PID) },
272 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0150_PID) },
273 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0151_PID) },
274 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0152_PID) },
275 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0153_PID),
Ray Molenkampebb37702008-05-21 17:06:26 -0600276 .driver_info = (kernel_ulong_t)&ftdi_mtxorb_hack_quirk },
Alan Cox464cbb22008-07-22 11:11:23 +0100277 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0154_PID),
Ray Molenkampebb37702008-05-21 17:06:26 -0600278 .driver_info = (kernel_ulong_t)&ftdi_mtxorb_hack_quirk },
Alan Cox464cbb22008-07-22 11:11:23 +0100279 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0155_PID),
Ray Molenkampebb37702008-05-21 17:06:26 -0600280 .driver_info = (kernel_ulong_t)&ftdi_mtxorb_hack_quirk },
Alan Cox464cbb22008-07-22 11:11:23 +0100281 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0156_PID),
Ray Molenkampebb37702008-05-21 17:06:26 -0600282 .driver_info = (kernel_ulong_t)&ftdi_mtxorb_hack_quirk },
Alan Cox464cbb22008-07-22 11:11:23 +0100283 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0157_PID),
Ray Molenkampebb37702008-05-21 17:06:26 -0600284 .driver_info = (kernel_ulong_t)&ftdi_mtxorb_hack_quirk },
Alan Cox464cbb22008-07-22 11:11:23 +0100285 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0158_PID),
Ray Molenkampebb37702008-05-21 17:06:26 -0600286 .driver_info = (kernel_ulong_t)&ftdi_mtxorb_hack_quirk },
Alan Cox464cbb22008-07-22 11:11:23 +0100287 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0159_PID) },
288 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_015A_PID) },
289 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_015B_PID) },
290 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_015C_PID) },
291 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_015D_PID) },
292 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_015E_PID) },
293 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_015F_PID) },
294 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0160_PID) },
295 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0161_PID) },
296 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0162_PID) },
297 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0163_PID) },
298 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0164_PID) },
299 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0165_PID) },
300 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0166_PID) },
301 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0167_PID) },
302 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0168_PID) },
303 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0169_PID) },
304 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_016A_PID) },
305 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_016B_PID) },
306 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_016C_PID) },
307 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_016D_PID) },
308 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_016E_PID) },
309 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_016F_PID) },
310 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0170_PID) },
311 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0171_PID) },
312 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0172_PID) },
313 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0173_PID) },
314 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0174_PID) },
315 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0175_PID) },
316 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0176_PID) },
317 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0177_PID) },
318 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0178_PID) },
319 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0179_PID) },
320 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_017A_PID) },
321 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_017B_PID) },
322 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_017C_PID) },
323 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_017D_PID) },
324 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_017E_PID) },
325 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_017F_PID) },
326 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0180_PID) },
327 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0181_PID) },
328 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0182_PID) },
329 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0183_PID) },
330 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0184_PID) },
331 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0185_PID) },
332 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0186_PID) },
333 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0187_PID) },
334 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0188_PID) },
335 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0189_PID) },
336 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_018A_PID) },
337 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_018B_PID) },
338 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_018C_PID) },
339 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_018D_PID) },
340 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_018E_PID) },
341 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_018F_PID) },
342 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0190_PID) },
343 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0191_PID) },
344 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0192_PID) },
345 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0193_PID) },
346 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0194_PID) },
347 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0195_PID) },
348 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0196_PID) },
349 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0197_PID) },
350 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0198_PID) },
351 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0199_PID) },
352 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_019A_PID) },
353 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_019B_PID) },
354 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_019C_PID) },
355 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_019D_PID) },
356 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_019E_PID) },
357 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_019F_PID) },
358 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01A0_PID) },
359 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01A1_PID) },
360 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01A2_PID) },
361 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01A3_PID) },
362 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01A4_PID) },
363 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01A5_PID) },
364 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01A6_PID) },
365 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01A7_PID) },
366 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01A8_PID) },
367 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01A9_PID) },
368 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01AA_PID) },
369 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01AB_PID) },
370 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01AC_PID) },
371 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01AD_PID) },
372 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01AE_PID) },
373 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01AF_PID) },
374 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01B0_PID) },
375 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01B1_PID) },
376 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01B2_PID) },
377 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01B3_PID) },
378 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01B4_PID) },
379 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01B5_PID) },
380 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01B6_PID) },
381 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01B7_PID) },
382 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01B8_PID) },
383 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01B9_PID) },
384 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01BA_PID) },
385 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01BB_PID) },
386 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01BC_PID) },
387 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01BD_PID) },
388 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01BE_PID) },
389 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01BF_PID) },
390 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01C0_PID) },
391 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01C1_PID) },
392 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01C2_PID) },
393 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01C3_PID) },
394 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01C4_PID) },
395 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01C5_PID) },
396 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01C6_PID) },
397 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01C7_PID) },
398 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01C8_PID) },
399 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01C9_PID) },
400 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01CA_PID) },
401 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01CB_PID) },
402 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01CC_PID) },
403 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01CD_PID) },
404 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01CE_PID) },
405 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01CF_PID) },
406 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01D0_PID) },
407 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01D1_PID) },
408 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01D2_PID) },
409 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01D3_PID) },
410 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01D4_PID) },
411 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01D5_PID) },
412 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01D6_PID) },
413 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01D7_PID) },
414 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01D8_PID) },
415 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01D9_PID) },
416 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01DA_PID) },
417 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01DB_PID) },
418 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01DC_PID) },
419 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01DD_PID) },
420 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01DE_PID) },
421 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01DF_PID) },
422 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01E0_PID) },
423 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01E1_PID) },
424 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01E2_PID) },
425 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01E3_PID) },
426 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01E4_PID) },
427 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01E5_PID) },
428 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01E6_PID) },
429 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01E7_PID) },
430 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01E8_PID) },
431 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01E9_PID) },
432 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01EA_PID) },
433 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01EB_PID) },
434 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01EC_PID) },
435 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01ED_PID) },
436 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01EE_PID) },
437 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01EF_PID) },
438 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01F0_PID) },
439 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01F1_PID) },
440 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01F2_PID) },
441 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01F3_PID) },
442 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01F4_PID) },
443 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01F5_PID) },
444 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01F6_PID) },
445 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01F7_PID) },
446 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01F8_PID) },
447 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01F9_PID) },
448 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01FA_PID) },
449 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01FB_PID) },
450 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01FC_PID) },
451 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01FD_PID) },
452 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01FE_PID) },
453 { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01FF_PID) },
Ian Abbott8f977e42005-06-20 16:45:42 +0100454 { USB_DEVICE(FTDI_VID, FTDI_PERLE_ULTRAPORT_PID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 { USB_DEVICE(FTDI_VID, FTDI_PIEGROUP_PID) },
Dave Platt274a4bb2006-07-18 21:26:54 -0700456 { USB_DEVICE(FTDI_VID, FTDI_TNC_X_PID) },
Jelle Foks868e4402007-03-25 21:08:35 -0400457 { USB_DEVICE(FTDI_VID, FTDI_USBX_707_PID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2101_PID) },
459 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2102_PID) },
460 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2103_PID) },
461 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2104_PID) },
Justin Carlsona1484822006-09-24 11:52:12 +0300462 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2106_PID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2201_1_PID) },
464 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2201_2_PID) },
465 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2202_1_PID) },
466 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2202_2_PID) },
467 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2203_1_PID) },
468 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2203_2_PID) },
469 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2401_1_PID) },
470 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2401_2_PID) },
471 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2401_3_PID) },
472 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2401_4_PID) },
473 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2402_1_PID) },
474 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2402_2_PID) },
475 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2402_3_PID) },
476 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2402_4_PID) },
477 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2403_1_PID) },
478 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2403_2_PID) },
479 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2403_3_PID) },
480 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2403_4_PID) },
481 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_1_PID) },
482 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_2_PID) },
483 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_3_PID) },
484 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_4_PID) },
485 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_5_PID) },
486 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_6_PID) },
487 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_7_PID) },
488 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_8_PID) },
489 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_1_PID) },
490 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_2_PID) },
491 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_3_PID) },
492 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_4_PID) },
493 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_5_PID) },
494 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_6_PID) },
495 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_7_PID) },
496 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_8_PID) },
497 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_1_PID) },
498 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_2_PID) },
499 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_3_PID) },
500 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_4_PID) },
501 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_5_PID) },
502 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_6_PID) },
503 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_7_PID) },
504 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_8_PID) },
505 { USB_DEVICE(IDTECH_VID, IDTECH_IDT1221U_PID) },
506 { USB_DEVICE(OCT_VID, OCT_US101_PID) },
Ian Abbott8f977e42005-06-20 16:45:42 +0100507 { USB_DEVICE(FTDI_VID, FTDI_HE_TIRA1_PID),
508 .driver_info = (kernel_ulong_t)&ftdi_HE_TIRA1_quirk },
509 { USB_DEVICE(FTDI_VID, FTDI_USB_UIRT_PID),
510 .driver_info = (kernel_ulong_t)&ftdi_USB_UIRT_quirk },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 { USB_DEVICE(FTDI_VID, PROTEGO_SPECIAL_1) },
512 { USB_DEVICE(FTDI_VID, PROTEGO_R2X0) },
513 { USB_DEVICE(FTDI_VID, PROTEGO_SPECIAL_3) },
514 { USB_DEVICE(FTDI_VID, PROTEGO_SPECIAL_4) },
Ian Abbott8f977e42005-06-20 16:45:42 +0100515 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E808_PID) },
516 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E809_PID) },
517 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E80A_PID) },
518 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E80B_PID) },
519 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E80C_PID) },
520 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E80D_PID) },
521 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E80E_PID) },
522 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E80F_PID) },
523 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E888_PID) },
524 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E889_PID) },
525 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E88A_PID) },
526 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E88B_PID) },
527 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E88C_PID) },
528 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E88D_PID) },
529 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E88E_PID) },
530 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E88F_PID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 { USB_DEVICE(FTDI_VID, FTDI_ELV_UO100_PID) },
Ian Abbott47900742005-05-17 15:12:13 +0100532 { USB_DEVICE(FTDI_VID, FTDI_ELV_UM100_PID) },
Ian Abbotte6ac4a42005-08-02 14:01:27 +0100533 { USB_DEVICE(FTDI_VID, FTDI_ELV_UR100_PID) },
534 { USB_DEVICE(FTDI_VID, FTDI_ELV_ALC8500_PID) },
Thomas Riewe207c47e2005-09-29 14:57:29 +0200535 { USB_DEVICE(FTDI_VID, FTDI_PYRAMID_PID) },
Martin Hagelinbde62182005-10-26 21:10:41 +0200536 { USB_DEVICE(FTDI_VID, FTDI_ELV_FHZ1000PC_PID) },
Thomas Schleusener4eaf60e2007-02-28 22:50:52 +0100537 { USB_DEVICE(FTDI_VID, FTDI_IBS_US485_PID) },
538 { USB_DEVICE(FTDI_VID, FTDI_IBS_PICPRO_PID) },
539 { USB_DEVICE(FTDI_VID, FTDI_IBS_PCMCIA_PID) },
540 { USB_DEVICE(FTDI_VID, FTDI_IBS_PK1_PID) },
541 { USB_DEVICE(FTDI_VID, FTDI_IBS_RS232MON_PID) },
542 { USB_DEVICE(FTDI_VID, FTDI_IBS_APP70_PID) },
543 { USB_DEVICE(FTDI_VID, FTDI_IBS_PEDO_PID) },
544 { USB_DEVICE(FTDI_VID, FTDI_IBS_PROD_PID) },
Ian Abbotte6ac4a42005-08-02 14:01:27 +0100545 /*
Peter Stark42f8aa92007-12-25 18:32:08 +0100546 * Due to many user requests for multiple ELV devices we enable
547 * them by default.
Ian Abbotte6ac4a42005-08-02 14:01:27 +0100548 */
Peter Stark42f8aa92007-12-25 18:32:08 +0100549 { USB_DEVICE(FTDI_VID, FTDI_ELV_CLI7000_PID) },
550 { USB_DEVICE(FTDI_VID, FTDI_ELV_PPS7330_PID) },
551 { USB_DEVICE(FTDI_VID, FTDI_ELV_TFM100_PID) },
552 { USB_DEVICE(FTDI_VID, FTDI_ELV_UDF77_PID) },
553 { USB_DEVICE(FTDI_VID, FTDI_ELV_UIO88_PID) },
554 { USB_DEVICE(FTDI_VID, FTDI_ELV_UAD8_PID) },
555 { USB_DEVICE(FTDI_VID, FTDI_ELV_UDA7_PID) },
556 { USB_DEVICE(FTDI_VID, FTDI_ELV_USI2_PID) },
557 { USB_DEVICE(FTDI_VID, FTDI_ELV_T1100_PID) },
558 { USB_DEVICE(FTDI_VID, FTDI_ELV_PCD200_PID) },
559 { USB_DEVICE(FTDI_VID, FTDI_ELV_ULA200_PID) },
560 { USB_DEVICE(FTDI_VID, FTDI_ELV_CSI8_PID) },
561 { USB_DEVICE(FTDI_VID, FTDI_ELV_EM1000DL_PID) },
562 { USB_DEVICE(FTDI_VID, FTDI_ELV_PCK100_PID) },
563 { USB_DEVICE(FTDI_VID, FTDI_ELV_RFP500_PID) },
564 { USB_DEVICE(FTDI_VID, FTDI_ELV_FS20SIG_PID) },
565 { USB_DEVICE(FTDI_VID, FTDI_ELV_WS300PC_PID) },
566 { USB_DEVICE(FTDI_VID, FTDI_ELV_FHZ1300PC_PID) },
Sven Andersen4ae897d2008-03-04 22:09:11 +0100567 { USB_DEVICE(FTDI_VID, FTDI_ELV_EM1010PC_PID) },
Peter Stark42f8aa92007-12-25 18:32:08 +0100568 { USB_DEVICE(FTDI_VID, FTDI_ELV_WS500_PID) },
André Schenkb5894a52008-07-28 15:48:46 +0200569 { USB_DEVICE(FTDI_VID, FTDI_ELV_HS485_PID) },
David Brownell5c09d142006-10-13 15:57:58 -0700570 { USB_DEVICE(FTDI_VID, LINX_SDMUSBQSS_PID) },
571 { USB_DEVICE(FTDI_VID, LINX_MASTERDEVEL2_PID) },
572 { USB_DEVICE(FTDI_VID, LINX_FUTURE_0_PID) },
573 { USB_DEVICE(FTDI_VID, LINX_FUTURE_1_PID) },
574 { USB_DEVICE(FTDI_VID, LINX_FUTURE_2_PID) },
575 { USB_DEVICE(FTDI_VID, FTDI_CCSICDU20_0_PID) },
576 { USB_DEVICE(FTDI_VID, FTDI_CCSICDU40_1_PID) },
Jan Capekec434e92006-11-28 22:35:12 +0100577 { USB_DEVICE(FTDI_VID, FTDI_CCSMACHX_2_PID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 { USB_DEVICE(FTDI_VID, INSIDE_ACCESSO) },
579 { USB_DEVICE(INTREPID_VID, INTREPID_VALUECAN_PID) },
580 { USB_DEVICE(INTREPID_VID, INTREPID_NEOVI_PID) },
581 { USB_DEVICE(FALCOM_VID, FALCOM_TWIST_PID) },
Ian Abbotte6ac4a42005-08-02 14:01:27 +0100582 { USB_DEVICE(FALCOM_VID, FALCOM_SAMBA_PID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 { USB_DEVICE(FTDI_VID, FTDI_SUUNTO_SPORTS_PID) },
Vladimir Vukicevicc3d36c42008-10-03 17:08:43 -0700584 { USB_DEVICE(FTDI_VID, FTDI_OCEANIC_PID) },
Michael Olbergef31fec2007-02-27 12:57:12 +0100585 { USB_DEVICE(TTI_VID, TTI_QL355P_PID) },
Ian Abbott6f928722005-04-29 16:06:14 +0100586 { USB_DEVICE(FTDI_VID, FTDI_RM_CANVIEW_PID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 { USB_DEVICE(BANDB_VID, BANDB_USOTL4_PID) },
588 { USB_DEVICE(BANDB_VID, BANDB_USTL4_PID) },
589 { USB_DEVICE(BANDB_VID, BANDB_USO9ML2_PID) },
590 { USB_DEVICE(FTDI_VID, EVER_ECO_PRO_CDS) },
Ian Abbott6f928722005-04-29 16:06:14 +0100591 { USB_DEVICE(FTDI_VID, FTDI_4N_GALAXY_DE_1_PID) },
592 { USB_DEVICE(FTDI_VID, FTDI_4N_GALAXY_DE_2_PID) },
Ian Abbotte6ac4a42005-08-02 14:01:27 +0100593 { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_0_PID) },
594 { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_1_PID) },
595 { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_2_PID) },
596 { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_3_PID) },
597 { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_4_PID) },
598 { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_5_PID) },
599 { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_6_PID) },
600 { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_7_PID) },
Ian Abbott6f928722005-04-29 16:06:14 +0100601 { USB_DEVICE(MOBILITY_VID, MOBILITY_USB_SERIAL_PID) },
Ian Abbott8f977e42005-06-20 16:45:42 +0100602 { USB_DEVICE(FTDI_VID, FTDI_ACTIVE_ROBOTS_PID) },
Ian Abbott34d1a8a2006-02-27 14:05:32 +0000603 { USB_DEVICE(FTDI_VID, FTDI_MHAM_KW_PID) },
604 { USB_DEVICE(FTDI_VID, FTDI_MHAM_YS_PID) },
Ian Abbott9b1513d2005-07-29 12:16:31 -0700605 { USB_DEVICE(FTDI_VID, FTDI_MHAM_Y6_PID) },
606 { USB_DEVICE(FTDI_VID, FTDI_MHAM_Y8_PID) },
Ian Abbott34d1a8a2006-02-27 14:05:32 +0000607 { USB_DEVICE(FTDI_VID, FTDI_MHAM_IC_PID) },
608 { USB_DEVICE(FTDI_VID, FTDI_MHAM_DB9_PID) },
609 { USB_DEVICE(FTDI_VID, FTDI_MHAM_RS232_PID) },
610 { USB_DEVICE(FTDI_VID, FTDI_MHAM_Y9_PID) },
Ian Abbott740a4282005-12-13 16:18:47 +0000611 { USB_DEVICE(FTDI_VID, FTDI_TERATRONIK_VCP_PID) },
612 { USB_DEVICE(FTDI_VID, FTDI_TERATRONIK_D2XX_PID) },
Ian Abbott9b1513d2005-07-29 12:16:31 -0700613 { USB_DEVICE(EVOLUTION_VID, EVOLUTION_ER1_PID) },
Søren Haubergc1f8ea72007-08-08 10:50:17 +0200614 { USB_DEVICE(EVOLUTION_VID, EVO_HYBRID_PID) },
615 { USB_DEVICE(EVOLUTION_VID, EVO_RCM4_PID) },
Rui Santosc9c77462005-09-23 20:06:50 +0100616 { USB_DEVICE(FTDI_VID, FTDI_ARTEMIS_PID) },
617 { USB_DEVICE(FTDI_VID, FTDI_ATIK_ATK16_PID) },
Rui Santos09c280a2006-01-09 13:12:40 +0000618 { USB_DEVICE(FTDI_VID, FTDI_ATIK_ATK16C_PID) },
Rui Santosc9c77462005-09-23 20:06:50 +0100619 { USB_DEVICE(FTDI_VID, FTDI_ATIK_ATK16HR_PID) },
Rui Santos09c280a2006-01-09 13:12:40 +0000620 { USB_DEVICE(FTDI_VID, FTDI_ATIK_ATK16HRC_PID) },
Franco Lanza34910432007-12-26 03:29:33 +0100621 { USB_DEVICE(FTDI_VID, FTDI_ATIK_ATK16IC_PID) },
Ian Abbottb4723ae2005-11-23 15:45:23 -0800622 { USB_DEVICE(KOBIL_VID, KOBIL_CONV_B1_PID) },
623 { USB_DEVICE(KOBIL_VID, KOBIL_CONV_KAAN_PID) },
Pavel Fedineffac8b2005-12-09 09:30:59 +0300624 { USB_DEVICE(POSIFLEX_VID, POSIFLEX_PP7000_PID) },
Louis Nyffenegger641adaa2006-01-05 17:20:37 +0100625 { USB_DEVICE(FTDI_VID, FTDI_TTUSB_PID) },
Ian Abbott7e1c0b82006-03-21 14:55:20 +0000626 { USB_DEVICE(FTDI_VID, FTDI_ECLO_COM_1WIRE_PID) },
Ian Abbotta94b52a2006-01-09 17:11:40 +0000627 { USB_DEVICE(FTDI_VID, FTDI_WESTREX_MODEL_777_PID) },
628 { USB_DEVICE(FTDI_VID, FTDI_WESTREX_MODEL_8900F_PID) },
Wouter Paesence40d292006-01-03 14:30:31 +0100629 { USB_DEVICE(FTDI_VID, FTDI_PCDJ_DAC2_PID) },
Nathan Bronsoncdd3b152006-04-10 00:05:09 -0400630 { USB_DEVICE(FTDI_VID, FTDI_RRCIRKITS_LOCOBUFFER_PID) },
Ian Abbott7e0258f2006-04-12 15:20:35 +0100631 { USB_DEVICE(FTDI_VID, FTDI_ASK_RDR400_PID) },
A. Maitland Bottomsbf58fbd2006-03-14 18:44:23 -0500632 { USB_DEVICE(ICOM_ID1_VID, ICOM_ID1_PID) },
Folkert van Heusden62a13db2006-03-28 20:41:26 +0900633 { USB_DEVICE(PAPOUCH_VID, PAPOUCH_TMU_PID) },
Ian Abbott20a0f472006-05-04 11:34:25 +0100634 { USB_DEVICE(FTDI_VID, FTDI_ACG_HFDUAL_PID) },
Ian Abbotteb79b4f2006-05-30 12:36:30 +0100635 { USB_DEVICE(FTDI_VID, FTDI_YEI_SERVOCENTER31_PID) },
D. Peter Siddons48437482006-06-17 18:09:15 -0400636 { USB_DEVICE(FTDI_VID, FTDI_THORLABS_PID) },
Colin Leroye1979fe2006-07-11 11:36:43 +0200637 { USB_DEVICE(TESTO_VID, TESTO_USB_INTERFACE_PID) },
Ralf Schlatterbeckeaede2c2006-09-06 12:15:02 +0200638 { USB_DEVICE(FTDI_VID, FTDI_GAMMA_SCOUT_PID) },
Ian Abbott9978f9e2006-09-25 14:19:19 +0100639 { USB_DEVICE(FTDI_VID, FTDI_TACTRIX_OPENPORT_13M_PID) },
640 { USB_DEVICE(FTDI_VID, FTDI_TACTRIX_OPENPORT_13S_PID) },
641 { USB_DEVICE(FTDI_VID, FTDI_TACTRIX_OPENPORT_13U_PID) },
Kjell Myksvoll40c36092006-10-22 23:26:42 +0200642 { USB_DEVICE(ELEKTOR_VID, ELEKTOR_FT323R_PID) },
Micke Prag822c7ef2007-02-04 23:39:11 +0100643 { USB_DEVICE(TELLDUS_VID, TELLDUS_TELLSTICK_PID) },
Neil \"Superna\" ARMSTRONG762e92f2007-04-25 20:34:28 +0200644 { USB_DEVICE(FTDI_VID, FTDI_MAXSTREAM_PID) },
Lex Rossa5f62392008-08-06 16:25:08 +0400645 { USB_DEVICE(FTDI_VID, FTDI_PHI_FISCO_PID) },
Pierre Castellad7fde2d2007-09-06 22:34:39 +0200646 { USB_DEVICE(TML_VID, TML_USB_SERIAL_PID) },
Ed Beroset4bb0ef12008-01-17 17:37:46 -0500647 { USB_DEVICE(FTDI_VID, FTDI_ELSTER_UNICOM_PID) },
Mirko Bordignon11171d12008-03-10 11:38:55 +0100648 { USB_DEVICE(FTDI_VID, FTDI_PROPOX_JTAGCABLEII_PID) },
Tony Lindgrenfa91d432007-05-04 18:23:24 -0700649 { USB_DEVICE(OLIMEX_VID, OLIMEX_ARM_USB_OCD_PID),
Harald Welte20734342008-01-01 15:08:35 +0100650 .driver_info = (kernel_ulong_t)&ftdi_jtag_quirk },
651 { USB_DEVICE(FIC_VID, FIC_NEO1973_DEBUG_PID),
652 .driver_info = (kernel_ulong_t)&ftdi_jtag_quirk },
653 { USB_DEVICE(FTDI_VID, FTDI_OOCDLINK_PID),
654 .driver_info = (kernel_ulong_t)&ftdi_jtag_quirk },
Frederik Kriewitza00c3ca2008-07-30 16:53:41 +0200655 { USB_DEVICE(FTDI_VID, LMI_LM3S_DEVEL_BOARD_PID),
656 .driver_info = (kernel_ulong_t)&ftdi_jtag_quirk },
657 { USB_DEVICE(FTDI_VID, LMI_LM3S_EVAL_BOARD_PID),
658 .driver_info = (kernel_ulong_t)&ftdi_jtag_quirk },
Atsushi Nemoto26ab7052008-05-17 00:13:56 +0900659 { USB_DEVICE(RATOC_VENDOR_ID, RATOC_PRODUCT_ID_USB60F) },
Jon K Hellan25423352008-06-24 11:43:13 +0200660 { USB_DEVICE(FTDI_VID, FTDI_REU_TINY_PID) },
Jaroslav Kyselaa18f80b2008-09-16 15:46:50 +0200661 { USB_DEVICE(PAPOUCH_VID, PAPOUCH_QUIDO4x4_PID) },
Gaetan Carlier96285cb2008-09-22 15:00:09 -0700662 { USB_DEVICE(FTDI_VID, FTDI_DOMINTELL_DGQG_PID) },
663 { USB_DEVICE(FTDI_VID, FTDI_DOMINTELL_DUSB_PID) },
Robie Basak45eeff82009-01-12 23:05:59 +0000664 { USB_DEVICE(ALTI2_VID, ALTI2_N3_PID) },
Mhayk Whandsonca808012009-01-09 06:48:16 -0400665 { USB_DEVICE(FTDI_VID, DIEBOLD_BCS_SE923_PID) },
Stephane Clerambaulte38c2872009-02-02 13:39:12 -0800666 { USB_DEVICE(FTDI_VID, FTDI_NDI_HUC_PID) },
Axel Wachtler7f82b6d2009-03-05 14:09:22 -0800667 { USB_DEVICE(ATMEL_VID, STK541_PID) },
668 { USB_DEVICE(DE_VID, STB_PID) },
669 { USB_DEVICE(DE_VID, WHT_PID) },
Michael Hennerichb0d65902009-03-06 14:07:43 -0800670 { USB_DEVICE(ADI_VID, ADI_GNICE_PID),
671 .driver_info = (kernel_ulong_t)&ftdi_jtag_quirk },
Peter Korsgaardae27d842009-03-25 11:32:59 +0100672 { USB_DEVICE(JETI_VID, JETI_SPC1201_PID) },
Nicolas Pitre1002bb72009-04-23 22:38:12 -0400673 { USB_DEVICE(MARVELL_VID, MARVELL_SHEEVAPLUG_PID),
674 .driver_info = (kernel_ulong_t)&ftdi_jtag_quirk },
Ian Abbottfdcb0a02005-07-28 18:40:32 +0100675 { }, /* Optional parameter entry */
676 { } /* Terminating entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677};
678
Alan Cox464cbb22008-07-22 11:11:23 +0100679MODULE_DEVICE_TABLE(usb, id_table_combined);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
681static struct usb_driver ftdi_driver = {
682 .name = "ftdi_sio",
683 .probe = usb_serial_probe,
684 .disconnect = usb_serial_disconnect,
685 .id_table = id_table_combined,
David Brownell5c09d142006-10-13 15:57:58 -0700686 .no_dynamic_id = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687};
688
Arjan van de Ven4c4c9432005-11-29 09:43:42 +0100689static const char *ftdi_chip_name[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 [SIO] = "SIO", /* the serial part of FT8U100AX */
691 [FT8U232AM] = "FT8U232AM",
692 [FT232BM] = "FT232BM",
693 [FT2232C] = "FT2232C",
Gard Spreemannd8b21602007-03-05 00:03:26 +0100694 [FT232RL] = "FT232RL",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695};
696
697
698/* Constants for read urb and write urb */
699#define BUFSZ 512
700#define PKTSZ 64
701
702/* rx_flags */
703#define THROTTLED 0x01
704#define ACTUALLY_THROTTLED 0x02
705
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706/* Used for TIOCMIWAIT */
707#define FTDI_STATUS_B0_MASK (FTDI_RS0_CTS | FTDI_RS0_DSR | FTDI_RS0_RI | FTDI_RS0_RLSD)
708#define FTDI_STATUS_B1_MASK (FTDI_RS_BI)
709/* End TIOCMIWAIT */
710
Roel Kluinbbc5d272008-02-07 01:06:07 +0100711#define FTDI_IMPL_ASYNC_FLAGS = (ASYNC_SPD_HI | ASYNC_SPD_VHI \
712 | ASYNC_SPD_CUST | ASYNC_SPD_SHI | ASYNC_SPD_WARP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
714/* function prototypes for a FTDI serial converter */
Alan Cox464cbb22008-07-22 11:11:23 +0100715static int ftdi_sio_probe(struct usb_serial *serial,
716 const struct usb_device_id *id);
717static void ftdi_shutdown(struct usb_serial *serial);
718static int ftdi_sio_port_probe(struct usb_serial_port *port);
719static int ftdi_sio_port_remove(struct usb_serial_port *port);
720static int ftdi_open(struct tty_struct *tty,
721 struct usb_serial_port *port, struct file *filp);
Alan Cox335f8512009-06-11 12:26:29 +0100722static void ftdi_close(struct usb_serial_port *port);
723static void ftdi_dtr_rts(struct usb_serial_port *port, int on);
Alan Cox464cbb22008-07-22 11:11:23 +0100724static int ftdi_write(struct tty_struct *tty, struct usb_serial_port *port,
725 const unsigned char *buf, int count);
726static int ftdi_write_room(struct tty_struct *tty);
727static int ftdi_chars_in_buffer(struct tty_struct *tty);
728static void ftdi_write_bulk_callback(struct urb *urb);
729static void ftdi_read_bulk_callback(struct urb *urb);
730static void ftdi_process_read(struct work_struct *work);
731static void ftdi_set_termios(struct tty_struct *tty,
732 struct usb_serial_port *port, struct ktermios *old);
733static int ftdi_tiocmget(struct tty_struct *tty, struct file *file);
734static int ftdi_tiocmset(struct tty_struct *tty, struct file *file,
735 unsigned int set, unsigned int clear);
736static int ftdi_ioctl(struct tty_struct *tty, struct file *file,
737 unsigned int cmd, unsigned long arg);
738static void ftdi_break_ctl(struct tty_struct *tty, int break_state);
739static void ftdi_throttle(struct tty_struct *tty);
740static void ftdi_unthrottle(struct tty_struct *tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
Alan Cox464cbb22008-07-22 11:11:23 +0100742static unsigned short int ftdi_232am_baud_base_to_divisor(int baud, int base);
743static unsigned short int ftdi_232am_baud_to_divisor(int baud);
744static __u32 ftdi_232bm_baud_base_to_divisor(int baud, int base);
745static __u32 ftdi_232bm_baud_to_divisor(int baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -0700747static struct usb_serial_driver ftdi_sio_device = {
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700748 .driver = {
749 .owner = THIS_MODULE,
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -0700750 .name = "ftdi_sio",
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700751 },
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -0700752 .description = "FTDI USB Serial Device",
Johannes Hölzld9b1b782006-12-17 21:50:24 +0100753 .usb_driver = &ftdi_driver ,
Ian Abbott8f977e42005-06-20 16:45:42 +0100754 .id_table = id_table_combined,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 .num_ports = 1,
Ian Abbott8f977e42005-06-20 16:45:42 +0100756 .probe = ftdi_sio_probe,
Jim Radford12bdbe02007-02-28 10:10:50 -0800757 .port_probe = ftdi_sio_port_probe,
758 .port_remove = ftdi_sio_port_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 .open = ftdi_open,
760 .close = ftdi_close,
Alan Cox335f8512009-06-11 12:26:29 +0100761 .dtr_rts = ftdi_dtr_rts,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 .throttle = ftdi_throttle,
763 .unthrottle = ftdi_unthrottle,
764 .write = ftdi_write,
765 .write_room = ftdi_write_room,
766 .chars_in_buffer = ftdi_chars_in_buffer,
767 .read_bulk_callback = ftdi_read_bulk_callback,
768 .write_bulk_callback = ftdi_write_bulk_callback,
769 .tiocmget = ftdi_tiocmget,
770 .tiocmset = ftdi_tiocmset,
771 .ioctl = ftdi_ioctl,
772 .set_termios = ftdi_set_termios,
773 .break_ctl = ftdi_break_ctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 .shutdown = ftdi_shutdown,
775};
776
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
778#define WDR_TIMEOUT 5000 /* default urb timeout */
Ian Abbott279e1542005-07-29 12:16:52 -0700779#define WDR_SHORT_TIMEOUT 1000 /* shorter urb timeout */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780
781/* High and low are for DTR, RTS etc etc */
782#define HIGH 1
783#define LOW 0
784
Ian Abbott22465402006-06-26 12:59:17 +0100785/* number of outstanding urbs to prevent userspace DoS from happening */
786#define URB_UPPER_LIMIT 42
787
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788/*
789 * ***************************************************************************
Tony Lindgrenfa91d432007-05-04 18:23:24 -0700790 * Utility functions
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 * ***************************************************************************
792 */
793
794static unsigned short int ftdi_232am_baud_base_to_divisor(int baud, int base)
795{
796 unsigned short int divisor;
Alan Cox464cbb22008-07-22 11:11:23 +0100797 /* divisor shifted 3 bits to the left */
798 int divisor3 = base / 2 / baud;
799 if ((divisor3 & 0x7) == 7)
800 divisor3++; /* round x.7/8 up to x+1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 divisor = divisor3 >> 3;
802 divisor3 &= 0x7;
Alan Cox464cbb22008-07-22 11:11:23 +0100803 if (divisor3 == 1)
804 divisor |= 0xc000;
805 else if (divisor3 >= 4)
806 divisor |= 0x4000;
807 else if (divisor3 != 0)
808 divisor |= 0x8000;
809 else if (divisor == 1)
810 divisor = 0; /* special case for maximum baud rate */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 return divisor;
812}
813
814static unsigned short int ftdi_232am_baud_to_divisor(int baud)
815{
Alan Cox464cbb22008-07-22 11:11:23 +0100816 return ftdi_232am_baud_base_to_divisor(baud, 48000000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817}
818
819static __u32 ftdi_232bm_baud_base_to_divisor(int baud, int base)
820{
821 static const unsigned char divfrac[8] = { 0, 3, 2, 4, 1, 5, 6, 7 };
822 __u32 divisor;
Alan Cox464cbb22008-07-22 11:11:23 +0100823 /* divisor shifted 3 bits to the left */
824 int divisor3 = base / 2 / baud;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 divisor = divisor3 >> 3;
826 divisor |= (__u32)divfrac[divisor3 & 0x7] << 14;
827 /* Deal with special cases for highest baud rates. */
Alan Cox464cbb22008-07-22 11:11:23 +0100828 if (divisor == 1)
829 divisor = 0;
830 else if (divisor == 0x4001)
831 divisor = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 return divisor;
833}
834
835static __u32 ftdi_232bm_baud_to_divisor(int baud)
836{
Alan Cox464cbb22008-07-22 11:11:23 +0100837 return ftdi_232bm_baud_base_to_divisor(baud, 48000000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838}
839
Ian Abbott74ede0f2005-07-29 12:16:41 -0700840#define set_mctrl(port, set) update_mctrl((port), (set), 0)
841#define clear_mctrl(port, clear) update_mctrl((port), 0, (clear))
842
Alan Cox464cbb22008-07-22 11:11:23 +0100843static int update_mctrl(struct usb_serial_port *port, unsigned int set,
844 unsigned int clear)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845{
846 struct ftdi_private *priv = usb_get_serial_port_data(port);
847 char *buf;
Ian Abbott74ede0f2005-07-29 12:16:41 -0700848 unsigned urb_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 int rv;
Ian Abbott74ede0f2005-07-29 12:16:41 -0700850
851 if (((set | clear) & (TIOCM_DTR | TIOCM_RTS)) == 0) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800852 dbg("%s - DTR|RTS not being set|cleared", __func__);
Ian Abbott74ede0f2005-07-29 12:16:41 -0700853 return 0; /* no change */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 }
Ian Abbott74ede0f2005-07-29 12:16:41 -0700855
856 buf = kmalloc(1, GFP_NOIO);
Alan Cox9b0f2582008-02-20 20:49:53 +0000857 if (!buf)
Ian Abbott74ede0f2005-07-29 12:16:41 -0700858 return -ENOMEM;
Ian Abbott74ede0f2005-07-29 12:16:41 -0700859
860 clear &= ~set; /* 'set' takes precedence over 'clear' */
861 urb_value = 0;
862 if (clear & TIOCM_DTR)
863 urb_value |= FTDI_SIO_SET_DTR_LOW;
864 if (clear & TIOCM_RTS)
865 urb_value |= FTDI_SIO_SET_RTS_LOW;
866 if (set & TIOCM_DTR)
867 urb_value |= FTDI_SIO_SET_DTR_HIGH;
868 if (set & TIOCM_RTS)
869 urb_value |= FTDI_SIO_SET_RTS_HIGH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 rv = usb_control_msg(port->serial->dev,
871 usb_sndctrlpipe(port->serial->dev, 0),
David Brownell5c09d142006-10-13 15:57:58 -0700872 FTDI_SIO_SET_MODEM_CTRL_REQUEST,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 FTDI_SIO_SET_MODEM_CTRL_REQUEST_TYPE,
Ian Abbott74ede0f2005-07-29 12:16:41 -0700874 urb_value, priv->interface,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 buf, 0, WDR_TIMEOUT);
876
877 kfree(buf);
Ian Abbott74ede0f2005-07-29 12:16:41 -0700878 if (rv < 0) {
Alan Cox43b11d32008-10-13 10:36:00 +0100879 dbg("%s Error from MODEM_CTRL urb: DTR %s, RTS %s",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800880 __func__,
Ian Abbott74ede0f2005-07-29 12:16:41 -0700881 (set & TIOCM_DTR) ? "HIGH" :
882 (clear & TIOCM_DTR) ? "LOW" : "unchanged",
883 (set & TIOCM_RTS) ? "HIGH" :
884 (clear & TIOCM_RTS) ? "LOW" : "unchanged");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 } else {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800886 dbg("%s - DTR %s, RTS %s", __func__,
Ian Abbott74ede0f2005-07-29 12:16:41 -0700887 (set & TIOCM_DTR) ? "HIGH" :
888 (clear & TIOCM_DTR) ? "LOW" : "unchanged",
889 (set & TIOCM_RTS) ? "HIGH" :
890 (clear & TIOCM_RTS) ? "LOW" : "unchanged");
Alan Cox9b0f2582008-02-20 20:49:53 +0000891 /* FIXME: locking on last_dtr_rts */
Ian Abbott74ede0f2005-07-29 12:16:41 -0700892 priv->last_dtr_rts = (priv->last_dtr_rts & ~clear) | set;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 return rv;
895}
896
897
Alan Cox464cbb22008-07-22 11:11:23 +0100898static __u32 get_ftdi_divisor(struct tty_struct *tty,
899 struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900{ /* get_ftdi_divisor */
901 struct ftdi_private *priv = usb_get_serial_port_data(port);
902 __u32 div_value = 0;
903 int div_okay = 1;
904 int baud;
905
906 /*
Alan Cox464cbb22008-07-22 11:11:23 +0100907 * The logic involved in setting the baudrate can be cleanly split into
908 * 3 steps.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 * 1. Standard baud rates are set in tty->termios->c_cflag
Alan Cox464cbb22008-07-22 11:11:23 +0100910 * 2. If these are not enough, you can set any speed using alt_speed as
911 * follows:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 * - set tty->termios->c_cflag speed to B38400
913 * - set your real speed in tty->alt_speed; it gets ignored when
914 * alt_speed==0, (or)
Alan Cox464cbb22008-07-22 11:11:23 +0100915 * - call TIOCSSERIAL ioctl with (struct serial_struct) set as
916 * follows:
917 * flags & ASYNC_SPD_MASK == ASYNC_SPD_[HI, VHI, SHI, WARP],
918 * this just sets alt_speed to (HI: 57600, VHI: 115200,
919 * SHI: 230400, WARP: 460800)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 * ** Steps 1, 2 are done courtesy of tty_get_baud_rate
921 * 3. You can also set baud rate by setting custom divisor as follows
922 * - set tty->termios->c_cflag speed to B38400
Alan Cox464cbb22008-07-22 11:11:23 +0100923 * - call TIOCSSERIAL ioctl with (struct serial_struct) set as
924 * follows:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 * o flags & ASYNC_SPD_MASK == ASYNC_SPD_CUST
926 * o custom_divisor set to baud_base / your_new_baudrate
Alan Cox464cbb22008-07-22 11:11:23 +0100927 * ** Step 3 is done courtesy of code borrowed from serial.c
928 * I should really spend some time and separate + move this common
929 * code to serial.c, it is replicated in nearly every serial driver
930 * you see.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 */
932
Alan Cox464cbb22008-07-22 11:11:23 +0100933 /* 1. Get the baud rate from the tty settings, this observes
934 alt_speed hack */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935
Alan Cox95da3102008-07-22 11:09:07 +0100936 baud = tty_get_baud_rate(tty);
Harvey Harrison441b62c2008-03-03 16:08:34 -0800937 dbg("%s - tty_get_baud_rate reports speed %d", __func__, baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938
Alan Cox464cbb22008-07-22 11:11:23 +0100939 /* 2. Observe async-compatible custom_divisor hack, update baudrate
940 if needed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
942 if (baud == 38400 &&
943 ((priv->flags & ASYNC_SPD_MASK) == ASYNC_SPD_CUST) &&
944 (priv->custom_divisor)) {
945 baud = priv->baud_base / priv->custom_divisor;
Alan Cox464cbb22008-07-22 11:11:23 +0100946 dbg("%s - custom divisor %d sets baud rate to %d",
947 __func__, priv->custom_divisor, baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 }
949
950 /* 3. Convert baudrate to device-specific divisor */
951
Alan Cox464cbb22008-07-22 11:11:23 +0100952 if (!baud)
953 baud = 9600;
954 switch (priv->chip_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 case SIO: /* SIO chip */
Alan Cox464cbb22008-07-22 11:11:23 +0100956 switch (baud) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 case 300: div_value = ftdi_sio_b300; break;
958 case 600: div_value = ftdi_sio_b600; break;
959 case 1200: div_value = ftdi_sio_b1200; break;
960 case 2400: div_value = ftdi_sio_b2400; break;
961 case 4800: div_value = ftdi_sio_b4800; break;
962 case 9600: div_value = ftdi_sio_b9600; break;
963 case 19200: div_value = ftdi_sio_b19200; break;
964 case 38400: div_value = ftdi_sio_b38400; break;
965 case 57600: div_value = ftdi_sio_b57600; break;
966 case 115200: div_value = ftdi_sio_b115200; break;
967 } /* baud */
968 if (div_value == 0) {
Alan Cox464cbb22008-07-22 11:11:23 +0100969 dbg("%s - Baudrate (%d) requested is not supported",
970 __func__, baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 div_value = ftdi_sio_b9600;
Andrew Mortonbd5e47c2007-10-18 01:24:25 -0700972 baud = 9600;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 div_okay = 0;
974 }
975 break;
976 case FT8U232AM: /* 8U232AM chip */
977 if (baud <= 3000000) {
978 div_value = ftdi_232am_baud_to_divisor(baud);
979 } else {
Alan Cox464cbb22008-07-22 11:11:23 +0100980 dbg("%s - Baud rate too high!", __func__);
Andrew Mortonbd5e47c2007-10-18 01:24:25 -0700981 baud = 9600;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 div_value = ftdi_232am_baud_to_divisor(9600);
983 div_okay = 0;
984 }
985 break;
986 case FT232BM: /* FT232BM chip */
987 case FT2232C: /* FT2232C chip */
David Brownell3b009c62007-03-23 12:54:27 -0700988 case FT232RL:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 if (baud <= 3000000) {
990 div_value = ftdi_232bm_baud_to_divisor(baud);
991 } else {
Alan Cox464cbb22008-07-22 11:11:23 +0100992 dbg("%s - Baud rate too high!", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 div_value = ftdi_232bm_baud_to_divisor(9600);
994 div_okay = 0;
Alan Cox669a6db2007-10-18 01:24:24 -0700995 baud = 9600;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 }
997 break;
998 } /* priv->chip_type */
999
1000 if (div_okay) {
1001 dbg("%s - Baud rate set to %d (divisor 0x%lX) on chip %s",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001002 __func__, baud, (unsigned long)div_value,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 ftdi_chip_name[priv->chip_type]);
1004 }
1005
Alan Cox95da3102008-07-22 11:09:07 +01001006 tty_encode_baud_rate(tty, baud, baud);
Alan Cox464cbb22008-07-22 11:11:23 +01001007 return div_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008}
1009
Alan Cox95da3102008-07-22 11:09:07 +01001010static int change_speed(struct tty_struct *tty, struct usb_serial_port *port)
1011{
1012 struct ftdi_private *priv = usb_get_serial_port_data(port);
1013 char *buf;
Alan Cox464cbb22008-07-22 11:11:23 +01001014 __u16 urb_value;
Alan Cox95da3102008-07-22 11:09:07 +01001015 __u16 urb_index;
1016 __u32 urb_index_value;
1017 int rv;
1018
1019 buf = kmalloc(1, GFP_NOIO);
1020 if (!buf)
1021 return -ENOMEM;
1022
1023 urb_index_value = get_ftdi_divisor(tty, port);
1024 urb_value = (__u16)urb_index_value;
1025 urb_index = (__u16)(urb_index_value >> 16);
1026 if (priv->interface) { /* FT2232C */
1027 urb_index = (__u16)((urb_index << 8) | priv->interface);
1028 }
1029
1030 rv = usb_control_msg(port->serial->dev,
1031 usb_sndctrlpipe(port->serial->dev, 0),
1032 FTDI_SIO_SET_BAUDRATE_REQUEST,
1033 FTDI_SIO_SET_BAUDRATE_REQUEST_TYPE,
1034 urb_value, urb_index,
1035 buf, 0, WDR_SHORT_TIMEOUT);
1036
1037 kfree(buf);
1038 return rv;
1039}
1040
1041
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042
Alan Cox464cbb22008-07-22 11:11:23 +01001043static int get_serial_info(struct usb_serial_port *port,
1044 struct serial_struct __user *retinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045{
1046 struct ftdi_private *priv = usb_get_serial_port_data(port);
1047 struct serial_struct tmp;
1048
1049 if (!retinfo)
1050 return -EFAULT;
1051 memset(&tmp, 0, sizeof(tmp));
1052 tmp.flags = priv->flags;
1053 tmp.baud_base = priv->baud_base;
1054 tmp.custom_divisor = priv->custom_divisor;
1055 if (copy_to_user(retinfo, &tmp, sizeof(*retinfo)))
1056 return -EFAULT;
1057 return 0;
1058} /* get_serial_info */
1059
1060
Alan Cox95da3102008-07-22 11:09:07 +01001061static int set_serial_info(struct tty_struct *tty,
Alan Cox464cbb22008-07-22 11:11:23 +01001062 struct usb_serial_port *port, struct serial_struct __user *newinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063{ /* set_serial_info */
1064 struct ftdi_private *priv = usb_get_serial_port_data(port);
1065 struct serial_struct new_serial;
1066 struct ftdi_private old_priv;
1067
1068 if (copy_from_user(&new_serial, newinfo, sizeof(new_serial)))
1069 return -EFAULT;
Alan Cox6b447f042009-01-02 13:48:56 +00001070
1071 lock_kernel();
Alan Cox464cbb22008-07-22 11:11:23 +01001072 old_priv = *priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073
1074 /* Do error checking and permission checking */
1075
1076 if (!capable(CAP_SYS_ADMIN)) {
1077 if (((new_serial.flags & ~ASYNC_USR_MASK) !=
Dan Carpenter64905b42009-02-03 11:11:38 +03001078 (priv->flags & ~ASYNC_USR_MASK))) {
1079 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 return -EPERM;
Dan Carpenter64905b42009-02-03 11:11:38 +03001081 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 priv->flags = ((priv->flags & ~ASYNC_USR_MASK) |
1083 (new_serial.flags & ASYNC_USR_MASK));
1084 priv->custom_divisor = new_serial.custom_divisor;
1085 goto check_and_exit;
1086 }
1087
1088 if ((new_serial.baud_base != priv->baud_base) &&
Alan Cox6b447f042009-01-02 13:48:56 +00001089 (new_serial.baud_base < 9600)) {
1090 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 return -EINVAL;
Alan Cox6b447f042009-01-02 13:48:56 +00001092 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093
1094 /* Make the changes - these are privileged changes! */
1095
1096 priv->flags = ((priv->flags & ~ASYNC_FLAGS) |
Alan Cox464cbb22008-07-22 11:11:23 +01001097 (new_serial.flags & ASYNC_FLAGS));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 priv->custom_divisor = new_serial.custom_divisor;
1099
Alan Cox95da3102008-07-22 11:09:07 +01001100 tty->low_latency = (priv->flags & ASYNC_LOW_LATENCY) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101
1102check_and_exit:
1103 if ((old_priv.flags & ASYNC_SPD_MASK) !=
1104 (priv->flags & ASYNC_SPD_MASK)) {
1105 if ((priv->flags & ASYNC_SPD_MASK) == ASYNC_SPD_HI)
Alan Cox95da3102008-07-22 11:09:07 +01001106 tty->alt_speed = 57600;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 else if ((priv->flags & ASYNC_SPD_MASK) == ASYNC_SPD_VHI)
Alan Cox95da3102008-07-22 11:09:07 +01001108 tty->alt_speed = 115200;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 else if ((priv->flags & ASYNC_SPD_MASK) == ASYNC_SPD_SHI)
Alan Cox95da3102008-07-22 11:09:07 +01001110 tty->alt_speed = 230400;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 else if ((priv->flags & ASYNC_SPD_MASK) == ASYNC_SPD_WARP)
Alan Cox95da3102008-07-22 11:09:07 +01001112 tty->alt_speed = 460800;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 else
Alan Cox95da3102008-07-22 11:09:07 +01001114 tty->alt_speed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 }
1116 if (((old_priv.flags & ASYNC_SPD_MASK) !=
1117 (priv->flags & ASYNC_SPD_MASK)) ||
1118 (((priv->flags & ASYNC_SPD_MASK) == ASYNC_SPD_CUST) &&
1119 (old_priv.custom_divisor != priv->custom_divisor))) {
Alan Cox6b447f042009-01-02 13:48:56 +00001120 unlock_kernel();
Alan Cox95da3102008-07-22 11:09:07 +01001121 change_speed(tty, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 }
Alan Cox6b447f042009-01-02 13:48:56 +00001123 else
1124 unlock_kernel();
Alan Cox95da3102008-07-22 11:09:07 +01001125 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126
1127} /* set_serial_info */
1128
1129
Ian Abbott8f977e42005-06-20 16:45:42 +01001130/* Determine type of FTDI chip based on USB config and descriptor. */
1131static void ftdi_determine_type(struct usb_serial_port *port)
1132{
1133 struct ftdi_private *priv = usb_get_serial_port_data(port);
1134 struct usb_serial *serial = port->serial;
1135 struct usb_device *udev = serial->dev;
1136 unsigned version;
1137 unsigned interfaces;
1138
1139 /* Assume it is not the original SIO device for now. */
Ian Abbottf5e09b72005-09-12 12:23:25 +01001140 priv->baud_base = 48000000 / 2;
Ian Abbott8f977e42005-06-20 16:45:42 +01001141 priv->write_offset = 0;
1142
1143 version = le16_to_cpu(udev->descriptor.bcdDevice);
1144 interfaces = udev->actconfig->desc.bNumInterfaces;
Harvey Harrison441b62c2008-03-03 16:08:34 -08001145 dbg("%s: bcdDevice = 0x%x, bNumInterfaces = %u", __func__,
Ian Abbott8f977e42005-06-20 16:45:42 +01001146 version, interfaces);
1147 if (interfaces > 1) {
1148 int inter;
1149
1150 /* Multiple interfaces. Assume FT2232C. */
1151 priv->chip_type = FT2232C;
1152 /* Determine interface code. */
1153 inter = serial->interface->altsetting->desc.bInterfaceNumber;
Alan Cox464cbb22008-07-22 11:11:23 +01001154 if (inter == 0)
Ian Abbott8f977e42005-06-20 16:45:42 +01001155 priv->interface = PIT_SIOA;
Alan Cox464cbb22008-07-22 11:11:23 +01001156 else
Ian Abbott8f977e42005-06-20 16:45:42 +01001157 priv->interface = PIT_SIOB;
Ian Abbott8f977e42005-06-20 16:45:42 +01001158 /* BM-type devices have a bug where bcdDevice gets set
1159 * to 0x200 when iSerialNumber is 0. */
1160 if (version < 0x500) {
1161 dbg("%s: something fishy - bcdDevice too low for multi-interface device",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001162 __func__);
Ian Abbott8f977e42005-06-20 16:45:42 +01001163 }
1164 } else if (version < 0x200) {
1165 /* Old device. Assume its the original SIO. */
1166 priv->chip_type = SIO;
1167 priv->baud_base = 12000000 / 16;
1168 priv->write_offset = 1;
1169 } else if (version < 0x400) {
1170 /* Assume its an FT8U232AM (or FT8U245AM) */
1171 /* (It might be a BM because of the iSerialNumber bug,
1172 * but it will still work as an AM device.) */
1173 priv->chip_type = FT8U232AM;
David Brownell3b009c62007-03-23 12:54:27 -07001174 } else if (version < 0x600) {
Ian Abbott8f977e42005-06-20 16:45:42 +01001175 /* Assume its an FT232BM (or FT245BM) */
1176 priv->chip_type = FT232BM;
David Brownell3b009c62007-03-23 12:54:27 -07001177 } else {
1178 /* Assume its an FT232R */
1179 priv->chip_type = FT232RL;
Ian Abbott8f977e42005-06-20 16:45:42 +01001180 }
Greg Kroah-Hartmanc197a8d2008-08-18 13:21:04 -07001181 dev_info(&udev->dev, "Detected %s\n", ftdi_chip_name[priv->chip_type]);
Ian Abbott8f977e42005-06-20 16:45:42 +01001182}
1183
1184
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185/*
1186 * ***************************************************************************
1187 * Sysfs Attribute
1188 * ***************************************************************************
1189 */
1190
Alan Cox464cbb22008-07-22 11:11:23 +01001191static ssize_t show_latency_timer(struct device *dev,
1192 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193{
1194 struct usb_serial_port *port = to_usb_serial_port(dev);
1195 struct ftdi_private *priv = usb_get_serial_port_data(port);
Jim Radford12bdbe02007-02-28 10:10:50 -08001196 struct usb_device *udev = port->serial->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 unsigned short latency = 0;
1198 int rv = 0;
David Brownell5c09d142006-10-13 15:57:58 -07001199
David Brownell5c09d142006-10-13 15:57:58 -07001200
Alan Cox464cbb22008-07-22 11:11:23 +01001201 dbg("%s", __func__);
David Brownell5c09d142006-10-13 15:57:58 -07001202
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 rv = usb_control_msg(udev,
1204 usb_rcvctrlpipe(udev, 0),
1205 FTDI_SIO_GET_LATENCY_TIMER_REQUEST,
1206 FTDI_SIO_GET_LATENCY_TIMER_REQUEST_TYPE,
David Brownell5c09d142006-10-13 15:57:58 -07001207 0, priv->interface,
Alan Cox464cbb22008-07-22 11:11:23 +01001208 (char *) &latency, 1, WDR_TIMEOUT);
David Brownell5c09d142006-10-13 15:57:58 -07001209
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 if (rv < 0) {
Joe Perches898eb712007-10-18 03:06:30 -07001211 dev_err(dev, "Unable to read latency timer: %i\n", rv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 return -EIO;
1213 }
1214 return sprintf(buf, "%i\n", latency);
1215}
1216
1217/* Write a new value of the latency timer, in units of milliseconds. */
Alan Cox464cbb22008-07-22 11:11:23 +01001218static ssize_t store_latency_timer(struct device *dev,
1219 struct device_attribute *attr, const char *valbuf,
1220 size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221{
1222 struct usb_serial_port *port = to_usb_serial_port(dev);
1223 struct ftdi_private *priv = usb_get_serial_port_data(port);
Jim Radford12bdbe02007-02-28 10:10:50 -08001224 struct usb_device *udev = port->serial->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 char buf[1];
1226 int v = simple_strtoul(valbuf, NULL, 10);
1227 int rv = 0;
David Brownell5c09d142006-10-13 15:57:58 -07001228
Harvey Harrison441b62c2008-03-03 16:08:34 -08001229 dbg("%s: setting latency timer = %i", __func__, v);
David Brownell5c09d142006-10-13 15:57:58 -07001230
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 rv = usb_control_msg(udev,
1232 usb_sndctrlpipe(udev, 0),
1233 FTDI_SIO_SET_LATENCY_TIMER_REQUEST,
1234 FTDI_SIO_SET_LATENCY_TIMER_REQUEST_TYPE,
David Brownell5c09d142006-10-13 15:57:58 -07001235 v, priv->interface,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 buf, 0, WDR_TIMEOUT);
David Brownell5c09d142006-10-13 15:57:58 -07001237
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 if (rv < 0) {
Joe Perches898eb712007-10-18 03:06:30 -07001239 dev_err(dev, "Unable to write latency timer: %i\n", rv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 return -EIO;
1241 }
David Brownell5c09d142006-10-13 15:57:58 -07001242
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 return count;
1244}
1245
1246/* Write an event character directly to the FTDI register. The ASCII
1247 value is in the low 8 bits, with the enable bit in the 9th bit. */
Alan Cox464cbb22008-07-22 11:11:23 +01001248static ssize_t store_event_char(struct device *dev,
1249 struct device_attribute *attr, const char *valbuf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250{
1251 struct usb_serial_port *port = to_usb_serial_port(dev);
1252 struct ftdi_private *priv = usb_get_serial_port_data(port);
Jim Radford12bdbe02007-02-28 10:10:50 -08001253 struct usb_device *udev = port->serial->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 char buf[1];
1255 int v = simple_strtoul(valbuf, NULL, 10);
1256 int rv = 0;
David Brownell5c09d142006-10-13 15:57:58 -07001257
Harvey Harrison441b62c2008-03-03 16:08:34 -08001258 dbg("%s: setting event char = %i", __func__, v);
David Brownell5c09d142006-10-13 15:57:58 -07001259
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 rv = usb_control_msg(udev,
1261 usb_sndctrlpipe(udev, 0),
1262 FTDI_SIO_SET_EVENT_CHAR_REQUEST,
1263 FTDI_SIO_SET_EVENT_CHAR_REQUEST_TYPE,
David Brownell5c09d142006-10-13 15:57:58 -07001264 v, priv->interface,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 buf, 0, WDR_TIMEOUT);
David Brownell5c09d142006-10-13 15:57:58 -07001266
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 if (rv < 0) {
1268 dbg("Unable to write event character: %i", rv);
1269 return -EIO;
1270 }
David Brownell5c09d142006-10-13 15:57:58 -07001271
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 return count;
1273}
1274
Alan Cox464cbb22008-07-22 11:11:23 +01001275static DEVICE_ATTR(latency_timer, S_IWUSR | S_IRUGO, show_latency_timer,
1276 store_latency_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277static DEVICE_ATTR(event_char, S_IWUSR, NULL, store_event_char);
1278
Jim Radford12bdbe02007-02-28 10:10:50 -08001279static int create_sysfs_attrs(struct usb_serial_port *port)
Greg Kroah-Hartman13f4db92006-08-28 11:43:25 -07001280{
Jim Radford12bdbe02007-02-28 10:10:50 -08001281 struct ftdi_private *priv = usb_get_serial_port_data(port);
Greg Kroah-Hartman13f4db92006-08-28 11:43:25 -07001282 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
Alan Cox464cbb22008-07-22 11:11:23 +01001284 dbg("%s", __func__);
Greg Kroah-Hartman13f4db92006-08-28 11:43:25 -07001285
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 /* XXX I've no idea if the original SIO supports the event_char
1287 * sysfs parameter, so I'm playing it safe. */
1288 if (priv->chip_type != SIO) {
1289 dbg("sysfs attributes for %s", ftdi_chip_name[priv->chip_type]);
Jim Radford12bdbe02007-02-28 10:10:50 -08001290 retval = device_create_file(&port->dev, &dev_attr_event_char);
Greg Kroah-Hartman13f4db92006-08-28 11:43:25 -07001291 if ((!retval) &&
Stepan Moskovchenko97cd49e2007-05-09 14:53:04 -04001292 (priv->chip_type == FT232BM ||
1293 priv->chip_type == FT2232C ||
1294 priv->chip_type == FT232RL)) {
Jim Radford12bdbe02007-02-28 10:10:50 -08001295 retval = device_create_file(&port->dev,
Greg Kroah-Hartman13f4db92006-08-28 11:43:25 -07001296 &dev_attr_latency_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 }
1298 }
Greg Kroah-Hartman13f4db92006-08-28 11:43:25 -07001299 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300}
1301
Jim Radford12bdbe02007-02-28 10:10:50 -08001302static void remove_sysfs_attrs(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303{
Jim Radford12bdbe02007-02-28 10:10:50 -08001304 struct ftdi_private *priv = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305
Alan Cox464cbb22008-07-22 11:11:23 +01001306 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 /* XXX see create_sysfs_attrs */
1309 if (priv->chip_type != SIO) {
Jim Radford12bdbe02007-02-28 10:10:50 -08001310 device_remove_file(&port->dev, &dev_attr_event_char);
Andrew M. Bishoped6e5282007-08-21 19:08:56 +01001311 if (priv->chip_type == FT232BM ||
1312 priv->chip_type == FT2232C ||
1313 priv->chip_type == FT232RL) {
Jim Radford12bdbe02007-02-28 10:10:50 -08001314 device_remove_file(&port->dev, &dev_attr_latency_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 }
1316 }
David Brownell5c09d142006-10-13 15:57:58 -07001317
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318}
1319
1320/*
1321 * ***************************************************************************
1322 * FTDI driver specific functions
1323 * ***************************************************************************
1324 */
1325
Ian Abbott8f977e42005-06-20 16:45:42 +01001326/* Probe function to check for special devices */
Alan Cox464cbb22008-07-22 11:11:23 +01001327static int ftdi_sio_probe(struct usb_serial *serial,
1328 const struct usb_device_id *id)
Ian Abbott8f977e42005-06-20 16:45:42 +01001329{
Alan Cox464cbb22008-07-22 11:11:23 +01001330 struct ftdi_sio_quirk *quirk =
1331 (struct ftdi_sio_quirk *)id->driver_info;
Tony Lindgrenfa91d432007-05-04 18:23:24 -07001332
1333 if (quirk && quirk->probe) {
1334 int ret = quirk->probe(serial);
1335 if (ret != 0)
1336 return ret;
1337 }
1338
Ian Abbott8f977e42005-06-20 16:45:42 +01001339 usb_set_serial_data(serial, (void *)id->driver_info);
1340
Tony Lindgrenfa91d432007-05-04 18:23:24 -07001341 return 0;
Ian Abbott8f977e42005-06-20 16:45:42 +01001342}
1343
Jim Radford12bdbe02007-02-28 10:10:50 -08001344static int ftdi_sio_port_probe(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 struct ftdi_private *priv;
Oliver Neukum0ffbbe22007-07-09 12:03:08 -07001347 struct ftdi_sio_quirk *quirk = usb_get_serial_data(port->serial);
1348
Greg Kroah-Hartman13f4db92006-08-28 11:43:25 -07001349
Alan Cox464cbb22008-07-22 11:11:23 +01001350 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351
Eric Sesterhenn80b6ca42006-02-27 21:29:43 +01001352 priv = kzalloc(sizeof(struct ftdi_private), GFP_KERNEL);
Alan Cox464cbb22008-07-22 11:11:23 +01001353 if (!priv) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07001354 dev_err(&port->dev, "%s- kmalloc(%Zd) failed.\n", __func__,
Alan Cox464cbb22008-07-22 11:11:23 +01001355 sizeof(struct ftdi_private));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 return -ENOMEM;
1357 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358
Alan Sternc45d6322009-04-30 10:06:19 -04001359 kref_init(&priv->kref);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 spin_lock_init(&priv->rx_lock);
Ian Abbott22465402006-06-26 12:59:17 +01001361 spin_lock_init(&priv->tx_lock);
Alan Cox464cbb22008-07-22 11:11:23 +01001362 init_waitqueue_head(&priv->delta_msr_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 /* This will push the characters through immediately rather
1364 than queue a task to deliver them */
1365 priv->flags = ASYNC_LOW_LATENCY;
1366
Oliver Neukum0ffbbe22007-07-09 12:03:08 -07001367 if (quirk && quirk->port_probe)
1368 quirk->port_probe(priv);
1369
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 /* Increase the size of read buffers */
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -07001371 kfree(port->bulk_in_buffer);
Alan Cox464cbb22008-07-22 11:11:23 +01001372 port->bulk_in_buffer = kmalloc(BUFSZ, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 if (!port->bulk_in_buffer) {
Alan Cox464cbb22008-07-22 11:11:23 +01001374 kfree(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 return -ENOMEM;
1376 }
1377 if (port->read_urb) {
1378 port->read_urb->transfer_buffer = port->bulk_in_buffer;
1379 port->read_urb->transfer_buffer_length = BUFSZ;
1380 }
1381
David Howellsc4028952006-11-22 14:57:56 +00001382 INIT_DELAYED_WORK(&priv->rx_work, ftdi_process_read);
1383 priv->port = port;
Ian Abbott76854ce2005-06-02 10:34:11 +01001384
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 /* Free port's existing write urb and transfer buffer. */
1386 if (port->write_urb) {
Alan Cox464cbb22008-07-22 11:11:23 +01001387 usb_free_urb(port->write_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 port->write_urb = NULL;
1389 }
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -07001390 kfree(port->bulk_out_buffer);
1391 port->bulk_out_buffer = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392
Jim Radford12bdbe02007-02-28 10:10:50 -08001393 usb_set_serial_port_data(port, priv);
Ian Abbott8f977e42005-06-20 16:45:42 +01001394
Alan Cox464cbb22008-07-22 11:11:23 +01001395 ftdi_determine_type(port);
Jim Radford12bdbe02007-02-28 10:10:50 -08001396 create_sysfs_attrs(port);
1397 return 0;
1398}
Ian Abbott8f977e42005-06-20 16:45:42 +01001399
Ian Abbott8f977e42005-06-20 16:45:42 +01001400/* Setup for the USB-UIRT device, which requires hardwired
1401 * baudrate (38400 gets mapped to 312500) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402/* Called from usbserial:serial_probe */
Alan Cox464cbb22008-07-22 11:11:23 +01001403static void ftdi_USB_UIRT_setup(struct ftdi_private *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404{
Alan Cox464cbb22008-07-22 11:11:23 +01001405 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 priv->flags |= ASYNC_SPD_CUST;
1408 priv->custom_divisor = 77;
Alan Cox669a6db2007-10-18 01:24:24 -07001409 priv->force_baud = 38400;
Ian Abbott8f977e42005-06-20 16:45:42 +01001410} /* ftdi_USB_UIRT_setup */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411
Ian Abbott8f977e42005-06-20 16:45:42 +01001412/* Setup for the HE-TIRA1 device, which requires hardwired
1413 * baudrate (38400 gets mapped to 100000) and RTS-CTS enabled. */
Alan Cox464cbb22008-07-22 11:11:23 +01001414
1415static void ftdi_HE_TIRA1_setup(struct ftdi_private *priv)
Ian Abbott8f977e42005-06-20 16:45:42 +01001416{
Alan Cox464cbb22008-07-22 11:11:23 +01001417 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 priv->flags |= ASYNC_SPD_CUST;
1420 priv->custom_divisor = 240;
Alan Cox669a6db2007-10-18 01:24:24 -07001421 priv->force_baud = 38400;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 priv->force_rtscts = 1;
Ian Abbott8f977e42005-06-20 16:45:42 +01001423} /* ftdi_HE_TIRA1_setup */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424
Tony Lindgrenfa91d432007-05-04 18:23:24 -07001425/*
Harald Welte20734342008-01-01 15:08:35 +01001426 * First port on JTAG adaptors such as Olimex arm-usb-ocd or the FIC/OpenMoko
1427 * Neo1973 Debug Board is reserved for JTAG interface and can be accessed from
1428 * userspace using openocd.
Tony Lindgrenfa91d432007-05-04 18:23:24 -07001429 */
Harald Welte20734342008-01-01 15:08:35 +01001430static int ftdi_jtag_probe(struct usb_serial *serial)
Tony Lindgrenfa91d432007-05-04 18:23:24 -07001431{
1432 struct usb_device *udev = serial->dev;
1433 struct usb_interface *interface = serial->interface;
1434
Alan Cox464cbb22008-07-22 11:11:23 +01001435 dbg("%s", __func__);
Tony Lindgrenfa91d432007-05-04 18:23:24 -07001436
1437 if (interface == udev->actconfig->interface[0]) {
Greg Kroah-Hartmanc197a8d2008-08-18 13:21:04 -07001438 dev_info(&udev->dev,
1439 "Ignoring serial port reserved for JTAG\n");
Tony Lindgrenfa91d432007-05-04 18:23:24 -07001440 return -ENODEV;
1441 }
1442
1443 return 0;
1444}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445
Kevin Vance546d7ee2008-03-01 13:49:59 -05001446/*
1447 * The Matrix Orbital VK204-25-USB has an invalid IN endpoint.
1448 * We have to correct it if we want to read from it.
1449 */
1450static int ftdi_mtxorb_hack_setup(struct usb_serial *serial)
1451{
1452 struct usb_host_endpoint *ep = serial->dev->ep_in[1];
1453 struct usb_endpoint_descriptor *ep_desc = &ep->desc;
1454
1455 if (ep->enabled && ep_desc->wMaxPacketSize == 0) {
Al Virofd05e722008-04-28 07:00:16 +01001456 ep_desc->wMaxPacketSize = cpu_to_le16(0x40);
Greg Kroah-Hartmanc197a8d2008-08-18 13:21:04 -07001457 dev_info(&serial->dev->dev,
1458 "Fixing invalid wMaxPacketSize on read pipe\n");
Kevin Vance546d7ee2008-03-01 13:49:59 -05001459 }
1460
1461 return 0;
1462}
1463
David Brownell5c09d142006-10-13 15:57:58 -07001464/* ftdi_shutdown is called from usbserial:usb_serial_disconnect
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 * it is called when the usb device is disconnected
1466 *
1467 * usbserial:usb_serial_disconnect
1468 * calls __serial_close for each open of the port
1469 * shutdown is called then (ie ftdi_shutdown)
1470 */
Alan Cox464cbb22008-07-22 11:11:23 +01001471static void ftdi_shutdown(struct usb_serial *serial)
Jim Radford12bdbe02007-02-28 10:10:50 -08001472{
Harvey Harrison441b62c2008-03-03 16:08:34 -08001473 dbg("%s", __func__);
Jim Radford12bdbe02007-02-28 10:10:50 -08001474}
David Brownell5c09d142006-10-13 15:57:58 -07001475
Alan Sternc45d6322009-04-30 10:06:19 -04001476static void ftdi_sio_priv_release(struct kref *k)
1477{
1478 struct ftdi_private *priv = container_of(k, struct ftdi_private, kref);
1479
1480 kfree(priv);
1481}
1482
Jim Radford12bdbe02007-02-28 10:10:50 -08001483static int ftdi_sio_port_remove(struct usb_serial_port *port)
1484{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 struct ftdi_private *priv = usb_get_serial_port_data(port);
1486
Harvey Harrison441b62c2008-03-03 16:08:34 -08001487 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488
Jim Radford12bdbe02007-02-28 10:10:50 -08001489 remove_sysfs_attrs(port);
David Brownell5c09d142006-10-13 15:57:58 -07001490
David Woodhouse80193192009-05-18 13:07:35 +01001491 kref_put(&priv->kref, ftdi_sio_priv_release);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492
Jim Radford12bdbe02007-02-28 10:10:50 -08001493 return 0;
1494}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495
Alan Cox95da3102008-07-22 11:09:07 +01001496static int ftdi_open(struct tty_struct *tty,
1497 struct usb_serial_port *port, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498{ /* ftdi_open */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 struct usb_device *dev = port->serial->dev;
1500 struct ftdi_private *priv = usb_get_serial_port_data(port);
1501 unsigned long flags;
David Brownell5c09d142006-10-13 15:57:58 -07001502
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 int result = 0;
1504 char buf[1]; /* Needed for the usb_control_msg I think */
1505
Harvey Harrison441b62c2008-03-03 16:08:34 -08001506 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507
Ian Abbott22465402006-06-26 12:59:17 +01001508 spin_lock_irqsave(&priv->tx_lock, flags);
1509 priv->tx_bytes = 0;
1510 spin_unlock_irqrestore(&priv->tx_lock, flags);
1511 spin_lock_irqsave(&priv->rx_lock, flags);
1512 priv->rx_bytes = 0;
1513 spin_unlock_irqrestore(&priv->rx_lock, flags);
1514
Alan Cox95da3102008-07-22 11:09:07 +01001515 if (tty)
1516 tty->low_latency = (priv->flags & ASYNC_LOW_LATENCY) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517
1518 /* No error checking for this (will get errors later anyway) */
1519 /* See ftdi_sio.h for description of what is reset */
1520 usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
David Brownell5c09d142006-10-13 15:57:58 -07001521 FTDI_SIO_RESET_REQUEST, FTDI_SIO_RESET_REQUEST_TYPE,
1522 FTDI_SIO_RESET_SIO,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 priv->interface, buf, 0, WDR_TIMEOUT);
1524
1525 /* Termios defaults are set by usb_serial_init. We don't change
Nick Andrewc4f01242008-12-05 16:34:46 +00001526 port->tty->termios - this would lose speed settings, etc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 This is same behaviour as serial.c/rs_open() - Kuba */
1528
1529 /* ftdi_set_termios will send usb control messages */
Alan Cox95da3102008-07-22 11:09:07 +01001530 if (tty)
1531 ftdi_set_termios(tty, port, tty->termios);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532
1533 /* FIXME: Flow control might be enabled, so it should be checked -
1534 we have no control of defaults! */
1535 /* Turn on RTS and DTR since we are not flow controlling by default */
Ian Abbott74ede0f2005-07-29 12:16:41 -07001536 set_mctrl(port, TIOCM_DTR | TIOCM_RTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537
1538 /* Not throttled */
1539 spin_lock_irqsave(&priv->rx_lock, flags);
1540 priv->rx_flags &= ~(THROTTLED | ACTUALLY_THROTTLED);
1541 spin_unlock_irqrestore(&priv->rx_lock, flags);
1542
1543 /* Start reading from the device */
Ian Abbott76854ce2005-06-02 10:34:11 +01001544 priv->rx_processed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 usb_fill_bulk_urb(port->read_urb, dev,
Alan Cox464cbb22008-07-22 11:11:23 +01001546 usb_rcvbulkpipe(dev, port->bulk_in_endpointAddress),
1547 port->read_urb->transfer_buffer,
1548 port->read_urb->transfer_buffer_length,
1549 ftdi_read_bulk_callback, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 result = usb_submit_urb(port->read_urb, GFP_KERNEL);
1551 if (result)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07001552 dev_err(&port->dev,
1553 "%s - failed submitting read urb, error %d\n",
1554 __func__, result);
Alan Sternc45d6322009-04-30 10:06:19 -04001555 else
1556 kref_get(&priv->kref);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557
1558 return result;
1559} /* ftdi_open */
1560
1561
Alan Cox335f8512009-06-11 12:26:29 +01001562static void ftdi_dtr_rts(struct usb_serial_port *port, int on)
1563{
1564 struct ftdi_private *priv = usb_get_serial_port_data(port);
1565 char buf[1];
1566
1567 mutex_lock(&port->serial->disc_mutex);
1568 if (!port->serial->disconnected) {
1569 /* Disable flow control */
1570 if (!on && usb_control_msg(port->serial->dev,
1571 usb_sndctrlpipe(port->serial->dev, 0),
1572 FTDI_SIO_SET_FLOW_CTRL_REQUEST,
1573 FTDI_SIO_SET_FLOW_CTRL_REQUEST_TYPE,
1574 0, priv->interface, buf, 0,
1575 WDR_TIMEOUT) < 0) {
1576 dev_err(&port->dev, "error from flowcontrol urb\n");
1577 }
1578 /* drop RTS and DTR */
1579 if (on)
1580 set_mctrl(port, TIOCM_DTR | TIOCM_RTS);
1581 else
1582 clear_mctrl(port, TIOCM_DTR | TIOCM_RTS);
1583 }
1584 mutex_unlock(&port->serial->disc_mutex);
1585}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586
David Brownell5c09d142006-10-13 15:57:58 -07001587/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 * usbserial:__serial_close only calls ftdi_close if the point is open
1589 *
1590 * This only gets called when it is the last close
David Brownell5c09d142006-10-13 15:57:58 -07001591 *
1592 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 */
1594
Alan Cox335f8512009-06-11 12:26:29 +01001595static void ftdi_close(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596{ /* ftdi_close */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 struct ftdi_private *priv = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598
Harvey Harrison441b62c2008-03-03 16:08:34 -08001599 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600
Ian Abbott76854ce2005-06-02 10:34:11 +01001601
1602 /* cancel any scheduled reading */
Alan Sternc45d6322009-04-30 10:06:19 -04001603 cancel_delayed_work_sync(&priv->rx_work);
David Brownell5c09d142006-10-13 15:57:58 -07001604
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 /* shutdown our bulk read */
Mariusz Kozlowski794c9442006-11-08 15:36:25 +01001606 usb_kill_urb(port->read_urb);
Alan Sternc45d6322009-04-30 10:06:19 -04001607 kref_put(&priv->kref, ftdi_sio_priv_release);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608} /* ftdi_close */
1609
1610
David Brownell5c09d142006-10-13 15:57:58 -07001611
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612/* The SIO requires the first byte to have:
1613 * B0 1
1614 * B1 0
1615 * B2..7 length of message excluding byte 0
1616 *
1617 * The new devices do not require this byte
1618 */
Alan Cox95da3102008-07-22 11:09:07 +01001619static int ftdi_write(struct tty_struct *tty, struct usb_serial_port *port,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 const unsigned char *buf, int count)
1621{ /* ftdi_write */
1622 struct ftdi_private *priv = usb_get_serial_port_data(port);
1623 struct urb *urb;
1624 unsigned char *buffer;
1625 int data_offset ; /* will be 1 for the SIO and 0 otherwise */
1626 int status;
1627 int transfer_size;
Ian Abbott22465402006-06-26 12:59:17 +01001628 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629
Harvey Harrison441b62c2008-03-03 16:08:34 -08001630 dbg("%s port %d, %d bytes", __func__, port->number, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631
1632 if (count == 0) {
1633 dbg("write request of 0 bytes");
1634 return 0;
1635 }
Ian Abbott22465402006-06-26 12:59:17 +01001636 spin_lock_irqsave(&priv->tx_lock, flags);
1637 if (priv->tx_outstanding_urbs > URB_UPPER_LIMIT) {
1638 spin_unlock_irqrestore(&priv->tx_lock, flags);
Harvey Harrison441b62c2008-03-03 16:08:34 -08001639 dbg("%s - write limit hit\n", __func__);
Ian Abbott22465402006-06-26 12:59:17 +01001640 return 0;
1641 }
Oliver Neukum62127a52007-03-23 14:30:16 +01001642 priv->tx_outstanding_urbs++;
Ian Abbott22465402006-06-26 12:59:17 +01001643 spin_unlock_irqrestore(&priv->tx_lock, flags);
David Brownell5c09d142006-10-13 15:57:58 -07001644
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 data_offset = priv->write_offset;
Alan Cox464cbb22008-07-22 11:11:23 +01001646 dbg("data_offset set to %d", data_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647
1648 /* Determine total transfer size */
1649 transfer_size = count;
1650 if (data_offset > 0) {
1651 /* Original sio needs control bytes too... */
1652 transfer_size += (data_offset *
1653 ((count + (PKTSZ - 1 - data_offset)) /
1654 (PKTSZ - data_offset)));
1655 }
1656
Alan Cox464cbb22008-07-22 11:11:23 +01001657 buffer = kmalloc(transfer_size, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 if (!buffer) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07001659 dev_err(&port->dev,
1660 "%s ran out of kernel memory for urb ...\n", __func__);
Oliver Neukum62127a52007-03-23 14:30:16 +01001661 count = -ENOMEM;
1662 goto error_no_buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 }
1664
1665 urb = usb_alloc_urb(0, GFP_ATOMIC);
1666 if (!urb) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07001667 dev_err(&port->dev, "%s - no more free urbs\n", __func__);
Oliver Neukum62127a52007-03-23 14:30:16 +01001668 count = -ENOMEM;
1669 goto error_no_urb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 }
1671
1672 /* Copy data */
1673 if (data_offset > 0) {
Alan Cox464cbb22008-07-22 11:11:23 +01001674 /* Original sio requires control byte at start of
1675 each packet. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 int user_pktsz = PKTSZ - data_offset;
1677 int todo = count;
1678 unsigned char *first_byte = buffer;
1679 const unsigned char *current_position = buf;
1680
1681 while (todo > 0) {
Alan Cox464cbb22008-07-22 11:11:23 +01001682 if (user_pktsz > todo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 user_pktsz = todo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 /* Write the control byte at the front of the packet*/
David Brownell5c09d142006-10-13 15:57:58 -07001685 *first_byte = 1 | ((user_pktsz) << 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 /* Copy data for packet */
Alan Cox464cbb22008-07-22 11:11:23 +01001687 memcpy(first_byte + data_offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 current_position, user_pktsz);
1689 first_byte += user_pktsz + data_offset;
1690 current_position += user_pktsz;
1691 todo -= user_pktsz;
1692 }
1693 } else {
1694 /* No control byte required. */
1695 /* Copy in the data to send */
Alan Cox464cbb22008-07-22 11:11:23 +01001696 memcpy(buffer, buf, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 }
1698
Alan Cox464cbb22008-07-22 11:11:23 +01001699 usb_serial_debug_data(debug, &port->dev, __func__,
1700 transfer_size, buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701
1702 /* fill the buffer and send it */
David Brownell5c09d142006-10-13 15:57:58 -07001703 usb_fill_bulk_urb(urb, port->serial->dev,
Alan Cox464cbb22008-07-22 11:11:23 +01001704 usb_sndbulkpipe(port->serial->dev,
1705 port->bulk_out_endpointAddress),
1706 buffer, transfer_size,
1707 ftdi_write_bulk_callback, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708
1709 status = usb_submit_urb(urb, GFP_ATOMIC);
1710 if (status) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07001711 dev_err(&port->dev,
1712 "%s - failed submitting write urb, error %d\n",
1713 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 count = status;
Oliver Neukum62127a52007-03-23 14:30:16 +01001715 goto error;
Ian Abbott22465402006-06-26 12:59:17 +01001716 } else {
1717 spin_lock_irqsave(&priv->tx_lock, flags);
Ian Abbott22465402006-06-26 12:59:17 +01001718 priv->tx_outstanding_bytes += count;
1719 priv->tx_bytes += count;
1720 spin_unlock_irqrestore(&priv->tx_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 }
1722
1723 /* we are done with this urb, so let the host driver
1724 * really free it when it is finished with it */
Oliver Neukum62127a52007-03-23 14:30:16 +01001725 usb_free_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726
Harvey Harrison441b62c2008-03-03 16:08:34 -08001727 dbg("%s write returning: %d", __func__, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 return count;
Oliver Neukum62127a52007-03-23 14:30:16 +01001729error:
1730 usb_free_urb(urb);
1731error_no_urb:
Alan Cox464cbb22008-07-22 11:11:23 +01001732 kfree(buffer);
Oliver Neukum62127a52007-03-23 14:30:16 +01001733error_no_buffer:
1734 spin_lock_irqsave(&priv->tx_lock, flags);
1735 priv->tx_outstanding_urbs--;
1736 spin_unlock_irqrestore(&priv->tx_lock, flags);
1737 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738} /* ftdi_write */
1739
1740
1741/* This function may get called when the device is closed */
1742
Alan Cox464cbb22008-07-22 11:11:23 +01001743static void ftdi_write_bulk_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744{
Ian Abbott22465402006-06-26 12:59:17 +01001745 unsigned long flags;
Ming Leicdc97792008-02-24 18:41:47 +08001746 struct usb_serial_port *port = urb->context;
Ian Abbott22465402006-06-26 12:59:17 +01001747 struct ftdi_private *priv;
1748 int data_offset; /* will be 1 for the SIO and 0 otherwise */
1749 unsigned long countback;
Greg Kroah-Hartman0fb0aa12007-06-15 15:44:13 -07001750 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751
1752 /* free up the transfer buffer, as usb_free_urb() does not do this */
Alan Cox464cbb22008-07-22 11:11:23 +01001753 kfree(urb->transfer_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754
Harvey Harrison441b62c2008-03-03 16:08:34 -08001755 dbg("%s - port %d", __func__, port->number);
David Brownell5c09d142006-10-13 15:57:58 -07001756
Greg Kroah-Hartman0fb0aa12007-06-15 15:44:13 -07001757 if (status) {
1758 dbg("nonzero write bulk status received: %d", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 return;
1760 }
1761
Ian Abbott22465402006-06-26 12:59:17 +01001762 priv = usb_get_serial_port_data(port);
1763 if (!priv) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001764 dbg("%s - bad port private data pointer - exiting", __func__);
Ian Abbott22465402006-06-26 12:59:17 +01001765 return;
1766 }
1767 /* account for transferred data */
1768 countback = urb->actual_length;
1769 data_offset = priv->write_offset;
1770 if (data_offset > 0) {
1771 /* Subtract the control bytes */
Julia Lawalldfa5ec72008-03-04 15:25:11 -08001772 countback -= (data_offset * DIV_ROUND_UP(countback, PKTSZ));
Ian Abbott22465402006-06-26 12:59:17 +01001773 }
1774 spin_lock_irqsave(&priv->tx_lock, flags);
1775 --priv->tx_outstanding_urbs;
1776 priv->tx_outstanding_bytes -= countback;
1777 spin_unlock_irqrestore(&priv->tx_lock, flags);
1778
Pete Zaitcevcf2c7482006-05-22 21:58:49 -07001779 usb_serial_port_softint(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780} /* ftdi_write_bulk_callback */
1781
1782
Alan Cox95da3102008-07-22 11:09:07 +01001783static int ftdi_write_room(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784{
Alan Cox95da3102008-07-22 11:09:07 +01001785 struct usb_serial_port *port = tty->driver_data;
Ian Abbott22465402006-06-26 12:59:17 +01001786 struct ftdi_private *priv = usb_get_serial_port_data(port);
1787 int room;
1788 unsigned long flags;
1789
Harvey Harrison441b62c2008-03-03 16:08:34 -08001790 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791
Ian Abbott22465402006-06-26 12:59:17 +01001792 spin_lock_irqsave(&priv->tx_lock, flags);
1793 if (priv->tx_outstanding_urbs < URB_UPPER_LIMIT) {
1794 /*
1795 * We really can take anything the user throws at us
1796 * but let's pick a nice big number to tell the tty
1797 * layer that we have lots of free space
1798 */
1799 room = 2048;
1800 } else {
1801 room = 0;
1802 }
1803 spin_unlock_irqrestore(&priv->tx_lock, flags);
1804 return room;
Alan Cox95da3102008-07-22 11:09:07 +01001805}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806
Alan Cox95da3102008-07-22 11:09:07 +01001807static int ftdi_chars_in_buffer(struct tty_struct *tty)
1808{
1809 struct usb_serial_port *port = tty->driver_data;
Ian Abbott22465402006-06-26 12:59:17 +01001810 struct ftdi_private *priv = usb_get_serial_port_data(port);
1811 int buffered;
1812 unsigned long flags;
1813
Harvey Harrison441b62c2008-03-03 16:08:34 -08001814 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815
Ian Abbott22465402006-06-26 12:59:17 +01001816 spin_lock_irqsave(&priv->tx_lock, flags);
1817 buffered = (int)priv->tx_outstanding_bytes;
1818 spin_unlock_irqrestore(&priv->tx_lock, flags);
1819 if (buffered < 0) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07001820 dev_err(&port->dev, "%s outstanding tx bytes is negative!\n",
1821 __func__);
Ian Abbott22465402006-06-26 12:59:17 +01001822 buffered = 0;
1823 }
1824 return buffered;
Alan Cox95da3102008-07-22 11:09:07 +01001825}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826
Alan Cox95da3102008-07-22 11:09:07 +01001827static void ftdi_read_bulk_callback(struct urb *urb)
1828{
Ming Leicdc97792008-02-24 18:41:47 +08001829 struct usb_serial_port *port = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 struct tty_struct *tty;
1831 struct ftdi_private *priv;
Ian Abbott22465402006-06-26 12:59:17 +01001832 unsigned long countread;
1833 unsigned long flags;
Greg Kroah-Hartman0fb0aa12007-06-15 15:44:13 -07001834 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835
1836 if (urb->number_of_packets > 0) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07001837 dev_err(&port->dev, "%s transfer_buffer_length %d "
1838 "actual_length %d number of packets %d\n", __func__,
1839 urb->transfer_buffer_length,
1840 urb->actual_length, urb->number_of_packets);
1841 dev_err(&port->dev, "%s transfer_flags %x\n", __func__,
1842 urb->transfer_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 }
1844
Harvey Harrison441b62c2008-03-03 16:08:34 -08001845 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846
Alan Cox95da3102008-07-22 11:09:07 +01001847 if (port->port.count <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 return;
1849
Alan Cox4a90f092008-10-13 10:39:46 +01001850 tty = tty_port_tty_get(&port->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 if (!tty) {
Alan Cox464cbb22008-07-22 11:11:23 +01001852 dbg("%s - bad tty pointer - exiting", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 return;
1854 }
1855
1856 priv = usb_get_serial_port_data(port);
1857 if (!priv) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001858 dbg("%s - bad port private data pointer - exiting", __func__);
Alan Cox4a90f092008-10-13 10:39:46 +01001859 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 }
1861
Alan Cox464cbb22008-07-22 11:11:23 +01001862 if (urb != port->read_urb)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07001863 dev_err(&port->dev, "%s - Not my urb!\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864
Greg Kroah-Hartman0fb0aa12007-06-15 15:44:13 -07001865 if (status) {
Alan Cox464cbb22008-07-22 11:11:23 +01001866 /* This will happen at close every time so it is a dbg not an
1867 err */
1868 dbg("(this is ok on close) nonzero read bulk status received: %d", status);
Alan Cox4a90f092008-10-13 10:39:46 +01001869 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 }
1871
Ian Abbott22465402006-06-26 12:59:17 +01001872 /* count data bytes, but not status bytes */
1873 countread = urb->actual_length;
Julia Lawalldfa5ec72008-03-04 15:25:11 -08001874 countread -= 2 * DIV_ROUND_UP(countread, PKTSZ);
Ian Abbott22465402006-06-26 12:59:17 +01001875 spin_lock_irqsave(&priv->rx_lock, flags);
1876 priv->rx_bytes += countread;
1877 spin_unlock_irqrestore(&priv->rx_lock, flags);
1878
David Howellsc4028952006-11-22 14:57:56 +00001879 ftdi_process_read(&priv->rx_work.work);
Alan Cox4a90f092008-10-13 10:39:46 +01001880out:
1881 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882} /* ftdi_read_bulk_callback */
1883
1884
Alan Cox464cbb22008-07-22 11:11:23 +01001885static void ftdi_process_read(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886{ /* ftdi_process_read */
David Howellsc4028952006-11-22 14:57:56 +00001887 struct ftdi_private *priv =
1888 container_of(work, struct ftdi_private, rx_work.work);
1889 struct usb_serial_port *port = priv->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 struct urb *urb;
1891 struct tty_struct *tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 char error_flag;
David Brownell5c09d142006-10-13 15:57:58 -07001893 unsigned char *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894
1895 int i;
1896 int result;
1897 int need_flip;
1898 int packet_offset;
Ian Abbott76854ce2005-06-02 10:34:11 +01001899 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900
Harvey Harrison441b62c2008-03-03 16:08:34 -08001901 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902
Alan Cox95da3102008-07-22 11:09:07 +01001903 if (port->port.count <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 return;
1905
Alan Cox4a90f092008-10-13 10:39:46 +01001906 tty = tty_port_tty_get(&port->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 if (!tty) {
Alan Cox464cbb22008-07-22 11:11:23 +01001908 dbg("%s - bad tty pointer - exiting", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 return;
1910 }
1911
1912 priv = usb_get_serial_port_data(port);
1913 if (!priv) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001914 dbg("%s - bad port private data pointer - exiting", __func__);
Alan Cox4a90f092008-10-13 10:39:46 +01001915 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 }
1917
1918 urb = port->read_urb;
1919 if (!urb) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001920 dbg("%s - bad read_urb pointer - exiting", __func__);
Alan Cox4a90f092008-10-13 10:39:46 +01001921 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 }
1923
1924 data = urb->transfer_buffer;
1925
Ian Abbott76854ce2005-06-02 10:34:11 +01001926 if (priv->rx_processed) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001927 dbg("%s - already processed: %d bytes, %d remain", __func__,
Ian Abbott76854ce2005-06-02 10:34:11 +01001928 priv->rx_processed,
1929 urb->actual_length - priv->rx_processed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 } else {
Ian Abbott76854ce2005-06-02 10:34:11 +01001931 /* The first two bytes of every read packet are status */
Alan Cox464cbb22008-07-22 11:11:23 +01001932 if (urb->actual_length > 2)
1933 usb_serial_debug_data(debug, &port->dev, __func__,
1934 urb->actual_length, data);
1935 else
1936 dbg("Status only: %03oo %03oo", data[0], data[1]);
Ian Abbott76854ce2005-06-02 10:34:11 +01001937 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938
1939
1940 /* TO DO -- check for hung up line and handle appropriately: */
1941 /* send hangup */
1942 /* See acm.c - you do a tty_hangup - eg tty_hangup(tty) */
1943 /* if CD is dropped and the line is not CLOCAL then we should hangup */
1944
1945 need_flip = 0;
Alan Cox464cbb22008-07-22 11:11:23 +01001946 for (packet_offset = priv->rx_processed;
1947 packet_offset < urb->actual_length; packet_offset += PKTSZ) {
Ian Abbott76854ce2005-06-02 10:34:11 +01001948 int length;
1949
Alan Cox464cbb22008-07-22 11:11:23 +01001950 /* Compare new line status to the old one, signal if different/
1951 N.B. packet may be processed more than once, but differences
1952 are only processed once. */
Julia Lawall00185a62008-12-21 16:41:36 +01001953 char new_status = data[packet_offset + 0] &
1954 FTDI_STATUS_B0_MASK;
1955 if (new_status != priv->prev_status) {
1956 priv->diff_status |=
1957 new_status ^ priv->prev_status;
1958 wake_up_interruptible(&priv->delta_msr_wait);
1959 priv->prev_status = new_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 }
1961
Greg Kroah-Hartman8c209e62009-03-06 21:31:03 -08001962 length = min_t(u32, PKTSZ, urb->actual_length-packet_offset)-2;
Ian Abbott76854ce2005-06-02 10:34:11 +01001963 if (length < 0) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07001964 dev_err(&port->dev, "%s - bad packet length: %d\n",
1965 __func__, length+2);
Ian Abbott76854ce2005-06-02 10:34:11 +01001966 length = 0;
1967 }
1968
Ian Abbott76854ce2005-06-02 10:34:11 +01001969 if (priv->rx_flags & THROTTLED) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001970 dbg("%s - throttled", __func__);
Ian Abbott76854ce2005-06-02 10:34:11 +01001971 break;
1972 }
Alan Cox33f0f882006-01-09 20:54:13 -08001973 if (tty_buffer_request_room(tty, length) < length) {
Alan Cox464cbb22008-07-22 11:11:23 +01001974 /* break out & wait for throttling/unthrottling to
1975 happen */
Harvey Harrison441b62c2008-03-03 16:08:34 -08001976 dbg("%s - receive room low", __func__);
Ian Abbott76854ce2005-06-02 10:34:11 +01001977 break;
1978 }
1979
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 /* Handle errors and break */
1981 error_flag = TTY_NORMAL;
Alan Cox464cbb22008-07-22 11:11:23 +01001982 /* Although the device uses a bitmask and hence can have
1983 multiple errors on a packet - the order here sets the
1984 priority the error is returned to the tty layer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985
Alan Cox464cbb22008-07-22 11:11:23 +01001986 if (data[packet_offset+1] & FTDI_RS_OE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 error_flag = TTY_OVERRUN;
1988 dbg("OVERRRUN error");
1989 }
Alan Cox464cbb22008-07-22 11:11:23 +01001990 if (data[packet_offset+1] & FTDI_RS_BI) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 error_flag = TTY_BREAK;
1992 dbg("BREAK received");
1993 }
Alan Cox464cbb22008-07-22 11:11:23 +01001994 if (data[packet_offset+1] & FTDI_RS_PE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 error_flag = TTY_PARITY;
1996 dbg("PARITY error");
1997 }
Alan Cox464cbb22008-07-22 11:11:23 +01001998 if (data[packet_offset+1] & FTDI_RS_FE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 error_flag = TTY_FRAME;
2000 dbg("FRAMING error");
2001 }
Ian Abbott76854ce2005-06-02 10:34:11 +01002002 if (length > 0) {
2003 for (i = 2; i < length+2; i++) {
David Brownell5c09d142006-10-13 15:57:58 -07002004 /* Note that the error flag is duplicated for
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 every character received since we don't know
2006 which character it applied to */
Alan Cox464cbb22008-07-22 11:11:23 +01002007 tty_insert_flip_char(tty,
2008 data[packet_offset + i], error_flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 }
2010 need_flip = 1;
2011 }
2012
2013#ifdef NOT_CORRECT_BUT_KEEPING_IT_FOR_NOW
2014 /* if a parity error is detected you get status packets forever
2015 until a character is sent without a parity error.
Alan Cox464cbb22008-07-22 11:11:23 +01002016 This doesn't work well since the application receives a
2017 never ending stream of bad data - even though new data
2018 hasn't been sent. Therefore I (bill) have taken this out.
David Brownell5c09d142006-10-13 15:57:58 -07002019 However - this might make sense for framing errors and so on
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020 so I am leaving the code in for now.
2021 */
2022 else {
Alan Cox464cbb22008-07-22 11:11:23 +01002023 if (error_flag != TTY_NORMAL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 dbg("error_flag is not normal");
Alan Cox464cbb22008-07-22 11:11:23 +01002025 /* In this case it is just status - if that is
2026 an error send a bad character */
2027 if (tty->flip.count >= TTY_FLIPBUF_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 tty_flip_buffer_push(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 tty_insert_flip_char(tty, 0xff, error_flag);
2030 need_flip = 1;
2031 }
2032 }
2033#endif
2034 } /* "for(packet_offset=0..." */
2035
2036 /* Low latency */
Alan Cox464cbb22008-07-22 11:11:23 +01002037 if (need_flip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 tty_flip_buffer_push(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039
Ian Abbott76854ce2005-06-02 10:34:11 +01002040 if (packet_offset < urb->actual_length) {
2041 /* not completely processed - record progress */
2042 priv->rx_processed = packet_offset;
2043 dbg("%s - incomplete, %d bytes processed, %d remain",
Harvey Harrison441b62c2008-03-03 16:08:34 -08002044 __func__, packet_offset,
Ian Abbott76854ce2005-06-02 10:34:11 +01002045 urb->actual_length - packet_offset);
2046 /* check if we were throttled while processing */
2047 spin_lock_irqsave(&priv->rx_lock, flags);
2048 if (priv->rx_flags & THROTTLED) {
2049 priv->rx_flags |= ACTUALLY_THROTTLED;
2050 spin_unlock_irqrestore(&priv->rx_lock, flags);
2051 dbg("%s - deferring remainder until unthrottled",
Harvey Harrison441b62c2008-03-03 16:08:34 -08002052 __func__);
Jim Parisa9fec712009-01-15 13:31:07 +00002053 goto out;
Ian Abbott76854ce2005-06-02 10:34:11 +01002054 }
2055 spin_unlock_irqrestore(&priv->rx_lock, flags);
2056 /* if the port is closed stop trying to read */
Alan Cox464cbb22008-07-22 11:11:23 +01002057 if (port->port.count > 0)
Ian Abbott76854ce2005-06-02 10:34:11 +01002058 /* delay processing of remainder */
2059 schedule_delayed_work(&priv->rx_work, 1);
Alan Cox464cbb22008-07-22 11:11:23 +01002060 else
Harvey Harrison441b62c2008-03-03 16:08:34 -08002061 dbg("%s - port is closed", __func__);
Alan Cox4a90f092008-10-13 10:39:46 +01002062 goto out;
Ian Abbott76854ce2005-06-02 10:34:11 +01002063 }
2064
2065 /* urb is completely processed */
2066 priv->rx_processed = 0;
2067
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 /* if the port is closed stop trying to read */
Alan Cox464cbb22008-07-22 11:11:23 +01002069 if (port->port.count > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 /* Continue trying to always read */
David Brownell5c09d142006-10-13 15:57:58 -07002071 usb_fill_bulk_urb(port->read_urb, port->serial->dev,
Alan Cox464cbb22008-07-22 11:11:23 +01002072 usb_rcvbulkpipe(port->serial->dev,
2073 port->bulk_in_endpointAddress),
2074 port->read_urb->transfer_buffer,
2075 port->read_urb->transfer_buffer_length,
2076 ftdi_read_bulk_callback, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077
2078 result = usb_submit_urb(port->read_urb, GFP_ATOMIC);
2079 if (result)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07002080 dev_err(&port->dev,
2081 "%s - failed resubmitting read urb, error %d\n",
2082 __func__, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083 }
Alan Cox4a90f092008-10-13 10:39:46 +01002084out:
2085 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086} /* ftdi_process_read */
2087
2088
Alan Cox95da3102008-07-22 11:09:07 +01002089static void ftdi_break_ctl(struct tty_struct *tty, int break_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090{
Alan Cox95da3102008-07-22 11:09:07 +01002091 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 struct ftdi_private *priv = usb_get_serial_port_data(port);
David Brownell5c09d142006-10-13 15:57:58 -07002093 __u16 urb_value = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 char buf[1];
David Brownell5c09d142006-10-13 15:57:58 -07002095
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 /* break_state = -1 to turn on break, and 0 to turn off break */
2097 /* see drivers/char/tty_io.c to see it used */
2098 /* last_set_data_urb_value NEVER has the break bit set in it */
2099
Alan Cox464cbb22008-07-22 11:11:23 +01002100 if (break_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 urb_value = priv->last_set_data_urb_value | FTDI_SIO_SET_BREAK;
Alan Cox464cbb22008-07-22 11:11:23 +01002102 else
David Brownell5c09d142006-10-13 15:57:58 -07002103 urb_value = priv->last_set_data_urb_value;
Alan Cox464cbb22008-07-22 11:11:23 +01002104
2105 if (usb_control_msg(port->serial->dev,
2106 usb_sndctrlpipe(port->serial->dev, 0),
2107 FTDI_SIO_SET_DATA_REQUEST,
2108 FTDI_SIO_SET_DATA_REQUEST_TYPE,
2109 urb_value , priv->interface,
2110 buf, 0, WDR_TIMEOUT) < 0) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07002111 dev_err(&port->dev, "%s FAILED to enable/disable break state "
2112 "(state was %d)\n", __func__, break_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 }
2114
Alan Cox464cbb22008-07-22 11:11:23 +01002115 dbg("%s break state is %d - urb is %d", __func__,
2116 break_state, urb_value);
David Brownell5c09d142006-10-13 15:57:58 -07002117
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118}
2119
2120
2121/* old_termios contains the original termios settings and tty->termios contains
2122 * the new setting to be used
2123 * WARNING: set_termios calls this with old_termios in kernel space
2124 */
2125
Alan Cox95da3102008-07-22 11:09:07 +01002126static void ftdi_set_termios(struct tty_struct *tty,
2127 struct usb_serial_port *port, struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128{ /* ftdi_termios */
2129 struct usb_device *dev = port->serial->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 struct ftdi_private *priv = usb_get_serial_port_data(port);
Alan Cox95da3102008-07-22 11:09:07 +01002131 struct ktermios *termios = tty->termios;
Alan Cox669a6db2007-10-18 01:24:24 -07002132 unsigned int cflag = termios->c_cflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 __u16 urb_value; /* will hold the new flags */
2134 char buf[1]; /* Perhaps I should dynamically alloc this? */
David Brownell5c09d142006-10-13 15:57:58 -07002135
Alan Cox464cbb22008-07-22 11:11:23 +01002136 /* Added for xon/xoff support */
Alan Cox669a6db2007-10-18 01:24:24 -07002137 unsigned int iflag = termios->c_iflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138 unsigned char vstop;
2139 unsigned char vstart;
David Brownell5c09d142006-10-13 15:57:58 -07002140
Harvey Harrison441b62c2008-03-03 16:08:34 -08002141 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142
Alan Cox464cbb22008-07-22 11:11:23 +01002143 /* Force baud rate if this device requires it, unless it is set to
2144 B0. */
Alan Cox669a6db2007-10-18 01:24:24 -07002145 if (priv->force_baud && ((termios->c_cflag & CBAUD) != B0)) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08002146 dbg("%s: forcing baud rate for this device", __func__);
Alan Cox95da3102008-07-22 11:09:07 +01002147 tty_encode_baud_rate(tty, priv->force_baud,
Andrew Mortonbd5e47c2007-10-18 01:24:25 -07002148 priv->force_baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149 }
2150
2151 /* Force RTS-CTS if this device requires it. */
2152 if (priv->force_rtscts) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08002153 dbg("%s: forcing rtscts for this device", __func__);
Alan Cox669a6db2007-10-18 01:24:24 -07002154 termios->c_cflag |= CRTSCTS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155 }
2156
Alan Cox669a6db2007-10-18 01:24:24 -07002157 cflag = termios->c_cflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158
David Brownell5c09d142006-10-13 15:57:58 -07002159 /* FIXME -For this cut I don't care if the line is really changing or
2160 not - so just do the change regardless - should be able to
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 compare old_termios and tty->termios */
David Brownell5c09d142006-10-13 15:57:58 -07002162 /* NOTE These routines can get interrupted by
Alan Cox464cbb22008-07-22 11:11:23 +01002163 ftdi_sio_read_bulk_callback - need to examine what this means -
2164 don't see any problems yet */
David Brownell5c09d142006-10-13 15:57:58 -07002165
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166 /* Set number of data bits, parity, stop bits */
David Brownell5c09d142006-10-13 15:57:58 -07002167
Alan Cox669a6db2007-10-18 01:24:24 -07002168 termios->c_cflag &= ~CMSPAR;
2169
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 urb_value = 0;
2171 urb_value |= (cflag & CSTOPB ? FTDI_SIO_SET_DATA_STOP_BITS_2 :
2172 FTDI_SIO_SET_DATA_STOP_BITS_1);
David Brownell5c09d142006-10-13 15:57:58 -07002173 urb_value |= (cflag & PARENB ?
2174 (cflag & PARODD ? FTDI_SIO_SET_DATA_PARITY_ODD :
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175 FTDI_SIO_SET_DATA_PARITY_EVEN) :
2176 FTDI_SIO_SET_DATA_PARITY_NONE);
2177 if (cflag & CSIZE) {
2178 switch (cflag & CSIZE) {
2179 case CS5: urb_value |= 5; dbg("Setting CS5"); break;
2180 case CS6: urb_value |= 6; dbg("Setting CS6"); break;
2181 case CS7: urb_value |= 7; dbg("Setting CS7"); break;
2182 case CS8: urb_value |= 8; dbg("Setting CS8"); break;
2183 default:
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07002184 dev_err(&port->dev, "CSIZE was set but not CS5-CS8\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 }
2186 }
2187
Alan Cox464cbb22008-07-22 11:11:23 +01002188 /* This is needed by the break command since it uses the same command
2189 - but is or'ed with this value */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190 priv->last_set_data_urb_value = urb_value;
David Brownell5c09d142006-10-13 15:57:58 -07002191
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192 if (usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
David Brownell5c09d142006-10-13 15:57:58 -07002193 FTDI_SIO_SET_DATA_REQUEST,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 FTDI_SIO_SET_DATA_REQUEST_TYPE,
2195 urb_value , priv->interface,
Ian Abbott279e1542005-07-29 12:16:52 -07002196 buf, 0, WDR_SHORT_TIMEOUT) < 0) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07002197 dev_err(&port->dev, "%s FAILED to set "
2198 "databits/stopbits/parity\n", __func__);
David Brownell5c09d142006-10-13 15:57:58 -07002199 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200
2201 /* Now do the baudrate */
Alan Cox464cbb22008-07-22 11:11:23 +01002202 if ((cflag & CBAUD) == B0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 /* Disable flow control */
2204 if (usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
David Brownell5c09d142006-10-13 15:57:58 -07002205 FTDI_SIO_SET_FLOW_CTRL_REQUEST,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206 FTDI_SIO_SET_FLOW_CTRL_REQUEST_TYPE,
David Brownell5c09d142006-10-13 15:57:58 -07002207 0, priv->interface,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 buf, 0, WDR_TIMEOUT) < 0) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07002209 dev_err(&port->dev,
2210 "%s error from disable flowcontrol urb\n",
2211 __func__);
David Brownell5c09d142006-10-13 15:57:58 -07002212 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213 /* Drop RTS and DTR */
Ian Abbott74ede0f2005-07-29 12:16:41 -07002214 clear_mctrl(port, TIOCM_DTR | TIOCM_RTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215 } else {
2216 /* set the baudrate determined before */
Alan Cox464cbb22008-07-22 11:11:23 +01002217 if (change_speed(tty, port))
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07002218 dev_err(&port->dev, "%s urb failed to set baudrate\n",
2219 __func__);
Peter Favrholdt72a755f2005-09-22 00:48:49 -07002220 /* Ensure RTS and DTR are raised when baudrate changed from 0 */
Alan Cox464cbb22008-07-22 11:11:23 +01002221 if (!old_termios || (old_termios->c_cflag & CBAUD) == B0)
Peter Favrholdt72a755f2005-09-22 00:48:49 -07002222 set_mctrl(port, TIOCM_DTR | TIOCM_RTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 }
2224
2225 /* Set flow control */
2226 /* Note device also supports DTR/CD (ugh) and Xon/Xoff in hardware */
2227 if (cflag & CRTSCTS) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08002228 dbg("%s Setting to CRTSCTS flow control", __func__);
David Brownell5c09d142006-10-13 15:57:58 -07002229 if (usb_control_msg(dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230 usb_sndctrlpipe(dev, 0),
David Brownell5c09d142006-10-13 15:57:58 -07002231 FTDI_SIO_SET_FLOW_CTRL_REQUEST,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232 FTDI_SIO_SET_FLOW_CTRL_REQUEST_TYPE,
2233 0 , (FTDI_SIO_RTS_CTS_HS | priv->interface),
2234 buf, 0, WDR_TIMEOUT) < 0) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07002235 dev_err(&port->dev,
2236 "urb failed to set to rts/cts flow control\n");
David Brownell5c09d142006-10-13 15:57:58 -07002237 }
2238
2239 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 /*
2241 * Xon/Xoff code
2242 *
Alan Cox464cbb22008-07-22 11:11:23 +01002243 * Check the IXOFF status in the iflag component of the
2244 * termios structure. If IXOFF is not set, the pre-xon/xoff
2245 * code is executed.
2246 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247 if (iflag & IXOFF) {
Alan Cox464cbb22008-07-22 11:11:23 +01002248 dbg("%s request to enable xonxoff iflag=%04x",
2249 __func__, iflag);
2250 /* Try to enable the XON/XOFF on the ftdi_sio
2251 * Set the vstart and vstop -- could have been done up
2252 * above where a lot of other dereferencing is done but
2253 * that would be very inefficient as vstart and vstop
2254 * are not always needed.
2255 */
Alan Cox669a6db2007-10-18 01:24:24 -07002256 vstart = termios->c_cc[VSTART];
2257 vstop = termios->c_cc[VSTOP];
Alan Cox464cbb22008-07-22 11:11:23 +01002258 urb_value = (vstop << 8) | (vstart);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259
2260 if (usb_control_msg(dev,
2261 usb_sndctrlpipe(dev, 0),
2262 FTDI_SIO_SET_FLOW_CTRL_REQUEST,
2263 FTDI_SIO_SET_FLOW_CTRL_REQUEST_TYPE,
2264 urb_value , (FTDI_SIO_XON_XOFF_HS
2265 | priv->interface),
2266 buf, 0, WDR_TIMEOUT) < 0) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07002267 dev_err(&port->dev, "urb failed to set to "
2268 "xon/xoff flow control\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 }
2270 } else {
Alan Cox464cbb22008-07-22 11:11:23 +01002271 /* else clause to only run if cflag ! CRTSCTS and iflag
2272 * ! XOFF. CHECKME Assuming XON/XOFF handled by tty
2273 * stack - not by device */
Harvey Harrison441b62c2008-03-03 16:08:34 -08002274 dbg("%s Turning off hardware flow control", __func__);
David Brownell5c09d142006-10-13 15:57:58 -07002275 if (usb_control_msg(dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276 usb_sndctrlpipe(dev, 0),
David Brownell5c09d142006-10-13 15:57:58 -07002277 FTDI_SIO_SET_FLOW_CTRL_REQUEST,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278 FTDI_SIO_SET_FLOW_CTRL_REQUEST_TYPE,
David Brownell5c09d142006-10-13 15:57:58 -07002279 0, priv->interface,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280 buf, 0, WDR_TIMEOUT) < 0) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07002281 dev_err(&port->dev,
2282 "urb failed to clear flow control\n");
David Brownell5c09d142006-10-13 15:57:58 -07002283 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284 }
David Brownell5c09d142006-10-13 15:57:58 -07002285
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286 }
2287 return;
Alan Cox95da3102008-07-22 11:09:07 +01002288}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289
Alan Cox95da3102008-07-22 11:09:07 +01002290static int ftdi_tiocmget(struct tty_struct *tty, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291{
Alan Cox95da3102008-07-22 11:09:07 +01002292 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293 struct ftdi_private *priv = usb_get_serial_port_data(port);
2294 unsigned char buf[2];
2295 int ret;
2296
Harvey Harrison441b62c2008-03-03 16:08:34 -08002297 dbg("%s TIOCMGET", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298 switch (priv->chip_type) {
2299 case SIO:
2300 /* Request the status from the device */
Alan Cox464cbb22008-07-22 11:11:23 +01002301 ret = usb_control_msg(port->serial->dev,
2302 usb_rcvctrlpipe(port->serial->dev, 0),
2303 FTDI_SIO_GET_MODEM_STATUS_REQUEST,
2304 FTDI_SIO_GET_MODEM_STATUS_REQUEST_TYPE,
2305 0, 0,
2306 buf, 1, WDR_TIMEOUT);
David Brownell5d1ca6c2009-02-06 02:39:11 -08002307 if (ret < 0)
Alan Cox464cbb22008-07-22 11:11:23 +01002308 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309 break;
2310 case FT8U232AM:
2311 case FT232BM:
2312 case FT2232C:
Andrew M. Bishoped6e5282007-08-21 19:08:56 +01002313 case FT232RL:
Alan Cox464cbb22008-07-22 11:11:23 +01002314 /* the 8U232AM returns a two byte value (the sio is a 1 byte
2315 value) - in the same format as the data returned from the in
2316 point */
2317 ret = usb_control_msg(port->serial->dev,
2318 usb_rcvctrlpipe(port->serial->dev, 0),
2319 FTDI_SIO_GET_MODEM_STATUS_REQUEST,
2320 FTDI_SIO_GET_MODEM_STATUS_REQUEST_TYPE,
2321 0, priv->interface,
2322 buf, 2, WDR_TIMEOUT);
David Brownell5d1ca6c2009-02-06 02:39:11 -08002323 if (ret < 0)
Alan Cox464cbb22008-07-22 11:11:23 +01002324 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325 break;
2326 default:
2327 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 }
David Brownell5c09d142006-10-13 15:57:58 -07002329
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330 return (buf[0] & FTDI_SIO_DSR_MASK ? TIOCM_DSR : 0) |
2331 (buf[0] & FTDI_SIO_CTS_MASK ? TIOCM_CTS : 0) |
2332 (buf[0] & FTDI_SIO_RI_MASK ? TIOCM_RI : 0) |
2333 (buf[0] & FTDI_SIO_RLSD_MASK ? TIOCM_CD : 0) |
David Brownell5c09d142006-10-13 15:57:58 -07002334 priv->last_dtr_rts;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335}
2336
Alan Cox464cbb22008-07-22 11:11:23 +01002337static int ftdi_tiocmset(struct tty_struct *tty, struct file *file,
Alan Cox95da3102008-07-22 11:09:07 +01002338 unsigned int set, unsigned int clear)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339{
Alan Cox95da3102008-07-22 11:09:07 +01002340 struct usb_serial_port *port = tty->driver_data;
Harvey Harrison441b62c2008-03-03 16:08:34 -08002341 dbg("%s TIOCMSET", __func__);
Ian Abbott74ede0f2005-07-29 12:16:41 -07002342 return update_mctrl(port, set, clear);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343}
2344
2345
Alan Cox464cbb22008-07-22 11:11:23 +01002346static int ftdi_ioctl(struct tty_struct *tty, struct file *file,
2347 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348{
Alan Cox95da3102008-07-22 11:09:07 +01002349 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350 struct ftdi_private *priv = usb_get_serial_port_data(port);
2351
Harvey Harrison441b62c2008-03-03 16:08:34 -08002352 dbg("%s cmd 0x%04x", __func__, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353
2354 /* Based on code from acm.c and others */
2355 switch (cmd) {
2356
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357 case TIOCGSERIAL: /* gets serial port data */
Alan Cox464cbb22008-07-22 11:11:23 +01002358 return get_serial_info(port,
2359 (struct serial_struct __user *) arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360
2361 case TIOCSSERIAL: /* sets serial port data */
Alan Cox464cbb22008-07-22 11:11:23 +01002362 return set_serial_info(tty, port,
2363 (struct serial_struct __user *) arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364
2365 /*
2366 * Wait for any of the 4 modem inputs (DCD,RI,DSR,CTS) to change
2367 * - mask passed in arg for lines of interest
2368 * (use |'ed TIOCM_RNG/DSR/CD/CTS for masking)
2369 * Caller should use TIOCGICOUNT to see which one it was.
2370 *
2371 * This code is borrowed from linux/drivers/char/serial.c
2372 */
2373 case TIOCMIWAIT:
2374 while (priv != NULL) {
2375 interruptible_sleep_on(&priv->delta_msr_wait);
2376 /* see if a signal did it */
2377 if (signal_pending(current))
2378 return -ERESTARTSYS;
2379 else {
2380 char diff = priv->diff_status;
2381
Alan Cox464cbb22008-07-22 11:11:23 +01002382 if (diff == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383 return -EIO; /* no change => error */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384
2385 /* Consume all events */
2386 priv->diff_status = 0;
2387
Alan Cox464cbb22008-07-22 11:11:23 +01002388 /* Return 0 if caller wanted to know about
2389 these bits */
2390 if (((arg & TIOCM_RNG) && (diff & FTDI_RS0_RI)) ||
2391 ((arg & TIOCM_DSR) && (diff & FTDI_RS0_DSR)) ||
2392 ((arg & TIOCM_CD) && (diff & FTDI_RS0_RLSD)) ||
2393 ((arg & TIOCM_CTS) && (diff & FTDI_RS0_CTS))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394 return 0;
2395 }
2396 /*
Alan Cox464cbb22008-07-22 11:11:23 +01002397 * Otherwise caller can't care less about what
2398 * happened,and so we continue to wait for more
2399 * events.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400 */
2401 }
2402 }
Alan Cox95da3102008-07-22 11:09:07 +01002403 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404 default:
2405 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406 }
Alan Cox464cbb22008-07-22 11:11:23 +01002407 /* This is not necessarily an error - turns out the higher layers
2408 * will do some ioctls themselves (see comment above)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409 */
Harvey Harrison441b62c2008-03-03 16:08:34 -08002410 dbg("%s arg not supported - it was 0x%04x - check /usr/include/asm/ioctls.h", __func__, cmd);
Alan Cox95da3102008-07-22 11:09:07 +01002411 return -ENOIOCTLCMD;
2412}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413
Alan Cox95da3102008-07-22 11:09:07 +01002414static void ftdi_throttle(struct tty_struct *tty)
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 long flags;
2419
Harvey Harrison441b62c2008-03-03 16:08:34 -08002420 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421
2422 spin_lock_irqsave(&priv->rx_lock, flags);
2423 priv->rx_flags |= THROTTLED;
2424 spin_unlock_irqrestore(&priv->rx_lock, flags);
2425}
2426
2427
Alan Cox95da3102008-07-22 11:09:07 +01002428static void ftdi_unthrottle(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429{
Alan Cox95da3102008-07-22 11:09:07 +01002430 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431 struct ftdi_private *priv = usb_get_serial_port_data(port);
2432 int actually_throttled;
2433 unsigned long flags;
2434
Harvey Harrison441b62c2008-03-03 16:08:34 -08002435 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436
2437 spin_lock_irqsave(&priv->rx_lock, flags);
2438 actually_throttled = priv->rx_flags & ACTUALLY_THROTTLED;
2439 priv->rx_flags &= ~(THROTTLED | ACTUALLY_THROTTLED);
2440 spin_unlock_irqrestore(&priv->rx_lock, flags);
2441
2442 if (actually_throttled)
David Howellsc4028952006-11-22 14:57:56 +00002443 schedule_delayed_work(&priv->rx_work, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444}
2445
Alan Cox464cbb22008-07-22 11:11:23 +01002446static int __init ftdi_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447{
2448 int retval;
2449
Harvey Harrison441b62c2008-03-03 16:08:34 -08002450 dbg("%s", __func__);
Ian Abbottfdcb0a02005-07-28 18:40:32 +01002451 if (vendor > 0 && product > 0) {
2452 /* Add user specified VID/PID to reserved element of table. */
2453 int i;
2454 for (i = 0; id_table_combined[i].idVendor; i++)
2455 ;
2456 id_table_combined[i].match_flags = USB_DEVICE_ID_MATCH_DEVICE;
2457 id_table_combined[i].idVendor = vendor;
2458 id_table_combined[i].idProduct = product;
2459 }
Ian Abbott8f977e42005-06-20 16:45:42 +01002460 retval = usb_serial_register(&ftdi_sio_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461 if (retval)
Ian Abbott8f977e42005-06-20 16:45:42 +01002462 goto failed_sio_register;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463 retval = usb_register(&ftdi_driver);
David Brownell5c09d142006-10-13 15:57:58 -07002464 if (retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465 goto failed_usb_register;
2466
Greg Kroah-Hartmanc197a8d2008-08-18 13:21:04 -07002467 printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_VERSION ":"
2468 DRIVER_DESC "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469 return 0;
2470failed_usb_register:
Ian Abbott8f977e42005-06-20 16:45:42 +01002471 usb_serial_deregister(&ftdi_sio_device);
2472failed_sio_register:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473 return retval;
2474}
2475
2476
Alan Cox464cbb22008-07-22 11:11:23 +01002477static void __exit ftdi_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478{
2479
Harvey Harrison441b62c2008-03-03 16:08:34 -08002480 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481
Alan Cox464cbb22008-07-22 11:11:23 +01002482 usb_deregister(&ftdi_driver);
2483 usb_serial_deregister(&ftdi_sio_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484
2485}
2486
2487
2488module_init(ftdi_init);
2489module_exit(ftdi_exit);
2490
Alan Cox464cbb22008-07-22 11:11:23 +01002491MODULE_AUTHOR(DRIVER_AUTHOR);
2492MODULE_DESCRIPTION(DRIVER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493MODULE_LICENSE("GPL");
2494
2495module_param(debug, bool, S_IRUGO | S_IWUSR);
2496MODULE_PARM_DESC(debug, "Debug enabled or not");
Ian Abbottfdcb0a02005-07-28 18:40:32 +01002497module_param(vendor, ushort, 0);
2498MODULE_PARM_DESC(vendor, "User specified vendor ID (default="
2499 __MODULE_STRING(FTDI_VID)")");
2500module_param(product, ushort, 0);
Paulius Zaleckas68265042008-09-10 17:18:46 +03002501MODULE_PARM_DESC(product, "User specified product ID");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502