blob: 90dcc625f70deb008c45ca0c6c349ba0a6d6eb4e [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 *
15 * See Documentation/usb/usb-serial.txt for more information on using this driver
16 *
17 * See http://ftdi-usb-sio.sourceforge.net for upto date testing info
18 * and extra documentation
19 *
Greg Kroah-Hartman504b55c2002-04-09 12:14:34 -070020 * Change entries from 2004 and earlier can be found in versions of this
21 * file in kernel versions prior to the 2.6.24 release.
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 *
23 */
24
25/* Bill Ryder - bryder@sgi.com - wrote the FTDI_SIO implementation */
26/* Thanx to FTDI for so kindly providing details of the protocol required */
27/* to talk to the device */
28/* Thanx to gkh and the rest of the usb dev group for all code I have assimilated :-) */
29
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/kernel.h>
31#include <linux/errno.h>
32#include <linux/init.h>
33#include <linux/slab.h>
34#include <linux/tty.h>
35#include <linux/tty_driver.h>
36#include <linux/tty_flip.h>
37#include <linux/module.h>
38#include <linux/spinlock.h>
39#include <asm/uaccess.h>
40#include <linux/usb.h>
41#include <linux/serial.h>
Greg Kroah-Hartmana9698882006-07-11 21:22:58 -070042#include <linux/usb/serial.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include "ftdi_sio.h"
44
45/*
46 * Version Information
47 */
Ian Abbott8f977e42005-06-20 16:45:42 +010048#define DRIVER_VERSION "v1.4.3"
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#define DRIVER_AUTHOR "Greg Kroah-Hartman <greg@kroah.com>, Bill Ryder <bryder@sgi.com>, Kuba Ober <kuba@mareimbrium.org>"
50#define DRIVER_DESC "USB FTDI Serial Converters Driver"
51
52static int debug;
Ian Abbottfdcb0a02005-07-28 18:40:32 +010053static __u16 vendor = FTDI_VID;
54static __u16 product;
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
Oliver Neukum0ffbbe252007-07-09 12:03:08 -070056struct ftdi_private {
57 ftdi_chip_type_t chip_type;
58 /* type of the device, either SIO or FT8U232AM */
59 int baud_base; /* baud base clock for divisor setting */
60 int custom_divisor; /* custom_divisor kludge, this is for baud_base (different from what goes to the chip!) */
61 __u16 last_set_data_urb_value ;
62 /* the last data state set - needed for doing a break */
63 int write_offset; /* This is the offset in the usb data block to write the serial data -
64 * it is different between devices
65 */
66 int flags; /* some ASYNC_xxxx flags are supported */
67 unsigned long last_dtr_rts; /* saved modem control outputs */
68 wait_queue_head_t delta_msr_wait; /* Used for TIOCMIWAIT */
69 char prev_status, diff_status; /* Used for TIOCMIWAIT */
70 __u8 rx_flags; /* receive state flags (throttling) */
71 spinlock_t rx_lock; /* spinlock for receive state */
72 struct delayed_work rx_work;
73 struct usb_serial_port *port;
74 int rx_processed;
75 unsigned long rx_bytes;
76
77 __u16 interface; /* FT2232C port interface (0 for FT232/245) */
78
Alan Cox669a6db2007-10-18 01:24:24 -070079 speed_t force_baud; /* if non-zero, force the baud rate to this value */
Oliver Neukum0ffbbe252007-07-09 12:03:08 -070080 int force_rtscts; /* if non-zero, force RTS-CTS to always be enabled */
81
82 spinlock_t tx_lock; /* spinlock for transmit state */
83 unsigned long tx_bytes;
84 unsigned long tx_outstanding_bytes;
85 unsigned long tx_outstanding_urbs;
86};
87
Ian Abbott8f977e42005-06-20 16:45:42 +010088/* struct ftdi_sio_quirk is used by devices requiring special attention. */
89struct ftdi_sio_quirk {
Tony Lindgrenfa91d432007-05-04 18:23:24 -070090 int (*probe)(struct usb_serial *);
Oliver Neukum0ffbbe252007-07-09 12:03:08 -070091 void (*port_probe)(struct ftdi_private *); /* Special settings for probed ports. */
Ian Abbott8f977e42005-06-20 16:45:42 +010092};
93
Harald Welte20734342008-01-01 15:08:35 +010094static int ftdi_jtag_probe (struct usb_serial *serial);
Oliver Neukum0ffbbe252007-07-09 12:03:08 -070095static void ftdi_USB_UIRT_setup (struct ftdi_private *priv);
96static void ftdi_HE_TIRA1_setup (struct ftdi_private *priv);
Ian Abbott8f977e42005-06-20 16:45:42 +010097
Harald Welte20734342008-01-01 15:08:35 +010098static struct ftdi_sio_quirk ftdi_jtag_quirk = {
99 .probe = ftdi_jtag_probe,
Tony Lindgrenfa91d432007-05-04 18:23:24 -0700100};
101
Ian Abbott8f977e42005-06-20 16:45:42 +0100102static struct ftdi_sio_quirk ftdi_USB_UIRT_quirk = {
Oliver Neukum0ffbbe252007-07-09 12:03:08 -0700103 .port_probe = ftdi_USB_UIRT_setup,
Ian Abbott8f977e42005-06-20 16:45:42 +0100104};
105
106static struct ftdi_sio_quirk ftdi_HE_TIRA1_quirk = {
Oliver Neukum0ffbbe252007-07-09 12:03:08 -0700107 .port_probe = ftdi_HE_TIRA1_setup,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108};
109
110/*
111 * The 8U232AM has the same API as the sio except for:
112 * - it can support MUCH higher baudrates; up to:
113 * o 921600 for RS232 and 2000000 for RS422/485 at 48MHz
114 * o 230400 at 12MHz
115 * so .. 8U232AM's baudrate setting codes are different
116 * - it has a two byte status code.
117 * - it returns characters every 16ms (the FTDI does it every 40ms)
118 *
119 * the bcdDevice value is used to differentiate FT232BM and FT245BM from
120 * the earlier FT8U232AM and FT8U232BM. For now, include all known VID/PID
121 * combinations in both tables.
Ian Abbott8f977e42005-06-20 16:45:42 +0100122 * FIXME: perhaps bcdDevice can also identify 12MHz FT8U232AM devices,
123 * but I don't know if those ever went into mass production. [Ian Abbott]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 */
125
126
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
128static struct usb_device_id id_table_combined [] = {
Jonathan Davies2011e922006-08-09 10:48:03 +0100129 { USB_DEVICE(FTDI_VID, FTDI_AMC232_PID) },
130 { USB_DEVICE(FTDI_VID, FTDI_CANUSB_PID) },
Razvan Gavril72a9f952006-05-04 11:35:49 +0300131 { USB_DEVICE(FTDI_VID, FTDI_ACTZWAVE_PID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 { USB_DEVICE(FTDI_VID, FTDI_IRTRANS_PID) },
Luiz Fernando N. Capitulino69737df2006-04-11 15:52:41 -0300133 { USB_DEVICE(FTDI_VID, FTDI_IPLUS_PID) },
Luiz Fernando N. Capitulinod0993212007-06-21 22:34:23 -0300134 { USB_DEVICE(FTDI_VID, FTDI_IPLUS2_PID) },
Frank Sievertsenfad14a02006-10-20 09:43:53 +0200135 { USB_DEVICE(FTDI_VID, FTDI_DMX4ALL) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 { USB_DEVICE(FTDI_VID, FTDI_SIO_PID) },
137 { USB_DEVICE(FTDI_VID, FTDI_8U232AM_PID) },
138 { USB_DEVICE(FTDI_VID, FTDI_8U232AM_ALT_PID) },
Gard Spreemannd8b21602007-03-05 00:03:26 +0100139 { USB_DEVICE(FTDI_VID, FTDI_232RL_PID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 { USB_DEVICE(FTDI_VID, FTDI_8U2232C_PID) },
Christophe Mariacc0f8d562006-06-23 17:36:21 +0200141 { USB_DEVICE(FTDI_VID, FTDI_MICRO_CHAMELEON_PID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 { USB_DEVICE(FTDI_VID, FTDI_RELAIS_PID) },
Guido Scholz2adb80e2007-05-08 19:52:41 +0200143 { USB_DEVICE(FTDI_VID, FTDI_OPENDCC_PID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 { USB_DEVICE(INTERBIOMETRICS_VID, INTERBIOMETRICS_IOBOARD_PID) },
145 { USB_DEVICE(INTERBIOMETRICS_VID, INTERBIOMETRICS_MINI_IOBOARD_PID) },
146 { USB_DEVICE(FTDI_VID, FTDI_XF_632_PID) },
147 { USB_DEVICE(FTDI_VID, FTDI_XF_634_PID) },
148 { USB_DEVICE(FTDI_VID, FTDI_XF_547_PID) },
149 { USB_DEVICE(FTDI_VID, FTDI_XF_633_PID) },
150 { USB_DEVICE(FTDI_VID, FTDI_XF_631_PID) },
151 { USB_DEVICE(FTDI_VID, FTDI_XF_635_PID) },
152 { USB_DEVICE(FTDI_VID, FTDI_XF_640_PID) },
153 { USB_DEVICE(FTDI_VID, FTDI_XF_642_PID) },
154 { USB_DEVICE(FTDI_VID, FTDI_DSS20_PID) },
155 { USB_DEVICE(FTDI_NF_RIC_VID, FTDI_NF_RIC_PID) },
156 { USB_DEVICE(FTDI_VID, FTDI_VNHCPCUSB_D_PID) },
Ian Abbott8f977e42005-06-20 16:45:42 +0100157 { USB_DEVICE(FTDI_VID, FTDI_MTXORB_0_PID) },
158 { USB_DEVICE(FTDI_VID, FTDI_MTXORB_1_PID) },
159 { USB_DEVICE(FTDI_VID, FTDI_MTXORB_2_PID) },
160 { USB_DEVICE(FTDI_VID, FTDI_MTXORB_3_PID) },
161 { USB_DEVICE(FTDI_VID, FTDI_MTXORB_4_PID) },
162 { USB_DEVICE(FTDI_VID, FTDI_MTXORB_5_PID) },
163 { USB_DEVICE(FTDI_VID, FTDI_MTXORB_6_PID) },
164 { USB_DEVICE(FTDI_VID, FTDI_PERLE_ULTRAPORT_PID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 { USB_DEVICE(FTDI_VID, FTDI_PIEGROUP_PID) },
Dave Platt274a4bb2006-07-18 21:26:54 -0700166 { USB_DEVICE(FTDI_VID, FTDI_TNC_X_PID) },
Jelle Foks868e4402007-03-25 21:08:35 -0400167 { USB_DEVICE(FTDI_VID, FTDI_USBX_707_PID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2101_PID) },
169 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2102_PID) },
170 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2103_PID) },
171 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2104_PID) },
Justin Carlsona1484822006-09-24 11:52:12 +0300172 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2106_PID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2201_1_PID) },
174 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2201_2_PID) },
175 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2202_1_PID) },
176 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2202_2_PID) },
177 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2203_1_PID) },
178 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2203_2_PID) },
179 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2401_1_PID) },
180 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2401_2_PID) },
181 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2401_3_PID) },
182 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2401_4_PID) },
183 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2402_1_PID) },
184 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2402_2_PID) },
185 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2402_3_PID) },
186 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2402_4_PID) },
187 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2403_1_PID) },
188 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2403_2_PID) },
189 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2403_3_PID) },
190 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2403_4_PID) },
191 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_1_PID) },
192 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_2_PID) },
193 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_3_PID) },
194 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_4_PID) },
195 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_5_PID) },
196 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_6_PID) },
197 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_7_PID) },
198 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_8_PID) },
199 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_1_PID) },
200 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_2_PID) },
201 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_3_PID) },
202 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_4_PID) },
203 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_5_PID) },
204 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_6_PID) },
205 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_7_PID) },
206 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_8_PID) },
207 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_1_PID) },
208 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_2_PID) },
209 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_3_PID) },
210 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_4_PID) },
211 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_5_PID) },
212 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_6_PID) },
213 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_7_PID) },
214 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_8_PID) },
215 { USB_DEVICE(IDTECH_VID, IDTECH_IDT1221U_PID) },
216 { USB_DEVICE(OCT_VID, OCT_US101_PID) },
Ian Abbott8f977e42005-06-20 16:45:42 +0100217 { USB_DEVICE(FTDI_VID, FTDI_HE_TIRA1_PID),
218 .driver_info = (kernel_ulong_t)&ftdi_HE_TIRA1_quirk },
219 { USB_DEVICE(FTDI_VID, FTDI_USB_UIRT_PID),
220 .driver_info = (kernel_ulong_t)&ftdi_USB_UIRT_quirk },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 { USB_DEVICE(FTDI_VID, PROTEGO_SPECIAL_1) },
222 { USB_DEVICE(FTDI_VID, PROTEGO_R2X0) },
223 { USB_DEVICE(FTDI_VID, PROTEGO_SPECIAL_3) },
224 { USB_DEVICE(FTDI_VID, PROTEGO_SPECIAL_4) },
Ian Abbott8f977e42005-06-20 16:45:42 +0100225 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E808_PID) },
226 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E809_PID) },
227 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E80A_PID) },
228 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E80B_PID) },
229 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E80C_PID) },
230 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E80D_PID) },
231 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E80E_PID) },
232 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E80F_PID) },
233 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E888_PID) },
234 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E889_PID) },
235 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E88A_PID) },
236 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E88B_PID) },
237 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E88C_PID) },
238 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E88D_PID) },
239 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E88E_PID) },
240 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E88F_PID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 { USB_DEVICE(FTDI_VID, FTDI_ELV_UO100_PID) },
Ian Abbott47900742005-05-17 15:12:13 +0100242 { USB_DEVICE(FTDI_VID, FTDI_ELV_UM100_PID) },
Ian Abbotte6ac4a42005-08-02 14:01:27 +0100243 { USB_DEVICE(FTDI_VID, FTDI_ELV_UR100_PID) },
244 { USB_DEVICE(FTDI_VID, FTDI_ELV_ALC8500_PID) },
Thomas Riewe207c47e2005-09-29 14:57:29 +0200245 { USB_DEVICE(FTDI_VID, FTDI_PYRAMID_PID) },
Martin Hagelinbde62182005-10-26 21:10:41 +0200246 { USB_DEVICE(FTDI_VID, FTDI_ELV_FHZ1000PC_PID) },
Thomas Schleusener4eaf60e2007-02-28 22:50:52 +0100247 { USB_DEVICE(FTDI_VID, FTDI_IBS_US485_PID) },
248 { USB_DEVICE(FTDI_VID, FTDI_IBS_PICPRO_PID) },
249 { USB_DEVICE(FTDI_VID, FTDI_IBS_PCMCIA_PID) },
250 { USB_DEVICE(FTDI_VID, FTDI_IBS_PK1_PID) },
251 { USB_DEVICE(FTDI_VID, FTDI_IBS_RS232MON_PID) },
252 { USB_DEVICE(FTDI_VID, FTDI_IBS_APP70_PID) },
253 { USB_DEVICE(FTDI_VID, FTDI_IBS_PEDO_PID) },
254 { USB_DEVICE(FTDI_VID, FTDI_IBS_PROD_PID) },
Ian Abbotte6ac4a42005-08-02 14:01:27 +0100255 /*
Peter Stark42f8aa92007-12-25 18:32:08 +0100256 * Due to many user requests for multiple ELV devices we enable
257 * them by default.
Ian Abbotte6ac4a42005-08-02 14:01:27 +0100258 */
Peter Stark42f8aa92007-12-25 18:32:08 +0100259 { USB_DEVICE(FTDI_VID, FTDI_ELV_CLI7000_PID) },
260 { USB_DEVICE(FTDI_VID, FTDI_ELV_PPS7330_PID) },
261 { USB_DEVICE(FTDI_VID, FTDI_ELV_TFM100_PID) },
262 { USB_DEVICE(FTDI_VID, FTDI_ELV_UDF77_PID) },
263 { USB_DEVICE(FTDI_VID, FTDI_ELV_UIO88_PID) },
264 { USB_DEVICE(FTDI_VID, FTDI_ELV_UAD8_PID) },
265 { USB_DEVICE(FTDI_VID, FTDI_ELV_UDA7_PID) },
266 { USB_DEVICE(FTDI_VID, FTDI_ELV_USI2_PID) },
267 { USB_DEVICE(FTDI_VID, FTDI_ELV_T1100_PID) },
268 { USB_DEVICE(FTDI_VID, FTDI_ELV_PCD200_PID) },
269 { USB_DEVICE(FTDI_VID, FTDI_ELV_ULA200_PID) },
270 { USB_DEVICE(FTDI_VID, FTDI_ELV_CSI8_PID) },
271 { USB_DEVICE(FTDI_VID, FTDI_ELV_EM1000DL_PID) },
272 { USB_DEVICE(FTDI_VID, FTDI_ELV_PCK100_PID) },
273 { USB_DEVICE(FTDI_VID, FTDI_ELV_RFP500_PID) },
274 { USB_DEVICE(FTDI_VID, FTDI_ELV_FS20SIG_PID) },
275 { USB_DEVICE(FTDI_VID, FTDI_ELV_WS300PC_PID) },
276 { USB_DEVICE(FTDI_VID, FTDI_ELV_FHZ1300PC_PID) },
277 { USB_DEVICE(FTDI_VID, FTDI_ELV_WS500_PID) },
David Brownell5c09d142006-10-13 15:57:58 -0700278 { USB_DEVICE(FTDI_VID, LINX_SDMUSBQSS_PID) },
279 { USB_DEVICE(FTDI_VID, LINX_MASTERDEVEL2_PID) },
280 { USB_DEVICE(FTDI_VID, LINX_FUTURE_0_PID) },
281 { USB_DEVICE(FTDI_VID, LINX_FUTURE_1_PID) },
282 { USB_DEVICE(FTDI_VID, LINX_FUTURE_2_PID) },
283 { USB_DEVICE(FTDI_VID, FTDI_CCSICDU20_0_PID) },
284 { USB_DEVICE(FTDI_VID, FTDI_CCSICDU40_1_PID) },
Jan Capekec434e92006-11-28 22:35:12 +0100285 { USB_DEVICE(FTDI_VID, FTDI_CCSMACHX_2_PID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 { USB_DEVICE(FTDI_VID, INSIDE_ACCESSO) },
287 { USB_DEVICE(INTREPID_VID, INTREPID_VALUECAN_PID) },
288 { USB_DEVICE(INTREPID_VID, INTREPID_NEOVI_PID) },
289 { USB_DEVICE(FALCOM_VID, FALCOM_TWIST_PID) },
Ian Abbotte6ac4a42005-08-02 14:01:27 +0100290 { USB_DEVICE(FALCOM_VID, FALCOM_SAMBA_PID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 { USB_DEVICE(FTDI_VID, FTDI_SUUNTO_SPORTS_PID) },
Michael Olbergef31fec2007-02-27 12:57:12 +0100292 { USB_DEVICE(TTI_VID, TTI_QL355P_PID) },
Ian Abbott6f928722005-04-29 16:06:14 +0100293 { USB_DEVICE(FTDI_VID, FTDI_RM_CANVIEW_PID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 { USB_DEVICE(BANDB_VID, BANDB_USOTL4_PID) },
295 { USB_DEVICE(BANDB_VID, BANDB_USTL4_PID) },
296 { USB_DEVICE(BANDB_VID, BANDB_USO9ML2_PID) },
297 { USB_DEVICE(FTDI_VID, EVER_ECO_PRO_CDS) },
Ian Abbott6f928722005-04-29 16:06:14 +0100298 { USB_DEVICE(FTDI_VID, FTDI_4N_GALAXY_DE_1_PID) },
299 { USB_DEVICE(FTDI_VID, FTDI_4N_GALAXY_DE_2_PID) },
Ian Abbotte6ac4a42005-08-02 14:01:27 +0100300 { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_0_PID) },
301 { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_1_PID) },
302 { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_2_PID) },
303 { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_3_PID) },
304 { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_4_PID) },
305 { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_5_PID) },
306 { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_6_PID) },
307 { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_7_PID) },
Ian Abbott6f928722005-04-29 16:06:14 +0100308 { USB_DEVICE(MOBILITY_VID, MOBILITY_USB_SERIAL_PID) },
Ian Abbott8f977e42005-06-20 16:45:42 +0100309 { USB_DEVICE(FTDI_VID, FTDI_ACTIVE_ROBOTS_PID) },
Ian Abbott34d1a8a2006-02-27 14:05:32 +0000310 { USB_DEVICE(FTDI_VID, FTDI_MHAM_KW_PID) },
311 { USB_DEVICE(FTDI_VID, FTDI_MHAM_YS_PID) },
Ian Abbott9b1513d2005-07-29 12:16:31 -0700312 { USB_DEVICE(FTDI_VID, FTDI_MHAM_Y6_PID) },
313 { USB_DEVICE(FTDI_VID, FTDI_MHAM_Y8_PID) },
Ian Abbott34d1a8a2006-02-27 14:05:32 +0000314 { USB_DEVICE(FTDI_VID, FTDI_MHAM_IC_PID) },
315 { USB_DEVICE(FTDI_VID, FTDI_MHAM_DB9_PID) },
316 { USB_DEVICE(FTDI_VID, FTDI_MHAM_RS232_PID) },
317 { USB_DEVICE(FTDI_VID, FTDI_MHAM_Y9_PID) },
Ian Abbott740a42822005-12-13 16:18:47 +0000318 { USB_DEVICE(FTDI_VID, FTDI_TERATRONIK_VCP_PID) },
319 { USB_DEVICE(FTDI_VID, FTDI_TERATRONIK_D2XX_PID) },
Ian Abbott9b1513d2005-07-29 12:16:31 -0700320 { USB_DEVICE(EVOLUTION_VID, EVOLUTION_ER1_PID) },
Søren Haubergc1f8ea72007-08-08 10:50:17 +0200321 { USB_DEVICE(EVOLUTION_VID, EVO_HYBRID_PID) },
322 { USB_DEVICE(EVOLUTION_VID, EVO_RCM4_PID) },
Rui Santosc9c77462005-09-23 20:06:50 +0100323 { USB_DEVICE(FTDI_VID, FTDI_ARTEMIS_PID) },
324 { USB_DEVICE(FTDI_VID, FTDI_ATIK_ATK16_PID) },
Rui Santos09c280a2006-01-09 13:12:40 +0000325 { USB_DEVICE(FTDI_VID, FTDI_ATIK_ATK16C_PID) },
Rui Santosc9c77462005-09-23 20:06:50 +0100326 { USB_DEVICE(FTDI_VID, FTDI_ATIK_ATK16HR_PID) },
Rui Santos09c280a2006-01-09 13:12:40 +0000327 { USB_DEVICE(FTDI_VID, FTDI_ATIK_ATK16HRC_PID) },
Franco Lanza34910432007-12-26 03:29:33 +0100328 { USB_DEVICE(FTDI_VID, FTDI_ATIK_ATK16IC_PID) },
Ian Abbottb4723ae2005-11-23 15:45:23 -0800329 { USB_DEVICE(KOBIL_VID, KOBIL_CONV_B1_PID) },
330 { USB_DEVICE(KOBIL_VID, KOBIL_CONV_KAAN_PID) },
Pavel Fedineffac8b2005-12-09 09:30:59 +0300331 { USB_DEVICE(POSIFLEX_VID, POSIFLEX_PP7000_PID) },
Louis Nyffenegger641adaa2006-01-05 17:20:37 +0100332 { USB_DEVICE(FTDI_VID, FTDI_TTUSB_PID) },
Ian Abbott7e1c0b82006-03-21 14:55:20 +0000333 { USB_DEVICE(FTDI_VID, FTDI_ECLO_COM_1WIRE_PID) },
Ian Abbotta94b52a2006-01-09 17:11:40 +0000334 { USB_DEVICE(FTDI_VID, FTDI_WESTREX_MODEL_777_PID) },
335 { USB_DEVICE(FTDI_VID, FTDI_WESTREX_MODEL_8900F_PID) },
Wouter Paesence40d292006-01-03 14:30:31 +0100336 { USB_DEVICE(FTDI_VID, FTDI_PCDJ_DAC2_PID) },
Nathan Bronsoncdd3b152006-04-10 00:05:09 -0400337 { USB_DEVICE(FTDI_VID, FTDI_RRCIRKITS_LOCOBUFFER_PID) },
Ian Abbott7e0258f2006-04-12 15:20:35 +0100338 { USB_DEVICE(FTDI_VID, FTDI_ASK_RDR400_PID) },
A. Maitland Bottomsbf58fbd2006-03-14 18:44:23 -0500339 { USB_DEVICE(ICOM_ID1_VID, ICOM_ID1_PID) },
Folkert van Heusden62a13db2006-03-28 20:41:26 +0900340 { USB_DEVICE(PAPOUCH_VID, PAPOUCH_TMU_PID) },
Ian Abbott20a0f472006-05-04 11:34:25 +0100341 { USB_DEVICE(FTDI_VID, FTDI_ACG_HFDUAL_PID) },
Ian Abbotteb79b4f2006-05-30 12:36:30 +0100342 { USB_DEVICE(FTDI_VID, FTDI_YEI_SERVOCENTER31_PID) },
D. Peter Siddons48437482006-06-17 18:09:15 -0400343 { USB_DEVICE(FTDI_VID, FTDI_THORLABS_PID) },
Colin Leroye1979fe2006-07-11 11:36:43 +0200344 { USB_DEVICE(TESTO_VID, TESTO_USB_INTERFACE_PID) },
Ralf Schlatterbeckeaede2c2006-09-06 12:15:02 +0200345 { USB_DEVICE(FTDI_VID, FTDI_GAMMA_SCOUT_PID) },
Ian Abbott9978f9e2006-09-25 14:19:19 +0100346 { USB_DEVICE(FTDI_VID, FTDI_TACTRIX_OPENPORT_13M_PID) },
347 { USB_DEVICE(FTDI_VID, FTDI_TACTRIX_OPENPORT_13S_PID) },
348 { USB_DEVICE(FTDI_VID, FTDI_TACTRIX_OPENPORT_13U_PID) },
Kjell Myksvoll40c36092006-10-22 23:26:42 +0200349 { USB_DEVICE(ELEKTOR_VID, ELEKTOR_FT323R_PID) },
Micke Prag822c7ef2007-02-04 23:39:11 +0100350 { USB_DEVICE(TELLDUS_VID, TELLDUS_TELLSTICK_PID) },
Neil \"Superna\" ARMSTRONG762e92f2007-04-25 20:34:28 +0200351 { USB_DEVICE(FTDI_VID, FTDI_MAXSTREAM_PID) },
Pierre Castellad7fde2d2007-09-06 22:34:39 +0200352 { USB_DEVICE(TML_VID, TML_USB_SERIAL_PID) },
Ed Beroset4bb0ef12008-01-17 17:37:46 -0500353 { USB_DEVICE(FTDI_VID, FTDI_ELSTER_UNICOM_PID) },
Tony Lindgrenfa91d432007-05-04 18:23:24 -0700354 { USB_DEVICE(OLIMEX_VID, OLIMEX_ARM_USB_OCD_PID),
Harald Welte20734342008-01-01 15:08:35 +0100355 .driver_info = (kernel_ulong_t)&ftdi_jtag_quirk },
356 { USB_DEVICE(FIC_VID, FIC_NEO1973_DEBUG_PID),
357 .driver_info = (kernel_ulong_t)&ftdi_jtag_quirk },
358 { USB_DEVICE(FTDI_VID, FTDI_OOCDLINK_PID),
359 .driver_info = (kernel_ulong_t)&ftdi_jtag_quirk },
Ian Abbottfdcb0a02005-07-28 18:40:32 +0100360 { }, /* Optional parameter entry */
361 { } /* Terminating entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362};
363
364MODULE_DEVICE_TABLE (usb, id_table_combined);
365
366static struct usb_driver ftdi_driver = {
367 .name = "ftdi_sio",
368 .probe = usb_serial_probe,
369 .disconnect = usb_serial_disconnect,
370 .id_table = id_table_combined,
David Brownell5c09d142006-10-13 15:57:58 -0700371 .no_dynamic_id = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372};
373
Arjan van de Ven4c4c9432005-11-29 09:43:42 +0100374static const char *ftdi_chip_name[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 [SIO] = "SIO", /* the serial part of FT8U100AX */
376 [FT8U232AM] = "FT8U232AM",
377 [FT232BM] = "FT232BM",
378 [FT2232C] = "FT2232C",
Gard Spreemannd8b21602007-03-05 00:03:26 +0100379 [FT232RL] = "FT232RL",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380};
381
382
383/* Constants for read urb and write urb */
384#define BUFSZ 512
385#define PKTSZ 64
386
387/* rx_flags */
388#define THROTTLED 0x01
389#define ACTUALLY_THROTTLED 0x02
390
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391/* Used for TIOCMIWAIT */
392#define FTDI_STATUS_B0_MASK (FTDI_RS0_CTS | FTDI_RS0_DSR | FTDI_RS0_RI | FTDI_RS0_RLSD)
393#define FTDI_STATUS_B1_MASK (FTDI_RS_BI)
394/* End TIOCMIWAIT */
395
396#define FTDI_IMPL_ASYNC_FLAGS = ( ASYNC_SPD_HI | ASYNC_SPD_VHI \
397 ASYNC_SPD_CUST | ASYNC_SPD_SHI | ASYNC_SPD_WARP )
398
399/* function prototypes for a FTDI serial converter */
Ian Abbott8f977e42005-06-20 16:45:42 +0100400static int ftdi_sio_probe (struct usb_serial *serial, const struct usb_device_id *id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401static void ftdi_shutdown (struct usb_serial *serial);
Jim Radford12bdbe02007-02-28 10:10:50 -0800402static int ftdi_sio_port_probe (struct usb_serial_port *port);
403static int ftdi_sio_port_remove (struct usb_serial_port *port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404static int ftdi_open (struct usb_serial_port *port, struct file *filp);
405static void ftdi_close (struct usb_serial_port *port, struct file *filp);
406static int ftdi_write (struct usb_serial_port *port, const unsigned char *buf, int count);
407static int ftdi_write_room (struct usb_serial_port *port);
408static int ftdi_chars_in_buffer (struct usb_serial_port *port);
David Howells7d12e782006-10-05 14:55:46 +0100409static void ftdi_write_bulk_callback (struct urb *urb);
410static void ftdi_read_bulk_callback (struct urb *urb);
David Howellsc4028952006-11-22 14:57:56 +0000411static void ftdi_process_read (struct work_struct *work);
Alan Cox606d0992006-12-08 02:38:45 -0800412static void ftdi_set_termios (struct usb_serial_port *port, struct ktermios * old);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413static int ftdi_tiocmget (struct usb_serial_port *port, struct file *file);
414static int ftdi_tiocmset (struct usb_serial_port *port, struct file * file, unsigned int set, unsigned int clear);
415static int ftdi_ioctl (struct usb_serial_port *port, struct file * file, unsigned int cmd, unsigned long arg);
416static void ftdi_break_ctl (struct usb_serial_port *port, int break_state );
417static void ftdi_throttle (struct usb_serial_port *port);
418static void ftdi_unthrottle (struct usb_serial_port *port);
419
420static unsigned short int ftdi_232am_baud_base_to_divisor (int baud, int base);
421static unsigned short int ftdi_232am_baud_to_divisor (int baud);
422static __u32 ftdi_232bm_baud_base_to_divisor (int baud, int base);
423static __u32 ftdi_232bm_baud_to_divisor (int baud);
424
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -0700425static struct usb_serial_driver ftdi_sio_device = {
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700426 .driver = {
427 .owner = THIS_MODULE,
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -0700428 .name = "ftdi_sio",
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700429 },
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -0700430 .description = "FTDI USB Serial Device",
Johannes Hölzld9b1b782006-12-17 21:50:24 +0100431 .usb_driver = &ftdi_driver ,
Ian Abbott8f977e42005-06-20 16:45:42 +0100432 .id_table = id_table_combined,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 .num_interrupt_in = 0,
434 .num_bulk_in = 1,
435 .num_bulk_out = 1,
436 .num_ports = 1,
Ian Abbott8f977e42005-06-20 16:45:42 +0100437 .probe = ftdi_sio_probe,
Jim Radford12bdbe02007-02-28 10:10:50 -0800438 .port_probe = ftdi_sio_port_probe,
439 .port_remove = ftdi_sio_port_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 .open = ftdi_open,
441 .close = ftdi_close,
442 .throttle = ftdi_throttle,
443 .unthrottle = ftdi_unthrottle,
444 .write = ftdi_write,
445 .write_room = ftdi_write_room,
446 .chars_in_buffer = ftdi_chars_in_buffer,
447 .read_bulk_callback = ftdi_read_bulk_callback,
448 .write_bulk_callback = ftdi_write_bulk_callback,
449 .tiocmget = ftdi_tiocmget,
450 .tiocmset = ftdi_tiocmset,
451 .ioctl = ftdi_ioctl,
452 .set_termios = ftdi_set_termios,
453 .break_ctl = ftdi_break_ctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 .shutdown = ftdi_shutdown,
455};
456
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
458#define WDR_TIMEOUT 5000 /* default urb timeout */
Ian Abbott279e1542005-07-29 12:16:52 -0700459#define WDR_SHORT_TIMEOUT 1000 /* shorter urb timeout */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
461/* High and low are for DTR, RTS etc etc */
462#define HIGH 1
463#define LOW 0
464
Ian Abbott22465402006-06-26 12:59:17 +0100465/* number of outstanding urbs to prevent userspace DoS from happening */
466#define URB_UPPER_LIMIT 42
467
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468/*
469 * ***************************************************************************
Tony Lindgrenfa91d432007-05-04 18:23:24 -0700470 * Utility functions
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 * ***************************************************************************
472 */
473
474static unsigned short int ftdi_232am_baud_base_to_divisor(int baud, int base)
475{
476 unsigned short int divisor;
477 int divisor3 = base / 2 / baud; // divisor shifted 3 bits to the left
478 if ((divisor3 & 0x7) == 7) divisor3 ++; // round x.7/8 up to x+1
479 divisor = divisor3 >> 3;
480 divisor3 &= 0x7;
481 if (divisor3 == 1) divisor |= 0xc000; else // 0.125
482 if (divisor3 >= 4) divisor |= 0x4000; else // 0.5
483 if (divisor3 != 0) divisor |= 0x8000; // 0.25
484 if (divisor == 1) divisor = 0; /* special case for maximum baud rate */
485 return divisor;
486}
487
488static unsigned short int ftdi_232am_baud_to_divisor(int baud)
489{
490 return(ftdi_232am_baud_base_to_divisor(baud, 48000000));
491}
492
493static __u32 ftdi_232bm_baud_base_to_divisor(int baud, int base)
494{
495 static const unsigned char divfrac[8] = { 0, 3, 2, 4, 1, 5, 6, 7 };
496 __u32 divisor;
497 int divisor3 = base / 2 / baud; // divisor shifted 3 bits to the left
498 divisor = divisor3 >> 3;
499 divisor |= (__u32)divfrac[divisor3 & 0x7] << 14;
500 /* Deal with special cases for highest baud rates. */
501 if (divisor == 1) divisor = 0; else // 1.0
502 if (divisor == 0x4001) divisor = 1; // 1.5
503 return divisor;
504}
505
506static __u32 ftdi_232bm_baud_to_divisor(int baud)
507{
508 return(ftdi_232bm_baud_base_to_divisor(baud, 48000000));
509}
510
Ian Abbott74ede0f2005-07-29 12:16:41 -0700511#define set_mctrl(port, set) update_mctrl((port), (set), 0)
512#define clear_mctrl(port, clear) update_mctrl((port), 0, (clear))
513
514static int update_mctrl(struct usb_serial_port *port, unsigned int set, unsigned int clear)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515{
516 struct ftdi_private *priv = usb_get_serial_port_data(port);
517 char *buf;
Ian Abbott74ede0f2005-07-29 12:16:41 -0700518 unsigned urb_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 int rv;
Ian Abbott74ede0f2005-07-29 12:16:41 -0700520
521 if (((set | clear) & (TIOCM_DTR | TIOCM_RTS)) == 0) {
522 dbg("%s - DTR|RTS not being set|cleared", __FUNCTION__);
523 return 0; /* no change */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 }
Ian Abbott74ede0f2005-07-29 12:16:41 -0700525
526 buf = kmalloc(1, GFP_NOIO);
527 if (!buf) {
528 return -ENOMEM;
529 }
530
531 clear &= ~set; /* 'set' takes precedence over 'clear' */
532 urb_value = 0;
533 if (clear & TIOCM_DTR)
534 urb_value |= FTDI_SIO_SET_DTR_LOW;
535 if (clear & TIOCM_RTS)
536 urb_value |= FTDI_SIO_SET_RTS_LOW;
537 if (set & TIOCM_DTR)
538 urb_value |= FTDI_SIO_SET_DTR_HIGH;
539 if (set & TIOCM_RTS)
540 urb_value |= FTDI_SIO_SET_RTS_HIGH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 rv = usb_control_msg(port->serial->dev,
542 usb_sndctrlpipe(port->serial->dev, 0),
David Brownell5c09d142006-10-13 15:57:58 -0700543 FTDI_SIO_SET_MODEM_CTRL_REQUEST,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 FTDI_SIO_SET_MODEM_CTRL_REQUEST_TYPE,
Ian Abbott74ede0f2005-07-29 12:16:41 -0700545 urb_value, priv->interface,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 buf, 0, WDR_TIMEOUT);
547
548 kfree(buf);
Ian Abbott74ede0f2005-07-29 12:16:41 -0700549 if (rv < 0) {
550 err("%s Error from MODEM_CTRL urb: DTR %s, RTS %s",
551 __FUNCTION__,
552 (set & TIOCM_DTR) ? "HIGH" :
553 (clear & TIOCM_DTR) ? "LOW" : "unchanged",
554 (set & TIOCM_RTS) ? "HIGH" :
555 (clear & TIOCM_RTS) ? "LOW" : "unchanged");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 } else {
Ian Abbott74ede0f2005-07-29 12:16:41 -0700557 dbg("%s - DTR %s, RTS %s", __FUNCTION__,
558 (set & TIOCM_DTR) ? "HIGH" :
559 (clear & TIOCM_DTR) ? "LOW" : "unchanged",
560 (set & TIOCM_RTS) ? "HIGH" :
561 (clear & TIOCM_RTS) ? "LOW" : "unchanged");
562 priv->last_dtr_rts = (priv->last_dtr_rts & ~clear) | set;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 return rv;
565}
566
567
568static __u32 get_ftdi_divisor(struct usb_serial_port * port);
569
570
571static int change_speed(struct usb_serial_port *port)
572{
573 struct ftdi_private *priv = usb_get_serial_port_data(port);
574 char *buf;
575 __u16 urb_value;
576 __u16 urb_index;
577 __u32 urb_index_value;
578 int rv;
579
580 buf = kmalloc(1, GFP_NOIO);
581 if (!buf)
582 return -ENOMEM;
583
584 urb_index_value = get_ftdi_divisor(port);
585 urb_value = (__u16)urb_index_value;
586 urb_index = (__u16)(urb_index_value >> 16);
587 if (priv->interface) { /* FT2232C */
588 urb_index = (__u16)((urb_index << 8) | priv->interface);
589 }
David Brownell5c09d142006-10-13 15:57:58 -0700590
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 rv = usb_control_msg(port->serial->dev,
592 usb_sndctrlpipe(port->serial->dev, 0),
593 FTDI_SIO_SET_BAUDRATE_REQUEST,
594 FTDI_SIO_SET_BAUDRATE_REQUEST_TYPE,
595 urb_value, urb_index,
Ian Abbott279e1542005-07-29 12:16:52 -0700596 buf, 0, WDR_SHORT_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
598 kfree(buf);
599 return rv;
600}
601
602
603static __u32 get_ftdi_divisor(struct usb_serial_port * port)
604{ /* get_ftdi_divisor */
605 struct ftdi_private *priv = usb_get_serial_port_data(port);
606 __u32 div_value = 0;
607 int div_okay = 1;
608 int baud;
609
610 /*
611 * The logic involved in setting the baudrate can be cleanly split in 3 steps.
612 * Obtaining the actual baud rate is a little tricky since unix traditionally
613 * somehow ignored the possibility to set non-standard baud rates.
614 * 1. Standard baud rates are set in tty->termios->c_cflag
615 * 2. If these are not enough, you can set any speed using alt_speed as follows:
616 * - set tty->termios->c_cflag speed to B38400
617 * - set your real speed in tty->alt_speed; it gets ignored when
618 * alt_speed==0, (or)
619 * - call TIOCSSERIAL ioctl with (struct serial_struct) set as follows:
620 * flags & ASYNC_SPD_MASK == ASYNC_SPD_[HI, VHI, SHI, WARP], this just
621 * sets alt_speed to (HI: 57600, VHI: 115200, SHI: 230400, WARP: 460800)
622 * ** Steps 1, 2 are done courtesy of tty_get_baud_rate
623 * 3. You can also set baud rate by setting custom divisor as follows
624 * - set tty->termios->c_cflag speed to B38400
625 * - call TIOCSSERIAL ioctl with (struct serial_struct) set as follows:
626 * o flags & ASYNC_SPD_MASK == ASYNC_SPD_CUST
627 * o custom_divisor set to baud_base / your_new_baudrate
628 * ** Step 3 is done courtesy of code borrowed from serial.c - I should really
629 * spend some time and separate+move this common code to serial.c, it is
630 * replicated in nearly every serial driver you see.
631 */
632
633 /* 1. Get the baud rate from the tty settings, this observes alt_speed hack */
634
635 baud = tty_get_baud_rate(port->tty);
636 dbg("%s - tty_get_baud_rate reports speed %d", __FUNCTION__, baud);
637
638 /* 2. Observe async-compatible custom_divisor hack, update baudrate if needed */
639
640 if (baud == 38400 &&
641 ((priv->flags & ASYNC_SPD_MASK) == ASYNC_SPD_CUST) &&
642 (priv->custom_divisor)) {
643 baud = priv->baud_base / priv->custom_divisor;
644 dbg("%s - custom divisor %d sets baud rate to %d", __FUNCTION__, priv->custom_divisor, baud);
645 }
646
647 /* 3. Convert baudrate to device-specific divisor */
648
David Brownell5c09d142006-10-13 15:57:58 -0700649 if (!baud) baud = 9600;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 switch(priv->chip_type) {
651 case SIO: /* SIO chip */
652 switch(baud) {
653 case 300: div_value = ftdi_sio_b300; break;
654 case 600: div_value = ftdi_sio_b600; break;
655 case 1200: div_value = ftdi_sio_b1200; break;
656 case 2400: div_value = ftdi_sio_b2400; break;
657 case 4800: div_value = ftdi_sio_b4800; break;
658 case 9600: div_value = ftdi_sio_b9600; break;
659 case 19200: div_value = ftdi_sio_b19200; break;
660 case 38400: div_value = ftdi_sio_b38400; break;
661 case 57600: div_value = ftdi_sio_b57600; break;
662 case 115200: div_value = ftdi_sio_b115200; break;
663 } /* baud */
664 if (div_value == 0) {
David Brownell5c09d142006-10-13 15:57:58 -0700665 dbg("%s - Baudrate (%d) requested is not supported", __FUNCTION__, baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 div_value = ftdi_sio_b9600;
Andrew Mortonbd5e47c2007-10-18 01:24:25 -0700667 baud = 9600;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 div_okay = 0;
669 }
670 break;
671 case FT8U232AM: /* 8U232AM chip */
672 if (baud <= 3000000) {
673 div_value = ftdi_232am_baud_to_divisor(baud);
674 } else {
675 dbg("%s - Baud rate too high!", __FUNCTION__);
Andrew Mortonbd5e47c2007-10-18 01:24:25 -0700676 baud = 9600;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 div_value = ftdi_232am_baud_to_divisor(9600);
678 div_okay = 0;
679 }
680 break;
681 case FT232BM: /* FT232BM chip */
682 case FT2232C: /* FT2232C chip */
David Brownell3b009c62007-03-23 12:54:27 -0700683 case FT232RL:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 if (baud <= 3000000) {
685 div_value = ftdi_232bm_baud_to_divisor(baud);
686 } else {
687 dbg("%s - Baud rate too high!", __FUNCTION__);
688 div_value = ftdi_232bm_baud_to_divisor(9600);
689 div_okay = 0;
Alan Cox669a6db2007-10-18 01:24:24 -0700690 baud = 9600;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 }
692 break;
693 } /* priv->chip_type */
694
695 if (div_okay) {
696 dbg("%s - Baud rate set to %d (divisor 0x%lX) on chip %s",
697 __FUNCTION__, baud, (unsigned long)div_value,
698 ftdi_chip_name[priv->chip_type]);
699 }
700
Alan Cox669a6db2007-10-18 01:24:24 -0700701 tty_encode_baud_rate(port->tty, baud, baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 return(div_value);
703}
704
705
706static int get_serial_info(struct usb_serial_port * port, struct serial_struct __user * retinfo)
707{
708 struct ftdi_private *priv = usb_get_serial_port_data(port);
709 struct serial_struct tmp;
710
711 if (!retinfo)
712 return -EFAULT;
713 memset(&tmp, 0, sizeof(tmp));
714 tmp.flags = priv->flags;
715 tmp.baud_base = priv->baud_base;
716 tmp.custom_divisor = priv->custom_divisor;
717 if (copy_to_user(retinfo, &tmp, sizeof(*retinfo)))
718 return -EFAULT;
719 return 0;
720} /* get_serial_info */
721
722
723static int set_serial_info(struct usb_serial_port * port, struct serial_struct __user * newinfo)
724{ /* set_serial_info */
725 struct ftdi_private *priv = usb_get_serial_port_data(port);
726 struct serial_struct new_serial;
727 struct ftdi_private old_priv;
728
729 if (copy_from_user(&new_serial, newinfo, sizeof(new_serial)))
730 return -EFAULT;
731 old_priv = * priv;
732
733 /* Do error checking and permission checking */
734
735 if (!capable(CAP_SYS_ADMIN)) {
736 if (((new_serial.flags & ~ASYNC_USR_MASK) !=
737 (priv->flags & ~ASYNC_USR_MASK)))
738 return -EPERM;
739 priv->flags = ((priv->flags & ~ASYNC_USR_MASK) |
740 (new_serial.flags & ASYNC_USR_MASK));
741 priv->custom_divisor = new_serial.custom_divisor;
742 goto check_and_exit;
743 }
744
745 if ((new_serial.baud_base != priv->baud_base) &&
746 (new_serial.baud_base < 9600))
747 return -EINVAL;
748
749 /* Make the changes - these are privileged changes! */
750
751 priv->flags = ((priv->flags & ~ASYNC_FLAGS) |
David Brownell5c09d142006-10-13 15:57:58 -0700752 (new_serial.flags & ASYNC_FLAGS));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 priv->custom_divisor = new_serial.custom_divisor;
754
755 port->tty->low_latency = (priv->flags & ASYNC_LOW_LATENCY) ? 1 : 0;
756
757check_and_exit:
758 if ((old_priv.flags & ASYNC_SPD_MASK) !=
759 (priv->flags & ASYNC_SPD_MASK)) {
760 if ((priv->flags & ASYNC_SPD_MASK) == ASYNC_SPD_HI)
761 port->tty->alt_speed = 57600;
762 else if ((priv->flags & ASYNC_SPD_MASK) == ASYNC_SPD_VHI)
763 port->tty->alt_speed = 115200;
764 else if ((priv->flags & ASYNC_SPD_MASK) == ASYNC_SPD_SHI)
765 port->tty->alt_speed = 230400;
766 else if ((priv->flags & ASYNC_SPD_MASK) == ASYNC_SPD_WARP)
767 port->tty->alt_speed = 460800;
768 else
769 port->tty->alt_speed = 0;
770 }
771 if (((old_priv.flags & ASYNC_SPD_MASK) !=
772 (priv->flags & ASYNC_SPD_MASK)) ||
773 (((priv->flags & ASYNC_SPD_MASK) == ASYNC_SPD_CUST) &&
774 (old_priv.custom_divisor != priv->custom_divisor))) {
775 change_speed(port);
776 }
David Brownell5c09d142006-10-13 15:57:58 -0700777
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 return (0);
779
780} /* set_serial_info */
781
782
Ian Abbott8f977e42005-06-20 16:45:42 +0100783/* Determine type of FTDI chip based on USB config and descriptor. */
784static void ftdi_determine_type(struct usb_serial_port *port)
785{
786 struct ftdi_private *priv = usb_get_serial_port_data(port);
787 struct usb_serial *serial = port->serial;
788 struct usb_device *udev = serial->dev;
789 unsigned version;
790 unsigned interfaces;
791
792 /* Assume it is not the original SIO device for now. */
Ian Abbottf5e09b72005-09-12 12:23:25 +0100793 priv->baud_base = 48000000 / 2;
Ian Abbott8f977e42005-06-20 16:45:42 +0100794 priv->write_offset = 0;
795
796 version = le16_to_cpu(udev->descriptor.bcdDevice);
797 interfaces = udev->actconfig->desc.bNumInterfaces;
798 dbg("%s: bcdDevice = 0x%x, bNumInterfaces = %u", __FUNCTION__,
799 version, interfaces);
800 if (interfaces > 1) {
801 int inter;
802
803 /* Multiple interfaces. Assume FT2232C. */
804 priv->chip_type = FT2232C;
805 /* Determine interface code. */
806 inter = serial->interface->altsetting->desc.bInterfaceNumber;
807 if (inter == 0) {
808 priv->interface = PIT_SIOA;
809 } else {
810 priv->interface = PIT_SIOB;
811 }
812 /* BM-type devices have a bug where bcdDevice gets set
813 * to 0x200 when iSerialNumber is 0. */
814 if (version < 0x500) {
815 dbg("%s: something fishy - bcdDevice too low for multi-interface device",
816 __FUNCTION__);
817 }
818 } else if (version < 0x200) {
819 /* Old device. Assume its the original SIO. */
820 priv->chip_type = SIO;
821 priv->baud_base = 12000000 / 16;
822 priv->write_offset = 1;
823 } else if (version < 0x400) {
824 /* Assume its an FT8U232AM (or FT8U245AM) */
825 /* (It might be a BM because of the iSerialNumber bug,
826 * but it will still work as an AM device.) */
827 priv->chip_type = FT8U232AM;
David Brownell3b009c62007-03-23 12:54:27 -0700828 } else if (version < 0x600) {
Ian Abbott8f977e42005-06-20 16:45:42 +0100829 /* Assume its an FT232BM (or FT245BM) */
830 priv->chip_type = FT232BM;
David Brownell3b009c62007-03-23 12:54:27 -0700831 } else {
832 /* Assume its an FT232R */
833 priv->chip_type = FT232RL;
Ian Abbott8f977e42005-06-20 16:45:42 +0100834 }
835 info("Detected %s", ftdi_chip_name[priv->chip_type]);
836}
837
838
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839/*
840 * ***************************************************************************
841 * Sysfs Attribute
842 * ***************************************************************************
843 */
844
Yani Ioannou060b8842005-05-17 06:44:04 -0400845static ssize_t show_latency_timer(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846{
847 struct usb_serial_port *port = to_usb_serial_port(dev);
848 struct ftdi_private *priv = usb_get_serial_port_data(port);
Jim Radford12bdbe02007-02-28 10:10:50 -0800849 struct usb_device *udev = port->serial->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 unsigned short latency = 0;
851 int rv = 0;
David Brownell5c09d142006-10-13 15:57:58 -0700852
David Brownell5c09d142006-10-13 15:57:58 -0700853
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 dbg("%s",__FUNCTION__);
David Brownell5c09d142006-10-13 15:57:58 -0700855
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 rv = usb_control_msg(udev,
857 usb_rcvctrlpipe(udev, 0),
858 FTDI_SIO_GET_LATENCY_TIMER_REQUEST,
859 FTDI_SIO_GET_LATENCY_TIMER_REQUEST_TYPE,
David Brownell5c09d142006-10-13 15:57:58 -0700860 0, priv->interface,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 (char*) &latency, 1, WDR_TIMEOUT);
David Brownell5c09d142006-10-13 15:57:58 -0700862
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 if (rv < 0) {
Joe Perches898eb712007-10-18 03:06:30 -0700864 dev_err(dev, "Unable to read latency timer: %i\n", rv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 return -EIO;
866 }
867 return sprintf(buf, "%i\n", latency);
868}
869
870/* Write a new value of the latency timer, in units of milliseconds. */
Yani Ioannou060b8842005-05-17 06:44:04 -0400871static ssize_t store_latency_timer(struct device *dev, struct device_attribute *attr, const char *valbuf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 size_t count)
873{
874 struct usb_serial_port *port = to_usb_serial_port(dev);
875 struct ftdi_private *priv = usb_get_serial_port_data(port);
Jim Radford12bdbe02007-02-28 10:10:50 -0800876 struct usb_device *udev = port->serial->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 char buf[1];
878 int v = simple_strtoul(valbuf, NULL, 10);
879 int rv = 0;
David Brownell5c09d142006-10-13 15:57:58 -0700880
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 dbg("%s: setting latency timer = %i", __FUNCTION__, v);
David Brownell5c09d142006-10-13 15:57:58 -0700882
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 rv = usb_control_msg(udev,
884 usb_sndctrlpipe(udev, 0),
885 FTDI_SIO_SET_LATENCY_TIMER_REQUEST,
886 FTDI_SIO_SET_LATENCY_TIMER_REQUEST_TYPE,
David Brownell5c09d142006-10-13 15:57:58 -0700887 v, priv->interface,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 buf, 0, WDR_TIMEOUT);
David Brownell5c09d142006-10-13 15:57:58 -0700889
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 if (rv < 0) {
Joe Perches898eb712007-10-18 03:06:30 -0700891 dev_err(dev, "Unable to write latency timer: %i\n", rv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 return -EIO;
893 }
David Brownell5c09d142006-10-13 15:57:58 -0700894
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 return count;
896}
897
898/* Write an event character directly to the FTDI register. The ASCII
899 value is in the low 8 bits, with the enable bit in the 9th bit. */
Yani Ioannou060b8842005-05-17 06:44:04 -0400900static ssize_t store_event_char(struct device *dev, struct device_attribute *attr, const char *valbuf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 size_t count)
902{
903 struct usb_serial_port *port = to_usb_serial_port(dev);
904 struct ftdi_private *priv = usb_get_serial_port_data(port);
Jim Radford12bdbe02007-02-28 10:10:50 -0800905 struct usb_device *udev = port->serial->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 char buf[1];
907 int v = simple_strtoul(valbuf, NULL, 10);
908 int rv = 0;
David Brownell5c09d142006-10-13 15:57:58 -0700909
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 dbg("%s: setting event char = %i", __FUNCTION__, v);
David Brownell5c09d142006-10-13 15:57:58 -0700911
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 rv = usb_control_msg(udev,
913 usb_sndctrlpipe(udev, 0),
914 FTDI_SIO_SET_EVENT_CHAR_REQUEST,
915 FTDI_SIO_SET_EVENT_CHAR_REQUEST_TYPE,
David Brownell5c09d142006-10-13 15:57:58 -0700916 v, priv->interface,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 buf, 0, WDR_TIMEOUT);
David Brownell5c09d142006-10-13 15:57:58 -0700918
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 if (rv < 0) {
920 dbg("Unable to write event character: %i", rv);
921 return -EIO;
922 }
David Brownell5c09d142006-10-13 15:57:58 -0700923
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 return count;
925}
926
927static DEVICE_ATTR(latency_timer, S_IWUSR | S_IRUGO, show_latency_timer, store_latency_timer);
928static DEVICE_ATTR(event_char, S_IWUSR, NULL, store_event_char);
929
Jim Radford12bdbe02007-02-28 10:10:50 -0800930static int create_sysfs_attrs(struct usb_serial_port *port)
Greg Kroah-Hartman13f4db92006-08-28 11:43:25 -0700931{
Jim Radford12bdbe02007-02-28 10:10:50 -0800932 struct ftdi_private *priv = usb_get_serial_port_data(port);
Greg Kroah-Hartman13f4db92006-08-28 11:43:25 -0700933 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
935 dbg("%s",__FUNCTION__);
Greg Kroah-Hartman13f4db92006-08-28 11:43:25 -0700936
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 /* XXX I've no idea if the original SIO supports the event_char
938 * sysfs parameter, so I'm playing it safe. */
939 if (priv->chip_type != SIO) {
940 dbg("sysfs attributes for %s", ftdi_chip_name[priv->chip_type]);
Jim Radford12bdbe02007-02-28 10:10:50 -0800941 retval = device_create_file(&port->dev, &dev_attr_event_char);
Greg Kroah-Hartman13f4db92006-08-28 11:43:25 -0700942 if ((!retval) &&
Stepan Moskovchenko97cd49e2007-05-09 14:53:04 -0400943 (priv->chip_type == FT232BM ||
944 priv->chip_type == FT2232C ||
945 priv->chip_type == FT232RL)) {
Jim Radford12bdbe02007-02-28 10:10:50 -0800946 retval = device_create_file(&port->dev,
Greg Kroah-Hartman13f4db92006-08-28 11:43:25 -0700947 &dev_attr_latency_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 }
949 }
Greg Kroah-Hartman13f4db92006-08-28 11:43:25 -0700950 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951}
952
Jim Radford12bdbe02007-02-28 10:10:50 -0800953static void remove_sysfs_attrs(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954{
Jim Radford12bdbe02007-02-28 10:10:50 -0800955 struct ftdi_private *priv = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956
David Brownell5c09d142006-10-13 15:57:58 -0700957 dbg("%s",__FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 /* XXX see create_sysfs_attrs */
960 if (priv->chip_type != SIO) {
Jim Radford12bdbe02007-02-28 10:10:50 -0800961 device_remove_file(&port->dev, &dev_attr_event_char);
Andrew M. Bishoped6e5282007-08-21 19:08:56 +0100962 if (priv->chip_type == FT232BM ||
963 priv->chip_type == FT2232C ||
964 priv->chip_type == FT232RL) {
Jim Radford12bdbe02007-02-28 10:10:50 -0800965 device_remove_file(&port->dev, &dev_attr_latency_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 }
967 }
David Brownell5c09d142006-10-13 15:57:58 -0700968
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969}
970
971/*
972 * ***************************************************************************
973 * FTDI driver specific functions
974 * ***************************************************************************
975 */
976
Ian Abbott8f977e42005-06-20 16:45:42 +0100977/* Probe function to check for special devices */
978static int ftdi_sio_probe (struct usb_serial *serial, const struct usb_device_id *id)
979{
Tony Lindgrenfa91d432007-05-04 18:23:24 -0700980 struct ftdi_sio_quirk *quirk = (struct ftdi_sio_quirk *)id->driver_info;
981
982 if (quirk && quirk->probe) {
983 int ret = quirk->probe(serial);
984 if (ret != 0)
985 return ret;
986 }
987
Ian Abbott8f977e42005-06-20 16:45:42 +0100988 usb_set_serial_data(serial, (void *)id->driver_info);
989
Tony Lindgrenfa91d432007-05-04 18:23:24 -0700990 return 0;
Ian Abbott8f977e42005-06-20 16:45:42 +0100991}
992
Jim Radford12bdbe02007-02-28 10:10:50 -0800993static int ftdi_sio_port_probe(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 struct ftdi_private *priv;
Oliver Neukum0ffbbe252007-07-09 12:03:08 -0700996 struct ftdi_sio_quirk *quirk = usb_get_serial_data(port->serial);
997
Greg Kroah-Hartman13f4db92006-08-28 11:43:25 -0700998
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 dbg("%s",__FUNCTION__);
1000
Eric Sesterhenn80b6ca42006-02-27 21:29:43 +01001001 priv = kzalloc(sizeof(struct ftdi_private), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 if (!priv){
1003 err("%s- kmalloc(%Zd) failed.", __FUNCTION__, sizeof(struct ftdi_private));
1004 return -ENOMEM;
1005 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006
1007 spin_lock_init(&priv->rx_lock);
Ian Abbott22465402006-06-26 12:59:17 +01001008 spin_lock_init(&priv->tx_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 init_waitqueue_head(&priv->delta_msr_wait);
1010 /* This will push the characters through immediately rather
1011 than queue a task to deliver them */
1012 priv->flags = ASYNC_LOW_LATENCY;
1013
Oliver Neukum0ffbbe252007-07-09 12:03:08 -07001014 if (quirk && quirk->port_probe)
1015 quirk->port_probe(priv);
1016
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 /* Increase the size of read buffers */
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -07001018 kfree(port->bulk_in_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 port->bulk_in_buffer = kmalloc (BUFSZ, GFP_KERNEL);
1020 if (!port->bulk_in_buffer) {
1021 kfree (priv);
1022 return -ENOMEM;
1023 }
1024 if (port->read_urb) {
1025 port->read_urb->transfer_buffer = port->bulk_in_buffer;
1026 port->read_urb->transfer_buffer_length = BUFSZ;
1027 }
1028
David Howellsc4028952006-11-22 14:57:56 +00001029 INIT_DELAYED_WORK(&priv->rx_work, ftdi_process_read);
1030 priv->port = port;
Ian Abbott76854ce2005-06-02 10:34:11 +01001031
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 /* Free port's existing write urb and transfer buffer. */
1033 if (port->write_urb) {
1034 usb_free_urb (port->write_urb);
1035 port->write_urb = NULL;
1036 }
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -07001037 kfree(port->bulk_out_buffer);
1038 port->bulk_out_buffer = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039
Jim Radford12bdbe02007-02-28 10:10:50 -08001040 usb_set_serial_port_data(port, priv);
Ian Abbott8f977e42005-06-20 16:45:42 +01001041
Jim Radford12bdbe02007-02-28 10:10:50 -08001042 ftdi_determine_type (port);
1043 create_sysfs_attrs(port);
1044 return 0;
1045}
Ian Abbott8f977e42005-06-20 16:45:42 +01001046
Ian Abbott8f977e42005-06-20 16:45:42 +01001047/* Setup for the USB-UIRT device, which requires hardwired
1048 * baudrate (38400 gets mapped to 312500) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049/* Called from usbserial:serial_probe */
Oliver Neukum0ffbbe252007-07-09 12:03:08 -07001050static void ftdi_USB_UIRT_setup (struct ftdi_private *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 dbg("%s",__FUNCTION__);
1053
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 priv->flags |= ASYNC_SPD_CUST;
1055 priv->custom_divisor = 77;
Alan Cox669a6db2007-10-18 01:24:24 -07001056 priv->force_baud = 38400;
Ian Abbott8f977e42005-06-20 16:45:42 +01001057} /* ftdi_USB_UIRT_setup */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058
Ian Abbott8f977e42005-06-20 16:45:42 +01001059/* Setup for the HE-TIRA1 device, which requires hardwired
1060 * baudrate (38400 gets mapped to 100000) and RTS-CTS enabled. */
Oliver Neukum0ffbbe252007-07-09 12:03:08 -07001061static void ftdi_HE_TIRA1_setup (struct ftdi_private *priv)
Ian Abbott8f977e42005-06-20 16:45:42 +01001062{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 dbg("%s",__FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 priv->flags |= ASYNC_SPD_CUST;
1066 priv->custom_divisor = 240;
Alan Cox669a6db2007-10-18 01:24:24 -07001067 priv->force_baud = 38400;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 priv->force_rtscts = 1;
Ian Abbott8f977e42005-06-20 16:45:42 +01001069} /* ftdi_HE_TIRA1_setup */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070
Tony Lindgrenfa91d432007-05-04 18:23:24 -07001071/*
Harald Welte20734342008-01-01 15:08:35 +01001072 * First port on JTAG adaptors such as Olimex arm-usb-ocd or the FIC/OpenMoko
1073 * Neo1973 Debug Board is reserved for JTAG interface and can be accessed from
1074 * userspace using openocd.
Tony Lindgrenfa91d432007-05-04 18:23:24 -07001075 */
Harald Welte20734342008-01-01 15:08:35 +01001076static int ftdi_jtag_probe(struct usb_serial *serial)
Tony Lindgrenfa91d432007-05-04 18:23:24 -07001077{
1078 struct usb_device *udev = serial->dev;
1079 struct usb_interface *interface = serial->interface;
1080
1081 dbg("%s",__FUNCTION__);
1082
1083 if (interface == udev->actconfig->interface[0]) {
Harald Welte20734342008-01-01 15:08:35 +01001084 info("Ignoring serial port reserved for JTAG");
Tony Lindgrenfa91d432007-05-04 18:23:24 -07001085 return -ENODEV;
1086 }
1087
1088 return 0;
1089}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090
David Brownell5c09d142006-10-13 15:57:58 -07001091/* ftdi_shutdown is called from usbserial:usb_serial_disconnect
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 * it is called when the usb device is disconnected
1093 *
1094 * usbserial:usb_serial_disconnect
1095 * calls __serial_close for each open of the port
1096 * shutdown is called then (ie ftdi_shutdown)
1097 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098static void ftdi_shutdown (struct usb_serial *serial)
Jim Radford12bdbe02007-02-28 10:10:50 -08001099{
1100 dbg("%s", __FUNCTION__);
1101}
David Brownell5c09d142006-10-13 15:57:58 -07001102
Jim Radford12bdbe02007-02-28 10:10:50 -08001103static int ftdi_sio_port_remove(struct usb_serial_port *port)
1104{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 struct ftdi_private *priv = usb_get_serial_port_data(port);
1106
1107 dbg("%s", __FUNCTION__);
1108
Jim Radford12bdbe02007-02-28 10:10:50 -08001109 remove_sysfs_attrs(port);
David Brownell5c09d142006-10-13 15:57:58 -07001110
1111 /* all open ports are closed at this point
1112 * (by usbserial.c:__serial_close, which calls ftdi_close)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 */
1114
1115 if (priv) {
1116 usb_set_serial_port_data(port, NULL);
1117 kfree(priv);
1118 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119
Jim Radford12bdbe02007-02-28 10:10:50 -08001120 return 0;
1121}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122
1123static int ftdi_open (struct usb_serial_port *port, struct file *filp)
1124{ /* ftdi_open */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 struct usb_device *dev = port->serial->dev;
1126 struct ftdi_private *priv = usb_get_serial_port_data(port);
1127 unsigned long flags;
David Brownell5c09d142006-10-13 15:57:58 -07001128
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 int result = 0;
1130 char buf[1]; /* Needed for the usb_control_msg I think */
1131
1132 dbg("%s", __FUNCTION__);
1133
Ian Abbott22465402006-06-26 12:59:17 +01001134 spin_lock_irqsave(&priv->tx_lock, flags);
1135 priv->tx_bytes = 0;
1136 spin_unlock_irqrestore(&priv->tx_lock, flags);
1137 spin_lock_irqsave(&priv->rx_lock, flags);
1138 priv->rx_bytes = 0;
1139 spin_unlock_irqrestore(&priv->rx_lock, flags);
1140
Guennadi Liakhovetski57845bd2006-04-13 22:27:12 +02001141 if (port->tty)
1142 port->tty->low_latency = (priv->flags & ASYNC_LOW_LATENCY) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143
1144 /* No error checking for this (will get errors later anyway) */
1145 /* See ftdi_sio.h for description of what is reset */
1146 usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
David Brownell5c09d142006-10-13 15:57:58 -07001147 FTDI_SIO_RESET_REQUEST, FTDI_SIO_RESET_REQUEST_TYPE,
1148 FTDI_SIO_RESET_SIO,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 priv->interface, buf, 0, WDR_TIMEOUT);
1150
1151 /* Termios defaults are set by usb_serial_init. We don't change
1152 port->tty->termios - this would loose speed settings, etc.
1153 This is same behaviour as serial.c/rs_open() - Kuba */
1154
1155 /* ftdi_set_termios will send usb control messages */
Guennadi Liakhovetski57845bd2006-04-13 22:27:12 +02001156 if (port->tty)
Alan Cox669a6db2007-10-18 01:24:24 -07001157 ftdi_set_termios(port, port->tty->termios);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158
1159 /* FIXME: Flow control might be enabled, so it should be checked -
1160 we have no control of defaults! */
1161 /* Turn on RTS and DTR since we are not flow controlling by default */
Ian Abbott74ede0f2005-07-29 12:16:41 -07001162 set_mctrl(port, TIOCM_DTR | TIOCM_RTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163
1164 /* Not throttled */
1165 spin_lock_irqsave(&priv->rx_lock, flags);
1166 priv->rx_flags &= ~(THROTTLED | ACTUALLY_THROTTLED);
1167 spin_unlock_irqrestore(&priv->rx_lock, flags);
1168
1169 /* Start reading from the device */
Ian Abbott76854ce2005-06-02 10:34:11 +01001170 priv->rx_processed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 usb_fill_bulk_urb(port->read_urb, dev,
1172 usb_rcvbulkpipe(dev, port->bulk_in_endpointAddress),
1173 port->read_urb->transfer_buffer, port->read_urb->transfer_buffer_length,
1174 ftdi_read_bulk_callback, port);
1175 result = usb_submit_urb(port->read_urb, GFP_KERNEL);
1176 if (result)
1177 err("%s - failed submitting read urb, error %d", __FUNCTION__, result);
1178
1179
1180 return result;
1181} /* ftdi_open */
1182
1183
1184
David Brownell5c09d142006-10-13 15:57:58 -07001185/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 * usbserial:__serial_close only calls ftdi_close if the point is open
1187 *
1188 * This only gets called when it is the last close
David Brownell5c09d142006-10-13 15:57:58 -07001189 *
1190 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 */
1192
1193static void ftdi_close (struct usb_serial_port *port, struct file *filp)
1194{ /* ftdi_close */
1195 unsigned int c_cflag = port->tty->termios->c_cflag;
1196 struct ftdi_private *priv = usb_get_serial_port_data(port);
1197 char buf[1];
1198
1199 dbg("%s", __FUNCTION__);
1200
Oliver Neukum95bef012008-01-22 13:56:18 +01001201 mutex_lock(&port->serial->disc_mutex);
1202 if (c_cflag & HUPCL && !port->serial->disconnected){
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 /* Disable flow control */
David Brownell5c09d142006-10-13 15:57:58 -07001204 if (usb_control_msg(port->serial->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 usb_sndctrlpipe(port->serial->dev, 0),
1206 FTDI_SIO_SET_FLOW_CTRL_REQUEST,
1207 FTDI_SIO_SET_FLOW_CTRL_REQUEST_TYPE,
1208 0, priv->interface, buf, 0,
1209 WDR_TIMEOUT) < 0) {
1210 err("error from flowcontrol urb");
David Brownell5c09d142006-10-13 15:57:58 -07001211 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212
Ian Abbott74ede0f2005-07-29 12:16:41 -07001213 /* drop RTS and DTR */
1214 clear_mctrl(port, TIOCM_DTR | TIOCM_RTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 } /* Note change no line if hupcl is off */
Oliver Neukum95bef012008-01-22 13:56:18 +01001216 mutex_unlock(&port->serial->disc_mutex);
Ian Abbott76854ce2005-06-02 10:34:11 +01001217
1218 /* cancel any scheduled reading */
1219 cancel_delayed_work(&priv->rx_work);
1220 flush_scheduled_work();
David Brownell5c09d142006-10-13 15:57:58 -07001221
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 /* shutdown our bulk read */
Mariusz Kozlowski794c9442006-11-08 15:36:25 +01001223 usb_kill_urb(port->read_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224} /* ftdi_close */
1225
1226
David Brownell5c09d142006-10-13 15:57:58 -07001227
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228/* The SIO requires the first byte to have:
1229 * B0 1
1230 * B1 0
1231 * B2..7 length of message excluding byte 0
1232 *
1233 * The new devices do not require this byte
1234 */
1235static int ftdi_write (struct usb_serial_port *port,
1236 const unsigned char *buf, int count)
1237{ /* ftdi_write */
1238 struct ftdi_private *priv = usb_get_serial_port_data(port);
1239 struct urb *urb;
1240 unsigned char *buffer;
1241 int data_offset ; /* will be 1 for the SIO and 0 otherwise */
1242 int status;
1243 int transfer_size;
Ian Abbott22465402006-06-26 12:59:17 +01001244 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245
1246 dbg("%s port %d, %d bytes", __FUNCTION__, port->number, count);
1247
1248 if (count == 0) {
1249 dbg("write request of 0 bytes");
1250 return 0;
1251 }
Ian Abbott22465402006-06-26 12:59:17 +01001252 spin_lock_irqsave(&priv->tx_lock, flags);
1253 if (priv->tx_outstanding_urbs > URB_UPPER_LIMIT) {
1254 spin_unlock_irqrestore(&priv->tx_lock, flags);
1255 dbg("%s - write limit hit\n", __FUNCTION__);
1256 return 0;
1257 }
Oliver Neukum62127a52007-03-23 14:30:16 +01001258 priv->tx_outstanding_urbs++;
Ian Abbott22465402006-06-26 12:59:17 +01001259 spin_unlock_irqrestore(&priv->tx_lock, flags);
David Brownell5c09d142006-10-13 15:57:58 -07001260
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 data_offset = priv->write_offset;
1262 dbg("data_offset set to %d",data_offset);
1263
1264 /* Determine total transfer size */
1265 transfer_size = count;
1266 if (data_offset > 0) {
1267 /* Original sio needs control bytes too... */
1268 transfer_size += (data_offset *
1269 ((count + (PKTSZ - 1 - data_offset)) /
1270 (PKTSZ - data_offset)));
1271 }
1272
1273 buffer = kmalloc (transfer_size, GFP_ATOMIC);
1274 if (!buffer) {
1275 err("%s ran out of kernel memory for urb ...", __FUNCTION__);
Oliver Neukum62127a52007-03-23 14:30:16 +01001276 count = -ENOMEM;
1277 goto error_no_buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 }
1279
1280 urb = usb_alloc_urb(0, GFP_ATOMIC);
1281 if (!urb) {
1282 err("%s - no more free urbs", __FUNCTION__);
Oliver Neukum62127a52007-03-23 14:30:16 +01001283 count = -ENOMEM;
1284 goto error_no_urb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 }
1286
1287 /* Copy data */
1288 if (data_offset > 0) {
1289 /* Original sio requires control byte at start of each packet. */
1290 int user_pktsz = PKTSZ - data_offset;
1291 int todo = count;
1292 unsigned char *first_byte = buffer;
1293 const unsigned char *current_position = buf;
1294
1295 while (todo > 0) {
1296 if (user_pktsz > todo) {
1297 user_pktsz = todo;
1298 }
1299 /* Write the control byte at the front of the packet*/
David Brownell5c09d142006-10-13 15:57:58 -07001300 *first_byte = 1 | ((user_pktsz) << 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 /* Copy data for packet */
1302 memcpy (first_byte + data_offset,
1303 current_position, user_pktsz);
1304 first_byte += user_pktsz + data_offset;
1305 current_position += user_pktsz;
1306 todo -= user_pktsz;
1307 }
1308 } else {
1309 /* No control byte required. */
1310 /* Copy in the data to send */
1311 memcpy (buffer, buf, count);
1312 }
1313
1314 usb_serial_debug_data(debug, &port->dev, __FUNCTION__, transfer_size, buffer);
1315
1316 /* fill the buffer and send it */
David Brownell5c09d142006-10-13 15:57:58 -07001317 usb_fill_bulk_urb(urb, port->serial->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 usb_sndbulkpipe(port->serial->dev, port->bulk_out_endpointAddress),
1319 buffer, transfer_size,
1320 ftdi_write_bulk_callback, port);
1321
1322 status = usb_submit_urb(urb, GFP_ATOMIC);
1323 if (status) {
1324 err("%s - failed submitting write urb, error %d", __FUNCTION__, status);
1325 count = status;
Oliver Neukum62127a52007-03-23 14:30:16 +01001326 goto error;
Ian Abbott22465402006-06-26 12:59:17 +01001327 } else {
1328 spin_lock_irqsave(&priv->tx_lock, flags);
Ian Abbott22465402006-06-26 12:59:17 +01001329 priv->tx_outstanding_bytes += count;
1330 priv->tx_bytes += count;
1331 spin_unlock_irqrestore(&priv->tx_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 }
1333
1334 /* we are done with this urb, so let the host driver
1335 * really free it when it is finished with it */
Oliver Neukum62127a52007-03-23 14:30:16 +01001336 usb_free_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337
1338 dbg("%s write returning: %d", __FUNCTION__, count);
1339 return count;
Oliver Neukum62127a52007-03-23 14:30:16 +01001340error:
1341 usb_free_urb(urb);
1342error_no_urb:
1343 kfree (buffer);
1344error_no_buffer:
1345 spin_lock_irqsave(&priv->tx_lock, flags);
1346 priv->tx_outstanding_urbs--;
1347 spin_unlock_irqrestore(&priv->tx_lock, flags);
1348 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349} /* ftdi_write */
1350
1351
1352/* This function may get called when the device is closed */
1353
David Howells7d12e782006-10-05 14:55:46 +01001354static void ftdi_write_bulk_callback (struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355{
Ian Abbott22465402006-06-26 12:59:17 +01001356 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 struct usb_serial_port *port = (struct usb_serial_port *)urb->context;
Ian Abbott22465402006-06-26 12:59:17 +01001358 struct ftdi_private *priv;
1359 int data_offset; /* will be 1 for the SIO and 0 otherwise */
1360 unsigned long countback;
Greg Kroah-Hartman0fb0aa12007-06-15 15:44:13 -07001361 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362
1363 /* free up the transfer buffer, as usb_free_urb() does not do this */
1364 kfree (urb->transfer_buffer);
1365
1366 dbg("%s - port %d", __FUNCTION__, port->number);
David Brownell5c09d142006-10-13 15:57:58 -07001367
Greg Kroah-Hartman0fb0aa12007-06-15 15:44:13 -07001368 if (status) {
1369 dbg("nonzero write bulk status received: %d", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 return;
1371 }
1372
Ian Abbott22465402006-06-26 12:59:17 +01001373 priv = usb_get_serial_port_data(port);
1374 if (!priv) {
1375 dbg("%s - bad port private data pointer - exiting", __FUNCTION__);
1376 return;
1377 }
1378 /* account for transferred data */
1379 countback = urb->actual_length;
1380 data_offset = priv->write_offset;
1381 if (data_offset > 0) {
1382 /* Subtract the control bytes */
1383 countback -= (data_offset * ((countback + (PKTSZ - 1)) / PKTSZ));
1384 }
1385 spin_lock_irqsave(&priv->tx_lock, flags);
1386 --priv->tx_outstanding_urbs;
1387 priv->tx_outstanding_bytes -= countback;
1388 spin_unlock_irqrestore(&priv->tx_lock, flags);
1389
Pete Zaitcevcf2c7482006-05-22 21:58:49 -07001390 usb_serial_port_softint(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391} /* ftdi_write_bulk_callback */
1392
1393
1394static int ftdi_write_room( struct usb_serial_port *port )
1395{
Ian Abbott22465402006-06-26 12:59:17 +01001396 struct ftdi_private *priv = usb_get_serial_port_data(port);
1397 int room;
1398 unsigned long flags;
1399
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 dbg("%s - port %d", __FUNCTION__, port->number);
1401
Ian Abbott22465402006-06-26 12:59:17 +01001402 spin_lock_irqsave(&priv->tx_lock, flags);
1403 if (priv->tx_outstanding_urbs < URB_UPPER_LIMIT) {
1404 /*
1405 * We really can take anything the user throws at us
1406 * but let's pick a nice big number to tell the tty
1407 * layer that we have lots of free space
1408 */
1409 room = 2048;
1410 } else {
1411 room = 0;
1412 }
1413 spin_unlock_irqrestore(&priv->tx_lock, flags);
1414 return room;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415} /* ftdi_write_room */
1416
1417
1418static int ftdi_chars_in_buffer (struct usb_serial_port *port)
1419{ /* ftdi_chars_in_buffer */
Ian Abbott22465402006-06-26 12:59:17 +01001420 struct ftdi_private *priv = usb_get_serial_port_data(port);
1421 int buffered;
1422 unsigned long flags;
1423
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 dbg("%s - port %d", __FUNCTION__, port->number);
1425
Ian Abbott22465402006-06-26 12:59:17 +01001426 spin_lock_irqsave(&priv->tx_lock, flags);
1427 buffered = (int)priv->tx_outstanding_bytes;
1428 spin_unlock_irqrestore(&priv->tx_lock, flags);
1429 if (buffered < 0) {
1430 err("%s outstanding tx bytes is negative!", __FUNCTION__);
1431 buffered = 0;
1432 }
1433 return buffered;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434} /* ftdi_chars_in_buffer */
1435
1436
1437
David Howells7d12e782006-10-05 14:55:46 +01001438static void ftdi_read_bulk_callback (struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439{ /* ftdi_read_bulk_callback */
1440 struct usb_serial_port *port = (struct usb_serial_port *)urb->context;
1441 struct tty_struct *tty;
1442 struct ftdi_private *priv;
Ian Abbott22465402006-06-26 12:59:17 +01001443 unsigned long countread;
1444 unsigned long flags;
Greg Kroah-Hartman0fb0aa12007-06-15 15:44:13 -07001445 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446
1447 if (urb->number_of_packets > 0) {
1448 err("%s transfer_buffer_length %d actual_length %d number of packets %d",__FUNCTION__,
1449 urb->transfer_buffer_length, urb->actual_length, urb->number_of_packets );
1450 err("%s transfer_flags %x ", __FUNCTION__,urb->transfer_flags );
1451 }
1452
1453 dbg("%s - port %d", __FUNCTION__, port->number);
1454
1455 if (port->open_count <= 0)
1456 return;
1457
1458 tty = port->tty;
1459 if (!tty) {
1460 dbg("%s - bad tty pointer - exiting",__FUNCTION__);
1461 return;
1462 }
1463
1464 priv = usb_get_serial_port_data(port);
1465 if (!priv) {
1466 dbg("%s - bad port private data pointer - exiting", __FUNCTION__);
1467 return;
1468 }
1469
1470 if (urb != port->read_urb) {
1471 err("%s - Not my urb!", __FUNCTION__);
1472 }
1473
Greg Kroah-Hartman0fb0aa12007-06-15 15:44:13 -07001474 if (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 /* This will happen at close every time so it is a dbg not an err */
Greg Kroah-Hartman0fb0aa12007-06-15 15:44:13 -07001476 dbg("(this is ok on close) nonzero read bulk status received: "
1477 "%d", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 return;
1479 }
1480
Ian Abbott22465402006-06-26 12:59:17 +01001481 /* count data bytes, but not status bytes */
1482 countread = urb->actual_length;
1483 countread -= 2 * ((countread + (PKTSZ - 1)) / PKTSZ);
1484 spin_lock_irqsave(&priv->rx_lock, flags);
1485 priv->rx_bytes += countread;
1486 spin_unlock_irqrestore(&priv->rx_lock, flags);
1487
David Howellsc4028952006-11-22 14:57:56 +00001488 ftdi_process_read(&priv->rx_work.work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489
1490} /* ftdi_read_bulk_callback */
1491
1492
David Howellsc4028952006-11-22 14:57:56 +00001493static void ftdi_process_read (struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494{ /* ftdi_process_read */
David Howellsc4028952006-11-22 14:57:56 +00001495 struct ftdi_private *priv =
1496 container_of(work, struct ftdi_private, rx_work.work);
1497 struct usb_serial_port *port = priv->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 struct urb *urb;
1499 struct tty_struct *tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 char error_flag;
David Brownell5c09d142006-10-13 15:57:58 -07001501 unsigned char *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502
1503 int i;
1504 int result;
1505 int need_flip;
1506 int packet_offset;
Ian Abbott76854ce2005-06-02 10:34:11 +01001507 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508
1509 dbg("%s - port %d", __FUNCTION__, port->number);
1510
1511 if (port->open_count <= 0)
1512 return;
1513
1514 tty = port->tty;
1515 if (!tty) {
1516 dbg("%s - bad tty pointer - exiting",__FUNCTION__);
1517 return;
1518 }
1519
1520 priv = usb_get_serial_port_data(port);
1521 if (!priv) {
1522 dbg("%s - bad port private data pointer - exiting", __FUNCTION__);
1523 return;
1524 }
1525
1526 urb = port->read_urb;
1527 if (!urb) {
1528 dbg("%s - bad read_urb pointer - exiting", __FUNCTION__);
1529 return;
1530 }
1531
1532 data = urb->transfer_buffer;
1533
Ian Abbott76854ce2005-06-02 10:34:11 +01001534 if (priv->rx_processed) {
1535 dbg("%s - already processed: %d bytes, %d remain", __FUNCTION__,
1536 priv->rx_processed,
1537 urb->actual_length - priv->rx_processed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 } else {
Ian Abbott76854ce2005-06-02 10:34:11 +01001539 /* The first two bytes of every read packet are status */
1540 if (urb->actual_length > 2) {
1541 usb_serial_debug_data(debug, &port->dev, __FUNCTION__, urb->actual_length, data);
1542 } else {
1543 dbg("Status only: %03oo %03oo",data[0],data[1]);
1544 }
1545 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546
1547
1548 /* TO DO -- check for hung up line and handle appropriately: */
1549 /* send hangup */
1550 /* See acm.c - you do a tty_hangup - eg tty_hangup(tty) */
1551 /* if CD is dropped and the line is not CLOCAL then we should hangup */
1552
1553 need_flip = 0;
Ian Abbott76854ce2005-06-02 10:34:11 +01001554 for (packet_offset = priv->rx_processed; packet_offset < urb->actual_length; packet_offset += PKTSZ) {
1555 int length;
1556
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 /* Compare new line status to the old one, signal if different */
Ian Abbott76854ce2005-06-02 10:34:11 +01001558 /* N.B. packet may be processed more than once, but differences
1559 * are only processed once. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 if (priv != NULL) {
1561 char new_status = data[packet_offset+0] & FTDI_STATUS_B0_MASK;
1562 if (new_status != priv->prev_status) {
1563 priv->diff_status |= new_status ^ priv->prev_status;
1564 wake_up_interruptible(&priv->delta_msr_wait);
1565 priv->prev_status = new_status;
1566 }
1567 }
1568
Ian Abbott76854ce2005-06-02 10:34:11 +01001569 length = min(PKTSZ, urb->actual_length-packet_offset)-2;
1570 if (length < 0) {
1571 err("%s - bad packet length: %d", __FUNCTION__, length+2);
1572 length = 0;
1573 }
1574
Ian Abbott76854ce2005-06-02 10:34:11 +01001575 if (priv->rx_flags & THROTTLED) {
1576 dbg("%s - throttled", __FUNCTION__);
1577 break;
1578 }
Alan Cox33f0f882006-01-09 20:54:13 -08001579 if (tty_buffer_request_room(tty, length) < length) {
Ian Abbott76854ce2005-06-02 10:34:11 +01001580 /* break out & wait for throttling/unthrottling to happen */
1581 dbg("%s - receive room low", __FUNCTION__);
1582 break;
1583 }
1584
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 /* Handle errors and break */
1586 error_flag = TTY_NORMAL;
1587 /* Although the device uses a bitmask and hence can have multiple */
1588 /* errors on a packet - the order here sets the priority the */
1589 /* error is returned to the tty layer */
1590
1591 if ( data[packet_offset+1] & FTDI_RS_OE ) {
1592 error_flag = TTY_OVERRUN;
1593 dbg("OVERRRUN error");
1594 }
1595 if ( data[packet_offset+1] & FTDI_RS_BI ) {
1596 error_flag = TTY_BREAK;
1597 dbg("BREAK received");
1598 }
1599 if ( data[packet_offset+1] & FTDI_RS_PE ) {
1600 error_flag = TTY_PARITY;
1601 dbg("PARITY error");
1602 }
1603 if ( data[packet_offset+1] & FTDI_RS_FE ) {
1604 error_flag = TTY_FRAME;
1605 dbg("FRAMING error");
1606 }
Ian Abbott76854ce2005-06-02 10:34:11 +01001607 if (length > 0) {
1608 for (i = 2; i < length+2; i++) {
David Brownell5c09d142006-10-13 15:57:58 -07001609 /* Note that the error flag is duplicated for
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 every character received since we don't know
1611 which character it applied to */
1612 tty_insert_flip_char(tty, data[packet_offset+i], error_flag);
1613 }
1614 need_flip = 1;
1615 }
1616
1617#ifdef NOT_CORRECT_BUT_KEEPING_IT_FOR_NOW
1618 /* if a parity error is detected you get status packets forever
1619 until a character is sent without a parity error.
1620 This doesn't work well since the application receives a never
1621 ending stream of bad data - even though new data hasn't been sent.
1622 Therefore I (bill) have taken this out.
David Brownell5c09d142006-10-13 15:57:58 -07001623 However - this might make sense for framing errors and so on
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 so I am leaving the code in for now.
1625 */
1626 else {
1627 if (error_flag != TTY_NORMAL){
1628 dbg("error_flag is not normal");
1629 /* In this case it is just status - if that is an error send a bad character */
1630 if(tty->flip.count >= TTY_FLIPBUF_SIZE) {
1631 tty_flip_buffer_push(tty);
1632 }
1633 tty_insert_flip_char(tty, 0xff, error_flag);
1634 need_flip = 1;
1635 }
1636 }
1637#endif
1638 } /* "for(packet_offset=0..." */
1639
1640 /* Low latency */
1641 if (need_flip) {
1642 tty_flip_buffer_push(tty);
1643 }
1644
Ian Abbott76854ce2005-06-02 10:34:11 +01001645 if (packet_offset < urb->actual_length) {
1646 /* not completely processed - record progress */
1647 priv->rx_processed = packet_offset;
1648 dbg("%s - incomplete, %d bytes processed, %d remain",
1649 __FUNCTION__, packet_offset,
1650 urb->actual_length - packet_offset);
1651 /* check if we were throttled while processing */
1652 spin_lock_irqsave(&priv->rx_lock, flags);
1653 if (priv->rx_flags & THROTTLED) {
1654 priv->rx_flags |= ACTUALLY_THROTTLED;
1655 spin_unlock_irqrestore(&priv->rx_lock, flags);
1656 dbg("%s - deferring remainder until unthrottled",
1657 __FUNCTION__);
1658 return;
1659 }
1660 spin_unlock_irqrestore(&priv->rx_lock, flags);
1661 /* if the port is closed stop trying to read */
1662 if (port->open_count > 0){
1663 /* delay processing of remainder */
1664 schedule_delayed_work(&priv->rx_work, 1);
1665 } else {
1666 dbg("%s - port is closed", __FUNCTION__);
1667 }
1668 return;
1669 }
1670
1671 /* urb is completely processed */
1672 priv->rx_processed = 0;
1673
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 /* if the port is closed stop trying to read */
1675 if (port->open_count > 0){
1676 /* Continue trying to always read */
David Brownell5c09d142006-10-13 15:57:58 -07001677 usb_fill_bulk_urb(port->read_urb, port->serial->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 usb_rcvbulkpipe(port->serial->dev, port->bulk_in_endpointAddress),
1679 port->read_urb->transfer_buffer, port->read_urb->transfer_buffer_length,
1680 ftdi_read_bulk_callback, port);
1681
1682 result = usb_submit_urb(port->read_urb, GFP_ATOMIC);
1683 if (result)
1684 err("%s - failed resubmitting read urb, error %d", __FUNCTION__, result);
1685 }
1686
1687 return;
1688} /* ftdi_process_read */
1689
1690
1691static void ftdi_break_ctl( struct usb_serial_port *port, int break_state )
1692{
1693 struct ftdi_private *priv = usb_get_serial_port_data(port);
David Brownell5c09d142006-10-13 15:57:58 -07001694 __u16 urb_value = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 char buf[1];
David Brownell5c09d142006-10-13 15:57:58 -07001696
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 /* break_state = -1 to turn on break, and 0 to turn off break */
1698 /* see drivers/char/tty_io.c to see it used */
1699 /* last_set_data_urb_value NEVER has the break bit set in it */
1700
1701 if (break_state) {
1702 urb_value = priv->last_set_data_urb_value | FTDI_SIO_SET_BREAK;
1703 } else {
David Brownell5c09d142006-10-13 15:57:58 -07001704 urb_value = priv->last_set_data_urb_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 }
1706
David Brownell5c09d142006-10-13 15:57:58 -07001707
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 if (usb_control_msg(port->serial->dev, usb_sndctrlpipe(port->serial->dev, 0),
David Brownell5c09d142006-10-13 15:57:58 -07001709 FTDI_SIO_SET_DATA_REQUEST,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 FTDI_SIO_SET_DATA_REQUEST_TYPE,
1711 urb_value , priv->interface,
1712 buf, 0, WDR_TIMEOUT) < 0) {
1713 err("%s FAILED to enable/disable break state (state was %d)", __FUNCTION__,break_state);
David Brownell5c09d142006-10-13 15:57:58 -07001714 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715
1716 dbg("%s break state is %d - urb is %d", __FUNCTION__,break_state, urb_value);
David Brownell5c09d142006-10-13 15:57:58 -07001717
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718}
1719
1720
1721/* old_termios contains the original termios settings and tty->termios contains
1722 * the new setting to be used
1723 * WARNING: set_termios calls this with old_termios in kernel space
1724 */
1725
Alan Cox606d0992006-12-08 02:38:45 -08001726static void ftdi_set_termios (struct usb_serial_port *port, struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727{ /* ftdi_termios */
1728 struct usb_device *dev = port->serial->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 struct ftdi_private *priv = usb_get_serial_port_data(port);
Alan Cox669a6db2007-10-18 01:24:24 -07001730 struct ktermios *termios = port->tty->termios;
1731 unsigned int cflag = termios->c_cflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 __u16 urb_value; /* will hold the new flags */
1733 char buf[1]; /* Perhaps I should dynamically alloc this? */
David Brownell5c09d142006-10-13 15:57:58 -07001734
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 // Added for xon/xoff support
Alan Cox669a6db2007-10-18 01:24:24 -07001736 unsigned int iflag = termios->c_iflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 unsigned char vstop;
1738 unsigned char vstart;
David Brownell5c09d142006-10-13 15:57:58 -07001739
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 dbg("%s", __FUNCTION__);
1741
1742 /* Force baud rate if this device requires it, unless it is set to B0. */
Alan Cox669a6db2007-10-18 01:24:24 -07001743 if (priv->force_baud && ((termios->c_cflag & CBAUD) != B0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 dbg("%s: forcing baud rate for this device", __FUNCTION__);
Andrew Mortonbd5e47c2007-10-18 01:24:25 -07001745 tty_encode_baud_rate(port->tty, priv->force_baud,
1746 priv->force_baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 }
1748
1749 /* Force RTS-CTS if this device requires it. */
1750 if (priv->force_rtscts) {
1751 dbg("%s: forcing rtscts for this device", __FUNCTION__);
Alan Cox669a6db2007-10-18 01:24:24 -07001752 termios->c_cflag |= CRTSCTS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 }
1754
Alan Cox669a6db2007-10-18 01:24:24 -07001755 cflag = termios->c_cflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756
David Brownell5c09d142006-10-13 15:57:58 -07001757 /* FIXME -For this cut I don't care if the line is really changing or
1758 not - so just do the change regardless - should be able to
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 compare old_termios and tty->termios */
David Brownell5c09d142006-10-13 15:57:58 -07001760 /* NOTE These routines can get interrupted by
1761 ftdi_sio_read_bulk_callback - need to examine what this
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 means - don't see any problems yet */
David Brownell5c09d142006-10-13 15:57:58 -07001763
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 /* Set number of data bits, parity, stop bits */
David Brownell5c09d142006-10-13 15:57:58 -07001765
Alan Cox669a6db2007-10-18 01:24:24 -07001766 termios->c_cflag &= ~CMSPAR;
1767
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 urb_value = 0;
1769 urb_value |= (cflag & CSTOPB ? FTDI_SIO_SET_DATA_STOP_BITS_2 :
1770 FTDI_SIO_SET_DATA_STOP_BITS_1);
David Brownell5c09d142006-10-13 15:57:58 -07001771 urb_value |= (cflag & PARENB ?
1772 (cflag & PARODD ? FTDI_SIO_SET_DATA_PARITY_ODD :
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 FTDI_SIO_SET_DATA_PARITY_EVEN) :
1774 FTDI_SIO_SET_DATA_PARITY_NONE);
1775 if (cflag & CSIZE) {
1776 switch (cflag & CSIZE) {
1777 case CS5: urb_value |= 5; dbg("Setting CS5"); break;
1778 case CS6: urb_value |= 6; dbg("Setting CS6"); break;
1779 case CS7: urb_value |= 7; dbg("Setting CS7"); break;
1780 case CS8: urb_value |= 8; dbg("Setting CS8"); break;
1781 default:
1782 err("CSIZE was set but not CS5-CS8");
1783 }
1784 }
1785
1786 /* This is needed by the break command since it uses the same command - but is
1787 * or'ed with this value */
1788 priv->last_set_data_urb_value = urb_value;
David Brownell5c09d142006-10-13 15:57:58 -07001789
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 if (usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
David Brownell5c09d142006-10-13 15:57:58 -07001791 FTDI_SIO_SET_DATA_REQUEST,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 FTDI_SIO_SET_DATA_REQUEST_TYPE,
1793 urb_value , priv->interface,
Ian Abbott279e1542005-07-29 12:16:52 -07001794 buf, 0, WDR_SHORT_TIMEOUT) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 err("%s FAILED to set databits/stopbits/parity", __FUNCTION__);
David Brownell5c09d142006-10-13 15:57:58 -07001796 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797
1798 /* Now do the baudrate */
1799 if ((cflag & CBAUD) == B0 ) {
1800 /* Disable flow control */
1801 if (usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
David Brownell5c09d142006-10-13 15:57:58 -07001802 FTDI_SIO_SET_FLOW_CTRL_REQUEST,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 FTDI_SIO_SET_FLOW_CTRL_REQUEST_TYPE,
David Brownell5c09d142006-10-13 15:57:58 -07001804 0, priv->interface,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 buf, 0, WDR_TIMEOUT) < 0) {
1806 err("%s error from disable flowcontrol urb", __FUNCTION__);
David Brownell5c09d142006-10-13 15:57:58 -07001807 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 /* Drop RTS and DTR */
Ian Abbott74ede0f2005-07-29 12:16:41 -07001809 clear_mctrl(port, TIOCM_DTR | TIOCM_RTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 } else {
1811 /* set the baudrate determined before */
1812 if (change_speed(port)) {
Peter Favrholdt72a755f2005-09-22 00:48:49 -07001813 err("%s urb failed to set baudrate", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 }
Peter Favrholdt72a755f2005-09-22 00:48:49 -07001815 /* Ensure RTS and DTR are raised when baudrate changed from 0 */
Guennadi Liakhovetski57845bd2006-04-13 22:27:12 +02001816 if (!old_termios || (old_termios->c_cflag & CBAUD) == B0) {
Peter Favrholdt72a755f2005-09-22 00:48:49 -07001817 set_mctrl(port, TIOCM_DTR | TIOCM_RTS);
1818 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 }
1820
1821 /* Set flow control */
1822 /* Note device also supports DTR/CD (ugh) and Xon/Xoff in hardware */
1823 if (cflag & CRTSCTS) {
1824 dbg("%s Setting to CRTSCTS flow control", __FUNCTION__);
David Brownell5c09d142006-10-13 15:57:58 -07001825 if (usb_control_msg(dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 usb_sndctrlpipe(dev, 0),
David Brownell5c09d142006-10-13 15:57:58 -07001827 FTDI_SIO_SET_FLOW_CTRL_REQUEST,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 FTDI_SIO_SET_FLOW_CTRL_REQUEST_TYPE,
1829 0 , (FTDI_SIO_RTS_CTS_HS | priv->interface),
1830 buf, 0, WDR_TIMEOUT) < 0) {
1831 err("urb failed to set to rts/cts flow control");
David Brownell5c09d142006-10-13 15:57:58 -07001832 }
1833
1834 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 /*
1836 * Xon/Xoff code
1837 *
1838 * Check the IXOFF status in the iflag component of the termios structure
1839 * if IXOFF is not set, the pre-xon/xoff code is executed.
1840 */
1841 if (iflag & IXOFF) {
1842 dbg("%s request to enable xonxoff iflag=%04x",__FUNCTION__,iflag);
1843 // Try to enable the XON/XOFF on the ftdi_sio
1844 // Set the vstart and vstop -- could have been done up above where
1845 // a lot of other dereferencing is done but that would be very
1846 // inefficient as vstart and vstop are not always needed
Alan Cox669a6db2007-10-18 01:24:24 -07001847 vstart = termios->c_cc[VSTART];
1848 vstop = termios->c_cc[VSTOP];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 urb_value=(vstop << 8) | (vstart);
1850
1851 if (usb_control_msg(dev,
1852 usb_sndctrlpipe(dev, 0),
1853 FTDI_SIO_SET_FLOW_CTRL_REQUEST,
1854 FTDI_SIO_SET_FLOW_CTRL_REQUEST_TYPE,
1855 urb_value , (FTDI_SIO_XON_XOFF_HS
1856 | priv->interface),
1857 buf, 0, WDR_TIMEOUT) < 0) {
1858 err("urb failed to set to xon/xoff flow control");
1859 }
1860 } else {
1861 /* else clause to only run if cfag ! CRTSCTS and iflag ! XOFF */
1862 /* CHECKME Assuming XON/XOFF handled by tty stack - not by device */
1863 dbg("%s Turning off hardware flow control", __FUNCTION__);
David Brownell5c09d142006-10-13 15:57:58 -07001864 if (usb_control_msg(dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 usb_sndctrlpipe(dev, 0),
David Brownell5c09d142006-10-13 15:57:58 -07001866 FTDI_SIO_SET_FLOW_CTRL_REQUEST,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 FTDI_SIO_SET_FLOW_CTRL_REQUEST_TYPE,
David Brownell5c09d142006-10-13 15:57:58 -07001868 0, priv->interface,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 buf, 0, WDR_TIMEOUT) < 0) {
1870 err("urb failed to clear flow control");
David Brownell5c09d142006-10-13 15:57:58 -07001871 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 }
David Brownell5c09d142006-10-13 15:57:58 -07001873
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 }
1875 return;
1876} /* ftdi_termios */
1877
1878
1879static int ftdi_tiocmget (struct usb_serial_port *port, struct file *file)
1880{
1881 struct ftdi_private *priv = usb_get_serial_port_data(port);
1882 unsigned char buf[2];
1883 int ret;
1884
1885 dbg("%s TIOCMGET", __FUNCTION__);
1886 switch (priv->chip_type) {
1887 case SIO:
1888 /* Request the status from the device */
David Brownell5c09d142006-10-13 15:57:58 -07001889 if ((ret = usb_control_msg(port->serial->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 usb_rcvctrlpipe(port->serial->dev, 0),
David Brownell5c09d142006-10-13 15:57:58 -07001891 FTDI_SIO_GET_MODEM_STATUS_REQUEST,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 FTDI_SIO_GET_MODEM_STATUS_REQUEST_TYPE,
David Brownell5c09d142006-10-13 15:57:58 -07001893 0, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 buf, 1, WDR_TIMEOUT)) < 0 ) {
1895 err("%s Could not get modem status of device - err: %d", __FUNCTION__,
1896 ret);
1897 return(ret);
1898 }
1899 break;
1900 case FT8U232AM:
1901 case FT232BM:
1902 case FT2232C:
Andrew M. Bishoped6e5282007-08-21 19:08:56 +01001903 case FT232RL:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 /* the 8U232AM returns a two byte value (the sio is a 1 byte value) - in the same
1905 format as the data returned from the in point */
David Brownell5c09d142006-10-13 15:57:58 -07001906 if ((ret = usb_control_msg(port->serial->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 usb_rcvctrlpipe(port->serial->dev, 0),
David Brownell5c09d142006-10-13 15:57:58 -07001908 FTDI_SIO_GET_MODEM_STATUS_REQUEST,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 FTDI_SIO_GET_MODEM_STATUS_REQUEST_TYPE,
David Brownell5c09d142006-10-13 15:57:58 -07001910 0, priv->interface,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 buf, 2, WDR_TIMEOUT)) < 0 ) {
1912 err("%s Could not get modem status of device - err: %d", __FUNCTION__,
1913 ret);
1914 return(ret);
1915 }
1916 break;
1917 default:
1918 return -EFAULT;
1919 break;
1920 }
David Brownell5c09d142006-10-13 15:57:58 -07001921
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 return (buf[0] & FTDI_SIO_DSR_MASK ? TIOCM_DSR : 0) |
1923 (buf[0] & FTDI_SIO_CTS_MASK ? TIOCM_CTS : 0) |
1924 (buf[0] & FTDI_SIO_RI_MASK ? TIOCM_RI : 0) |
1925 (buf[0] & FTDI_SIO_RLSD_MASK ? TIOCM_CD : 0) |
David Brownell5c09d142006-10-13 15:57:58 -07001926 priv->last_dtr_rts;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927}
1928
1929static int ftdi_tiocmset(struct usb_serial_port *port, struct file * file, unsigned int set, unsigned int clear)
1930{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 dbg("%s TIOCMSET", __FUNCTION__);
Ian Abbott74ede0f2005-07-29 12:16:41 -07001932 return update_mctrl(port, set, clear);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933}
1934
1935
1936static int ftdi_ioctl (struct usb_serial_port *port, struct file * file, unsigned int cmd, unsigned long arg)
1937{
1938 struct ftdi_private *priv = usb_get_serial_port_data(port);
1939
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 dbg("%s cmd 0x%04x", __FUNCTION__, cmd);
1941
1942 /* Based on code from acm.c and others */
1943 switch (cmd) {
1944
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 case TIOCGSERIAL: /* gets serial port data */
1946 return get_serial_info(port, (struct serial_struct __user *) arg);
1947
1948 case TIOCSSERIAL: /* sets serial port data */
1949 return set_serial_info(port, (struct serial_struct __user *) arg);
1950
1951 /*
1952 * Wait for any of the 4 modem inputs (DCD,RI,DSR,CTS) to change
1953 * - mask passed in arg for lines of interest
1954 * (use |'ed TIOCM_RNG/DSR/CD/CTS for masking)
1955 * Caller should use TIOCGICOUNT to see which one it was.
1956 *
1957 * This code is borrowed from linux/drivers/char/serial.c
1958 */
1959 case TIOCMIWAIT:
1960 while (priv != NULL) {
1961 interruptible_sleep_on(&priv->delta_msr_wait);
1962 /* see if a signal did it */
1963 if (signal_pending(current))
1964 return -ERESTARTSYS;
1965 else {
1966 char diff = priv->diff_status;
1967
1968 if (diff == 0) {
1969 return -EIO; /* no change => error */
1970 }
1971
1972 /* Consume all events */
1973 priv->diff_status = 0;
1974
1975 /* Return 0 if caller wanted to know about these bits */
1976 if ( ((arg & TIOCM_RNG) && (diff & FTDI_RS0_RI)) ||
1977 ((arg & TIOCM_DSR) && (diff & FTDI_RS0_DSR)) ||
1978 ((arg & TIOCM_CD) && (diff & FTDI_RS0_RLSD)) ||
1979 ((arg & TIOCM_CTS) && (diff & FTDI_RS0_CTS)) ) {
1980 return 0;
1981 }
1982 /*
1983 * Otherwise caller can't care less about what happened,
1984 * and so we continue to wait for more events.
1985 */
1986 }
1987 }
1988 return(0);
1989 break;
1990 default:
1991 break;
David Brownell5c09d142006-10-13 15:57:58 -07001992
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 }
1994
1995
David Brownell5c09d142006-10-13 15:57:58 -07001996 /* This is not necessarily an error - turns out the higher layers will do
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 * some ioctls itself (see comment above)
1998 */
1999 dbg("%s arg not supported - it was 0x%04x - check /usr/include/asm/ioctls.h", __FUNCTION__, cmd);
2000
2001 return(-ENOIOCTLCMD);
2002} /* ftdi_ioctl */
2003
2004
2005static void ftdi_throttle (struct usb_serial_port *port)
2006{
2007 struct ftdi_private *priv = usb_get_serial_port_data(port);
2008 unsigned long flags;
2009
2010 dbg("%s - port %d", __FUNCTION__, port->number);
2011
2012 spin_lock_irqsave(&priv->rx_lock, flags);
2013 priv->rx_flags |= THROTTLED;
2014 spin_unlock_irqrestore(&priv->rx_lock, flags);
2015}
2016
2017
2018static void ftdi_unthrottle (struct usb_serial_port *port)
2019{
2020 struct ftdi_private *priv = usb_get_serial_port_data(port);
2021 int actually_throttled;
2022 unsigned long flags;
2023
2024 dbg("%s - port %d", __FUNCTION__, port->number);
2025
2026 spin_lock_irqsave(&priv->rx_lock, flags);
2027 actually_throttled = priv->rx_flags & ACTUALLY_THROTTLED;
2028 priv->rx_flags &= ~(THROTTLED | ACTUALLY_THROTTLED);
2029 spin_unlock_irqrestore(&priv->rx_lock, flags);
2030
2031 if (actually_throttled)
David Howellsc4028952006-11-22 14:57:56 +00002032 schedule_delayed_work(&priv->rx_work, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033}
2034
2035static int __init ftdi_init (void)
2036{
2037 int retval;
2038
2039 dbg("%s", __FUNCTION__);
Ian Abbottfdcb0a02005-07-28 18:40:32 +01002040 if (vendor > 0 && product > 0) {
2041 /* Add user specified VID/PID to reserved element of table. */
2042 int i;
2043 for (i = 0; id_table_combined[i].idVendor; i++)
2044 ;
2045 id_table_combined[i].match_flags = USB_DEVICE_ID_MATCH_DEVICE;
2046 id_table_combined[i].idVendor = vendor;
2047 id_table_combined[i].idProduct = product;
2048 }
Ian Abbott8f977e42005-06-20 16:45:42 +01002049 retval = usb_serial_register(&ftdi_sio_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 if (retval)
Ian Abbott8f977e42005-06-20 16:45:42 +01002051 goto failed_sio_register;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 retval = usb_register(&ftdi_driver);
David Brownell5c09d142006-10-13 15:57:58 -07002053 if (retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 goto failed_usb_register;
2055
2056 info(DRIVER_VERSION ":" DRIVER_DESC);
2057 return 0;
2058failed_usb_register:
Ian Abbott8f977e42005-06-20 16:45:42 +01002059 usb_serial_deregister(&ftdi_sio_device);
2060failed_sio_register:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 return retval;
2062}
2063
2064
2065static void __exit ftdi_exit (void)
2066{
2067
2068 dbg("%s", __FUNCTION__);
2069
2070 usb_deregister (&ftdi_driver);
Ian Abbott8f977e42005-06-20 16:45:42 +01002071 usb_serial_deregister (&ftdi_sio_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072
2073}
2074
2075
2076module_init(ftdi_init);
2077module_exit(ftdi_exit);
2078
2079MODULE_AUTHOR( DRIVER_AUTHOR );
2080MODULE_DESCRIPTION( DRIVER_DESC );
2081MODULE_LICENSE("GPL");
2082
2083module_param(debug, bool, S_IRUGO | S_IWUSR);
2084MODULE_PARM_DESC(debug, "Debug enabled or not");
Ian Abbottfdcb0a02005-07-28 18:40:32 +01002085module_param(vendor, ushort, 0);
2086MODULE_PARM_DESC(vendor, "User specified vendor ID (default="
2087 __MODULE_STRING(FTDI_VID)")");
2088module_param(product, ushort, 0);
2089MODULE_PARM_DESC(vendor, "User specified product ID");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090