ftdi_sio.c 65.7 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3
/*
 * USB FTDI SIO driver
 *
D
David Brownell 已提交
4 5
 *	Copyright (C) 1999 - 2001
 *	    Greg Kroah-Hartman (greg@kroah.com)
L
Linus Torvalds 已提交
6 7 8 9
 *          Bill Ryder (bryder@sgi.com)
 *	Copyright (C) 2002
 *	    Kuba Ober (kuba@mareimbrium.org)
 *
D
David Brownell 已提交
10 11 12 13
 *	This program is free software; you can redistribute it and/or modify
 *	it under the terms of the GNU General Public License as published by
 *	the Free Software Foundation; either version 2 of the License, or
 *	(at your option) any later version.
L
Linus Torvalds 已提交
14 15 16 17 18 19
 *
 * See Documentation/usb/usb-serial.txt for more information on using this driver
 *
 * See http://ftdi-usb-sio.sourceforge.net for upto date testing info
 *	and extra documentation
 *
20 21
 * Change entries from 2004 and earlier can be found in versions of this
 * file in kernel versions prior to the 2.6.24 release.
L
Linus Torvalds 已提交
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
 *
 */

/* Bill Ryder - bryder@sgi.com - wrote the FTDI_SIO implementation */
/* Thanx to FTDI for so kindly providing details of the protocol required */
/*   to talk to the device */
/* Thanx to gkh and the rest of the usb dev group for all code I have assimilated :-) */

#include <linux/kernel.h>
#include <linux/errno.h>
#include <linux/init.h>
#include <linux/slab.h>
#include <linux/tty.h>
#include <linux/tty_driver.h>
#include <linux/tty_flip.h>
#include <linux/module.h>
#include <linux/spinlock.h>
#include <asm/uaccess.h>
#include <linux/usb.h>
#include <linux/serial.h>
42
#include <linux/usb/serial.h>
L
Linus Torvalds 已提交
43 44 45 46 47
#include "ftdi_sio.h"

/*
 * Version Information
 */
48
#define DRIVER_VERSION "v1.4.3"
L
Linus Torvalds 已提交
49 50 51 52
#define DRIVER_AUTHOR "Greg Kroah-Hartman <greg@kroah.com>, Bill Ryder <bryder@sgi.com>, Kuba Ober <kuba@mareimbrium.org>"
#define DRIVER_DESC "USB FTDI Serial Converters Driver"

static int debug;
53 54
static __u16 vendor = FTDI_VID;
static __u16 product;
L
Linus Torvalds 已提交
55

56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
struct ftdi_private {
	ftdi_chip_type_t chip_type;
				/* type of the device, either SIO or FT8U232AM */
	int baud_base;		/* baud base clock for divisor setting */
	int custom_divisor;	/* custom_divisor kludge, this is for baud_base (different from what goes to the chip!) */
	__u16 last_set_data_urb_value ;
				/* the last data state set - needed for doing a break */
        int write_offset;       /* This is the offset in the usb data block to write the serial data -
				 * it is different between devices
				 */
	int flags;		/* some ASYNC_xxxx flags are supported */
	unsigned long last_dtr_rts;	/* saved modem control outputs */
        wait_queue_head_t delta_msr_wait; /* Used for TIOCMIWAIT */
	char prev_status, diff_status;        /* Used for TIOCMIWAIT */
	__u8 rx_flags;		/* receive state flags (throttling) */
	spinlock_t rx_lock;	/* spinlock for receive state */
	struct delayed_work rx_work;
	struct usb_serial_port *port;
	int rx_processed;
	unsigned long rx_bytes;

	__u16 interface;	/* FT2232C port interface (0 for FT232/245) */

79
	speed_t force_baud;	/* if non-zero, force the baud rate to this value */
80 81 82 83 84 85 86 87
	int force_rtscts;	/* if non-zero, force RTS-CTS to always be enabled */

	spinlock_t tx_lock;	/* spinlock for transmit state */
	unsigned long tx_bytes;
	unsigned long tx_outstanding_bytes;
	unsigned long tx_outstanding_urbs;
};

88 89
/* struct ftdi_sio_quirk is used by devices requiring special attention. */
struct ftdi_sio_quirk {
90
	int (*probe)(struct usb_serial *);
91
	void (*port_probe)(struct ftdi_private *); /* Special settings for probed ports. */
92 93
};

94
static int   ftdi_jtag_probe		(struct usb_serial *serial);
95 96
static void  ftdi_USB_UIRT_setup	(struct ftdi_private *priv);
static void  ftdi_HE_TIRA1_setup	(struct ftdi_private *priv);
97

98 99
static struct ftdi_sio_quirk ftdi_jtag_quirk = {
	.probe	= ftdi_jtag_probe,
100 101
};

102
static struct ftdi_sio_quirk ftdi_USB_UIRT_quirk = {
103
	.port_probe = ftdi_USB_UIRT_setup,
104 105 106
};

static struct ftdi_sio_quirk ftdi_HE_TIRA1_quirk = {
107
	.port_probe = ftdi_HE_TIRA1_setup,
L
Linus Torvalds 已提交
108 109 110 111 112 113 114 115 116 117 118 119 120 121
};

/*
 * The 8U232AM has the same API as the sio except for:
 * - it can support MUCH higher baudrates; up to:
 *   o 921600 for RS232 and 2000000 for RS422/485 at 48MHz
 *   o 230400 at 12MHz
 *   so .. 8U232AM's baudrate setting codes are different
 * - it has a two byte status code.
 * - it returns characters every 16ms (the FTDI does it every 40ms)
 *
 * the bcdDevice value is used to differentiate FT232BM and FT245BM from
 * the earlier FT8U232AM and FT8U232BM.  For now, include all known VID/PID
 * combinations in both tables.
122 123
 * FIXME: perhaps bcdDevice can also identify 12MHz FT8U232AM devices,
 * but I don't know if those ever went into mass production. [Ian Abbott]
L
Linus Torvalds 已提交
124 125 126 127 128
 */



static struct usb_device_id id_table_combined [] = {
129 130
	{ USB_DEVICE(FTDI_VID, FTDI_AMC232_PID) },
	{ USB_DEVICE(FTDI_VID, FTDI_CANUSB_PID) },
131
	{ USB_DEVICE(FTDI_VID, FTDI_ACTZWAVE_PID) },
L
Linus Torvalds 已提交
132
	{ USB_DEVICE(FTDI_VID, FTDI_IRTRANS_PID) },
133
	{ USB_DEVICE(FTDI_VID, FTDI_IPLUS_PID) },
134
	{ USB_DEVICE(FTDI_VID, FTDI_IPLUS2_PID) },
135
	{ USB_DEVICE(FTDI_VID, FTDI_DMX4ALL) },
L
Linus Torvalds 已提交
136 137 138
	{ USB_DEVICE(FTDI_VID, FTDI_SIO_PID) },
	{ USB_DEVICE(FTDI_VID, FTDI_8U232AM_PID) },
	{ USB_DEVICE(FTDI_VID, FTDI_8U232AM_ALT_PID) },
139
	{ USB_DEVICE(FTDI_VID, FTDI_232RL_PID) },
L
Linus Torvalds 已提交
140
	{ USB_DEVICE(FTDI_VID, FTDI_8U2232C_PID) },
141
	{ USB_DEVICE(FTDI_VID, FTDI_MICRO_CHAMELEON_PID) },
L
Linus Torvalds 已提交
142
	{ USB_DEVICE(FTDI_VID, FTDI_RELAIS_PID) },
143
	{ USB_DEVICE(FTDI_VID, FTDI_OPENDCC_PID) },
L
Linus Torvalds 已提交
144 145 146 147 148 149 150 151 152 153 154 155 156
	{ USB_DEVICE(INTERBIOMETRICS_VID, INTERBIOMETRICS_IOBOARD_PID) },
	{ USB_DEVICE(INTERBIOMETRICS_VID, INTERBIOMETRICS_MINI_IOBOARD_PID) },
	{ USB_DEVICE(FTDI_VID, FTDI_XF_632_PID) },
	{ USB_DEVICE(FTDI_VID, FTDI_XF_634_PID) },
	{ USB_DEVICE(FTDI_VID, FTDI_XF_547_PID) },
	{ USB_DEVICE(FTDI_VID, FTDI_XF_633_PID) },
	{ USB_DEVICE(FTDI_VID, FTDI_XF_631_PID) },
	{ USB_DEVICE(FTDI_VID, FTDI_XF_635_PID) },
	{ USB_DEVICE(FTDI_VID, FTDI_XF_640_PID) },
	{ USB_DEVICE(FTDI_VID, FTDI_XF_642_PID) },
	{ USB_DEVICE(FTDI_VID, FTDI_DSS20_PID) },
	{ USB_DEVICE(FTDI_NF_RIC_VID, FTDI_NF_RIC_PID) },
	{ USB_DEVICE(FTDI_VID, FTDI_VNHCPCUSB_D_PID) },
157 158 159 160 161 162 163 164
	{ USB_DEVICE(FTDI_VID, FTDI_MTXORB_0_PID) },
	{ USB_DEVICE(FTDI_VID, FTDI_MTXORB_1_PID) },
	{ USB_DEVICE(FTDI_VID, FTDI_MTXORB_2_PID) },
	{ USB_DEVICE(FTDI_VID, FTDI_MTXORB_3_PID) },
	{ USB_DEVICE(FTDI_VID, FTDI_MTXORB_4_PID) },
	{ USB_DEVICE(FTDI_VID, FTDI_MTXORB_5_PID) },
	{ USB_DEVICE(FTDI_VID, FTDI_MTXORB_6_PID) },
	{ USB_DEVICE(FTDI_VID, FTDI_PERLE_ULTRAPORT_PID) },
L
Linus Torvalds 已提交
165
	{ USB_DEVICE(FTDI_VID, FTDI_PIEGROUP_PID) },
166
	{ USB_DEVICE(FTDI_VID, FTDI_TNC_X_PID) },
167
	{ USB_DEVICE(FTDI_VID, FTDI_USBX_707_PID) },
L
Linus Torvalds 已提交
168 169 170 171
	{ USB_DEVICE(SEALEVEL_VID, SEALEVEL_2101_PID) },
	{ USB_DEVICE(SEALEVEL_VID, SEALEVEL_2102_PID) },
	{ USB_DEVICE(SEALEVEL_VID, SEALEVEL_2103_PID) },
	{ USB_DEVICE(SEALEVEL_VID, SEALEVEL_2104_PID) },
172
	{ USB_DEVICE(SEALEVEL_VID, SEALEVEL_2106_PID) },
L
Linus Torvalds 已提交
173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216
	{ USB_DEVICE(SEALEVEL_VID, SEALEVEL_2201_1_PID) },
	{ USB_DEVICE(SEALEVEL_VID, SEALEVEL_2201_2_PID) },
	{ USB_DEVICE(SEALEVEL_VID, SEALEVEL_2202_1_PID) },
	{ USB_DEVICE(SEALEVEL_VID, SEALEVEL_2202_2_PID) },
	{ USB_DEVICE(SEALEVEL_VID, SEALEVEL_2203_1_PID) },
	{ USB_DEVICE(SEALEVEL_VID, SEALEVEL_2203_2_PID) },
	{ USB_DEVICE(SEALEVEL_VID, SEALEVEL_2401_1_PID) },
	{ USB_DEVICE(SEALEVEL_VID, SEALEVEL_2401_2_PID) },
	{ USB_DEVICE(SEALEVEL_VID, SEALEVEL_2401_3_PID) },
	{ USB_DEVICE(SEALEVEL_VID, SEALEVEL_2401_4_PID) },
	{ USB_DEVICE(SEALEVEL_VID, SEALEVEL_2402_1_PID) },
	{ USB_DEVICE(SEALEVEL_VID, SEALEVEL_2402_2_PID) },
	{ USB_DEVICE(SEALEVEL_VID, SEALEVEL_2402_3_PID) },
	{ USB_DEVICE(SEALEVEL_VID, SEALEVEL_2402_4_PID) },
	{ USB_DEVICE(SEALEVEL_VID, SEALEVEL_2403_1_PID) },
	{ USB_DEVICE(SEALEVEL_VID, SEALEVEL_2403_2_PID) },
	{ USB_DEVICE(SEALEVEL_VID, SEALEVEL_2403_3_PID) },
	{ USB_DEVICE(SEALEVEL_VID, SEALEVEL_2403_4_PID) },
	{ USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_1_PID) },
	{ USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_2_PID) },
	{ USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_3_PID) },
	{ USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_4_PID) },
	{ USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_5_PID) },
	{ USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_6_PID) },
	{ USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_7_PID) },
	{ USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_8_PID) },
	{ USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_1_PID) },
	{ USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_2_PID) },
	{ USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_3_PID) },
	{ USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_4_PID) },
	{ USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_5_PID) },
	{ USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_6_PID) },
	{ USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_7_PID) },
	{ USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_8_PID) },
	{ USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_1_PID) },
	{ USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_2_PID) },
	{ USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_3_PID) },
	{ USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_4_PID) },
	{ USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_5_PID) },
	{ USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_6_PID) },
	{ USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_7_PID) },
	{ USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_8_PID) },
	{ USB_DEVICE(IDTECH_VID, IDTECH_IDT1221U_PID) },
	{ USB_DEVICE(OCT_VID, OCT_US101_PID) },
