blob: 3cee6feac17406a9be3c51fdf555fd3ac9136cf3 [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 Neukum0ffbbe22007-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 Neukum0ffbbe22007-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 Neukum0ffbbe22007-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);
Kevin Vance546d7ee2008-03-01 13:49:59 -050095static int ftdi_mtxorb_hack_setup (struct usb_serial *serial);
Oliver Neukum0ffbbe22007-07-09 12:03:08 -070096static void ftdi_USB_UIRT_setup (struct ftdi_private *priv);
97static void ftdi_HE_TIRA1_setup (struct ftdi_private *priv);
Ian Abbott8f977e42005-06-20 16:45:42 +010098
Harald Welte20734342008-01-01 15:08:35 +010099static struct ftdi_sio_quirk ftdi_jtag_quirk = {
100 .probe = ftdi_jtag_probe,
Tony Lindgrenfa91d432007-05-04 18:23:24 -0700101};
102
Kevin Vance546d7ee2008-03-01 13:49:59 -0500103static struct ftdi_sio_quirk ftdi_mtxorb_hack_quirk = {
104 .probe = ftdi_mtxorb_hack_setup,
105};
106
Ian Abbott8f977e42005-06-20 16:45:42 +0100107static struct ftdi_sio_quirk ftdi_USB_UIRT_quirk = {
Oliver Neukum0ffbbe22007-07-09 12:03:08 -0700108 .port_probe = ftdi_USB_UIRT_setup,
Ian Abbott8f977e42005-06-20 16:45:42 +0100109};
110
111static struct ftdi_sio_quirk ftdi_HE_TIRA1_quirk = {
Oliver Neukum0ffbbe22007-07-09 12:03:08 -0700112 .port_probe = ftdi_HE_TIRA1_setup,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113};
114
115/*
116 * The 8U232AM has the same API as the sio except for:
117 * - it can support MUCH higher baudrates; up to:
118 * o 921600 for RS232 and 2000000 for RS422/485 at 48MHz
119 * o 230400 at 12MHz
120 * so .. 8U232AM's baudrate setting codes are different
121 * - it has a two byte status code.
122 * - it returns characters every 16ms (the FTDI does it every 40ms)
123 *
124 * the bcdDevice value is used to differentiate FT232BM and FT245BM from
125 * the earlier FT8U232AM and FT8U232BM. For now, include all known VID/PID
126 * combinations in both tables.
Ian Abbott8f977e42005-06-20 16:45:42 +0100127 * FIXME: perhaps bcdDevice can also identify 12MHz FT8U232AM devices,
128 * but I don't know if those ever went into mass production. [Ian Abbott]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 */
130
131
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
133static struct usb_device_id id_table_combined [] = {
Jonathan Davies2011e922006-08-09 10:48:03 +0100134 { USB_DEVICE(FTDI_VID, FTDI_AMC232_PID) },
135 { USB_DEVICE(FTDI_VID, FTDI_CANUSB_PID) },
Peter Mack6e1ab3e2008-04-22 13:25:11 +0200136 { USB_DEVICE(FTDI_VID, FTDI_SCS_DEVICE_0_PID) },
137 { USB_DEVICE(FTDI_VID, FTDI_SCS_DEVICE_1_PID) },
138 { USB_DEVICE(FTDI_VID, FTDI_SCS_DEVICE_2_PID) },
139 { USB_DEVICE(FTDI_VID, FTDI_SCS_DEVICE_3_PID) },
140 { USB_DEVICE(FTDI_VID, FTDI_SCS_DEVICE_4_PID) },
141 { USB_DEVICE(FTDI_VID, FTDI_SCS_DEVICE_5_PID) },
142 { USB_DEVICE(FTDI_VID, FTDI_SCS_DEVICE_6_PID) },
143 { USB_DEVICE(FTDI_VID, FTDI_SCS_DEVICE_7_PID) },
Razvan Gavril72a9f952006-05-04 11:35:49 +0300144 { USB_DEVICE(FTDI_VID, FTDI_ACTZWAVE_PID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 { USB_DEVICE(FTDI_VID, FTDI_IRTRANS_PID) },
Luiz Fernando N. Capitulino69737df2006-04-11 15:52:41 -0300146 { USB_DEVICE(FTDI_VID, FTDI_IPLUS_PID) },
Luiz Fernando N. Capitulinod0993212007-06-21 22:34:23 -0300147 { USB_DEVICE(FTDI_VID, FTDI_IPLUS2_PID) },
Frank Sievertsenfad14a02006-10-20 09:43:53 +0200148 { USB_DEVICE(FTDI_VID, FTDI_DMX4ALL) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 { USB_DEVICE(FTDI_VID, FTDI_SIO_PID) },
150 { USB_DEVICE(FTDI_VID, FTDI_8U232AM_PID) },
151 { USB_DEVICE(FTDI_VID, FTDI_8U232AM_ALT_PID) },
Gard Spreemannd8b21602007-03-05 00:03:26 +0100152 { USB_DEVICE(FTDI_VID, FTDI_232RL_PID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 { USB_DEVICE(FTDI_VID, FTDI_8U2232C_PID) },
Christophe Mariacc0f8d562006-06-23 17:36:21 +0200154 { USB_DEVICE(FTDI_VID, FTDI_MICRO_CHAMELEON_PID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 { USB_DEVICE(FTDI_VID, FTDI_RELAIS_PID) },
Guido Scholz2adb80e2007-05-08 19:52:41 +0200156 { USB_DEVICE(FTDI_VID, FTDI_OPENDCC_PID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 { USB_DEVICE(INTERBIOMETRICS_VID, INTERBIOMETRICS_IOBOARD_PID) },
158 { USB_DEVICE(INTERBIOMETRICS_VID, INTERBIOMETRICS_MINI_IOBOARD_PID) },
159 { USB_DEVICE(FTDI_VID, FTDI_XF_632_PID) },
160 { USB_DEVICE(FTDI_VID, FTDI_XF_634_PID) },
161 { USB_DEVICE(FTDI_VID, FTDI_XF_547_PID) },
162 { USB_DEVICE(FTDI_VID, FTDI_XF_633_PID) },
163 { USB_DEVICE(FTDI_VID, FTDI_XF_631_PID) },
164 { USB_DEVICE(FTDI_VID, FTDI_XF_635_PID) },
165 { USB_DEVICE(FTDI_VID, FTDI_XF_640_PID) },
166 { USB_DEVICE(FTDI_VID, FTDI_XF_642_PID) },
167 { USB_DEVICE(FTDI_VID, FTDI_DSS20_PID) },
168 { USB_DEVICE(FTDI_NF_RIC_VID, FTDI_NF_RIC_PID) },
169 { USB_DEVICE(FTDI_VID, FTDI_VNHCPCUSB_D_PID) },
Ian Abbott8f977e42005-06-20 16:45:42 +0100170 { USB_DEVICE(FTDI_VID, FTDI_MTXORB_0_PID) },
171 { USB_DEVICE(FTDI_VID, FTDI_MTXORB_1_PID) },
172 { USB_DEVICE(FTDI_VID, FTDI_MTXORB_2_PID) },
173 { USB_DEVICE(FTDI_VID, FTDI_MTXORB_3_PID) },
174 { USB_DEVICE(FTDI_VID, FTDI_MTXORB_4_PID) },
175 { USB_DEVICE(FTDI_VID, FTDI_MTXORB_5_PID) },
176 { USB_DEVICE(FTDI_VID, FTDI_MTXORB_6_PID) },
Kevin Vance546d7ee2008-03-01 13:49:59 -0500177 { USB_DEVICE(MTXORB_VK_VID, MTXORB_VK_PID),
178 .driver_info = (kernel_ulong_t)&ftdi_mtxorb_hack_quirk },
Ian Abbott8f977e42005-06-20 16:45:42 +0100179 { USB_DEVICE(FTDI_VID, FTDI_PERLE_ULTRAPORT_PID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 { USB_DEVICE(FTDI_VID, FTDI_PIEGROUP_PID) },
Dave Platt274a4bb2006-07-18 21:26:54 -0700181 { USB_DEVICE(FTDI_VID, FTDI_TNC_X_PID) },
Jelle Foks868e4402007-03-25 21:08:35 -0400182 { USB_DEVICE(FTDI_VID, FTDI_USBX_707_PID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2101_PID) },
184 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2102_PID) },
185 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2103_PID) },
186 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2104_PID) },
Justin Carlsona1484822006-09-24 11:52:12 +0300187 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2106_PID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2201_1_PID) },
189 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2201_2_PID) },
190 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2202_1_PID) },
191 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2202_2_PID) },
192 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2203_1_PID) },
193 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2203_2_PID) },
194 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2401_1_PID) },
195 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2401_2_PID) },
196 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2401_3_PID) },
197 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2401_4_PID) },
198 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2402_1_PID) },
199 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2402_2_PID) },
200 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2402_3_PID) },
201 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2402_4_PID) },
202 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2403_1_PID) },
203 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2403_2_PID) },
204 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2403_3_PID) },
205 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2403_4_PID) },
206 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_1_PID) },
207 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_2_PID) },
208 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_3_PID) },
209 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_4_PID) },
210 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_5_PID) },
211 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_6_PID) },
212 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_7_PID) },
213 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_8_PID) },
214 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_1_PID) },
215 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_2_PID) },
216 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_3_PID) },
217 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_4_PID) },
218 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_5_PID) },
219 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_6_PID) },
220 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_7_PID) },
221 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_8_PID) },
222 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_1_PID) },
223 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_2_PID) },
224 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_3_PID) },
225 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_4_PID) },
226 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_5_PID) },
227 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_6_PID) },
228 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_7_PID) },
229 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_8_PID) },
230 { USB_DEVICE(IDTECH_VID, IDTECH_IDT1221U_PID) },
231 { USB_DEVICE(OCT_VID, OCT_US101_PID) },
Ian Abbott8f977e42005-06-20 16:45:42 +0100232 { USB_DEVICE(FTDI_VID, FTDI_HE_TIRA1_PID),
233 .driver_info = (kernel_ulong_t)&ftdi_HE_TIRA1_quirk },
234 { USB_DEVICE(FTDI_VID, FTDI_USB_UIRT_PID),
235 .driver_info = (kernel_ulong_t)&ftdi_USB_UIRT_quirk },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 { USB_DEVICE(FTDI_VID, PROTEGO_SPECIAL_1) },
237 { USB_DEVICE(FTDI_VID, PROTEGO_R2X0) },
238 { USB_DEVICE(FTDI_VID, PROTEGO_SPECIAL_3) },
239 { USB_DEVICE(FTDI_VID, PROTEGO_SPECIAL_4) },
Ian Abbott8f977e42005-06-20 16:45:42 +0100240 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E808_PID) },
241 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E809_PID) },
242 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E80A_PID) },
243 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E80B_PID) },
244 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E80C_PID) },
245 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E80D_PID) },
246 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E80E_PID) },
247 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E80F_PID) },
248 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E888_PID) },
249 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E889_PID) },
250 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E88A_PID) },
251 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E88B_PID) },
252 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E88C_PID) },
253 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E88D_PID) },
254 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E88E_PID) },
255 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E88F_PID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 { USB_DEVICE(FTDI_VID, FTDI_ELV_UO100_PID) },
Ian Abbott47900742005-05-17 15:12:13 +0100257 { USB_DEVICE(FTDI_VID, FTDI_ELV_UM100_PID) },
Ian Abbotte6ac4a42005-08-02 14:01:27 +0100258 { USB_DEVICE(FTDI_VID, FTDI_ELV_UR100_PID) },
259 { USB_DEVICE(FTDI_VID, FTDI_ELV_ALC8500_PID) },
Thomas Riewe207c47e2005-09-29 14:57:29 +0200260 { USB_DEVICE(FTDI_VID, FTDI_PYRAMID_PID) },
Martin Hagelinbde62182005-10-26 21:10:41 +0200261 { USB_DEVICE(FTDI_VID, FTDI_ELV_FHZ1000PC_PID) },
Thomas Schleusener4eaf60e2007-02-28 22:50:52 +0100262 { USB_DEVICE(FTDI_VID, FTDI_IBS_US485_PID) },
263 { USB_DEVICE(FTDI_VID, FTDI_IBS_PICPRO_PID) },
264 { USB_DEVICE(FTDI_VID, FTDI_IBS_PCMCIA_PID) },
265 { USB_DEVICE(FTDI_VID, FTDI_IBS_PK1_PID) },
266 { USB_DEVICE(FTDI_VID, FTDI_IBS_RS232MON_PID) },
267 { USB_DEVICE(FTDI_VID, FTDI_IBS_APP70_PID) },
268 { USB_DEVICE(FTDI_VID, FTDI_IBS_PEDO_PID) },
269 { USB_DEVICE(FTDI_VID, FTDI_IBS_PROD_PID) },
Ian Abbotte6ac4a42005-08-02 14:01:27 +0100270 /*
Peter Stark42f8aa92007-12-25 18:32:08 +0100271 * Due to many user requests for multiple ELV devices we enable
272 * them by default.
Ian Abbotte6ac4a42005-08-02 14:01:27 +0100273 */
Peter Stark42f8aa92007-12-25 18:32:08 +0100274 { USB_DEVICE(FTDI_VID, FTDI_ELV_CLI7000_PID) },
275 { USB_DEVICE(FTDI_VID, FTDI_ELV_PPS7330_PID) },
276 { USB_DEVICE(FTDI_VID, FTDI_ELV_TFM100_PID) },
277 { USB_DEVICE(FTDI_VID, FTDI_ELV_UDF77_PID) },
278 { USB_DEVICE(FTDI_VID, FTDI_ELV_UIO88_PID) },
279 { USB_DEVICE(FTDI_VID, FTDI_ELV_UAD8_PID) },
280 { USB_DEVICE(FTDI_VID, FTDI_ELV_UDA7_PID) },
281 { USB_DEVICE(FTDI_VID, FTDI_ELV_USI2_PID) },
282 { USB_DEVICE(FTDI_VID, FTDI_ELV_T1100_PID) },
283 { USB_DEVICE(FTDI_VID, FTDI_ELV_PCD200_PID) },
284 { USB_DEVICE(FTDI_VID, FTDI_ELV_ULA200_PID) },
285 { USB_DEVICE(FTDI_VID, FTDI_ELV_CSI8_PID) },
286 { USB_DEVICE(FTDI_VID, FTDI_ELV_EM1000DL_PID) },
287 { USB_DEVICE(FTDI_VID, FTDI_ELV_PCK100_PID) },
288 { USB_DEVICE(FTDI_VID, FTDI_ELV_RFP500_PID) },
289 { USB_DEVICE(FTDI_VID, FTDI_ELV_FS20SIG_PID) },
290 { USB_DEVICE(FTDI_VID, FTDI_ELV_WS300PC_PID) },
291 { USB_DEVICE(FTDI_VID, FTDI_ELV_FHZ1300PC_PID) },
Sven Andersen4ae897d2008-03-04 22:09:11 +0100292 { USB_DEVICE(FTDI_VID, FTDI_ELV_EM1010PC_PID) },
Peter Stark42f8aa92007-12-25 18:32:08 +0100293 { USB_DEVICE(FTDI_VID, FTDI_ELV_WS500_PID) },
David Brownell5c09d142006-10-13 15:57:58 -0700294 { USB_DEVICE(FTDI_VID, LINX_SDMUSBQSS_PID) },
295 { USB_DEVICE(FTDI_VID, LINX_MASTERDEVEL2_PID) },
296 { USB_DEVICE(FTDI_VID, LINX_FUTURE_0_PID) },
297 { USB_DEVICE(FTDI_VID, LINX_FUTURE_1_PID) },
298 { USB_DEVICE(FTDI_VID, LINX_FUTURE_2_PID) },
299 { USB_DEVICE(FTDI_VID, FTDI_CCSICDU20_0_PID) },
300 { USB_DEVICE(FTDI_VID, FTDI_CCSICDU40_1_PID) },
Jan Capekec434e92006-11-28 22:35:12 +0100301 { USB_DEVICE(FTDI_VID, FTDI_CCSMACHX_2_PID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 { USB_DEVICE(FTDI_VID, INSIDE_ACCESSO) },
303 { USB_DEVICE(INTREPID_VID, INTREPID_VALUECAN_PID) },
304 { USB_DEVICE(INTREPID_VID, INTREPID_NEOVI_PID) },
305 { USB_DEVICE(FALCOM_VID, FALCOM_TWIST_PID) },
Ian Abbotte6ac4a42005-08-02 14:01:27 +0100306 { USB_DEVICE(FALCOM_VID, FALCOM_SAMBA_PID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 { USB_DEVICE(FTDI_VID, FTDI_SUUNTO_SPORTS_PID) },
Michael Olbergef31fec2007-02-27 12:57:12 +0100308 { USB_DEVICE(TTI_VID, TTI_QL355P_PID) },
Ian Abbott6f928722005-04-29 16:06:14 +0100309 { USB_DEVICE(FTDI_VID, FTDI_RM_CANVIEW_PID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 { USB_DEVICE(BANDB_VID, BANDB_USOTL4_PID) },
311 { USB_DEVICE(BANDB_VID, BANDB_USTL4_PID) },
312 { USB_DEVICE(BANDB_VID, BANDB_USO9ML2_PID) },
313 { USB_DEVICE(FTDI_VID, EVER_ECO_PRO_CDS) },
Ian Abbott6f928722005-04-29 16:06:14 +0100314 { USB_DEVICE(FTDI_VID, FTDI_4N_GALAXY_DE_1_PID) },
315 { USB_DEVICE(FTDI_VID, FTDI_4N_GALAXY_DE_2_PID) },
Ian Abbotte6ac4a42005-08-02 14:01:27 +0100316 { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_0_PID) },
317 { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_1_PID) },
318 { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_2_PID) },
319 { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_3_PID) },
320 { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_4_PID) },
321 { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_5_PID) },
322 { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_6_PID) },
323 { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_7_PID) },
Ian Abbott6f928722005-04-29 16:06:14 +0100324 { USB_DEVICE(MOBILITY_VID, MOBILITY_USB_SERIAL_PID) },
Ian Abbott8f977e42005-06-20 16:45:42 +0100325 { USB_DEVICE(FTDI_VID, FTDI_ACTIVE_ROBOTS_PID) },
Ian Abbott34d1a8a2006-02-27 14:05:32 +0000326 { USB_DEVICE(FTDI_VID, FTDI_MHAM_KW_PID) },
327 { USB_DEVICE(FTDI_VID, FTDI_MHAM_YS_PID) },
Ian Abbott9b1513d2005-07-29 12:16:31 -0700328 { USB_DEVICE(FTDI_VID, FTDI_MHAM_Y6_PID) },
329 { USB_DEVICE(FTDI_VID, FTDI_MHAM_Y8_PID) },
Ian Abbott34d1a8a2006-02-27 14:05:32 +0000330 { USB_DEVICE(FTDI_VID, FTDI_MHAM_IC_PID) },
331 { USB_DEVICE(FTDI_VID, FTDI_MHAM_DB9_PID) },
332 { USB_DEVICE(FTDI_VID, FTDI_MHAM_RS232_PID) },
333 { USB_DEVICE(FTDI_VID, FTDI_MHAM_Y9_PID) },
Ian Abbott740a4282005-12-13 16:18:47 +0000334 { USB_DEVICE(FTDI_VID, FTDI_TERATRONIK_VCP_PID) },
335 { USB_DEVICE(FTDI_VID, FTDI_TERATRONIK_D2XX_PID) },
Ian Abbott9b1513d2005-07-29 12:16:31 -0700336 { USB_DEVICE(EVOLUTION_VID, EVOLUTION_ER1_PID) },
Søren Haubergc1f8ea72007-08-08 10:50:17 +0200337 { USB_DEVICE(EVOLUTION_VID, EVO_HYBRID_PID) },
338 { USB_DEVICE(EVOLUTION_VID, EVO_RCM4_PID) },
Rui Santosc9c77462005-09-23 20:06:50 +0100339 { USB_DEVICE(FTDI_VID, FTDI_ARTEMIS_PID) },
340 { USB_DEVICE(FTDI_VID, FTDI_ATIK_ATK16_PID) },
Rui Santos09c280a2006-01-09 13:12:40 +0000341 { USB_DEVICE(FTDI_VID, FTDI_ATIK_ATK16C_PID) },
Rui Santosc9c77462005-09-23 20:06:50 +0100342 { USB_DEVICE(FTDI_VID, FTDI_ATIK_ATK16HR_PID) },
Rui Santos09c280a2006-01-09 13:12:40 +0000343 { USB_DEVICE(FTDI_VID, FTDI_ATIK_ATK16HRC_PID) },
Franco Lanza34910432007-12-26 03:29:33 +0100344 { USB_DEVICE(FTDI_VID, FTDI_ATIK_ATK16IC_PID) },
Ian Abbottb4723ae2005-11-23 15:45:23 -0800345 { USB_DEVICE(KOBIL_VID, KOBIL_CONV_B1_PID) },
346 { USB_DEVICE(KOBIL_VID, KOBIL_CONV_KAAN_PID) },
Pavel Fedineffac8b2005-12-09 09:30:59 +0300347 { USB_DEVICE(POSIFLEX_VID, POSIFLEX_PP7000_PID) },
Louis Nyffenegger641adaa2006-01-05 17:20:37 +0100348 { USB_DEVICE(FTDI_VID, FTDI_TTUSB_PID) },
Ian Abbott7e1c0b82006-03-21 14:55:20 +0000349 { USB_DEVICE(FTDI_VID, FTDI_ECLO_COM_1WIRE_PID) },
Ian Abbotta94b52a2006-01-09 17:11:40 +0000350 { USB_DEVICE(FTDI_VID, FTDI_WESTREX_MODEL_777_PID) },
351 { USB_DEVICE(FTDI_VID, FTDI_WESTREX_MODEL_8900F_PID) },
Wouter Paesence40d292006-01-03 14:30:31 +0100352 { USB_DEVICE(FTDI_VID, FTDI_PCDJ_DAC2_PID) },
Nathan Bronsoncdd3b152006-04-10 00:05:09 -0400353 { USB_DEVICE(FTDI_VID, FTDI_RRCIRKITS_LOCOBUFFER_PID) },
Ian Abbott7e0258f2006-04-12 15:20:35 +0100354 { USB_DEVICE(FTDI_VID, FTDI_ASK_RDR400_PID) },
A. Maitland Bottomsbf58fbd2006-03-14 18:44:23 -0500355 { USB_DEVICE(ICOM_ID1_VID, ICOM_ID1_PID) },
Folkert van Heusden62a13db2006-03-28 20:41:26 +0900356 { USB_DEVICE(PAPOUCH_VID, PAPOUCH_TMU_PID) },
Ian Abbott20a0f472006-05-04 11:34:25 +0100357 { USB_DEVICE(FTDI_VID, FTDI_ACG_HFDUAL_PID) },
Ian Abbotteb79b4f2006-05-30 12:36:30 +0100358 { USB_DEVICE(FTDI_VID, FTDI_YEI_SERVOCENTER31_PID) },
D. Peter Siddons48437482006-06-17 18:09:15 -0400359 { USB_DEVICE(FTDI_VID, FTDI_THORLABS_PID) },
Colin Leroye1979fe2006-07-11 11:36:43 +0200360 { USB_DEVICE(TESTO_VID, TESTO_USB_INTERFACE_PID) },
Ralf Schlatterbeckeaede2c2006-09-06 12:15:02 +0200361 { USB_DEVICE(FTDI_VID, FTDI_GAMMA_SCOUT_PID) },
Ian Abbott9978f9e2006-09-25 14:19:19 +0100362 { USB_DEVICE(FTDI_VID, FTDI_TACTRIX_OPENPORT_13M_PID) },
363 { USB_DEVICE(FTDI_VID, FTDI_TACTRIX_OPENPORT_13S_PID) },
364 { USB_DEVICE(FTDI_VID, FTDI_TACTRIX_OPENPORT_13U_PID) },
Kjell Myksvoll40c36092006-10-22 23:26:42 +0200365 { USB_DEVICE(ELEKTOR_VID, ELEKTOR_FT323R_PID) },
Micke Prag822c7ef2007-02-04 23:39:11 +0100366 { USB_DEVICE(TELLDUS_VID, TELLDUS_TELLSTICK_PID) },
Neil \"Superna\" ARMSTRONG762e92f2007-04-25 20:34:28 +0200367 { USB_DEVICE(FTDI_VID, FTDI_MAXSTREAM_PID) },
Pierre Castellad7fde2d2007-09-06 22:34:39 +0200368 { USB_DEVICE(TML_VID, TML_USB_SERIAL_PID) },
Ed Beroset4bb0ef12008-01-17 17:37:46 -0500369 { USB_DEVICE(FTDI_VID, FTDI_ELSTER_UNICOM_PID) },
Mirko Bordignon11171d12008-03-10 11:38:55 +0100370 { USB_DEVICE(FTDI_VID, FTDI_PROPOX_JTAGCABLEII_PID) },
Tony Lindgrenfa91d432007-05-04 18:23:24 -0700371 { USB_DEVICE(OLIMEX_VID, OLIMEX_ARM_USB_OCD_PID),
Harald Welte20734342008-01-01 15:08:35 +0100372 .driver_info = (kernel_ulong_t)&ftdi_jtag_quirk },
373 { USB_DEVICE(FIC_VID, FIC_NEO1973_DEBUG_PID),
374 .driver_info = (kernel_ulong_t)&ftdi_jtag_quirk },
375 { USB_DEVICE(FTDI_VID, FTDI_OOCDLINK_PID),
376 .driver_info = (kernel_ulong_t)&ftdi_jtag_quirk },
Atsushi Nemoto26ab7052008-05-17 00:13:56 +0900377 { USB_DEVICE(RATOC_VENDOR_ID, RATOC_PRODUCT_ID_USB60F) },
Ian Abbottfdcb0a02005-07-28 18:40:32 +0100378 { }, /* Optional parameter entry */
379 { } /* Terminating entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380};
381
382MODULE_DEVICE_TABLE (usb, id_table_combined);
383
384static struct usb_driver ftdi_driver = {
385 .name = "ftdi_sio",
386 .probe = usb_serial_probe,
387 .disconnect = usb_serial_disconnect,
388 .id_table = id_table_combined,
David Brownell5c09d142006-10-13 15:57:58 -0700389 .no_dynamic_id = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390};
391
Arjan van de Ven4c4c9432005-11-29 09:43:42 +0100392static const char *ftdi_chip_name[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 [SIO] = "SIO", /* the serial part of FT8U100AX */
394 [FT8U232AM] = "FT8U232AM",
395 [FT232BM] = "FT232BM",
396 [FT2232C] = "FT2232C",
Gard Spreemannd8b21602007-03-05 00:03:26 +0100397 [FT232RL] = "FT232RL",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398};
399
400
401/* Constants for read urb and write urb */
402#define BUFSZ 512
403#define PKTSZ 64
404
405/* rx_flags */
406#define THROTTLED 0x01
407#define ACTUALLY_THROTTLED 0x02
408
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409/* Used for TIOCMIWAIT */
410#define FTDI_STATUS_B0_MASK (FTDI_RS0_CTS | FTDI_RS0_DSR | FTDI_RS0_RI | FTDI_RS0_RLSD)
411#define FTDI_STATUS_B1_MASK (FTDI_RS_BI)
412/* End TIOCMIWAIT */
413
Roel Kluinbbc5d272008-02-07 01:06:07 +0100414#define FTDI_IMPL_ASYNC_FLAGS = (ASYNC_SPD_HI | ASYNC_SPD_VHI \
415 | ASYNC_SPD_CUST | ASYNC_SPD_SHI | ASYNC_SPD_WARP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
417/* function prototypes for a FTDI serial converter */
Ian Abbott8f977e42005-06-20 16:45:42 +0100418static int ftdi_sio_probe (struct usb_serial *serial, const struct usb_device_id *id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419static void ftdi_shutdown (struct usb_serial *serial);
Jim Radford12bdbe02007-02-28 10:10:50 -0800420static int ftdi_sio_port_probe (struct usb_serial_port *port);
421static int ftdi_sio_port_remove (struct usb_serial_port *port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422static int ftdi_open (struct usb_serial_port *port, struct file *filp);
423static void ftdi_close (struct usb_serial_port *port, struct file *filp);
424static int ftdi_write (struct usb_serial_port *port, const unsigned char *buf, int count);
425static int ftdi_write_room (struct usb_serial_port *port);
426static int ftdi_chars_in_buffer (struct usb_serial_port *port);
David Howells7d12e782006-10-05 14:55:46 +0100427static void ftdi_write_bulk_callback (struct urb *urb);
428static void ftdi_read_bulk_callback (struct urb *urb);
David Howellsc4028952006-11-22 14:57:56 +0000429static void ftdi_process_read (struct work_struct *work);
Alan Cox606d0992006-12-08 02:38:45 -0800430static void ftdi_set_termios (struct usb_serial_port *port, struct ktermios * old);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431static int ftdi_tiocmget (struct usb_serial_port *port, struct file *file);
432static int ftdi_tiocmset (struct usb_serial_port *port, struct file * file, unsigned int set, unsigned int clear);
433static int ftdi_ioctl (struct usb_serial_port *port, struct file * file, unsigned int cmd, unsigned long arg);
434static void ftdi_break_ctl (struct usb_serial_port *port, int break_state );
435static void ftdi_throttle (struct usb_serial_port *port);
436static void ftdi_unthrottle (struct usb_serial_port *port);
437
438static unsigned short int ftdi_232am_baud_base_to_divisor (int baud, int base);
439static unsigned short int ftdi_232am_baud_to_divisor (int baud);
440static __u32 ftdi_232bm_baud_base_to_divisor (int baud, int base);
441static __u32 ftdi_232bm_baud_to_divisor (int baud);
442
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -0700443static struct usb_serial_driver ftdi_sio_device = {
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700444 .driver = {
445 .owner = THIS_MODULE,
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -0700446 .name = "ftdi_sio",
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700447 },
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -0700448 .description = "FTDI USB Serial Device",
Johannes Hölzld9b1b782006-12-17 21:50:24 +0100449 .usb_driver = &ftdi_driver ,
Ian Abbott8f977e42005-06-20 16:45:42 +0100450 .id_table = id_table_combined,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 .num_ports = 1,
Ian Abbott8f977e42005-06-20 16:45:42 +0100452 .probe = ftdi_sio_probe,
Jim Radford12bdbe02007-02-28 10:10:50 -0800453 .port_probe = ftdi_sio_port_probe,
454 .port_remove = ftdi_sio_port_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 .open = ftdi_open,
456 .close = ftdi_close,
457 .throttle = ftdi_throttle,
458 .unthrottle = ftdi_unthrottle,
459 .write = ftdi_write,
460 .write_room = ftdi_write_room,
461 .chars_in_buffer = ftdi_chars_in_buffer,
462 .read_bulk_callback = ftdi_read_bulk_callback,
463 .write_bulk_callback = ftdi_write_bulk_callback,
464 .tiocmget = ftdi_tiocmget,
465 .tiocmset = ftdi_tiocmset,
466 .ioctl = ftdi_ioctl,
467 .set_termios = ftdi_set_termios,
468 .break_ctl = ftdi_break_ctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 .shutdown = ftdi_shutdown,
470};
471
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
473#define WDR_TIMEOUT 5000 /* default urb timeout */
Ian Abbott279e1542005-07-29 12:16:52 -0700474#define WDR_SHORT_TIMEOUT 1000 /* shorter urb timeout */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
476/* High and low are for DTR, RTS etc etc */
477#define HIGH 1
478#define LOW 0
479
Ian Abbott22465402006-06-26 12:59:17 +0100480/* number of outstanding urbs to prevent userspace DoS from happening */
481#define URB_UPPER_LIMIT 42
482
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483/*
484 * ***************************************************************************
Tony Lindgrenfa91d432007-05-04 18:23:24 -0700485 * Utility functions
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 * ***************************************************************************
487 */
488
489static unsigned short int ftdi_232am_baud_base_to_divisor(int baud, int base)
490{
491 unsigned short int divisor;
492 int divisor3 = base / 2 / baud; // divisor shifted 3 bits to the left
493 if ((divisor3 & 0x7) == 7) divisor3 ++; // round x.7/8 up to x+1
494 divisor = divisor3 >> 3;
495 divisor3 &= 0x7;
496 if (divisor3 == 1) divisor |= 0xc000; else // 0.125
497 if (divisor3 >= 4) divisor |= 0x4000; else // 0.5
498 if (divisor3 != 0) divisor |= 0x8000; // 0.25
499 if (divisor == 1) divisor = 0; /* special case for maximum baud rate */
500 return divisor;
501}
502
503static unsigned short int ftdi_232am_baud_to_divisor(int baud)
504{
505 return(ftdi_232am_baud_base_to_divisor(baud, 48000000));
506}
507
508static __u32 ftdi_232bm_baud_base_to_divisor(int baud, int base)
509{
510 static const unsigned char divfrac[8] = { 0, 3, 2, 4, 1, 5, 6, 7 };
511 __u32 divisor;
512 int divisor3 = base / 2 / baud; // divisor shifted 3 bits to the left
513 divisor = divisor3 >> 3;
514 divisor |= (__u32)divfrac[divisor3 & 0x7] << 14;
515 /* Deal with special cases for highest baud rates. */
516 if (divisor == 1) divisor = 0; else // 1.0
517 if (divisor == 0x4001) divisor = 1; // 1.5
518 return divisor;
519}
520
521static __u32 ftdi_232bm_baud_to_divisor(int baud)
522{
523 return(ftdi_232bm_baud_base_to_divisor(baud, 48000000));
524}
525
Ian Abbott74ede0f2005-07-29 12:16:41 -0700526#define set_mctrl(port, set) update_mctrl((port), (set), 0)
527#define clear_mctrl(port, clear) update_mctrl((port), 0, (clear))
528
529static int update_mctrl(struct usb_serial_port *port, unsigned int set, unsigned int clear)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530{
531 struct ftdi_private *priv = usb_get_serial_port_data(port);
532 char *buf;
Ian Abbott74ede0f2005-07-29 12:16:41 -0700533 unsigned urb_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 int rv;
Ian Abbott74ede0f2005-07-29 12:16:41 -0700535
536 if (((set | clear) & (TIOCM_DTR | TIOCM_RTS)) == 0) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800537 dbg("%s - DTR|RTS not being set|cleared", __func__);
Ian Abbott74ede0f2005-07-29 12:16:41 -0700538 return 0; /* no change */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 }
Ian Abbott74ede0f2005-07-29 12:16:41 -0700540
541 buf = kmalloc(1, GFP_NOIO);
Alan Cox9b0f2582008-02-20 20:49:53 +0000542 if (!buf)
Ian Abbott74ede0f2005-07-29 12:16:41 -0700543 return -ENOMEM;
Ian Abbott74ede0f2005-07-29 12:16:41 -0700544
545 clear &= ~set; /* 'set' takes precedence over 'clear' */
546 urb_value = 0;
547 if (clear & TIOCM_DTR)
548 urb_value |= FTDI_SIO_SET_DTR_LOW;
549 if (clear & TIOCM_RTS)
550 urb_value |= FTDI_SIO_SET_RTS_LOW;
551 if (set & TIOCM_DTR)
552 urb_value |= FTDI_SIO_SET_DTR_HIGH;
553 if (set & TIOCM_RTS)
554 urb_value |= FTDI_SIO_SET_RTS_HIGH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 rv = usb_control_msg(port->serial->dev,
556 usb_sndctrlpipe(port->serial->dev, 0),
David Brownell5c09d142006-10-13 15:57:58 -0700557 FTDI_SIO_SET_MODEM_CTRL_REQUEST,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 FTDI_SIO_SET_MODEM_CTRL_REQUEST_TYPE,
Ian Abbott74ede0f2005-07-29 12:16:41 -0700559 urb_value, priv->interface,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 buf, 0, WDR_TIMEOUT);
561
562 kfree(buf);
Ian Abbott74ede0f2005-07-29 12:16:41 -0700563 if (rv < 0) {
564 err("%s Error from MODEM_CTRL urb: DTR %s, RTS %s",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800565 __func__,
Ian Abbott74ede0f2005-07-29 12:16:41 -0700566 (set & TIOCM_DTR) ? "HIGH" :
567 (clear & TIOCM_DTR) ? "LOW" : "unchanged",
568 (set & TIOCM_RTS) ? "HIGH" :
569 (clear & TIOCM_RTS) ? "LOW" : "unchanged");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 } else {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800571 dbg("%s - DTR %s, RTS %s", __func__,
Ian Abbott74ede0f2005-07-29 12:16:41 -0700572 (set & TIOCM_DTR) ? "HIGH" :
573 (clear & TIOCM_DTR) ? "LOW" : "unchanged",
574 (set & TIOCM_RTS) ? "HIGH" :
575 (clear & TIOCM_RTS) ? "LOW" : "unchanged");
Alan Cox9b0f2582008-02-20 20:49:53 +0000576 /* FIXME: locking on last_dtr_rts */
Ian Abbott74ede0f2005-07-29 12:16:41 -0700577 priv->last_dtr_rts = (priv->last_dtr_rts & ~clear) | set;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 return rv;
580}
581
582
583static __u32 get_ftdi_divisor(struct usb_serial_port * port);
584
585
586static int change_speed(struct usb_serial_port *port)
587{
588 struct ftdi_private *priv = usb_get_serial_port_data(port);
589 char *buf;
590 __u16 urb_value;
591 __u16 urb_index;
592 __u32 urb_index_value;
593 int rv;
594
595 buf = kmalloc(1, GFP_NOIO);
596 if (!buf)
597 return -ENOMEM;
598
599 urb_index_value = get_ftdi_divisor(port);
600 urb_value = (__u16)urb_index_value;
601 urb_index = (__u16)(urb_index_value >> 16);
602 if (priv->interface) { /* FT2232C */
603 urb_index = (__u16)((urb_index << 8) | priv->interface);
604 }
David Brownell5c09d142006-10-13 15:57:58 -0700605
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 rv = usb_control_msg(port->serial->dev,
607 usb_sndctrlpipe(port->serial->dev, 0),
608 FTDI_SIO_SET_BAUDRATE_REQUEST,
609 FTDI_SIO_SET_BAUDRATE_REQUEST_TYPE,
610 urb_value, urb_index,
Ian Abbott279e1542005-07-29 12:16:52 -0700611 buf, 0, WDR_SHORT_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
613 kfree(buf);
614 return rv;
615}
616
617
618static __u32 get_ftdi_divisor(struct usb_serial_port * port)
619{ /* get_ftdi_divisor */
620 struct ftdi_private *priv = usb_get_serial_port_data(port);
621 __u32 div_value = 0;
622 int div_okay = 1;
623 int baud;
624
625 /*
626 * The logic involved in setting the baudrate can be cleanly split in 3 steps.
627 * Obtaining the actual baud rate is a little tricky since unix traditionally
628 * somehow ignored the possibility to set non-standard baud rates.
629 * 1. Standard baud rates are set in tty->termios->c_cflag
630 * 2. If these are not enough, you can set any speed using alt_speed as follows:
631 * - set tty->termios->c_cflag speed to B38400
632 * - set your real speed in tty->alt_speed; it gets ignored when
633 * alt_speed==0, (or)
634 * - call TIOCSSERIAL ioctl with (struct serial_struct) set as follows:
635 * flags & ASYNC_SPD_MASK == ASYNC_SPD_[HI, VHI, SHI, WARP], this just
636 * sets alt_speed to (HI: 57600, VHI: 115200, SHI: 230400, WARP: 460800)
637 * ** Steps 1, 2 are done courtesy of tty_get_baud_rate
638 * 3. You can also set baud rate by setting custom divisor as follows
639 * - set tty->termios->c_cflag speed to B38400
640 * - call TIOCSSERIAL ioctl with (struct serial_struct) set as follows:
641 * o flags & ASYNC_SPD_MASK == ASYNC_SPD_CUST
642 * o custom_divisor set to baud_base / your_new_baudrate
643 * ** Step 3 is done courtesy of code borrowed from serial.c - I should really
644 * spend some time and separate+move this common code to serial.c, it is
645 * replicated in nearly every serial driver you see.
646 */
647
648 /* 1. Get the baud rate from the tty settings, this observes alt_speed hack */
649
650 baud = tty_get_baud_rate(port->tty);
Harvey Harrison441b62c2008-03-03 16:08:34 -0800651 dbg("%s - tty_get_baud_rate reports speed %d", __func__, baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
653 /* 2. Observe async-compatible custom_divisor hack, update baudrate if needed */
654
655 if (baud == 38400 &&
656 ((priv->flags & ASYNC_SPD_MASK) == ASYNC_SPD_CUST) &&
657 (priv->custom_divisor)) {
658 baud = priv->baud_base / priv->custom_divisor;
Harvey Harrison441b62c2008-03-03 16:08:34 -0800659 dbg("%s - custom divisor %d sets baud rate to %d", __func__, priv->custom_divisor, baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 }
661
662 /* 3. Convert baudrate to device-specific divisor */
663
David Brownell5c09d142006-10-13 15:57:58 -0700664 if (!baud) baud = 9600;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 switch(priv->chip_type) {
666 case SIO: /* SIO chip */
667 switch(baud) {
668 case 300: div_value = ftdi_sio_b300; break;
669 case 600: div_value = ftdi_sio_b600; break;
670 case 1200: div_value = ftdi_sio_b1200; break;
671 case 2400: div_value = ftdi_sio_b2400; break;
672 case 4800: div_value = ftdi_sio_b4800; break;
673 case 9600: div_value = ftdi_sio_b9600; break;
674 case 19200: div_value = ftdi_sio_b19200; break;
675 case 38400: div_value = ftdi_sio_b38400; break;
676 case 57600: div_value = ftdi_sio_b57600; break;
677 case 115200: div_value = ftdi_sio_b115200; break;
678 } /* baud */
679 if (div_value == 0) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800680 dbg("%s - Baudrate (%d) requested is not supported", __func__, baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 div_value = ftdi_sio_b9600;
Andrew Mortonbd5e47c2007-10-18 01:24:25 -0700682 baud = 9600;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 div_okay = 0;
684 }
685 break;
686 case FT8U232AM: /* 8U232AM chip */
687 if (baud <= 3000000) {
688 div_value = ftdi_232am_baud_to_divisor(baud);
689 } else {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800690 dbg("%s - Baud rate too high!", __func__);
Andrew Mortonbd5e47c2007-10-18 01:24:25 -0700691 baud = 9600;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 div_value = ftdi_232am_baud_to_divisor(9600);
693 div_okay = 0;
694 }
695 break;
696 case FT232BM: /* FT232BM chip */
697 case FT2232C: /* FT2232C chip */
David Brownell3b009c62007-03-23 12:54:27 -0700698 case FT232RL:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 if (baud <= 3000000) {
700 div_value = ftdi_232bm_baud_to_divisor(baud);
701 } else {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800702 dbg("%s - Baud rate too high!", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 div_value = ftdi_232bm_baud_to_divisor(9600);
704 div_okay = 0;
Alan Cox669a6db2007-10-18 01:24:24 -0700705 baud = 9600;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 }
707 break;
708 } /* priv->chip_type */
709
710 if (div_okay) {
711 dbg("%s - Baud rate set to %d (divisor 0x%lX) on chip %s",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800712 __func__, baud, (unsigned long)div_value,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 ftdi_chip_name[priv->chip_type]);
714 }
715
Alan Cox669a6db2007-10-18 01:24:24 -0700716 tty_encode_baud_rate(port->tty, baud, baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 return(div_value);
718}
719
720
721static int get_serial_info(struct usb_serial_port * port, struct serial_struct __user * retinfo)
722{
723 struct ftdi_private *priv = usb_get_serial_port_data(port);
724 struct serial_struct tmp;
725
726 if (!retinfo)
727 return -EFAULT;
728 memset(&tmp, 0, sizeof(tmp));
729 tmp.flags = priv->flags;
730 tmp.baud_base = priv->baud_base;
731 tmp.custom_divisor = priv->custom_divisor;
732 if (copy_to_user(retinfo, &tmp, sizeof(*retinfo)))
733 return -EFAULT;
734 return 0;
735} /* get_serial_info */
736
737
738static int set_serial_info(struct usb_serial_port * port, struct serial_struct __user * newinfo)
739{ /* set_serial_info */
740 struct ftdi_private *priv = usb_get_serial_port_data(port);
741 struct serial_struct new_serial;
742 struct ftdi_private old_priv;
743
744 if (copy_from_user(&new_serial, newinfo, sizeof(new_serial)))
745 return -EFAULT;
746 old_priv = * priv;
747
748 /* Do error checking and permission checking */
749
750 if (!capable(CAP_SYS_ADMIN)) {
751 if (((new_serial.flags & ~ASYNC_USR_MASK) !=
752 (priv->flags & ~ASYNC_USR_MASK)))
753 return -EPERM;
754 priv->flags = ((priv->flags & ~ASYNC_USR_MASK) |
755 (new_serial.flags & ASYNC_USR_MASK));
756 priv->custom_divisor = new_serial.custom_divisor;
757 goto check_and_exit;
758 }
759
760 if ((new_serial.baud_base != priv->baud_base) &&
761 (new_serial.baud_base < 9600))
762 return -EINVAL;
763
764 /* Make the changes - these are privileged changes! */
765
766 priv->flags = ((priv->flags & ~ASYNC_FLAGS) |
David Brownell5c09d142006-10-13 15:57:58 -0700767 (new_serial.flags & ASYNC_FLAGS));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 priv->custom_divisor = new_serial.custom_divisor;
769
770 port->tty->low_latency = (priv->flags & ASYNC_LOW_LATENCY) ? 1 : 0;
771
772check_and_exit:
773 if ((old_priv.flags & ASYNC_SPD_MASK) !=
774 (priv->flags & ASYNC_SPD_MASK)) {
775 if ((priv->flags & ASYNC_SPD_MASK) == ASYNC_SPD_HI)
776 port->tty->alt_speed = 57600;
777 else if ((priv->flags & ASYNC_SPD_MASK) == ASYNC_SPD_VHI)
778 port->tty->alt_speed = 115200;
779 else if ((priv->flags & ASYNC_SPD_MASK) == ASYNC_SPD_SHI)
780 port->tty->alt_speed = 230400;
781 else if ((priv->flags & ASYNC_SPD_MASK) == ASYNC_SPD_WARP)
782 port->tty->alt_speed = 460800;
783 else
784 port->tty->alt_speed = 0;
785 }
786 if (((old_priv.flags & ASYNC_SPD_MASK) !=
787 (priv->flags & ASYNC_SPD_MASK)) ||
788 (((priv->flags & ASYNC_SPD_MASK) == ASYNC_SPD_CUST) &&
789 (old_priv.custom_divisor != priv->custom_divisor))) {
790 change_speed(port);
791 }
David Brownell5c09d142006-10-13 15:57:58 -0700792
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 return (0);
794
795} /* set_serial_info */
796
797
Ian Abbott8f977e42005-06-20 16:45:42 +0100798/* Determine type of FTDI chip based on USB config and descriptor. */
799static void ftdi_determine_type(struct usb_serial_port *port)
800{
801 struct ftdi_private *priv = usb_get_serial_port_data(port);
802 struct usb_serial *serial = port->serial;
803 struct usb_device *udev = serial->dev;
804 unsigned version;
805 unsigned interfaces;
806
807 /* Assume it is not the original SIO device for now. */
Ian Abbottf5e09b72005-09-12 12:23:25 +0100808 priv->baud_base = 48000000 / 2;
Ian Abbott8f977e42005-06-20 16:45:42 +0100809 priv->write_offset = 0;
810
811 version = le16_to_cpu(udev->descriptor.bcdDevice);
812 interfaces = udev->actconfig->desc.bNumInterfaces;
Harvey Harrison441b62c2008-03-03 16:08:34 -0800813 dbg("%s: bcdDevice = 0x%x, bNumInterfaces = %u", __func__,
Ian Abbott8f977e42005-06-20 16:45:42 +0100814 version, interfaces);
815 if (interfaces > 1) {
816 int inter;
817
818 /* Multiple interfaces. Assume FT2232C. */
819 priv->chip_type = FT2232C;
820 /* Determine interface code. */
821 inter = serial->interface->altsetting->desc.bInterfaceNumber;
822 if (inter == 0) {
823 priv->interface = PIT_SIOA;
824 } else {
825 priv->interface = PIT_SIOB;
826 }
827 /* BM-type devices have a bug where bcdDevice gets set
828 * to 0x200 when iSerialNumber is 0. */
829 if (version < 0x500) {
830 dbg("%s: something fishy - bcdDevice too low for multi-interface device",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800831 __func__);
Ian Abbott8f977e42005-06-20 16:45:42 +0100832 }
833 } else if (version < 0x200) {
834 /* Old device. Assume its the original SIO. */
835 priv->chip_type = SIO;
836 priv->baud_base = 12000000 / 16;
837 priv->write_offset = 1;
838 } else if (version < 0x400) {
839 /* Assume its an FT8U232AM (or FT8U245AM) */
840 /* (It might be a BM because of the iSerialNumber bug,
841 * but it will still work as an AM device.) */
842 priv->chip_type = FT8U232AM;
David Brownell3b009c62007-03-23 12:54:27 -0700843 } else if (version < 0x600) {
Ian Abbott8f977e42005-06-20 16:45:42 +0100844 /* Assume its an FT232BM (or FT245BM) */
845 priv->chip_type = FT232BM;
David Brownell3b009c62007-03-23 12:54:27 -0700846 } else {
847 /* Assume its an FT232R */
848 priv->chip_type = FT232RL;
Ian Abbott8f977e42005-06-20 16:45:42 +0100849 }
850 info("Detected %s", ftdi_chip_name[priv->chip_type]);
851}
852
853
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854/*
855 * ***************************************************************************
856 * Sysfs Attribute
857 * ***************************************************************************
858 */
859
Yani Ioannou060b8842005-05-17 06:44:04 -0400860static ssize_t show_latency_timer(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861{
862 struct usb_serial_port *port = to_usb_serial_port(dev);
863 struct ftdi_private *priv = usb_get_serial_port_data(port);
Jim Radford12bdbe02007-02-28 10:10:50 -0800864 struct usb_device *udev = port->serial->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 unsigned short latency = 0;
866 int rv = 0;
David Brownell5c09d142006-10-13 15:57:58 -0700867
David Brownell5c09d142006-10-13 15:57:58 -0700868
Harvey Harrison441b62c2008-03-03 16:08:34 -0800869 dbg("%s",__func__);
David Brownell5c09d142006-10-13 15:57:58 -0700870
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 rv = usb_control_msg(udev,
872 usb_rcvctrlpipe(udev, 0),
873 FTDI_SIO_GET_LATENCY_TIMER_REQUEST,
874 FTDI_SIO_GET_LATENCY_TIMER_REQUEST_TYPE,
David Brownell5c09d142006-10-13 15:57:58 -0700875 0, priv->interface,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 (char*) &latency, 1, WDR_TIMEOUT);
David Brownell5c09d142006-10-13 15:57:58 -0700877
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 if (rv < 0) {
Joe Perches898eb712007-10-18 03:06:30 -0700879 dev_err(dev, "Unable to read latency timer: %i\n", rv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 return -EIO;
881 }
882 return sprintf(buf, "%i\n", latency);
883}
884
885/* Write a new value of the latency timer, in units of milliseconds. */
Yani Ioannou060b8842005-05-17 06:44:04 -0400886static ssize_t store_latency_timer(struct device *dev, struct device_attribute *attr, const char *valbuf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 size_t count)
888{
889 struct usb_serial_port *port = to_usb_serial_port(dev);
890 struct ftdi_private *priv = usb_get_serial_port_data(port);
Jim Radford12bdbe02007-02-28 10:10:50 -0800891 struct usb_device *udev = port->serial->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 char buf[1];
893 int v = simple_strtoul(valbuf, NULL, 10);
894 int rv = 0;
David Brownell5c09d142006-10-13 15:57:58 -0700895
Harvey Harrison441b62c2008-03-03 16:08:34 -0800896 dbg("%s: setting latency timer = %i", __func__, v);
David Brownell5c09d142006-10-13 15:57:58 -0700897
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 rv = usb_control_msg(udev,
899 usb_sndctrlpipe(udev, 0),
900 FTDI_SIO_SET_LATENCY_TIMER_REQUEST,
901 FTDI_SIO_SET_LATENCY_TIMER_REQUEST_TYPE,
David Brownell5c09d142006-10-13 15:57:58 -0700902 v, priv->interface,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 buf, 0, WDR_TIMEOUT);
David Brownell5c09d142006-10-13 15:57:58 -0700904
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 if (rv < 0) {
Joe Perches898eb712007-10-18 03:06:30 -0700906 dev_err(dev, "Unable to write latency timer: %i\n", rv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 return -EIO;
908 }
David Brownell5c09d142006-10-13 15:57:58 -0700909
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 return count;
911}
912
913/* Write an event character directly to the FTDI register. The ASCII
914 value is in the low 8 bits, with the enable bit in the 9th bit. */
Yani Ioannou060b8842005-05-17 06:44:04 -0400915static ssize_t store_event_char(struct device *dev, struct device_attribute *attr, const char *valbuf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 size_t count)
917{
918 struct usb_serial_port *port = to_usb_serial_port(dev);
919 struct ftdi_private *priv = usb_get_serial_port_data(port);
Jim Radford12bdbe02007-02-28 10:10:50 -0800920 struct usb_device *udev = port->serial->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 char buf[1];
922 int v = simple_strtoul(valbuf, NULL, 10);
923 int rv = 0;
David Brownell5c09d142006-10-13 15:57:58 -0700924
Harvey Harrison441b62c2008-03-03 16:08:34 -0800925 dbg("%s: setting event char = %i", __func__, v);
David Brownell5c09d142006-10-13 15:57:58 -0700926
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 rv = usb_control_msg(udev,
928 usb_sndctrlpipe(udev, 0),
929 FTDI_SIO_SET_EVENT_CHAR_REQUEST,
930 FTDI_SIO_SET_EVENT_CHAR_REQUEST_TYPE,
David Brownell5c09d142006-10-13 15:57:58 -0700931 v, priv->interface,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 buf, 0, WDR_TIMEOUT);
David Brownell5c09d142006-10-13 15:57:58 -0700933
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 if (rv < 0) {
935 dbg("Unable to write event character: %i", rv);
936 return -EIO;
937 }
David Brownell5c09d142006-10-13 15:57:58 -0700938
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 return count;
940}
941
942static DEVICE_ATTR(latency_timer, S_IWUSR | S_IRUGO, show_latency_timer, store_latency_timer);
943static DEVICE_ATTR(event_char, S_IWUSR, NULL, store_event_char);
944
Jim Radford12bdbe02007-02-28 10:10:50 -0800945static int create_sysfs_attrs(struct usb_serial_port *port)
Greg Kroah-Hartman13f4db92006-08-28 11:43:25 -0700946{
Jim Radford12bdbe02007-02-28 10:10:50 -0800947 struct ftdi_private *priv = usb_get_serial_port_data(port);
Greg Kroah-Hartman13f4db92006-08-28 11:43:25 -0700948 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949
Harvey Harrison441b62c2008-03-03 16:08:34 -0800950 dbg("%s",__func__);
Greg Kroah-Hartman13f4db92006-08-28 11:43:25 -0700951
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 /* XXX I've no idea if the original SIO supports the event_char
953 * sysfs parameter, so I'm playing it safe. */
954 if (priv->chip_type != SIO) {
955 dbg("sysfs attributes for %s", ftdi_chip_name[priv->chip_type]);
Jim Radford12bdbe02007-02-28 10:10:50 -0800956 retval = device_create_file(&port->dev, &dev_attr_event_char);
Greg Kroah-Hartman13f4db92006-08-28 11:43:25 -0700957 if ((!retval) &&
Stepan Moskovchenko97cd49e2007-05-09 14:53:04 -0400958 (priv->chip_type == FT232BM ||
959 priv->chip_type == FT2232C ||
960 priv->chip_type == FT232RL)) {
Jim Radford12bdbe02007-02-28 10:10:50 -0800961 retval = device_create_file(&port->dev,
Greg Kroah-Hartman13f4db92006-08-28 11:43:25 -0700962 &dev_attr_latency_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 }
964 }
Greg Kroah-Hartman13f4db92006-08-28 11:43:25 -0700965 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966}
967
Jim Radford12bdbe02007-02-28 10:10:50 -0800968static void remove_sysfs_attrs(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969{
Jim Radford12bdbe02007-02-28 10:10:50 -0800970 struct ftdi_private *priv = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971
Harvey Harrison441b62c2008-03-03 16:08:34 -0800972 dbg("%s",__func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 /* XXX see create_sysfs_attrs */
975 if (priv->chip_type != SIO) {
Jim Radford12bdbe02007-02-28 10:10:50 -0800976 device_remove_file(&port->dev, &dev_attr_event_char);
Andrew M. Bishoped6e5282007-08-21 19:08:56 +0100977 if (priv->chip_type == FT232BM ||
978 priv->chip_type == FT2232C ||
979 priv->chip_type == FT232RL) {
Jim Radford12bdbe02007-02-28 10:10:50 -0800980 device_remove_file(&port->dev, &dev_attr_latency_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 }
982 }
David Brownell5c09d142006-10-13 15:57:58 -0700983
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984}
985
986/*
987 * ***************************************************************************
988 * FTDI driver specific functions
989 * ***************************************************************************
990 */
991
Ian Abbott8f977e42005-06-20 16:45:42 +0100992/* Probe function to check for special devices */
993static int ftdi_sio_probe (struct usb_serial *serial, const struct usb_device_id *id)
994{
Tony Lindgrenfa91d432007-05-04 18:23:24 -0700995 struct ftdi_sio_quirk *quirk = (struct ftdi_sio_quirk *)id->driver_info;
996
997 if (quirk && quirk->probe) {
998 int ret = quirk->probe(serial);
999 if (ret != 0)
1000 return ret;
1001 }
1002
Ian Abbott8f977e42005-06-20 16:45:42 +01001003 usb_set_serial_data(serial, (void *)id->driver_info);
1004
Tony Lindgrenfa91d432007-05-04 18:23:24 -07001005 return 0;
Ian Abbott8f977e42005-06-20 16:45:42 +01001006}
1007
Jim Radford12bdbe02007-02-28 10:10:50 -08001008static int ftdi_sio_port_probe(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 struct ftdi_private *priv;
Oliver Neukum0ffbbe22007-07-09 12:03:08 -07001011 struct ftdi_sio_quirk *quirk = usb_get_serial_data(port->serial);
1012
Greg Kroah-Hartman13f4db92006-08-28 11:43:25 -07001013
Harvey Harrison441b62c2008-03-03 16:08:34 -08001014 dbg("%s",__func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015
Eric Sesterhenn80b6ca42006-02-27 21:29:43 +01001016 priv = kzalloc(sizeof(struct ftdi_private), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 if (!priv){
Harvey Harrison441b62c2008-03-03 16:08:34 -08001018 err("%s- kmalloc(%Zd) failed.", __func__, sizeof(struct ftdi_private));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 return -ENOMEM;
1020 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021
1022 spin_lock_init(&priv->rx_lock);
Ian Abbott22465402006-06-26 12:59:17 +01001023 spin_lock_init(&priv->tx_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 init_waitqueue_head(&priv->delta_msr_wait);
1025 /* This will push the characters through immediately rather
1026 than queue a task to deliver them */
1027 priv->flags = ASYNC_LOW_LATENCY;
1028
Oliver Neukum0ffbbe22007-07-09 12:03:08 -07001029 if (quirk && quirk->port_probe)
1030 quirk->port_probe(priv);
1031
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 /* Increase the size of read buffers */
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -07001033 kfree(port->bulk_in_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 port->bulk_in_buffer = kmalloc (BUFSZ, GFP_KERNEL);
1035 if (!port->bulk_in_buffer) {
1036 kfree (priv);
1037 return -ENOMEM;
1038 }
1039 if (port->read_urb) {
1040 port->read_urb->transfer_buffer = port->bulk_in_buffer;
1041 port->read_urb->transfer_buffer_length = BUFSZ;
1042 }
1043
David Howellsc4028952006-11-22 14:57:56 +00001044 INIT_DELAYED_WORK(&priv->rx_work, ftdi_process_read);
1045 priv->port = port;
Ian Abbott76854ce2005-06-02 10:34:11 +01001046
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 /* Free port's existing write urb and transfer buffer. */
1048 if (port->write_urb) {
1049 usb_free_urb (port->write_urb);
1050 port->write_urb = NULL;
1051 }
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -07001052 kfree(port->bulk_out_buffer);
1053 port->bulk_out_buffer = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054
Jim Radford12bdbe02007-02-28 10:10:50 -08001055 usb_set_serial_port_data(port, priv);
Ian Abbott8f977e42005-06-20 16:45:42 +01001056
Jim Radford12bdbe02007-02-28 10:10:50 -08001057 ftdi_determine_type (port);
1058 create_sysfs_attrs(port);
1059 return 0;
1060}
Ian Abbott8f977e42005-06-20 16:45:42 +01001061
Ian Abbott8f977e42005-06-20 16:45:42 +01001062/* Setup for the USB-UIRT device, which requires hardwired
1063 * baudrate (38400 gets mapped to 312500) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064/* Called from usbserial:serial_probe */
Oliver Neukum0ffbbe22007-07-09 12:03:08 -07001065static void ftdi_USB_UIRT_setup (struct ftdi_private *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066{
Harvey Harrison441b62c2008-03-03 16:08:34 -08001067 dbg("%s",__func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 priv->flags |= ASYNC_SPD_CUST;
1070 priv->custom_divisor = 77;
Alan Cox669a6db2007-10-18 01:24:24 -07001071 priv->force_baud = 38400;
Ian Abbott8f977e42005-06-20 16:45:42 +01001072} /* ftdi_USB_UIRT_setup */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073
Ian Abbott8f977e42005-06-20 16:45:42 +01001074/* Setup for the HE-TIRA1 device, which requires hardwired
1075 * baudrate (38400 gets mapped to 100000) and RTS-CTS enabled. */
Oliver Neukum0ffbbe22007-07-09 12:03:08 -07001076static void ftdi_HE_TIRA1_setup (struct ftdi_private *priv)
Ian Abbott8f977e42005-06-20 16:45:42 +01001077{
Harvey Harrison441b62c2008-03-03 16:08:34 -08001078 dbg("%s",__func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 priv->flags |= ASYNC_SPD_CUST;
1081 priv->custom_divisor = 240;
Alan Cox669a6db2007-10-18 01:24:24 -07001082 priv->force_baud = 38400;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 priv->force_rtscts = 1;
Ian Abbott8f977e42005-06-20 16:45:42 +01001084} /* ftdi_HE_TIRA1_setup */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085
Tony Lindgrenfa91d432007-05-04 18:23:24 -07001086/*
Harald Welte20734342008-01-01 15:08:35 +01001087 * First port on JTAG adaptors such as Olimex arm-usb-ocd or the FIC/OpenMoko
1088 * Neo1973 Debug Board is reserved for JTAG interface and can be accessed from
1089 * userspace using openocd.
Tony Lindgrenfa91d432007-05-04 18:23:24 -07001090 */
Harald Welte20734342008-01-01 15:08:35 +01001091static int ftdi_jtag_probe(struct usb_serial *serial)
Tony Lindgrenfa91d432007-05-04 18:23:24 -07001092{
1093 struct usb_device *udev = serial->dev;
1094 struct usb_interface *interface = serial->interface;
1095
Harvey Harrison441b62c2008-03-03 16:08:34 -08001096 dbg("%s",__func__);
Tony Lindgrenfa91d432007-05-04 18:23:24 -07001097
1098 if (interface == udev->actconfig->interface[0]) {
Harald Welte20734342008-01-01 15:08:35 +01001099 info("Ignoring serial port reserved for JTAG");
Tony Lindgrenfa91d432007-05-04 18:23:24 -07001100 return -ENODEV;
1101 }
1102
1103 return 0;
1104}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105
Kevin Vance546d7ee2008-03-01 13:49:59 -05001106/*
1107 * The Matrix Orbital VK204-25-USB has an invalid IN endpoint.
1108 * We have to correct it if we want to read from it.
1109 */
1110static int ftdi_mtxorb_hack_setup(struct usb_serial *serial)
1111{
1112 struct usb_host_endpoint *ep = serial->dev->ep_in[1];
1113 struct usb_endpoint_descriptor *ep_desc = &ep->desc;
1114
1115 if (ep->enabled && ep_desc->wMaxPacketSize == 0) {
Al Virofd05e722008-04-28 07:00:16 +01001116 ep_desc->wMaxPacketSize = cpu_to_le16(0x40);
Kevin Vance546d7ee2008-03-01 13:49:59 -05001117 info("Fixing invalid wMaxPacketSize on read pipe");
1118 }
1119
1120 return 0;
1121}
1122
David Brownell5c09d142006-10-13 15:57:58 -07001123/* ftdi_shutdown is called from usbserial:usb_serial_disconnect
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 * it is called when the usb device is disconnected
1125 *
1126 * usbserial:usb_serial_disconnect
1127 * calls __serial_close for each open of the port
1128 * shutdown is called then (ie ftdi_shutdown)
1129 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130static void ftdi_shutdown (struct usb_serial *serial)
Jim Radford12bdbe02007-02-28 10:10:50 -08001131{
Harvey Harrison441b62c2008-03-03 16:08:34 -08001132 dbg("%s", __func__);
Jim Radford12bdbe02007-02-28 10:10:50 -08001133}
David Brownell5c09d142006-10-13 15:57:58 -07001134
Jim Radford12bdbe02007-02-28 10:10:50 -08001135static int ftdi_sio_port_remove(struct usb_serial_port *port)
1136{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 struct ftdi_private *priv = usb_get_serial_port_data(port);
1138
Harvey Harrison441b62c2008-03-03 16:08:34 -08001139 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140
Jim Radford12bdbe02007-02-28 10:10:50 -08001141 remove_sysfs_attrs(port);
David Brownell5c09d142006-10-13 15:57:58 -07001142
1143 /* all open ports are closed at this point
1144 * (by usbserial.c:__serial_close, which calls ftdi_close)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 */
1146
1147 if (priv) {
1148 usb_set_serial_port_data(port, NULL);
1149 kfree(priv);
1150 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151
Jim Radford12bdbe02007-02-28 10:10:50 -08001152 return 0;
1153}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154
1155static int ftdi_open (struct usb_serial_port *port, struct file *filp)
1156{ /* ftdi_open */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 struct usb_device *dev = port->serial->dev;
1158 struct ftdi_private *priv = usb_get_serial_port_data(port);
1159 unsigned long flags;
David Brownell5c09d142006-10-13 15:57:58 -07001160
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 int result = 0;
1162 char buf[1]; /* Needed for the usb_control_msg I think */
1163
Harvey Harrison441b62c2008-03-03 16:08:34 -08001164 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165
Ian Abbott22465402006-06-26 12:59:17 +01001166 spin_lock_irqsave(&priv->tx_lock, flags);
1167 priv->tx_bytes = 0;
1168 spin_unlock_irqrestore(&priv->tx_lock, flags);
1169 spin_lock_irqsave(&priv->rx_lock, flags);
1170 priv->rx_bytes = 0;
1171 spin_unlock_irqrestore(&priv->rx_lock, flags);
1172
Guennadi Liakhovetski57845bd2006-04-13 22:27:12 +02001173 if (port->tty)
1174 port->tty->low_latency = (priv->flags & ASYNC_LOW_LATENCY) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175
1176 /* No error checking for this (will get errors later anyway) */
1177 /* See ftdi_sio.h for description of what is reset */
1178 usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
David Brownell5c09d142006-10-13 15:57:58 -07001179 FTDI_SIO_RESET_REQUEST, FTDI_SIO_RESET_REQUEST_TYPE,
1180 FTDI_SIO_RESET_SIO,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 priv->interface, buf, 0, WDR_TIMEOUT);
1182
1183 /* Termios defaults are set by usb_serial_init. We don't change
1184 port->tty->termios - this would loose speed settings, etc.
1185 This is same behaviour as serial.c/rs_open() - Kuba */
1186
1187 /* ftdi_set_termios will send usb control messages */
Guennadi Liakhovetski57845bd2006-04-13 22:27:12 +02001188 if (port->tty)
Alan Cox669a6db2007-10-18 01:24:24 -07001189 ftdi_set_termios(port, port->tty->termios);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190
1191 /* FIXME: Flow control might be enabled, so it should be checked -
1192 we have no control of defaults! */
1193 /* Turn on RTS and DTR since we are not flow controlling by default */
Ian Abbott74ede0f2005-07-29 12:16:41 -07001194 set_mctrl(port, TIOCM_DTR | TIOCM_RTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195
1196 /* Not throttled */
1197 spin_lock_irqsave(&priv->rx_lock, flags);
1198 priv->rx_flags &= ~(THROTTLED | ACTUALLY_THROTTLED);
1199 spin_unlock_irqrestore(&priv->rx_lock, flags);
1200
1201 /* Start reading from the device */
Ian Abbott76854ce2005-06-02 10:34:11 +01001202 priv->rx_processed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 usb_fill_bulk_urb(port->read_urb, dev,
1204 usb_rcvbulkpipe(dev, port->bulk_in_endpointAddress),
1205 port->read_urb->transfer_buffer, port->read_urb->transfer_buffer_length,
1206 ftdi_read_bulk_callback, port);
1207 result = usb_submit_urb(port->read_urb, GFP_KERNEL);
1208 if (result)
Harvey Harrison441b62c2008-03-03 16:08:34 -08001209 err("%s - failed submitting read urb, error %d", __func__, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210
1211
1212 return result;
1213} /* ftdi_open */
1214
1215
1216
David Brownell5c09d142006-10-13 15:57:58 -07001217/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 * usbserial:__serial_close only calls ftdi_close if the point is open
1219 *
1220 * This only gets called when it is the last close
David Brownell5c09d142006-10-13 15:57:58 -07001221 *
1222 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 */
1224
1225static void ftdi_close (struct usb_serial_port *port, struct file *filp)
1226{ /* ftdi_close */
1227 unsigned int c_cflag = port->tty->termios->c_cflag;
1228 struct ftdi_private *priv = usb_get_serial_port_data(port);
1229 char buf[1];
1230
Harvey Harrison441b62c2008-03-03 16:08:34 -08001231 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232
Oliver Neukum95bef012008-01-22 13:56:18 +01001233 mutex_lock(&port->serial->disc_mutex);
1234 if (c_cflag & HUPCL && !port->serial->disconnected){
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 /* Disable flow control */
David Brownell5c09d142006-10-13 15:57:58 -07001236 if (usb_control_msg(port->serial->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 usb_sndctrlpipe(port->serial->dev, 0),
1238 FTDI_SIO_SET_FLOW_CTRL_REQUEST,
1239 FTDI_SIO_SET_FLOW_CTRL_REQUEST_TYPE,
1240 0, priv->interface, buf, 0,
1241 WDR_TIMEOUT) < 0) {
1242 err("error from flowcontrol urb");
David Brownell5c09d142006-10-13 15:57:58 -07001243 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244
Ian Abbott74ede0f2005-07-29 12:16:41 -07001245 /* drop RTS and DTR */
1246 clear_mctrl(port, TIOCM_DTR | TIOCM_RTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 } /* Note change no line if hupcl is off */
Oliver Neukum95bef012008-01-22 13:56:18 +01001248 mutex_unlock(&port->serial->disc_mutex);
Ian Abbott76854ce2005-06-02 10:34:11 +01001249
1250 /* cancel any scheduled reading */
1251 cancel_delayed_work(&priv->rx_work);
1252 flush_scheduled_work();
David Brownell5c09d142006-10-13 15:57:58 -07001253
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 /* shutdown our bulk read */
Mariusz Kozlowski794c9442006-11-08 15:36:25 +01001255 usb_kill_urb(port->read_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256} /* ftdi_close */
1257
1258
David Brownell5c09d142006-10-13 15:57:58 -07001259
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260/* The SIO requires the first byte to have:
1261 * B0 1
1262 * B1 0
1263 * B2..7 length of message excluding byte 0
1264 *
1265 * The new devices do not require this byte
1266 */
1267static int ftdi_write (struct usb_serial_port *port,
1268 const unsigned char *buf, int count)
1269{ /* ftdi_write */
1270 struct ftdi_private *priv = usb_get_serial_port_data(port);
1271 struct urb *urb;
1272 unsigned char *buffer;
1273 int data_offset ; /* will be 1 for the SIO and 0 otherwise */
1274 int status;
1275 int transfer_size;
Ian Abbott22465402006-06-26 12:59:17 +01001276 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277
Harvey Harrison441b62c2008-03-03 16:08:34 -08001278 dbg("%s port %d, %d bytes", __func__, port->number, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279
1280 if (count == 0) {
1281 dbg("write request of 0 bytes");
1282 return 0;
1283 }
Ian Abbott22465402006-06-26 12:59:17 +01001284 spin_lock_irqsave(&priv->tx_lock, flags);
1285 if (priv->tx_outstanding_urbs > URB_UPPER_LIMIT) {
1286 spin_unlock_irqrestore(&priv->tx_lock, flags);
Harvey Harrison441b62c2008-03-03 16:08:34 -08001287 dbg("%s - write limit hit\n", __func__);
Ian Abbott22465402006-06-26 12:59:17 +01001288 return 0;
1289 }
Oliver Neukum62127a52007-03-23 14:30:16 +01001290 priv->tx_outstanding_urbs++;
Ian Abbott22465402006-06-26 12:59:17 +01001291 spin_unlock_irqrestore(&priv->tx_lock, flags);
David Brownell5c09d142006-10-13 15:57:58 -07001292
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 data_offset = priv->write_offset;
1294 dbg("data_offset set to %d",data_offset);
1295
1296 /* Determine total transfer size */
1297 transfer_size = count;
1298 if (data_offset > 0) {
1299 /* Original sio needs control bytes too... */
1300 transfer_size += (data_offset *
1301 ((count + (PKTSZ - 1 - data_offset)) /
1302 (PKTSZ - data_offset)));
1303 }
1304
1305 buffer = kmalloc (transfer_size, GFP_ATOMIC);
1306 if (!buffer) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001307 err("%s ran out of kernel memory for urb ...", __func__);
Oliver Neukum62127a52007-03-23 14:30:16 +01001308 count = -ENOMEM;
1309 goto error_no_buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 }
1311
1312 urb = usb_alloc_urb(0, GFP_ATOMIC);
1313 if (!urb) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001314 err("%s - no more free urbs", __func__);
Oliver Neukum62127a52007-03-23 14:30:16 +01001315 count = -ENOMEM;
1316 goto error_no_urb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 }
1318
1319 /* Copy data */
1320 if (data_offset > 0) {
1321 /* Original sio requires control byte at start of each packet. */
1322 int user_pktsz = PKTSZ - data_offset;
1323 int todo = count;
1324 unsigned char *first_byte = buffer;
1325 const unsigned char *current_position = buf;
1326
1327 while (todo > 0) {
1328 if (user_pktsz > todo) {
1329 user_pktsz = todo;
1330 }
1331 /* Write the control byte at the front of the packet*/
David Brownell5c09d142006-10-13 15:57:58 -07001332 *first_byte = 1 | ((user_pktsz) << 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 /* Copy data for packet */
1334 memcpy (first_byte + data_offset,
1335 current_position, user_pktsz);
1336 first_byte += user_pktsz + data_offset;
1337 current_position += user_pktsz;
1338 todo -= user_pktsz;
1339 }
1340 } else {
1341 /* No control byte required. */
1342 /* Copy in the data to send */
1343 memcpy (buffer, buf, count);
1344 }
1345
Harvey Harrison441b62c2008-03-03 16:08:34 -08001346 usb_serial_debug_data(debug, &port->dev, __func__, transfer_size, buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347
1348 /* fill the buffer and send it */
David Brownell5c09d142006-10-13 15:57:58 -07001349 usb_fill_bulk_urb(urb, port->serial->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 usb_sndbulkpipe(port->serial->dev, port->bulk_out_endpointAddress),
1351 buffer, transfer_size,
1352 ftdi_write_bulk_callback, port);
1353
1354 status = usb_submit_urb(urb, GFP_ATOMIC);
1355 if (status) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001356 err("%s - failed submitting write urb, error %d", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 count = status;
Oliver Neukum62127a52007-03-23 14:30:16 +01001358 goto error;
Ian Abbott22465402006-06-26 12:59:17 +01001359 } else {
1360 spin_lock_irqsave(&priv->tx_lock, flags);
Ian Abbott22465402006-06-26 12:59:17 +01001361 priv->tx_outstanding_bytes += count;
1362 priv->tx_bytes += count;
1363 spin_unlock_irqrestore(&priv->tx_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 }
1365
1366 /* we are done with this urb, so let the host driver
1367 * really free it when it is finished with it */
Oliver Neukum62127a52007-03-23 14:30:16 +01001368 usb_free_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369
Harvey Harrison441b62c2008-03-03 16:08:34 -08001370 dbg("%s write returning: %d", __func__, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 return count;
Oliver Neukum62127a52007-03-23 14:30:16 +01001372error:
1373 usb_free_urb(urb);
1374error_no_urb:
1375 kfree (buffer);
1376error_no_buffer:
1377 spin_lock_irqsave(&priv->tx_lock, flags);
1378 priv->tx_outstanding_urbs--;
1379 spin_unlock_irqrestore(&priv->tx_lock, flags);
1380 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381} /* ftdi_write */
1382
1383
1384/* This function may get called when the device is closed */
1385
David Howells7d12e782006-10-05 14:55:46 +01001386static void ftdi_write_bulk_callback (struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387{
Ian Abbott22465402006-06-26 12:59:17 +01001388 unsigned long flags;
Ming Leicdc97792008-02-24 18:41:47 +08001389 struct usb_serial_port *port = urb->context;
Ian Abbott22465402006-06-26 12:59:17 +01001390 struct ftdi_private *priv;
1391 int data_offset; /* will be 1 for the SIO and 0 otherwise */
1392 unsigned long countback;
Greg Kroah-Hartman0fb0aa12007-06-15 15:44:13 -07001393 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394
1395 /* free up the transfer buffer, as usb_free_urb() does not do this */
1396 kfree (urb->transfer_buffer);
1397
Harvey Harrison441b62c2008-03-03 16:08:34 -08001398 dbg("%s - port %d", __func__, port->number);
David Brownell5c09d142006-10-13 15:57:58 -07001399
Greg Kroah-Hartman0fb0aa12007-06-15 15:44:13 -07001400 if (status) {
1401 dbg("nonzero write bulk status received: %d", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 return;
1403 }
1404
Ian Abbott22465402006-06-26 12:59:17 +01001405 priv = usb_get_serial_port_data(port);
1406 if (!priv) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001407 dbg("%s - bad port private data pointer - exiting", __func__);
Ian Abbott22465402006-06-26 12:59:17 +01001408 return;
1409 }
1410 /* account for transferred data */
1411 countback = urb->actual_length;
1412 data_offset = priv->write_offset;
1413 if (data_offset > 0) {
1414 /* Subtract the control bytes */
Julia Lawalldfa5ec72008-03-04 15:25:11 -08001415 countback -= (data_offset * DIV_ROUND_UP(countback, PKTSZ));
Ian Abbott22465402006-06-26 12:59:17 +01001416 }
1417 spin_lock_irqsave(&priv->tx_lock, flags);
1418 --priv->tx_outstanding_urbs;
1419 priv->tx_outstanding_bytes -= countback;
1420 spin_unlock_irqrestore(&priv->tx_lock, flags);
1421
Pete Zaitcevcf2c7482006-05-22 21:58:49 -07001422 usb_serial_port_softint(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423} /* ftdi_write_bulk_callback */
1424
1425
1426static int ftdi_write_room( struct usb_serial_port *port )
1427{
Ian Abbott22465402006-06-26 12:59:17 +01001428 struct ftdi_private *priv = usb_get_serial_port_data(port);
1429 int room;
1430 unsigned long flags;
1431
Harvey Harrison441b62c2008-03-03 16:08:34 -08001432 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433
Ian Abbott22465402006-06-26 12:59:17 +01001434 spin_lock_irqsave(&priv->tx_lock, flags);
1435 if (priv->tx_outstanding_urbs < URB_UPPER_LIMIT) {
1436 /*
1437 * We really can take anything the user throws at us
1438 * but let's pick a nice big number to tell the tty
1439 * layer that we have lots of free space
1440 */
1441 room = 2048;
1442 } else {
1443 room = 0;
1444 }
1445 spin_unlock_irqrestore(&priv->tx_lock, flags);
1446 return room;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447} /* ftdi_write_room */
1448
1449
1450static int ftdi_chars_in_buffer (struct usb_serial_port *port)
1451{ /* ftdi_chars_in_buffer */
Ian Abbott22465402006-06-26 12:59:17 +01001452 struct ftdi_private *priv = usb_get_serial_port_data(port);
1453 int buffered;
1454 unsigned long flags;
1455
Harvey Harrison441b62c2008-03-03 16:08:34 -08001456 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457
Ian Abbott22465402006-06-26 12:59:17 +01001458 spin_lock_irqsave(&priv->tx_lock, flags);
1459 buffered = (int)priv->tx_outstanding_bytes;
1460 spin_unlock_irqrestore(&priv->tx_lock, flags);
1461 if (buffered < 0) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001462 err("%s outstanding tx bytes is negative!", __func__);
Ian Abbott22465402006-06-26 12:59:17 +01001463 buffered = 0;
1464 }
1465 return buffered;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466} /* ftdi_chars_in_buffer */
1467
1468
1469
David Howells7d12e782006-10-05 14:55:46 +01001470static void ftdi_read_bulk_callback (struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471{ /* ftdi_read_bulk_callback */
Ming Leicdc97792008-02-24 18:41:47 +08001472 struct usb_serial_port *port = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 struct tty_struct *tty;
1474 struct ftdi_private *priv;
Ian Abbott22465402006-06-26 12:59:17 +01001475 unsigned long countread;
1476 unsigned long flags;
Greg Kroah-Hartman0fb0aa12007-06-15 15:44:13 -07001477 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478
1479 if (urb->number_of_packets > 0) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001480 err("%s transfer_buffer_length %d actual_length %d number of packets %d",__func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 urb->transfer_buffer_length, urb->actual_length, urb->number_of_packets );
Harvey Harrison441b62c2008-03-03 16:08:34 -08001482 err("%s transfer_flags %x ", __func__,urb->transfer_flags );
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 }
1484
Harvey Harrison441b62c2008-03-03 16:08:34 -08001485 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486
1487 if (port->open_count <= 0)
1488 return;
1489
1490 tty = port->tty;
1491 if (!tty) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001492 dbg("%s - bad tty pointer - exiting",__func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 return;
1494 }
1495
1496 priv = usb_get_serial_port_data(port);
1497 if (!priv) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001498 dbg("%s - bad port private data pointer - exiting", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 return;
1500 }
1501
1502 if (urb != port->read_urb) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001503 err("%s - Not my urb!", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 }
1505
Greg Kroah-Hartman0fb0aa12007-06-15 15:44:13 -07001506 if (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 /* This will happen at close every time so it is a dbg not an err */
Greg Kroah-Hartman0fb0aa12007-06-15 15:44:13 -07001508 dbg("(this is ok on close) nonzero read bulk status received: "
1509 "%d", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 return;
1511 }
1512
Ian Abbott22465402006-06-26 12:59:17 +01001513 /* count data bytes, but not status bytes */
1514 countread = urb->actual_length;
Julia Lawalldfa5ec72008-03-04 15:25:11 -08001515 countread -= 2 * DIV_ROUND_UP(countread, PKTSZ);
Ian Abbott22465402006-06-26 12:59:17 +01001516 spin_lock_irqsave(&priv->rx_lock, flags);
1517 priv->rx_bytes += countread;
1518 spin_unlock_irqrestore(&priv->rx_lock, flags);
1519
David Howellsc4028952006-11-22 14:57:56 +00001520 ftdi_process_read(&priv->rx_work.work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521
1522} /* ftdi_read_bulk_callback */
1523
1524
David Howellsc4028952006-11-22 14:57:56 +00001525static void ftdi_process_read (struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526{ /* ftdi_process_read */
David Howellsc4028952006-11-22 14:57:56 +00001527 struct ftdi_private *priv =
1528 container_of(work, struct ftdi_private, rx_work.work);
1529 struct usb_serial_port *port = priv->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 struct urb *urb;
1531 struct tty_struct *tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 char error_flag;
David Brownell5c09d142006-10-13 15:57:58 -07001533 unsigned char *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534
1535 int i;
1536 int result;
1537 int need_flip;
1538 int packet_offset;
Ian Abbott76854ce2005-06-02 10:34:11 +01001539 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540
Harvey Harrison441b62c2008-03-03 16:08:34 -08001541 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542
1543 if (port->open_count <= 0)
1544 return;
1545
1546 tty = port->tty;
1547 if (!tty) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001548 dbg("%s - bad tty pointer - exiting",__func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 return;
1550 }
1551
1552 priv = usb_get_serial_port_data(port);
1553 if (!priv) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001554 dbg("%s - bad port private data pointer - exiting", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 return;
1556 }
1557
1558 urb = port->read_urb;
1559 if (!urb) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001560 dbg("%s - bad read_urb pointer - exiting", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 return;
1562 }
1563
1564 data = urb->transfer_buffer;
1565
Ian Abbott76854ce2005-06-02 10:34:11 +01001566 if (priv->rx_processed) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001567 dbg("%s - already processed: %d bytes, %d remain", __func__,
Ian Abbott76854ce2005-06-02 10:34:11 +01001568 priv->rx_processed,
1569 urb->actual_length - priv->rx_processed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 } else {
Ian Abbott76854ce2005-06-02 10:34:11 +01001571 /* The first two bytes of every read packet are status */
1572 if (urb->actual_length > 2) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001573 usb_serial_debug_data(debug, &port->dev, __func__, urb->actual_length, data);
Ian Abbott76854ce2005-06-02 10:34:11 +01001574 } else {
1575 dbg("Status only: %03oo %03oo",data[0],data[1]);
1576 }
1577 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578
1579
1580 /* TO DO -- check for hung up line and handle appropriately: */
1581 /* send hangup */
1582 /* See acm.c - you do a tty_hangup - eg tty_hangup(tty) */
1583 /* if CD is dropped and the line is not CLOCAL then we should hangup */
1584
1585 need_flip = 0;
Ian Abbott76854ce2005-06-02 10:34:11 +01001586 for (packet_offset = priv->rx_processed; packet_offset < urb->actual_length; packet_offset += PKTSZ) {
1587 int length;
1588
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 /* Compare new line status to the old one, signal if different */
Ian Abbott76854ce2005-06-02 10:34:11 +01001590 /* N.B. packet may be processed more than once, but differences
1591 * are only processed once. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 if (priv != NULL) {
1593 char new_status = data[packet_offset+0] & FTDI_STATUS_B0_MASK;
1594 if (new_status != priv->prev_status) {
1595 priv->diff_status |= new_status ^ priv->prev_status;
1596 wake_up_interruptible(&priv->delta_msr_wait);
1597 priv->prev_status = new_status;
1598 }
1599 }
1600
Ian Abbott76854ce2005-06-02 10:34:11 +01001601 length = min(PKTSZ, urb->actual_length-packet_offset)-2;
1602 if (length < 0) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001603 err("%s - bad packet length: %d", __func__, length+2);
Ian Abbott76854ce2005-06-02 10:34:11 +01001604 length = 0;
1605 }
1606
Ian Abbott76854ce2005-06-02 10:34:11 +01001607 if (priv->rx_flags & THROTTLED) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001608 dbg("%s - throttled", __func__);
Ian Abbott76854ce2005-06-02 10:34:11 +01001609 break;
1610 }
Alan Cox33f0f882006-01-09 20:54:13 -08001611 if (tty_buffer_request_room(tty, length) < length) {
Ian Abbott76854ce2005-06-02 10:34:11 +01001612 /* break out & wait for throttling/unthrottling to happen */
Harvey Harrison441b62c2008-03-03 16:08:34 -08001613 dbg("%s - receive room low", __func__);
Ian Abbott76854ce2005-06-02 10:34:11 +01001614 break;
1615 }
1616
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 /* Handle errors and break */
1618 error_flag = TTY_NORMAL;
1619 /* Although the device uses a bitmask and hence can have multiple */
1620 /* errors on a packet - the order here sets the priority the */
1621 /* error is returned to the tty layer */
1622
1623 if ( data[packet_offset+1] & FTDI_RS_OE ) {
1624 error_flag = TTY_OVERRUN;
1625 dbg("OVERRRUN error");
1626 }
1627 if ( data[packet_offset+1] & FTDI_RS_BI ) {
1628 error_flag = TTY_BREAK;
1629 dbg("BREAK received");
1630 }
1631 if ( data[packet_offset+1] & FTDI_RS_PE ) {
1632 error_flag = TTY_PARITY;
1633 dbg("PARITY error");
1634 }
1635 if ( data[packet_offset+1] & FTDI_RS_FE ) {
1636 error_flag = TTY_FRAME;
1637 dbg("FRAMING error");
1638 }
Ian Abbott76854ce2005-06-02 10:34:11 +01001639 if (length > 0) {
1640 for (i = 2; i < length+2; i++) {
David Brownell5c09d142006-10-13 15:57:58 -07001641 /* Note that the error flag is duplicated for
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 every character received since we don't know
1643 which character it applied to */
1644 tty_insert_flip_char(tty, data[packet_offset+i], error_flag);
1645 }
1646 need_flip = 1;
1647 }
1648
1649#ifdef NOT_CORRECT_BUT_KEEPING_IT_FOR_NOW
1650 /* if a parity error is detected you get status packets forever
1651 until a character is sent without a parity error.
1652 This doesn't work well since the application receives a never
1653 ending stream of bad data - even though new data hasn't been sent.
1654 Therefore I (bill) have taken this out.
David Brownell5c09d142006-10-13 15:57:58 -07001655 However - this might make sense for framing errors and so on
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 so I am leaving the code in for now.
1657 */
1658 else {
1659 if (error_flag != TTY_NORMAL){
1660 dbg("error_flag is not normal");
1661 /* In this case it is just status - if that is an error send a bad character */
1662 if(tty->flip.count >= TTY_FLIPBUF_SIZE) {
1663 tty_flip_buffer_push(tty);
1664 }
1665 tty_insert_flip_char(tty, 0xff, error_flag);
1666 need_flip = 1;
1667 }
1668 }
1669#endif
1670 } /* "for(packet_offset=0..." */
1671
1672 /* Low latency */
1673 if (need_flip) {
1674 tty_flip_buffer_push(tty);
1675 }
1676
Ian Abbott76854ce2005-06-02 10:34:11 +01001677 if (packet_offset < urb->actual_length) {
1678 /* not completely processed - record progress */
1679 priv->rx_processed = packet_offset;
1680 dbg("%s - incomplete, %d bytes processed, %d remain",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001681 __func__, packet_offset,
Ian Abbott76854ce2005-06-02 10:34:11 +01001682 urb->actual_length - packet_offset);
1683 /* check if we were throttled while processing */
1684 spin_lock_irqsave(&priv->rx_lock, flags);
1685 if (priv->rx_flags & THROTTLED) {
1686 priv->rx_flags |= ACTUALLY_THROTTLED;
1687 spin_unlock_irqrestore(&priv->rx_lock, flags);
1688 dbg("%s - deferring remainder until unthrottled",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001689 __func__);
Ian Abbott76854ce2005-06-02 10:34:11 +01001690 return;
1691 }
1692 spin_unlock_irqrestore(&priv->rx_lock, flags);
1693 /* if the port is closed stop trying to read */
1694 if (port->open_count > 0){
1695 /* delay processing of remainder */
1696 schedule_delayed_work(&priv->rx_work, 1);
1697 } else {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001698 dbg("%s - port is closed", __func__);
Ian Abbott76854ce2005-06-02 10:34:11 +01001699 }
1700 return;
1701 }
1702
1703 /* urb is completely processed */
1704 priv->rx_processed = 0;
1705
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 /* if the port is closed stop trying to read */
1707 if (port->open_count > 0){
1708 /* Continue trying to always read */
David Brownell5c09d142006-10-13 15:57:58 -07001709 usb_fill_bulk_urb(port->read_urb, port->serial->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 usb_rcvbulkpipe(port->serial->dev, port->bulk_in_endpointAddress),
1711 port->read_urb->transfer_buffer, port->read_urb->transfer_buffer_length,
1712 ftdi_read_bulk_callback, port);
1713
1714 result = usb_submit_urb(port->read_urb, GFP_ATOMIC);
1715 if (result)
Harvey Harrison441b62c2008-03-03 16:08:34 -08001716 err("%s - failed resubmitting read urb, error %d", __func__, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 }
1718
1719 return;
1720} /* ftdi_process_read */
1721
1722
1723static void ftdi_break_ctl( struct usb_serial_port *port, int break_state )
1724{
1725 struct ftdi_private *priv = usb_get_serial_port_data(port);
David Brownell5c09d142006-10-13 15:57:58 -07001726 __u16 urb_value = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 char buf[1];
David Brownell5c09d142006-10-13 15:57:58 -07001728
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 /* break_state = -1 to turn on break, and 0 to turn off break */
1730 /* see drivers/char/tty_io.c to see it used */
1731 /* last_set_data_urb_value NEVER has the break bit set in it */
1732
1733 if (break_state) {
1734 urb_value = priv->last_set_data_urb_value | FTDI_SIO_SET_BREAK;
1735 } else {
David Brownell5c09d142006-10-13 15:57:58 -07001736 urb_value = priv->last_set_data_urb_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 }
1738
David Brownell5c09d142006-10-13 15:57:58 -07001739
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 if (usb_control_msg(port->serial->dev, usb_sndctrlpipe(port->serial->dev, 0),
David Brownell5c09d142006-10-13 15:57:58 -07001741 FTDI_SIO_SET_DATA_REQUEST,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 FTDI_SIO_SET_DATA_REQUEST_TYPE,
1743 urb_value , priv->interface,
1744 buf, 0, WDR_TIMEOUT) < 0) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001745 err("%s FAILED to enable/disable break state (state was %d)", __func__,break_state);
David Brownell5c09d142006-10-13 15:57:58 -07001746 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747
Harvey Harrison441b62c2008-03-03 16:08:34 -08001748 dbg("%s break state is %d - urb is %d", __func__,break_state, urb_value);
David Brownell5c09d142006-10-13 15:57:58 -07001749
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750}
1751
1752
1753/* old_termios contains the original termios settings and tty->termios contains
1754 * the new setting to be used
1755 * WARNING: set_termios calls this with old_termios in kernel space
1756 */
1757
Alan Cox606d0992006-12-08 02:38:45 -08001758static void ftdi_set_termios (struct usb_serial_port *port, struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759{ /* ftdi_termios */
1760 struct usb_device *dev = port->serial->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 struct ftdi_private *priv = usb_get_serial_port_data(port);
Alan Cox669a6db2007-10-18 01:24:24 -07001762 struct ktermios *termios = port->tty->termios;
1763 unsigned int cflag = termios->c_cflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 __u16 urb_value; /* will hold the new flags */
1765 char buf[1]; /* Perhaps I should dynamically alloc this? */
David Brownell5c09d142006-10-13 15:57:58 -07001766
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 // Added for xon/xoff support
Alan Cox669a6db2007-10-18 01:24:24 -07001768 unsigned int iflag = termios->c_iflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 unsigned char vstop;
1770 unsigned char vstart;
David Brownell5c09d142006-10-13 15:57:58 -07001771
Harvey Harrison441b62c2008-03-03 16:08:34 -08001772 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773
1774 /* Force baud rate if this device requires it, unless it is set to B0. */
Alan Cox669a6db2007-10-18 01:24:24 -07001775 if (priv->force_baud && ((termios->c_cflag & CBAUD) != B0)) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001776 dbg("%s: forcing baud rate for this device", __func__);
Andrew Mortonbd5e47c2007-10-18 01:24:25 -07001777 tty_encode_baud_rate(port->tty, priv->force_baud,
1778 priv->force_baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 }
1780
1781 /* Force RTS-CTS if this device requires it. */
1782 if (priv->force_rtscts) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001783 dbg("%s: forcing rtscts for this device", __func__);
Alan Cox669a6db2007-10-18 01:24:24 -07001784 termios->c_cflag |= CRTSCTS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 }
1786
Alan Cox669a6db2007-10-18 01:24:24 -07001787 cflag = termios->c_cflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788
David Brownell5c09d142006-10-13 15:57:58 -07001789 /* FIXME -For this cut I don't care if the line is really changing or
1790 not - so just do the change regardless - should be able to
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 compare old_termios and tty->termios */
David Brownell5c09d142006-10-13 15:57:58 -07001792 /* NOTE These routines can get interrupted by
1793 ftdi_sio_read_bulk_callback - need to examine what this
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 means - don't see any problems yet */
David Brownell5c09d142006-10-13 15:57:58 -07001795
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 /* Set number of data bits, parity, stop bits */
David Brownell5c09d142006-10-13 15:57:58 -07001797
Alan Cox669a6db2007-10-18 01:24:24 -07001798 termios->c_cflag &= ~CMSPAR;
1799
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 urb_value = 0;
1801 urb_value |= (cflag & CSTOPB ? FTDI_SIO_SET_DATA_STOP_BITS_2 :
1802 FTDI_SIO_SET_DATA_STOP_BITS_1);
David Brownell5c09d142006-10-13 15:57:58 -07001803 urb_value |= (cflag & PARENB ?
1804 (cflag & PARODD ? FTDI_SIO_SET_DATA_PARITY_ODD :
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 FTDI_SIO_SET_DATA_PARITY_EVEN) :
1806 FTDI_SIO_SET_DATA_PARITY_NONE);
1807 if (cflag & CSIZE) {
1808 switch (cflag & CSIZE) {
1809 case CS5: urb_value |= 5; dbg("Setting CS5"); break;
1810 case CS6: urb_value |= 6; dbg("Setting CS6"); break;
1811 case CS7: urb_value |= 7; dbg("Setting CS7"); break;
1812 case CS8: urb_value |= 8; dbg("Setting CS8"); break;
1813 default:
1814 err("CSIZE was set but not CS5-CS8");
1815 }
1816 }
1817
1818 /* This is needed by the break command since it uses the same command - but is
1819 * or'ed with this value */
1820 priv->last_set_data_urb_value = urb_value;
David Brownell5c09d142006-10-13 15:57:58 -07001821
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 if (usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
David Brownell5c09d142006-10-13 15:57:58 -07001823 FTDI_SIO_SET_DATA_REQUEST,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 FTDI_SIO_SET_DATA_REQUEST_TYPE,
1825 urb_value , priv->interface,
Ian Abbott279e1542005-07-29 12:16:52 -07001826 buf, 0, WDR_SHORT_TIMEOUT) < 0) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001827 err("%s FAILED to set databits/stopbits/parity", __func__);
David Brownell5c09d142006-10-13 15:57:58 -07001828 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829
1830 /* Now do the baudrate */
1831 if ((cflag & CBAUD) == B0 ) {
1832 /* Disable flow control */
1833 if (usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
David Brownell5c09d142006-10-13 15:57:58 -07001834 FTDI_SIO_SET_FLOW_CTRL_REQUEST,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 FTDI_SIO_SET_FLOW_CTRL_REQUEST_TYPE,
David Brownell5c09d142006-10-13 15:57:58 -07001836 0, priv->interface,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 buf, 0, WDR_TIMEOUT) < 0) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001838 err("%s error from disable flowcontrol urb", __func__);
David Brownell5c09d142006-10-13 15:57:58 -07001839 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 /* Drop RTS and DTR */
Ian Abbott74ede0f2005-07-29 12:16:41 -07001841 clear_mctrl(port, TIOCM_DTR | TIOCM_RTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 } else {
1843 /* set the baudrate determined before */
1844 if (change_speed(port)) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001845 err("%s urb failed to set baudrate", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 }
Peter Favrholdt72a755f2005-09-22 00:48:49 -07001847 /* Ensure RTS and DTR are raised when baudrate changed from 0 */
Guennadi Liakhovetski57845bd2006-04-13 22:27:12 +02001848 if (!old_termios || (old_termios->c_cflag & CBAUD) == B0) {
Peter Favrholdt72a755f2005-09-22 00:48:49 -07001849 set_mctrl(port, TIOCM_DTR | TIOCM_RTS);
1850 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 }
1852
1853 /* Set flow control */
1854 /* Note device also supports DTR/CD (ugh) and Xon/Xoff in hardware */
1855 if (cflag & CRTSCTS) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001856 dbg("%s Setting to CRTSCTS flow control", __func__);
David Brownell5c09d142006-10-13 15:57:58 -07001857 if (usb_control_msg(dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 usb_sndctrlpipe(dev, 0),
David Brownell5c09d142006-10-13 15:57:58 -07001859 FTDI_SIO_SET_FLOW_CTRL_REQUEST,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 FTDI_SIO_SET_FLOW_CTRL_REQUEST_TYPE,
1861 0 , (FTDI_SIO_RTS_CTS_HS | priv->interface),
1862 buf, 0, WDR_TIMEOUT) < 0) {
1863 err("urb failed to set to rts/cts flow control");
David Brownell5c09d142006-10-13 15:57:58 -07001864 }
1865
1866 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 /*
1868 * Xon/Xoff code
1869 *
1870 * Check the IXOFF status in the iflag component of the termios structure
1871 * if IXOFF is not set, the pre-xon/xoff code is executed.
1872 */
1873 if (iflag & IXOFF) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001874 dbg("%s request to enable xonxoff iflag=%04x",__func__,iflag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 // Try to enable the XON/XOFF on the ftdi_sio
1876 // Set the vstart and vstop -- could have been done up above where
1877 // a lot of other dereferencing is done but that would be very
1878 // inefficient as vstart and vstop are not always needed
Alan Cox669a6db2007-10-18 01:24:24 -07001879 vstart = termios->c_cc[VSTART];
1880 vstop = termios->c_cc[VSTOP];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 urb_value=(vstop << 8) | (vstart);
1882
1883 if (usb_control_msg(dev,
1884 usb_sndctrlpipe(dev, 0),
1885 FTDI_SIO_SET_FLOW_CTRL_REQUEST,
1886 FTDI_SIO_SET_FLOW_CTRL_REQUEST_TYPE,
1887 urb_value , (FTDI_SIO_XON_XOFF_HS
1888 | priv->interface),
1889 buf, 0, WDR_TIMEOUT) < 0) {
1890 err("urb failed to set to xon/xoff flow control");
1891 }
1892 } else {
1893 /* else clause to only run if cfag ! CRTSCTS and iflag ! XOFF */
1894 /* CHECKME Assuming XON/XOFF handled by tty stack - not by device */
Harvey Harrison441b62c2008-03-03 16:08:34 -08001895 dbg("%s Turning off hardware flow control", __func__);
David Brownell5c09d142006-10-13 15:57:58 -07001896 if (usb_control_msg(dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 usb_sndctrlpipe(dev, 0),
David Brownell5c09d142006-10-13 15:57:58 -07001898 FTDI_SIO_SET_FLOW_CTRL_REQUEST,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 FTDI_SIO_SET_FLOW_CTRL_REQUEST_TYPE,
David Brownell5c09d142006-10-13 15:57:58 -07001900 0, priv->interface,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 buf, 0, WDR_TIMEOUT) < 0) {
1902 err("urb failed to clear flow control");
David Brownell5c09d142006-10-13 15:57:58 -07001903 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 }
David Brownell5c09d142006-10-13 15:57:58 -07001905
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 }
1907 return;
1908} /* ftdi_termios */
1909
1910
1911static int ftdi_tiocmget (struct usb_serial_port *port, struct file *file)
1912{
1913 struct ftdi_private *priv = usb_get_serial_port_data(port);
1914 unsigned char buf[2];
1915 int ret;
1916
Harvey Harrison441b62c2008-03-03 16:08:34 -08001917 dbg("%s TIOCMGET", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 switch (priv->chip_type) {
1919 case SIO:
1920 /* Request the status from the device */
David Brownell5c09d142006-10-13 15:57:58 -07001921 if ((ret = usb_control_msg(port->serial->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 usb_rcvctrlpipe(port->serial->dev, 0),
David Brownell5c09d142006-10-13 15:57:58 -07001923 FTDI_SIO_GET_MODEM_STATUS_REQUEST,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 FTDI_SIO_GET_MODEM_STATUS_REQUEST_TYPE,
David Brownell5c09d142006-10-13 15:57:58 -07001925 0, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 buf, 1, WDR_TIMEOUT)) < 0 ) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001927 err("%s Could not get modem status of device - err: %d", __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 ret);
1929 return(ret);
1930 }
1931 break;
1932 case FT8U232AM:
1933 case FT232BM:
1934 case FT2232C:
Andrew M. Bishoped6e5282007-08-21 19:08:56 +01001935 case FT232RL:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 /* the 8U232AM returns a two byte value (the sio is a 1 byte value) - in the same
1937 format as the data returned from the in point */
David Brownell5c09d142006-10-13 15:57:58 -07001938 if ((ret = usb_control_msg(port->serial->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 usb_rcvctrlpipe(port->serial->dev, 0),
David Brownell5c09d142006-10-13 15:57:58 -07001940 FTDI_SIO_GET_MODEM_STATUS_REQUEST,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 FTDI_SIO_GET_MODEM_STATUS_REQUEST_TYPE,
David Brownell5c09d142006-10-13 15:57:58 -07001942 0, priv->interface,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 buf, 2, WDR_TIMEOUT)) < 0 ) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001944 err("%s Could not get modem status of device - err: %d", __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 ret);
1946 return(ret);
1947 }
1948 break;
1949 default:
1950 return -EFAULT;
1951 break;
1952 }
David Brownell5c09d142006-10-13 15:57:58 -07001953
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 return (buf[0] & FTDI_SIO_DSR_MASK ? TIOCM_DSR : 0) |
1955 (buf[0] & FTDI_SIO_CTS_MASK ? TIOCM_CTS : 0) |
1956 (buf[0] & FTDI_SIO_RI_MASK ? TIOCM_RI : 0) |
1957 (buf[0] & FTDI_SIO_RLSD_MASK ? TIOCM_CD : 0) |
David Brownell5c09d142006-10-13 15:57:58 -07001958 priv->last_dtr_rts;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959}
1960
1961static int ftdi_tiocmset(struct usb_serial_port *port, struct file * file, unsigned int set, unsigned int clear)
1962{
Harvey Harrison441b62c2008-03-03 16:08:34 -08001963 dbg("%s TIOCMSET", __func__);
Ian Abbott74ede0f2005-07-29 12:16:41 -07001964 return update_mctrl(port, set, clear);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965}
1966
1967
1968static int ftdi_ioctl (struct usb_serial_port *port, struct file * file, unsigned int cmd, unsigned long arg)
1969{
1970 struct ftdi_private *priv = usb_get_serial_port_data(port);
1971
Harvey Harrison441b62c2008-03-03 16:08:34 -08001972 dbg("%s cmd 0x%04x", __func__, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973
1974 /* Based on code from acm.c and others */
1975 switch (cmd) {
1976
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 case TIOCGSERIAL: /* gets serial port data */
1978 return get_serial_info(port, (struct serial_struct __user *) arg);
1979
1980 case TIOCSSERIAL: /* sets serial port data */
1981 return set_serial_info(port, (struct serial_struct __user *) arg);
1982
1983 /*
1984 * Wait for any of the 4 modem inputs (DCD,RI,DSR,CTS) to change
1985 * - mask passed in arg for lines of interest
1986 * (use |'ed TIOCM_RNG/DSR/CD/CTS for masking)
1987 * Caller should use TIOCGICOUNT to see which one it was.
1988 *
1989 * This code is borrowed from linux/drivers/char/serial.c
1990 */
1991 case TIOCMIWAIT:
1992 while (priv != NULL) {
1993 interruptible_sleep_on(&priv->delta_msr_wait);
1994 /* see if a signal did it */
1995 if (signal_pending(current))
1996 return -ERESTARTSYS;
1997 else {
1998 char diff = priv->diff_status;
1999
2000 if (diff == 0) {
2001 return -EIO; /* no change => error */
2002 }
2003
2004 /* Consume all events */
2005 priv->diff_status = 0;
2006
2007 /* Return 0 if caller wanted to know about these bits */
2008 if ( ((arg & TIOCM_RNG) && (diff & FTDI_RS0_RI)) ||
2009 ((arg & TIOCM_DSR) && (diff & FTDI_RS0_DSR)) ||
2010 ((arg & TIOCM_CD) && (diff & FTDI_RS0_RLSD)) ||
2011 ((arg & TIOCM_CTS) && (diff & FTDI_RS0_CTS)) ) {
2012 return 0;
2013 }
2014 /*
2015 * Otherwise caller can't care less about what happened,
2016 * and so we continue to wait for more events.
2017 */
2018 }
2019 }
2020 return(0);
2021 break;
2022 default:
2023 break;
David Brownell5c09d142006-10-13 15:57:58 -07002024
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025 }
2026
2027
David Brownell5c09d142006-10-13 15:57:58 -07002028 /* This is not necessarily an error - turns out the higher layers will do
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 * some ioctls itself (see comment above)
2030 */
Harvey Harrison441b62c2008-03-03 16:08:34 -08002031 dbg("%s arg not supported - it was 0x%04x - check /usr/include/asm/ioctls.h", __func__, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032
2033 return(-ENOIOCTLCMD);
2034} /* ftdi_ioctl */
2035
2036
2037static void ftdi_throttle (struct usb_serial_port *port)
2038{
2039 struct ftdi_private *priv = usb_get_serial_port_data(port);
2040 unsigned long flags;
2041
Harvey Harrison441b62c2008-03-03 16:08:34 -08002042 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043
2044 spin_lock_irqsave(&priv->rx_lock, flags);
2045 priv->rx_flags |= THROTTLED;
2046 spin_unlock_irqrestore(&priv->rx_lock, flags);
2047}
2048
2049
2050static void ftdi_unthrottle (struct usb_serial_port *port)
2051{
2052 struct ftdi_private *priv = usb_get_serial_port_data(port);
2053 int actually_throttled;
2054 unsigned long flags;
2055
Harvey Harrison441b62c2008-03-03 16:08:34 -08002056 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057
2058 spin_lock_irqsave(&priv->rx_lock, flags);
2059 actually_throttled = priv->rx_flags & ACTUALLY_THROTTLED;
2060 priv->rx_flags &= ~(THROTTLED | ACTUALLY_THROTTLED);
2061 spin_unlock_irqrestore(&priv->rx_lock, flags);
2062
2063 if (actually_throttled)
David Howellsc4028952006-11-22 14:57:56 +00002064 schedule_delayed_work(&priv->rx_work, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065}
2066
2067static int __init ftdi_init (void)
2068{
2069 int retval;
2070
Harvey Harrison441b62c2008-03-03 16:08:34 -08002071 dbg("%s", __func__);
Ian Abbottfdcb0a02005-07-28 18:40:32 +01002072 if (vendor > 0 && product > 0) {
2073 /* Add user specified VID/PID to reserved element of table. */
2074 int i;
2075 for (i = 0; id_table_combined[i].idVendor; i++)
2076 ;
2077 id_table_combined[i].match_flags = USB_DEVICE_ID_MATCH_DEVICE;
2078 id_table_combined[i].idVendor = vendor;
2079 id_table_combined[i].idProduct = product;
2080 }
Ian Abbott8f977e42005-06-20 16:45:42 +01002081 retval = usb_serial_register(&ftdi_sio_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 if (retval)
Ian Abbott8f977e42005-06-20 16:45:42 +01002083 goto failed_sio_register;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 retval = usb_register(&ftdi_driver);
David Brownell5c09d142006-10-13 15:57:58 -07002085 if (retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 goto failed_usb_register;
2087
2088 info(DRIVER_VERSION ":" DRIVER_DESC);
2089 return 0;
2090failed_usb_register:
Ian Abbott8f977e42005-06-20 16:45:42 +01002091 usb_serial_deregister(&ftdi_sio_device);
2092failed_sio_register:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 return retval;
2094}
2095
2096
2097static void __exit ftdi_exit (void)
2098{
2099
Harvey Harrison441b62c2008-03-03 16:08:34 -08002100 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101
2102 usb_deregister (&ftdi_driver);
Ian Abbott8f977e42005-06-20 16:45:42 +01002103 usb_serial_deregister (&ftdi_sio_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104
2105}
2106
2107
2108module_init(ftdi_init);
2109module_exit(ftdi_exit);
2110
2111MODULE_AUTHOR( DRIVER_AUTHOR );
2112MODULE_DESCRIPTION( DRIVER_DESC );
2113MODULE_LICENSE("GPL");
2114
2115module_param(debug, bool, S_IRUGO | S_IWUSR);
2116MODULE_PARM_DESC(debug, "Debug enabled or not");
Ian Abbottfdcb0a02005-07-28 18:40:32 +01002117module_param(vendor, ushort, 0);
2118MODULE_PARM_DESC(vendor, "User specified vendor ID (default="
2119 __MODULE_STRING(FTDI_VID)")");
2120module_param(product, ushort, 0);
2121MODULE_PARM_DESC(vendor, "User specified product ID");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122