Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * USB FTDI SIO driver |
| 3 | * |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 4 | * Copyright (C) 1999 - 2001 |
| 5 | * Greg Kroah-Hartman (greg@kroah.com) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | * Bill Ryder (bryder@sgi.com) |
| 7 | * Copyright (C) 2002 |
| 8 | * Kuba Ober (kuba@mareimbrium.org) |
| 9 | * |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 10 | * 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | * |
| 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-Hartman | 504b55c | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 20 | * 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | * |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | #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-Hartman | a969888 | 2006-07-11 21:22:58 -0700 | [diff] [blame] | 42 | #include <linux/usb/serial.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | #include "ftdi_sio.h" |
| 44 | |
| 45 | /* |
| 46 | * Version Information |
| 47 | */ |
Ian Abbott | 8f977e4 | 2005-06-20 16:45:42 +0100 | [diff] [blame] | 48 | #define DRIVER_VERSION "v1.4.3" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | #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 | |
| 52 | static int debug; |
Ian Abbott | fdcb0a0 | 2005-07-28 18:40:32 +0100 | [diff] [blame] | 53 | static __u16 vendor = FTDI_VID; |
| 54 | static __u16 product; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | |
Oliver Neukum | 0ffbbe25 | 2007-07-09 12:03:08 -0700 | [diff] [blame] | 56 | struct 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 Cox | 669a6db | 2007-10-18 01:24:24 -0700 | [diff] [blame] | 79 | speed_t force_baud; /* if non-zero, force the baud rate to this value */ |
Oliver Neukum | 0ffbbe25 | 2007-07-09 12:03:08 -0700 | [diff] [blame] | 80 | 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 Abbott | 8f977e4 | 2005-06-20 16:45:42 +0100 | [diff] [blame] | 88 | /* struct ftdi_sio_quirk is used by devices requiring special attention. */ |
| 89 | struct ftdi_sio_quirk { |
Tony Lindgren | fa91d43 | 2007-05-04 18:23:24 -0700 | [diff] [blame] | 90 | int (*probe)(struct usb_serial *); |
Oliver Neukum | 0ffbbe25 | 2007-07-09 12:03:08 -0700 | [diff] [blame] | 91 | void (*port_probe)(struct ftdi_private *); /* Special settings for probed ports. */ |
Ian Abbott | 8f977e4 | 2005-06-20 16:45:42 +0100 | [diff] [blame] | 92 | }; |
| 93 | |
Harald Welte | 2073434 | 2008-01-01 15:08:35 +0100 | [diff] [blame] | 94 | static int ftdi_jtag_probe (struct usb_serial *serial); |
Oliver Neukum | 0ffbbe25 | 2007-07-09 12:03:08 -0700 | [diff] [blame] | 95 | static void ftdi_USB_UIRT_setup (struct ftdi_private *priv); |
| 96 | static void ftdi_HE_TIRA1_setup (struct ftdi_private *priv); |
Ian Abbott | 8f977e4 | 2005-06-20 16:45:42 +0100 | [diff] [blame] | 97 | |
Harald Welte | 2073434 | 2008-01-01 15:08:35 +0100 | [diff] [blame] | 98 | static struct ftdi_sio_quirk ftdi_jtag_quirk = { |
| 99 | .probe = ftdi_jtag_probe, |
Tony Lindgren | fa91d43 | 2007-05-04 18:23:24 -0700 | [diff] [blame] | 100 | }; |
| 101 | |
Ian Abbott | 8f977e4 | 2005-06-20 16:45:42 +0100 | [diff] [blame] | 102 | static struct ftdi_sio_quirk ftdi_USB_UIRT_quirk = { |
Oliver Neukum | 0ffbbe25 | 2007-07-09 12:03:08 -0700 | [diff] [blame] | 103 | .port_probe = ftdi_USB_UIRT_setup, |
Ian Abbott | 8f977e4 | 2005-06-20 16:45:42 +0100 | [diff] [blame] | 104 | }; |
| 105 | |
| 106 | static struct ftdi_sio_quirk ftdi_HE_TIRA1_quirk = { |
Oliver Neukum | 0ffbbe25 | 2007-07-09 12:03:08 -0700 | [diff] [blame] | 107 | .port_probe = ftdi_HE_TIRA1_setup, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | }; |
| 109 | |
| 110 | /* |
| 111 | * The 8U232AM has the same API as the sio except for: |
| 112 | * - it can support MUCH higher baudrates; up to: |
| 113 | * o 921600 for RS232 and 2000000 for RS422/485 at 48MHz |
| 114 | * o 230400 at 12MHz |
| 115 | * so .. 8U232AM's baudrate setting codes are different |
| 116 | * - it has a two byte status code. |
| 117 | * - it returns characters every 16ms (the FTDI does it every 40ms) |
| 118 | * |
| 119 | * the bcdDevice value is used to differentiate FT232BM and FT245BM from |
| 120 | * the earlier FT8U232AM and FT8U232BM. For now, include all known VID/PID |
| 121 | * combinations in both tables. |
Ian Abbott | 8f977e4 | 2005-06-20 16:45:42 +0100 | [diff] [blame] | 122 | * FIXME: perhaps bcdDevice can also identify 12MHz FT8U232AM devices, |
| 123 | * but I don't know if those ever went into mass production. [Ian Abbott] |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | */ |
| 125 | |
| 126 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | |
| 128 | static struct usb_device_id id_table_combined [] = { |
Jonathan Davies | 2011e92 | 2006-08-09 10:48:03 +0100 | [diff] [blame] | 129 | { USB_DEVICE(FTDI_VID, FTDI_AMC232_PID) }, |
| 130 | { USB_DEVICE(FTDI_VID, FTDI_CANUSB_PID) }, |
Razvan Gavril | 72a9f95 | 2006-05-04 11:35:49 +0300 | [diff] [blame] | 131 | { USB_DEVICE(FTDI_VID, FTDI_ACTZWAVE_PID) }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | { USB_DEVICE(FTDI_VID, FTDI_IRTRANS_PID) }, |
Luiz Fernando N. Capitulino | 69737df | 2006-04-11 15:52:41 -0300 | [diff] [blame] | 133 | { USB_DEVICE(FTDI_VID, FTDI_IPLUS_PID) }, |
Luiz Fernando N. Capitulino | d099321 | 2007-06-21 22:34:23 -0300 | [diff] [blame] | 134 | { USB_DEVICE(FTDI_VID, FTDI_IPLUS2_PID) }, |
Frank Sievertsen | fad14a0 | 2006-10-20 09:43:53 +0200 | [diff] [blame] | 135 | { USB_DEVICE(FTDI_VID, FTDI_DMX4ALL) }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | { USB_DEVICE(FTDI_VID, FTDI_SIO_PID) }, |
| 137 | { USB_DEVICE(FTDI_VID, FTDI_8U232AM_PID) }, |
| 138 | { USB_DEVICE(FTDI_VID, FTDI_8U232AM_ALT_PID) }, |
Gard Spreemann | d8b2160 | 2007-03-05 00:03:26 +0100 | [diff] [blame] | 139 | { USB_DEVICE(FTDI_VID, FTDI_232RL_PID) }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | { USB_DEVICE(FTDI_VID, FTDI_8U2232C_PID) }, |
Christophe Mariac | c0f8d56 | 2006-06-23 17:36:21 +0200 | [diff] [blame] | 141 | { USB_DEVICE(FTDI_VID, FTDI_MICRO_CHAMELEON_PID) }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | { USB_DEVICE(FTDI_VID, FTDI_RELAIS_PID) }, |
Guido Scholz | 2adb80e | 2007-05-08 19:52:41 +0200 | [diff] [blame] | 143 | { USB_DEVICE(FTDI_VID, FTDI_OPENDCC_PID) }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | { USB_DEVICE(INTERBIOMETRICS_VID, INTERBIOMETRICS_IOBOARD_PID) }, |
| 145 | { USB_DEVICE(INTERBIOMETRICS_VID, INTERBIOMETRICS_MINI_IOBOARD_PID) }, |
| 146 | { USB_DEVICE(FTDI_VID, FTDI_XF_632_PID) }, |
| 147 | { USB_DEVICE(FTDI_VID, FTDI_XF_634_PID) }, |
| 148 | { USB_DEVICE(FTDI_VID, FTDI_XF_547_PID) }, |
| 149 | { USB_DEVICE(FTDI_VID, FTDI_XF_633_PID) }, |
| 150 | { USB_DEVICE(FTDI_VID, FTDI_XF_631_PID) }, |
| 151 | { USB_DEVICE(FTDI_VID, FTDI_XF_635_PID) }, |
| 152 | { USB_DEVICE(FTDI_VID, FTDI_XF_640_PID) }, |
| 153 | { USB_DEVICE(FTDI_VID, FTDI_XF_642_PID) }, |
| 154 | { USB_DEVICE(FTDI_VID, FTDI_DSS20_PID) }, |
| 155 | { USB_DEVICE(FTDI_NF_RIC_VID, FTDI_NF_RIC_PID) }, |
| 156 | { USB_DEVICE(FTDI_VID, FTDI_VNHCPCUSB_D_PID) }, |
Ian Abbott | 8f977e4 | 2005-06-20 16:45:42 +0100 | [diff] [blame] | 157 | { USB_DEVICE(FTDI_VID, FTDI_MTXORB_0_PID) }, |
| 158 | { USB_DEVICE(FTDI_VID, FTDI_MTXORB_1_PID) }, |
| 159 | { USB_DEVICE(FTDI_VID, FTDI_MTXORB_2_PID) }, |
| 160 | { USB_DEVICE(FTDI_VID, FTDI_MTXORB_3_PID) }, |
| 161 | { USB_DEVICE(FTDI_VID, FTDI_MTXORB_4_PID) }, |
| 162 | { USB_DEVICE(FTDI_VID, FTDI_MTXORB_5_PID) }, |
| 163 | { USB_DEVICE(FTDI_VID, FTDI_MTXORB_6_PID) }, |
| 164 | { USB_DEVICE(FTDI_VID, FTDI_PERLE_ULTRAPORT_PID) }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | { USB_DEVICE(FTDI_VID, FTDI_PIEGROUP_PID) }, |
Dave Platt | 274a4bb | 2006-07-18 21:26:54 -0700 | [diff] [blame] | 166 | { USB_DEVICE(FTDI_VID, FTDI_TNC_X_PID) }, |
Jelle Foks | 868e440 | 2007-03-25 21:08:35 -0400 | [diff] [blame] | 167 | { USB_DEVICE(FTDI_VID, FTDI_USBX_707_PID) }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2101_PID) }, |
| 169 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2102_PID) }, |
| 170 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2103_PID) }, |
| 171 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2104_PID) }, |
Justin Carlson | a148482 | 2006-09-24 11:52:12 +0300 | [diff] [blame] | 172 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2106_PID) }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2201_1_PID) }, |
| 174 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2201_2_PID) }, |
| 175 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2202_1_PID) }, |
| 176 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2202_2_PID) }, |
| 177 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2203_1_PID) }, |
| 178 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2203_2_PID) }, |
| 179 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2401_1_PID) }, |
| 180 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2401_2_PID) }, |
| 181 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2401_3_PID) }, |
| 182 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2401_4_PID) }, |
| 183 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2402_1_PID) }, |
| 184 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2402_2_PID) }, |
| 185 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2402_3_PID) }, |
| 186 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2402_4_PID) }, |
| 187 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2403_1_PID) }, |
| 188 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2403_2_PID) }, |
| 189 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2403_3_PID) }, |
| 190 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2403_4_PID) }, |
| 191 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_1_PID) }, |
| 192 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_2_PID) }, |
| 193 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_3_PID) }, |
| 194 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_4_PID) }, |
| 195 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_5_PID) }, |
| 196 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_6_PID) }, |
| 197 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_7_PID) }, |
| 198 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_8_PID) }, |
| 199 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_1_PID) }, |
| 200 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_2_PID) }, |
| 201 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_3_PID) }, |
| 202 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_4_PID) }, |
| 203 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_5_PID) }, |
| 204 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_6_PID) }, |
| 205 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_7_PID) }, |
| 206 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_8_PID) }, |
| 207 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_1_PID) }, |
| 208 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_2_PID) }, |
| 209 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_3_PID) }, |
| 210 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_4_PID) }, |
| 211 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_5_PID) }, |
| 212 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_6_PID) }, |
| 213 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_7_PID) }, |
| 214 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_8_PID) }, |
| 215 | { USB_DEVICE(IDTECH_VID, IDTECH_IDT1221U_PID) }, |
| 216 | { USB_DEVICE(OCT_VID, OCT_US101_PID) }, |
Ian Abbott | 8f977e4 | 2005-06-20 16:45:42 +0100 | [diff] [blame] | 217 | { USB_DEVICE(FTDI_VID, FTDI_HE_TIRA1_PID), |
| 218 | .driver_info = (kernel_ulong_t)&ftdi_HE_TIRA1_quirk }, |
| 219 | { USB_DEVICE(FTDI_VID, FTDI_USB_UIRT_PID), |
| 220 | .driver_info = (kernel_ulong_t)&ftdi_USB_UIRT_quirk }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | { USB_DEVICE(FTDI_VID, PROTEGO_SPECIAL_1) }, |
| 222 | { USB_DEVICE(FTDI_VID, PROTEGO_R2X0) }, |
| 223 | { USB_DEVICE(FTDI_VID, PROTEGO_SPECIAL_3) }, |
| 224 | { USB_DEVICE(FTDI_VID, PROTEGO_SPECIAL_4) }, |
Ian Abbott | 8f977e4 | 2005-06-20 16:45:42 +0100 | [diff] [blame] | 225 | { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E808_PID) }, |
| 226 | { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E809_PID) }, |
| 227 | { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E80A_PID) }, |
| 228 | { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E80B_PID) }, |
| 229 | { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E80C_PID) }, |
| 230 | { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E80D_PID) }, |
| 231 | { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E80E_PID) }, |
| 232 | { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E80F_PID) }, |
| 233 | { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E888_PID) }, |
| 234 | { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E889_PID) }, |
| 235 | { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E88A_PID) }, |
| 236 | { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E88B_PID) }, |
| 237 | { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E88C_PID) }, |
| 238 | { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E88D_PID) }, |
| 239 | { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E88E_PID) }, |
| 240 | { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E88F_PID) }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | { USB_DEVICE(FTDI_VID, FTDI_ELV_UO100_PID) }, |
Ian Abbott | 4790074 | 2005-05-17 15:12:13 +0100 | [diff] [blame] | 242 | { USB_DEVICE(FTDI_VID, FTDI_ELV_UM100_PID) }, |
Ian Abbott | e6ac4a4 | 2005-08-02 14:01:27 +0100 | [diff] [blame] | 243 | { USB_DEVICE(FTDI_VID, FTDI_ELV_UR100_PID) }, |
| 244 | { USB_DEVICE(FTDI_VID, FTDI_ELV_ALC8500_PID) }, |
Thomas Riewe | 207c47e | 2005-09-29 14:57:29 +0200 | [diff] [blame] | 245 | { USB_DEVICE(FTDI_VID, FTDI_PYRAMID_PID) }, |
Martin Hagelin | bde6218 | 2005-10-26 21:10:41 +0200 | [diff] [blame] | 246 | { USB_DEVICE(FTDI_VID, FTDI_ELV_FHZ1000PC_PID) }, |
Thomas Schleusener | 4eaf60e | 2007-02-28 22:50:52 +0100 | [diff] [blame] | 247 | { USB_DEVICE(FTDI_VID, FTDI_IBS_US485_PID) }, |
| 248 | { USB_DEVICE(FTDI_VID, FTDI_IBS_PICPRO_PID) }, |
| 249 | { USB_DEVICE(FTDI_VID, FTDI_IBS_PCMCIA_PID) }, |
| 250 | { USB_DEVICE(FTDI_VID, FTDI_IBS_PK1_PID) }, |
| 251 | { USB_DEVICE(FTDI_VID, FTDI_IBS_RS232MON_PID) }, |
| 252 | { USB_DEVICE(FTDI_VID, FTDI_IBS_APP70_PID) }, |
| 253 | { USB_DEVICE(FTDI_VID, FTDI_IBS_PEDO_PID) }, |
| 254 | { USB_DEVICE(FTDI_VID, FTDI_IBS_PROD_PID) }, |
Ian Abbott | e6ac4a4 | 2005-08-02 14:01:27 +0100 | [diff] [blame] | 255 | /* |
Peter Stark | 42f8aa9 | 2007-12-25 18:32:08 +0100 | [diff] [blame] | 256 | * Due to many user requests for multiple ELV devices we enable |
| 257 | * them by default. |
Ian Abbott | e6ac4a4 | 2005-08-02 14:01:27 +0100 | [diff] [blame] | 258 | */ |
Peter Stark | 42f8aa9 | 2007-12-25 18:32:08 +0100 | [diff] [blame] | 259 | { USB_DEVICE(FTDI_VID, FTDI_ELV_CLI7000_PID) }, |
| 260 | { USB_DEVICE(FTDI_VID, FTDI_ELV_PPS7330_PID) }, |
| 261 | { USB_DEVICE(FTDI_VID, FTDI_ELV_TFM100_PID) }, |
| 262 | { USB_DEVICE(FTDI_VID, FTDI_ELV_UDF77_PID) }, |
| 263 | { USB_DEVICE(FTDI_VID, FTDI_ELV_UIO88_PID) }, |
| 264 | { USB_DEVICE(FTDI_VID, FTDI_ELV_UAD8_PID) }, |
| 265 | { USB_DEVICE(FTDI_VID, FTDI_ELV_UDA7_PID) }, |
| 266 | { USB_DEVICE(FTDI_VID, FTDI_ELV_USI2_PID) }, |
| 267 | { USB_DEVICE(FTDI_VID, FTDI_ELV_T1100_PID) }, |
| 268 | { USB_DEVICE(FTDI_VID, FTDI_ELV_PCD200_PID) }, |
| 269 | { USB_DEVICE(FTDI_VID, FTDI_ELV_ULA200_PID) }, |
| 270 | { USB_DEVICE(FTDI_VID, FTDI_ELV_CSI8_PID) }, |
| 271 | { USB_DEVICE(FTDI_VID, FTDI_ELV_EM1000DL_PID) }, |
| 272 | { USB_DEVICE(FTDI_VID, FTDI_ELV_PCK100_PID) }, |
| 273 | { USB_DEVICE(FTDI_VID, FTDI_ELV_RFP500_PID) }, |
| 274 | { USB_DEVICE(FTDI_VID, FTDI_ELV_FS20SIG_PID) }, |
| 275 | { USB_DEVICE(FTDI_VID, FTDI_ELV_WS300PC_PID) }, |
| 276 | { USB_DEVICE(FTDI_VID, FTDI_ELV_FHZ1300PC_PID) }, |
| 277 | { USB_DEVICE(FTDI_VID, FTDI_ELV_WS500_PID) }, |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 278 | { USB_DEVICE(FTDI_VID, LINX_SDMUSBQSS_PID) }, |
| 279 | { USB_DEVICE(FTDI_VID, LINX_MASTERDEVEL2_PID) }, |
| 280 | { USB_DEVICE(FTDI_VID, LINX_FUTURE_0_PID) }, |
| 281 | { USB_DEVICE(FTDI_VID, LINX_FUTURE_1_PID) }, |
| 282 | { USB_DEVICE(FTDI_VID, LINX_FUTURE_2_PID) }, |
| 283 | { USB_DEVICE(FTDI_VID, FTDI_CCSICDU20_0_PID) }, |
| 284 | { USB_DEVICE(FTDI_VID, FTDI_CCSICDU40_1_PID) }, |
Jan Capek | ec434e9 | 2006-11-28 22:35:12 +0100 | [diff] [blame] | 285 | { USB_DEVICE(FTDI_VID, FTDI_CCSMACHX_2_PID) }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 286 | { USB_DEVICE(FTDI_VID, INSIDE_ACCESSO) }, |
| 287 | { USB_DEVICE(INTREPID_VID, INTREPID_VALUECAN_PID) }, |
| 288 | { USB_DEVICE(INTREPID_VID, INTREPID_NEOVI_PID) }, |
| 289 | { USB_DEVICE(FALCOM_VID, FALCOM_TWIST_PID) }, |
Ian Abbott | e6ac4a4 | 2005-08-02 14:01:27 +0100 | [diff] [blame] | 290 | { USB_DEVICE(FALCOM_VID, FALCOM_SAMBA_PID) }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 291 | { USB_DEVICE(FTDI_VID, FTDI_SUUNTO_SPORTS_PID) }, |
Michael Olberg | ef31fec | 2007-02-27 12:57:12 +0100 | [diff] [blame] | 292 | { USB_DEVICE(TTI_VID, TTI_QL355P_PID) }, |
Ian Abbott | 6f92872 | 2005-04-29 16:06:14 +0100 | [diff] [blame] | 293 | { USB_DEVICE(FTDI_VID, FTDI_RM_CANVIEW_PID) }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 294 | { USB_DEVICE(BANDB_VID, BANDB_USOTL4_PID) }, |
| 295 | { USB_DEVICE(BANDB_VID, BANDB_USTL4_PID) }, |
| 296 | { USB_DEVICE(BANDB_VID, BANDB_USO9ML2_PID) }, |
| 297 | { USB_DEVICE(FTDI_VID, EVER_ECO_PRO_CDS) }, |
Ian Abbott | 6f92872 | 2005-04-29 16:06:14 +0100 | [diff] [blame] | 298 | { USB_DEVICE(FTDI_VID, FTDI_4N_GALAXY_DE_1_PID) }, |
| 299 | { USB_DEVICE(FTDI_VID, FTDI_4N_GALAXY_DE_2_PID) }, |
Ian Abbott | e6ac4a4 | 2005-08-02 14:01:27 +0100 | [diff] [blame] | 300 | { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_0_PID) }, |
| 301 | { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_1_PID) }, |
| 302 | { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_2_PID) }, |
| 303 | { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_3_PID) }, |
| 304 | { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_4_PID) }, |
| 305 | { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_5_PID) }, |
| 306 | { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_6_PID) }, |
| 307 | { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_7_PID) }, |
Ian Abbott | 6f92872 | 2005-04-29 16:06:14 +0100 | [diff] [blame] | 308 | { USB_DEVICE(MOBILITY_VID, MOBILITY_USB_SERIAL_PID) }, |
Ian Abbott | 8f977e4 | 2005-06-20 16:45:42 +0100 | [diff] [blame] | 309 | { USB_DEVICE(FTDI_VID, FTDI_ACTIVE_ROBOTS_PID) }, |
Ian Abbott | 34d1a8a | 2006-02-27 14:05:32 +0000 | [diff] [blame] | 310 | { USB_DEVICE(FTDI_VID, FTDI_MHAM_KW_PID) }, |
| 311 | { USB_DEVICE(FTDI_VID, FTDI_MHAM_YS_PID) }, |
Ian Abbott | 9b1513d | 2005-07-29 12:16:31 -0700 | [diff] [blame] | 312 | { USB_DEVICE(FTDI_VID, FTDI_MHAM_Y6_PID) }, |
| 313 | { USB_DEVICE(FTDI_VID, FTDI_MHAM_Y8_PID) }, |
Ian Abbott | 34d1a8a | 2006-02-27 14:05:32 +0000 | [diff] [blame] | 314 | { USB_DEVICE(FTDI_VID, FTDI_MHAM_IC_PID) }, |
| 315 | { USB_DEVICE(FTDI_VID, FTDI_MHAM_DB9_PID) }, |
| 316 | { USB_DEVICE(FTDI_VID, FTDI_MHAM_RS232_PID) }, |
| 317 | { USB_DEVICE(FTDI_VID, FTDI_MHAM_Y9_PID) }, |
Ian Abbott | 740a4282 | 2005-12-13 16:18:47 +0000 | [diff] [blame] | 318 | { USB_DEVICE(FTDI_VID, FTDI_TERATRONIK_VCP_PID) }, |
| 319 | { USB_DEVICE(FTDI_VID, FTDI_TERATRONIK_D2XX_PID) }, |
Ian Abbott | 9b1513d | 2005-07-29 12:16:31 -0700 | [diff] [blame] | 320 | { USB_DEVICE(EVOLUTION_VID, EVOLUTION_ER1_PID) }, |
Søren Hauberg | c1f8ea7 | 2007-08-08 10:50:17 +0200 | [diff] [blame] | 321 | { USB_DEVICE(EVOLUTION_VID, EVO_HYBRID_PID) }, |
| 322 | { USB_DEVICE(EVOLUTION_VID, EVO_RCM4_PID) }, |
Rui Santos | c9c7746 | 2005-09-23 20:06:50 +0100 | [diff] [blame] | 323 | { USB_DEVICE(FTDI_VID, FTDI_ARTEMIS_PID) }, |
| 324 | { USB_DEVICE(FTDI_VID, FTDI_ATIK_ATK16_PID) }, |
Rui Santos | 09c280a | 2006-01-09 13:12:40 +0000 | [diff] [blame] | 325 | { USB_DEVICE(FTDI_VID, FTDI_ATIK_ATK16C_PID) }, |
Rui Santos | c9c7746 | 2005-09-23 20:06:50 +0100 | [diff] [blame] | 326 | { USB_DEVICE(FTDI_VID, FTDI_ATIK_ATK16HR_PID) }, |
Rui Santos | 09c280a | 2006-01-09 13:12:40 +0000 | [diff] [blame] | 327 | { USB_DEVICE(FTDI_VID, FTDI_ATIK_ATK16HRC_PID) }, |
Franco Lanza | 3491043 | 2007-12-26 03:29:33 +0100 | [diff] [blame] | 328 | { USB_DEVICE(FTDI_VID, FTDI_ATIK_ATK16IC_PID) }, |
Ian Abbott | b4723ae | 2005-11-23 15:45:23 -0800 | [diff] [blame] | 329 | { USB_DEVICE(KOBIL_VID, KOBIL_CONV_B1_PID) }, |
| 330 | { USB_DEVICE(KOBIL_VID, KOBIL_CONV_KAAN_PID) }, |
Pavel Fedin | effac8b | 2005-12-09 09:30:59 +0300 | [diff] [blame] | 331 | { USB_DEVICE(POSIFLEX_VID, POSIFLEX_PP7000_PID) }, |
Louis Nyffenegger | 641adaa | 2006-01-05 17:20:37 +0100 | [diff] [blame] | 332 | { USB_DEVICE(FTDI_VID, FTDI_TTUSB_PID) }, |
Ian Abbott | 7e1c0b8 | 2006-03-21 14:55:20 +0000 | [diff] [blame] | 333 | { USB_DEVICE(FTDI_VID, FTDI_ECLO_COM_1WIRE_PID) }, |
Ian Abbott | a94b52a | 2006-01-09 17:11:40 +0000 | [diff] [blame] | 334 | { USB_DEVICE(FTDI_VID, FTDI_WESTREX_MODEL_777_PID) }, |
| 335 | { USB_DEVICE(FTDI_VID, FTDI_WESTREX_MODEL_8900F_PID) }, |
Wouter Paesen | ce40d29 | 2006-01-03 14:30:31 +0100 | [diff] [blame] | 336 | { USB_DEVICE(FTDI_VID, FTDI_PCDJ_DAC2_PID) }, |
Nathan Bronson | cdd3b15 | 2006-04-10 00:05:09 -0400 | [diff] [blame] | 337 | { USB_DEVICE(FTDI_VID, FTDI_RRCIRKITS_LOCOBUFFER_PID) }, |
Ian Abbott | 7e0258f | 2006-04-12 15:20:35 +0100 | [diff] [blame] | 338 | { USB_DEVICE(FTDI_VID, FTDI_ASK_RDR400_PID) }, |
A. Maitland Bottoms | bf58fbd | 2006-03-14 18:44:23 -0500 | [diff] [blame] | 339 | { USB_DEVICE(ICOM_ID1_VID, ICOM_ID1_PID) }, |
Folkert van Heusden | 62a13db | 2006-03-28 20:41:26 +0900 | [diff] [blame] | 340 | { USB_DEVICE(PAPOUCH_VID, PAPOUCH_TMU_PID) }, |
Ian Abbott | 20a0f47 | 2006-05-04 11:34:25 +0100 | [diff] [blame] | 341 | { USB_DEVICE(FTDI_VID, FTDI_ACG_HFDUAL_PID) }, |
Ian Abbott | eb79b4f | 2006-05-30 12:36:30 +0100 | [diff] [blame] | 342 | { USB_DEVICE(FTDI_VID, FTDI_YEI_SERVOCENTER31_PID) }, |
D. Peter Siddons | 4843748 | 2006-06-17 18:09:15 -0400 | [diff] [blame] | 343 | { USB_DEVICE(FTDI_VID, FTDI_THORLABS_PID) }, |
Colin Leroy | e1979fe | 2006-07-11 11:36:43 +0200 | [diff] [blame] | 344 | { USB_DEVICE(TESTO_VID, TESTO_USB_INTERFACE_PID) }, |
Ralf Schlatterbeck | eaede2c | 2006-09-06 12:15:02 +0200 | [diff] [blame] | 345 | { USB_DEVICE(FTDI_VID, FTDI_GAMMA_SCOUT_PID) }, |
Ian Abbott | 9978f9e | 2006-09-25 14:19:19 +0100 | [diff] [blame] | 346 | { USB_DEVICE(FTDI_VID, FTDI_TACTRIX_OPENPORT_13M_PID) }, |
| 347 | { USB_DEVICE(FTDI_VID, FTDI_TACTRIX_OPENPORT_13S_PID) }, |
| 348 | { USB_DEVICE(FTDI_VID, FTDI_TACTRIX_OPENPORT_13U_PID) }, |
Kjell Myksvoll | 40c3609 | 2006-10-22 23:26:42 +0200 | [diff] [blame] | 349 | { USB_DEVICE(ELEKTOR_VID, ELEKTOR_FT323R_PID) }, |
Micke Prag | 822c7ef | 2007-02-04 23:39:11 +0100 | [diff] [blame] | 350 | { USB_DEVICE(TELLDUS_VID, TELLDUS_TELLSTICK_PID) }, |
Neil \"Superna\" ARMSTRONG | 762e92f | 2007-04-25 20:34:28 +0200 | [diff] [blame] | 351 | { USB_DEVICE(FTDI_VID, FTDI_MAXSTREAM_PID) }, |
Pierre Castella | d7fde2d | 2007-09-06 22:34:39 +0200 | [diff] [blame] | 352 | { USB_DEVICE(TML_VID, TML_USB_SERIAL_PID) }, |
Ed Beroset | 4bb0ef1 | 2008-01-17 17:37:46 -0500 | [diff] [blame] | 353 | { USB_DEVICE(FTDI_VID, FTDI_ELSTER_UNICOM_PID) }, |
Tony Lindgren | fa91d43 | 2007-05-04 18:23:24 -0700 | [diff] [blame] | 354 | { USB_DEVICE(OLIMEX_VID, OLIMEX_ARM_USB_OCD_PID), |
Harald Welte | 2073434 | 2008-01-01 15:08:35 +0100 | [diff] [blame] | 355 | .driver_info = (kernel_ulong_t)&ftdi_jtag_quirk }, |
| 356 | { USB_DEVICE(FIC_VID, FIC_NEO1973_DEBUG_PID), |
| 357 | .driver_info = (kernel_ulong_t)&ftdi_jtag_quirk }, |
| 358 | { USB_DEVICE(FTDI_VID, FTDI_OOCDLINK_PID), |
| 359 | .driver_info = (kernel_ulong_t)&ftdi_jtag_quirk }, |
Ian Abbott | fdcb0a0 | 2005-07-28 18:40:32 +0100 | [diff] [blame] | 360 | { }, /* Optional parameter entry */ |
| 361 | { } /* Terminating entry */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 362 | }; |
| 363 | |
| 364 | MODULE_DEVICE_TABLE (usb, id_table_combined); |
| 365 | |
| 366 | static struct usb_driver ftdi_driver = { |
| 367 | .name = "ftdi_sio", |
| 368 | .probe = usb_serial_probe, |
| 369 | .disconnect = usb_serial_disconnect, |
| 370 | .id_table = id_table_combined, |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 371 | .no_dynamic_id = 1, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 372 | }; |
| 373 | |
Arjan van de Ven | 4c4c943 | 2005-11-29 09:43:42 +0100 | [diff] [blame] | 374 | static const char *ftdi_chip_name[] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 375 | [SIO] = "SIO", /* the serial part of FT8U100AX */ |
| 376 | [FT8U232AM] = "FT8U232AM", |
| 377 | [FT232BM] = "FT232BM", |
| 378 | [FT2232C] = "FT2232C", |
Gard Spreemann | d8b2160 | 2007-03-05 00:03:26 +0100 | [diff] [blame] | 379 | [FT232RL] = "FT232RL", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 380 | }; |
| 381 | |
| 382 | |
| 383 | /* Constants for read urb and write urb */ |
| 384 | #define BUFSZ 512 |
| 385 | #define PKTSZ 64 |
| 386 | |
| 387 | /* rx_flags */ |
| 388 | #define THROTTLED 0x01 |
| 389 | #define ACTUALLY_THROTTLED 0x02 |
| 390 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 391 | /* Used for TIOCMIWAIT */ |
| 392 | #define FTDI_STATUS_B0_MASK (FTDI_RS0_CTS | FTDI_RS0_DSR | FTDI_RS0_RI | FTDI_RS0_RLSD) |
| 393 | #define FTDI_STATUS_B1_MASK (FTDI_RS_BI) |
| 394 | /* End TIOCMIWAIT */ |
| 395 | |
| 396 | #define FTDI_IMPL_ASYNC_FLAGS = ( ASYNC_SPD_HI | ASYNC_SPD_VHI \ |
| 397 | ASYNC_SPD_CUST | ASYNC_SPD_SHI | ASYNC_SPD_WARP ) |
| 398 | |
| 399 | /* function prototypes for a FTDI serial converter */ |
Ian Abbott | 8f977e4 | 2005-06-20 16:45:42 +0100 | [diff] [blame] | 400 | static int ftdi_sio_probe (struct usb_serial *serial, const struct usb_device_id *id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 401 | static void ftdi_shutdown (struct usb_serial *serial); |
Jim Radford | 12bdbe0 | 2007-02-28 10:10:50 -0800 | [diff] [blame] | 402 | static int ftdi_sio_port_probe (struct usb_serial_port *port); |
| 403 | static int ftdi_sio_port_remove (struct usb_serial_port *port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 404 | static int ftdi_open (struct usb_serial_port *port, struct file *filp); |
| 405 | static void ftdi_close (struct usb_serial_port *port, struct file *filp); |
| 406 | static int ftdi_write (struct usb_serial_port *port, const unsigned char *buf, int count); |
| 407 | static int ftdi_write_room (struct usb_serial_port *port); |
| 408 | static int ftdi_chars_in_buffer (struct usb_serial_port *port); |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 409 | static void ftdi_write_bulk_callback (struct urb *urb); |
| 410 | static void ftdi_read_bulk_callback (struct urb *urb); |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 411 | static void ftdi_process_read (struct work_struct *work); |
Alan Cox | 606d099 | 2006-12-08 02:38:45 -0800 | [diff] [blame] | 412 | static void ftdi_set_termios (struct usb_serial_port *port, struct ktermios * old); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 413 | static int ftdi_tiocmget (struct usb_serial_port *port, struct file *file); |
| 414 | static int ftdi_tiocmset (struct usb_serial_port *port, struct file * file, unsigned int set, unsigned int clear); |
| 415 | static int ftdi_ioctl (struct usb_serial_port *port, struct file * file, unsigned int cmd, unsigned long arg); |
| 416 | static void ftdi_break_ctl (struct usb_serial_port *port, int break_state ); |
| 417 | static void ftdi_throttle (struct usb_serial_port *port); |
| 418 | static void ftdi_unthrottle (struct usb_serial_port *port); |
| 419 | |
| 420 | static unsigned short int ftdi_232am_baud_base_to_divisor (int baud, int base); |
| 421 | static unsigned short int ftdi_232am_baud_to_divisor (int baud); |
| 422 | static __u32 ftdi_232bm_baud_base_to_divisor (int baud, int base); |
| 423 | static __u32 ftdi_232bm_baud_to_divisor (int baud); |
| 424 | |
Greg Kroah-Hartman | ea65370 | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 425 | static struct usb_serial_driver ftdi_sio_device = { |
Greg Kroah-Hartman | 18fcac3 | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 426 | .driver = { |
| 427 | .owner = THIS_MODULE, |
Greg Kroah-Hartman | 269bda1 | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 428 | .name = "ftdi_sio", |
Greg Kroah-Hartman | 18fcac3 | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 429 | }, |
Greg Kroah-Hartman | 269bda1 | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 430 | .description = "FTDI USB Serial Device", |
Johannes Hölzl | d9b1b78 | 2006-12-17 21:50:24 +0100 | [diff] [blame] | 431 | .usb_driver = &ftdi_driver , |
Ian Abbott | 8f977e4 | 2005-06-20 16:45:42 +0100 | [diff] [blame] | 432 | .id_table = id_table_combined, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 433 | .num_interrupt_in = 0, |
| 434 | .num_bulk_in = 1, |
| 435 | .num_bulk_out = 1, |
| 436 | .num_ports = 1, |
Ian Abbott | 8f977e4 | 2005-06-20 16:45:42 +0100 | [diff] [blame] | 437 | .probe = ftdi_sio_probe, |
Jim Radford | 12bdbe0 | 2007-02-28 10:10:50 -0800 | [diff] [blame] | 438 | .port_probe = ftdi_sio_port_probe, |
| 439 | .port_remove = ftdi_sio_port_remove, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 440 | .open = ftdi_open, |
| 441 | .close = ftdi_close, |
| 442 | .throttle = ftdi_throttle, |
| 443 | .unthrottle = ftdi_unthrottle, |
| 444 | .write = ftdi_write, |
| 445 | .write_room = ftdi_write_room, |
| 446 | .chars_in_buffer = ftdi_chars_in_buffer, |
| 447 | .read_bulk_callback = ftdi_read_bulk_callback, |
| 448 | .write_bulk_callback = ftdi_write_bulk_callback, |
| 449 | .tiocmget = ftdi_tiocmget, |
| 450 | .tiocmset = ftdi_tiocmset, |
| 451 | .ioctl = ftdi_ioctl, |
| 452 | .set_termios = ftdi_set_termios, |
| 453 | .break_ctl = ftdi_break_ctl, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 454 | .shutdown = ftdi_shutdown, |
| 455 | }; |
| 456 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 457 | |
| 458 | #define WDR_TIMEOUT 5000 /* default urb timeout */ |
Ian Abbott | 279e154 | 2005-07-29 12:16:52 -0700 | [diff] [blame] | 459 | #define WDR_SHORT_TIMEOUT 1000 /* shorter urb timeout */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 460 | |
| 461 | /* High and low are for DTR, RTS etc etc */ |
| 462 | #define HIGH 1 |
| 463 | #define LOW 0 |
| 464 | |
Ian Abbott | 2246540 | 2006-06-26 12:59:17 +0100 | [diff] [blame] | 465 | /* number of outstanding urbs to prevent userspace DoS from happening */ |
| 466 | #define URB_UPPER_LIMIT 42 |
| 467 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 468 | /* |
| 469 | * *************************************************************************** |
Tony Lindgren | fa91d43 | 2007-05-04 18:23:24 -0700 | [diff] [blame] | 470 | * Utility functions |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 471 | * *************************************************************************** |
| 472 | */ |
| 473 | |
| 474 | static unsigned short int ftdi_232am_baud_base_to_divisor(int baud, int base) |
| 475 | { |
| 476 | unsigned short int divisor; |
| 477 | int divisor3 = base / 2 / baud; // divisor shifted 3 bits to the left |
| 478 | if ((divisor3 & 0x7) == 7) divisor3 ++; // round x.7/8 up to x+1 |
| 479 | divisor = divisor3 >> 3; |
| 480 | divisor3 &= 0x7; |
| 481 | if (divisor3 == 1) divisor |= 0xc000; else // 0.125 |
| 482 | if (divisor3 >= 4) divisor |= 0x4000; else // 0.5 |
| 483 | if (divisor3 != 0) divisor |= 0x8000; // 0.25 |
| 484 | if (divisor == 1) divisor = 0; /* special case for maximum baud rate */ |
| 485 | return divisor; |
| 486 | } |
| 487 | |
| 488 | static unsigned short int ftdi_232am_baud_to_divisor(int baud) |
| 489 | { |
| 490 | return(ftdi_232am_baud_base_to_divisor(baud, 48000000)); |
| 491 | } |
| 492 | |
| 493 | static __u32 ftdi_232bm_baud_base_to_divisor(int baud, int base) |
| 494 | { |
| 495 | static const unsigned char divfrac[8] = { 0, 3, 2, 4, 1, 5, 6, 7 }; |
| 496 | __u32 divisor; |
| 497 | int divisor3 = base / 2 / baud; // divisor shifted 3 bits to the left |
| 498 | divisor = divisor3 >> 3; |
| 499 | divisor |= (__u32)divfrac[divisor3 & 0x7] << 14; |
| 500 | /* Deal with special cases for highest baud rates. */ |
| 501 | if (divisor == 1) divisor = 0; else // 1.0 |
| 502 | if (divisor == 0x4001) divisor = 1; // 1.5 |
| 503 | return divisor; |
| 504 | } |
| 505 | |
| 506 | static __u32 ftdi_232bm_baud_to_divisor(int baud) |
| 507 | { |
| 508 | return(ftdi_232bm_baud_base_to_divisor(baud, 48000000)); |
| 509 | } |
| 510 | |
Ian Abbott | 74ede0f | 2005-07-29 12:16:41 -0700 | [diff] [blame] | 511 | #define set_mctrl(port, set) update_mctrl((port), (set), 0) |
| 512 | #define clear_mctrl(port, clear) update_mctrl((port), 0, (clear)) |
| 513 | |
| 514 | static int update_mctrl(struct usb_serial_port *port, unsigned int set, unsigned int clear) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 515 | { |
| 516 | struct ftdi_private *priv = usb_get_serial_port_data(port); |
| 517 | char *buf; |
Ian Abbott | 74ede0f | 2005-07-29 12:16:41 -0700 | [diff] [blame] | 518 | unsigned urb_value; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 519 | int rv; |
Ian Abbott | 74ede0f | 2005-07-29 12:16:41 -0700 | [diff] [blame] | 520 | |
| 521 | if (((set | clear) & (TIOCM_DTR | TIOCM_RTS)) == 0) { |
| 522 | dbg("%s - DTR|RTS not being set|cleared", __FUNCTION__); |
| 523 | return 0; /* no change */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 524 | } |
Ian Abbott | 74ede0f | 2005-07-29 12:16:41 -0700 | [diff] [blame] | 525 | |
| 526 | buf = kmalloc(1, GFP_NOIO); |
| 527 | if (!buf) { |
| 528 | return -ENOMEM; |
| 529 | } |
| 530 | |
| 531 | clear &= ~set; /* 'set' takes precedence over 'clear' */ |
| 532 | urb_value = 0; |
| 533 | if (clear & TIOCM_DTR) |
| 534 | urb_value |= FTDI_SIO_SET_DTR_LOW; |
| 535 | if (clear & TIOCM_RTS) |
| 536 | urb_value |= FTDI_SIO_SET_RTS_LOW; |
| 537 | if (set & TIOCM_DTR) |
| 538 | urb_value |= FTDI_SIO_SET_DTR_HIGH; |
| 539 | if (set & TIOCM_RTS) |
| 540 | urb_value |= FTDI_SIO_SET_RTS_HIGH; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 541 | rv = usb_control_msg(port->serial->dev, |
| 542 | usb_sndctrlpipe(port->serial->dev, 0), |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 543 | FTDI_SIO_SET_MODEM_CTRL_REQUEST, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 544 | FTDI_SIO_SET_MODEM_CTRL_REQUEST_TYPE, |
Ian Abbott | 74ede0f | 2005-07-29 12:16:41 -0700 | [diff] [blame] | 545 | urb_value, priv->interface, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 546 | buf, 0, WDR_TIMEOUT); |
| 547 | |
| 548 | kfree(buf); |
Ian Abbott | 74ede0f | 2005-07-29 12:16:41 -0700 | [diff] [blame] | 549 | if (rv < 0) { |
| 550 | err("%s Error from MODEM_CTRL urb: DTR %s, RTS %s", |
| 551 | __FUNCTION__, |
| 552 | (set & TIOCM_DTR) ? "HIGH" : |
| 553 | (clear & TIOCM_DTR) ? "LOW" : "unchanged", |
| 554 | (set & TIOCM_RTS) ? "HIGH" : |
| 555 | (clear & TIOCM_RTS) ? "LOW" : "unchanged"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 556 | } else { |
Ian Abbott | 74ede0f | 2005-07-29 12:16:41 -0700 | [diff] [blame] | 557 | dbg("%s - DTR %s, RTS %s", __FUNCTION__, |
| 558 | (set & TIOCM_DTR) ? "HIGH" : |
| 559 | (clear & TIOCM_DTR) ? "LOW" : "unchanged", |
| 560 | (set & TIOCM_RTS) ? "HIGH" : |
| 561 | (clear & TIOCM_RTS) ? "LOW" : "unchanged"); |
| 562 | priv->last_dtr_rts = (priv->last_dtr_rts & ~clear) | set; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 563 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 564 | return rv; |
| 565 | } |
| 566 | |
| 567 | |
| 568 | static __u32 get_ftdi_divisor(struct usb_serial_port * port); |
| 569 | |
| 570 | |
| 571 | static int change_speed(struct usb_serial_port *port) |
| 572 | { |
| 573 | struct ftdi_private *priv = usb_get_serial_port_data(port); |
| 574 | char *buf; |
| 575 | __u16 urb_value; |
| 576 | __u16 urb_index; |
| 577 | __u32 urb_index_value; |
| 578 | int rv; |
| 579 | |
| 580 | buf = kmalloc(1, GFP_NOIO); |
| 581 | if (!buf) |
| 582 | return -ENOMEM; |
| 583 | |
| 584 | urb_index_value = get_ftdi_divisor(port); |
| 585 | urb_value = (__u16)urb_index_value; |
| 586 | urb_index = (__u16)(urb_index_value >> 16); |
| 587 | if (priv->interface) { /* FT2232C */ |
| 588 | urb_index = (__u16)((urb_index << 8) | priv->interface); |
| 589 | } |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 590 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 591 | rv = usb_control_msg(port->serial->dev, |
| 592 | usb_sndctrlpipe(port->serial->dev, 0), |
| 593 | FTDI_SIO_SET_BAUDRATE_REQUEST, |
| 594 | FTDI_SIO_SET_BAUDRATE_REQUEST_TYPE, |
| 595 | urb_value, urb_index, |
Ian Abbott | 279e154 | 2005-07-29 12:16:52 -0700 | [diff] [blame] | 596 | buf, 0, WDR_SHORT_TIMEOUT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 597 | |
| 598 | kfree(buf); |
| 599 | return rv; |
| 600 | } |
| 601 | |
| 602 | |
| 603 | static __u32 get_ftdi_divisor(struct usb_serial_port * port) |
| 604 | { /* get_ftdi_divisor */ |
| 605 | struct ftdi_private *priv = usb_get_serial_port_data(port); |
| 606 | __u32 div_value = 0; |
| 607 | int div_okay = 1; |
| 608 | int baud; |
| 609 | |
| 610 | /* |
| 611 | * The logic involved in setting the baudrate can be cleanly split in 3 steps. |
| 612 | * Obtaining the actual baud rate is a little tricky since unix traditionally |
| 613 | * somehow ignored the possibility to set non-standard baud rates. |
| 614 | * 1. Standard baud rates are set in tty->termios->c_cflag |
| 615 | * 2. If these are not enough, you can set any speed using alt_speed as follows: |
| 616 | * - set tty->termios->c_cflag speed to B38400 |
| 617 | * - set your real speed in tty->alt_speed; it gets ignored when |
| 618 | * alt_speed==0, (or) |
| 619 | * - call TIOCSSERIAL ioctl with (struct serial_struct) set as follows: |
| 620 | * flags & ASYNC_SPD_MASK == ASYNC_SPD_[HI, VHI, SHI, WARP], this just |
| 621 | * sets alt_speed to (HI: 57600, VHI: 115200, SHI: 230400, WARP: 460800) |
| 622 | * ** Steps 1, 2 are done courtesy of tty_get_baud_rate |
| 623 | * 3. You can also set baud rate by setting custom divisor as follows |
| 624 | * - set tty->termios->c_cflag speed to B38400 |
| 625 | * - call TIOCSSERIAL ioctl with (struct serial_struct) set as follows: |
| 626 | * o flags & ASYNC_SPD_MASK == ASYNC_SPD_CUST |
| 627 | * o custom_divisor set to baud_base / your_new_baudrate |
| 628 | * ** Step 3 is done courtesy of code borrowed from serial.c - I should really |
| 629 | * spend some time and separate+move this common code to serial.c, it is |
| 630 | * replicated in nearly every serial driver you see. |
| 631 | */ |
| 632 | |
| 633 | /* 1. Get the baud rate from the tty settings, this observes alt_speed hack */ |
| 634 | |
| 635 | baud = tty_get_baud_rate(port->tty); |
| 636 | dbg("%s - tty_get_baud_rate reports speed %d", __FUNCTION__, baud); |
| 637 | |
| 638 | /* 2. Observe async-compatible custom_divisor hack, update baudrate if needed */ |
| 639 | |
| 640 | if (baud == 38400 && |
| 641 | ((priv->flags & ASYNC_SPD_MASK) == ASYNC_SPD_CUST) && |
| 642 | (priv->custom_divisor)) { |
| 643 | baud = priv->baud_base / priv->custom_divisor; |
| 644 | dbg("%s - custom divisor %d sets baud rate to %d", __FUNCTION__, priv->custom_divisor, baud); |
| 645 | } |
| 646 | |
| 647 | /* 3. Convert baudrate to device-specific divisor */ |
| 648 | |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 649 | if (!baud) baud = 9600; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 650 | switch(priv->chip_type) { |
| 651 | case SIO: /* SIO chip */ |
| 652 | switch(baud) { |
| 653 | case 300: div_value = ftdi_sio_b300; break; |
| 654 | case 600: div_value = ftdi_sio_b600; break; |
| 655 | case 1200: div_value = ftdi_sio_b1200; break; |
| 656 | case 2400: div_value = ftdi_sio_b2400; break; |
| 657 | case 4800: div_value = ftdi_sio_b4800; break; |
| 658 | case 9600: div_value = ftdi_sio_b9600; break; |
| 659 | case 19200: div_value = ftdi_sio_b19200; break; |
| 660 | case 38400: div_value = ftdi_sio_b38400; break; |
| 661 | case 57600: div_value = ftdi_sio_b57600; break; |
| 662 | case 115200: div_value = ftdi_sio_b115200; break; |
| 663 | } /* baud */ |
| 664 | if (div_value == 0) { |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 665 | dbg("%s - Baudrate (%d) requested is not supported", __FUNCTION__, baud); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 666 | div_value = ftdi_sio_b9600; |
Andrew Morton | bd5e47c | 2007-10-18 01:24:25 -0700 | [diff] [blame] | 667 | baud = 9600; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 668 | div_okay = 0; |
| 669 | } |
| 670 | break; |
| 671 | case FT8U232AM: /* 8U232AM chip */ |
| 672 | if (baud <= 3000000) { |
| 673 | div_value = ftdi_232am_baud_to_divisor(baud); |
| 674 | } else { |
| 675 | dbg("%s - Baud rate too high!", __FUNCTION__); |
Andrew Morton | bd5e47c | 2007-10-18 01:24:25 -0700 | [diff] [blame] | 676 | baud = 9600; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 677 | div_value = ftdi_232am_baud_to_divisor(9600); |
| 678 | div_okay = 0; |
| 679 | } |
| 680 | break; |
| 681 | case FT232BM: /* FT232BM chip */ |
| 682 | case FT2232C: /* FT2232C chip */ |
David Brownell | 3b009c6 | 2007-03-23 12:54:27 -0700 | [diff] [blame] | 683 | case FT232RL: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 684 | if (baud <= 3000000) { |
| 685 | div_value = ftdi_232bm_baud_to_divisor(baud); |
| 686 | } else { |
| 687 | dbg("%s - Baud rate too high!", __FUNCTION__); |
| 688 | div_value = ftdi_232bm_baud_to_divisor(9600); |
| 689 | div_okay = 0; |
Alan Cox | 669a6db | 2007-10-18 01:24:24 -0700 | [diff] [blame] | 690 | baud = 9600; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 691 | } |
| 692 | break; |
| 693 | } /* priv->chip_type */ |
| 694 | |
| 695 | if (div_okay) { |
| 696 | dbg("%s - Baud rate set to %d (divisor 0x%lX) on chip %s", |
| 697 | __FUNCTION__, baud, (unsigned long)div_value, |
| 698 | ftdi_chip_name[priv->chip_type]); |
| 699 | } |
| 700 | |
Alan Cox | 669a6db | 2007-10-18 01:24:24 -0700 | [diff] [blame] | 701 | tty_encode_baud_rate(port->tty, baud, baud); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 702 | return(div_value); |
| 703 | } |
| 704 | |
| 705 | |
| 706 | static int get_serial_info(struct usb_serial_port * port, struct serial_struct __user * retinfo) |
| 707 | { |
| 708 | struct ftdi_private *priv = usb_get_serial_port_data(port); |
| 709 | struct serial_struct tmp; |
| 710 | |
| 711 | if (!retinfo) |
| 712 | return -EFAULT; |
| 713 | memset(&tmp, 0, sizeof(tmp)); |
| 714 | tmp.flags = priv->flags; |
| 715 | tmp.baud_base = priv->baud_base; |
| 716 | tmp.custom_divisor = priv->custom_divisor; |
| 717 | if (copy_to_user(retinfo, &tmp, sizeof(*retinfo))) |
| 718 | return -EFAULT; |
| 719 | return 0; |
| 720 | } /* get_serial_info */ |
| 721 | |
| 722 | |
| 723 | static int set_serial_info(struct usb_serial_port * port, struct serial_struct __user * newinfo) |
| 724 | { /* set_serial_info */ |
| 725 | struct ftdi_private *priv = usb_get_serial_port_data(port); |
| 726 | struct serial_struct new_serial; |
| 727 | struct ftdi_private old_priv; |
| 728 | |
| 729 | if (copy_from_user(&new_serial, newinfo, sizeof(new_serial))) |
| 730 | return -EFAULT; |
| 731 | old_priv = * priv; |
| 732 | |
| 733 | /* Do error checking and permission checking */ |
| 734 | |
| 735 | if (!capable(CAP_SYS_ADMIN)) { |
| 736 | if (((new_serial.flags & ~ASYNC_USR_MASK) != |
| 737 | (priv->flags & ~ASYNC_USR_MASK))) |
| 738 | return -EPERM; |
| 739 | priv->flags = ((priv->flags & ~ASYNC_USR_MASK) | |
| 740 | (new_serial.flags & ASYNC_USR_MASK)); |
| 741 | priv->custom_divisor = new_serial.custom_divisor; |
| 742 | goto check_and_exit; |
| 743 | } |
| 744 | |
| 745 | if ((new_serial.baud_base != priv->baud_base) && |
| 746 | (new_serial.baud_base < 9600)) |
| 747 | return -EINVAL; |
| 748 | |
| 749 | /* Make the changes - these are privileged changes! */ |
| 750 | |
| 751 | priv->flags = ((priv->flags & ~ASYNC_FLAGS) | |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 752 | (new_serial.flags & ASYNC_FLAGS)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 753 | priv->custom_divisor = new_serial.custom_divisor; |
| 754 | |
| 755 | port->tty->low_latency = (priv->flags & ASYNC_LOW_LATENCY) ? 1 : 0; |
| 756 | |
| 757 | check_and_exit: |
| 758 | if ((old_priv.flags & ASYNC_SPD_MASK) != |
| 759 | (priv->flags & ASYNC_SPD_MASK)) { |
| 760 | if ((priv->flags & ASYNC_SPD_MASK) == ASYNC_SPD_HI) |
| 761 | port->tty->alt_speed = 57600; |
| 762 | else if ((priv->flags & ASYNC_SPD_MASK) == ASYNC_SPD_VHI) |
| 763 | port->tty->alt_speed = 115200; |
| 764 | else if ((priv->flags & ASYNC_SPD_MASK) == ASYNC_SPD_SHI) |
| 765 | port->tty->alt_speed = 230400; |
| 766 | else if ((priv->flags & ASYNC_SPD_MASK) == ASYNC_SPD_WARP) |
| 767 | port->tty->alt_speed = 460800; |
| 768 | else |
| 769 | port->tty->alt_speed = 0; |
| 770 | } |
| 771 | if (((old_priv.flags & ASYNC_SPD_MASK) != |
| 772 | (priv->flags & ASYNC_SPD_MASK)) || |
| 773 | (((priv->flags & ASYNC_SPD_MASK) == ASYNC_SPD_CUST) && |
| 774 | (old_priv.custom_divisor != priv->custom_divisor))) { |
| 775 | change_speed(port); |
| 776 | } |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 777 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 778 | return (0); |
| 779 | |
| 780 | } /* set_serial_info */ |
| 781 | |
| 782 | |
Ian Abbott | 8f977e4 | 2005-06-20 16:45:42 +0100 | [diff] [blame] | 783 | /* Determine type of FTDI chip based on USB config and descriptor. */ |
| 784 | static void ftdi_determine_type(struct usb_serial_port *port) |
| 785 | { |
| 786 | struct ftdi_private *priv = usb_get_serial_port_data(port); |
| 787 | struct usb_serial *serial = port->serial; |
| 788 | struct usb_device *udev = serial->dev; |
| 789 | unsigned version; |
| 790 | unsigned interfaces; |
| 791 | |
| 792 | /* Assume it is not the original SIO device for now. */ |
Ian Abbott | f5e09b7 | 2005-09-12 12:23:25 +0100 | [diff] [blame] | 793 | priv->baud_base = 48000000 / 2; |
Ian Abbott | 8f977e4 | 2005-06-20 16:45:42 +0100 | [diff] [blame] | 794 | priv->write_offset = 0; |
| 795 | |
| 796 | version = le16_to_cpu(udev->descriptor.bcdDevice); |
| 797 | interfaces = udev->actconfig->desc.bNumInterfaces; |
| 798 | dbg("%s: bcdDevice = 0x%x, bNumInterfaces = %u", __FUNCTION__, |
| 799 | version, interfaces); |
| 800 | if (interfaces > 1) { |
| 801 | int inter; |
| 802 | |
| 803 | /* Multiple interfaces. Assume FT2232C. */ |
| 804 | priv->chip_type = FT2232C; |
| 805 | /* Determine interface code. */ |
| 806 | inter = serial->interface->altsetting->desc.bInterfaceNumber; |
| 807 | if (inter == 0) { |
| 808 | priv->interface = PIT_SIOA; |
| 809 | } else { |
| 810 | priv->interface = PIT_SIOB; |
| 811 | } |
| 812 | /* BM-type devices have a bug where bcdDevice gets set |
| 813 | * to 0x200 when iSerialNumber is 0. */ |
| 814 | if (version < 0x500) { |
| 815 | dbg("%s: something fishy - bcdDevice too low for multi-interface device", |
| 816 | __FUNCTION__); |
| 817 | } |
| 818 | } else if (version < 0x200) { |
| 819 | /* Old device. Assume its the original SIO. */ |
| 820 | priv->chip_type = SIO; |
| 821 | priv->baud_base = 12000000 / 16; |
| 822 | priv->write_offset = 1; |
| 823 | } else if (version < 0x400) { |
| 824 | /* Assume its an FT8U232AM (or FT8U245AM) */ |
| 825 | /* (It might be a BM because of the iSerialNumber bug, |
| 826 | * but it will still work as an AM device.) */ |
| 827 | priv->chip_type = FT8U232AM; |
David Brownell | 3b009c6 | 2007-03-23 12:54:27 -0700 | [diff] [blame] | 828 | } else if (version < 0x600) { |
Ian Abbott | 8f977e4 | 2005-06-20 16:45:42 +0100 | [diff] [blame] | 829 | /* Assume its an FT232BM (or FT245BM) */ |
| 830 | priv->chip_type = FT232BM; |
David Brownell | 3b009c6 | 2007-03-23 12:54:27 -0700 | [diff] [blame] | 831 | } else { |
| 832 | /* Assume its an FT232R */ |
| 833 | priv->chip_type = FT232RL; |
Ian Abbott | 8f977e4 | 2005-06-20 16:45:42 +0100 | [diff] [blame] | 834 | } |
| 835 | info("Detected %s", ftdi_chip_name[priv->chip_type]); |
| 836 | } |
| 837 | |
| 838 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 839 | /* |
| 840 | * *************************************************************************** |
| 841 | * Sysfs Attribute |
| 842 | * *************************************************************************** |
| 843 | */ |
| 844 | |
Yani Ioannou | 060b884 | 2005-05-17 06:44:04 -0400 | [diff] [blame] | 845 | static ssize_t show_latency_timer(struct device *dev, struct device_attribute *attr, char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 846 | { |
| 847 | struct usb_serial_port *port = to_usb_serial_port(dev); |
| 848 | struct ftdi_private *priv = usb_get_serial_port_data(port); |
Jim Radford | 12bdbe0 | 2007-02-28 10:10:50 -0800 | [diff] [blame] | 849 | struct usb_device *udev = port->serial->dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 850 | unsigned short latency = 0; |
| 851 | int rv = 0; |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 852 | |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 853 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 854 | dbg("%s",__FUNCTION__); |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 855 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 856 | rv = usb_control_msg(udev, |
| 857 | usb_rcvctrlpipe(udev, 0), |
| 858 | FTDI_SIO_GET_LATENCY_TIMER_REQUEST, |
| 859 | FTDI_SIO_GET_LATENCY_TIMER_REQUEST_TYPE, |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 860 | 0, priv->interface, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 861 | (char*) &latency, 1, WDR_TIMEOUT); |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 862 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 863 | if (rv < 0) { |
Joe Perches | 898eb71 | 2007-10-18 03:06:30 -0700 | [diff] [blame] | 864 | dev_err(dev, "Unable to read latency timer: %i\n", rv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 865 | return -EIO; |
| 866 | } |
| 867 | return sprintf(buf, "%i\n", latency); |
| 868 | } |
| 869 | |
| 870 | /* Write a new value of the latency timer, in units of milliseconds. */ |
Yani Ioannou | 060b884 | 2005-05-17 06:44:04 -0400 | [diff] [blame] | 871 | static ssize_t store_latency_timer(struct device *dev, struct device_attribute *attr, const char *valbuf, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 872 | size_t count) |
| 873 | { |
| 874 | struct usb_serial_port *port = to_usb_serial_port(dev); |
| 875 | struct ftdi_private *priv = usb_get_serial_port_data(port); |
Jim Radford | 12bdbe0 | 2007-02-28 10:10:50 -0800 | [diff] [blame] | 876 | struct usb_device *udev = port->serial->dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 877 | char buf[1]; |
| 878 | int v = simple_strtoul(valbuf, NULL, 10); |
| 879 | int rv = 0; |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 880 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 881 | dbg("%s: setting latency timer = %i", __FUNCTION__, v); |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 882 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 883 | rv = usb_control_msg(udev, |
| 884 | usb_sndctrlpipe(udev, 0), |
| 885 | FTDI_SIO_SET_LATENCY_TIMER_REQUEST, |
| 886 | FTDI_SIO_SET_LATENCY_TIMER_REQUEST_TYPE, |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 887 | v, priv->interface, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 888 | buf, 0, WDR_TIMEOUT); |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 889 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 890 | if (rv < 0) { |
Joe Perches | 898eb71 | 2007-10-18 03:06:30 -0700 | [diff] [blame] | 891 | dev_err(dev, "Unable to write latency timer: %i\n", rv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 892 | return -EIO; |
| 893 | } |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 894 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 895 | return count; |
| 896 | } |
| 897 | |
| 898 | /* Write an event character directly to the FTDI register. The ASCII |
| 899 | value is in the low 8 bits, with the enable bit in the 9th bit. */ |
Yani Ioannou | 060b884 | 2005-05-17 06:44:04 -0400 | [diff] [blame] | 900 | static ssize_t store_event_char(struct device *dev, struct device_attribute *attr, const char *valbuf, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 901 | size_t count) |
| 902 | { |
| 903 | struct usb_serial_port *port = to_usb_serial_port(dev); |
| 904 | struct ftdi_private *priv = usb_get_serial_port_data(port); |
Jim Radford | 12bdbe0 | 2007-02-28 10:10:50 -0800 | [diff] [blame] | 905 | struct usb_device *udev = port->serial->dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 906 | char buf[1]; |
| 907 | int v = simple_strtoul(valbuf, NULL, 10); |
| 908 | int rv = 0; |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 909 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 910 | dbg("%s: setting event char = %i", __FUNCTION__, v); |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 911 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 912 | rv = usb_control_msg(udev, |
| 913 | usb_sndctrlpipe(udev, 0), |
| 914 | FTDI_SIO_SET_EVENT_CHAR_REQUEST, |
| 915 | FTDI_SIO_SET_EVENT_CHAR_REQUEST_TYPE, |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 916 | v, priv->interface, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 917 | buf, 0, WDR_TIMEOUT); |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 918 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 919 | if (rv < 0) { |
| 920 | dbg("Unable to write event character: %i", rv); |
| 921 | return -EIO; |
| 922 | } |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 923 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 924 | return count; |
| 925 | } |
| 926 | |
| 927 | static DEVICE_ATTR(latency_timer, S_IWUSR | S_IRUGO, show_latency_timer, store_latency_timer); |
| 928 | static DEVICE_ATTR(event_char, S_IWUSR, NULL, store_event_char); |
| 929 | |
Jim Radford | 12bdbe0 | 2007-02-28 10:10:50 -0800 | [diff] [blame] | 930 | static int create_sysfs_attrs(struct usb_serial_port *port) |
Greg Kroah-Hartman | 13f4db9 | 2006-08-28 11:43:25 -0700 | [diff] [blame] | 931 | { |
Jim Radford | 12bdbe0 | 2007-02-28 10:10:50 -0800 | [diff] [blame] | 932 | struct ftdi_private *priv = usb_get_serial_port_data(port); |
Greg Kroah-Hartman | 13f4db9 | 2006-08-28 11:43:25 -0700 | [diff] [blame] | 933 | int retval = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 934 | |
| 935 | dbg("%s",__FUNCTION__); |
Greg Kroah-Hartman | 13f4db9 | 2006-08-28 11:43:25 -0700 | [diff] [blame] | 936 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 937 | /* XXX I've no idea if the original SIO supports the event_char |
| 938 | * sysfs parameter, so I'm playing it safe. */ |
| 939 | if (priv->chip_type != SIO) { |
| 940 | dbg("sysfs attributes for %s", ftdi_chip_name[priv->chip_type]); |
Jim Radford | 12bdbe0 | 2007-02-28 10:10:50 -0800 | [diff] [blame] | 941 | retval = device_create_file(&port->dev, &dev_attr_event_char); |
Greg Kroah-Hartman | 13f4db9 | 2006-08-28 11:43:25 -0700 | [diff] [blame] | 942 | if ((!retval) && |
Stepan Moskovchenko | 97cd49e | 2007-05-09 14:53:04 -0400 | [diff] [blame] | 943 | (priv->chip_type == FT232BM || |
| 944 | priv->chip_type == FT2232C || |
| 945 | priv->chip_type == FT232RL)) { |
Jim Radford | 12bdbe0 | 2007-02-28 10:10:50 -0800 | [diff] [blame] | 946 | retval = device_create_file(&port->dev, |
Greg Kroah-Hartman | 13f4db9 | 2006-08-28 11:43:25 -0700 | [diff] [blame] | 947 | &dev_attr_latency_timer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 948 | } |
| 949 | } |
Greg Kroah-Hartman | 13f4db9 | 2006-08-28 11:43:25 -0700 | [diff] [blame] | 950 | return retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 951 | } |
| 952 | |
Jim Radford | 12bdbe0 | 2007-02-28 10:10:50 -0800 | [diff] [blame] | 953 | static void remove_sysfs_attrs(struct usb_serial_port *port) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 954 | { |
Jim Radford | 12bdbe0 | 2007-02-28 10:10:50 -0800 | [diff] [blame] | 955 | struct ftdi_private *priv = usb_get_serial_port_data(port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 956 | |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 957 | dbg("%s",__FUNCTION__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 958 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 959 | /* XXX see create_sysfs_attrs */ |
| 960 | if (priv->chip_type != SIO) { |
Jim Radford | 12bdbe0 | 2007-02-28 10:10:50 -0800 | [diff] [blame] | 961 | device_remove_file(&port->dev, &dev_attr_event_char); |
Andrew M. Bishop | ed6e528 | 2007-08-21 19:08:56 +0100 | [diff] [blame] | 962 | if (priv->chip_type == FT232BM || |
| 963 | priv->chip_type == FT2232C || |
| 964 | priv->chip_type == FT232RL) { |
Jim Radford | 12bdbe0 | 2007-02-28 10:10:50 -0800 | [diff] [blame] | 965 | device_remove_file(&port->dev, &dev_attr_latency_timer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 966 | } |
| 967 | } |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 968 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 969 | } |
| 970 | |
| 971 | /* |
| 972 | * *************************************************************************** |
| 973 | * FTDI driver specific functions |
| 974 | * *************************************************************************** |
| 975 | */ |
| 976 | |
Ian Abbott | 8f977e4 | 2005-06-20 16:45:42 +0100 | [diff] [blame] | 977 | /* Probe function to check for special devices */ |
| 978 | static int ftdi_sio_probe (struct usb_serial *serial, const struct usb_device_id *id) |
| 979 | { |
Tony Lindgren | fa91d43 | 2007-05-04 18:23:24 -0700 | [diff] [blame] | 980 | struct ftdi_sio_quirk *quirk = (struct ftdi_sio_quirk *)id->driver_info; |
| 981 | |
| 982 | if (quirk && quirk->probe) { |
| 983 | int ret = quirk->probe(serial); |
| 984 | if (ret != 0) |
| 985 | return ret; |
| 986 | } |
| 987 | |
Ian Abbott | 8f977e4 | 2005-06-20 16:45:42 +0100 | [diff] [blame] | 988 | usb_set_serial_data(serial, (void *)id->driver_info); |
| 989 | |
Tony Lindgren | fa91d43 | 2007-05-04 18:23:24 -0700 | [diff] [blame] | 990 | return 0; |
Ian Abbott | 8f977e4 | 2005-06-20 16:45:42 +0100 | [diff] [blame] | 991 | } |
| 992 | |
Jim Radford | 12bdbe0 | 2007-02-28 10:10:50 -0800 | [diff] [blame] | 993 | static int ftdi_sio_port_probe(struct usb_serial_port *port) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 994 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 995 | struct ftdi_private *priv; |
Oliver Neukum | 0ffbbe25 | 2007-07-09 12:03:08 -0700 | [diff] [blame] | 996 | struct ftdi_sio_quirk *quirk = usb_get_serial_data(port->serial); |
| 997 | |
Greg Kroah-Hartman | 13f4db9 | 2006-08-28 11:43:25 -0700 | [diff] [blame] | 998 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 999 | dbg("%s",__FUNCTION__); |
| 1000 | |
Eric Sesterhenn | 80b6ca4 | 2006-02-27 21:29:43 +0100 | [diff] [blame] | 1001 | priv = kzalloc(sizeof(struct ftdi_private), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1002 | if (!priv){ |
| 1003 | err("%s- kmalloc(%Zd) failed.", __FUNCTION__, sizeof(struct ftdi_private)); |
| 1004 | return -ENOMEM; |
| 1005 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1006 | |
| 1007 | spin_lock_init(&priv->rx_lock); |
Ian Abbott | 2246540 | 2006-06-26 12:59:17 +0100 | [diff] [blame] | 1008 | spin_lock_init(&priv->tx_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1009 | init_waitqueue_head(&priv->delta_msr_wait); |
| 1010 | /* This will push the characters through immediately rather |
| 1011 | than queue a task to deliver them */ |
| 1012 | priv->flags = ASYNC_LOW_LATENCY; |
| 1013 | |
Oliver Neukum | 0ffbbe25 | 2007-07-09 12:03:08 -0700 | [diff] [blame] | 1014 | if (quirk && quirk->port_probe) |
| 1015 | quirk->port_probe(priv); |
| 1016 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1017 | /* Increase the size of read buffers */ |
Jesper Juhl | 1bc3c9e | 2005-04-18 17:39:34 -0700 | [diff] [blame] | 1018 | kfree(port->bulk_in_buffer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1019 | port->bulk_in_buffer = kmalloc (BUFSZ, GFP_KERNEL); |
| 1020 | if (!port->bulk_in_buffer) { |
| 1021 | kfree (priv); |
| 1022 | return -ENOMEM; |
| 1023 | } |
| 1024 | if (port->read_urb) { |
| 1025 | port->read_urb->transfer_buffer = port->bulk_in_buffer; |
| 1026 | port->read_urb->transfer_buffer_length = BUFSZ; |
| 1027 | } |
| 1028 | |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 1029 | INIT_DELAYED_WORK(&priv->rx_work, ftdi_process_read); |
| 1030 | priv->port = port; |
Ian Abbott | 76854ce | 2005-06-02 10:34:11 +0100 | [diff] [blame] | 1031 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1032 | /* Free port's existing write urb and transfer buffer. */ |
| 1033 | if (port->write_urb) { |
| 1034 | usb_free_urb (port->write_urb); |
| 1035 | port->write_urb = NULL; |
| 1036 | } |
Jesper Juhl | 1bc3c9e | 2005-04-18 17:39:34 -0700 | [diff] [blame] | 1037 | kfree(port->bulk_out_buffer); |
| 1038 | port->bulk_out_buffer = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1039 | |
Jim Radford | 12bdbe0 | 2007-02-28 10:10:50 -0800 | [diff] [blame] | 1040 | usb_set_serial_port_data(port, priv); |
Ian Abbott | 8f977e4 | 2005-06-20 16:45:42 +0100 | [diff] [blame] | 1041 | |
Jim Radford | 12bdbe0 | 2007-02-28 10:10:50 -0800 | [diff] [blame] | 1042 | ftdi_determine_type (port); |
| 1043 | create_sysfs_attrs(port); |
| 1044 | return 0; |
| 1045 | } |
Ian Abbott | 8f977e4 | 2005-06-20 16:45:42 +0100 | [diff] [blame] | 1046 | |
Ian Abbott | 8f977e4 | 2005-06-20 16:45:42 +0100 | [diff] [blame] | 1047 | /* Setup for the USB-UIRT device, which requires hardwired |
| 1048 | * baudrate (38400 gets mapped to 312500) */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1049 | /* Called from usbserial:serial_probe */ |
Oliver Neukum | 0ffbbe25 | 2007-07-09 12:03:08 -0700 | [diff] [blame] | 1050 | static void ftdi_USB_UIRT_setup (struct ftdi_private *priv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1051 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1052 | dbg("%s",__FUNCTION__); |
| 1053 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1054 | priv->flags |= ASYNC_SPD_CUST; |
| 1055 | priv->custom_divisor = 77; |
Alan Cox | 669a6db | 2007-10-18 01:24:24 -0700 | [diff] [blame] | 1056 | priv->force_baud = 38400; |
Ian Abbott | 8f977e4 | 2005-06-20 16:45:42 +0100 | [diff] [blame] | 1057 | } /* ftdi_USB_UIRT_setup */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1058 | |
Ian Abbott | 8f977e4 | 2005-06-20 16:45:42 +0100 | [diff] [blame] | 1059 | /* Setup for the HE-TIRA1 device, which requires hardwired |
| 1060 | * baudrate (38400 gets mapped to 100000) and RTS-CTS enabled. */ |
Oliver Neukum | 0ffbbe25 | 2007-07-09 12:03:08 -0700 | [diff] [blame] | 1061 | static void ftdi_HE_TIRA1_setup (struct ftdi_private *priv) |
Ian Abbott | 8f977e4 | 2005-06-20 16:45:42 +0100 | [diff] [blame] | 1062 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1063 | dbg("%s",__FUNCTION__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1064 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1065 | priv->flags |= ASYNC_SPD_CUST; |
| 1066 | priv->custom_divisor = 240; |
Alan Cox | 669a6db | 2007-10-18 01:24:24 -0700 | [diff] [blame] | 1067 | priv->force_baud = 38400; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1068 | priv->force_rtscts = 1; |
Ian Abbott | 8f977e4 | 2005-06-20 16:45:42 +0100 | [diff] [blame] | 1069 | } /* ftdi_HE_TIRA1_setup */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1070 | |
Tony Lindgren | fa91d43 | 2007-05-04 18:23:24 -0700 | [diff] [blame] | 1071 | /* |
Harald Welte | 2073434 | 2008-01-01 15:08:35 +0100 | [diff] [blame] | 1072 | * First port on JTAG adaptors such as Olimex arm-usb-ocd or the FIC/OpenMoko |
| 1073 | * Neo1973 Debug Board is reserved for JTAG interface and can be accessed from |
| 1074 | * userspace using openocd. |
Tony Lindgren | fa91d43 | 2007-05-04 18:23:24 -0700 | [diff] [blame] | 1075 | */ |
Harald Welte | 2073434 | 2008-01-01 15:08:35 +0100 | [diff] [blame] | 1076 | static int ftdi_jtag_probe(struct usb_serial *serial) |
Tony Lindgren | fa91d43 | 2007-05-04 18:23:24 -0700 | [diff] [blame] | 1077 | { |
| 1078 | struct usb_device *udev = serial->dev; |
| 1079 | struct usb_interface *interface = serial->interface; |
| 1080 | |
| 1081 | dbg("%s",__FUNCTION__); |
| 1082 | |
| 1083 | if (interface == udev->actconfig->interface[0]) { |
Harald Welte | 2073434 | 2008-01-01 15:08:35 +0100 | [diff] [blame] | 1084 | info("Ignoring serial port reserved for JTAG"); |
Tony Lindgren | fa91d43 | 2007-05-04 18:23:24 -0700 | [diff] [blame] | 1085 | return -ENODEV; |
| 1086 | } |
| 1087 | |
| 1088 | return 0; |
| 1089 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1090 | |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1091 | /* ftdi_shutdown is called from usbserial:usb_serial_disconnect |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1092 | * it is called when the usb device is disconnected |
| 1093 | * |
| 1094 | * usbserial:usb_serial_disconnect |
| 1095 | * calls __serial_close for each open of the port |
| 1096 | * shutdown is called then (ie ftdi_shutdown) |
| 1097 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1098 | static void ftdi_shutdown (struct usb_serial *serial) |
Jim Radford | 12bdbe0 | 2007-02-28 10:10:50 -0800 | [diff] [blame] | 1099 | { |
| 1100 | dbg("%s", __FUNCTION__); |
| 1101 | } |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1102 | |
Jim Radford | 12bdbe0 | 2007-02-28 10:10:50 -0800 | [diff] [blame] | 1103 | static int ftdi_sio_port_remove(struct usb_serial_port *port) |
| 1104 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1105 | struct ftdi_private *priv = usb_get_serial_port_data(port); |
| 1106 | |
| 1107 | dbg("%s", __FUNCTION__); |
| 1108 | |
Jim Radford | 12bdbe0 | 2007-02-28 10:10:50 -0800 | [diff] [blame] | 1109 | remove_sysfs_attrs(port); |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1110 | |
| 1111 | /* all open ports are closed at this point |
| 1112 | * (by usbserial.c:__serial_close, which calls ftdi_close) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1113 | */ |
| 1114 | |
| 1115 | if (priv) { |
| 1116 | usb_set_serial_port_data(port, NULL); |
| 1117 | kfree(priv); |
| 1118 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1119 | |
Jim Radford | 12bdbe0 | 2007-02-28 10:10:50 -0800 | [diff] [blame] | 1120 | return 0; |
| 1121 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1122 | |
| 1123 | static int ftdi_open (struct usb_serial_port *port, struct file *filp) |
| 1124 | { /* ftdi_open */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1125 | struct usb_device *dev = port->serial->dev; |
| 1126 | struct ftdi_private *priv = usb_get_serial_port_data(port); |
| 1127 | unsigned long flags; |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1128 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1129 | int result = 0; |
| 1130 | char buf[1]; /* Needed for the usb_control_msg I think */ |
| 1131 | |
| 1132 | dbg("%s", __FUNCTION__); |
| 1133 | |
Ian Abbott | 2246540 | 2006-06-26 12:59:17 +0100 | [diff] [blame] | 1134 | spin_lock_irqsave(&priv->tx_lock, flags); |
| 1135 | priv->tx_bytes = 0; |
| 1136 | spin_unlock_irqrestore(&priv->tx_lock, flags); |
| 1137 | spin_lock_irqsave(&priv->rx_lock, flags); |
| 1138 | priv->rx_bytes = 0; |
| 1139 | spin_unlock_irqrestore(&priv->rx_lock, flags); |
| 1140 | |
Guennadi Liakhovetski | 57845bd | 2006-04-13 22:27:12 +0200 | [diff] [blame] | 1141 | if (port->tty) |
| 1142 | port->tty->low_latency = (priv->flags & ASYNC_LOW_LATENCY) ? 1 : 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1143 | |
| 1144 | /* No error checking for this (will get errors later anyway) */ |
| 1145 | /* See ftdi_sio.h for description of what is reset */ |
| 1146 | usb_control_msg(dev, usb_sndctrlpipe(dev, 0), |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1147 | FTDI_SIO_RESET_REQUEST, FTDI_SIO_RESET_REQUEST_TYPE, |
| 1148 | FTDI_SIO_RESET_SIO, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1149 | priv->interface, buf, 0, WDR_TIMEOUT); |
| 1150 | |
| 1151 | /* Termios defaults are set by usb_serial_init. We don't change |
| 1152 | port->tty->termios - this would loose speed settings, etc. |
| 1153 | This is same behaviour as serial.c/rs_open() - Kuba */ |
| 1154 | |
| 1155 | /* ftdi_set_termios will send usb control messages */ |
Guennadi Liakhovetski | 57845bd | 2006-04-13 22:27:12 +0200 | [diff] [blame] | 1156 | if (port->tty) |
Alan Cox | 669a6db | 2007-10-18 01:24:24 -0700 | [diff] [blame] | 1157 | ftdi_set_termios(port, port->tty->termios); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1158 | |
| 1159 | /* FIXME: Flow control might be enabled, so it should be checked - |
| 1160 | we have no control of defaults! */ |
| 1161 | /* Turn on RTS and DTR since we are not flow controlling by default */ |
Ian Abbott | 74ede0f | 2005-07-29 12:16:41 -0700 | [diff] [blame] | 1162 | set_mctrl(port, TIOCM_DTR | TIOCM_RTS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1163 | |
| 1164 | /* Not throttled */ |
| 1165 | spin_lock_irqsave(&priv->rx_lock, flags); |
| 1166 | priv->rx_flags &= ~(THROTTLED | ACTUALLY_THROTTLED); |
| 1167 | spin_unlock_irqrestore(&priv->rx_lock, flags); |
| 1168 | |
| 1169 | /* Start reading from the device */ |
Ian Abbott | 76854ce | 2005-06-02 10:34:11 +0100 | [diff] [blame] | 1170 | priv->rx_processed = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1171 | usb_fill_bulk_urb(port->read_urb, dev, |
| 1172 | usb_rcvbulkpipe(dev, port->bulk_in_endpointAddress), |
| 1173 | port->read_urb->transfer_buffer, port->read_urb->transfer_buffer_length, |
| 1174 | ftdi_read_bulk_callback, port); |
| 1175 | result = usb_submit_urb(port->read_urb, GFP_KERNEL); |
| 1176 | if (result) |
| 1177 | err("%s - failed submitting read urb, error %d", __FUNCTION__, result); |
| 1178 | |
| 1179 | |
| 1180 | return result; |
| 1181 | } /* ftdi_open */ |
| 1182 | |
| 1183 | |
| 1184 | |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1185 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1186 | * usbserial:__serial_close only calls ftdi_close if the point is open |
| 1187 | * |
| 1188 | * This only gets called when it is the last close |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1189 | * |
| 1190 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1191 | */ |
| 1192 | |
| 1193 | static void ftdi_close (struct usb_serial_port *port, struct file *filp) |
| 1194 | { /* ftdi_close */ |
| 1195 | unsigned int c_cflag = port->tty->termios->c_cflag; |
| 1196 | struct ftdi_private *priv = usb_get_serial_port_data(port); |
| 1197 | char buf[1]; |
| 1198 | |
| 1199 | dbg("%s", __FUNCTION__); |
| 1200 | |
Oliver Neukum | 95bef01 | 2008-01-22 13:56:18 +0100 | [diff] [blame] | 1201 | mutex_lock(&port->serial->disc_mutex); |
| 1202 | if (c_cflag & HUPCL && !port->serial->disconnected){ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1203 | /* Disable flow control */ |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1204 | if (usb_control_msg(port->serial->dev, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1205 | usb_sndctrlpipe(port->serial->dev, 0), |
| 1206 | FTDI_SIO_SET_FLOW_CTRL_REQUEST, |
| 1207 | FTDI_SIO_SET_FLOW_CTRL_REQUEST_TYPE, |
| 1208 | 0, priv->interface, buf, 0, |
| 1209 | WDR_TIMEOUT) < 0) { |
| 1210 | err("error from flowcontrol urb"); |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1211 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1212 | |
Ian Abbott | 74ede0f | 2005-07-29 12:16:41 -0700 | [diff] [blame] | 1213 | /* drop RTS and DTR */ |
| 1214 | clear_mctrl(port, TIOCM_DTR | TIOCM_RTS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1215 | } /* Note change no line if hupcl is off */ |
Oliver Neukum | 95bef01 | 2008-01-22 13:56:18 +0100 | [diff] [blame] | 1216 | mutex_unlock(&port->serial->disc_mutex); |
Ian Abbott | 76854ce | 2005-06-02 10:34:11 +0100 | [diff] [blame] | 1217 | |
| 1218 | /* cancel any scheduled reading */ |
| 1219 | cancel_delayed_work(&priv->rx_work); |
| 1220 | flush_scheduled_work(); |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1221 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1222 | /* shutdown our bulk read */ |
Mariusz Kozlowski | 794c944 | 2006-11-08 15:36:25 +0100 | [diff] [blame] | 1223 | usb_kill_urb(port->read_urb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1224 | } /* ftdi_close */ |
| 1225 | |
| 1226 | |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1227 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1228 | /* The SIO requires the first byte to have: |
| 1229 | * B0 1 |
| 1230 | * B1 0 |
| 1231 | * B2..7 length of message excluding byte 0 |
| 1232 | * |
| 1233 | * The new devices do not require this byte |
| 1234 | */ |
| 1235 | static int ftdi_write (struct usb_serial_port *port, |
| 1236 | const unsigned char *buf, int count) |
| 1237 | { /* ftdi_write */ |
| 1238 | struct ftdi_private *priv = usb_get_serial_port_data(port); |
| 1239 | struct urb *urb; |
| 1240 | unsigned char *buffer; |
| 1241 | int data_offset ; /* will be 1 for the SIO and 0 otherwise */ |
| 1242 | int status; |
| 1243 | int transfer_size; |
Ian Abbott | 2246540 | 2006-06-26 12:59:17 +0100 | [diff] [blame] | 1244 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1245 | |
| 1246 | dbg("%s port %d, %d bytes", __FUNCTION__, port->number, count); |
| 1247 | |
| 1248 | if (count == 0) { |
| 1249 | dbg("write request of 0 bytes"); |
| 1250 | return 0; |
| 1251 | } |
Ian Abbott | 2246540 | 2006-06-26 12:59:17 +0100 | [diff] [blame] | 1252 | spin_lock_irqsave(&priv->tx_lock, flags); |
| 1253 | if (priv->tx_outstanding_urbs > URB_UPPER_LIMIT) { |
| 1254 | spin_unlock_irqrestore(&priv->tx_lock, flags); |
| 1255 | dbg("%s - write limit hit\n", __FUNCTION__); |
| 1256 | return 0; |
| 1257 | } |
Oliver Neukum | 62127a5 | 2007-03-23 14:30:16 +0100 | [diff] [blame] | 1258 | priv->tx_outstanding_urbs++; |
Ian Abbott | 2246540 | 2006-06-26 12:59:17 +0100 | [diff] [blame] | 1259 | spin_unlock_irqrestore(&priv->tx_lock, flags); |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1260 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1261 | data_offset = priv->write_offset; |
| 1262 | dbg("data_offset set to %d",data_offset); |
| 1263 | |
| 1264 | /* Determine total transfer size */ |
| 1265 | transfer_size = count; |
| 1266 | if (data_offset > 0) { |
| 1267 | /* Original sio needs control bytes too... */ |
| 1268 | transfer_size += (data_offset * |
| 1269 | ((count + (PKTSZ - 1 - data_offset)) / |
| 1270 | (PKTSZ - data_offset))); |
| 1271 | } |
| 1272 | |
| 1273 | buffer = kmalloc (transfer_size, GFP_ATOMIC); |
| 1274 | if (!buffer) { |
| 1275 | err("%s ran out of kernel memory for urb ...", __FUNCTION__); |
Oliver Neukum | 62127a5 | 2007-03-23 14:30:16 +0100 | [diff] [blame] | 1276 | count = -ENOMEM; |
| 1277 | goto error_no_buffer; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1278 | } |
| 1279 | |
| 1280 | urb = usb_alloc_urb(0, GFP_ATOMIC); |
| 1281 | if (!urb) { |
| 1282 | err("%s - no more free urbs", __FUNCTION__); |
Oliver Neukum | 62127a5 | 2007-03-23 14:30:16 +0100 | [diff] [blame] | 1283 | count = -ENOMEM; |
| 1284 | goto error_no_urb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1285 | } |
| 1286 | |
| 1287 | /* Copy data */ |
| 1288 | if (data_offset > 0) { |
| 1289 | /* Original sio requires control byte at start of each packet. */ |
| 1290 | int user_pktsz = PKTSZ - data_offset; |
| 1291 | int todo = count; |
| 1292 | unsigned char *first_byte = buffer; |
| 1293 | const unsigned char *current_position = buf; |
| 1294 | |
| 1295 | while (todo > 0) { |
| 1296 | if (user_pktsz > todo) { |
| 1297 | user_pktsz = todo; |
| 1298 | } |
| 1299 | /* Write the control byte at the front of the packet*/ |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1300 | *first_byte = 1 | ((user_pktsz) << 2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1301 | /* Copy data for packet */ |
| 1302 | memcpy (first_byte + data_offset, |
| 1303 | current_position, user_pktsz); |
| 1304 | first_byte += user_pktsz + data_offset; |
| 1305 | current_position += user_pktsz; |
| 1306 | todo -= user_pktsz; |
| 1307 | } |
| 1308 | } else { |
| 1309 | /* No control byte required. */ |
| 1310 | /* Copy in the data to send */ |
| 1311 | memcpy (buffer, buf, count); |
| 1312 | } |
| 1313 | |
| 1314 | usb_serial_debug_data(debug, &port->dev, __FUNCTION__, transfer_size, buffer); |
| 1315 | |
| 1316 | /* fill the buffer and send it */ |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1317 | usb_fill_bulk_urb(urb, port->serial->dev, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1318 | usb_sndbulkpipe(port->serial->dev, port->bulk_out_endpointAddress), |
| 1319 | buffer, transfer_size, |
| 1320 | ftdi_write_bulk_callback, port); |
| 1321 | |
| 1322 | status = usb_submit_urb(urb, GFP_ATOMIC); |
| 1323 | if (status) { |
| 1324 | err("%s - failed submitting write urb, error %d", __FUNCTION__, status); |
| 1325 | count = status; |
Oliver Neukum | 62127a5 | 2007-03-23 14:30:16 +0100 | [diff] [blame] | 1326 | goto error; |
Ian Abbott | 2246540 | 2006-06-26 12:59:17 +0100 | [diff] [blame] | 1327 | } else { |
| 1328 | spin_lock_irqsave(&priv->tx_lock, flags); |
Ian Abbott | 2246540 | 2006-06-26 12:59:17 +0100 | [diff] [blame] | 1329 | priv->tx_outstanding_bytes += count; |
| 1330 | priv->tx_bytes += count; |
| 1331 | spin_unlock_irqrestore(&priv->tx_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1332 | } |
| 1333 | |
| 1334 | /* we are done with this urb, so let the host driver |
| 1335 | * really free it when it is finished with it */ |
Oliver Neukum | 62127a5 | 2007-03-23 14:30:16 +0100 | [diff] [blame] | 1336 | usb_free_urb(urb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1337 | |
| 1338 | dbg("%s write returning: %d", __FUNCTION__, count); |
| 1339 | return count; |
Oliver Neukum | 62127a5 | 2007-03-23 14:30:16 +0100 | [diff] [blame] | 1340 | error: |
| 1341 | usb_free_urb(urb); |
| 1342 | error_no_urb: |
| 1343 | kfree (buffer); |
| 1344 | error_no_buffer: |
| 1345 | spin_lock_irqsave(&priv->tx_lock, flags); |
| 1346 | priv->tx_outstanding_urbs--; |
| 1347 | spin_unlock_irqrestore(&priv->tx_lock, flags); |
| 1348 | return count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1349 | } /* ftdi_write */ |
| 1350 | |
| 1351 | |
| 1352 | /* This function may get called when the device is closed */ |
| 1353 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 1354 | static void ftdi_write_bulk_callback (struct urb *urb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1355 | { |
Ian Abbott | 2246540 | 2006-06-26 12:59:17 +0100 | [diff] [blame] | 1356 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1357 | struct usb_serial_port *port = (struct usb_serial_port *)urb->context; |
Ian Abbott | 2246540 | 2006-06-26 12:59:17 +0100 | [diff] [blame] | 1358 | struct ftdi_private *priv; |
| 1359 | int data_offset; /* will be 1 for the SIO and 0 otherwise */ |
| 1360 | unsigned long countback; |
Greg Kroah-Hartman | 0fb0aa1 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 1361 | int status = urb->status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1362 | |
| 1363 | /* free up the transfer buffer, as usb_free_urb() does not do this */ |
| 1364 | kfree (urb->transfer_buffer); |
| 1365 | |
| 1366 | dbg("%s - port %d", __FUNCTION__, port->number); |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1367 | |
Greg Kroah-Hartman | 0fb0aa1 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 1368 | if (status) { |
| 1369 | dbg("nonzero write bulk status received: %d", status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1370 | return; |
| 1371 | } |
| 1372 | |
Ian Abbott | 2246540 | 2006-06-26 12:59:17 +0100 | [diff] [blame] | 1373 | priv = usb_get_serial_port_data(port); |
| 1374 | if (!priv) { |
| 1375 | dbg("%s - bad port private data pointer - exiting", __FUNCTION__); |
| 1376 | return; |
| 1377 | } |
| 1378 | /* account for transferred data */ |
| 1379 | countback = urb->actual_length; |
| 1380 | data_offset = priv->write_offset; |
| 1381 | if (data_offset > 0) { |
| 1382 | /* Subtract the control bytes */ |
| 1383 | countback -= (data_offset * ((countback + (PKTSZ - 1)) / PKTSZ)); |
| 1384 | } |
| 1385 | spin_lock_irqsave(&priv->tx_lock, flags); |
| 1386 | --priv->tx_outstanding_urbs; |
| 1387 | priv->tx_outstanding_bytes -= countback; |
| 1388 | spin_unlock_irqrestore(&priv->tx_lock, flags); |
| 1389 | |
Pete Zaitcev | cf2c748 | 2006-05-22 21:58:49 -0700 | [diff] [blame] | 1390 | usb_serial_port_softint(port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1391 | } /* ftdi_write_bulk_callback */ |
| 1392 | |
| 1393 | |
| 1394 | static int ftdi_write_room( struct usb_serial_port *port ) |
| 1395 | { |
Ian Abbott | 2246540 | 2006-06-26 12:59:17 +0100 | [diff] [blame] | 1396 | struct ftdi_private *priv = usb_get_serial_port_data(port); |
| 1397 | int room; |
| 1398 | unsigned long flags; |
| 1399 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1400 | dbg("%s - port %d", __FUNCTION__, port->number); |
| 1401 | |
Ian Abbott | 2246540 | 2006-06-26 12:59:17 +0100 | [diff] [blame] | 1402 | spin_lock_irqsave(&priv->tx_lock, flags); |
| 1403 | if (priv->tx_outstanding_urbs < URB_UPPER_LIMIT) { |
| 1404 | /* |
| 1405 | * We really can take anything the user throws at us |
| 1406 | * but let's pick a nice big number to tell the tty |
| 1407 | * layer that we have lots of free space |
| 1408 | */ |
| 1409 | room = 2048; |
| 1410 | } else { |
| 1411 | room = 0; |
| 1412 | } |
| 1413 | spin_unlock_irqrestore(&priv->tx_lock, flags); |
| 1414 | return room; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1415 | } /* ftdi_write_room */ |
| 1416 | |
| 1417 | |
| 1418 | static int ftdi_chars_in_buffer (struct usb_serial_port *port) |
| 1419 | { /* ftdi_chars_in_buffer */ |
Ian Abbott | 2246540 | 2006-06-26 12:59:17 +0100 | [diff] [blame] | 1420 | struct ftdi_private *priv = usb_get_serial_port_data(port); |
| 1421 | int buffered; |
| 1422 | unsigned long flags; |
| 1423 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1424 | dbg("%s - port %d", __FUNCTION__, port->number); |
| 1425 | |
Ian Abbott | 2246540 | 2006-06-26 12:59:17 +0100 | [diff] [blame] | 1426 | spin_lock_irqsave(&priv->tx_lock, flags); |
| 1427 | buffered = (int)priv->tx_outstanding_bytes; |
| 1428 | spin_unlock_irqrestore(&priv->tx_lock, flags); |
| 1429 | if (buffered < 0) { |
| 1430 | err("%s outstanding tx bytes is negative!", __FUNCTION__); |
| 1431 | buffered = 0; |
| 1432 | } |
| 1433 | return buffered; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1434 | } /* ftdi_chars_in_buffer */ |
| 1435 | |
| 1436 | |
| 1437 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 1438 | static void ftdi_read_bulk_callback (struct urb *urb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1439 | { /* ftdi_read_bulk_callback */ |
| 1440 | struct usb_serial_port *port = (struct usb_serial_port *)urb->context; |
| 1441 | struct tty_struct *tty; |
| 1442 | struct ftdi_private *priv; |
Ian Abbott | 2246540 | 2006-06-26 12:59:17 +0100 | [diff] [blame] | 1443 | unsigned long countread; |
| 1444 | unsigned long flags; |
Greg Kroah-Hartman | 0fb0aa1 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 1445 | int status = urb->status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1446 | |
| 1447 | if (urb->number_of_packets > 0) { |
| 1448 | err("%s transfer_buffer_length %d actual_length %d number of packets %d",__FUNCTION__, |
| 1449 | urb->transfer_buffer_length, urb->actual_length, urb->number_of_packets ); |
| 1450 | err("%s transfer_flags %x ", __FUNCTION__,urb->transfer_flags ); |
| 1451 | } |
| 1452 | |
| 1453 | dbg("%s - port %d", __FUNCTION__, port->number); |
| 1454 | |
| 1455 | if (port->open_count <= 0) |
| 1456 | return; |
| 1457 | |
| 1458 | tty = port->tty; |
| 1459 | if (!tty) { |
| 1460 | dbg("%s - bad tty pointer - exiting",__FUNCTION__); |
| 1461 | return; |
| 1462 | } |
| 1463 | |
| 1464 | priv = usb_get_serial_port_data(port); |
| 1465 | if (!priv) { |
| 1466 | dbg("%s - bad port private data pointer - exiting", __FUNCTION__); |
| 1467 | return; |
| 1468 | } |
| 1469 | |
| 1470 | if (urb != port->read_urb) { |
| 1471 | err("%s - Not my urb!", __FUNCTION__); |
| 1472 | } |
| 1473 | |
Greg Kroah-Hartman | 0fb0aa1 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 1474 | if (status) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1475 | /* This will happen at close every time so it is a dbg not an err */ |
Greg Kroah-Hartman | 0fb0aa1 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 1476 | dbg("(this is ok on close) nonzero read bulk status received: " |
| 1477 | "%d", status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1478 | return; |
| 1479 | } |
| 1480 | |
Ian Abbott | 2246540 | 2006-06-26 12:59:17 +0100 | [diff] [blame] | 1481 | /* count data bytes, but not status bytes */ |
| 1482 | countread = urb->actual_length; |
| 1483 | countread -= 2 * ((countread + (PKTSZ - 1)) / PKTSZ); |
| 1484 | spin_lock_irqsave(&priv->rx_lock, flags); |
| 1485 | priv->rx_bytes += countread; |
| 1486 | spin_unlock_irqrestore(&priv->rx_lock, flags); |
| 1487 | |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 1488 | ftdi_process_read(&priv->rx_work.work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1489 | |
| 1490 | } /* ftdi_read_bulk_callback */ |
| 1491 | |
| 1492 | |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 1493 | static void ftdi_process_read (struct work_struct *work) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1494 | { /* ftdi_process_read */ |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 1495 | struct ftdi_private *priv = |
| 1496 | container_of(work, struct ftdi_private, rx_work.work); |
| 1497 | struct usb_serial_port *port = priv->port; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1498 | struct urb *urb; |
| 1499 | struct tty_struct *tty; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1500 | char error_flag; |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1501 | unsigned char *data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1502 | |
| 1503 | int i; |
| 1504 | int result; |
| 1505 | int need_flip; |
| 1506 | int packet_offset; |
Ian Abbott | 76854ce | 2005-06-02 10:34:11 +0100 | [diff] [blame] | 1507 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1508 | |
| 1509 | dbg("%s - port %d", __FUNCTION__, port->number); |
| 1510 | |
| 1511 | if (port->open_count <= 0) |
| 1512 | return; |
| 1513 | |
| 1514 | tty = port->tty; |
| 1515 | if (!tty) { |
| 1516 | dbg("%s - bad tty pointer - exiting",__FUNCTION__); |
| 1517 | return; |
| 1518 | } |
| 1519 | |
| 1520 | priv = usb_get_serial_port_data(port); |
| 1521 | if (!priv) { |
| 1522 | dbg("%s - bad port private data pointer - exiting", __FUNCTION__); |
| 1523 | return; |
| 1524 | } |
| 1525 | |
| 1526 | urb = port->read_urb; |
| 1527 | if (!urb) { |
| 1528 | dbg("%s - bad read_urb pointer - exiting", __FUNCTION__); |
| 1529 | return; |
| 1530 | } |
| 1531 | |
| 1532 | data = urb->transfer_buffer; |
| 1533 | |
Ian Abbott | 76854ce | 2005-06-02 10:34:11 +0100 | [diff] [blame] | 1534 | if (priv->rx_processed) { |
| 1535 | dbg("%s - already processed: %d bytes, %d remain", __FUNCTION__, |
| 1536 | priv->rx_processed, |
| 1537 | urb->actual_length - priv->rx_processed); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1538 | } else { |
Ian Abbott | 76854ce | 2005-06-02 10:34:11 +0100 | [diff] [blame] | 1539 | /* The first two bytes of every read packet are status */ |
| 1540 | if (urb->actual_length > 2) { |
| 1541 | usb_serial_debug_data(debug, &port->dev, __FUNCTION__, urb->actual_length, data); |
| 1542 | } else { |
| 1543 | dbg("Status only: %03oo %03oo",data[0],data[1]); |
| 1544 | } |
| 1545 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1546 | |
| 1547 | |
| 1548 | /* TO DO -- check for hung up line and handle appropriately: */ |
| 1549 | /* send hangup */ |
| 1550 | /* See acm.c - you do a tty_hangup - eg tty_hangup(tty) */ |
| 1551 | /* if CD is dropped and the line is not CLOCAL then we should hangup */ |
| 1552 | |
| 1553 | need_flip = 0; |
Ian Abbott | 76854ce | 2005-06-02 10:34:11 +0100 | [diff] [blame] | 1554 | for (packet_offset = priv->rx_processed; packet_offset < urb->actual_length; packet_offset += PKTSZ) { |
| 1555 | int length; |
| 1556 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1557 | /* Compare new line status to the old one, signal if different */ |
Ian Abbott | 76854ce | 2005-06-02 10:34:11 +0100 | [diff] [blame] | 1558 | /* N.B. packet may be processed more than once, but differences |
| 1559 | * are only processed once. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1560 | if (priv != NULL) { |
| 1561 | char new_status = data[packet_offset+0] & FTDI_STATUS_B0_MASK; |
| 1562 | if (new_status != priv->prev_status) { |
| 1563 | priv->diff_status |= new_status ^ priv->prev_status; |
| 1564 | wake_up_interruptible(&priv->delta_msr_wait); |
| 1565 | priv->prev_status = new_status; |
| 1566 | } |
| 1567 | } |
| 1568 | |
Ian Abbott | 76854ce | 2005-06-02 10:34:11 +0100 | [diff] [blame] | 1569 | length = min(PKTSZ, urb->actual_length-packet_offset)-2; |
| 1570 | if (length < 0) { |
| 1571 | err("%s - bad packet length: %d", __FUNCTION__, length+2); |
| 1572 | length = 0; |
| 1573 | } |
| 1574 | |
Ian Abbott | 76854ce | 2005-06-02 10:34:11 +0100 | [diff] [blame] | 1575 | if (priv->rx_flags & THROTTLED) { |
| 1576 | dbg("%s - throttled", __FUNCTION__); |
| 1577 | break; |
| 1578 | } |
Alan Cox | 33f0f88 | 2006-01-09 20:54:13 -0800 | [diff] [blame] | 1579 | if (tty_buffer_request_room(tty, length) < length) { |
Ian Abbott | 76854ce | 2005-06-02 10:34:11 +0100 | [diff] [blame] | 1580 | /* break out & wait for throttling/unthrottling to happen */ |
| 1581 | dbg("%s - receive room low", __FUNCTION__); |
| 1582 | break; |
| 1583 | } |
| 1584 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1585 | /* Handle errors and break */ |
| 1586 | error_flag = TTY_NORMAL; |
| 1587 | /* Although the device uses a bitmask and hence can have multiple */ |
| 1588 | /* errors on a packet - the order here sets the priority the */ |
| 1589 | /* error is returned to the tty layer */ |
| 1590 | |
| 1591 | if ( data[packet_offset+1] & FTDI_RS_OE ) { |
| 1592 | error_flag = TTY_OVERRUN; |
| 1593 | dbg("OVERRRUN error"); |
| 1594 | } |
| 1595 | if ( data[packet_offset+1] & FTDI_RS_BI ) { |
| 1596 | error_flag = TTY_BREAK; |
| 1597 | dbg("BREAK received"); |
| 1598 | } |
| 1599 | if ( data[packet_offset+1] & FTDI_RS_PE ) { |
| 1600 | error_flag = TTY_PARITY; |
| 1601 | dbg("PARITY error"); |
| 1602 | } |
| 1603 | if ( data[packet_offset+1] & FTDI_RS_FE ) { |
| 1604 | error_flag = TTY_FRAME; |
| 1605 | dbg("FRAMING error"); |
| 1606 | } |
Ian Abbott | 76854ce | 2005-06-02 10:34:11 +0100 | [diff] [blame] | 1607 | if (length > 0) { |
| 1608 | for (i = 2; i < length+2; i++) { |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1609 | /* Note that the error flag is duplicated for |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1610 | every character received since we don't know |
| 1611 | which character it applied to */ |
| 1612 | tty_insert_flip_char(tty, data[packet_offset+i], error_flag); |
| 1613 | } |
| 1614 | need_flip = 1; |
| 1615 | } |
| 1616 | |
| 1617 | #ifdef NOT_CORRECT_BUT_KEEPING_IT_FOR_NOW |
| 1618 | /* if a parity error is detected you get status packets forever |
| 1619 | until a character is sent without a parity error. |
| 1620 | This doesn't work well since the application receives a never |
| 1621 | ending stream of bad data - even though new data hasn't been sent. |
| 1622 | Therefore I (bill) have taken this out. |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1623 | However - this might make sense for framing errors and so on |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1624 | so I am leaving the code in for now. |
| 1625 | */ |
| 1626 | else { |
| 1627 | if (error_flag != TTY_NORMAL){ |
| 1628 | dbg("error_flag is not normal"); |
| 1629 | /* In this case it is just status - if that is an error send a bad character */ |
| 1630 | if(tty->flip.count >= TTY_FLIPBUF_SIZE) { |
| 1631 | tty_flip_buffer_push(tty); |
| 1632 | } |
| 1633 | tty_insert_flip_char(tty, 0xff, error_flag); |
| 1634 | need_flip = 1; |
| 1635 | } |
| 1636 | } |
| 1637 | #endif |
| 1638 | } /* "for(packet_offset=0..." */ |
| 1639 | |
| 1640 | /* Low latency */ |
| 1641 | if (need_flip) { |
| 1642 | tty_flip_buffer_push(tty); |
| 1643 | } |
| 1644 | |
Ian Abbott | 76854ce | 2005-06-02 10:34:11 +0100 | [diff] [blame] | 1645 | if (packet_offset < urb->actual_length) { |
| 1646 | /* not completely processed - record progress */ |
| 1647 | priv->rx_processed = packet_offset; |
| 1648 | dbg("%s - incomplete, %d bytes processed, %d remain", |
| 1649 | __FUNCTION__, packet_offset, |
| 1650 | urb->actual_length - packet_offset); |
| 1651 | /* check if we were throttled while processing */ |
| 1652 | spin_lock_irqsave(&priv->rx_lock, flags); |
| 1653 | if (priv->rx_flags & THROTTLED) { |
| 1654 | priv->rx_flags |= ACTUALLY_THROTTLED; |
| 1655 | spin_unlock_irqrestore(&priv->rx_lock, flags); |
| 1656 | dbg("%s - deferring remainder until unthrottled", |
| 1657 | __FUNCTION__); |
| 1658 | return; |
| 1659 | } |
| 1660 | spin_unlock_irqrestore(&priv->rx_lock, flags); |
| 1661 | /* if the port is closed stop trying to read */ |
| 1662 | if (port->open_count > 0){ |
| 1663 | /* delay processing of remainder */ |
| 1664 | schedule_delayed_work(&priv->rx_work, 1); |
| 1665 | } else { |
| 1666 | dbg("%s - port is closed", __FUNCTION__); |
| 1667 | } |
| 1668 | return; |
| 1669 | } |
| 1670 | |
| 1671 | /* urb is completely processed */ |
| 1672 | priv->rx_processed = 0; |
| 1673 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1674 | /* if the port is closed stop trying to read */ |
| 1675 | if (port->open_count > 0){ |
| 1676 | /* Continue trying to always read */ |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1677 | usb_fill_bulk_urb(port->read_urb, port->serial->dev, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1678 | usb_rcvbulkpipe(port->serial->dev, port->bulk_in_endpointAddress), |
| 1679 | port->read_urb->transfer_buffer, port->read_urb->transfer_buffer_length, |
| 1680 | ftdi_read_bulk_callback, port); |
| 1681 | |
| 1682 | result = usb_submit_urb(port->read_urb, GFP_ATOMIC); |
| 1683 | if (result) |
| 1684 | err("%s - failed resubmitting read urb, error %d", __FUNCTION__, result); |
| 1685 | } |
| 1686 | |
| 1687 | return; |
| 1688 | } /* ftdi_process_read */ |
| 1689 | |
| 1690 | |
| 1691 | static void ftdi_break_ctl( struct usb_serial_port *port, int break_state ) |
| 1692 | { |
| 1693 | struct ftdi_private *priv = usb_get_serial_port_data(port); |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1694 | __u16 urb_value = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1695 | char buf[1]; |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1696 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1697 | /* break_state = -1 to turn on break, and 0 to turn off break */ |
| 1698 | /* see drivers/char/tty_io.c to see it used */ |
| 1699 | /* last_set_data_urb_value NEVER has the break bit set in it */ |
| 1700 | |
| 1701 | if (break_state) { |
| 1702 | urb_value = priv->last_set_data_urb_value | FTDI_SIO_SET_BREAK; |
| 1703 | } else { |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1704 | urb_value = priv->last_set_data_urb_value; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1705 | } |
| 1706 | |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1707 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1708 | if (usb_control_msg(port->serial->dev, usb_sndctrlpipe(port->serial->dev, 0), |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1709 | FTDI_SIO_SET_DATA_REQUEST, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1710 | FTDI_SIO_SET_DATA_REQUEST_TYPE, |
| 1711 | urb_value , priv->interface, |
| 1712 | buf, 0, WDR_TIMEOUT) < 0) { |
| 1713 | err("%s FAILED to enable/disable break state (state was %d)", __FUNCTION__,break_state); |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1714 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1715 | |
| 1716 | dbg("%s break state is %d - urb is %d", __FUNCTION__,break_state, urb_value); |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1717 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1718 | } |
| 1719 | |
| 1720 | |
| 1721 | /* old_termios contains the original termios settings and tty->termios contains |
| 1722 | * the new setting to be used |
| 1723 | * WARNING: set_termios calls this with old_termios in kernel space |
| 1724 | */ |
| 1725 | |
Alan Cox | 606d099 | 2006-12-08 02:38:45 -0800 | [diff] [blame] | 1726 | static void ftdi_set_termios (struct usb_serial_port *port, struct ktermios *old_termios) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1727 | { /* ftdi_termios */ |
| 1728 | struct usb_device *dev = port->serial->dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1729 | struct ftdi_private *priv = usb_get_serial_port_data(port); |
Alan Cox | 669a6db | 2007-10-18 01:24:24 -0700 | [diff] [blame] | 1730 | struct ktermios *termios = port->tty->termios; |
| 1731 | unsigned int cflag = termios->c_cflag; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1732 | __u16 urb_value; /* will hold the new flags */ |
| 1733 | char buf[1]; /* Perhaps I should dynamically alloc this? */ |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1734 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1735 | // Added for xon/xoff support |
Alan Cox | 669a6db | 2007-10-18 01:24:24 -0700 | [diff] [blame] | 1736 | unsigned int iflag = termios->c_iflag; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1737 | unsigned char vstop; |
| 1738 | unsigned char vstart; |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1739 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1740 | dbg("%s", __FUNCTION__); |
| 1741 | |
| 1742 | /* Force baud rate if this device requires it, unless it is set to B0. */ |
Alan Cox | 669a6db | 2007-10-18 01:24:24 -0700 | [diff] [blame] | 1743 | if (priv->force_baud && ((termios->c_cflag & CBAUD) != B0)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1744 | dbg("%s: forcing baud rate for this device", __FUNCTION__); |
Andrew Morton | bd5e47c | 2007-10-18 01:24:25 -0700 | [diff] [blame] | 1745 | tty_encode_baud_rate(port->tty, priv->force_baud, |
| 1746 | priv->force_baud); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1747 | } |
| 1748 | |
| 1749 | /* Force RTS-CTS if this device requires it. */ |
| 1750 | if (priv->force_rtscts) { |
| 1751 | dbg("%s: forcing rtscts for this device", __FUNCTION__); |
Alan Cox | 669a6db | 2007-10-18 01:24:24 -0700 | [diff] [blame] | 1752 | termios->c_cflag |= CRTSCTS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1753 | } |
| 1754 | |
Alan Cox | 669a6db | 2007-10-18 01:24:24 -0700 | [diff] [blame] | 1755 | cflag = termios->c_cflag; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1756 | |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1757 | /* FIXME -For this cut I don't care if the line is really changing or |
| 1758 | not - so just do the change regardless - should be able to |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1759 | compare old_termios and tty->termios */ |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1760 | /* NOTE These routines can get interrupted by |
| 1761 | ftdi_sio_read_bulk_callback - need to examine what this |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1762 | means - don't see any problems yet */ |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1763 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1764 | /* Set number of data bits, parity, stop bits */ |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1765 | |
Alan Cox | 669a6db | 2007-10-18 01:24:24 -0700 | [diff] [blame] | 1766 | termios->c_cflag &= ~CMSPAR; |
| 1767 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1768 | urb_value = 0; |
| 1769 | urb_value |= (cflag & CSTOPB ? FTDI_SIO_SET_DATA_STOP_BITS_2 : |
| 1770 | FTDI_SIO_SET_DATA_STOP_BITS_1); |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1771 | urb_value |= (cflag & PARENB ? |
| 1772 | (cflag & PARODD ? FTDI_SIO_SET_DATA_PARITY_ODD : |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1773 | FTDI_SIO_SET_DATA_PARITY_EVEN) : |
| 1774 | FTDI_SIO_SET_DATA_PARITY_NONE); |
| 1775 | if (cflag & CSIZE) { |
| 1776 | switch (cflag & CSIZE) { |
| 1777 | case CS5: urb_value |= 5; dbg("Setting CS5"); break; |
| 1778 | case CS6: urb_value |= 6; dbg("Setting CS6"); break; |
| 1779 | case CS7: urb_value |= 7; dbg("Setting CS7"); break; |
| 1780 | case CS8: urb_value |= 8; dbg("Setting CS8"); break; |
| 1781 | default: |
| 1782 | err("CSIZE was set but not CS5-CS8"); |
| 1783 | } |
| 1784 | } |
| 1785 | |
| 1786 | /* This is needed by the break command since it uses the same command - but is |
| 1787 | * or'ed with this value */ |
| 1788 | priv->last_set_data_urb_value = urb_value; |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1789 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1790 | if (usb_control_msg(dev, usb_sndctrlpipe(dev, 0), |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1791 | FTDI_SIO_SET_DATA_REQUEST, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1792 | FTDI_SIO_SET_DATA_REQUEST_TYPE, |
| 1793 | urb_value , priv->interface, |
Ian Abbott | 279e154 | 2005-07-29 12:16:52 -0700 | [diff] [blame] | 1794 | buf, 0, WDR_SHORT_TIMEOUT) < 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1795 | err("%s FAILED to set databits/stopbits/parity", __FUNCTION__); |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1796 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1797 | |
| 1798 | /* Now do the baudrate */ |
| 1799 | if ((cflag & CBAUD) == B0 ) { |
| 1800 | /* Disable flow control */ |
| 1801 | if (usb_control_msg(dev, usb_sndctrlpipe(dev, 0), |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1802 | FTDI_SIO_SET_FLOW_CTRL_REQUEST, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1803 | FTDI_SIO_SET_FLOW_CTRL_REQUEST_TYPE, |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1804 | 0, priv->interface, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1805 | buf, 0, WDR_TIMEOUT) < 0) { |
| 1806 | err("%s error from disable flowcontrol urb", __FUNCTION__); |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1807 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1808 | /* Drop RTS and DTR */ |
Ian Abbott | 74ede0f | 2005-07-29 12:16:41 -0700 | [diff] [blame] | 1809 | clear_mctrl(port, TIOCM_DTR | TIOCM_RTS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1810 | } else { |
| 1811 | /* set the baudrate determined before */ |
| 1812 | if (change_speed(port)) { |
Peter Favrholdt | 72a755f | 2005-09-22 00:48:49 -0700 | [diff] [blame] | 1813 | err("%s urb failed to set baudrate", __FUNCTION__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1814 | } |
Peter Favrholdt | 72a755f | 2005-09-22 00:48:49 -0700 | [diff] [blame] | 1815 | /* Ensure RTS and DTR are raised when baudrate changed from 0 */ |
Guennadi Liakhovetski | 57845bd | 2006-04-13 22:27:12 +0200 | [diff] [blame] | 1816 | if (!old_termios || (old_termios->c_cflag & CBAUD) == B0) { |
Peter Favrholdt | 72a755f | 2005-09-22 00:48:49 -0700 | [diff] [blame] | 1817 | set_mctrl(port, TIOCM_DTR | TIOCM_RTS); |
| 1818 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1819 | } |
| 1820 | |
| 1821 | /* Set flow control */ |
| 1822 | /* Note device also supports DTR/CD (ugh) and Xon/Xoff in hardware */ |
| 1823 | if (cflag & CRTSCTS) { |
| 1824 | dbg("%s Setting to CRTSCTS flow control", __FUNCTION__); |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1825 | if (usb_control_msg(dev, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1826 | usb_sndctrlpipe(dev, 0), |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1827 | FTDI_SIO_SET_FLOW_CTRL_REQUEST, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1828 | FTDI_SIO_SET_FLOW_CTRL_REQUEST_TYPE, |
| 1829 | 0 , (FTDI_SIO_RTS_CTS_HS | priv->interface), |
| 1830 | buf, 0, WDR_TIMEOUT) < 0) { |
| 1831 | err("urb failed to set to rts/cts flow control"); |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1832 | } |
| 1833 | |
| 1834 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1835 | /* |
| 1836 | * Xon/Xoff code |
| 1837 | * |
| 1838 | * Check the IXOFF status in the iflag component of the termios structure |
| 1839 | * if IXOFF is not set, the pre-xon/xoff code is executed. |
| 1840 | */ |
| 1841 | if (iflag & IXOFF) { |
| 1842 | dbg("%s request to enable xonxoff iflag=%04x",__FUNCTION__,iflag); |
| 1843 | // Try to enable the XON/XOFF on the ftdi_sio |
| 1844 | // Set the vstart and vstop -- could have been done up above where |
| 1845 | // a lot of other dereferencing is done but that would be very |
| 1846 | // inefficient as vstart and vstop are not always needed |
Alan Cox | 669a6db | 2007-10-18 01:24:24 -0700 | [diff] [blame] | 1847 | vstart = termios->c_cc[VSTART]; |
| 1848 | vstop = termios->c_cc[VSTOP]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1849 | urb_value=(vstop << 8) | (vstart); |
| 1850 | |
| 1851 | if (usb_control_msg(dev, |
| 1852 | usb_sndctrlpipe(dev, 0), |
| 1853 | FTDI_SIO_SET_FLOW_CTRL_REQUEST, |
| 1854 | FTDI_SIO_SET_FLOW_CTRL_REQUEST_TYPE, |
| 1855 | urb_value , (FTDI_SIO_XON_XOFF_HS |
| 1856 | | priv->interface), |
| 1857 | buf, 0, WDR_TIMEOUT) < 0) { |
| 1858 | err("urb failed to set to xon/xoff flow control"); |
| 1859 | } |
| 1860 | } else { |
| 1861 | /* else clause to only run if cfag ! CRTSCTS and iflag ! XOFF */ |
| 1862 | /* CHECKME Assuming XON/XOFF handled by tty stack - not by device */ |
| 1863 | dbg("%s Turning off hardware flow control", __FUNCTION__); |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1864 | if (usb_control_msg(dev, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1865 | usb_sndctrlpipe(dev, 0), |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1866 | FTDI_SIO_SET_FLOW_CTRL_REQUEST, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1867 | FTDI_SIO_SET_FLOW_CTRL_REQUEST_TYPE, |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1868 | 0, priv->interface, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1869 | buf, 0, WDR_TIMEOUT) < 0) { |
| 1870 | err("urb failed to clear flow control"); |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1871 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1872 | } |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1873 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1874 | } |
| 1875 | return; |
| 1876 | } /* ftdi_termios */ |
| 1877 | |
| 1878 | |
| 1879 | static int ftdi_tiocmget (struct usb_serial_port *port, struct file *file) |
| 1880 | { |
| 1881 | struct ftdi_private *priv = usb_get_serial_port_data(port); |
| 1882 | unsigned char buf[2]; |
| 1883 | int ret; |
| 1884 | |
| 1885 | dbg("%s TIOCMGET", __FUNCTION__); |
| 1886 | switch (priv->chip_type) { |
| 1887 | case SIO: |
| 1888 | /* Request the status from the device */ |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1889 | if ((ret = usb_control_msg(port->serial->dev, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1890 | usb_rcvctrlpipe(port->serial->dev, 0), |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1891 | FTDI_SIO_GET_MODEM_STATUS_REQUEST, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1892 | FTDI_SIO_GET_MODEM_STATUS_REQUEST_TYPE, |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1893 | 0, 0, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1894 | buf, 1, WDR_TIMEOUT)) < 0 ) { |
| 1895 | err("%s Could not get modem status of device - err: %d", __FUNCTION__, |
| 1896 | ret); |
| 1897 | return(ret); |
| 1898 | } |
| 1899 | break; |
| 1900 | case FT8U232AM: |
| 1901 | case FT232BM: |
| 1902 | case FT2232C: |
Andrew M. Bishop | ed6e528 | 2007-08-21 19:08:56 +0100 | [diff] [blame] | 1903 | case FT232RL: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1904 | /* the 8U232AM returns a two byte value (the sio is a 1 byte value) - in the same |
| 1905 | format as the data returned from the in point */ |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1906 | if ((ret = usb_control_msg(port->serial->dev, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1907 | usb_rcvctrlpipe(port->serial->dev, 0), |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1908 | FTDI_SIO_GET_MODEM_STATUS_REQUEST, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1909 | FTDI_SIO_GET_MODEM_STATUS_REQUEST_TYPE, |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1910 | 0, priv->interface, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1911 | buf, 2, WDR_TIMEOUT)) < 0 ) { |
| 1912 | err("%s Could not get modem status of device - err: %d", __FUNCTION__, |
| 1913 | ret); |
| 1914 | return(ret); |
| 1915 | } |
| 1916 | break; |
| 1917 | default: |
| 1918 | return -EFAULT; |
| 1919 | break; |
| 1920 | } |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1921 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1922 | return (buf[0] & FTDI_SIO_DSR_MASK ? TIOCM_DSR : 0) | |
| 1923 | (buf[0] & FTDI_SIO_CTS_MASK ? TIOCM_CTS : 0) | |
| 1924 | (buf[0] & FTDI_SIO_RI_MASK ? TIOCM_RI : 0) | |
| 1925 | (buf[0] & FTDI_SIO_RLSD_MASK ? TIOCM_CD : 0) | |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1926 | priv->last_dtr_rts; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1927 | } |
| 1928 | |
| 1929 | static int ftdi_tiocmset(struct usb_serial_port *port, struct file * file, unsigned int set, unsigned int clear) |
| 1930 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1931 | dbg("%s TIOCMSET", __FUNCTION__); |
Ian Abbott | 74ede0f | 2005-07-29 12:16:41 -0700 | [diff] [blame] | 1932 | return update_mctrl(port, set, clear); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1933 | } |
| 1934 | |
| 1935 | |
| 1936 | static int ftdi_ioctl (struct usb_serial_port *port, struct file * file, unsigned int cmd, unsigned long arg) |
| 1937 | { |
| 1938 | struct ftdi_private *priv = usb_get_serial_port_data(port); |
| 1939 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1940 | dbg("%s cmd 0x%04x", __FUNCTION__, cmd); |
| 1941 | |
| 1942 | /* Based on code from acm.c and others */ |
| 1943 | switch (cmd) { |
| 1944 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1945 | case TIOCGSERIAL: /* gets serial port data */ |
| 1946 | return get_serial_info(port, (struct serial_struct __user *) arg); |
| 1947 | |
| 1948 | case TIOCSSERIAL: /* sets serial port data */ |
| 1949 | return set_serial_info(port, (struct serial_struct __user *) arg); |
| 1950 | |
| 1951 | /* |
| 1952 | * Wait for any of the 4 modem inputs (DCD,RI,DSR,CTS) to change |
| 1953 | * - mask passed in arg for lines of interest |
| 1954 | * (use |'ed TIOCM_RNG/DSR/CD/CTS for masking) |
| 1955 | * Caller should use TIOCGICOUNT to see which one it was. |
| 1956 | * |
| 1957 | * This code is borrowed from linux/drivers/char/serial.c |
| 1958 | */ |
| 1959 | case TIOCMIWAIT: |
| 1960 | while (priv != NULL) { |
| 1961 | interruptible_sleep_on(&priv->delta_msr_wait); |
| 1962 | /* see if a signal did it */ |
| 1963 | if (signal_pending(current)) |
| 1964 | return -ERESTARTSYS; |
| 1965 | else { |
| 1966 | char diff = priv->diff_status; |
| 1967 | |
| 1968 | if (diff == 0) { |
| 1969 | return -EIO; /* no change => error */ |
| 1970 | } |
| 1971 | |
| 1972 | /* Consume all events */ |
| 1973 | priv->diff_status = 0; |
| 1974 | |
| 1975 | /* Return 0 if caller wanted to know about these bits */ |
| 1976 | if ( ((arg & TIOCM_RNG) && (diff & FTDI_RS0_RI)) || |
| 1977 | ((arg & TIOCM_DSR) && (diff & FTDI_RS0_DSR)) || |
| 1978 | ((arg & TIOCM_CD) && (diff & FTDI_RS0_RLSD)) || |
| 1979 | ((arg & TIOCM_CTS) && (diff & FTDI_RS0_CTS)) ) { |
| 1980 | return 0; |
| 1981 | } |
| 1982 | /* |
| 1983 | * Otherwise caller can't care less about what happened, |
| 1984 | * and so we continue to wait for more events. |
| 1985 | */ |
| 1986 | } |
| 1987 | } |
| 1988 | return(0); |
| 1989 | break; |
| 1990 | default: |
| 1991 | break; |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1992 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1993 | } |
| 1994 | |
| 1995 | |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1996 | /* This is not necessarily an error - turns out the higher layers will do |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1997 | * some ioctls itself (see comment above) |
| 1998 | */ |
| 1999 | dbg("%s arg not supported - it was 0x%04x - check /usr/include/asm/ioctls.h", __FUNCTION__, cmd); |
| 2000 | |
| 2001 | return(-ENOIOCTLCMD); |
| 2002 | } /* ftdi_ioctl */ |
| 2003 | |
| 2004 | |
| 2005 | static void ftdi_throttle (struct usb_serial_port *port) |
| 2006 | { |
| 2007 | struct ftdi_private *priv = usb_get_serial_port_data(port); |
| 2008 | unsigned long flags; |
| 2009 | |
| 2010 | dbg("%s - port %d", __FUNCTION__, port->number); |
| 2011 | |
| 2012 | spin_lock_irqsave(&priv->rx_lock, flags); |
| 2013 | priv->rx_flags |= THROTTLED; |
| 2014 | spin_unlock_irqrestore(&priv->rx_lock, flags); |
| 2015 | } |
| 2016 | |
| 2017 | |
| 2018 | static void ftdi_unthrottle (struct usb_serial_port *port) |
| 2019 | { |
| 2020 | struct ftdi_private *priv = usb_get_serial_port_data(port); |
| 2021 | int actually_throttled; |
| 2022 | unsigned long flags; |
| 2023 | |
| 2024 | dbg("%s - port %d", __FUNCTION__, port->number); |
| 2025 | |
| 2026 | spin_lock_irqsave(&priv->rx_lock, flags); |
| 2027 | actually_throttled = priv->rx_flags & ACTUALLY_THROTTLED; |
| 2028 | priv->rx_flags &= ~(THROTTLED | ACTUALLY_THROTTLED); |
| 2029 | spin_unlock_irqrestore(&priv->rx_lock, flags); |
| 2030 | |
| 2031 | if (actually_throttled) |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 2032 | schedule_delayed_work(&priv->rx_work, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2033 | } |
| 2034 | |
| 2035 | static int __init ftdi_init (void) |
| 2036 | { |
| 2037 | int retval; |
| 2038 | |
| 2039 | dbg("%s", __FUNCTION__); |
Ian Abbott | fdcb0a0 | 2005-07-28 18:40:32 +0100 | [diff] [blame] | 2040 | if (vendor > 0 && product > 0) { |
| 2041 | /* Add user specified VID/PID to reserved element of table. */ |
| 2042 | int i; |
| 2043 | for (i = 0; id_table_combined[i].idVendor; i++) |
| 2044 | ; |
| 2045 | id_table_combined[i].match_flags = USB_DEVICE_ID_MATCH_DEVICE; |
| 2046 | id_table_combined[i].idVendor = vendor; |
| 2047 | id_table_combined[i].idProduct = product; |
| 2048 | } |
Ian Abbott | 8f977e4 | 2005-06-20 16:45:42 +0100 | [diff] [blame] | 2049 | retval = usb_serial_register(&ftdi_sio_device); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2050 | if (retval) |
Ian Abbott | 8f977e4 | 2005-06-20 16:45:42 +0100 | [diff] [blame] | 2051 | goto failed_sio_register; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2052 | retval = usb_register(&ftdi_driver); |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 2053 | if (retval) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2054 | goto failed_usb_register; |
| 2055 | |
| 2056 | info(DRIVER_VERSION ":" DRIVER_DESC); |
| 2057 | return 0; |
| 2058 | failed_usb_register: |
Ian Abbott | 8f977e4 | 2005-06-20 16:45:42 +0100 | [diff] [blame] | 2059 | usb_serial_deregister(&ftdi_sio_device); |
| 2060 | failed_sio_register: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2061 | return retval; |
| 2062 | } |
| 2063 | |
| 2064 | |
| 2065 | static void __exit ftdi_exit (void) |
| 2066 | { |
| 2067 | |
| 2068 | dbg("%s", __FUNCTION__); |
| 2069 | |
| 2070 | usb_deregister (&ftdi_driver); |
Ian Abbott | 8f977e4 | 2005-06-20 16:45:42 +0100 | [diff] [blame] | 2071 | usb_serial_deregister (&ftdi_sio_device); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2072 | |
| 2073 | } |
| 2074 | |
| 2075 | |
| 2076 | module_init(ftdi_init); |
| 2077 | module_exit(ftdi_exit); |
| 2078 | |
| 2079 | MODULE_AUTHOR( DRIVER_AUTHOR ); |
| 2080 | MODULE_DESCRIPTION( DRIVER_DESC ); |
| 2081 | MODULE_LICENSE("GPL"); |
| 2082 | |
| 2083 | module_param(debug, bool, S_IRUGO | S_IWUSR); |
| 2084 | MODULE_PARM_DESC(debug, "Debug enabled or not"); |
Ian Abbott | fdcb0a0 | 2005-07-28 18:40:32 +0100 | [diff] [blame] | 2085 | module_param(vendor, ushort, 0); |
| 2086 | MODULE_PARM_DESC(vendor, "User specified vendor ID (default=" |
| 2087 | __MODULE_STRING(FTDI_VID)")"); |
| 2088 | module_param(product, ushort, 0); |
| 2089 | MODULE_PARM_DESC(vendor, "User specified product ID"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2090 | |