217 218 219 220
	{ USB_DEVICE(FTDI_VID, FTDI_HE_TIRA1_PID),
		.driver_info = (kernel_ulong_t)&ftdi_HE_TIRA1_quirk },
	{ USB_DEVICE(FTDI_VID, FTDI_USB_UIRT_PID),
		.driver_info = (kernel_ulong_t)&ftdi_USB_UIRT_quirk },
L
Linus Torvalds 已提交
221 222 223 224
	{ USB_DEVICE(FTDI_VID, PROTEGO_SPECIAL_1) },
	{ USB_DEVICE(FTDI_VID, PROTEGO_R2X0) },
	{ USB_DEVICE(FTDI_VID, PROTEGO_SPECIAL_3) },
	{ USB_DEVICE(FTDI_VID, PROTEGO_SPECIAL_4) },
225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240
	{ USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E808_PID) },
	{ USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E809_PID) },
	{ USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E80A_PID) },
	{ USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E80B_PID) },
	{ USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E80C_PID) },
	{ USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E80D_PID) },
	{ USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E80E_PID) },
	{ USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E80F_PID) },
	{ USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E888_PID) },
	{ USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E889_PID) },
	{ USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E88A_PID) },
	{ USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E88B_PID) },
	{ USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E88C_PID) },
	{ USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E88D_PID) },
	{ USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E88E_PID) },
	{ USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E88F_PID) },
L
Linus Torvalds 已提交
241
	{ USB_DEVICE(FTDI_VID, FTDI_ELV_UO100_PID) },
242
	{ USB_DEVICE(FTDI_VID, FTDI_ELV_UM100_PID) },
243 244
	{ USB_DEVICE(FTDI_VID, FTDI_ELV_UR100_PID) },
	{ USB_DEVICE(FTDI_VID, FTDI_ELV_ALC8500_PID) },
245
	{ USB_DEVICE(FTDI_VID, FTDI_PYRAMID_PID) },
246
	{ USB_DEVICE(FTDI_VID, FTDI_ELV_FHZ1000PC_PID) },
247 248 249 250 251 252 253 254
	{ USB_DEVICE(FTDI_VID, FTDI_IBS_US485_PID) },
	{ USB_DEVICE(FTDI_VID, FTDI_IBS_PICPRO_PID) },
	{ USB_DEVICE(FTDI_VID, FTDI_IBS_PCMCIA_PID) },
	{ USB_DEVICE(FTDI_VID, FTDI_IBS_PK1_PID) },
	{ USB_DEVICE(FTDI_VID, FTDI_IBS_RS232MON_PID) },
	{ USB_DEVICE(FTDI_VID, FTDI_IBS_APP70_PID) },
	{ USB_DEVICE(FTDI_VID, FTDI_IBS_PEDO_PID) },
	{ USB_DEVICE(FTDI_VID, FTDI_IBS_PROD_PID) },
255
	/*
256 257
	 * Due to many user requests for multiple ELV devices we enable
	 * them by default.
258
	 */
259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277
	{ USB_DEVICE(FTDI_VID, FTDI_ELV_CLI7000_PID) },
	{ USB_DEVICE(FTDI_VID, FTDI_ELV_PPS7330_PID) },
	{ USB_DEVICE(FTDI_VID, FTDI_ELV_TFM100_PID) },
	{ USB_DEVICE(FTDI_VID, FTDI_ELV_UDF77_PID) },
	{ USB_DEVICE(FTDI_VID, FTDI_ELV_UIO88_PID) },
	{ USB_DEVICE(FTDI_VID, FTDI_ELV_UAD8_PID) },
	{ USB_DEVICE(FTDI_VID, FTDI_ELV_UDA7_PID) },
	{ USB_DEVICE(FTDI_VID, FTDI_ELV_USI2_PID) },
	{ USB_DEVICE(FTDI_VID, FTDI_ELV_T1100_PID) },
	{ USB_DEVICE(FTDI_VID, FTDI_ELV_PCD200_PID) },
	{ USB_DEVICE(FTDI_VID, FTDI_ELV_ULA200_PID) },
	{ USB_DEVICE(FTDI_VID, FTDI_ELV_CSI8_PID) },
	{ USB_DEVICE(FTDI_VID, FTDI_ELV_EM1000DL_PID) },
	{ USB_DEVICE(FTDI_VID, FTDI_ELV_PCK100_PID) },
	{ USB_DEVICE(FTDI_VID, FTDI_ELV_RFP500_PID) },
	{ USB_DEVICE(FTDI_VID, FTDI_ELV_FS20SIG_PID) },
	{ USB_DEVICE(FTDI_VID, FTDI_ELV_WS300PC_PID) },
	{ USB_DEVICE(FTDI_VID, FTDI_ELV_FHZ1300PC_PID) },
	{ USB_DEVICE(FTDI_VID, FTDI_ELV_WS500_PID) },
D
David Brownell 已提交
278 279 280 281 282 283 284
	{ USB_DEVICE(FTDI_VID, LINX_SDMUSBQSS_PID) },
	{ USB_DEVICE(FTDI_VID, LINX_MASTERDEVEL2_PID) },
	{ USB_DEVICE(FTDI_VID, LINX_FUTURE_0_PID) },
	{ USB_DEVICE(FTDI_VID, LINX_FUTURE_1_PID) },
	{ USB_DEVICE(FTDI_VID, LINX_FUTURE_2_PID) },
	{ USB_DEVICE(FTDI_VID, FTDI_CCSICDU20_0_PID) },
	{ USB_DEVICE(FTDI_VID, FTDI_CCSICDU40_1_PID) },
J
Jan Capek 已提交
285
	{ USB_DEVICE(FTDI_VID, FTDI_CCSMACHX_2_PID) },
L
Linus Torvalds 已提交
286 287 288 289
	{ USB_DEVICE(FTDI_VID, INSIDE_ACCESSO) },
	{ USB_DEVICE(INTREPID_VID, INTREPID_VALUECAN_PID) },
	{ USB_DEVICE(INTREPID_VID, INTREPID_NEOVI_PID) },
	{ USB_DEVICE(FALCOM_VID, FALCOM_TWIST_PID) },
290
	{ USB_DEVICE(FALCOM_VID, FALCOM_SAMBA_PID) },
L
Linus Torvalds 已提交
291
	{ USB_DEVICE(FTDI_VID, FTDI_SUUNTO_SPORTS_PID) },
292
	{ USB_DEVICE(TTI_VID, TTI_QL355P_PID) },
293
	{ USB_DEVICE(FTDI_VID, FTDI_RM_CANVIEW_PID) },
L
Linus Torvalds 已提交
294 295 296 297
	{ USB_DEVICE(BANDB_VID, BANDB_USOTL4_PID) },
	{ USB_DEVICE(BANDB_VID, BANDB_USTL4_PID) },
	{ USB_DEVICE(BANDB_VID, BANDB_USO9ML2_PID) },
	{ USB_DEVICE(FTDI_VID, EVER_ECO_PRO_CDS) },
298 299
	{ USB_DEVICE(FTDI_VID, FTDI_4N_GALAXY_DE_1_PID) },
	{ USB_DEVICE(FTDI_VID, FTDI_4N_GALAXY_DE_2_PID) },
300 301 302 303 304 305 306 307
	{ USB_DEVICE(FTDI_VID, XSENS_CONVERTER_0_PID) },
	{ USB_DEVICE(FTDI_VID, XSENS_CONVERTER_1_PID) },
	{ USB_DEVICE(FTDI_VID, XSENS_CONVERTER_2_PID) },
	{ USB_DEVICE(FTDI_VID, XSENS_CONVERTER_3_PID) },
	{ USB_DEVICE(FTDI_VID, XSENS_CONVERTER_4_PID) },
	{ USB_DEVICE(FTDI_VID, XSENS_CONVERTER_5_PID) },
	{ USB_DEVICE(FTDI_VID, XSENS_CONVERTER_6_PID) },
	{ USB_DEVICE(FTDI_VID, XSENS_CONVERTER_7_PID) },
308
	{ USB_DEVICE(MOBILITY_VID, MOBILITY_USB_SERIAL_PID) },
309
	{ USB_DEVICE(FTDI_VID, FTDI_ACTIVE_ROBOTS_PID) },
310 311
	{ USB_DEVICE(FTDI_VID, FTDI_MHAM_KW_PID) },
	{ USB_DEVICE(FTDI_VID, FTDI_MHAM_YS_PID) },
312 313
	{ USB_DEVICE(FTDI_VID, FTDI_MHAM_Y6_PID) },
	{ USB_DEVICE(FTDI_VID, FTDI_MHAM_Y8_PID) },
314 315 316 317
	{ USB_DEVICE(FTDI_VID, FTDI_MHAM_IC_PID) },
	{ USB_DEVICE(FTDI_VID, FTDI_MHAM_DB9_PID) },
	{ USB_DEVICE(FTDI_VID, FTDI_MHAM_RS232_PID) },
	{ USB_DEVICE(FTDI_VID, FTDI_MHAM_Y9_PID) },
318 319
	{ USB_DEVICE(FTDI_VID, FTDI_TERATRONIK_VCP_PID) },
	{ USB_DEVICE(FTDI_VID, FTDI_TERATRONIK_D2XX_PID) },
320
	{ USB_DEVICE(EVOLUTION_VID, EVOLUTION_ER1_PID) },
321 322
	{ USB_DEVICE(EVOLUTION_VID, EVO_HYBRID_PID) },
	{ USB_DEVICE(EVOLUTION_VID, EVO_RCM4_PID) },
323 324
	{ USB_DEVICE(FTDI_VID, FTDI_ARTEMIS_PID) },
	{ USB_DEVICE(FTDI_VID, FTDI_ATIK_ATK16_PID) },
325
	{ USB_DEVICE(FTDI_VID, FTDI_ATIK_ATK16C_PID) },
326
	{ USB_DEVICE(FTDI_VID, FTDI_ATIK_ATK16HR_PID) },
327
	{ USB_DEVICE(FTDI_VID, FTDI_ATIK_ATK16HRC_PID) },
328
	{ USB_DEVICE(FTDI_VID, FTDI_ATIK_ATK16IC_PID) },
329 330
	{ USB_DEVICE(KOBIL_VID, KOBIL_CONV_B1_PID) },
	{ USB_DEVICE(KOBIL_VID, KOBIL_CONV_KAAN_PID) },
331
	{ USB_DEVICE(POSIFLEX_VID, POSIFLEX_PP7000_PID) },
332
	{ USB_DEVICE(FTDI_VID, FTDI_TTUSB_PID) },
333
	{ USB_DEVICE(FTDI_VID, FTDI_ECLO_COM_1WIRE_PID) },
334 335
	{ USB_DEVICE(FTDI_VID, FTDI_WESTREX_MODEL_777_PID) },
	{ USB_DEVICE(FTDI_VID, FTDI_WESTREX_MODEL_8900F_PID) },
336
	{ USB_DEVICE(FTDI_VID, FTDI_PCDJ_DAC2_PID) },
337
	{ USB_DEVICE(FTDI_VID, FTDI_RRCIRKITS_LOCOBUFFER_PID) },
338
	{ USB_DEVICE(FTDI_VID, FTDI_ASK_RDR400_PID) },
339
	{ USB_DEVICE(ICOM_ID1_VID, ICOM_ID1_PID) },
340
	{ USB_DEVICE(PAPOUCH_VID, PAPOUCH_TMU_PID) },
341
	{ USB_DEVICE(FTDI_VID, FTDI_ACG_HFDUAL_PID) },
342
	{ USB_DEVICE(FTDI_VID, FTDI_YEI_SERVOCENTER31_PID) },
343
	{ USB_DEVICE(FTDI_VID, FTDI_THORLABS_PID) },
344
	{ USB_DEVICE(TESTO_VID, TESTO_USB_INTERFACE_PID) },
345
	{ USB_DEVICE(FTDI_VID, FTDI_GAMMA_SCOUT_PID) },
346 347 348
	{ USB_DEVICE(FTDI_VID, FTDI_TACTRIX_OPENPORT_13M_PID) },
	{ USB_DEVICE(FTDI_VID, FTDI_TACTRIX_OPENPORT_13S_PID) },
	{ USB_DEVICE(FTDI_VID, FTDI_TACTRIX_OPENPORT_13U_PID) },
349
	{ USB_DEVICE(ELEKTOR_VID, ELEKTOR_FT323R_PID) },
350
	{ USB_DEVICE(TELLDUS_VID, TELLDUS_TELLSTICK_PID) },
351
	{ USB_DEVICE(FTDI_VID, FTDI_MAXSTREAM_PID) },
352
	{ USB_DEVICE(TML_VID, TML_USB_SERIAL_PID) },
353
	{ USB_DEVICE(FTDI_VID, FTDI_ELSTER_UNICOM_PID) },
354
	{ USB_DEVICE(OLIMEX_VID, OLIMEX_ARM_USB_OCD_PID),
355 356 357 358 359
		.driver_info = (kernel_ulong_t)&ftdi_jtag_quirk },
	{ USB_DEVICE(FIC_VID, FIC_NEO1973_DEBUG_PID),
		.driver_info = (kernel_ulong_t)&ftdi_jtag_quirk },
	{ USB_DEVICE(FTDI_VID, FTDI_OOCDLINK_PID),
		.driver_info = (kernel_ulong_t)&ftdi_jtag_quirk },
360 361
	{ },					/* Optional parameter entry */
	{ }					/* Terminating entry */
