blob: 91dc433dbcf14048488239bc42a788024eadc32a [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) },
Razvan Gavril72a9f952006-05-04 11:35:49 +0300136 { USB_DEVICE(FTDI_VID, FTDI_ACTZWAVE_PID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 { USB_DEVICE(FTDI_VID, FTDI_IRTRANS_PID) },
Luiz Fernando N. Capitulino69737df2006-04-11 15:52:41 -0300138 { USB_DEVICE(FTDI_VID, FTDI_IPLUS_PID) },
Luiz Fernando N. Capitulinod0993212007-06-21 22:34:23 -0300139 { USB_DEVICE(FTDI_VID, FTDI_IPLUS2_PID) },
Frank Sievertsenfad14a02006-10-20 09:43:53 +0200140 { USB_DEVICE(FTDI_VID, FTDI_DMX4ALL) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 { USB_DEVICE(FTDI_VID, FTDI_SIO_PID) },
142 { USB_DEVICE(FTDI_VID, FTDI_8U232AM_PID) },
143 { USB_DEVICE(FTDI_VID, FTDI_8U232AM_ALT_PID) },
Gard Spreemannd8b21602007-03-05 00:03:26 +0100144 { USB_DEVICE(FTDI_VID, FTDI_232RL_PID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 { USB_DEVICE(FTDI_VID, FTDI_8U2232C_PID) },
Christophe Mariacc0f8d562006-06-23 17:36:21 +0200146 { USB_DEVICE(FTDI_VID, FTDI_MICRO_CHAMELEON_PID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 { USB_DEVICE(FTDI_VID, FTDI_RELAIS_PID) },
Guido Scholz2adb80e2007-05-08 19:52:41 +0200148 { USB_DEVICE(FTDI_VID, FTDI_OPENDCC_PID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 { USB_DEVICE(INTERBIOMETRICS_VID, INTERBIOMETRICS_IOBOARD_PID) },
150 { USB_DEVICE(INTERBIOMETRICS_VID, INTERBIOMETRICS_MINI_IOBOARD_PID) },
151 { USB_DEVICE(FTDI_VID, FTDI_XF_632_PID) },
152 { USB_DEVICE(FTDI_VID, FTDI_XF_634_PID) },
153 { USB_DEVICE(FTDI_VID, FTDI_XF_547_PID) },
154 { USB_DEVICE(FTDI_VID, FTDI_XF_633_PID) },
155 { USB_DEVICE(FTDI_VID, FTDI_XF_631_PID) },
156 { USB_DEVICE(FTDI_VID, FTDI_XF_635_PID) },
157 { USB_DEVICE(FTDI_VID, FTDI_XF_640_PID) },
158 { USB_DEVICE(FTDI_VID, FTDI_XF_642_PID) },
159 { USB_DEVICE(FTDI_VID, FTDI_DSS20_PID) },
160 { USB_DEVICE(FTDI_NF_RIC_VID, FTDI_NF_RIC_PID) },
161 { USB_DEVICE(FTDI_VID, FTDI_VNHCPCUSB_D_PID) },
Ian Abbott8f977e42005-06-20 16:45:42 +0100162 { USB_DEVICE(FTDI_VID, FTDI_MTXORB_0_PID) },
163 { USB_DEVICE(FTDI_VID, FTDI_MTXORB_1_PID) },
164 { USB_DEVICE(FTDI_VID, FTDI_MTXORB_2_PID) },
165 { USB_DEVICE(FTDI_VID, FTDI_MTXORB_3_PID) },
166 { USB_DEVICE(FTDI_VID, FTDI_MTXORB_4_PID) },
167 { USB_DEVICE(FTDI_VID, FTDI_MTXORB_5_PID) },
168 { USB_DEVICE(FTDI_VID, FTDI_MTXORB_6_PID) },
Kevin Vance546d7ee2008-03-01 13:49:59 -0500169 { USB_DEVICE(MTXORB_VK_VID, MTXORB_VK_PID),
170 .driver_info = (kernel_ulong_t)&ftdi_mtxorb_hack_quirk },
Ian Abbott8f977e42005-06-20 16:45:42 +0100171 { USB_DEVICE(FTDI_VID, FTDI_PERLE_ULTRAPORT_PID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 { USB_DEVICE(FTDI_VID, FTDI_PIEGROUP_PID) },
Dave Platt274a4bb2006-07-18 21:26:54 -0700173 { USB_DEVICE(FTDI_VID, FTDI_TNC_X_PID) },
Jelle Foks868e4402007-03-25 21:08:35 -0400174 { USB_DEVICE(FTDI_VID, FTDI_USBX_707_PID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2101_PID) },
176 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2102_PID) },
177 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2103_PID) },
178 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2104_PID) },
Justin Carlsona1484822006-09-24 11:52:12 +0300179 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2106_PID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2201_1_PID) },
181 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2201_2_PID) },
182 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2202_1_PID) },
183 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2202_2_PID) },
184 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2203_1_PID) },
185 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2203_2_PID) },
186 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2401_1_PID) },
187 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2401_2_PID) },
188 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2401_3_PID) },
189 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2401_4_PID) },
190 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2402_1_PID) },
191 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2402_2_PID) },
192 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2402_3_PID) },
193 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2402_4_PID) },
194 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2403_1_PID) },
195 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2403_2_PID) },
196 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2403_3_PID) },
197 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2403_4_PID) },
198 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_1_PID) },
199 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_2_PID) },
200 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_3_PID) },
201 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_4_PID) },
202 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_5_PID) },
203 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_6_PID) },
204 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_7_PID) },
205 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_8_PID) },
206 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_1_PID) },
207 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_2_PID) },
208 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_3_PID) },
209 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_4_PID) },
210 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_5_PID) },
211 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_6_PID) },
212 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_7_PID) },
213 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_8_PID) },
214 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_1_PID) },
215 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_2_PID) },
216 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_3_PID) },
217 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_4_PID) },
218 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_5_PID) },
219 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_6_PID) },
220 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_7_PID) },
221 { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_8_PID) },
222 { USB_DEVICE(IDTECH_VID, IDTECH_IDT1221U_PID) },
223 { USB_DEVICE(OCT_VID, OCT_US101_PID) },
Ian Abbott8f977e42005-06-20 16:45:42 +0100224 { USB_DEVICE(FTDI_VID, FTDI_HE_TIRA1_PID),
225 .driver_info = (kernel_ulong_t)&ftdi_HE_TIRA1_quirk },
226 { USB_DEVICE(FTDI_VID, FTDI_USB_UIRT_PID),
227 .driver_info = (kernel_ulong_t)&ftdi_USB_UIRT_quirk },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 { USB_DEVICE(FTDI_VID, PROTEGO_SPECIAL_1) },
229 { USB_DEVICE(FTDI_VID, PROTEGO_R2X0) },
230 { USB_DEVICE(FTDI_VID, PROTEGO_SPECIAL_3) },
231 { USB_DEVICE(FTDI_VID, PROTEGO_SPECIAL_4) },
Ian Abbott8f977e42005-06-20 16:45:42 +0100232 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E808_PID) },
233 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E809_PID) },
234 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E80A_PID) },
235 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E80B_PID) },
236 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E80C_PID) },
237 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E80D_PID) },
238 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E80E_PID) },
239 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E80F_PID) },
240 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E888_PID) },
241 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E889_PID) },
242 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E88A_PID) },
243 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E88B_PID) },
244 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E88C_PID) },
245 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E88D_PID) },
246 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E88E_PID) },
247 { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E88F_PID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 { USB_DEVICE(FTDI_VID, FTDI_ELV_UO100_PID) },
Ian Abbott47900742005-05-17 15:12:13 +0100249 { USB_DEVICE(FTDI_VID, FTDI_ELV_UM100_PID) },
Ian Abbotte6ac4a42005-08-02 14:01:27 +0100250 { USB_DEVICE(FTDI_VID, FTDI_ELV_UR100_PID) },
251 { USB_DEVICE(FTDI_VID, FTDI_ELV_ALC8500_PID) },
Thomas Riewe207c47e2005-09-29 14:57:29 +0200252 { USB_DEVICE(FTDI_VID, FTDI_PYRAMID_PID) },
Martin Hagelinbde62182005-10-26 21:10:41 +0200253 { USB_DEVICE(FTDI_VID, FTDI_ELV_FHZ1000PC_PID) },
Thomas Schleusener4eaf60e2007-02-28 22:50:52 +0100254 { USB_DEVICE(FTDI_VID, FTDI_IBS_US485_PID) },
255 { USB_DEVICE(FTDI_VID, FTDI_IBS_PICPRO_PID) },
256 { USB_DEVICE(FTDI_VID, FTDI_IBS_PCMCIA_PID) },
257 { USB_DEVICE(FTDI_VID, FTDI_IBS_PK1_PID) },
258 { USB_DEVICE(FTDI_VID, FTDI_IBS_RS232MON_PID) },
259 { USB_DEVICE(FTDI_VID, FTDI_IBS_APP70_PID) },
260 { USB_DEVICE(FTDI_VID, FTDI_IBS_PEDO_PID) },
261 { USB_DEVICE(FTDI_VID, FTDI_IBS_PROD_PID) },
Ian Abbotte6ac4a42005-08-02 14:01:27 +0100262 /*
Peter Stark42f8aa92007-12-25 18:32:08 +0100263 * Due to many user requests for multiple ELV devices we enable
264 * them by default.
Ian Abbotte6ac4a42005-08-02 14:01:27 +0100265 */
Peter Stark42f8aa92007-12-25 18:32:08 +0100266 { USB_DEVICE(FTDI_VID, FTDI_ELV_CLI7000_PID) },
267 { USB_DEVICE(FTDI_VID, FTDI_ELV_PPS7330_PID) },
268 { USB_DEVICE(FTDI_VID, FTDI_ELV_TFM100_PID) },
269 { USB_DEVICE(FTDI_VID, FTDI_ELV_UDF77_PID) },
270 { USB_DEVICE(FTDI_VID, FTDI_ELV_UIO88_PID) },
271 { USB_DEVICE(FTDI_VID, FTDI_ELV_UAD8_PID) },
272 { USB_DEVICE(FTDI_VID, FTDI_ELV_UDA7_PID) },
273 { USB_DEVICE(FTDI_VID, FTDI_ELV_USI2_PID) },
274 { USB_DEVICE(FTDI_VID, FTDI_ELV_T1100_PID) },
275 { USB_DEVICE(FTDI_VID, FTDI_ELV_PCD200_PID) },
276 { USB_DEVICE(FTDI_VID, FTDI_ELV_ULA200_PID) },
277 { USB_DEVICE(FTDI_VID, FTDI_ELV_CSI8_PID) },
278 { USB_DEVICE(FTDI_VID, FTDI_ELV_EM1000DL_PID) },
279 { USB_DEVICE(FTDI_VID, FTDI_ELV_PCK100_PID) },
280 { USB_DEVICE(FTDI_VID, FTDI_ELV_RFP500_PID) },
281 { USB_DEVICE(FTDI_VID, FTDI_ELV_FS20SIG_PID) },
282 { USB_DEVICE(FTDI_VID, FTDI_ELV_WS300PC_PID) },
283 { USB_DEVICE(FTDI_VID, FTDI_ELV_FHZ1300PC_PID) },
Sven Andersen4ae897d2008-03-04 22:09:11 +0100284 { USB_DEVICE(FTDI_VID, FTDI_ELV_EM1010PC_PID) },
Peter Stark42f8aa92007-12-25 18:32:08 +0100285 { USB_DEVICE(FTDI_VID, FTDI_ELV_WS500_PID) },
David Brownell5c09d142006-10-13 15:57:58 -0700286 { USB_DEVICE(FTDI_VID, LINX_SDMUSBQSS_PID) },
287 { USB_DEVICE(FTDI_VID, LINX_MASTERDEVEL2_PID) },
288 { USB_DEVICE(FTDI_VID, LINX_FUTURE_0_PID) },
289 { USB_DEVICE(FTDI_VID, LINX_FUTURE_1_PID) },
290 { USB_DEVICE(FTDI_VID, LINX_FUTURE_2_PID) },
291 { USB_DEVICE(FTDI_VID, FTDI_CCSICDU20_0_PID) },
292 { USB_DEVICE(FTDI_VID, FTDI_CCSICDU40_1_PID) },
Jan Capekec434e92006-11-28 22:35:12 +0100293 { USB_DEVICE(FTDI_VID, FTDI_CCSMACHX_2_PID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 { USB_DEVICE(FTDI_VID, INSIDE_ACCESSO) },
295 { USB_DEVICE(INTREPID_VID, INTREPID_VALUECAN_PID) },
296 { USB_DEVICE(INTREPID_VID, INTREPID_NEOVI_PID) },
297 { USB_DEVICE(FALCOM_VID, FALCOM_TWIST_PID) },
Ian Abbotte6ac4a42005-08-02 14:01:27 +0100298 { USB_DEVICE(FALCOM_VID, FALCOM_SAMBA_PID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 { USB_DEVICE(FTDI_VID, FTDI_SUUNTO_SPORTS_PID) },
Michael Olbergef31fec2007-02-27 12:57:12 +0100300 { USB_DEVICE(TTI_VID, TTI_QL355P_PID) },
Ian Abbott6f928722005-04-29 16:06:14 +0100301 { USB_DEVICE(FTDI_VID, FTDI_RM_CANVIEW_PID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 { USB_DEVICE(BANDB_VID, BANDB_USOTL4_PID) },
303 { USB_DEVICE(BANDB_VID, BANDB_USTL4_PID) },
304 { USB_DEVICE(BANDB_VID, BANDB_USO9ML2_PID) },
305 { USB_DEVICE(FTDI_VID, EVER_ECO_PRO_CDS) },
Ian Abbott6f928722005-04-29 16:06:14 +0100306 { USB_DEVICE(FTDI_VID, FTDI_4N_GALAXY_DE_1_PID) },
307 { USB_DEVICE(FTDI_VID, FTDI_4N_GALAXY_DE_2_PID) },
Ian Abbotte6ac4a42005-08-02 14:01:27 +0100308 { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_0_PID) },
309 { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_1_PID) },
310 { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_2_PID) },
311 { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_3_PID) },
312 { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_4_PID) },
313 { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_5_PID) },
314 { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_6_PID) },
315 { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_7_PID) },
Ian Abbott6f928722005-04-29 16:06:14 +0100316 { USB_DEVICE(MOBILITY_VID, MOBILITY_USB_SERIAL_PID) },
Ian Abbott8f977e42005-06-20 16:45:42 +0100317 { USB_DEVICE(FTDI_VID, FTDI_ACTIVE_ROBOTS_PID) },
Ian Abbott34d1a8a2006-02-27 14:05:32 +0000318 { USB_DEVICE(FTDI_VID, FTDI_MHAM_KW_PID) },
319 { USB_DEVICE(FTDI_VID, FTDI_MHAM_YS_PID) },
Ian Abbott9b1513d2005-07-29 12:16:31 -0700320 { USB_DEVICE(FTDI_VID, FTDI_MHAM_Y6_PID) },
321 { USB_DEVICE(FTDI_VID, FTDI_MHAM_Y8_PID) },
Ian Abbott34d1a8a2006-02-27 14:05:32 +0000322 { USB_DEVICE(FTDI_VID, FTDI_MHAM_IC_PID) },
323 { USB_DEVICE(FTDI_VID, FTDI_MHAM_DB9_PID) },
324 { USB_DEVICE(FTDI_VID, FTDI_MHAM_RS232_PID) },
325 { USB_DEVICE(FTDI_VID, FTDI_MHAM_Y9_PID) },
Ian Abbott740a4282005-12-13 16:18:47 +0000326 { USB_DEVICE(FTDI_VID, FTDI_TERATRONIK_VCP_PID) },
327 { USB_DEVICE(FTDI_VID, FTDI_TERATRONIK_D2XX_PID) },
Ian Abbott9b1513d2005-07-29 12:16:31 -0700328 { USB_DEVICE(EVOLUTION_VID, EVOLUTION_ER1_PID) },
Søren Haubergc1f8ea72007-08-08 10:50:17 +0200329 { USB_DEVICE(EVOLUTION_VID, EVO_HYBRID_PID) },
330 { USB_DEVICE(EVOLUTION_VID, EVO_RCM4_PID) },
Rui Santosc9c77462005-09-23 20:06:50 +0100331 { USB_DEVICE(FTDI_VID, FTDI_ARTEMIS_PID) },
332 { USB_DEVICE(FTDI_VID, FTDI_ATIK_ATK16_PID) },
Rui Santos09c280a2006-01-09 13:12:40 +0000333 { USB_DEVICE(FTDI_VID, FTDI_ATIK_ATK16C_PID) },
Rui Santosc9c77462005-09-23 20:06:50 +0100334 { USB_DEVICE(FTDI_VID, FTDI_ATIK_ATK16HR_PID) },
Rui Santos09c280a2006-01-09 13:12:40 +0000335 { USB_DEVICE(FTDI_VID, FTDI_ATIK_ATK16HRC_PID) },
Franco Lanza34910432007-12-26 03:29:33 +0100336 { USB_DEVICE(FTDI_VID, FTDI_ATIK_ATK16IC_PID) },
Ian Abbottb4723ae2005-11-23 15:45:23 -0800337 { USB_DEVICE(KOBIL_VID, KOBIL_CONV_B1_PID) },
338 { USB_DEVICE(KOBIL_VID, KOBIL_CONV_KAAN_PID) },
Pavel Fedineffac8b2005-12-09 09:30:59 +0300339 { USB_DEVICE(POSIFLEX_VID, POSIFLEX_PP7000_PID) },
Louis Nyffenegger641adaa2006-01-05 17:20:37 +0100340 { USB_DEVICE(FTDI_VID, FTDI_TTUSB_PID) },
Ian Abbott7e1c0b82006-03-21 14:55:20 +0000341 { USB_DEVICE(FTDI_VID, FTDI_ECLO_COM_1WIRE_PID) },
Ian Abbotta94b52a2006-01-09 17:11:40 +0000342 { USB_DEVICE(FTDI_VID, FTDI_WESTREX_MODEL_777_PID) },
343 { USB_DEVICE(FTDI_VID, FTDI_WESTREX_MODEL_8900F_PID) },
Wouter Paesence40d292006-01-03 14:30:31 +0100344 { USB_DEVICE(FTDI_VID, FTDI_PCDJ_DAC2_PID) },
Nathan Bronsoncdd3b152006-04-10 00:05:09 -0400345 { USB_DEVICE(FTDI_VID, FTDI_RRCIRKITS_LOCOBUFFER_PID) },
Ian Abbott7e0258f2006-04-12 15:20:35 +0100346 { USB_DEVICE(FTDI_VID, FTDI_ASK_RDR400_PID) },
A. Maitland Bottomsbf58fbd2006-03-14 18:44:23 -0500347 { USB_DEVICE(ICOM_ID1_VID, ICOM_ID1_PID) },
Folkert van Heusden62a13db2006-03-28 20:41:26 +0900348 { USB_DEVICE(PAPOUCH_VID, PAPOUCH_TMU_PID) },
Ian Abbott20a0f472006-05-04 11:34:25 +0100349 { USB_DEVICE(FTDI_VID, FTDI_ACG_HFDUAL_PID) },
Ian Abbotteb79b4f2006-05-30 12:36:30 +0100350 { USB_DEVICE(FTDI_VID, FTDI_YEI_SERVOCENTER31_PID) },
D. Peter Siddons48437482006-06-17 18:09:15 -0400351 { USB_DEVICE(FTDI_VID, FTDI_THORLABS_PID) },
Colin Leroye1979fe2006-07-11 11:36:43 +0200352 { USB_DEVICE(TESTO_VID, TESTO_USB_INTERFACE_PID) },
Ralf Schlatterbeckeaede2c2006-09-06 12:15:02 +0200353 { USB_DEVICE(FTDI_VID, FTDI_GAMMA_SCOUT_PID) },
Ian Abbott9978f9e2006-09-25 14:19:19 +0100354 { USB_DEVICE(FTDI_VID, FTDI_TACTRIX_OPENPORT_13M_PID) },
355 { USB_DEVICE(FTDI_VID, FTDI_TACTRIX_OPENPORT_13S_PID) },
356 { USB_DEVICE(FTDI_VID, FTDI_TACTRIX_OPENPORT_13U_PID) },
Kjell Myksvoll40c36092006-10-22 23:26:42 +0200357 { USB_DEVICE(ELEKTOR_VID, ELEKTOR_FT323R_PID) },
Micke Prag822c7ef2007-02-04 23:39:11 +0100358 { USB_DEVICE(TELLDUS_VID, TELLDUS_TELLSTICK_PID) },
Neil \"Superna\" ARMSTRONG762e92f2007-04-25 20:34:28 +0200359 { USB_DEVICE(FTDI_VID, FTDI_MAXSTREAM_PID) },
Pierre Castellad7fde2d2007-09-06 22:34:39 +0200360 { USB_DEVICE(TML_VID, TML_USB_SERIAL_PID) },
Ed Beroset4bb0ef12008-01-17 17:37:46 -0500361 { USB_DEVICE(FTDI_VID, FTDI_ELSTER_UNICOM_PID) },
Tony Lindgrenfa91d432007-05-04 18:23:24 -0700362 { USB_DEVICE(OLIMEX_VID, OLIMEX_ARM_USB_OCD_PID),
Harald Welte20734342008-01-01 15:08:35 +0100363 .driver_info = (kernel_ulong_t)&ftdi_jtag_quirk },
364 { USB_DEVICE(FIC_VID, FIC_NEO1973_DEBUG_PID),
365 .driver_info = (kernel_ulong_t)&ftdi_jtag_quirk },
366 { USB_DEVICE(FTDI_VID, FTDI_OOCDLINK_PID),
367 .driver_info = (kernel_ulong_t)&ftdi_jtag_quirk },
Ian Abbottfdcb0a02005-07-28 18:40:32 +0100368 { }, /* Optional parameter entry */
369 { } /* Terminating entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370};
371
372MODULE_DEVICE_TABLE (usb, id_table_combined);
373
374static struct usb_driver ftdi_driver = {
375 .name = "ftdi_sio",
376 .probe = usb_serial_probe,
377 .disconnect = usb_serial_disconnect,
378 .id_table = id_table_combined,
David Brownell5c09d142006-10-13 15:57:58 -0700379 .no_dynamic_id = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380};
381
Arjan van de Ven4c4c9432005-11-29 09:43:42 +0100382static const char *ftdi_chip_name[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 [SIO] = "SIO", /* the serial part of FT8U100AX */
384 [FT8U232AM] = "FT8U232AM",
385 [FT232BM] = "FT232BM",
386 [FT2232C] = "FT2232C",
Gard Spreemannd8b21602007-03-05 00:03:26 +0100387 [FT232RL] = "FT232RL",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388};
389
390
391/* Constants for read urb and write urb */
392#define BUFSZ 512
393#define PKTSZ 64
394
395/* rx_flags */
396#define THROTTLED 0x01
397#define ACTUALLY_THROTTLED 0x02
398
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399/* Used for TIOCMIWAIT */
400#define FTDI_STATUS_B0_MASK (FTDI_RS0_CTS | FTDI_RS0_DSR | FTDI_RS0_RI | FTDI_RS0_RLSD)
401#define FTDI_STATUS_B1_MASK (FTDI_RS_BI)
402/* End TIOCMIWAIT */
403
Roel Kluinbbc5d272008-02-07 01:06:07 +0100404#define FTDI_IMPL_ASYNC_FLAGS = (ASYNC_SPD_HI | ASYNC_SPD_VHI \
405 | ASYNC_SPD_CUST | ASYNC_SPD_SHI | ASYNC_SPD_WARP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
407/* function prototypes for a FTDI serial converter */
Ian Abbott8f977e42005-06-20 16:45:42 +0100408static int ftdi_sio_probe (struct usb_serial *serial, const struct usb_device_id *id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409static void ftdi_shutdown (struct usb_serial *serial);
Jim Radford12bdbe02007-02-28 10:10:50 -0800410static int ftdi_sio_port_probe (struct usb_serial_port *port);
411static int ftdi_sio_port_remove (struct usb_serial_port *port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412static int ftdi_open (struct usb_serial_port *port, struct file *filp);
413static void ftdi_close (struct usb_serial_port *port, struct file *filp);
414static int ftdi_write (struct usb_serial_port *port, const unsigned char *buf, int count);
415static int ftdi_write_room (struct usb_serial_port *port);
416static int ftdi_chars_in_buffer (struct usb_serial_port *port);
David Howells7d12e782006-10-05 14:55:46 +0100417static void ftdi_write_bulk_callback (struct urb *urb);
418static void ftdi_read_bulk_callback (struct urb *urb);
David Howellsc4028952006-11-22 14:57:56 +0000419static void ftdi_process_read (struct work_struct *work);
Alan Cox606d0992006-12-08 02:38:45 -0800420static void ftdi_set_termios (struct usb_serial_port *port, struct ktermios * old);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421static int ftdi_tiocmget (struct usb_serial_port *port, struct file *file);
422static int ftdi_tiocmset (struct usb_serial_port *port, struct file * file, unsigned int set, unsigned int clear);
423static int ftdi_ioctl (struct usb_serial_port *port, struct file * file, unsigned int cmd, unsigned long arg);
424static void ftdi_break_ctl (struct usb_serial_port *port, int break_state );
425static void ftdi_throttle (struct usb_serial_port *port);
426static void ftdi_unthrottle (struct usb_serial_port *port);
427
428static unsigned short int ftdi_232am_baud_base_to_divisor (int baud, int base);
429static unsigned short int ftdi_232am_baud_to_divisor (int baud);
430static __u32 ftdi_232bm_baud_base_to_divisor (int baud, int base);
431static __u32 ftdi_232bm_baud_to_divisor (int baud);
432
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -0700433static struct usb_serial_driver ftdi_sio_device = {
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700434 .driver = {
435 .owner = THIS_MODULE,
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -0700436 .name = "ftdi_sio",
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700437 },
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -0700438 .description = "FTDI USB Serial Device",
Johannes Hölzld9b1b782006-12-17 21:50:24 +0100439 .usb_driver = &ftdi_driver ,
Ian Abbott8f977e42005-06-20 16:45:42 +0100440 .id_table = id_table_combined,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 .num_interrupt_in = 0,
442 .num_bulk_in = 1,
443 .num_bulk_out = 1,
444 .num_ports = 1,
Ian Abbott8f977e42005-06-20 16:45:42 +0100445 .probe = ftdi_sio_probe,
Jim Radford12bdbe02007-02-28 10:10:50 -0800446 .port_probe = ftdi_sio_port_probe,
447 .port_remove = ftdi_sio_port_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 .open = ftdi_open,
449 .close = ftdi_close,
450 .throttle = ftdi_throttle,
451 .unthrottle = ftdi_unthrottle,
452 .write = ftdi_write,
453 .write_room = ftdi_write_room,
454 .chars_in_buffer = ftdi_chars_in_buffer,
455 .read_bulk_callback = ftdi_read_bulk_callback,
456 .write_bulk_callback = ftdi_write_bulk_callback,
457 .tiocmget = ftdi_tiocmget,
458 .tiocmset = ftdi_tiocmset,
459 .ioctl = ftdi_ioctl,
460 .set_termios = ftdi_set_termios,
461 .break_ctl = ftdi_break_ctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 .shutdown = ftdi_shutdown,
463};
464
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
466#define WDR_TIMEOUT 5000 /* default urb timeout */
Ian Abbott279e1542005-07-29 12:16:52 -0700467#define WDR_SHORT_TIMEOUT 1000 /* shorter urb timeout */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
469/* High and low are for DTR, RTS etc etc */
470#define HIGH 1
471#define LOW 0
472
Ian Abbott22465402006-06-26 12:59:17 +0100473/* number of outstanding urbs to prevent userspace DoS from happening */
474#define URB_UPPER_LIMIT 42
475
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476/*
477 * ***************************************************************************
Tony Lindgrenfa91d432007-05-04 18:23:24 -0700478 * Utility functions
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 * ***************************************************************************
480 */
481
482static unsigned short int ftdi_232am_baud_base_to_divisor(int baud, int base)
483{
484 unsigned short int divisor;
485 int divisor3 = base / 2 / baud; // divisor shifted 3 bits to the left
486 if ((divisor3 & 0x7) == 7) divisor3 ++; // round x.7/8 up to x+1
487 divisor = divisor3 >> 3;
488 divisor3 &= 0x7;
489 if (divisor3 == 1) divisor |= 0xc000; else // 0.125
490 if (divisor3 >= 4) divisor |= 0x4000; else // 0.5
491 if (divisor3 != 0) divisor |= 0x8000; // 0.25
492 if (divisor == 1) divisor = 0; /* special case for maximum baud rate */
493 return divisor;
494}
495
496static unsigned short int ftdi_232am_baud_to_divisor(int baud)
497{
498 return(ftdi_232am_baud_base_to_divisor(baud, 48000000));
499}
500
501static __u32 ftdi_232bm_baud_base_to_divisor(int baud, int base)
502{
503 static const unsigned char divfrac[8] = { 0, 3, 2, 4, 1, 5, 6, 7 };
504 __u32 divisor;
505 int divisor3 = base / 2 / baud; // divisor shifted 3 bits to the left
506 divisor = divisor3 >> 3;
507 divisor |= (__u32)divfrac[divisor3 & 0x7] << 14;
508 /* Deal with special cases for highest baud rates. */
509 if (divisor == 1) divisor = 0; else // 1.0
510 if (divisor == 0x4001) divisor = 1; // 1.5
511 return divisor;
512}
513
514static __u32 ftdi_232bm_baud_to_divisor(int baud)
515{
516 return(ftdi_232bm_baud_base_to_divisor(baud, 48000000));
517}
518
Ian Abbott74ede0f2005-07-29 12:16:41 -0700519#define set_mctrl(port, set) update_mctrl((port), (set), 0)
520#define clear_mctrl(port, clear) update_mctrl((port), 0, (clear))
521
522static int update_mctrl(struct usb_serial_port *port, unsigned int set, unsigned int clear)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523{
524 struct ftdi_private *priv = usb_get_serial_port_data(port);
525 char *buf;
Ian Abbott74ede0f2005-07-29 12:16:41 -0700526 unsigned urb_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 int rv;
Ian Abbott74ede0f2005-07-29 12:16:41 -0700528
529 if (((set | clear) & (TIOCM_DTR | TIOCM_RTS)) == 0) {
530 dbg("%s - DTR|RTS not being set|cleared", __FUNCTION__);
531 return 0; /* no change */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 }
Ian Abbott74ede0f2005-07-29 12:16:41 -0700533
534 buf = kmalloc(1, GFP_NOIO);
535 if (!buf) {
536 return -ENOMEM;
537 }
538
539 clear &= ~set; /* 'set' takes precedence over 'clear' */
540 urb_value = 0;
541 if (clear & TIOCM_DTR)
542 urb_value |= FTDI_SIO_SET_DTR_LOW;
543 if (clear & TIOCM_RTS)
544 urb_value |= FTDI_SIO_SET_RTS_LOW;
545 if (set & TIOCM_DTR)
546 urb_value |= FTDI_SIO_SET_DTR_HIGH;
547 if (set & TIOCM_RTS)
548 urb_value |= FTDI_SIO_SET_RTS_HIGH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 rv = usb_control_msg(port->serial->dev,
550 usb_sndctrlpipe(port->serial->dev, 0),
David Brownell5c09d142006-10-13 15:57:58 -0700551 FTDI_SIO_SET_MODEM_CTRL_REQUEST,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 FTDI_SIO_SET_MODEM_CTRL_REQUEST_TYPE,
Ian Abbott74ede0f2005-07-29 12:16:41 -0700553 urb_value, priv->interface,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 buf, 0, WDR_TIMEOUT);
555
556 kfree(buf);
Ian Abbott74ede0f2005-07-29 12:16:41 -0700557 if (rv < 0) {
558 err("%s Error from MODEM_CTRL urb: DTR %s, RTS %s",
559 __FUNCTION__,
560 (set & TIOCM_DTR) ? "HIGH" :
561 (clear & TIOCM_DTR) ? "LOW" : "unchanged",
562 (set & TIOCM_RTS) ? "HIGH" :
563 (clear & TIOCM_RTS) ? "LOW" : "unchanged");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 } else {
Ian Abbott74ede0f2005-07-29 12:16:41 -0700565 dbg("%s - DTR %s, RTS %s", __FUNCTION__,
566 (set & TIOCM_DTR) ? "HIGH" :
567 (clear & TIOCM_DTR) ? "LOW" : "unchanged",
568 (set & TIOCM_RTS) ? "HIGH" :
569 (clear & TIOCM_RTS) ? "LOW" : "unchanged");
570 priv->last_dtr_rts = (priv->last_dtr_rts & ~clear) | set;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 return rv;
573}
574
575
576static __u32 get_ftdi_divisor(struct usb_serial_port * port);
577
578
579static int change_speed(struct usb_serial_port *port)
580{
581 struct ftdi_private *priv = usb_get_serial_port_data(port);
582 char *buf;
583 __u16 urb_value;
584 __u16 urb_index;
585 __u32 urb_index_value;
586 int rv;
587
588 buf = kmalloc(1, GFP_NOIO);
589 if (!buf)
590 return -ENOMEM;
591
592 urb_index_value = get_ftdi_divisor(port);
593 urb_value = (__u16)urb_index_value;
594 urb_index = (__u16)(urb_index_value >> 16);
595 if (priv->interface) { /* FT2232C */
596 urb_index = (__u16)((urb_index << 8) | priv->interface);
597 }
David Brownell5c09d142006-10-13 15:57:58 -0700598
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 rv = usb_control_msg(port->serial->dev,
600 usb_sndctrlpipe(port->serial->dev, 0),
601 FTDI_SIO_SET_BAUDRATE_REQUEST,
602 FTDI_SIO_SET_BAUDRATE_REQUEST_TYPE,
603 urb_value, urb_index,
Ian Abbott279e1542005-07-29 12:16:52 -0700604 buf, 0, WDR_SHORT_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
606 kfree(buf);
607 return rv;
608}
609
610
611static __u32 get_ftdi_divisor(struct usb_serial_port * port)
612{ /* get_ftdi_divisor */
613 struct ftdi_private *priv = usb_get_serial_port_data(port);
614 __u32 div_value = 0;
615 int div_okay = 1;
616 int baud;
617
618 /*
619 * The logic involved in setting the baudrate can be cleanly split in 3 steps.
620 * Obtaining the actual baud rate is a little tricky since unix traditionally
621 * somehow ignored the possibility to set non-standard baud rates.
622 * 1. Standard baud rates are set in tty->termios->c_cflag
623 * 2. If these are not enough, you can set any speed using alt_speed as follows:
624 * - set tty->termios->c_cflag speed to B38400
625 * - set your real speed in tty->alt_speed; it gets ignored when
626 * alt_speed==0, (or)
627 * - call TIOCSSERIAL ioctl with (struct serial_struct) set as follows:
628 * flags & ASYNC_SPD_MASK == ASYNC_SPD_[HI, VHI, SHI, WARP], this just
629 * sets alt_speed to (HI: 57600, VHI: 115200, SHI: 230400, WARP: 460800)
630 * ** Steps 1, 2 are done courtesy of tty_get_baud_rate
631 * 3. You can also set baud rate by setting custom divisor as follows
632 * - set tty->termios->c_cflag speed to B38400
633 * - call TIOCSSERIAL ioctl with (struct serial_struct) set as follows:
634 * o flags & ASYNC_SPD_MASK == ASYNC_SPD_CUST
635 * o custom_divisor set to baud_base / your_new_baudrate
636 * ** Step 3 is done courtesy of code borrowed from serial.c - I should really
637 * spend some time and separate+move this common code to serial.c, it is
638 * replicated in nearly every serial driver you see.
639 */
640
641 /* 1. Get the baud rate from the tty settings, this observes alt_speed hack */
642
643 baud = tty_get_baud_rate(port->tty);
644 dbg("%s - tty_get_baud_rate reports speed %d", __FUNCTION__, baud);
645
646 /* 2. Observe async-compatible custom_divisor hack, update baudrate if needed */
647
648 if (baud == 38400 &&
649 ((priv->flags & ASYNC_SPD_MASK) == ASYNC_SPD_CUST) &&
650 (priv->custom_divisor)) {
651 baud = priv->baud_base / priv->custom_divisor;
652 dbg("%s - custom divisor %d sets baud rate to %d", __FUNCTION__, priv->custom_divisor, baud);
653 }
654
655 /* 3. Convert baudrate to device-specific divisor */
656
David Brownell5c09d142006-10-13 15:57:58 -0700657 if (!baud) baud = 9600;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 switch(priv->chip_type) {
659 case SIO: /* SIO chip */
660 switch(baud) {
661 case 300: div_value = ftdi_sio_b300; break;
662 case 600: div_value = ftdi_sio_b600; break;
663 case 1200: div_value = ftdi_sio_b1200; break;
664 case 2400: div_value = ftdi_sio_b2400; break;
665 case 4800: div_value = ftdi_sio_b4800; break;
666 case 9600: div_value = ftdi_sio_b9600; break;
667 case 19200: div_value = ftdi_sio_b19200; break;
668 case 38400: div_value = ftdi_sio_b38400; break;
669 case 57600: div_value = ftdi_sio_b57600; break;
670 case 115200: div_value = ftdi_sio_b115200; break;
671 } /* baud */
672 if (div_value == 0) {
David Brownell5c09d142006-10-13 15:57:58 -0700673 dbg("%s - Baudrate (%d) requested is not supported", __FUNCTION__, baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 div_value = ftdi_sio_b9600;
Andrew Mortonbd5e47c2007-10-18 01:24:25 -0700675 baud = 9600;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 div_okay = 0;
677 }
678 break;
679 case FT8U232AM: /* 8U232AM chip */
680 if (baud <= 3000000) {
681 div_value = ftdi_232am_baud_to_divisor(baud);
682 } else {
683 dbg("%s - Baud rate too high!", __FUNCTION__);
Andrew Mortonbd5e47c2007-10-18 01:24:25 -0700684 baud = 9600;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 div_value = ftdi_232am_baud_to_divisor(9600);
686 div_okay = 0;
687 }
688 break;
689 case FT232BM: /* FT232BM chip */
690 case FT2232C: /* FT2232C chip */
David Brownell3b009c62007-03-23 12:54:27 -0700691 case FT232RL:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 if (baud <= 3000000) {
693 div_value = ftdi_232bm_baud_to_divisor(baud);
694 } else {
695 dbg("%s - Baud rate too high!", __FUNCTION__);
696 div_value = ftdi_232bm_baud_to_divisor(9600);
697 div_okay = 0;
Alan Cox669a6db2007-10-18 01:24:24 -0700698 baud = 9600;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 }
700 break;
701 } /* priv->chip_type */
702
703 if (div_okay) {
704 dbg("%s - Baud rate set to %d (divisor 0x%lX) on chip %s",
705 __FUNCTION__, baud, (unsigned long)div_value,
706 ftdi_chip_name[priv->chip_type]);
707 }
708
Alan Cox669a6db2007-10-18 01:24:24 -0700709 tty_encode_baud_rate(port->tty, baud, baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 return(div_value);
711}
712
713
714static int get_serial_info(struct usb_serial_port * port, struct serial_struct __user * retinfo)
715{
716 struct ftdi_private *priv = usb_get_serial_port_data(port);
717 struct serial_struct tmp;
718
719 if (!retinfo)
720 return -EFAULT;
721 memset(&tmp, 0, sizeof(tmp));
722 tmp.flags = priv->flags;
723 tmp.baud_base = priv->baud_base;
724 tmp.custom_divisor = priv->custom_divisor;
725 if (copy_to_user(retinfo, &tmp, sizeof(*retinfo)))
726 return -EFAULT;
727 return 0;
728} /* get_serial_info */
729
730
731static int set_serial_info(struct usb_serial_port * port, struct serial_struct __user * newinfo)
732{ /* set_serial_info */
733 struct ftdi_private *priv = usb_get_serial_port_data(port);
734 struct serial_struct new_serial;
735 struct ftdi_private old_priv;
736
737 if (copy_from_user(&new_serial, newinfo, sizeof(new_serial)))
738 return -EFAULT;
739 old_priv = * priv;
740
741 /* Do error checking and permission checking */
742
743 if (!capable(CAP_SYS_ADMIN)) {
744 if (((new_serial.flags & ~ASYNC_USR_MASK) !=
745 (priv->flags & ~ASYNC_USR_MASK)))
746 return -EPERM;
747 priv->flags = ((priv->flags & ~ASYNC_USR_MASK) |
748 (new_serial.flags & ASYNC_USR_MASK));
749 priv->custom_divisor = new_serial.custom_divisor;
750 goto check_and_exit;
751 }
752
753 if ((new_serial.baud_base != priv->baud_base) &&
754 (new_serial.baud_base < 9600))
755 return -EINVAL;
756
757 /* Make the changes - these are privileged changes! */
758
759 priv->flags = ((priv->flags & ~ASYNC_FLAGS) |
David Brownell5c09d142006-10-13 15:57:58 -0700760 (new_serial.flags & ASYNC_FLAGS));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 priv->custom_divisor = new_serial.custom_divisor;
762
763 port->tty->low_latency = (priv->flags & ASYNC_LOW_LATENCY) ? 1 : 0;
764
765check_and_exit:
766 if ((old_priv.flags & ASYNC_SPD_MASK) !=
767 (priv->flags & ASYNC_SPD_MASK)) {
768 if ((priv->flags & ASYNC_SPD_MASK) == ASYNC_SPD_HI)
769 port->tty->alt_speed = 57600;
770 else if ((priv->flags & ASYNC_SPD_MASK) == ASYNC_SPD_VHI)
771 port->tty->alt_speed = 115200;
772 else if ((priv->flags & ASYNC_SPD_MASK) == ASYNC_SPD_SHI)
773 port->tty->alt_speed = 230400;
774 else if ((priv->flags & ASYNC_SPD_MASK) == ASYNC_SPD_WARP)
775 port->tty->alt_speed = 460800;
776 else
777 port->tty->alt_speed = 0;
778 }
779 if (((old_priv.flags & ASYNC_SPD_MASK) !=
780 (priv->flags & ASYNC_SPD_MASK)) ||
781 (((priv->flags & ASYNC_SPD_MASK) == ASYNC_SPD_CUST) &&
782 (old_priv.custom_divisor != priv->custom_divisor))) {
783 change_speed(port);
784 }
David Brownell5c09d142006-10-13 15:57:58 -0700785
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 return (0);
787
788} /* set_serial_info */
789
790
Ian Abbott8f977e42005-06-20 16:45:42 +0100791/* Determine type of FTDI chip based on USB config and descriptor. */
792static void ftdi_determine_type(struct usb_serial_port *port)
793{
794 struct ftdi_private *priv = usb_get_serial_port_data(port);
795 struct usb_serial *serial = port->serial;
796 struct usb_device *udev = serial->dev;
797 unsigned version;
798 unsigned interfaces;
799
800 /* Assume it is not the original SIO device for now. */
Ian Abbottf5e09b72005-09-12 12:23:25 +0100801 priv->baud_base = 48000000 / 2;
Ian Abbott8f977e42005-06-20 16:45:42 +0100802 priv->write_offset = 0;
803
804 version = le16_to_cpu(udev->descriptor.bcdDevice);
805 interfaces = udev->actconfig->desc.bNumInterfaces;
806 dbg("%s: bcdDevice = 0x%x, bNumInterfaces = %u", __FUNCTION__,
807 version, interfaces);
808 if (interfaces > 1) {
809 int inter;
810
811 /* Multiple interfaces. Assume FT2232C. */
812 priv->chip_type = FT2232C;
813 /* Determine interface code. */
814 inter = serial->interface->altsetting->desc.bInterfaceNumber;
815 if (inter == 0) {
816 priv->interface = PIT_SIOA;
817 } else {
818 priv->interface = PIT_SIOB;
819 }
820 /* BM-type devices have a bug where bcdDevice gets set
821 * to 0x200 when iSerialNumber is 0. */
822 if (version < 0x500) {
823 dbg("%s: something fishy - bcdDevice too low for multi-interface device",
824 __FUNCTION__);
825 }
826 } else if (version < 0x200) {
827 /* Old device. Assume its the original SIO. */
828 priv->chip_type = SIO;
829 priv->baud_base = 12000000 / 16;
830 priv->write_offset = 1;
831 } else if (version < 0x400) {
832 /* Assume its an FT8U232AM (or FT8U245AM) */
833 /* (It might be a BM because of the iSerialNumber bug,
834 * but it will still work as an AM device.) */
835 priv->chip_type = FT8U232AM;
David Brownell3b009c62007-03-23 12:54:27 -0700836 } else if (version < 0x600) {
Ian Abbott8f977e42005-06-20 16:45:42 +0100837 /* Assume its an FT232BM (or FT245BM) */
838 priv->chip_type = FT232BM;
David Brownell3b009c62007-03-23 12:54:27 -0700839 } else {
840 /* Assume its an FT232R */
841 priv->chip_type = FT232RL;
Ian Abbott8f977e42005-06-20 16:45:42 +0100842 }
843 info("Detected %s", ftdi_chip_name[priv->chip_type]);
844}
845
846
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847/*
848 * ***************************************************************************
849 * Sysfs Attribute
850 * ***************************************************************************
851 */
852
Yani Ioannou060b8842005-05-17 06:44:04 -0400853static ssize_t show_latency_timer(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854{
855 struct usb_serial_port *port = to_usb_serial_port(dev);
856 struct ftdi_private *priv = usb_get_serial_port_data(port);
Jim Radford12bdbe02007-02-28 10:10:50 -0800857 struct usb_device *udev = port->serial->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 unsigned short latency = 0;
859 int rv = 0;
David Brownell5c09d142006-10-13 15:57:58 -0700860
David Brownell5c09d142006-10-13 15:57:58 -0700861
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 dbg("%s",__FUNCTION__);
David Brownell5c09d142006-10-13 15:57:58 -0700863
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 rv = usb_control_msg(udev,
865 usb_rcvctrlpipe(udev, 0),
866 FTDI_SIO_GET_LATENCY_TIMER_REQUEST,
867 FTDI_SIO_GET_LATENCY_TIMER_REQUEST_TYPE,
David Brownell5c09d142006-10-13 15:57:58 -0700868 0, priv->interface,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 (char*) &latency, 1, WDR_TIMEOUT);
David Brownell5c09d142006-10-13 15:57:58 -0700870
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 if (rv < 0) {
Joe Perches898eb712007-10-18 03:06:30 -0700872 dev_err(dev, "Unable to read latency timer: %i\n", rv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 return -EIO;
874 }
875 return sprintf(buf, "%i\n", latency);
876}
877
878/* Write a new value of the latency timer, in units of milliseconds. */
Yani Ioannou060b8842005-05-17 06:44:04 -0400879static ssize_t store_latency_timer(struct device *dev, struct device_attribute *attr, const char *valbuf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 size_t count)
881{
882 struct usb_serial_port *port = to_usb_serial_port(dev);
883 struct ftdi_private *priv = usb_get_serial_port_data(port);
Jim Radford12bdbe02007-02-28 10:10:50 -0800884 struct usb_device *udev = port->serial->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 char buf[1];
886 int v = simple_strtoul(valbuf, NULL, 10);
887 int rv = 0;
David Brownell5c09d142006-10-13 15:57:58 -0700888
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 dbg("%s: setting latency timer = %i", __FUNCTION__, v);
David Brownell5c09d142006-10-13 15:57:58 -0700890
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 rv = usb_control_msg(udev,
892 usb_sndctrlpipe(udev, 0),
893 FTDI_SIO_SET_LATENCY_TIMER_REQUEST,
894 FTDI_SIO_SET_LATENCY_TIMER_REQUEST_TYPE,
David Brownell5c09d142006-10-13 15:57:58 -0700895 v, priv->interface,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 buf, 0, WDR_TIMEOUT);
David Brownell5c09d142006-10-13 15:57:58 -0700897
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 if (rv < 0) {
Joe Perches898eb712007-10-18 03:06:30 -0700899 dev_err(dev, "Unable to write latency timer: %i\n", rv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 return -EIO;
901 }
David Brownell5c09d142006-10-13 15:57:58 -0700902
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 return count;
904}
905
906/* Write an event character directly to the FTDI register. The ASCII
907 value is in the low 8 bits, with the enable bit in the 9th bit. */
Yani Ioannou060b8842005-05-17 06:44:04 -0400908static ssize_t store_event_char(struct device *dev, struct device_attribute *attr, const char *valbuf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 size_t count)
910{
911 struct usb_serial_port *port = to_usb_serial_port(dev);
912 struct ftdi_private *priv = usb_get_serial_port_data(port);
Jim Radford12bdbe02007-02-28 10:10:50 -0800913 struct usb_device *udev = port->serial->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 char buf[1];
915 int v = simple_strtoul(valbuf, NULL, 10);
916 int rv = 0;
David Brownell5c09d142006-10-13 15:57:58 -0700917
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 dbg("%s: setting event char = %i", __FUNCTION__, v);
David Brownell5c09d142006-10-13 15:57:58 -0700919
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 rv = usb_control_msg(udev,
921 usb_sndctrlpipe(udev, 0),
922 FTDI_SIO_SET_EVENT_CHAR_REQUEST,
923 FTDI_SIO_SET_EVENT_CHAR_REQUEST_TYPE,
David Brownell5c09d142006-10-13 15:57:58 -0700924 v, priv->interface,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 buf, 0, WDR_TIMEOUT);
David Brownell5c09d142006-10-13 15:57:58 -0700926
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 if (rv < 0) {
928 dbg("Unable to write event character: %i", rv);
929 return -EIO;
930 }
David Brownell5c09d142006-10-13 15:57:58 -0700931
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 return count;
933}
934
935static DEVICE_ATTR(latency_timer, S_IWUSR | S_IRUGO, show_latency_timer, store_latency_timer);
936static DEVICE_ATTR(event_char, S_IWUSR, NULL, store_event_char);
937
Jim Radford12bdbe02007-02-28 10:10:50 -0800938static int create_sysfs_attrs(struct usb_serial_port *port)
Greg Kroah-Hartman13f4db92006-08-28 11:43:25 -0700939{
Jim Radford12bdbe02007-02-28 10:10:50 -0800940 struct ftdi_private *priv = usb_get_serial_port_data(port);
Greg Kroah-Hartman13f4db92006-08-28 11:43:25 -0700941 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942
943 dbg("%s",__FUNCTION__);
Greg Kroah-Hartman13f4db92006-08-28 11:43:25 -0700944
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 /* XXX I've no idea if the original SIO supports the event_char
946 * sysfs parameter, so I'm playing it safe. */
947 if (priv->chip_type != SIO) {
948 dbg("sysfs attributes for %s", ftdi_chip_name[priv->chip_type]);
Jim Radford12bdbe02007-02-28 10:10:50 -0800949 retval = device_create_file(&port->dev, &dev_attr_event_char);
Greg Kroah-Hartman13f4db92006-08-28 11:43:25 -0700950 if ((!retval) &&
Stepan Moskovchenko97cd49e2007-05-09 14:53:04 -0400951 (priv->chip_type == FT232BM ||
952 priv->chip_type == FT2232C ||
953 priv->chip_type == FT232RL)) {
Jim Radford12bdbe02007-02-28 10:10:50 -0800954 retval = device_create_file(&port->dev,
Greg Kroah-Hartman13f4db92006-08-28 11:43:25 -0700955 &dev_attr_latency_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 }
957 }
Greg Kroah-Hartman13f4db92006-08-28 11:43:25 -0700958 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959}
960
Jim Radford12bdbe02007-02-28 10:10:50 -0800961static void remove_sysfs_attrs(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962{
Jim Radford12bdbe02007-02-28 10:10:50 -0800963 struct ftdi_private *priv = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964
David Brownell5c09d142006-10-13 15:57:58 -0700965 dbg("%s",__FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 /* XXX see create_sysfs_attrs */
968 if (priv->chip_type != SIO) {
Jim Radford12bdbe02007-02-28 10:10:50 -0800969 device_remove_file(&port->dev, &dev_attr_event_char);
Andrew M. Bishoped6e5282007-08-21 19:08:56 +0100970 if (priv->chip_type == FT232BM ||
971 priv->chip_type == FT2232C ||
972 priv->chip_type == FT232RL) {
Jim Radford12bdbe02007-02-28 10:10:50 -0800973 device_remove_file(&port->dev, &dev_attr_latency_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 }
975 }
David Brownell5c09d142006-10-13 15:57:58 -0700976
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977}
978
979/*
980 * ***************************************************************************
981 * FTDI driver specific functions
982 * ***************************************************************************
983 */
984
Ian Abbott8f977e42005-06-20 16:45:42 +0100985/* Probe function to check for special devices */
986static int ftdi_sio_probe (struct usb_serial *serial, const struct usb_device_id *id)
987{
Tony Lindgrenfa91d432007-05-04 18:23:24 -0700988 struct ftdi_sio_quirk *quirk = (struct ftdi_sio_quirk *)id->driver_info;
989
990 if (quirk && quirk->probe) {
991 int ret = quirk->probe(serial);
992 if (ret != 0)
993 return ret;
994 }
995
Ian Abbott8f977e42005-06-20 16:45:42 +0100996 usb_set_serial_data(serial, (void *)id->driver_info);
997
Tony Lindgrenfa91d432007-05-04 18:23:24 -0700998 return 0;
Ian Abbott8f977e42005-06-20 16:45:42 +0100999}
1000
Jim Radford12bdbe02007-02-28 10:10:50 -08001001static int ftdi_sio_port_probe(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 struct ftdi_private *priv;
Oliver Neukum0ffbbe22007-07-09 12:03:08 -07001004 struct ftdi_sio_quirk *quirk = usb_get_serial_data(port->serial);
1005
Greg Kroah-Hartman13f4db92006-08-28 11:43:25 -07001006
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 dbg("%s",__FUNCTION__);
1008
Eric Sesterhenn80b6ca42006-02-27 21:29:43 +01001009 priv = kzalloc(sizeof(struct ftdi_private), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 if (!priv){
1011 err("%s- kmalloc(%Zd) failed.", __FUNCTION__, sizeof(struct ftdi_private));
1012 return -ENOMEM;
1013 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014
1015 spin_lock_init(&priv->rx_lock);
Ian Abbott22465402006-06-26 12:59:17 +01001016 spin_lock_init(&priv->tx_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 init_waitqueue_head(&priv->delta_msr_wait);
1018 /* This will push the characters through immediately rather
1019 than queue a task to deliver them */
1020 priv->flags = ASYNC_LOW_LATENCY;
1021
Oliver Neukum0ffbbe22007-07-09 12:03:08 -07001022 if (quirk && quirk->port_probe)
1023 quirk->port_probe(priv);
1024
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 /* Increase the size of read buffers */
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -07001026 kfree(port->bulk_in_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 port->bulk_in_buffer = kmalloc (BUFSZ, GFP_KERNEL);
1028 if (!port->bulk_in_buffer) {
1029 kfree (priv);
1030 return -ENOMEM;
1031 }
1032 if (port->read_urb) {
1033 port->read_urb->transfer_buffer = port->bulk_in_buffer;
1034 port->read_urb->transfer_buffer_length = BUFSZ;
1035 }
1036
David Howellsc4028952006-11-22 14:57:56 +00001037 INIT_DELAYED_WORK(&priv->rx_work, ftdi_process_read);
1038 priv->port = port;
Ian Abbott76854ce2005-06-02 10:34:11 +01001039
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 /* Free port's existing write urb and transfer buffer. */
1041 if (port->write_urb) {
1042 usb_free_urb (port->write_urb);
1043 port->write_urb = NULL;
1044 }
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -07001045 kfree(port->bulk_out_buffer);
1046 port->bulk_out_buffer = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047
Jim Radford12bdbe02007-02-28 10:10:50 -08001048 usb_set_serial_port_data(port, priv);
Ian Abbott8f977e42005-06-20 16:45:42 +01001049
Jim Radford12bdbe02007-02-28 10:10:50 -08001050 ftdi_determine_type (port);
1051 create_sysfs_attrs(port);
1052 return 0;
1053}
Ian Abbott8f977e42005-06-20 16:45:42 +01001054
Ian Abbott8f977e42005-06-20 16:45:42 +01001055/* Setup for the USB-UIRT device, which requires hardwired
1056 * baudrate (38400 gets mapped to 312500) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057/* Called from usbserial:serial_probe */
Oliver Neukum0ffbbe22007-07-09 12:03:08 -07001058static void ftdi_USB_UIRT_setup (struct ftdi_private *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 dbg("%s",__FUNCTION__);
1061
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 priv->flags |= ASYNC_SPD_CUST;
1063 priv->custom_divisor = 77;
Alan Cox669a6db2007-10-18 01:24:24 -07001064 priv->force_baud = 38400;
Ian Abbott8f977e42005-06-20 16:45:42 +01001065} /* ftdi_USB_UIRT_setup */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066
Ian Abbott8f977e42005-06-20 16:45:42 +01001067/* Setup for the HE-TIRA1 device, which requires hardwired
1068 * baudrate (38400 gets mapped to 100000) and RTS-CTS enabled. */
Oliver Neukum0ffbbe22007-07-09 12:03:08 -07001069static void ftdi_HE_TIRA1_setup (struct ftdi_private *priv)
Ian Abbott8f977e42005-06-20 16:45:42 +01001070{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 dbg("%s",__FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 priv->flags |= ASYNC_SPD_CUST;
1074 priv->custom_divisor = 240;
Alan Cox669a6db2007-10-18 01:24:24 -07001075 priv->force_baud = 38400;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 priv->force_rtscts = 1;
Ian Abbott8f977e42005-06-20 16:45:42 +01001077} /* ftdi_HE_TIRA1_setup */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078
Tony Lindgrenfa91d432007-05-04 18:23:24 -07001079/*
Harald Welte20734342008-01-01 15:08:35 +01001080 * First port on JTAG adaptors such as Olimex arm-usb-ocd or the FIC/OpenMoko
1081 * Neo1973 Debug Board is reserved for JTAG interface and can be accessed from
1082 * userspace using openocd.
Tony Lindgrenfa91d432007-05-04 18:23:24 -07001083 */
Harald Welte20734342008-01-01 15:08:35 +01001084static int ftdi_jtag_probe(struct usb_serial *serial)
Tony Lindgrenfa91d432007-05-04 18:23:24 -07001085{
1086 struct usb_device *udev = serial->dev;
1087 struct usb_interface *interface = serial->interface;
1088
1089 dbg("%s",__FUNCTION__);
1090
1091 if (interface == udev->actconfig->interface[0]) {
Harald Welte20734342008-01-01 15:08:35 +01001092 info("Ignoring serial port reserved for JTAG");
Tony Lindgrenfa91d432007-05-04 18:23:24 -07001093 return -ENODEV;
1094 }
1095
1096 return 0;
1097}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098
Kevin Vance546d7ee2008-03-01 13:49:59 -05001099/*
1100 * The Matrix Orbital VK204-25-USB has an invalid IN endpoint.
1101 * We have to correct it if we want to read from it.
1102 */
1103static int ftdi_mtxorb_hack_setup(struct usb_serial *serial)
1104{
1105 struct usb_host_endpoint *ep = serial->dev->ep_in[1];
1106 struct usb_endpoint_descriptor *ep_desc = &ep->desc;
1107
1108 if (ep->enabled && ep_desc->wMaxPacketSize == 0) {
1109 ep_desc->wMaxPacketSize = 0x40;
1110 info("Fixing invalid wMaxPacketSize on read pipe");
1111 }
1112
1113 return 0;
1114}
1115
David Brownell5c09d142006-10-13 15:57:58 -07001116/* ftdi_shutdown is called from usbserial:usb_serial_disconnect
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 * it is called when the usb device is disconnected
1118 *
1119 * usbserial:usb_serial_disconnect
1120 * calls __serial_close for each open of the port
1121 * shutdown is called then (ie ftdi_shutdown)
1122 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123static void ftdi_shutdown (struct usb_serial *serial)
Jim Radford12bdbe02007-02-28 10:10:50 -08001124{
1125 dbg("%s", __FUNCTION__);
1126}
David Brownell5c09d142006-10-13 15:57:58 -07001127
Jim Radford12bdbe02007-02-28 10:10:50 -08001128static int ftdi_sio_port_remove(struct usb_serial_port *port)
1129{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 struct ftdi_private *priv = usb_get_serial_port_data(port);
1131
1132 dbg("%s", __FUNCTION__);
1133
Jim Radford12bdbe02007-02-28 10:10:50 -08001134 remove_sysfs_attrs(port);
David Brownell5c09d142006-10-13 15:57:58 -07001135
1136 /* all open ports are closed at this point
1137 * (by usbserial.c:__serial_close, which calls ftdi_close)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 */
1139
1140 if (priv) {
1141 usb_set_serial_port_data(port, NULL);
1142 kfree(priv);
1143 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144
Jim Radford12bdbe02007-02-28 10:10:50 -08001145 return 0;
1146}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147
1148static int ftdi_open (struct usb_serial_port *port, struct file *filp)
1149{ /* ftdi_open */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 struct usb_device *dev = port->serial->dev;
1151 struct ftdi_private *priv = usb_get_serial_port_data(port);
1152 unsigned long flags;
David Brownell5c09d142006-10-13 15:57:58 -07001153
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 int result = 0;
1155 char buf[1]; /* Needed for the usb_control_msg I think */
1156
1157 dbg("%s", __FUNCTION__);
1158
Ian Abbott22465402006-06-26 12:59:17 +01001159 spin_lock_irqsave(&priv->tx_lock, flags);
1160 priv->tx_bytes = 0;
1161 spin_unlock_irqrestore(&priv->tx_lock, flags);
1162 spin_lock_irqsave(&priv->rx_lock, flags);
1163 priv->rx_bytes = 0;
1164 spin_unlock_irqrestore(&priv->rx_lock, flags);
1165
Guennadi Liakhovetski57845bd2006-04-13 22:27:12 +02001166 if (port->tty)
1167 port->tty->low_latency = (priv->flags & ASYNC_LOW_LATENCY) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168
1169 /* No error checking for this (will get errors later anyway) */
1170 /* See ftdi_sio.h for description of what is reset */
1171 usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
David Brownell5c09d142006-10-13 15:57:58 -07001172 FTDI_SIO_RESET_REQUEST, FTDI_SIO_RESET_REQUEST_TYPE,
1173 FTDI_SIO_RESET_SIO,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 priv->interface, buf, 0, WDR_TIMEOUT);
1175
1176 /* Termios defaults are set by usb_serial_init. We don't change
1177 port->tty->termios - this would loose speed settings, etc.
1178 This is same behaviour as serial.c/rs_open() - Kuba */
1179
1180 /* ftdi_set_termios will send usb control messages */
Guennadi Liakhovetski57845bd2006-04-13 22:27:12 +02001181 if (port->tty)
Alan Cox669a6db2007-10-18 01:24:24 -07001182 ftdi_set_termios(port, port->tty->termios);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183
1184 /* FIXME: Flow control might be enabled, so it should be checked -
1185 we have no control of defaults! */
1186 /* Turn on RTS and DTR since we are not flow controlling by default */
Ian Abbott74ede0f2005-07-29 12:16:41 -07001187 set_mctrl(port, TIOCM_DTR | TIOCM_RTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188
1189 /* Not throttled */
1190 spin_lock_irqsave(&priv->rx_lock, flags);
1191 priv->rx_flags &= ~(THROTTLED | ACTUALLY_THROTTLED);
1192 spin_unlock_irqrestore(&priv->rx_lock, flags);
1193
1194 /* Start reading from the device */
Ian Abbott76854ce2005-06-02 10:34:11 +01001195 priv->rx_processed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 usb_fill_bulk_urb(port->read_urb, dev,
1197 usb_rcvbulkpipe(dev, port->bulk_in_endpointAddress),
1198 port->read_urb->transfer_buffer, port->read_urb->transfer_buffer_length,
1199 ftdi_read_bulk_callback, port);
1200 result = usb_submit_urb(port->read_urb, GFP_KERNEL);
1201 if (result)
1202 err("%s - failed submitting read urb, error %d", __FUNCTION__, result);
1203
1204
1205 return result;
1206} /* ftdi_open */
1207
1208
1209
David Brownell5c09d142006-10-13 15:57:58 -07001210/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 * usbserial:__serial_close only calls ftdi_close if the point is open
1212 *
1213 * This only gets called when it is the last close
David Brownell5c09d142006-10-13 15:57:58 -07001214 *
1215 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 */
1217
1218static void ftdi_close (struct usb_serial_port *port, struct file *filp)
1219{ /* ftdi_close */
1220 unsigned int c_cflag = port->tty->termios->c_cflag;
1221 struct ftdi_private *priv = usb_get_serial_port_data(port);
1222 char buf[1];
1223
1224 dbg("%s", __FUNCTION__);
1225
Oliver Neukum95bef012008-01-22 13:56:18 +01001226 mutex_lock(&port->serial->disc_mutex);
1227 if (c_cflag & HUPCL && !port->serial->disconnected){
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 /* Disable flow control */
David Brownell5c09d142006-10-13 15:57:58 -07001229 if (usb_control_msg(port->serial->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 usb_sndctrlpipe(port->serial->dev, 0),
1231 FTDI_SIO_SET_FLOW_CTRL_REQUEST,
1232 FTDI_SIO_SET_FLOW_CTRL_REQUEST_TYPE,
1233 0, priv->interface, buf, 0,
1234 WDR_TIMEOUT) < 0) {
1235 err("error from flowcontrol urb");
David Brownell5c09d142006-10-13 15:57:58 -07001236 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237
Ian Abbott74ede0f2005-07-29 12:16:41 -07001238 /* drop RTS and DTR */
1239 clear_mctrl(port, TIOCM_DTR | TIOCM_RTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 } /* Note change no line if hupcl is off */
Oliver Neukum95bef012008-01-22 13:56:18 +01001241 mutex_unlock(&port->serial->disc_mutex);
Ian Abbott76854ce2005-06-02 10:34:11 +01001242
1243 /* cancel any scheduled reading */
1244 cancel_delayed_work(&priv->rx_work);
1245 flush_scheduled_work();
David Brownell5c09d142006-10-13 15:57:58 -07001246
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 /* shutdown our bulk read */
Mariusz Kozlowski794c9442006-11-08 15:36:25 +01001248 usb_kill_urb(port->read_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249} /* ftdi_close */
1250
1251
David Brownell5c09d142006-10-13 15:57:58 -07001252
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253/* The SIO requires the first byte to have:
1254 * B0 1
1255 * B1 0
1256 * B2..7 length of message excluding byte 0
1257 *
1258 * The new devices do not require this byte
1259 */
1260static int ftdi_write (struct usb_serial_port *port,
1261 const unsigned char *buf, int count)
1262{ /* ftdi_write */
1263 struct ftdi_private *priv = usb_get_serial_port_data(port);
1264 struct urb *urb;
1265 unsigned char *buffer;
1266 int data_offset ; /* will be 1 for the SIO and 0 otherwise */
1267 int status;
1268 int transfer_size;
Ian Abbott22465402006-06-26 12:59:17 +01001269 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270
1271 dbg("%s port %d, %d bytes", __FUNCTION__, port->number, count);
1272
1273 if (count == 0) {
1274 dbg("write request of 0 bytes");
1275 return 0;
1276 }
Ian Abbott22465402006-06-26 12:59:17 +01001277 spin_lock_irqsave(&priv->tx_lock, flags);
1278 if (priv->tx_outstanding_urbs > URB_UPPER_LIMIT) {
1279 spin_unlock_irqrestore(&priv->tx_lock, flags);
1280 dbg("%s - write limit hit\n", __FUNCTION__);
1281 return 0;
1282 }
Oliver Neukum62127a52007-03-23 14:30:16 +01001283 priv->tx_outstanding_urbs++;
Ian Abbott22465402006-06-26 12:59:17 +01001284 spin_unlock_irqrestore(&priv->tx_lock, flags);
David Brownell5c09d142006-10-13 15:57:58 -07001285
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 data_offset = priv->write_offset;
1287 dbg("data_offset set to %d",data_offset);
1288
1289 /* Determine total transfer size */
1290 transfer_size = count;
1291 if (data_offset > 0) {
1292 /* Original sio needs control bytes too... */
1293 transfer_size += (data_offset *
1294 ((count + (PKTSZ - 1 - data_offset)) /
1295 (PKTSZ - data_offset)));
1296 }
1297
1298 buffer = kmalloc (transfer_size, GFP_ATOMIC);
1299 if (!buffer) {
1300 err("%s ran out of kernel memory for urb ...", __FUNCTION__);
Oliver Neukum62127a52007-03-23 14:30:16 +01001301 count = -ENOMEM;
1302 goto error_no_buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 }
1304
1305 urb = usb_alloc_urb(0, GFP_ATOMIC);
1306 if (!urb) {
1307 err("%s - no more free urbs", __FUNCTION__);
Oliver Neukum62127a52007-03-23 14:30:16 +01001308 count = -ENOMEM;
1309 goto error_no_urb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 }
1311
1312 /* Copy data */
1313 if (data_offset > 0) {
1314 /* Original sio requires control byte at start of each packet. */
1315 int user_pktsz = PKTSZ - data_offset;
1316 int todo = count;
1317 unsigned char *first_byte = buffer;
1318 const unsigned char *current_position = buf;
1319
1320 while (todo > 0) {
1321 if (user_pktsz > todo) {
1322 user_pktsz = todo;
1323 }
1324 /* Write the control byte at the front of the packet*/
David Brownell5c09d142006-10-13 15:57:58 -07001325 *first_byte = 1 | ((user_pktsz) << 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 /* Copy data for packet */
1327 memcpy (first_byte + data_offset,
1328 current_position, user_pktsz);
1329 first_byte += user_pktsz + data_offset;
1330 current_position += user_pktsz;
1331 todo -= user_pktsz;
1332 }
1333 } else {
1334 /* No control byte required. */
1335 /* Copy in the data to send */
1336 memcpy (buffer, buf, count);
1337 }
1338
1339 usb_serial_debug_data(debug, &port->dev, __FUNCTION__, transfer_size, buffer);
1340
1341 /* fill the buffer and send it */
David Brownell5c09d142006-10-13 15:57:58 -07001342 usb_fill_bulk_urb(urb, port->serial->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 usb_sndbulkpipe(port->serial->dev, port->bulk_out_endpointAddress),
1344 buffer, transfer_size,
1345 ftdi_write_bulk_callback, port);
1346
1347 status = usb_submit_urb(urb, GFP_ATOMIC);
1348 if (status) {
1349 err("%s - failed submitting write urb, error %d", __FUNCTION__, status);
1350 count = status;
Oliver Neukum62127a52007-03-23 14:30:16 +01001351 goto error;
Ian Abbott22465402006-06-26 12:59:17 +01001352 } else {
1353 spin_lock_irqsave(&priv->tx_lock, flags);
Ian Abbott22465402006-06-26 12:59:17 +01001354 priv->tx_outstanding_bytes += count;
1355 priv->tx_bytes += count;
1356 spin_unlock_irqrestore(&priv->tx_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 }
1358
1359 /* we are done with this urb, so let the host driver
1360 * really free it when it is finished with it */
Oliver Neukum62127a52007-03-23 14:30:16 +01001361 usb_free_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362
1363 dbg("%s write returning: %d", __FUNCTION__, count);
1364 return count;
Oliver Neukum62127a52007-03-23 14:30:16 +01001365error:
1366 usb_free_urb(urb);
1367error_no_urb:
1368 kfree (buffer);
1369error_no_buffer:
1370 spin_lock_irqsave(&priv->tx_lock, flags);
1371 priv->tx_outstanding_urbs--;
1372 spin_unlock_irqrestore(&priv->tx_lock, flags);
1373 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374} /* ftdi_write */
1375
1376
1377/* This function may get called when the device is closed */
1378
David Howells7d12e782006-10-05 14:55:46 +01001379static void ftdi_write_bulk_callback (struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380{
Ian Abbott22465402006-06-26 12:59:17 +01001381 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 struct usb_serial_port *port = (struct usb_serial_port *)urb->context;
Ian Abbott22465402006-06-26 12:59:17 +01001383 struct ftdi_private *priv;
1384 int data_offset; /* will be 1 for the SIO and 0 otherwise */
1385 unsigned long countback;
Greg Kroah-Hartman0fb0aa12007-06-15 15:44:13 -07001386 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387
1388 /* free up the transfer buffer, as usb_free_urb() does not do this */
1389 kfree (urb->transfer_buffer);
1390
1391 dbg("%s - port %d", __FUNCTION__, port->number);
David Brownell5c09d142006-10-13 15:57:58 -07001392
Greg Kroah-Hartman0fb0aa12007-06-15 15:44:13 -07001393 if (status) {
1394 dbg("nonzero write bulk status received: %d", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 return;
1396 }
1397
Ian Abbott22465402006-06-26 12:59:17 +01001398 priv = usb_get_serial_port_data(port);
1399 if (!priv) {
1400 dbg("%s - bad port private data pointer - exiting", __FUNCTION__);
1401 return;
1402 }
1403 /* account for transferred data */
1404 countback = urb->actual_length;
1405 data_offset = priv->write_offset;
1406 if (data_offset > 0) {
1407 /* Subtract the control bytes */
1408 countback -= (data_offset * ((countback + (PKTSZ - 1)) / PKTSZ));
1409 }
1410 spin_lock_irqsave(&priv->tx_lock, flags);
1411 --priv->tx_outstanding_urbs;
1412 priv->tx_outstanding_bytes -= countback;
1413 spin_unlock_irqrestore(&priv->tx_lock, flags);
1414
Pete Zaitcevcf2c7482006-05-22 21:58:49 -07001415 usb_serial_port_softint(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416} /* ftdi_write_bulk_callback */
1417
1418
1419static int ftdi_write_room( struct usb_serial_port *port )
1420{
Ian Abbott22465402006-06-26 12:59:17 +01001421 struct ftdi_private *priv = usb_get_serial_port_data(port);
1422 int room;
1423 unsigned long flags;
1424
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 dbg("%s - port %d", __FUNCTION__, port->number);
1426
Ian Abbott22465402006-06-26 12:59:17 +01001427 spin_lock_irqsave(&priv->tx_lock, flags);
1428 if (priv->tx_outstanding_urbs < URB_UPPER_LIMIT) {
1429 /*
1430 * We really can take anything the user throws at us
1431 * but let's pick a nice big number to tell the tty
1432 * layer that we have lots of free space
1433 */
1434 room = 2048;
1435 } else {
1436 room = 0;
1437 }
1438 spin_unlock_irqrestore(&priv->tx_lock, flags);
1439 return room;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440} /* ftdi_write_room */
1441
1442
1443static int ftdi_chars_in_buffer (struct usb_serial_port *port)
1444{ /* ftdi_chars_in_buffer */
Ian Abbott22465402006-06-26 12:59:17 +01001445 struct ftdi_private *priv = usb_get_serial_port_data(port);
1446 int buffered;
1447 unsigned long flags;
1448
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 dbg("%s - port %d", __FUNCTION__, port->number);
1450
Ian Abbott22465402006-06-26 12:59:17 +01001451 spin_lock_irqsave(&priv->tx_lock, flags);
1452 buffered = (int)priv->tx_outstanding_bytes;
1453 spin_unlock_irqrestore(&priv->tx_lock, flags);
1454 if (buffered < 0) {
1455 err("%s outstanding tx bytes is negative!", __FUNCTION__);
1456 buffered = 0;
1457 }
1458 return buffered;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459} /* ftdi_chars_in_buffer */
1460
1461
1462
David Howells7d12e782006-10-05 14:55:46 +01001463static void ftdi_read_bulk_callback (struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464{ /* ftdi_read_bulk_callback */
1465 struct usb_serial_port *port = (struct usb_serial_port *)urb->context;
1466 struct tty_struct *tty;
1467 struct ftdi_private *priv;
Ian Abbott22465402006-06-26 12:59:17 +01001468 unsigned long countread;
1469 unsigned long flags;
Greg Kroah-Hartman0fb0aa12007-06-15 15:44:13 -07001470 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471
1472 if (urb->number_of_packets > 0) {
1473 err("%s transfer_buffer_length %d actual_length %d number of packets %d",__FUNCTION__,
1474 urb->transfer_buffer_length, urb->actual_length, urb->number_of_packets );
1475 err("%s transfer_flags %x ", __FUNCTION__,urb->transfer_flags );
1476 }
1477
1478 dbg("%s - port %d", __FUNCTION__, port->number);
1479
1480 if (port->open_count <= 0)
1481 return;
1482
1483 tty = port->tty;
1484 if (!tty) {
1485 dbg("%s - bad tty pointer - exiting",__FUNCTION__);
1486 return;
1487 }
1488
1489 priv = usb_get_serial_port_data(port);
1490 if (!priv) {
1491 dbg("%s - bad port private data pointer - exiting", __FUNCTION__);
1492 return;
1493 }
1494
1495 if (urb != port->read_urb) {
1496 err("%s - Not my urb!", __FUNCTION__);
1497 }
1498
Greg Kroah-Hartman0fb0aa12007-06-15 15:44:13 -07001499 if (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 /* This will happen at close every time so it is a dbg not an err */
Greg Kroah-Hartman0fb0aa12007-06-15 15:44:13 -07001501 dbg("(this is ok on close) nonzero read bulk status received: "
1502 "%d", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 return;
1504 }
1505
Ian Abbott22465402006-06-26 12:59:17 +01001506 /* count data bytes, but not status bytes */
1507 countread = urb->actual_length;
1508 countread -= 2 * ((countread + (PKTSZ - 1)) / PKTSZ);
1509 spin_lock_irqsave(&priv->rx_lock, flags);
1510 priv->rx_bytes += countread;
1511 spin_unlock_irqrestore(&priv->rx_lock, flags);
1512
David Howellsc4028952006-11-22 14:57:56 +00001513 ftdi_process_read(&priv->rx_work.work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514
1515} /* ftdi_read_bulk_callback */
1516
1517
David Howellsc4028952006-11-22 14:57:56 +00001518static void ftdi_process_read (struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519{ /* ftdi_process_read */
David Howellsc4028952006-11-22 14:57:56 +00001520 struct ftdi_private *priv =
1521 container_of(work, struct ftdi_private, rx_work.work);
1522 struct usb_serial_port *port = priv->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 struct urb *urb;
1524 struct tty_struct *tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 char error_flag;
David Brownell5c09d142006-10-13 15:57:58 -07001526 unsigned char *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527
1528 int i;
1529 int result;
1530 int need_flip;
1531 int packet_offset;
Ian Abbott76854ce2005-06-02 10:34:11 +01001532 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533
1534 dbg("%s - port %d", __FUNCTION__, port->number);
1535
1536 if (port->open_count <= 0)
1537 return;
1538
1539 tty = port->tty;
1540 if (!tty) {
1541 dbg("%s - bad tty pointer - exiting",__FUNCTION__);
1542 return;
1543 }
1544
1545 priv = usb_get_serial_port_data(port);
1546 if (!priv) {
1547 dbg("%s - bad port private data pointer - exiting", __FUNCTION__);
1548 return;
1549 }
1550
1551 urb = port->read_urb;
1552 if (!urb) {
1553 dbg("%s - bad read_urb pointer - exiting", __FUNCTION__);
1554 return;
1555 }
1556
1557 data = urb->transfer_buffer;
1558
Ian Abbott76854ce2005-06-02 10:34:11 +01001559 if (priv->rx_processed) {
1560 dbg("%s - already processed: %d bytes, %d remain", __FUNCTION__,
1561 priv->rx_processed,
1562 urb->actual_length - priv->rx_processed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 } else {
Ian Abbott76854ce2005-06-02 10:34:11 +01001564 /* The first two bytes of every read packet are status */
1565 if (urb->actual_length > 2) {
1566 usb_serial_debug_data(debug, &port->dev, __FUNCTION__, urb->actual_length, data);
1567 } else {
1568 dbg("Status only: %03oo %03oo",data[0],data[1]);
1569 }
1570 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571
1572
1573 /* TO DO -- check for hung up line and handle appropriately: */
1574 /* send hangup */
1575 /* See acm.c - you do a tty_hangup - eg tty_hangup(tty) */
1576 /* if CD is dropped and the line is not CLOCAL then we should hangup */
1577
1578 need_flip = 0;
Ian Abbott76854ce2005-06-02 10:34:11 +01001579 for (packet_offset = priv->rx_processed; packet_offset < urb->actual_length; packet_offset += PKTSZ) {
1580 int length;
1581
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 /* Compare new line status to the old one, signal if different */
Ian Abbott76854ce2005-06-02 10:34:11 +01001583 /* N.B. packet may be processed more than once, but differences
1584 * are only processed once. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 if (priv != NULL) {
1586 char new_status = data[packet_offset+0] & FTDI_STATUS_B0_MASK;
1587 if (new_status != priv->prev_status) {
1588 priv->diff_status |= new_status ^ priv->prev_status;
1589 wake_up_interruptible(&priv->delta_msr_wait);
1590 priv->prev_status = new_status;
1591 }
1592 }
1593
Ian Abbott76854ce2005-06-02 10:34:11 +01001594 length = min(PKTSZ, urb->actual_length-packet_offset)-2;
1595 if (length < 0) {
1596 err("%s - bad packet length: %d", __FUNCTION__, length+2);
1597 length = 0;
1598 }
1599
Ian Abbott76854ce2005-06-02 10:34:11 +01001600 if (priv->rx_flags & THROTTLED) {
1601 dbg("%s - throttled", __FUNCTION__);
1602 break;
1603 }
Alan Cox33f0f882006-01-09 20:54:13 -08001604 if (tty_buffer_request_room(tty, length) < length) {
Ian Abbott76854ce2005-06-02 10:34:11 +01001605 /* break out & wait for throttling/unthrottling to happen */
1606 dbg("%s - receive room low", __FUNCTION__);
1607 break;
1608 }
1609
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 /* Handle errors and break */
1611 error_flag = TTY_NORMAL;
1612 /* Although the device uses a bitmask and hence can have multiple */
1613 /* errors on a packet - the order here sets the priority the */
1614 /* error is returned to the tty layer */
1615
1616 if ( data[packet_offset+1] & FTDI_RS_OE ) {
1617 error_flag = TTY_OVERRUN;
1618 dbg("OVERRRUN error");
1619 }
1620 if ( data[packet_offset+1] & FTDI_RS_BI ) {
1621 error_flag = TTY_BREAK;
1622 dbg("BREAK received");
1623 }
1624 if ( data[packet_offset+1] & FTDI_RS_PE ) {
1625 error_flag = TTY_PARITY;
1626 dbg("PARITY error");
1627 }
1628 if ( data[packet_offset+1] & FTDI_RS_FE ) {
1629 error_flag = TTY_FRAME;
1630 dbg("FRAMING error");
1631 }
Ian Abbott76854ce2005-06-02 10:34:11 +01001632 if (length > 0) {
1633 for (i = 2; i < length+2; i++) {
David Brownell5c09d142006-10-13 15:57:58 -07001634 /* Note that the error flag is duplicated for
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 every character received since we don't know
1636 which character it applied to */
1637 tty_insert_flip_char(tty, data[packet_offset+i], error_flag);
1638 }
1639 need_flip = 1;
1640 }
1641
1642#ifdef NOT_CORRECT_BUT_KEEPING_IT_FOR_NOW
1643 /* if a parity error is detected you get status packets forever
1644 until a character is sent without a parity error.
1645 This doesn't work well since the application receives a never
1646 ending stream of bad data - even though new data hasn't been sent.
1647 Therefore I (bill) have taken this out.
David Brownell5c09d142006-10-13 15:57:58 -07001648 However - this might make sense for framing errors and so on
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 so I am leaving the code in for now.
1650 */
1651 else {
1652 if (error_flag != TTY_NORMAL){
1653 dbg("error_flag is not normal");
1654 /* In this case it is just status - if that is an error send a bad character */
1655 if(tty->flip.count >= TTY_FLIPBUF_SIZE) {
1656 tty_flip_buffer_push(tty);
1657 }
1658 tty_insert_flip_char(tty, 0xff, error_flag);
1659 need_flip = 1;
1660 }
1661 }
1662#endif
1663 } /* "for(packet_offset=0..." */
1664
1665 /* Low latency */
1666 if (need_flip) {
1667 tty_flip_buffer_push(tty);
1668 }
1669
Ian Abbott76854ce2005-06-02 10:34:11 +01001670 if (packet_offset < urb->actual_length) {
1671 /* not completely processed - record progress */
1672 priv->rx_processed = packet_offset;
1673 dbg("%s - incomplete, %d bytes processed, %d remain",
1674 __FUNCTION__, packet_offset,
1675 urb->actual_length - packet_offset);
1676 /* check if we were throttled while processing */
1677 spin_lock_irqsave(&priv->rx_lock, flags);
1678 if (priv->rx_flags & THROTTLED) {
1679 priv->rx_flags |= ACTUALLY_THROTTLED;
1680 spin_unlock_irqrestore(&priv->rx_lock, flags);
1681 dbg("%s - deferring remainder until unthrottled",
1682 __FUNCTION__);
1683 return;
1684 }
1685 spin_unlock_irqrestore(&priv->rx_lock, flags);
1686 /* if the port is closed stop trying to read */
1687 if (port->open_count > 0){
1688 /* delay processing of remainder */
1689 schedule_delayed_work(&priv->rx_work, 1);
1690 } else {
1691 dbg("%s - port is closed", __FUNCTION__);
1692 }
1693 return;
1694 }
1695
1696 /* urb is completely processed */
1697 priv->rx_processed = 0;
1698
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 /* if the port is closed stop trying to read */
1700 if (port->open_count > 0){
1701 /* Continue trying to always read */
David Brownell5c09d142006-10-13 15:57:58 -07001702 usb_fill_bulk_urb(port->read_urb, port->serial->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 usb_rcvbulkpipe(port->serial->dev, port->bulk_in_endpointAddress),
1704 port->read_urb->transfer_buffer, port->read_urb->transfer_buffer_length,
1705 ftdi_read_bulk_callback, port);
1706
1707 result = usb_submit_urb(port->read_urb, GFP_ATOMIC);
1708 if (result)
1709 err("%s - failed resubmitting read urb, error %d", __FUNCTION__, result);
1710 }
1711
1712 return;
1713} /* ftdi_process_read */
1714
1715
1716static void ftdi_break_ctl( struct usb_serial_port *port, int break_state )
1717{
1718 struct ftdi_private *priv = usb_get_serial_port_data(port);
David Brownell5c09d142006-10-13 15:57:58 -07001719 __u16 urb_value = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 char buf[1];
David Brownell5c09d142006-10-13 15:57:58 -07001721
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 /* break_state = -1 to turn on break, and 0 to turn off break */
1723 /* see drivers/char/tty_io.c to see it used */
1724 /* last_set_data_urb_value NEVER has the break bit set in it */
1725
1726 if (break_state) {
1727 urb_value = priv->last_set_data_urb_value | FTDI_SIO_SET_BREAK;
1728 } else {
David Brownell5c09d142006-10-13 15:57:58 -07001729 urb_value = priv->last_set_data_urb_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 }
1731
David Brownell5c09d142006-10-13 15:57:58 -07001732
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 if (usb_control_msg(port->serial->dev, usb_sndctrlpipe(port->serial->dev, 0),
David Brownell5c09d142006-10-13 15:57:58 -07001734 FTDI_SIO_SET_DATA_REQUEST,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 FTDI_SIO_SET_DATA_REQUEST_TYPE,
1736 urb_value , priv->interface,
1737 buf, 0, WDR_TIMEOUT) < 0) {
1738 err("%s FAILED to enable/disable break state (state was %d)", __FUNCTION__,break_state);
David Brownell5c09d142006-10-13 15:57:58 -07001739 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740
1741 dbg("%s break state is %d - urb is %d", __FUNCTION__,break_state, urb_value);
David Brownell5c09d142006-10-13 15:57:58 -07001742
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743}
1744
1745
1746/* old_termios contains the original termios settings and tty->termios contains
1747 * the new setting to be used
1748 * WARNING: set_termios calls this with old_termios in kernel space
1749 */
1750
Alan Cox606d0992006-12-08 02:38:45 -08001751static void ftdi_set_termios (struct usb_serial_port *port, struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752{ /* ftdi_termios */
1753 struct usb_device *dev = port->serial->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 struct ftdi_private *priv = usb_get_serial_port_data(port);
Alan Cox669a6db2007-10-18 01:24:24 -07001755 struct ktermios *termios = port->tty->termios;
1756 unsigned int cflag = termios->c_cflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 __u16 urb_value; /* will hold the new flags */
1758 char buf[1]; /* Perhaps I should dynamically alloc this? */
David Brownell5c09d142006-10-13 15:57:58 -07001759
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 // Added for xon/xoff support
Alan Cox669a6db2007-10-18 01:24:24 -07001761 unsigned int iflag = termios->c_iflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 unsigned char vstop;
1763 unsigned char vstart;
David Brownell5c09d142006-10-13 15:57:58 -07001764
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 dbg("%s", __FUNCTION__);
1766
1767 /* Force baud rate if this device requires it, unless it is set to B0. */
Alan Cox669a6db2007-10-18 01:24:24 -07001768 if (priv->force_baud && ((termios->c_cflag & CBAUD) != B0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 dbg("%s: forcing baud rate for this device", __FUNCTION__);
Andrew Mortonbd5e47c2007-10-18 01:24:25 -07001770 tty_encode_baud_rate(port->tty, priv->force_baud,
1771 priv->force_baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 }
1773
1774 /* Force RTS-CTS if this device requires it. */
1775 if (priv->force_rtscts) {
1776 dbg("%s: forcing rtscts for this device", __FUNCTION__);
Alan Cox669a6db2007-10-18 01:24:24 -07001777 termios->c_cflag |= CRTSCTS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 }
1779
Alan Cox669a6db2007-10-18 01:24:24 -07001780 cflag = termios->c_cflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781
David Brownell5c09d142006-10-13 15:57:58 -07001782 /* FIXME -For this cut I don't care if the line is really changing or
1783 not - so just do the change regardless - should be able to
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 compare old_termios and tty->termios */
David Brownell5c09d142006-10-13 15:57:58 -07001785 /* NOTE These routines can get interrupted by
1786 ftdi_sio_read_bulk_callback - need to examine what this
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 means - don't see any problems yet */
David Brownell5c09d142006-10-13 15:57:58 -07001788
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 /* Set number of data bits, parity, stop bits */
David Brownell5c09d142006-10-13 15:57:58 -07001790
Alan Cox669a6db2007-10-18 01:24:24 -07001791 termios->c_cflag &= ~CMSPAR;
1792
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 urb_value = 0;
1794 urb_value |= (cflag & CSTOPB ? FTDI_SIO_SET_DATA_STOP_BITS_2 :
1795 FTDI_SIO_SET_DATA_STOP_BITS_1);
David Brownell5c09d142006-10-13 15:57:58 -07001796 urb_value |= (cflag & PARENB ?
1797 (cflag & PARODD ? FTDI_SIO_SET_DATA_PARITY_ODD :
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 FTDI_SIO_SET_DATA_PARITY_EVEN) :
1799 FTDI_SIO_SET_DATA_PARITY_NONE);
1800 if (cflag & CSIZE) {
1801 switch (cflag & CSIZE) {
1802 case CS5: urb_value |= 5; dbg("Setting CS5"); break;
1803 case CS6: urb_value |= 6; dbg("Setting CS6"); break;
1804 case CS7: urb_value |= 7; dbg("Setting CS7"); break;
1805 case CS8: urb_value |= 8; dbg("Setting CS8"); break;
1806 default:
1807 err("CSIZE was set but not CS5-CS8");
1808 }
1809 }
1810
1811 /* This is needed by the break command since it uses the same command - but is
1812 * or'ed with this value */
1813 priv->last_set_data_urb_value = urb_value;
David Brownell5c09d142006-10-13 15:57:58 -07001814
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 if (usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
David Brownell5c09d142006-10-13 15:57:58 -07001816 FTDI_SIO_SET_DATA_REQUEST,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 FTDI_SIO_SET_DATA_REQUEST_TYPE,
1818 urb_value , priv->interface,
Ian Abbott279e1542005-07-29 12:16:52 -07001819 buf, 0, WDR_SHORT_TIMEOUT) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820 err("%s FAILED to set databits/stopbits/parity", __FUNCTION__);
David Brownell5c09d142006-10-13 15:57:58 -07001821 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822
1823 /* Now do the baudrate */
1824 if ((cflag & CBAUD) == B0 ) {
1825 /* Disable flow control */
1826 if (usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
David Brownell5c09d142006-10-13 15:57:58 -07001827 FTDI_SIO_SET_FLOW_CTRL_REQUEST,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 FTDI_SIO_SET_FLOW_CTRL_REQUEST_TYPE,
David Brownell5c09d142006-10-13 15:57:58 -07001829 0, priv->interface,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 buf, 0, WDR_TIMEOUT) < 0) {
1831 err("%s error from disable flowcontrol urb", __FUNCTION__);
David Brownell5c09d142006-10-13 15:57:58 -07001832 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 /* Drop RTS and DTR */
Ian Abbott74ede0f2005-07-29 12:16:41 -07001834 clear_mctrl(port, TIOCM_DTR | TIOCM_RTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 } else {
1836 /* set the baudrate determined before */
1837 if (change_speed(port)) {
Peter Favrholdt72a755f2005-09-22 00:48:49 -07001838 err("%s urb failed to set baudrate", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 }
Peter Favrholdt72a755f2005-09-22 00:48:49 -07001840 /* Ensure RTS and DTR are raised when baudrate changed from 0 */
Guennadi Liakhovetski57845bd2006-04-13 22:27:12 +02001841 if (!old_termios || (old_termios->c_cflag & CBAUD) == B0) {
Peter Favrholdt72a755f2005-09-22 00:48:49 -07001842 set_mctrl(port, TIOCM_DTR | TIOCM_RTS);
1843 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 }
1845
1846 /* Set flow control */
1847 /* Note device also supports DTR/CD (ugh) and Xon/Xoff in hardware */
1848 if (cflag & CRTSCTS) {
1849 dbg("%s Setting to CRTSCTS flow control", __FUNCTION__);
David Brownell5c09d142006-10-13 15:57:58 -07001850 if (usb_control_msg(dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 usb_sndctrlpipe(dev, 0),
David Brownell5c09d142006-10-13 15:57:58 -07001852 FTDI_SIO_SET_FLOW_CTRL_REQUEST,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 FTDI_SIO_SET_FLOW_CTRL_REQUEST_TYPE,
1854 0 , (FTDI_SIO_RTS_CTS_HS | priv->interface),
1855 buf, 0, WDR_TIMEOUT) < 0) {
1856 err("urb failed to set to rts/cts flow control");
David Brownell5c09d142006-10-13 15:57:58 -07001857 }
1858
1859 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 /*
1861 * Xon/Xoff code
1862 *
1863 * Check the IXOFF status in the iflag component of the termios structure
1864 * if IXOFF is not set, the pre-xon/xoff code is executed.
1865 */
1866 if (iflag & IXOFF) {
1867 dbg("%s request to enable xonxoff iflag=%04x",__FUNCTION__,iflag);
1868 // Try to enable the XON/XOFF on the ftdi_sio
1869 // Set the vstart and vstop -- could have been done up above where
1870 // a lot of other dereferencing is done but that would be very
1871 // inefficient as vstart and vstop are not always needed
Alan Cox669a6db2007-10-18 01:24:24 -07001872 vstart = termios->c_cc[VSTART];
1873 vstop = termios->c_cc[VSTOP];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 urb_value=(vstop << 8) | (vstart);
1875
1876 if (usb_control_msg(dev,
1877 usb_sndctrlpipe(dev, 0),
1878 FTDI_SIO_SET_FLOW_CTRL_REQUEST,
1879 FTDI_SIO_SET_FLOW_CTRL_REQUEST_TYPE,
1880 urb_value , (FTDI_SIO_XON_XOFF_HS
1881 | priv->interface),
1882 buf, 0, WDR_TIMEOUT) < 0) {
1883 err("urb failed to set to xon/xoff flow control");
1884 }
1885 } else {
1886 /* else clause to only run if cfag ! CRTSCTS and iflag ! XOFF */
1887 /* CHECKME Assuming XON/XOFF handled by tty stack - not by device */
1888 dbg("%s Turning off hardware flow control", __FUNCTION__);
David Brownell5c09d142006-10-13 15:57:58 -07001889 if (usb_control_msg(dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 usb_sndctrlpipe(dev, 0),
David Brownell5c09d142006-10-13 15:57:58 -07001891 FTDI_SIO_SET_FLOW_CTRL_REQUEST,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 FTDI_SIO_SET_FLOW_CTRL_REQUEST_TYPE,
David Brownell5c09d142006-10-13 15:57:58 -07001893 0, priv->interface,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 buf, 0, WDR_TIMEOUT) < 0) {
1895 err("urb failed to clear flow control");
David Brownell5c09d142006-10-13 15:57:58 -07001896 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 }
David Brownell5c09d142006-10-13 15:57:58 -07001898
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 }
1900 return;
1901} /* ftdi_termios */
1902
1903
1904static int ftdi_tiocmget (struct usb_serial_port *port, struct file *file)
1905{
1906 struct ftdi_private *priv = usb_get_serial_port_data(port);
1907 unsigned char buf[2];
1908 int ret;
1909
1910 dbg("%s TIOCMGET", __FUNCTION__);
1911 switch (priv->chip_type) {
1912 case SIO:
1913 /* Request the status from the device */
David Brownell5c09d142006-10-13 15:57:58 -07001914 if ((ret = usb_control_msg(port->serial->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 usb_rcvctrlpipe(port->serial->dev, 0),
David Brownell5c09d142006-10-13 15:57:58 -07001916 FTDI_SIO_GET_MODEM_STATUS_REQUEST,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 FTDI_SIO_GET_MODEM_STATUS_REQUEST_TYPE,
David Brownell5c09d142006-10-13 15:57:58 -07001918 0, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 buf, 1, WDR_TIMEOUT)) < 0 ) {
1920 err("%s Could not get modem status of device - err: %d", __FUNCTION__,
1921 ret);
1922 return(ret);
1923 }
1924 break;
1925 case FT8U232AM:
1926 case FT232BM:
1927 case FT2232C:
Andrew M. Bishoped6e5282007-08-21 19:08:56 +01001928 case FT232RL:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 /* the 8U232AM returns a two byte value (the sio is a 1 byte value) - in the same
1930 format as the data returned from the in point */
David Brownell5c09d142006-10-13 15:57:58 -07001931 if ((ret = usb_control_msg(port->serial->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 usb_rcvctrlpipe(port->serial->dev, 0),
David Brownell5c09d142006-10-13 15:57:58 -07001933 FTDI_SIO_GET_MODEM_STATUS_REQUEST,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 FTDI_SIO_GET_MODEM_STATUS_REQUEST_TYPE,
David Brownell5c09d142006-10-13 15:57:58 -07001935 0, priv->interface,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 buf, 2, WDR_TIMEOUT)) < 0 ) {
1937 err("%s Could not get modem status of device - err: %d", __FUNCTION__,
1938 ret);
1939 return(ret);
1940 }
1941 break;
1942 default:
1943 return -EFAULT;
1944 break;
1945 }
David Brownell5c09d142006-10-13 15:57:58 -07001946
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 return (buf[0] & FTDI_SIO_DSR_MASK ? TIOCM_DSR : 0) |
1948 (buf[0] & FTDI_SIO_CTS_MASK ? TIOCM_CTS : 0) |
1949 (buf[0] & FTDI_SIO_RI_MASK ? TIOCM_RI : 0) |
1950 (buf[0] & FTDI_SIO_RLSD_MASK ? TIOCM_CD : 0) |
David Brownell5c09d142006-10-13 15:57:58 -07001951 priv->last_dtr_rts;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952}
1953
1954static int ftdi_tiocmset(struct usb_serial_port *port, struct file * file, unsigned int set, unsigned int clear)
1955{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 dbg("%s TIOCMSET", __FUNCTION__);
Ian Abbott74ede0f2005-07-29 12:16:41 -07001957 return update_mctrl(port, set, clear);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958}
1959
1960
1961static int ftdi_ioctl (struct usb_serial_port *port, struct file * file, unsigned int cmd, unsigned long arg)
1962{
1963 struct ftdi_private *priv = usb_get_serial_port_data(port);
1964
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965 dbg("%s cmd 0x%04x", __FUNCTION__, cmd);
1966
1967 /* Based on code from acm.c and others */
1968 switch (cmd) {
1969
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 case TIOCGSERIAL: /* gets serial port data */
1971 return get_serial_info(port, (struct serial_struct __user *) arg);
1972
1973 case TIOCSSERIAL: /* sets serial port data */
1974 return set_serial_info(port, (struct serial_struct __user *) arg);
1975
1976 /*
1977 * Wait for any of the 4 modem inputs (DCD,RI,DSR,CTS) to change
1978 * - mask passed in arg for lines of interest
1979 * (use |'ed TIOCM_RNG/DSR/CD/CTS for masking)
1980 * Caller should use TIOCGICOUNT to see which one it was.
1981 *
1982 * This code is borrowed from linux/drivers/char/serial.c
1983 */
1984 case TIOCMIWAIT:
1985 while (priv != NULL) {
1986 interruptible_sleep_on(&priv->delta_msr_wait);
1987 /* see if a signal did it */
1988 if (signal_pending(current))
1989 return -ERESTARTSYS;
1990 else {
1991 char diff = priv->diff_status;
1992
1993 if (diff == 0) {
1994 return -EIO; /* no change => error */
1995 }
1996
1997 /* Consume all events */
1998 priv->diff_status = 0;
1999
2000 /* Return 0 if caller wanted to know about these bits */
2001 if ( ((arg & TIOCM_RNG) && (diff & FTDI_RS0_RI)) ||
2002 ((arg & TIOCM_DSR) && (diff & FTDI_RS0_DSR)) ||
2003 ((arg & TIOCM_CD) && (diff & FTDI_RS0_RLSD)) ||
2004 ((arg & TIOCM_CTS) && (diff & FTDI_RS0_CTS)) ) {
2005 return 0;
2006 }
2007 /*
2008 * Otherwise caller can't care less about what happened,
2009 * and so we continue to wait for more events.
2010 */
2011 }
2012 }
2013 return(0);
2014 break;
2015 default:
2016 break;
David Brownell5c09d142006-10-13 15:57:58 -07002017
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 }
2019
2020
David Brownell5c09d142006-10-13 15:57:58 -07002021 /* This is not necessarily an error - turns out the higher layers will do
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 * some ioctls itself (see comment above)
2023 */
2024 dbg("%s arg not supported - it was 0x%04x - check /usr/include/asm/ioctls.h", __FUNCTION__, cmd);
2025
2026 return(-ENOIOCTLCMD);
2027} /* ftdi_ioctl */
2028
2029
2030static void ftdi_throttle (struct usb_serial_port *port)
2031{
2032 struct ftdi_private *priv = usb_get_serial_port_data(port);
2033 unsigned long flags;
2034
2035 dbg("%s - port %d", __FUNCTION__, port->number);
2036
2037 spin_lock_irqsave(&priv->rx_lock, flags);
2038 priv->rx_flags |= THROTTLED;
2039 spin_unlock_irqrestore(&priv->rx_lock, flags);
2040}
2041
2042
2043static void ftdi_unthrottle (struct usb_serial_port *port)
2044{
2045 struct ftdi_private *priv = usb_get_serial_port_data(port);
2046 int actually_throttled;
2047 unsigned long flags;
2048
2049 dbg("%s - port %d", __FUNCTION__, port->number);
2050
2051 spin_lock_irqsave(&priv->rx_lock, flags);
2052 actually_throttled = priv->rx_flags & ACTUALLY_THROTTLED;
2053 priv->rx_flags &= ~(THROTTLED | ACTUALLY_THROTTLED);
2054 spin_unlock_irqrestore(&priv->rx_lock, flags);
2055
2056 if (actually_throttled)
David Howellsc4028952006-11-22 14:57:56 +00002057 schedule_delayed_work(&priv->rx_work, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058}
2059
2060static int __init ftdi_init (void)
2061{
2062 int retval;
2063
2064 dbg("%s", __FUNCTION__);
Ian Abbottfdcb0a02005-07-28 18:40:32 +01002065 if (vendor > 0 && product > 0) {
2066 /* Add user specified VID/PID to reserved element of table. */
2067 int i;
2068 for (i = 0; id_table_combined[i].idVendor; i++)
2069 ;
2070 id_table_combined[i].match_flags = USB_DEVICE_ID_MATCH_DEVICE;
2071 id_table_combined[i].idVendor = vendor;
2072 id_table_combined[i].idProduct = product;
2073 }
Ian Abbott8f977e42005-06-20 16:45:42 +01002074 retval = usb_serial_register(&ftdi_sio_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 if (retval)
Ian Abbott8f977e42005-06-20 16:45:42 +01002076 goto failed_sio_register;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 retval = usb_register(&ftdi_driver);
David Brownell5c09d142006-10-13 15:57:58 -07002078 if (retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 goto failed_usb_register;
2080
2081 info(DRIVER_VERSION ":" DRIVER_DESC);
2082 return 0;
2083failed_usb_register:
Ian Abbott8f977e42005-06-20 16:45:42 +01002084 usb_serial_deregister(&ftdi_sio_device);
2085failed_sio_register:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 return retval;
2087}
2088
2089
2090static void __exit ftdi_exit (void)
2091{
2092
2093 dbg("%s", __FUNCTION__);
2094
2095 usb_deregister (&ftdi_driver);
Ian Abbott8f977e42005-06-20 16:45:42 +01002096 usb_serial_deregister (&ftdi_sio_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097
2098}
2099
2100
2101module_init(ftdi_init);
2102module_exit(ftdi_exit);
2103
2104MODULE_AUTHOR( DRIVER_AUTHOR );
2105MODULE_DESCRIPTION( DRIVER_DESC );
2106MODULE_LICENSE("GPL");
2107
2108module_param(debug, bool, S_IRUGO | S_IWUSR);
2109MODULE_PARM_DESC(debug, "Debug enabled or not");
Ian Abbottfdcb0a02005-07-28 18:40:32 +01002110module_param(vendor, ushort, 0);
2111MODULE_PARM_DESC(vendor, "User specified vendor ID (default="
2112 __MODULE_STRING(FTDI_VID)")");
2113module_param(product, ushort, 0);
2114MODULE_PARM_DESC(vendor, "User specified product ID");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115