L
Linus Torvalds 已提交
362 363 364 365 366 367 368 369 370
};

MODULE_DEVICE_TABLE (usb, id_table_combined);

static struct usb_driver ftdi_driver = {
	.name =		"ftdi_sio",
	.probe =	usb_serial_probe,
	.disconnect =	usb_serial_disconnect,
	.id_table =	id_table_combined,
D
David Brownell 已提交
371
	.no_dynamic_id =	1,
L
Linus Torvalds 已提交
372 373
};

374
static const char *ftdi_chip_name[] = {
L
Linus Torvalds 已提交
375 376 377 378
	[SIO] = "SIO",	/* the serial part of FT8U100AX */
	[FT8U232AM] = "FT8U232AM",
	[FT232BM] = "FT232BM",
	[FT2232C] = "FT2232C",
379
	[FT232RL] = "FT232RL",
L
Linus Torvalds 已提交
380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399
};


/* Constants for read urb and write urb */
#define BUFSZ 512
#define PKTSZ 64

/* rx_flags */
#define THROTTLED		0x01
#define ACTUALLY_THROTTLED	0x02

/* Used for TIOCMIWAIT */
#define FTDI_STATUS_B0_MASK	(FTDI_RS0_CTS | FTDI_RS0_DSR | FTDI_RS0_RI | FTDI_RS0_RLSD)
#define FTDI_STATUS_B1_MASK	(FTDI_RS_BI)
/* End TIOCMIWAIT */

#define FTDI_IMPL_ASYNC_FLAGS = ( ASYNC_SPD_HI | ASYNC_SPD_VHI \
 ASYNC_SPD_CUST | ASYNC_SPD_SHI | ASYNC_SPD_WARP )

/* function prototypes for a FTDI serial converter */
400
static int  ftdi_sio_probe	(struct usb_serial *serial, const struct usb_device_id *id);
L
Linus Torvalds 已提交
401
static void ftdi_shutdown		(struct usb_serial *serial);
402 403
static int  ftdi_sio_port_probe	(struct usb_serial_port *port);
static int  ftdi_sio_port_remove	(struct usb_serial_port *port);
L
Linus Torvalds 已提交
404 405 406 407 408
static int  ftdi_open			(struct usb_serial_port *port, struct file *filp);
static void ftdi_close			(struct usb_serial_port *port, struct file *filp);
static int  ftdi_write			(struct usb_serial_port *port, const unsigned char *buf, int count);
static int  ftdi_write_room		(struct usb_serial_port *port);
static int  ftdi_chars_in_buffer	(struct usb_serial_port *port);
409 410
static void ftdi_write_bulk_callback	(struct urb *urb);
static void ftdi_read_bulk_callback	(struct urb *urb);
D
David Howells 已提交
411
static void ftdi_process_read		(struct work_struct *work);
A
Alan Cox 已提交
412
static void ftdi_set_termios		(struct usb_serial_port *port, struct ktermios * old);
L
Linus Torvalds 已提交
413 414 415 416 417 418 419 420 421 422 423 424
static int  ftdi_tiocmget               (struct usb_serial_port *port, struct file *file);
static int  ftdi_tiocmset		(struct usb_serial_port *port, struct file * file, unsigned int set, unsigned int clear);
static int  ftdi_ioctl			(struct usb_serial_port *port, struct file * file, unsigned int cmd, unsigned long arg);
static void ftdi_break_ctl		(struct usb_serial_port *port, int break_state );
static void ftdi_throttle		(struct usb_serial_port *port);
static void ftdi_unthrottle		(struct usb_serial_port *port);

static unsigned short int ftdi_232am_baud_base_to_divisor (int baud, int base);
static unsigned short int ftdi_232am_baud_to_divisor (int baud);
static __u32 ftdi_232bm_baud_base_to_divisor (int baud, int base);
static __u32 ftdi_232bm_baud_to_divisor (int baud);

425
static struct usb_serial_driver ftdi_sio_device = {
426 427
	.driver = {
		.owner =	THIS_MODULE,
428
		.name =		"ftdi_sio",
429
	},
430
	.description =		"FTDI USB Serial Device",
431
	.usb_driver = 		&ftdi_driver ,
432
	.id_table =		id_table_combined,
L
Linus Torvalds 已提交
433 434 435 436
	.num_interrupt_in =	0,
	.num_bulk_in =		1,
	.num_bulk_out =		1,
	.num_ports =		1,
437
	.probe =		ftdi_sio_probe,
438 439
	.port_probe =		ftdi_sio_port_probe,
	.port_remove =		ftdi_sio_port_remove,
L
Linus Torvalds 已提交
440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458
	.open =			ftdi_open,
	.close =		ftdi_close,
	.throttle =		ftdi_throttle,
	.unthrottle =		ftdi_unthrottle,
	.write =		ftdi_write,
	.write_room =		ftdi_write_room,
	.chars_in_buffer =	ftdi_chars_in_buffer,
	.read_bulk_callback =	ftdi_read_bulk_callback,
	.write_bulk_callback =	ftdi_write_bulk_callback,
	.tiocmget =             ftdi_tiocmget,
	.tiocmset =             ftdi_tiocmset,
	.ioctl =		ftdi_ioctl,
	.set_termios =		ftdi_set_termios,
	.break_ctl =		ftdi_break_ctl,
	.shutdown =		ftdi_shutdown,
};


#define WDR_TIMEOUT 5000 /* default urb timeout */
459
#define WDR_SHORT_TIMEOUT 1000	/* shorter urb timeout */
L
Linus Torvalds 已提交
460 461 462 463 464

/* High and low are for DTR, RTS etc etc */
#define HIGH 1
#define LOW 0

465 466 467
/* number of outstanding urbs to prevent userspace DoS from happening */
#define URB_UPPER_LIMIT	42

L
Linus Torvalds 已提交
468 469
/*
 * ***************************************************************************
470
 * Utility functions
L
Linus Torvalds 已提交
471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510
 * ***************************************************************************
 */

static unsigned short int ftdi_232am_baud_base_to_divisor(int baud, int base)
{
	unsigned short int divisor;
	int divisor3 = base / 2 / baud; // divisor shifted 3 bits to the left
	if ((divisor3 & 0x7) == 7) divisor3 ++; // round x.7/8 up to x+1
	divisor = divisor3 >> 3;
	divisor3 &= 0x7;
	if (divisor3 == 1) divisor |= 0xc000; else // 0.125
	if (divisor3 >= 4) divisor |= 0x4000; else // 0.5
	if (divisor3 != 0) divisor |= 0x8000;      // 0.25
	if (divisor == 1) divisor = 0;	/* special case for maximum baud rate */
	return divisor;
}

static unsigned short int ftdi_232am_baud_to_divisor(int baud)
{
	 return(ftdi_232am_baud_base_to_divisor(baud, 48000000));
}

static __u32 ftdi_232bm_baud_base_to_divisor(int baud, int base)
{
	static const unsigned char divfrac[8] = { 0, 3, 2, 4, 1, 5, 6, 7 };
	__u32 divisor;
	int divisor3 = base / 2 / baud; // divisor shifted 3 bits to the left
	divisor = divisor3 >> 3;
	divisor |= (__u32)divfrac[divisor3 & 0x7] << 14;
	/* Deal with special cases for highest baud rates. */
	if (divisor == 1) divisor = 0; else	// 1.0
	if (divisor == 0x4001) divisor = 1;	// 1.5
	return divisor;
}

static __u32 ftdi_232bm_baud_to_divisor(int baud)
{
	 return(ftdi_232bm_baud_base_to_divisor(baud, 48000000));
}

511 512 513 514
#define set_mctrl(port, set)		update_mctrl((port), (set), 0)
#define clear_mctrl(port, clear)	update_mctrl((port), 0, (clear))

static int update_mctrl(struct usb_serial_port *port, unsigned int set, unsigned int clear)
L
Linus Torvalds 已提交
515 516 517
{
	struct ftdi_private *priv = usb_get_serial_port_data(port);
	char *buf;
518
	unsigned urb_value;
L
Linus Torvalds 已提交
519 520
	int rv;

521 522 523 524
	if (((set | clear) & (TIOCM_DTR | TIOCM_RTS)) == 0) {
		dbg("%s - DTR|RTS not being set|cleared", __FUNCTION__);
		return 0;	/* no change */
	}
L
Linus Torvalds 已提交
525 526

	buf = kmalloc(1, GFP_NOIO);
527
	if (!buf) {
L
Linus Torvalds 已提交
528 529
		return -ENOMEM;
	}
530 531 532 533 534 535 536 537 538 539 540

	clear &= ~set;	/* 'set' takes precedence over 'clear' */
	urb_value = 0;
	if (clear & TIOCM_DTR)
		urb_value |= FTDI_SIO_SET_DTR_LOW;
	if (clear & TIOCM_RTS)
		urb_value |= FTDI_SIO_SET_RTS_LOW;
	if (set & TIOCM_DTR)
		urb_value |= FTDI_SIO_SET_DTR_HIGH;
	if (set & TIOCM_RTS)
		urb_value |= FTDI_SIO_SET_RTS_HIGH;
L
Linus Torvalds 已提交
541 542
	rv = usb_control_msg(port->serial->dev,
			       usb_sndctrlpipe(port->serial->dev, 0),
D
David Brownell 已提交
543
			       FTDI_SIO_SET_MODEM_CTRL_REQUEST,
L
Linus Torvalds 已提交
544
			       FTDI_SIO_SET_MODEM_CTRL_REQUEST_TYPE,
545
			       urb_value, priv->interface,
L
Linus Torvalds 已提交
546 547 548
			       buf, 0, WDR_TIMEOUT);

	kfree(buf);
549 550 551 552 553 554 555 556 557 558 559 560 561 562 563
	if (rv < 0) {
		err("%s Error from MODEM_CTRL urb: DTR %s, RTS %s",
				__FUNCTION__,
				(set & TIOCM_DTR) ? "HIGH" :
				(clear & TIOCM_DTR) ? "LOW" : "unchanged",
				(set & TIOCM_RTS) ? "HIGH" :
				(clear & TIOCM_RTS) ? "LOW" : "unchanged");
	} else {
		dbg("%s - DTR %s, RTS %s", __FUNCTION__,
				(set & TIOCM_DTR) ? "HIGH" :
				(clear & TIOCM_DTR) ? "LOW" : "unchanged",
				(set & TIOCM_RTS) ? "HIGH" :
				(clear & TIOCM_RTS) ? "LOW" : "unchanged");
		priv->last_dtr_rts = (priv->last_dtr_rts & ~clear) | set;
	}
L
Linus Torvalds 已提交
564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589
	return rv;
}


static __u32 get_ftdi_divisor(struct usb_serial_port * port);


static int change_speed(struct usb_serial_port *port)
{
	struct ftdi_private *priv = usb_get_serial_port_data(port);
	char *buf;
        __u16 urb_value;
	__u16 urb_index;
	__u32 urb_index_value;
	int rv;

	buf = kmalloc(1, GFP_NOIO);
	if (!buf)
		return -ENOMEM;

	urb_index_value = get_ftdi_divisor(port);
	urb_value = (__u16)urb_index_value;
	urb_index = (__u16)(urb_index_value >> 16);
	if (priv->interface) {	/* FT2232C */
		urb_index = (__u16)((urb_index << 8) | priv->interface);
	}
D
David Brownell 已提交
590

L
Linus Torvalds 已提交
591 592 593 594 595
	rv = usb_control_msg(port->serial->dev,
			    usb_sndctrlpipe(port->serial->dev, 0),
			    FTDI_SIO_SET_BAUDRATE_REQUEST,
			    FTDI_SIO_SET_BAUDRATE_REQUEST_TYPE,
			    urb_value, urb_index,
596
			    buf, 0, WDR_SHORT_TIMEOUT);
L
Linus Torvalds 已提交
597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648

	kfree(buf);
	return rv;
}


static __u32 get_ftdi_divisor(struct usb_serial_port * port)
{ /* get_ftdi_divisor */
	struct ftdi_private *priv = usb_get_serial_port_data(port);
	__u32 div_value = 0;
	int div_okay = 1;
	int baud;

	/*
	 * The logic involved in setting the baudrate can be cleanly split in 3 steps.
	 * Obtaining the actual baud rate is a little tricky since unix traditionally
	 * somehow ignored the possibility to set non-standard baud rates.
	 * 1. Standard baud rates are set in tty->termios->c_cflag
	 * 2. If these are not enough, you can set any speed using alt_speed as follows:
	 *    - set tty->termios->c_cflag speed to B38400
	 *    - set your real speed in tty->alt_speed; it gets ignored when
	 *      alt_speed==0, (or)
	 *    - call TIOCSSERIAL ioctl with (struct serial_struct) set as follows:
	 *      flags & ASYNC_SPD_MASK == ASYNC_SPD_[HI, VHI, SHI, WARP], this just
	 *      sets alt_speed to (HI: 57600, VHI: 115200, SHI: 230400, WARP: 460800)
	 * ** Steps 1, 2 are done courtesy of tty_get_baud_rate
	 * 3. You can also set baud rate by setting custom divisor as follows
	 *    - set tty->termios->c_cflag speed to B38400
	 *    - call TIOCSSERIAL ioctl with (struct serial_struct) set as follows:
	 *      o flags & ASYNC_SPD_MASK == ASYNC_SPD_CUST
	 *      o custom_divisor set to baud_base / your_new_baudrate
	 * ** Step 3 is done courtesy of code borrowed from serial.c - I should really
	 *    spend some time and separate+move this common code to serial.c, it is
	 *    replicated in nearly every serial driver you see.
	 */

	/* 1. Get the baud rate from the tty settings, this observes alt_speed hack */

	baud = tty_get_baud_rate(port->tty);
	dbg("%s - tty_get_baud_rate reports speed %d", __FUNCTION__, baud);

	/* 2. Observe async-compatible custom_divisor hack, update baudrate if needed */

	if (baud == 38400 &&
	    ((priv->flags & ASYNC_SPD_MASK) == ASYNC_SPD_CUST) &&
	     (priv->custom_divisor)) {
		baud = priv->baud_base / priv->custom_divisor;
		dbg("%s - custom divisor %d sets baud rate to %d", __FUNCTION__, priv->custom_divisor, baud);
	}

	/* 3. Convert baudrate to device-specific divisor */

D
David Brownell 已提交
649
	if (!baud) baud = 9600;
L
Linus Torvalds 已提交
650 651 652 653 654 655 656 657 658 659 660 661 662 663 664
	switch(priv->chip_type) {
	case SIO: /* SIO chip */
		switch(baud) {
		case 300: div_value = ftdi_sio_b300; break;
		case 600: div_value = ftdi_sio_b600; break;
		case 1200: div_value = ftdi_sio_b1200; break;
		case 2400: div_value = ftdi_sio_b2400; break;
		case 4800: div_value = ftdi_sio_b4800; break;
		case 9600: div_value = ftdi_sio_b9600; break;
		case 19200: div_value = ftdi_sio_b19200; break;
		case 38400: div_value = ftdi_sio_b38400; break;
		case 57600: div_value = ftdi_sio_b57600;  break;
		case 115200: div_value = ftdi_sio_b115200; break;
		} /* baud */
		if (div_value == 0) {
D
David Brownell 已提交
665
			dbg("%s - Baudrate (%d) requested is not supported", __FUNCTION__,  baud);
L
Linus Torvalds 已提交
666
			div_value = ftdi_sio_b9600;
667
			baud = 9600;
L
Linus Torvalds 已提交
668 669 670 671 672 673 674 675
			div_okay = 0;
		}
		break;
	case FT8U232AM: /* 8U232AM chip */
		if (baud <= 3000000) {
			div_value = ftdi_232am_baud_to_divisor(baud);
		} else {
	                dbg("%s - Baud rate too high!", __FUNCTION__);
676
			baud = 9600;
L
Linus Torvalds 已提交
677 678 679 680 681 682
			div_value = ftdi_232am_baud_to_divisor(9600);
			div_okay = 0;
		}
		break;
	case FT232BM: /* FT232BM chip */
	case FT2232C: /* FT2232C chip */
683
	case FT232RL:
L
Linus Torvalds 已提交
684 685 686 687 688 689
		if (baud <= 3000000) {
			div_value = ftdi_232bm_baud_to_divisor(baud);
		} else {
	                dbg("%s - Baud rate too high!", __FUNCTION__);
			div_value = ftdi_232bm_baud_to_divisor(9600);
			div_okay = 0;
690
			baud = 9600;
L
Linus Torvalds 已提交
691 692 693 694 695 696 697 698 699 700
		}
		break;
	} /* priv->chip_type */

	if (div_okay) {
		dbg("%s - Baud rate set to %d (divisor 0x%lX) on chip %s",
			__FUNCTION__, baud, (unsigned long)div_value,
			ftdi_chip_name[priv->chip_type]);
	}

701
	tty_encode_baud_rate(port->tty, baud, baud);
L
Linus Torvalds 已提交
702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751
	return(div_value);
}


static int get_serial_info(struct usb_serial_port * port, struct serial_struct __user * retinfo)
{
	struct ftdi_private *priv = usb_get_serial_port_data(port);
	struct serial_struct tmp;

	if (!retinfo)
		return -EFAULT;
	memset(&tmp, 0, sizeof(tmp));
	tmp.flags = priv->flags;
	tmp.baud_base = priv->baud_base;
	tmp.custom_divisor = priv->custom_divisor;
	if (copy_to_user(retinfo, &tmp, sizeof(*retinfo)))
		return -EFAULT;
	return 0;
} /* get_serial_info */


static int set_serial_info(struct usb_serial_port * port, struct serial_struct __user * newinfo)
{ /* set_serial_info */
	struct ftdi_private *priv = usb_get_serial_port_data(port);
	struct serial_struct new_serial;
	struct ftdi_private old_priv;

	if (copy_from_user(&new_serial, newinfo, sizeof(new_serial)))
		return -EFAULT;
	old_priv = * priv;

	/* Do error checking and permission checking */

	if (!capable(CAP_SYS_ADMIN)) {
		if (((new_serial.flags & ~ASYNC_USR_MASK) !=
		     (priv->flags & ~ASYNC_USR_MASK)))
			return -EPERM;
		priv->flags = ((priv->flags & ~ASYNC_USR_MASK) |
			       (new_serial.flags & ASYNC_USR_MASK));
		priv->custom_divisor = new_serial.custom_divisor;
		goto check_and_exit;
	}

	if ((new_serial.baud_base != priv->baud_base) &&
	    (new_serial.baud_base < 9600))
		return -EINVAL;

	/* Make the changes - these are privileged changes! */

	priv->flags = ((priv->flags & ~ASYNC_FLAGS) |
D
David Brownell 已提交
752
	               (new_serial.flags & ASYNC_FLAGS));
L
Linus Torvalds 已提交
753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776
	priv->custom_divisor = new_serial.custom_divisor;

	port->tty->low_latency = (priv->flags & ASYNC_LOW_LATENCY) ? 1 : 0;

check_and_exit:
	if ((old_priv.flags & ASYNC_SPD_MASK) !=
	     (priv->flags & ASYNC_SPD_MASK)) {
		if ((priv->flags & ASYNC_SPD_MASK) == ASYNC_SPD_HI)
			port->tty->alt_speed = 57600;
		else if ((priv->flags & ASYNC_SPD_MASK) == ASYNC_SPD_VHI)
			port->tty->alt_speed = 115200;
		else if ((priv->flags & ASYNC_SPD_MASK) == ASYNC_SPD_SHI)
			port->tty->alt_speed = 230400;
		else if ((priv->flags & ASYNC_SPD_MASK) == ASYNC_SPD_WARP)
			port->tty->alt_speed = 460800;
		else
			port->tty->alt_speed = 0;
	}
	if (((old_priv.flags & ASYNC_SPD_MASK) !=
	     (priv->flags & ASYNC_SPD_MASK)) ||
	    (((priv->flags & ASYNC_SPD_MASK) == ASYNC_SPD_CUST) &&
	     (old_priv.custom_divisor != priv->custom_divisor))) {
		change_speed(port);
	}
D
David Brownell 已提交
777

L
Linus Torvalds 已提交
778 779 780 781 782
	return (0);

} /* set_serial_info */


783 784 785 786 787 788 789 790 791 792
/* Determine type of FTDI chip based on USB config and descriptor. */
static void ftdi_determine_type(struct usb_serial_port *port)
{
	struct ftdi_private *priv = usb_get_serial_port_data(port);
	struct usb_serial *serial = port->serial;
	struct usb_device *udev = serial->dev;
	unsigned version;
	unsigned interfaces;

	/* Assume it is not the original SIO device for now. */
793
	priv->baud_base = 48000000 / 2;
794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827
	priv->write_offset = 0;

	version = le16_to_cpu(udev->descriptor.bcdDevice);
	interfaces = udev->actconfig->desc.bNumInterfaces;
	dbg("%s: bcdDevice = 0x%x, bNumInterfaces = %u", __FUNCTION__,
			version, interfaces);
	if (interfaces > 1) {
		int inter;

		/* Multiple interfaces.  Assume FT2232C. */
		priv->chip_type = FT2232C;
		/* Determine interface code. */
		inter = serial->interface->altsetting->desc.bInterfaceNumber;
		if (inter == 0) {
			priv->interface = PIT_SIOA;
		} else {
			priv->interface = PIT_SIOB;
		}
		/* BM-type devices have a bug where bcdDevice gets set
		 * to 0x200 when iSerialNumber is 0.  */
		if (version < 0x500) {
			dbg("%s: something fishy - bcdDevice too low for multi-interface device",
					__FUNCTION__);
		}
	} else if (version < 0x200) {
		/* Old device.  Assume its the original SIO. */
		priv->chip_type = SIO;
		priv->baud_base = 12000000 / 16;
		priv->write_offset = 1;
	} else if (version < 0x400) {
		/* Assume its an FT8U232AM (or FT8U245AM) */
		/* (It might be a BM because of the iSerialNumber bug,
		 * but it will still work as an AM device.) */
		priv->chip_type = FT8U232AM;
828
	} else if (version < 0x600) {
829 830
		/* Assume its an FT232BM (or FT245BM) */
		priv->chip_type = FT232BM;
831 832 833
	} else {
		/* Assume its an FT232R  */
		priv->chip_type = FT232RL;
834 835 836 837 838
	}
	info("Detected %s", ftdi_chip_name[priv->chip_type]);
}


L
Linus Torvalds 已提交
839 840 841 842 843 844
/*
 * ***************************************************************************
 * Sysfs Attribute
 * ***************************************************************************
 */

845
static ssize_t show_latency_timer(struct device *dev, struct device_attribute *attr, char *buf)
L
Linus Torvalds 已提交
846 847 848
{
	struct usb_serial_port *port = to_usb_serial_port(dev);
	struct ftdi_private *priv = usb_get_serial_port_data(port);
849
	struct usb_device *udev = port->serial->dev;
L
Linus Torvalds 已提交
850 851
	unsigned short latency = 0;
	int rv = 0;
D
David Brownell 已提交
852 853


L
Linus Torvalds 已提交
854
	dbg("%s",__FUNCTION__);
D
David Brownell 已提交
855

L
Linus Torvalds 已提交
856 857 858 859
	rv = usb_control_msg(udev,
			     usb_rcvctrlpipe(udev, 0),
			     FTDI_SIO_GET_LATENCY_TIMER_REQUEST,
			     FTDI_SIO_GET_LATENCY_TIMER_REQUEST_TYPE,
D
David Brownell 已提交
860
			     0, priv->interface,
L
Linus Torvalds 已提交
861
			     (char*) &latency, 1, WDR_TIMEOUT);
D
David Brownell 已提交
862

L
Linus Torvalds 已提交
863
	if (rv < 0) {
864
		dev_err(dev, "Unable to read latency timer: %i\n", rv);
L
Linus Torvalds 已提交
865 866 867 868 869 870
		return -EIO;
	}
	return sprintf(buf, "%i\n", latency);
}

/* Write a new value of the latency timer, in units of milliseconds. */
871
static ssize_t store_latency_timer(struct device *dev, struct device_attribute *attr, const char *valbuf,
L
Linus Torvalds 已提交
872 873 874 875
				   size_t count)
{
	struct usb_serial_port *port = to_usb_serial_port(dev);
	struct ftdi_private *priv = usb_get_serial_port_data(port);
876
	struct usb_device *udev = port->serial->dev;
L
Linus Torvalds 已提交
877 878 879
	char buf[1];
	int v = simple_strtoul(valbuf, NULL, 10);
	int rv = 0;
D
David Brownell 已提交
880

L
Linus Torvalds 已提交
881
	dbg("%s: setting latency timer = %i", __FUNCTION__, v);
D
David Brownell 已提交
882

L
Linus Torvalds 已提交
883 884 885 886
	rv = usb_control_msg(udev,
			     usb_sndctrlpipe(udev, 0),
			     FTDI_SIO_SET_LATENCY_TIMER_REQUEST,
			     FTDI_SIO_SET_LATENCY_TIMER_REQUEST_TYPE,
D
David Brownell 已提交
887
			     v, priv->interface,
L
Linus Torvalds 已提交
888
			     buf, 0, WDR_TIMEOUT);
D
David Brownell 已提交
889

L
Linus Torvalds 已提交
890
	if (rv < 0) {
891
		dev_err(dev, "Unable to write latency timer: %i\n", rv);
L
Linus Torvalds 已提交
892 893
		return -EIO;
	}
D
David Brownell 已提交
894

L
Linus Torvalds 已提交
895 896 897 898 899
	return count;
}

/* Write an event character directly to the FTDI register.  The ASCII
   value is in the low 8 bits, with the enable bit in the 9th bit. */
900
static ssize_t store_event_char(struct device *dev, struct device_attribute *attr, const char *valbuf,
L
Linus Torvalds 已提交
901 902 903 904
				size_t count)
{
	struct usb_serial_port *port = to_usb_serial_port(dev);
	struct ftdi_private *priv = usb_get_serial_port_data(port);
905
	struct usb_device *udev = port->serial->dev;
L
Linus Torvalds 已提交
906 907 908
	char buf[1];
	int v = simple_strtoul(valbuf, NULL, 10);
	int rv = 0;
D
David Brownell 已提交
909

L
Linus Torvalds 已提交
910
	dbg("%s: setting event char = %i", __FUNCTION__, v);
D
David Brownell 已提交
911

L
Linus Torvalds 已提交
912 913 914 915
	rv = usb_control_msg(udev,
			     usb_sndctrlpipe(udev, 0),
			     FTDI_SIO_SET_EVENT_CHAR_REQUEST,
			     FTDI_SIO_SET_EVENT_CHAR_REQUEST_TYPE,
D
David Brownell 已提交
916
			     v, priv->interface,
L
Linus Torvalds 已提交
917
			     buf, 0, WDR_TIMEOUT);
D
David Brownell 已提交
918

L
Linus Torvalds 已提交
919 920 921 922
	if (rv < 0) {
		dbg("Unable to write event character: %i", rv);
		return -EIO;
	}
D
David Brownell 已提交
923

L
Linus Torvalds 已提交
924 925 926 927 928 929
	return count;
}

static DEVICE_ATTR(latency_timer, S_IWUSR | S_IRUGO, show_latency_timer, store_latency_timer);
static DEVICE_ATTR(event_char, S_IWUSR, NULL, store_event_char);

930
static int create_sysfs_attrs(struct usb_serial_port *port)
931
{
932
	struct ftdi_private *priv = usb_get_serial_port_data(port);
933
	int retval = 0;
L
Linus Torvalds 已提交
934 935

	dbg("%s",__FUNCTION__);
936

L
Linus Torvalds 已提交
937 938 939 940
	/* XXX I've no idea if the original SIO supports the event_char
	 * sysfs parameter, so I'm playing it safe.  */
	if (priv->chip_type != SIO) {
		dbg("sysfs attributes for %s", ftdi_chip_name[priv->chip_type]);
941
		retval = device_create_file(&port->dev, &dev_attr_event_char);
942
		if ((!retval) &&
943 944 945
		    (priv->chip_type == FT232BM ||
		     priv->chip_type == FT2232C ||
		     priv->chip_type == FT232RL)) {
946
			retval = device_create_file(&port->dev,
947
						    &dev_attr_latency_timer);
L
Linus Torvalds 已提交
948 949
		}
	}
950
	return retval;
L
Linus Torvalds 已提交
951 952
}

953
static void remove_sysfs_attrs(struct usb_serial_port *port)
L
Linus Torvalds 已提交
954
{
955
	struct ftdi_private *priv = usb_get_serial_port_data(port);
L
Linus Torvalds 已提交
956

D
David Brownell 已提交
957
	dbg("%s",__FUNCTION__);
L
Linus Torvalds 已提交
958 959 960

	/* XXX see create_sysfs_attrs */
	if (priv->chip_type != SIO) {
961
		device_remove_file(&port->dev, &dev_attr_event_char);
962 963 964
		if (priv->chip_type == FT232BM ||
		    priv->chip_type == FT2232C ||
		    priv->chip_type == FT232RL) {
965
			device_remove_file(&port->dev, &dev_attr_latency_timer);
L
Linus Torvalds 已提交
966 967
		}
	}
D
David Brownell 已提交
968

L
Linus Torvalds 已提交
969 970 971 972 973 974 975 976
}

/*
 * ***************************************************************************
 * FTDI driver specific functions
 * ***************************************************************************
 */

977 978 979
/* Probe function to check for special devices */
static int ftdi_sio_probe (struct usb_serial *serial, const struct usb_device_id *id)
{
980 981 982 983 984 985 986 987
	struct ftdi_sio_quirk *quirk = (struct ftdi_sio_quirk *)id->driver_info;

	if (quirk && quirk->probe) {
		int ret = quirk->probe(serial);
		if (ret != 0)
			return ret;
	}

988 989
	usb_set_serial_data(serial, (void *)id->driver_info);

990
	return 0;
991 992
}

993
static int ftdi_sio_port_probe(struct usb_serial_port *port)
L
Linus Torvalds 已提交
994 995
{
	struct ftdi_private *priv;
996 997
	struct ftdi_sio_quirk *quirk = usb_get_serial_data(port->serial);

998

L
Linus Torvalds 已提交
999 1000
	dbg("%s",__FUNCTION__);

1001
	priv = kzalloc(sizeof(struct ftdi_private), GFP_KERNEL);
L
Linus Torvalds 已提交
1002 1003 1004 1005 1006 1007
	if (!priv){
		err("%s- kmalloc(%Zd) failed.", __FUNCTION__, sizeof(struct ftdi_private));
		return -ENOMEM;
	}

	spin_lock_init(&priv->rx_lock);
1008
	spin_lock_init(&priv->tx_lock);
L
Linus Torvalds 已提交
1009 1010 1011 1012 1013
        init_waitqueue_head(&priv->delta_msr_wait);
	/* This will push the characters through immediately rather
	   than queue a task to deliver them */
	priv->flags = ASYNC_LOW_LATENCY;

1014 1015 1016
	if (quirk && quirk->port_probe)
		quirk->port_probe(priv);

L
Linus Torvalds 已提交
1017
	/* Increase the size of read buffers */
1018
	kfree(port->bulk_in_buffer);
L
Linus Torvalds 已提交
1019 1020 1021 1022 1023 1024 1025 1026 1027 1028
	port->bulk_in_buffer = kmalloc (BUFSZ, GFP_KERNEL);
	if (!port->bulk_in_buffer) {
		kfree (priv);
		return -ENOMEM;
	}
	if (port->read_urb) {
		port->read_urb->transfer_buffer = port->bulk_in_buffer;
		port->read_urb->transfer_buffer_length = BUFSZ;
	}

D
David Howells 已提交
1029 1030
	INIT_DELAYED_WORK(&priv->rx_work, ftdi_process_read);
	priv->port = port;
1031

L
Linus Torvalds 已提交
1032 1033 1034 1035 1036
	/* Free port's existing write urb and transfer buffer. */
	if (port->write_urb) {
		usb_free_urb (port->write_urb);
		port->write_urb = NULL;
	}
1037 1038
	kfree(port->bulk_out_buffer);
	port->bulk_out_buffer = NULL;
L
Linus Torvalds 已提交
1039

1040
	usb_set_serial_port_data(port, priv);
L
Linus Torvalds 已提交
1041

1042 1043 1044 1045
	ftdi_determine_type (port);
	create_sysfs_attrs(port);
	return 0;
}
L
Linus Torvalds 已提交
1046

1047 1048
/* Setup for the USB-UIRT device, which requires hardwired
 * baudrate (38400 gets mapped to 312500) */
L
Linus Torvalds 已提交
1049
/* Called from usbserial:serial_probe */
1050
static void ftdi_USB_UIRT_setup (struct ftdi_private *priv)
1051
{
L
Linus Torvalds 已提交
1052 1053 1054 1055
	dbg("%s",__FUNCTION__);

	priv->flags |= ASYNC_SPD_CUST;
	priv->custom_divisor = 77;
1056
	priv->force_baud = 38400;
1057
} /* ftdi_USB_UIRT_setup */
L
Linus Torvalds 已提交
1058

1059 1060
/* Setup for the HE-TIRA1 device, which requires hardwired
 * baudrate (38400 gets mapped to 100000) and RTS-CTS enabled.  */
1061
static void ftdi_HE_TIRA1_setup (struct ftdi_private *priv)
1062
{
L
Linus Torvalds 已提交
1063 1064 1065 1066
	dbg("%s",__FUNCTION__);

	priv->flags |= ASYNC_SPD_CUST;
	priv->custom_divisor = 240;
1067
	priv->force_baud = 38400;
L
Linus Torvalds 已提交
1068
	priv->force_rtscts = 1;
1069
} /* ftdi_HE_TIRA1_setup */
L
Linus Torvalds 已提交
1070

1071
/*
1072 1073 1074
 * First port on JTAG adaptors such as Olimex arm-usb-ocd or the FIC/OpenMoko
 * Neo1973 Debug Board is reserved for JTAG interface and can be accessed from
 * userspace using openocd.
1075
 */
1076
static int ftdi_jtag_probe(struct usb_serial *serial)
1077 1078 1079 1080 1081 1082 1083
{
	struct usb_device *udev = serial->dev;
	struct usb_interface *interface = serial->interface;

	dbg("%s",__FUNCTION__);

	if (interface == udev->actconfig->interface[0]) {
1084
		info("Ignoring serial port reserved for JTAG");
1085 1086 1087 1088 1089
		return -ENODEV;
	}

	return 0;
}
L
Linus Torvalds 已提交
1090

D
David Brownell 已提交
1091
/* ftdi_shutdown is called from usbserial:usb_serial_disconnect
L
Linus Torvalds 已提交
1092 1093 1094 1095 1096 1097 1098
 *   it is called when the usb device is disconnected
 *
 *   usbserial:usb_serial_disconnect
 *      calls __serial_close for each open of the port
 *      shutdown is called then (ie ftdi_shutdown)
 */
static void ftdi_shutdown (struct usb_serial *serial)
1099 1100 1101
{
	dbg("%s", __FUNCTION__);
}
D
David Brownell 已提交
1102

1103 1104
static int ftdi_sio_port_remove(struct usb_serial_port *port)
{
L
Linus Torvalds 已提交
1105 1106 1107 1108
	struct ftdi_private *priv = usb_get_serial_port_data(port);

	dbg("%s", __FUNCTION__);

1109
	remove_sysfs_attrs(port);
D
David Brownell 已提交
1110 1111 1112

	/* all open ports are closed at this point
         *    (by usbserial.c:__serial_close, which calls ftdi_close)
L
Linus Torvalds 已提交
1113 1114 1115 1116 1117 1118 1119
	 */

	if (priv) {
		usb_set_serial_port_data(port, NULL);
		kfree(priv);
	}

1120 1121
	return 0;
}
L
Linus Torvalds 已提交
1122 1123 1124 1125 1126 1127

static int  ftdi_open (struct usb_serial_port *port, struct file *filp)
{ /* ftdi_open */
	struct usb_device *dev = port->serial->dev;
	struct ftdi_private *priv = usb_get_serial_port_data(port);
	unsigned long flags;
D
David Brownell 已提交
1128

L
Linus Torvalds 已提交
1129 1130 1131 1132 1133
	int result = 0;
	char buf[1]; /* Needed for the usb_control_msg I think */

	dbg("%s", __FUNCTION__);

1134 1135 1136 1137 1138 1139 1140
	spin_lock_irqsave(&priv->tx_lock, flags);
	priv->tx_bytes = 0;
	spin_unlock_irqrestore(&priv->tx_lock, flags);
	spin_lock_irqsave(&priv->rx_lock, flags);
	priv->rx_bytes = 0;
	spin_unlock_irqrestore(&priv->rx_lock, flags);

1141 1142
	if (port->tty)
		port->tty->low_latency = (priv->flags & ASYNC_LOW_LATENCY) ? 1 : 0;
L
Linus Torvalds 已提交
1143 1144 1145 1146

	/* No error checking for this (will get errors later anyway) */
	/* See ftdi_sio.h for description of what is reset */
	usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
D
David Brownell 已提交
1147 1148
			FTDI_SIO_RESET_REQUEST, FTDI_SIO_RESET_REQUEST_TYPE,
			FTDI_SIO_RESET_SIO,
L
Linus Torvalds 已提交
1149 1150 1151 1152 1153 1154 1155
			priv->interface, buf, 0, WDR_TIMEOUT);

	/* Termios defaults are set by usb_serial_init. We don't change
	   port->tty->termios - this would loose speed settings, etc.
	   This is same behaviour as serial.c/rs_open() - Kuba */

	/* ftdi_set_termios  will send usb control messages */
1156
	if (port->tty)
1157
		ftdi_set_termios(port, port->tty->termios);
L
Linus Torvalds 已提交
1158 1159 1160 1161

	/* FIXME: Flow control might be enabled, so it should be checked -
	   we have no control of defaults! */
	/* Turn on RTS and DTR since we are not flow controlling by default */
1162
	set_mctrl(port, TIOCM_DTR | TIOCM_RTS);
L
Linus Torvalds 已提交
1163 1164 1165 1166 1167 1168 1169

	/* Not throttled */
	spin_lock_irqsave(&priv->rx_lock, flags);
	priv->rx_flags &= ~(THROTTLED | ACTUALLY_THROTTLED);
	spin_unlock_irqrestore(&priv->rx_lock, flags);

	/* Start reading from the device */
1170
	priv->rx_processed = 0;
L
Linus Torvalds 已提交
1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184
	usb_fill_bulk_urb(port->read_urb, dev,
		      usb_rcvbulkpipe(dev, port->bulk_in_endpointAddress),
		      port->read_urb->transfer_buffer, port->read_urb->transfer_buffer_length,
		      ftdi_read_bulk_callback, port);
	result = usb_submit_urb(port->read_urb, GFP_KERNEL);
	if (result)
		err("%s - failed submitting read urb, error %d", __FUNCTION__, result);


	return result;
} /* ftdi_open */



D
David Brownell 已提交
1185
/*
L
Linus Torvalds 已提交
1186 1187 1188
 * usbserial:__serial_close  only calls ftdi_close if the point is open
 *
 *   This only gets called when it is the last close
D
David Brownell 已提交
1189 1190
 *
 *
L
Linus Torvalds 已提交
1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202
 */

static void ftdi_close (struct usb_serial_port *port, struct file *filp)
{ /* ftdi_close */
	unsigned int c_cflag = port->tty->termios->c_cflag;
	struct ftdi_private *priv = usb_get_serial_port_data(port);
	char buf[1];

	dbg("%s", __FUNCTION__);

	if (c_cflag & HUPCL){
		/* Disable flow control */
D
David Brownell 已提交
1203
		if (usb_control_msg(port->serial->dev,
L
Linus Torvalds 已提交
1204 1205 1206 1207 1208 1209
				    usb_sndctrlpipe(port->serial->dev, 0),
				    FTDI_SIO_SET_FLOW_CTRL_REQUEST,
				    FTDI_SIO_SET_FLOW_CTRL_REQUEST_TYPE,
				    0, priv->interface, buf, 0,
				    WDR_TIMEOUT) < 0) {
			err("error from flowcontrol urb");
D
David Brownell 已提交
1210
		}
L
Linus Torvalds 已提交
1211

1212 1213
		/* drop RTS and DTR */
		clear_mctrl(port, TIOCM_DTR | TIOCM_RTS);
L
Linus Torvalds 已提交
1214
	} /* Note change no line if hupcl is off */
1215 1216 1217 1218

	/* cancel any scheduled reading */
	cancel_delayed_work(&priv->rx_work);
	flush_scheduled_work();
D
David Brownell 已提交
1219

L
Linus Torvalds 已提交
1220
	/* shutdown our bulk read */
M
Mariusz Kozlowski 已提交
1221
	usb_kill_urb(port->read_urb);
L
Linus Torvalds 已提交
1222 1223 1224
} /* ftdi_close */


D
David Brownell 已提交
1225

L
Linus Torvalds 已提交
1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241
/* The SIO requires the first byte to have:
 *  B0 1
 *  B1 0
 *  B2..7 length of message excluding byte 0
 *
 * The new devices do not require this byte
 */
static int ftdi_write (struct usb_serial_port *port,
			   const unsigned char *buf, int count)
{ /* ftdi_write */
	struct ftdi_private *priv = usb_get_serial_port_data(port);
	struct urb *urb;
	unsigned char *buffer;
	int data_offset ;       /* will be 1 for the SIO and 0 otherwise */
	int status;
	int transfer_size;
1242
	unsigned long flags;
L
Linus Torvalds 已提交
1243 1244 1245 1246 1247 1248 1249

	dbg("%s port %d, %d bytes", __FUNCTION__, port->number, count);

	if (count == 0) {
		dbg("write request of 0 bytes");
		return 0;
	}
1250 1251 1252 1253 1254 1255
	spin_lock_irqsave(&priv->tx_lock, flags);
	if (priv->tx_outstanding_urbs > URB_UPPER_LIMIT) {
		spin_unlock_irqrestore(&priv->tx_lock, flags);
		dbg("%s - write limit hit\n", __FUNCTION__);
		return 0;
	}
O
Oliver Neukum 已提交
1256
	priv->tx_outstanding_urbs++;
1257
	spin_unlock_irqrestore(&priv->tx_lock, flags);
D
David Brownell 已提交
1258

L
Linus Torvalds 已提交
1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273
	data_offset = priv->write_offset;
        dbg("data_offset set to %d",data_offset);

	/* Determine total transfer size */
	transfer_size = count;
	if (data_offset > 0) {
		/* Original sio needs control bytes too... */
		transfer_size += (data_offset *
				((count + (PKTSZ - 1 - data_offset)) /
				 (PKTSZ - data_offset)));
	}

	buffer = kmalloc (transfer_size, GFP_ATOMIC);
	if (!buffer) {
		err("%s ran out of kernel memory for urb ...", __FUNCTION__);
O
Oliver Neukum 已提交
1274 1275
		count = -ENOMEM;
		goto error_no_buffer;
L
Linus Torvalds 已提交
1276 1277 1278 1279 1280
	}

	urb = usb_alloc_urb(0, GFP_ATOMIC);
	if (!urb) {
		err("%s - no more free urbs", __FUNCTION__);
O
Oliver Neukum 已提交
1281 1282
		count = -ENOMEM;
		goto error_no_urb;
L
Linus Torvalds 已提交
1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297
	}

	/* Copy data */
	if (data_offset > 0) {
		/* Original sio requires control byte at start of each packet. */
		int user_pktsz = PKTSZ - data_offset;
		int todo = count;
		unsigned char *first_byte = buffer;
		const unsigned char *current_position = buf;

		while (todo > 0) {
			if (user_pktsz > todo) {
				user_pktsz = todo;
			}
			/* Write the control byte at the front of the packet*/
D
David Brownell 已提交
1298
			*first_byte = 1 | ((user_pktsz) << 2);
L
Linus Torvalds 已提交
1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314
			/* Copy data for packet */
			memcpy (first_byte + data_offset,
				current_position, user_pktsz);
			first_byte += user_pktsz + data_offset;
			current_position += user_pktsz;
			todo -= user_pktsz;
		}
	} else {
		/* No control byte required. */
		/* Copy in the data to send */
		memcpy (buffer, buf, count);
	}

	usb_serial_debug_data(debug, &port->dev, __FUNCTION__, transfer_size, buffer);

	/* fill the buffer and send it */
D
David Brownell 已提交
1315
	usb_fill_bulk_urb(urb, port->serial->dev,
L
Linus Torvalds 已提交
1316 1317 1318 1319 1320 1321 1322 1323
		      usb_sndbulkpipe(port->serial->dev, port->bulk_out_endpointAddress),
		      buffer, transfer_size,
		      ftdi_write_bulk_callback, port);

	status = usb_submit_urb(urb, GFP_ATOMIC);
	if (status) {
		err("%s - failed submitting write urb, error %d", __FUNCTION__, status);
		count = status;
O
Oliver Neukum 已提交
1324
		goto error;
1325 1326 1327 1328 1329
	} else {
		spin_lock_irqsave(&priv->tx_lock, flags);
		priv->tx_outstanding_bytes += count;
		priv->tx_bytes += count;
		spin_unlock_irqrestore(&priv->tx_lock, flags);
L
Linus Torvalds 已提交
1330 1331 1332 1333
	}

	/* we are done with this urb, so let the host driver
	 * really free it when it is finished with it */
O
Oliver Neukum 已提交
1334
	usb_free_urb(urb);
L
Linus Torvalds 已提交
1335 1336 1337

	dbg("%s write returning: %d", __FUNCTION__, count);
	return count;
O
Oliver Neukum 已提交
1338 1339 1340 1341 1342 1343 1344 1345 1346
error:
	usb_free_urb(urb);
error_no_urb:
	kfree (buffer);
error_no_buffer:
	spin_lock_irqsave(&priv->tx_lock, flags);
	priv->tx_outstanding_urbs--;
	spin_unlock_irqrestore(&priv->tx_lock, flags);
	return count;
L
Linus Torvalds 已提交
1347 1348 1349 1350 1351
} /* ftdi_write */


/* This function may get called when the device is closed */

1352
static void ftdi_write_bulk_callback (struct urb *urb)
L
Linus Torvalds 已提交
1353
{
1354
	unsigned long flags;
L
Linus Torvalds 已提交
1355
	struct usb_serial_port *port = (struct usb_serial_port *)urb->context;
1356 1357 1358
	struct ftdi_private *priv;
	int data_offset;       /* will be 1 for the SIO and 0 otherwise */
	unsigned long countback;
1359
	int status = urb->status;
L
Linus Torvalds 已提交
1360 1361 1362 1363 1364

	/* free up the transfer buffer, as usb_free_urb() does not do this */
	kfree (urb->transfer_buffer);

	dbg("%s - port %d", __FUNCTION__, port->number);
D
David Brownell 已提交
1365

1366 1367
	if (status) {
		dbg("nonzero write bulk status received: %d", status);
L
Linus Torvalds 已提交
1368 1369 1370
		return;
	}

1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387
	priv = usb_get_serial_port_data(port);
	if (!priv) {
		dbg("%s - bad port private data pointer - exiting", __FUNCTION__);
		return;
	}
	/* account for transferred data */
	countback = urb->actual_length;
	data_offset = priv->write_offset;
	if (data_offset > 0) {
		/* Subtract the control bytes */
		countback -= (data_offset * ((countback + (PKTSZ - 1)) / PKTSZ));
	}
	spin_lock_irqsave(&priv->tx_lock, flags);
	--priv->tx_outstanding_urbs;
	priv->tx_outstanding_bytes -= countback;
	spin_unlock_irqrestore(&priv->tx_lock, flags);

1388
	usb_serial_port_softint(port);
L
Linus Torvalds 已提交
1389 1390 1391 1392 1393
} /* ftdi_write_bulk_callback */


static int ftdi_write_room( struct usb_serial_port *port )
{
1394 1395 1396 1397
	struct ftdi_private *priv = usb_get_serial_port_data(port);
	int room;
	unsigned long flags;

L
Linus Torvalds 已提交
1398 1399
	dbg("%s - port %d", __FUNCTION__, port->number);

1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412
	spin_lock_irqsave(&priv->tx_lock, flags);
	if (priv->tx_outstanding_urbs < URB_UPPER_LIMIT) {
		/*
		 * We really can take anything the user throws at us
		 * but let's pick a nice big number to tell the tty
		 * layer that we have lots of free space
		 */
		room = 2048;
	} else {
		room = 0;
	}
	spin_unlock_irqrestore(&priv->tx_lock, flags);
	return room;
L
Linus Torvalds 已提交
1413 1414 1415 1416 1417
} /* ftdi_write_room */


static int ftdi_chars_in_buffer (struct usb_serial_port *port)
{ /* ftdi_chars_in_buffer */
1418 1419 1420 1421
	struct ftdi_private *priv = usb_get_serial_port_data(port);
	int buffered;
	unsigned long flags;

L
Linus Torvalds 已提交
1422 1423
	dbg("%s - port %d", __FUNCTION__, port->number);

1424 1425 1426 1427 1428 1429 1430 1431
	spin_lock_irqsave(&priv->tx_lock, flags);
	buffered = (int)priv->tx_outstanding_bytes;
	spin_unlock_irqrestore(&priv->tx_lock, flags);
	if (buffered < 0) {
		err("%s outstanding tx bytes is negative!", __FUNCTION__);
		buffered = 0;
	}
	return buffered;
L
Linus Torvalds 已提交
1432 1433 1434 1435
} /* ftdi_chars_in_buffer */



1436
static void ftdi_read_bulk_callback (struct urb *urb)
L
Linus Torvalds 已提交
1437 1438 1439 1440
{ /* ftdi_read_bulk_callback */
	struct usb_serial_port *port = (struct usb_serial_port *)urb->context;
	struct tty_struct *tty;
	struct ftdi_private *priv;
1441 1442
	unsigned long countread;
	unsigned long flags;
1443
	int status = urb->status;
L
Linus Torvalds 已提交
1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471

	if (urb->number_of_packets > 0) {
		err("%s transfer_buffer_length %d actual_length %d number of packets %d",__FUNCTION__,
		    urb->transfer_buffer_length, urb->actual_length, urb->number_of_packets );
		err("%s transfer_flags %x ", __FUNCTION__,urb->transfer_flags );
	}

	dbg("%s - port %d", __FUNCTION__, port->number);

	if (port->open_count <= 0)
		return;

	tty = port->tty;
	if (!tty) {
		dbg("%s - bad tty pointer - exiting",__FUNCTION__);
		return;
	}

	priv = usb_get_serial_port_data(port);
	if (!priv) {
		dbg("%s - bad port private data pointer - exiting", __FUNCTION__);
		return;
	}

	if (urb != port->read_urb) {
		err("%s - Not my urb!", __FUNCTION__);
	}

1472
	if (status) {
L
Linus Torvalds 已提交
1473
		/* This will happen at close every time so it is a dbg not an err */
1474 1475
		dbg("(this is ok on close) nonzero read bulk status received: "
		    "%d", status);
L
Linus Torvalds 已提交
1476 1477 1478
		return;
	}

1479 1480 1481 1482 1483 1484 1485
	/* count data bytes, but not status bytes */
	countread = urb->actual_length;
	countread -= 2 * ((countread + (PKTSZ - 1)) / PKTSZ);
	spin_lock_irqsave(&priv->rx_lock, flags);
	priv->rx_bytes += countread;
	spin_unlock_irqrestore(&priv->rx_lock, flags);

D
David Howells 已提交
1486
	ftdi_process_read(&priv->rx_work.work);
L
Linus Torvalds 已提交
1487 1488 1489 1490

} /* ftdi_read_bulk_callback */


D
David Howells 已提交
1491
static void ftdi_process_read (struct work_struct *work)
L
Linus Torvalds 已提交
1492
{ /* ftdi_process_read */
D
David Howells 已提交
1493 1494 1495
	struct ftdi_private *priv =
		container_of(work, struct ftdi_private, rx_work.work);
	struct usb_serial_port *port = priv->port;
L
Linus Torvalds 已提交
1496 1497 1498
	struct urb *urb;
	struct tty_struct *tty;
	char error_flag;
D
David Brownell 已提交
1499
	unsigned char *data;
L
Linus Torvalds 已提交
1500 1501 1502 1503 1504

	int i;
	int result;
	int need_flip;
	int packet_offset;
1505
	unsigned long flags;
L
Linus Torvalds 已提交
1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531

	dbg("%s - port %d", __FUNCTION__, port->number);

	if (port->open_count <= 0)
		return;

	tty = port->tty;
	if (!tty) {
		dbg("%s - bad tty pointer - exiting",__FUNCTION__);
		return;
	}

	priv = usb_get_serial_port_data(port);
	if (!priv) {
		dbg("%s - bad port private data pointer - exiting", __FUNCTION__);
		return;
	}

	urb = port->read_urb;
	if (!urb) {
		dbg("%s - bad read_urb pointer - exiting", __FUNCTION__);
		return;
	}

	data = urb->transfer_buffer;

1532 1533 1534 1535
	if (priv->rx_processed) {
		dbg("%s - already processed: %d bytes, %d remain", __FUNCTION__,
				priv->rx_processed,
				urb->actual_length - priv->rx_processed);
L
Linus Torvalds 已提交
1536
	} else {
1537 1538 1539 1540 1541 1542 1543
		/* The first two bytes of every read packet are status */
		if (urb->actual_length > 2) {
			usb_serial_debug_data(debug, &port->dev, __FUNCTION__, urb->actual_length, data);
		} else {
			dbg("Status only: %03oo %03oo",data[0],data[1]);
		}
	}
L
Linus Torvalds 已提交
1544 1545 1546 1547 1548 1549 1550 1551


	/* TO DO -- check for hung up line and handle appropriately: */
	/*   send hangup  */
	/* See acm.c - you do a tty_hangup  - eg tty_hangup(tty) */
	/* if CD is dropped and the line is not CLOCAL then we should hangup */

	need_flip = 0;
1552 1553 1554
	for (packet_offset = priv->rx_processed; packet_offset < urb->actual_length; packet_offset += PKTSZ) {
		int length;

L
Linus Torvalds 已提交
1555
		/* Compare new line status to the old one, signal if different */
1556 1557
		/* N.B. packet may be processed more than once, but differences
		 * are only processed once.  */
L
Linus Torvalds 已提交
1558 1559 1560 1561 1562 1563 1564 1565 1566
		if (priv != NULL) {
			char new_status = data[packet_offset+0] & FTDI_STATUS_B0_MASK;
			if (new_status != priv->prev_status) {
				priv->diff_status |= new_status ^ priv->prev_status;
				wake_up_interruptible(&priv->delta_msr_wait);
				priv->prev_status = new_status;
			}
		}

1567 1568 1569 1570 1571 1572 1573 1574 1575 1576
		length = min(PKTSZ, urb->actual_length-packet_offset)-2;
		if (length < 0) {
			err("%s - bad packet length: %d", __FUNCTION__, length+2);
			length = 0;
		}

		if (priv->rx_flags & THROTTLED) {
			dbg("%s - throttled", __FUNCTION__);
			break;
		}
A
Alan Cox 已提交
1577
		if (tty_buffer_request_room(tty, length) < length) {
1578 1579 1580 1581 1582
			/* break out & wait for throttling/unthrottling to happen */
			dbg("%s - receive room low", __FUNCTION__);
			break;
		}

L
Linus Torvalds 已提交
1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604
		/* Handle errors and break */
		error_flag = TTY_NORMAL;
		/* Although the device uses a bitmask and hence can have multiple */
		/* errors on a packet - the order here sets the priority the */
		/* error is returned to the tty layer  */

		if ( data[packet_offset+1] & FTDI_RS_OE ) {
			error_flag = TTY_OVERRUN;
			dbg("OVERRRUN error");
		}
		if ( data[packet_offset+1] & FTDI_RS_BI ) {
			error_flag = TTY_BREAK;
			dbg("BREAK received");
		}
		if ( data[packet_offset+1] & FTDI_RS_PE ) {
			error_flag = TTY_PARITY;
			dbg("PARITY error");
		}
		if ( data[packet_offset+1] & FTDI_RS_FE ) {
			error_flag = TTY_FRAME;
			dbg("FRAMING error");
		}
1605 1606
		if (length > 0) {
			for (i = 2; i < length+2; i++) {
D
David Brownell 已提交
1607
				/* Note that the error flag is duplicated for
L
Linus Torvalds 已提交
1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620
				   every character received since we don't know
				   which character it applied to */
				tty_insert_flip_char(tty, data[packet_offset+i], error_flag);
			}
			need_flip = 1;
		}

#ifdef NOT_CORRECT_BUT_KEEPING_IT_FOR_NOW
		/* if a parity error is detected you get status packets forever
		   until a character is sent without a parity error.
		   This doesn't work well since the application receives a never
		   ending stream of bad data - even though new data hasn't been sent.
		   Therefore I (bill) have taken this out.
D
David Brownell 已提交
1621
		   However - this might make sense for framing errors and so on
L
Linus Torvalds 已提交
1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642
		   so I am leaving the code in for now.
		*/
		else {
			if (error_flag != TTY_NORMAL){
				dbg("error_flag is not normal");
				/* In this case it is just status - if that is an error send a bad character */
				if(tty->flip.count >= TTY_FLIPBUF_SIZE) {
					tty_flip_buffer_push(tty);
				}
				tty_insert_flip_char(tty, 0xff, error_flag);
				need_flip = 1;
			}
		}
#endif
	} /* "for(packet_offset=0..." */

	/* Low latency */
	if (need_flip) {
		tty_flip_buffer_push(tty);
	}

1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671
	if (packet_offset < urb->actual_length) {
		/* not completely processed - record progress */
		priv->rx_processed = packet_offset;
		dbg("%s - incomplete, %d bytes processed, %d remain",
				__FUNCTION__, packet_offset,
				urb->actual_length - packet_offset);
		/* check if we were throttled while processing */
		spin_lock_irqsave(&priv->rx_lock, flags);
		if (priv->rx_flags & THROTTLED) {
			priv->rx_flags |= ACTUALLY_THROTTLED;
			spin_unlock_irqrestore(&priv->rx_lock, flags);
			dbg("%s - deferring remainder until unthrottled",
					__FUNCTION__);
			return;
		}
		spin_unlock_irqrestore(&priv->rx_lock, flags);
		/* if the port is closed stop trying to read */
		if (port->open_count > 0){
			/* delay processing of remainder */
			schedule_delayed_work(&priv->rx_work, 1);
		} else {
			dbg("%s - port is closed", __FUNCTION__);
		}
		return;
	}

	/* urb is completely processed */
	priv->rx_processed = 0;

L
Linus Torvalds 已提交
1672 1673 1674
	/* if the port is closed stop trying to read */
	if (port->open_count > 0){
		/* Continue trying to always read  */
D
David Brownell 已提交
1675
		usb_fill_bulk_urb(port->read_urb, port->serial->dev,
L
Linus Torvalds 已提交
1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691
			      usb_rcvbulkpipe(port->serial->dev, port->bulk_in_endpointAddress),
			      port->read_urb->transfer_buffer, port->read_urb->transfer_buffer_length,
			      ftdi_read_bulk_callback, port);

		result = usb_submit_urb(port->read_urb, GFP_ATOMIC);
		if (result)
			err("%s - failed resubmitting read urb, error %d", __FUNCTION__, result);
	}

	return;
} /* ftdi_process_read */


static void ftdi_break_ctl( struct usb_serial_port *port, int break_state )
{
	struct ftdi_private *priv = usb_get_serial_port_data(port);
D
David Brownell 已提交
1692
	__u16 urb_value = 0;
L
Linus Torvalds 已提交
1693
	char buf[1];
D
David Brownell 已提交
1694

L
Linus Torvalds 已提交
1695 1696 1697 1698 1699 1700 1701
	/* break_state = -1 to turn on break, and 0 to turn off break */
	/* see drivers/char/tty_io.c to see it used */
	/* last_set_data_urb_value NEVER has the break bit set in it */

	if (break_state) {
		urb_value = priv->last_set_data_urb_value | FTDI_SIO_SET_BREAK;
	} else {
D
David Brownell 已提交
1702
		urb_value = priv->last_set_data_urb_value;
L
Linus Torvalds 已提交
1703 1704
	}

D
David Brownell 已提交
1705

L
Linus Torvalds 已提交
1706
	if (usb_control_msg(port->serial->dev, usb_sndctrlpipe(port->serial->dev, 0),
D
David Brownell 已提交
1707
			    FTDI_SIO_SET_DATA_REQUEST,
L
Linus Torvalds 已提交
1708 1709 1710 1711
			    FTDI_SIO_SET_DATA_REQUEST_TYPE,
			    urb_value , priv->interface,
			    buf, 0, WDR_TIMEOUT) < 0) {
		err("%s FAILED to enable/disable break state (state was %d)", __FUNCTION__,break_state);
D
David Brownell 已提交
1712
	}
L
Linus Torvalds 已提交
1713 1714

	dbg("%s break state is %d - urb is %d", __FUNCTION__,break_state, urb_value);
D
David Brownell 已提交
1715

L
Linus Torvalds 已提交
1716 1717 1718 1719 1720 1721 1722 1723
}


/* old_termios contains the original termios settings and tty->termios contains
 * the new setting to be used
 * WARNING: set_termios calls this with old_termios in kernel space
 */

A
Alan Cox 已提交
1724
static void ftdi_set_termios (struct usb_serial_port *port, struct ktermios *old_termios)
L
Linus Torvalds 已提交
1725 1726 1727
{ /* ftdi_termios */
	struct usb_device *dev = port->serial->dev;
	struct ftdi_private *priv = usb_get_serial_port_data(port);
1728 1729
	struct ktermios *termios = port->tty->termios;
	unsigned int cflag = termios->c_cflag;
L
Linus Torvalds 已提交
1730 1731
	__u16 urb_value; /* will hold the new flags */
	char buf[1]; /* Perhaps I should dynamically alloc this? */
D
David Brownell 已提交
1732

L
Linus Torvalds 已提交
1733
	// Added for xon/xoff support
1734
	unsigned int iflag = termios->c_iflag;
L
Linus Torvalds 已提交
1735 1736
	unsigned char vstop;
	unsigned char vstart;
D
David Brownell 已提交
1737

L
Linus Torvalds 已提交
1738 1739 1740
	dbg("%s", __FUNCTION__);

	/* Force baud rate if this device requires it, unless it is set to B0. */
1741
	if (priv->force_baud && ((termios->c_cflag & CBAUD) != B0)) {
L
Linus Torvalds 已提交
1742
		dbg("%s: forcing baud rate for this device", __FUNCTION__);
1743 1744
		tty_encode_baud_rate(port->tty, priv->force_baud,
					priv->force_baud);
L
Linus Torvalds 已提交
1745 1746 1747 1748 1749
	}

	/* Force RTS-CTS if this device requires it. */
	if (priv->force_rtscts) {
		dbg("%s: forcing rtscts for this device", __FUNCTION__);
1750
		termios->c_cflag |= CRTSCTS;
L
Linus Torvalds 已提交
1751 1752
	}

1753
	cflag = termios->c_cflag;
L
Linus Torvalds 已提交
1754

D
David Brownell 已提交
1755 1756
	/* FIXME -For this cut I don't care if the line is really changing or
	   not  - so just do the change regardless  - should be able to
L
Linus Torvalds 已提交
1757
	   compare old_termios and tty->termios */
D
David Brownell 已提交
1758 1759
	/* NOTE These routines can get interrupted by
	   ftdi_sio_read_bulk_callback  - need to examine what this
L
Linus Torvalds 已提交
1760
           means - don't see any problems yet */
D
David Brownell 已提交
1761

L
Linus Torvalds 已提交
1762
	/* Set number of data bits, parity, stop bits */
D
David Brownell 已提交
1763

1764 1765
	termios->c_cflag &= ~CMSPAR;

L
Linus Torvalds 已提交
1766 1767 1768
	urb_value = 0;
	urb_value |= (cflag & CSTOPB ? FTDI_SIO_SET_DATA_STOP_BITS_2 :
		      FTDI_SIO_SET_DATA_STOP_BITS_1);
D
David Brownell 已提交
1769 1770
	urb_value |= (cflag & PARENB ?
		      (cflag & PARODD ? FTDI_SIO_SET_DATA_PARITY_ODD :
L
Linus Torvalds 已提交
1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786
		       FTDI_SIO_SET_DATA_PARITY_EVEN) :
		      FTDI_SIO_SET_DATA_PARITY_NONE);
	if (cflag & CSIZE) {
		switch (cflag & CSIZE) {
		case CS5: urb_value |= 5; dbg("Setting CS5"); break;
		case CS6: urb_value |= 6; dbg("Setting CS6"); break;
		case CS7: urb_value |= 7; dbg("Setting CS7"); break;
		case CS8: urb_value |= 8; dbg("Setting CS8"); break;
		default:
			err("CSIZE was set but not CS5-CS8");
		}
	}

	/* This is needed by the break command since it uses the same command - but is
	 *  or'ed with this value  */
	priv->last_set_data_urb_value = urb_value;
D
David Brownell 已提交
1787

L
Linus Torvalds 已提交
1788
	if (usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
D
David Brownell 已提交
1789
			    FTDI_SIO_SET_DATA_REQUEST,
L
Linus Torvalds 已提交
1790 1791
			    FTDI_SIO_SET_DATA_REQUEST_TYPE,
			    urb_value , priv->interface,
1792
			    buf, 0, WDR_SHORT_TIMEOUT) < 0) {
L
Linus Torvalds 已提交
1793
		err("%s FAILED to set databits/stopbits/parity", __FUNCTION__);
D
David Brownell 已提交
1794
	}
L
Linus Torvalds 已提交
1795 1796 1797 1798 1799

	/* Now do the baudrate */
	if ((cflag & CBAUD) == B0 ) {
		/* Disable flow control */
		if (usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
D
David Brownell 已提交
1800
				    FTDI_SIO_SET_FLOW_CTRL_REQUEST,
L
Linus Torvalds 已提交
1801
				    FTDI_SIO_SET_FLOW_CTRL_REQUEST_TYPE,
D
David Brownell 已提交
1802
				    0, priv->interface,
L
Linus Torvalds 已提交
1803 1804
				    buf, 0, WDR_TIMEOUT) < 0) {
			err("%s error from disable flowcontrol urb", __FUNCTION__);
D
David Brownell 已提交
1805
		}
L
Linus Torvalds 已提交
1806
		/* Drop RTS and DTR */
1807
		clear_mctrl(port, TIOCM_DTR | TIOCM_RTS);
L
Linus Torvalds 已提交
1808 1809 1810
	} else {
		/* set the baudrate determined before */
		if (change_speed(port)) {
1811 1812 1813
			err("%s urb failed to set baudrate", __FUNCTION__);
		}
		/* Ensure RTS and DTR are raised when baudrate changed from 0 */
1814
		if (!old_termios || (old_termios->c_cflag & CBAUD) == B0) {
1815
			set_mctrl(port, TIOCM_DTR | TIOCM_RTS);
L
Linus Torvalds 已提交
1816 1817 1818 1819 1820 1821 1822
		}
	}

	/* Set flow control */
	/* Note device also supports DTR/CD (ugh) and Xon/Xoff in hardware */
	if (cflag & CRTSCTS) {
		dbg("%s Setting to CRTSCTS flow control", __FUNCTION__);
D
David Brownell 已提交
1823
		if (usb_control_msg(dev,
L
Linus Torvalds 已提交
1824
				    usb_sndctrlpipe(dev, 0),
D
David Brownell 已提交
1825
				    FTDI_SIO_SET_FLOW_CTRL_REQUEST,
L
Linus Torvalds 已提交
1826 1827 1828 1829
				    FTDI_SIO_SET_FLOW_CTRL_REQUEST_TYPE,
				    0 , (FTDI_SIO_RTS_CTS_HS | priv->interface),
				    buf, 0, WDR_TIMEOUT) < 0) {
			err("urb failed to set to rts/cts flow control");
D
David Brownell 已提交
1830 1831 1832
		}

	} else {
L
Linus Torvalds 已提交
1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844
		/*
		 * Xon/Xoff code
		 *
		 * Check the IXOFF status in the iflag component of the termios structure
		 * if IXOFF is not set, the pre-xon/xoff code is executed.
		*/
		if (iflag & IXOFF) {
			dbg("%s  request to enable xonxoff iflag=%04x",__FUNCTION__,iflag);
			// Try to enable the XON/XOFF on the ftdi_sio
			// Set the vstart and vstop -- could have been done up above where
			// a lot of other dereferencing is done but that would be very
			// inefficient as vstart and vstop are not always needed
1845 1846
			vstart = termios->c_cc[VSTART];
			vstop = termios->c_cc[VSTOP];
L
Linus Torvalds 已提交
1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861
			urb_value=(vstop << 8) | (vstart);

			if (usb_control_msg(dev,
					    usb_sndctrlpipe(dev, 0),
					    FTDI_SIO_SET_FLOW_CTRL_REQUEST,
					    FTDI_SIO_SET_FLOW_CTRL_REQUEST_TYPE,
					    urb_value , (FTDI_SIO_XON_XOFF_HS
							 | priv->interface),
					    buf, 0, WDR_TIMEOUT) < 0) {
				err("urb failed to set to xon/xoff flow control");
			}
		} else {
			/* else clause to only run if cfag ! CRTSCTS and iflag ! XOFF */
			/* CHECKME Assuming XON/XOFF handled by tty stack - not by device */
			dbg("%s Turning off hardware flow control", __FUNCTION__);
D
David Brownell 已提交
1862
			if (usb_control_msg(dev,
L
Linus Torvalds 已提交
1863
					    usb_sndctrlpipe(dev, 0),
D
David Brownell 已提交
1864
					    FTDI_SIO_SET_FLOW_CTRL_REQUEST,
L
Linus Torvalds 已提交
1865
					    FTDI_SIO_SET_FLOW_CTRL_REQUEST_TYPE,
D
David Brownell 已提交
1866
					    0, priv->interface,
L
Linus Torvalds 已提交
1867 1868
					    buf, 0, WDR_TIMEOUT) < 0) {
				err("urb failed to clear flow control");
D
David Brownell 已提交
1869
			}
L
Linus Torvalds 已提交
1870
		}
D
David Brownell 已提交
1871

L
Linus Torvalds 已提交
1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886
	}
	return;
} /* ftdi_termios */


static int ftdi_tiocmget (struct usb_serial_port *port, struct file *file)
{
	struct ftdi_private *priv = usb_get_serial_port_data(port);
	unsigned char buf[2];
	int ret;

	dbg("%s TIOCMGET", __FUNCTION__);
	switch (priv->chip_type) {
	case SIO:
		/* Request the status from the device */
D
David Brownell 已提交
1887
		if ((ret = usb_control_msg(port->serial->dev,
L
Linus Torvalds 已提交
1888
					   usb_rcvctrlpipe(port->serial->dev, 0),
D
David Brownell 已提交
1889
					   FTDI_SIO_GET_MODEM_STATUS_REQUEST,
L
Linus Torvalds 已提交
1890
					   FTDI_SIO_GET_MODEM_STATUS_REQUEST_TYPE,
D
David Brownell 已提交
1891
					   0, 0,
L
Linus Torvalds 已提交
1892 1893 1894 1895 1896 1897 1898 1899 1900
					   buf, 1, WDR_TIMEOUT)) < 0 ) {
			err("%s Could not get modem status of device - err: %d", __FUNCTION__,
			    ret);
			return(ret);
		}
		break;
	case FT8U232AM:
	case FT232BM:
	case FT2232C:
1901
	case FT232RL:
L
Linus Torvalds 已提交
1902 1903
		/* the 8U232AM returns a two byte value (the sio is a 1 byte value) - in the same
		   format as the data returned from the in point */
D
David Brownell 已提交
1904
		if ((ret = usb_control_msg(port->serial->dev,
L
Linus Torvalds 已提交
1905
					   usb_rcvctrlpipe(port->serial->dev, 0),
D
David Brownell 已提交
1906
					   FTDI_SIO_GET_MODEM_STATUS_REQUEST,
L
Linus Torvalds 已提交
1907
					   FTDI_SIO_GET_MODEM_STATUS_REQUEST_TYPE,
D
David Brownell 已提交
1908
					   0, priv->interface,
L
Linus Torvalds 已提交
1909 1910 1911 1912 1913 1914 1915 1916 1917 1918
					   buf, 2, WDR_TIMEOUT)) < 0 ) {
			err("%s Could not get modem status of device - err: %d", __FUNCTION__,
			    ret);
			return(ret);
		}
		break;
	default:
		return -EFAULT;
		break;
	}
D
David Brownell 已提交
1919

L
Linus Torvalds 已提交
1920 1921 1922 1923
	return  (buf[0] & FTDI_SIO_DSR_MASK ? TIOCM_DSR : 0) |
		(buf[0] & FTDI_SIO_CTS_MASK ? TIOCM_CTS : 0) |
		(buf[0]  & FTDI_SIO_RI_MASK  ? TIOCM_RI  : 0) |
		(buf[0]  & FTDI_SIO_RLSD_MASK ? TIOCM_CD  : 0) |
D
David Brownell 已提交
1924
		priv->last_dtr_rts;
L
Linus Torvalds 已提交
1925 1926 1927 1928 1929
}

static int ftdi_tiocmset(struct usb_serial_port *port, struct file * file, unsigned int set, unsigned int clear)
{
	dbg("%s TIOCMSET", __FUNCTION__);
1930
	return update_mctrl(port, set, clear);
L
Linus Torvalds 已提交
1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989
}


static int ftdi_ioctl (struct usb_serial_port *port, struct file * file, unsigned int cmd, unsigned long arg)
{
	struct ftdi_private *priv = usb_get_serial_port_data(port);

	dbg("%s cmd 0x%04x", __FUNCTION__, cmd);

	/* Based on code from acm.c and others */
	switch (cmd) {

	case TIOCGSERIAL: /* gets serial port data */
		return get_serial_info(port, (struct serial_struct __user *) arg);

	case TIOCSSERIAL: /* sets serial port data */
		return set_serial_info(port, (struct serial_struct __user *) arg);

	/*
	 * Wait for any of the 4 modem inputs (DCD,RI,DSR,CTS) to change
	 * - mask passed in arg for lines of interest
	 *   (use |'ed TIOCM_RNG/DSR/CD/CTS for masking)
	 * Caller should use TIOCGICOUNT to see which one it was.
	 *
	 * This code is borrowed from linux/drivers/char/serial.c
	 */
	case TIOCMIWAIT:
		while (priv != NULL) {
			interruptible_sleep_on(&priv->delta_msr_wait);
			/* see if a signal did it */
			if (signal_pending(current))
				return -ERESTARTSYS;
			else {
				char diff = priv->diff_status;

				if (diff == 0) {
					return -EIO; /* no change => error */
				}

				/* Consume all events */
				priv->diff_status = 0;

				/* Return 0 if caller wanted to know about these bits */
				if ( ((arg & TIOCM_RNG) && (diff & FTDI_RS0_RI)) ||
				     ((arg & TIOCM_DSR) && (diff & FTDI_RS0_DSR)) ||
				     ((arg & TIOCM_CD)  && (diff & FTDI_RS0_RLSD)) ||
				     ((arg & TIOCM_CTS) && (diff & FTDI_RS0_CTS)) ) {
					return 0;
				}
				/*
				 * Otherwise caller can't care less about what happened,
				 * and so we continue to wait for more events.
				 */
			}
		}
		return(0);
		break;
	default:
		break;
D
David Brownell 已提交
1990

L
Linus Torvalds 已提交
1991 1992 1993
	}


D
David Brownell 已提交
1994
	/* This is not necessarily an error - turns out the higher layers will do
L
Linus Torvalds 已提交
1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029
	 *  some ioctls itself (see comment above)
	 */
	dbg("%s arg not supported - it was 0x%04x - check /usr/include/asm/ioctls.h", __FUNCTION__, cmd);

	return(-ENOIOCTLCMD);
} /* ftdi_ioctl */


static void ftdi_throttle (struct usb_serial_port *port)
{
	struct ftdi_private *priv = usb_get_serial_port_data(port);
	unsigned long flags;

	dbg("%s - port %d", __FUNCTION__, port->number);

	spin_lock_irqsave(&priv->rx_lock, flags);
	priv->rx_flags |= THROTTLED;
	spin_unlock_irqrestore(&priv->rx_lock, flags);
}


static void ftdi_unthrottle (struct usb_serial_port *port)
{
	struct ftdi_private *priv = usb_get_serial_port_data(port);
	int actually_throttled;
	unsigned long flags;

	dbg("%s - port %d", __FUNCTION__, port->number);

	spin_lock_irqsave(&priv->rx_lock, flags);
	actually_throttled = priv->rx_flags & ACTUALLY_THROTTLED;
	priv->rx_flags &= ~(THROTTLED | ACTUALLY_THROTTLED);
	spin_unlock_irqrestore(&priv->rx_lock, flags);

	if (actually_throttled)
D
David Howells 已提交
2030
		schedule_delayed_work(&priv->rx_work, 0);
L
Linus Torvalds 已提交
2031 2032 2033 2034 2035 2036 2037
}

static int __init ftdi_init (void)
{
	int retval;

	dbg("%s", __FUNCTION__);
2038 2039 2040 2041 2042 2043 2044 2045 2046
	if (vendor > 0 && product > 0) {
		/* Add user specified VID/PID to reserved element of table. */
		int i;
		for (i = 0; id_table_combined[i].idVendor; i++)
			;
		id_table_combined[i].match_flags = USB_DEVICE_ID_MATCH_DEVICE;
		id_table_combined[i].idVendor = vendor;
		id_table_combined[i].idProduct = product;
	}
2047
	retval = usb_serial_register(&ftdi_sio_device);
L
Linus Torvalds 已提交
2048
	if (retval)
2049
		goto failed_sio_register;
L
Linus Torvalds 已提交
2050
	retval = usb_register(&ftdi_driver);
D
David Brownell 已提交
2051
	if (retval)
L
Linus Torvalds 已提交
2052 2053 2054 2055 2056
		goto failed_usb_register;

	info(DRIVER_VERSION ":" DRIVER_DESC);
	return 0;
failed_usb_register:
2057 2058
	usb_serial_deregister(&ftdi_sio_device);
failed_sio_register:
L
Linus Torvalds 已提交
2059 2060 2061 2062 2063 2064 2065 2066 2067 2068
	return retval;
}


static void __exit ftdi_exit (void)
{

	dbg("%s", __FUNCTION__);

	usb_deregister (&ftdi_driver);
2069
	usb_serial_deregister (&ftdi_sio_device);
L
Linus Torvalds 已提交
2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082

}


module_init(ftdi_init);
module_exit(ftdi_exit);

MODULE_AUTHOR( DRIVER_AUTHOR );
MODULE_DESCRIPTION( DRIVER_DESC );
MODULE_LICENSE("GPL");

module_param(debug, bool, S_IRUGO | S_IWUSR);
MODULE_PARM_DESC(debug, "Debug enabled or not");
2083 2084 2085 2086 2087
module_param(vendor, ushort, 0);
MODULE_PARM_DESC(vendor, "User specified vendor ID (default="
		__MODULE_STRING(FTDI_VID)")");
module_param(product, ushort, 0);
MODULE_PARM_DESC(vendor, "User specified product ID");
L
Linus Torvalds 已提交
2088