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 | * |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 15 | * See Documentation/usb/usb-serial.txt for more information on using this |
| 16 | * driver |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | * |
| 18 | * See http://ftdi-usb-sio.sourceforge.net for upto date testing info |
| 19 | * and extra documentation |
| 20 | * |
Greg Kroah-Hartman | 504b55c | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 21 | * Change entries from 2004 and earlier can be found in versions of this |
| 22 | * file in kernel versions prior to the 2.6.24 release. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | * |
| 24 | */ |
| 25 | |
| 26 | /* Bill Ryder - bryder@sgi.com - wrote the FTDI_SIO implementation */ |
| 27 | /* Thanx to FTDI for so kindly providing details of the protocol required */ |
| 28 | /* to talk to the device */ |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 29 | /* Thanx to gkh and the rest of the usb dev group for all code I have |
| 30 | assimilated :-) */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | #include <linux/kernel.h> |
| 33 | #include <linux/errno.h> |
| 34 | #include <linux/init.h> |
| 35 | #include <linux/slab.h> |
| 36 | #include <linux/tty.h> |
| 37 | #include <linux/tty_driver.h> |
| 38 | #include <linux/tty_flip.h> |
| 39 | #include <linux/module.h> |
| 40 | #include <linux/spinlock.h> |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 41 | #include <linux/uaccess.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | #include <linux/usb.h> |
| 43 | #include <linux/serial.h> |
Greg Kroah-Hartman | a969888 | 2006-07-11 21:22:58 -0700 | [diff] [blame] | 44 | #include <linux/usb/serial.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | #include "ftdi_sio.h" |
| 46 | |
| 47 | /* |
| 48 | * Version Information |
| 49 | */ |
Ian Abbott | 8f977e4 | 2005-06-20 16:45:42 +0100 | [diff] [blame] | 50 | #define DRIVER_VERSION "v1.4.3" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | #define DRIVER_AUTHOR "Greg Kroah-Hartman <greg@kroah.com>, Bill Ryder <bryder@sgi.com>, Kuba Ober <kuba@mareimbrium.org>" |
| 52 | #define DRIVER_DESC "USB FTDI Serial Converters Driver" |
| 53 | |
| 54 | static int debug; |
Ian Abbott | fdcb0a0 | 2005-07-28 18:40:32 +0100 | [diff] [blame] | 55 | static __u16 vendor = FTDI_VID; |
| 56 | static __u16 product; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | |
Oliver Neukum | 0ffbbe2 | 2007-07-09 12:03:08 -0700 | [diff] [blame] | 58 | struct ftdi_private { |
| 59 | ftdi_chip_type_t chip_type; |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 60 | /* type of device, either SIO or FT8U232AM */ |
Oliver Neukum | 0ffbbe2 | 2007-07-09 12:03:08 -0700 | [diff] [blame] | 61 | int baud_base; /* baud base clock for divisor setting */ |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 62 | int custom_divisor; /* custom_divisor kludge, this is for |
| 63 | baud_base (different from what goes to the |
| 64 | chip!) */ |
Oliver Neukum | 0ffbbe2 | 2007-07-09 12:03:08 -0700 | [diff] [blame] | 65 | __u16 last_set_data_urb_value ; |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 66 | /* the last data state set - needed for doing |
| 67 | * a break |
| 68 | */ |
| 69 | int write_offset; /* This is the offset in the usb data block to |
| 70 | * write the serial data - it varies between |
| 71 | * devices |
Oliver Neukum | 0ffbbe2 | 2007-07-09 12:03:08 -0700 | [diff] [blame] | 72 | */ |
| 73 | int flags; /* some ASYNC_xxxx flags are supported */ |
| 74 | unsigned long last_dtr_rts; /* saved modem control outputs */ |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 75 | wait_queue_head_t delta_msr_wait; /* Used for TIOCMIWAIT */ |
Oliver Neukum | 0ffbbe2 | 2007-07-09 12:03:08 -0700 | [diff] [blame] | 76 | char prev_status, diff_status; /* Used for TIOCMIWAIT */ |
| 77 | __u8 rx_flags; /* receive state flags (throttling) */ |
| 78 | spinlock_t rx_lock; /* spinlock for receive state */ |
| 79 | struct delayed_work rx_work; |
| 80 | struct usb_serial_port *port; |
| 81 | int rx_processed; |
| 82 | unsigned long rx_bytes; |
| 83 | |
| 84 | __u16 interface; /* FT2232C port interface (0 for FT232/245) */ |
| 85 | |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 86 | speed_t force_baud; /* if non-zero, force the baud rate to |
| 87 | this value */ |
| 88 | int force_rtscts; /* if non-zero, force RTS-CTS to always |
| 89 | be enabled */ |
Oliver Neukum | 0ffbbe2 | 2007-07-09 12:03:08 -0700 | [diff] [blame] | 90 | |
| 91 | spinlock_t tx_lock; /* spinlock for transmit state */ |
| 92 | unsigned long tx_bytes; |
| 93 | unsigned long tx_outstanding_bytes; |
| 94 | unsigned long tx_outstanding_urbs; |
| 95 | }; |
| 96 | |
Ian Abbott | 8f977e4 | 2005-06-20 16:45:42 +0100 | [diff] [blame] | 97 | /* struct ftdi_sio_quirk is used by devices requiring special attention. */ |
| 98 | struct ftdi_sio_quirk { |
Tony Lindgren | fa91d43 | 2007-05-04 18:23:24 -0700 | [diff] [blame] | 99 | int (*probe)(struct usb_serial *); |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 100 | /* Special settings for probed ports. */ |
| 101 | void (*port_probe)(struct ftdi_private *); |
Ian Abbott | 8f977e4 | 2005-06-20 16:45:42 +0100 | [diff] [blame] | 102 | }; |
| 103 | |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 104 | static int ftdi_jtag_probe(struct usb_serial *serial); |
| 105 | static int ftdi_mtxorb_hack_setup(struct usb_serial *serial); |
| 106 | static void ftdi_USB_UIRT_setup(struct ftdi_private *priv); |
| 107 | static void ftdi_HE_TIRA1_setup(struct ftdi_private *priv); |
Ian Abbott | 8f977e4 | 2005-06-20 16:45:42 +0100 | [diff] [blame] | 108 | |
Harald Welte | 2073434 | 2008-01-01 15:08:35 +0100 | [diff] [blame] | 109 | static struct ftdi_sio_quirk ftdi_jtag_quirk = { |
| 110 | .probe = ftdi_jtag_probe, |
Tony Lindgren | fa91d43 | 2007-05-04 18:23:24 -0700 | [diff] [blame] | 111 | }; |
| 112 | |
Kevin Vance | 546d7ee | 2008-03-01 13:49:59 -0500 | [diff] [blame] | 113 | static struct ftdi_sio_quirk ftdi_mtxorb_hack_quirk = { |
| 114 | .probe = ftdi_mtxorb_hack_setup, |
| 115 | }; |
| 116 | |
Ian Abbott | 8f977e4 | 2005-06-20 16:45:42 +0100 | [diff] [blame] | 117 | static struct ftdi_sio_quirk ftdi_USB_UIRT_quirk = { |
Oliver Neukum | 0ffbbe2 | 2007-07-09 12:03:08 -0700 | [diff] [blame] | 118 | .port_probe = ftdi_USB_UIRT_setup, |
Ian Abbott | 8f977e4 | 2005-06-20 16:45:42 +0100 | [diff] [blame] | 119 | }; |
| 120 | |
| 121 | static struct ftdi_sio_quirk ftdi_HE_TIRA1_quirk = { |
Oliver Neukum | 0ffbbe2 | 2007-07-09 12:03:08 -0700 | [diff] [blame] | 122 | .port_probe = ftdi_HE_TIRA1_setup, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | }; |
| 124 | |
| 125 | /* |
| 126 | * The 8U232AM has the same API as the sio except for: |
| 127 | * - it can support MUCH higher baudrates; up to: |
| 128 | * o 921600 for RS232 and 2000000 for RS422/485 at 48MHz |
| 129 | * o 230400 at 12MHz |
| 130 | * so .. 8U232AM's baudrate setting codes are different |
| 131 | * - it has a two byte status code. |
| 132 | * - it returns characters every 16ms (the FTDI does it every 40ms) |
| 133 | * |
| 134 | * the bcdDevice value is used to differentiate FT232BM and FT245BM from |
| 135 | * the earlier FT8U232AM and FT8U232BM. For now, include all known VID/PID |
| 136 | * combinations in both tables. |
Ian Abbott | 8f977e4 | 2005-06-20 16:45:42 +0100 | [diff] [blame] | 137 | * FIXME: perhaps bcdDevice can also identify 12MHz FT8U232AM devices, |
| 138 | * 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] | 139 | */ |
| 140 | |
| 141 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | |
| 143 | static struct usb_device_id id_table_combined [] = { |
Jonathan Davies | 2011e92 | 2006-08-09 10:48:03 +0100 | [diff] [blame] | 144 | { USB_DEVICE(FTDI_VID, FTDI_AMC232_PID) }, |
| 145 | { USB_DEVICE(FTDI_VID, FTDI_CANUSB_PID) }, |
Andrew Ewert | 01ba085 | 2008-12-04 09:09:59 -0600 | [diff] [blame] | 146 | { USB_DEVICE(FTDI_VID, FTDI_CANDAPTER_PID) }, |
Peter Mack | 6e1ab3e | 2008-04-22 13:25:11 +0200 | [diff] [blame] | 147 | { USB_DEVICE(FTDI_VID, FTDI_SCS_DEVICE_0_PID) }, |
| 148 | { USB_DEVICE(FTDI_VID, FTDI_SCS_DEVICE_1_PID) }, |
| 149 | { USB_DEVICE(FTDI_VID, FTDI_SCS_DEVICE_2_PID) }, |
| 150 | { USB_DEVICE(FTDI_VID, FTDI_SCS_DEVICE_3_PID) }, |
| 151 | { USB_DEVICE(FTDI_VID, FTDI_SCS_DEVICE_4_PID) }, |
| 152 | { USB_DEVICE(FTDI_VID, FTDI_SCS_DEVICE_5_PID) }, |
| 153 | { USB_DEVICE(FTDI_VID, FTDI_SCS_DEVICE_6_PID) }, |
| 154 | { USB_DEVICE(FTDI_VID, FTDI_SCS_DEVICE_7_PID) }, |
Razvan Gavril | 72a9f95 | 2006-05-04 11:35:49 +0300 | [diff] [blame] | 155 | { USB_DEVICE(FTDI_VID, FTDI_ACTZWAVE_PID) }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | { USB_DEVICE(FTDI_VID, FTDI_IRTRANS_PID) }, |
Luiz Fernando N. Capitulino | 69737df | 2006-04-11 15:52:41 -0300 | [diff] [blame] | 157 | { USB_DEVICE(FTDI_VID, FTDI_IPLUS_PID) }, |
Luiz Fernando N. Capitulino | d099321 | 2007-06-21 22:34:23 -0300 | [diff] [blame] | 158 | { USB_DEVICE(FTDI_VID, FTDI_IPLUS2_PID) }, |
Frank Sievertsen | fad14a0 | 2006-10-20 09:43:53 +0200 | [diff] [blame] | 159 | { USB_DEVICE(FTDI_VID, FTDI_DMX4ALL) }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | { USB_DEVICE(FTDI_VID, FTDI_SIO_PID) }, |
| 161 | { USB_DEVICE(FTDI_VID, FTDI_8U232AM_PID) }, |
| 162 | { USB_DEVICE(FTDI_VID, FTDI_8U232AM_ALT_PID) }, |
Gard Spreemann | d8b2160 | 2007-03-05 00:03:26 +0100 | [diff] [blame] | 163 | { USB_DEVICE(FTDI_VID, FTDI_232RL_PID) }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | { USB_DEVICE(FTDI_VID, FTDI_8U2232C_PID) }, |
Christophe Mariac | c0f8d56 | 2006-06-23 17:36:21 +0200 | [diff] [blame] | 165 | { USB_DEVICE(FTDI_VID, FTDI_MICRO_CHAMELEON_PID) }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | { USB_DEVICE(FTDI_VID, FTDI_RELAIS_PID) }, |
Guido Scholz | 2adb80e | 2007-05-08 19:52:41 +0200 | [diff] [blame] | 167 | { USB_DEVICE(FTDI_VID, FTDI_OPENDCC_PID) }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | { USB_DEVICE(INTERBIOMETRICS_VID, INTERBIOMETRICS_IOBOARD_PID) }, |
| 169 | { USB_DEVICE(INTERBIOMETRICS_VID, INTERBIOMETRICS_MINI_IOBOARD_PID) }, |
Alan Cox | f2ee695 | 2008-12-06 23:46:04 -0800 | [diff] [blame] | 170 | { USB_DEVICE(FTDI_VID, FTDI_SPROG_II) }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | { USB_DEVICE(FTDI_VID, FTDI_XF_632_PID) }, |
| 172 | { USB_DEVICE(FTDI_VID, FTDI_XF_634_PID) }, |
| 173 | { USB_DEVICE(FTDI_VID, FTDI_XF_547_PID) }, |
| 174 | { USB_DEVICE(FTDI_VID, FTDI_XF_633_PID) }, |
| 175 | { USB_DEVICE(FTDI_VID, FTDI_XF_631_PID) }, |
| 176 | { USB_DEVICE(FTDI_VID, FTDI_XF_635_PID) }, |
| 177 | { USB_DEVICE(FTDI_VID, FTDI_XF_640_PID) }, |
| 178 | { USB_DEVICE(FTDI_VID, FTDI_XF_642_PID) }, |
| 179 | { USB_DEVICE(FTDI_VID, FTDI_DSS20_PID) }, |
| 180 | { USB_DEVICE(FTDI_NF_RIC_VID, FTDI_NF_RIC_PID) }, |
| 181 | { USB_DEVICE(FTDI_VID, FTDI_VNHCPCUSB_D_PID) }, |
Ian Abbott | 8f977e4 | 2005-06-20 16:45:42 +0100 | [diff] [blame] | 182 | { USB_DEVICE(FTDI_VID, FTDI_MTXORB_0_PID) }, |
| 183 | { USB_DEVICE(FTDI_VID, FTDI_MTXORB_1_PID) }, |
| 184 | { USB_DEVICE(FTDI_VID, FTDI_MTXORB_2_PID) }, |
| 185 | { USB_DEVICE(FTDI_VID, FTDI_MTXORB_3_PID) }, |
| 186 | { USB_DEVICE(FTDI_VID, FTDI_MTXORB_4_PID) }, |
| 187 | { USB_DEVICE(FTDI_VID, FTDI_MTXORB_5_PID) }, |
| 188 | { USB_DEVICE(FTDI_VID, FTDI_MTXORB_6_PID) }, |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 189 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0100_PID) }, |
| 190 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0101_PID) }, |
| 191 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0102_PID) }, |
| 192 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0103_PID) }, |
| 193 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0104_PID) }, |
| 194 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0105_PID) }, |
| 195 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0106_PID) }, |
| 196 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0107_PID) }, |
| 197 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0108_PID) }, |
| 198 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0109_PID) }, |
| 199 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_010A_PID) }, |
| 200 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_010B_PID) }, |
| 201 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_010C_PID) }, |
| 202 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_010D_PID) }, |
| 203 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_010E_PID) }, |
| 204 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_010F_PID) }, |
| 205 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0110_PID) }, |
| 206 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0111_PID) }, |
| 207 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0112_PID) }, |
| 208 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0113_PID) }, |
| 209 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0114_PID) }, |
| 210 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0115_PID) }, |
| 211 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0116_PID) }, |
| 212 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0117_PID) }, |
| 213 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0118_PID) }, |
| 214 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0119_PID) }, |
| 215 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_011A_PID) }, |
| 216 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_011B_PID) }, |
| 217 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_011C_PID) }, |
| 218 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_011D_PID) }, |
| 219 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_011E_PID) }, |
| 220 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_011F_PID) }, |
| 221 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0120_PID) }, |
| 222 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0121_PID) }, |
| 223 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0122_PID) }, |
| 224 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0123_PID) }, |
| 225 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0124_PID) }, |
| 226 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0125_PID) }, |
| 227 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0126_PID) }, |
| 228 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0127_PID), |
Kevin Vance | 546d7ee | 2008-03-01 13:49:59 -0500 | [diff] [blame] | 229 | .driver_info = (kernel_ulong_t)&ftdi_mtxorb_hack_quirk }, |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 230 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0128_PID) }, |
| 231 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0129_PID) }, |
| 232 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_012A_PID) }, |
| 233 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_012B_PID) }, |
| 234 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_012C_PID), |
Ray Molenkamp | ebb3770 | 2008-05-21 17:06:26 -0600 | [diff] [blame] | 235 | .driver_info = (kernel_ulong_t)&ftdi_mtxorb_hack_quirk }, |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 236 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_012D_PID) }, |
| 237 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_012E_PID) }, |
| 238 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_012F_PID) }, |
| 239 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0130_PID) }, |
| 240 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0131_PID) }, |
| 241 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0132_PID) }, |
| 242 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0133_PID) }, |
| 243 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0134_PID) }, |
| 244 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0135_PID) }, |
| 245 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0136_PID) }, |
| 246 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0137_PID) }, |
| 247 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0138_PID) }, |
| 248 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0139_PID) }, |
| 249 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_013A_PID) }, |
| 250 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_013B_PID) }, |
| 251 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_013C_PID) }, |
| 252 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_013D_PID) }, |
| 253 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_013E_PID) }, |
| 254 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_013F_PID) }, |
| 255 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0140_PID) }, |
| 256 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0141_PID) }, |
| 257 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0142_PID) }, |
| 258 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0143_PID) }, |
| 259 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0144_PID) }, |
| 260 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0145_PID) }, |
| 261 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0146_PID) }, |
| 262 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0147_PID) }, |
| 263 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0148_PID) }, |
| 264 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0149_PID) }, |
| 265 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_014A_PID) }, |
| 266 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_014B_PID) }, |
| 267 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_014C_PID) }, |
| 268 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_014D_PID) }, |
| 269 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_014E_PID) }, |
| 270 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_014F_PID) }, |
| 271 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0150_PID) }, |
| 272 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0151_PID) }, |
| 273 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0152_PID) }, |
| 274 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0153_PID), |
Ray Molenkamp | ebb3770 | 2008-05-21 17:06:26 -0600 | [diff] [blame] | 275 | .driver_info = (kernel_ulong_t)&ftdi_mtxorb_hack_quirk }, |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 276 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0154_PID), |
Ray Molenkamp | ebb3770 | 2008-05-21 17:06:26 -0600 | [diff] [blame] | 277 | .driver_info = (kernel_ulong_t)&ftdi_mtxorb_hack_quirk }, |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 278 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0155_PID), |
Ray Molenkamp | ebb3770 | 2008-05-21 17:06:26 -0600 | [diff] [blame] | 279 | .driver_info = (kernel_ulong_t)&ftdi_mtxorb_hack_quirk }, |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 280 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0156_PID), |
Ray Molenkamp | ebb3770 | 2008-05-21 17:06:26 -0600 | [diff] [blame] | 281 | .driver_info = (kernel_ulong_t)&ftdi_mtxorb_hack_quirk }, |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 282 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0157_PID), |
Ray Molenkamp | ebb3770 | 2008-05-21 17:06:26 -0600 | [diff] [blame] | 283 | .driver_info = (kernel_ulong_t)&ftdi_mtxorb_hack_quirk }, |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 284 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0158_PID), |
Ray Molenkamp | ebb3770 | 2008-05-21 17:06:26 -0600 | [diff] [blame] | 285 | .driver_info = (kernel_ulong_t)&ftdi_mtxorb_hack_quirk }, |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 286 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0159_PID) }, |
| 287 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_015A_PID) }, |
| 288 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_015B_PID) }, |
| 289 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_015C_PID) }, |
| 290 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_015D_PID) }, |
| 291 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_015E_PID) }, |
| 292 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_015F_PID) }, |
| 293 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0160_PID) }, |
| 294 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0161_PID) }, |
| 295 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0162_PID) }, |
| 296 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0163_PID) }, |
| 297 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0164_PID) }, |
| 298 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0165_PID) }, |
| 299 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0166_PID) }, |
| 300 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0167_PID) }, |
| 301 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0168_PID) }, |
| 302 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0169_PID) }, |
| 303 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_016A_PID) }, |
| 304 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_016B_PID) }, |
| 305 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_016C_PID) }, |
| 306 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_016D_PID) }, |
| 307 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_016E_PID) }, |
| 308 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_016F_PID) }, |
| 309 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0170_PID) }, |
| 310 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0171_PID) }, |
| 311 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0172_PID) }, |
| 312 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0173_PID) }, |
| 313 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0174_PID) }, |
| 314 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0175_PID) }, |
| 315 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0176_PID) }, |
| 316 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0177_PID) }, |
| 317 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0178_PID) }, |
| 318 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0179_PID) }, |
| 319 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_017A_PID) }, |
| 320 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_017B_PID) }, |
| 321 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_017C_PID) }, |
| 322 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_017D_PID) }, |
| 323 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_017E_PID) }, |
| 324 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_017F_PID) }, |
| 325 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0180_PID) }, |
| 326 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0181_PID) }, |
| 327 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0182_PID) }, |
| 328 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0183_PID) }, |
| 329 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0184_PID) }, |
| 330 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0185_PID) }, |
| 331 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0186_PID) }, |
| 332 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0187_PID) }, |
| 333 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0188_PID) }, |
| 334 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0189_PID) }, |
| 335 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_018A_PID) }, |
| 336 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_018B_PID) }, |
| 337 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_018C_PID) }, |
| 338 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_018D_PID) }, |
| 339 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_018E_PID) }, |
| 340 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_018F_PID) }, |
| 341 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0190_PID) }, |
| 342 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0191_PID) }, |
| 343 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0192_PID) }, |
| 344 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0193_PID) }, |
| 345 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0194_PID) }, |
| 346 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0195_PID) }, |
| 347 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0196_PID) }, |
| 348 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0197_PID) }, |
| 349 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0198_PID) }, |
| 350 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0199_PID) }, |
| 351 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_019A_PID) }, |
| 352 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_019B_PID) }, |
| 353 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_019C_PID) }, |
| 354 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_019D_PID) }, |
| 355 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_019E_PID) }, |
| 356 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_019F_PID) }, |
| 357 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01A0_PID) }, |
| 358 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01A1_PID) }, |
| 359 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01A2_PID) }, |
| 360 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01A3_PID) }, |
| 361 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01A4_PID) }, |
| 362 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01A5_PID) }, |
| 363 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01A6_PID) }, |
| 364 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01A7_PID) }, |
| 365 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01A8_PID) }, |
| 366 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01A9_PID) }, |
| 367 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01AA_PID) }, |
| 368 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01AB_PID) }, |
| 369 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01AC_PID) }, |
| 370 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01AD_PID) }, |
| 371 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01AE_PID) }, |
| 372 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01AF_PID) }, |
| 373 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01B0_PID) }, |
| 374 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01B1_PID) }, |
| 375 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01B2_PID) }, |
| 376 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01B3_PID) }, |
| 377 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01B4_PID) }, |
| 378 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01B5_PID) }, |
| 379 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01B6_PID) }, |
| 380 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01B7_PID) }, |
| 381 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01B8_PID) }, |
| 382 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01B9_PID) }, |
| 383 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01BA_PID) }, |
| 384 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01BB_PID) }, |
| 385 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01BC_PID) }, |
| 386 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01BD_PID) }, |
| 387 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01BE_PID) }, |
| 388 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01BF_PID) }, |
| 389 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01C0_PID) }, |
| 390 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01C1_PID) }, |
| 391 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01C2_PID) }, |
| 392 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01C3_PID) }, |
| 393 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01C4_PID) }, |
| 394 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01C5_PID) }, |
| 395 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01C6_PID) }, |
| 396 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01C7_PID) }, |
| 397 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01C8_PID) }, |
| 398 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01C9_PID) }, |
| 399 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01CA_PID) }, |
| 400 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01CB_PID) }, |
| 401 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01CC_PID) }, |
| 402 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01CD_PID) }, |
| 403 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01CE_PID) }, |
| 404 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01CF_PID) }, |
| 405 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01D0_PID) }, |
| 406 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01D1_PID) }, |
| 407 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01D2_PID) }, |
| 408 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01D3_PID) }, |
| 409 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01D4_PID) }, |
| 410 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01D5_PID) }, |
| 411 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01D6_PID) }, |
| 412 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01D7_PID) }, |
| 413 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01D8_PID) }, |
| 414 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01D9_PID) }, |
| 415 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01DA_PID) }, |
| 416 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01DB_PID) }, |
| 417 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01DC_PID) }, |
| 418 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01DD_PID) }, |
| 419 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01DE_PID) }, |
| 420 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01DF_PID) }, |
| 421 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01E0_PID) }, |
| 422 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01E1_PID) }, |
| 423 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01E2_PID) }, |
| 424 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01E3_PID) }, |
| 425 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01E4_PID) }, |
| 426 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01E5_PID) }, |
| 427 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01E6_PID) }, |
| 428 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01E7_PID) }, |
| 429 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01E8_PID) }, |
| 430 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01E9_PID) }, |
| 431 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01EA_PID) }, |
| 432 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01EB_PID) }, |
| 433 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01EC_PID) }, |
| 434 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01ED_PID) }, |
| 435 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01EE_PID) }, |
| 436 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01EF_PID) }, |
| 437 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01F0_PID) }, |
| 438 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01F1_PID) }, |
| 439 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01F2_PID) }, |
| 440 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01F3_PID) }, |
| 441 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01F4_PID) }, |
| 442 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01F5_PID) }, |
| 443 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01F6_PID) }, |
| 444 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01F7_PID) }, |
| 445 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01F8_PID) }, |
| 446 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01F9_PID) }, |
| 447 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01FA_PID) }, |
| 448 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01FB_PID) }, |
| 449 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01FC_PID) }, |
| 450 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01FD_PID) }, |
| 451 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01FE_PID) }, |
| 452 | { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_01FF_PID) }, |
Ian Abbott | 8f977e4 | 2005-06-20 16:45:42 +0100 | [diff] [blame] | 453 | { USB_DEVICE(FTDI_VID, FTDI_PERLE_ULTRAPORT_PID) }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 454 | { USB_DEVICE(FTDI_VID, FTDI_PIEGROUP_PID) }, |
Dave Platt | 274a4bb | 2006-07-18 21:26:54 -0700 | [diff] [blame] | 455 | { USB_DEVICE(FTDI_VID, FTDI_TNC_X_PID) }, |
Jelle Foks | 868e440 | 2007-03-25 21:08:35 -0400 | [diff] [blame] | 456 | { USB_DEVICE(FTDI_VID, FTDI_USBX_707_PID) }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 457 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2101_PID) }, |
| 458 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2102_PID) }, |
| 459 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2103_PID) }, |
| 460 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2104_PID) }, |
Justin Carlson | a148482 | 2006-09-24 11:52:12 +0300 | [diff] [blame] | 461 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2106_PID) }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2201_1_PID) }, |
| 463 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2201_2_PID) }, |
| 464 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2202_1_PID) }, |
| 465 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2202_2_PID) }, |
| 466 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2203_1_PID) }, |
| 467 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2203_2_PID) }, |
| 468 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2401_1_PID) }, |
| 469 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2401_2_PID) }, |
| 470 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2401_3_PID) }, |
| 471 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2401_4_PID) }, |
| 472 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2402_1_PID) }, |
| 473 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2402_2_PID) }, |
| 474 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2402_3_PID) }, |
| 475 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2402_4_PID) }, |
| 476 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2403_1_PID) }, |
| 477 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2403_2_PID) }, |
| 478 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2403_3_PID) }, |
| 479 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2403_4_PID) }, |
| 480 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_1_PID) }, |
| 481 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_2_PID) }, |
| 482 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_3_PID) }, |
| 483 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_4_PID) }, |
| 484 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_5_PID) }, |
| 485 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_6_PID) }, |
| 486 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_7_PID) }, |
| 487 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2801_8_PID) }, |
| 488 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_1_PID) }, |
| 489 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_2_PID) }, |
| 490 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_3_PID) }, |
| 491 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_4_PID) }, |
| 492 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_5_PID) }, |
| 493 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_6_PID) }, |
| 494 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_7_PID) }, |
| 495 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2802_8_PID) }, |
| 496 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_1_PID) }, |
| 497 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_2_PID) }, |
| 498 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_3_PID) }, |
| 499 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_4_PID) }, |
| 500 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_5_PID) }, |
| 501 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_6_PID) }, |
| 502 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_7_PID) }, |
| 503 | { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_8_PID) }, |
| 504 | { USB_DEVICE(IDTECH_VID, IDTECH_IDT1221U_PID) }, |
| 505 | { USB_DEVICE(OCT_VID, OCT_US101_PID) }, |
Ian Abbott | 8f977e4 | 2005-06-20 16:45:42 +0100 | [diff] [blame] | 506 | { USB_DEVICE(FTDI_VID, FTDI_HE_TIRA1_PID), |
| 507 | .driver_info = (kernel_ulong_t)&ftdi_HE_TIRA1_quirk }, |
| 508 | { USB_DEVICE(FTDI_VID, FTDI_USB_UIRT_PID), |
| 509 | .driver_info = (kernel_ulong_t)&ftdi_USB_UIRT_quirk }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 510 | { USB_DEVICE(FTDI_VID, PROTEGO_SPECIAL_1) }, |
| 511 | { USB_DEVICE(FTDI_VID, PROTEGO_R2X0) }, |
| 512 | { USB_DEVICE(FTDI_VID, PROTEGO_SPECIAL_3) }, |
| 513 | { USB_DEVICE(FTDI_VID, PROTEGO_SPECIAL_4) }, |
Ian Abbott | 8f977e4 | 2005-06-20 16:45:42 +0100 | [diff] [blame] | 514 | { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E808_PID) }, |
| 515 | { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E809_PID) }, |
| 516 | { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E80A_PID) }, |
| 517 | { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E80B_PID) }, |
| 518 | { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E80C_PID) }, |
| 519 | { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E80D_PID) }, |
| 520 | { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E80E_PID) }, |
| 521 | { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E80F_PID) }, |
| 522 | { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E888_PID) }, |
| 523 | { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E889_PID) }, |
| 524 | { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E88A_PID) }, |
| 525 | { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E88B_PID) }, |
| 526 | { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E88C_PID) }, |
| 527 | { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E88D_PID) }, |
| 528 | { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E88E_PID) }, |
| 529 | { USB_DEVICE(FTDI_VID, FTDI_GUDEADS_E88F_PID) }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 530 | { USB_DEVICE(FTDI_VID, FTDI_ELV_UO100_PID) }, |
Ian Abbott | 4790074 | 2005-05-17 15:12:13 +0100 | [diff] [blame] | 531 | { USB_DEVICE(FTDI_VID, FTDI_ELV_UM100_PID) }, |
Ian Abbott | e6ac4a4 | 2005-08-02 14:01:27 +0100 | [diff] [blame] | 532 | { USB_DEVICE(FTDI_VID, FTDI_ELV_UR100_PID) }, |
| 533 | { USB_DEVICE(FTDI_VID, FTDI_ELV_ALC8500_PID) }, |
Thomas Riewe | 207c47e | 2005-09-29 14:57:29 +0200 | [diff] [blame] | 534 | { USB_DEVICE(FTDI_VID, FTDI_PYRAMID_PID) }, |
Martin Hagelin | bde6218 | 2005-10-26 21:10:41 +0200 | [diff] [blame] | 535 | { USB_DEVICE(FTDI_VID, FTDI_ELV_FHZ1000PC_PID) }, |
Thomas Schleusener | 4eaf60e | 2007-02-28 22:50:52 +0100 | [diff] [blame] | 536 | { USB_DEVICE(FTDI_VID, FTDI_IBS_US485_PID) }, |
| 537 | { USB_DEVICE(FTDI_VID, FTDI_IBS_PICPRO_PID) }, |
| 538 | { USB_DEVICE(FTDI_VID, FTDI_IBS_PCMCIA_PID) }, |
| 539 | { USB_DEVICE(FTDI_VID, FTDI_IBS_PK1_PID) }, |
| 540 | { USB_DEVICE(FTDI_VID, FTDI_IBS_RS232MON_PID) }, |
| 541 | { USB_DEVICE(FTDI_VID, FTDI_IBS_APP70_PID) }, |
| 542 | { USB_DEVICE(FTDI_VID, FTDI_IBS_PEDO_PID) }, |
| 543 | { USB_DEVICE(FTDI_VID, FTDI_IBS_PROD_PID) }, |
Ian Abbott | e6ac4a4 | 2005-08-02 14:01:27 +0100 | [diff] [blame] | 544 | /* |
Peter Stark | 42f8aa9 | 2007-12-25 18:32:08 +0100 | [diff] [blame] | 545 | * Due to many user requests for multiple ELV devices we enable |
| 546 | * them by default. |
Ian Abbott | e6ac4a4 | 2005-08-02 14:01:27 +0100 | [diff] [blame] | 547 | */ |
Peter Stark | 42f8aa9 | 2007-12-25 18:32:08 +0100 | [diff] [blame] | 548 | { USB_DEVICE(FTDI_VID, FTDI_ELV_CLI7000_PID) }, |
| 549 | { USB_DEVICE(FTDI_VID, FTDI_ELV_PPS7330_PID) }, |
| 550 | { USB_DEVICE(FTDI_VID, FTDI_ELV_TFM100_PID) }, |
| 551 | { USB_DEVICE(FTDI_VID, FTDI_ELV_UDF77_PID) }, |
| 552 | { USB_DEVICE(FTDI_VID, FTDI_ELV_UIO88_PID) }, |
| 553 | { USB_DEVICE(FTDI_VID, FTDI_ELV_UAD8_PID) }, |
| 554 | { USB_DEVICE(FTDI_VID, FTDI_ELV_UDA7_PID) }, |
| 555 | { USB_DEVICE(FTDI_VID, FTDI_ELV_USI2_PID) }, |
| 556 | { USB_DEVICE(FTDI_VID, FTDI_ELV_T1100_PID) }, |
| 557 | { USB_DEVICE(FTDI_VID, FTDI_ELV_PCD200_PID) }, |
| 558 | { USB_DEVICE(FTDI_VID, FTDI_ELV_ULA200_PID) }, |
| 559 | { USB_DEVICE(FTDI_VID, FTDI_ELV_CSI8_PID) }, |
| 560 | { USB_DEVICE(FTDI_VID, FTDI_ELV_EM1000DL_PID) }, |
| 561 | { USB_DEVICE(FTDI_VID, FTDI_ELV_PCK100_PID) }, |
| 562 | { USB_DEVICE(FTDI_VID, FTDI_ELV_RFP500_PID) }, |
| 563 | { USB_DEVICE(FTDI_VID, FTDI_ELV_FS20SIG_PID) }, |
| 564 | { USB_DEVICE(FTDI_VID, FTDI_ELV_WS300PC_PID) }, |
| 565 | { USB_DEVICE(FTDI_VID, FTDI_ELV_FHZ1300PC_PID) }, |
Sven Andersen | 4ae897d | 2008-03-04 22:09:11 +0100 | [diff] [blame] | 566 | { USB_DEVICE(FTDI_VID, FTDI_ELV_EM1010PC_PID) }, |
Peter Stark | 42f8aa9 | 2007-12-25 18:32:08 +0100 | [diff] [blame] | 567 | { USB_DEVICE(FTDI_VID, FTDI_ELV_WS500_PID) }, |
André Schenk | b5894a5 | 2008-07-28 15:48:46 +0200 | [diff] [blame] | 568 | { USB_DEVICE(FTDI_VID, FTDI_ELV_HS485_PID) }, |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 569 | { USB_DEVICE(FTDI_VID, LINX_SDMUSBQSS_PID) }, |
| 570 | { USB_DEVICE(FTDI_VID, LINX_MASTERDEVEL2_PID) }, |
| 571 | { USB_DEVICE(FTDI_VID, LINX_FUTURE_0_PID) }, |
| 572 | { USB_DEVICE(FTDI_VID, LINX_FUTURE_1_PID) }, |
| 573 | { USB_DEVICE(FTDI_VID, LINX_FUTURE_2_PID) }, |
| 574 | { USB_DEVICE(FTDI_VID, FTDI_CCSICDU20_0_PID) }, |
| 575 | { USB_DEVICE(FTDI_VID, FTDI_CCSICDU40_1_PID) }, |
Jan Capek | ec434e9 | 2006-11-28 22:35:12 +0100 | [diff] [blame] | 576 | { USB_DEVICE(FTDI_VID, FTDI_CCSMACHX_2_PID) }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 577 | { USB_DEVICE(FTDI_VID, INSIDE_ACCESSO) }, |
| 578 | { USB_DEVICE(INTREPID_VID, INTREPID_VALUECAN_PID) }, |
| 579 | { USB_DEVICE(INTREPID_VID, INTREPID_NEOVI_PID) }, |
| 580 | { USB_DEVICE(FALCOM_VID, FALCOM_TWIST_PID) }, |
Ian Abbott | e6ac4a4 | 2005-08-02 14:01:27 +0100 | [diff] [blame] | 581 | { USB_DEVICE(FALCOM_VID, FALCOM_SAMBA_PID) }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 582 | { USB_DEVICE(FTDI_VID, FTDI_SUUNTO_SPORTS_PID) }, |
Vladimir Vukicevic | c3d36c4 | 2008-10-03 17:08:43 -0700 | [diff] [blame] | 583 | { USB_DEVICE(FTDI_VID, FTDI_OCEANIC_PID) }, |
Michael Olberg | ef31fec | 2007-02-27 12:57:12 +0100 | [diff] [blame] | 584 | { USB_DEVICE(TTI_VID, TTI_QL355P_PID) }, |
Ian Abbott | 6f92872 | 2005-04-29 16:06:14 +0100 | [diff] [blame] | 585 | { USB_DEVICE(FTDI_VID, FTDI_RM_CANVIEW_PID) }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 586 | { USB_DEVICE(BANDB_VID, BANDB_USOTL4_PID) }, |
| 587 | { USB_DEVICE(BANDB_VID, BANDB_USTL4_PID) }, |
| 588 | { USB_DEVICE(BANDB_VID, BANDB_USO9ML2_PID) }, |
| 589 | { USB_DEVICE(FTDI_VID, EVER_ECO_PRO_CDS) }, |
Ian Abbott | 6f92872 | 2005-04-29 16:06:14 +0100 | [diff] [blame] | 590 | { USB_DEVICE(FTDI_VID, FTDI_4N_GALAXY_DE_1_PID) }, |
| 591 | { USB_DEVICE(FTDI_VID, FTDI_4N_GALAXY_DE_2_PID) }, |
Ian Abbott | e6ac4a4 | 2005-08-02 14:01:27 +0100 | [diff] [blame] | 592 | { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_0_PID) }, |
| 593 | { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_1_PID) }, |
| 594 | { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_2_PID) }, |
| 595 | { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_3_PID) }, |
| 596 | { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_4_PID) }, |
| 597 | { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_5_PID) }, |
| 598 | { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_6_PID) }, |
| 599 | { USB_DEVICE(FTDI_VID, XSENS_CONVERTER_7_PID) }, |
Ian Abbott | 6f92872 | 2005-04-29 16:06:14 +0100 | [diff] [blame] | 600 | { USB_DEVICE(MOBILITY_VID, MOBILITY_USB_SERIAL_PID) }, |
Ian Abbott | 8f977e4 | 2005-06-20 16:45:42 +0100 | [diff] [blame] | 601 | { USB_DEVICE(FTDI_VID, FTDI_ACTIVE_ROBOTS_PID) }, |
Ian Abbott | 34d1a8a | 2006-02-27 14:05:32 +0000 | [diff] [blame] | 602 | { USB_DEVICE(FTDI_VID, FTDI_MHAM_KW_PID) }, |
| 603 | { USB_DEVICE(FTDI_VID, FTDI_MHAM_YS_PID) }, |
Ian Abbott | 9b1513d | 2005-07-29 12:16:31 -0700 | [diff] [blame] | 604 | { USB_DEVICE(FTDI_VID, FTDI_MHAM_Y6_PID) }, |
| 605 | { USB_DEVICE(FTDI_VID, FTDI_MHAM_Y8_PID) }, |
Ian Abbott | 34d1a8a | 2006-02-27 14:05:32 +0000 | [diff] [blame] | 606 | { USB_DEVICE(FTDI_VID, FTDI_MHAM_IC_PID) }, |
| 607 | { USB_DEVICE(FTDI_VID, FTDI_MHAM_DB9_PID) }, |
| 608 | { USB_DEVICE(FTDI_VID, FTDI_MHAM_RS232_PID) }, |
| 609 | { USB_DEVICE(FTDI_VID, FTDI_MHAM_Y9_PID) }, |
Ian Abbott | 740a428 | 2005-12-13 16:18:47 +0000 | [diff] [blame] | 610 | { USB_DEVICE(FTDI_VID, FTDI_TERATRONIK_VCP_PID) }, |
| 611 | { USB_DEVICE(FTDI_VID, FTDI_TERATRONIK_D2XX_PID) }, |
Ian Abbott | 9b1513d | 2005-07-29 12:16:31 -0700 | [diff] [blame] | 612 | { USB_DEVICE(EVOLUTION_VID, EVOLUTION_ER1_PID) }, |
Søren Hauberg | c1f8ea7 | 2007-08-08 10:50:17 +0200 | [diff] [blame] | 613 | { USB_DEVICE(EVOLUTION_VID, EVO_HYBRID_PID) }, |
| 614 | { USB_DEVICE(EVOLUTION_VID, EVO_RCM4_PID) }, |
Rui Santos | c9c7746 | 2005-09-23 20:06:50 +0100 | [diff] [blame] | 615 | { USB_DEVICE(FTDI_VID, FTDI_ARTEMIS_PID) }, |
| 616 | { USB_DEVICE(FTDI_VID, FTDI_ATIK_ATK16_PID) }, |
Rui Santos | 09c280a | 2006-01-09 13:12:40 +0000 | [diff] [blame] | 617 | { USB_DEVICE(FTDI_VID, FTDI_ATIK_ATK16C_PID) }, |
Rui Santos | c9c7746 | 2005-09-23 20:06:50 +0100 | [diff] [blame] | 618 | { USB_DEVICE(FTDI_VID, FTDI_ATIK_ATK16HR_PID) }, |
Rui Santos | 09c280a | 2006-01-09 13:12:40 +0000 | [diff] [blame] | 619 | { USB_DEVICE(FTDI_VID, FTDI_ATIK_ATK16HRC_PID) }, |
Franco Lanza | 3491043 | 2007-12-26 03:29:33 +0100 | [diff] [blame] | 620 | { USB_DEVICE(FTDI_VID, FTDI_ATIK_ATK16IC_PID) }, |
Ian Abbott | b4723ae | 2005-11-23 15:45:23 -0800 | [diff] [blame] | 621 | { USB_DEVICE(KOBIL_VID, KOBIL_CONV_B1_PID) }, |
| 622 | { USB_DEVICE(KOBIL_VID, KOBIL_CONV_KAAN_PID) }, |
Pavel Fedin | effac8b | 2005-12-09 09:30:59 +0300 | [diff] [blame] | 623 | { USB_DEVICE(POSIFLEX_VID, POSIFLEX_PP7000_PID) }, |
Louis Nyffenegger | 641adaa | 2006-01-05 17:20:37 +0100 | [diff] [blame] | 624 | { USB_DEVICE(FTDI_VID, FTDI_TTUSB_PID) }, |
Ian Abbott | 7e1c0b8 | 2006-03-21 14:55:20 +0000 | [diff] [blame] | 625 | { USB_DEVICE(FTDI_VID, FTDI_ECLO_COM_1WIRE_PID) }, |
Ian Abbott | a94b52a | 2006-01-09 17:11:40 +0000 | [diff] [blame] | 626 | { USB_DEVICE(FTDI_VID, FTDI_WESTREX_MODEL_777_PID) }, |
| 627 | { USB_DEVICE(FTDI_VID, FTDI_WESTREX_MODEL_8900F_PID) }, |
Wouter Paesen | ce40d29 | 2006-01-03 14:30:31 +0100 | [diff] [blame] | 628 | { USB_DEVICE(FTDI_VID, FTDI_PCDJ_DAC2_PID) }, |
Nathan Bronson | cdd3b15 | 2006-04-10 00:05:09 -0400 | [diff] [blame] | 629 | { USB_DEVICE(FTDI_VID, FTDI_RRCIRKITS_LOCOBUFFER_PID) }, |
Ian Abbott | 7e0258f | 2006-04-12 15:20:35 +0100 | [diff] [blame] | 630 | { USB_DEVICE(FTDI_VID, FTDI_ASK_RDR400_PID) }, |
A. Maitland Bottoms | bf58fbd | 2006-03-14 18:44:23 -0500 | [diff] [blame] | 631 | { USB_DEVICE(ICOM_ID1_VID, ICOM_ID1_PID) }, |
Folkert van Heusden | 62a13db | 2006-03-28 20:41:26 +0900 | [diff] [blame] | 632 | { USB_DEVICE(PAPOUCH_VID, PAPOUCH_TMU_PID) }, |
Ian Abbott | 20a0f47 | 2006-05-04 11:34:25 +0100 | [diff] [blame] | 633 | { USB_DEVICE(FTDI_VID, FTDI_ACG_HFDUAL_PID) }, |
Ian Abbott | eb79b4f | 2006-05-30 12:36:30 +0100 | [diff] [blame] | 634 | { USB_DEVICE(FTDI_VID, FTDI_YEI_SERVOCENTER31_PID) }, |
D. Peter Siddons | 4843748 | 2006-06-17 18:09:15 -0400 | [diff] [blame] | 635 | { USB_DEVICE(FTDI_VID, FTDI_THORLABS_PID) }, |
Colin Leroy | e1979fe | 2006-07-11 11:36:43 +0200 | [diff] [blame] | 636 | { USB_DEVICE(TESTO_VID, TESTO_USB_INTERFACE_PID) }, |
Ralf Schlatterbeck | eaede2c | 2006-09-06 12:15:02 +0200 | [diff] [blame] | 637 | { USB_DEVICE(FTDI_VID, FTDI_GAMMA_SCOUT_PID) }, |
Ian Abbott | 9978f9e | 2006-09-25 14:19:19 +0100 | [diff] [blame] | 638 | { USB_DEVICE(FTDI_VID, FTDI_TACTRIX_OPENPORT_13M_PID) }, |
| 639 | { USB_DEVICE(FTDI_VID, FTDI_TACTRIX_OPENPORT_13S_PID) }, |
| 640 | { USB_DEVICE(FTDI_VID, FTDI_TACTRIX_OPENPORT_13U_PID) }, |
Kjell Myksvoll | 40c3609 | 2006-10-22 23:26:42 +0200 | [diff] [blame] | 641 | { USB_DEVICE(ELEKTOR_VID, ELEKTOR_FT323R_PID) }, |
Micke Prag | 822c7ef | 2007-02-04 23:39:11 +0100 | [diff] [blame] | 642 | { USB_DEVICE(TELLDUS_VID, TELLDUS_TELLSTICK_PID) }, |
Neil \"Superna\" ARMSTRONG | 762e92f | 2007-04-25 20:34:28 +0200 | [diff] [blame] | 643 | { USB_DEVICE(FTDI_VID, FTDI_MAXSTREAM_PID) }, |
Lex Ross | a5f6239 | 2008-08-06 16:25:08 +0400 | [diff] [blame] | 644 | { USB_DEVICE(FTDI_VID, FTDI_PHI_FISCO_PID) }, |
Pierre Castella | d7fde2d | 2007-09-06 22:34:39 +0200 | [diff] [blame] | 645 | { USB_DEVICE(TML_VID, TML_USB_SERIAL_PID) }, |
Ed Beroset | 4bb0ef1 | 2008-01-17 17:37:46 -0500 | [diff] [blame] | 646 | { USB_DEVICE(FTDI_VID, FTDI_ELSTER_UNICOM_PID) }, |
Mirko Bordignon | 11171d1 | 2008-03-10 11:38:55 +0100 | [diff] [blame] | 647 | { USB_DEVICE(FTDI_VID, FTDI_PROPOX_JTAGCABLEII_PID) }, |
Tony Lindgren | fa91d43 | 2007-05-04 18:23:24 -0700 | [diff] [blame] | 648 | { USB_DEVICE(OLIMEX_VID, OLIMEX_ARM_USB_OCD_PID), |
Harald Welte | 2073434 | 2008-01-01 15:08:35 +0100 | [diff] [blame] | 649 | .driver_info = (kernel_ulong_t)&ftdi_jtag_quirk }, |
| 650 | { USB_DEVICE(FIC_VID, FIC_NEO1973_DEBUG_PID), |
| 651 | .driver_info = (kernel_ulong_t)&ftdi_jtag_quirk }, |
| 652 | { USB_DEVICE(FTDI_VID, FTDI_OOCDLINK_PID), |
| 653 | .driver_info = (kernel_ulong_t)&ftdi_jtag_quirk }, |
Frederik Kriewitz | a00c3ca | 2008-07-30 16:53:41 +0200 | [diff] [blame] | 654 | { USB_DEVICE(FTDI_VID, LMI_LM3S_DEVEL_BOARD_PID), |
| 655 | .driver_info = (kernel_ulong_t)&ftdi_jtag_quirk }, |
| 656 | { USB_DEVICE(FTDI_VID, LMI_LM3S_EVAL_BOARD_PID), |
| 657 | .driver_info = (kernel_ulong_t)&ftdi_jtag_quirk }, |
Atsushi Nemoto | 26ab705 | 2008-05-17 00:13:56 +0900 | [diff] [blame] | 658 | { USB_DEVICE(RATOC_VENDOR_ID, RATOC_PRODUCT_ID_USB60F) }, |
Jon K Hellan | 2542335 | 2008-06-24 11:43:13 +0200 | [diff] [blame] | 659 | { USB_DEVICE(FTDI_VID, FTDI_REU_TINY_PID) }, |
Jaroslav Kysela | a18f80b | 2008-09-16 15:46:50 +0200 | [diff] [blame] | 660 | { USB_DEVICE(PAPOUCH_VID, PAPOUCH_QUIDO4x4_PID) }, |
Gaetan Carlier | 96285cb | 2008-09-22 15:00:09 -0700 | [diff] [blame] | 661 | { USB_DEVICE(FTDI_VID, FTDI_DOMINTELL_DGQG_PID) }, |
| 662 | { USB_DEVICE(FTDI_VID, FTDI_DOMINTELL_DUSB_PID) }, |
Robie Basak | 45eeff8 | 2009-01-12 23:05:59 +0000 | [diff] [blame] | 663 | { USB_DEVICE(ALTI2_VID, ALTI2_N3_PID) }, |
Mhayk Whandson | ca80801 | 2009-01-09 06:48:16 -0400 | [diff] [blame] | 664 | { USB_DEVICE(FTDI_VID, DIEBOLD_BCS_SE923_PID) }, |
Stephane Clerambault | e38c287 | 2009-02-02 13:39:12 -0800 | [diff] [blame] | 665 | { USB_DEVICE(FTDI_VID, FTDI_NDI_HUC_PID) }, |
Axel Wachtler | 7f82b6d | 2009-03-05 14:09:22 -0800 | [diff] [blame] | 666 | { USB_DEVICE(ATMEL_VID, STK541_PID) }, |
| 667 | { USB_DEVICE(DE_VID, STB_PID) }, |
| 668 | { USB_DEVICE(DE_VID, WHT_PID) }, |
Michael Hennerich | b0d6590 | 2009-03-06 14:07:43 -0800 | [diff] [blame] | 669 | { USB_DEVICE(ADI_VID, ADI_GNICE_PID), |
| 670 | .driver_info = (kernel_ulong_t)&ftdi_jtag_quirk }, |
Ian Abbott | fdcb0a0 | 2005-07-28 18:40:32 +0100 | [diff] [blame] | 671 | { }, /* Optional parameter entry */ |
| 672 | { } /* Terminating entry */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 673 | }; |
| 674 | |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 675 | MODULE_DEVICE_TABLE(usb, id_table_combined); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 676 | |
| 677 | static struct usb_driver ftdi_driver = { |
| 678 | .name = "ftdi_sio", |
| 679 | .probe = usb_serial_probe, |
| 680 | .disconnect = usb_serial_disconnect, |
| 681 | .id_table = id_table_combined, |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 682 | .no_dynamic_id = 1, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 683 | }; |
| 684 | |
Arjan van de Ven | 4c4c943 | 2005-11-29 09:43:42 +0100 | [diff] [blame] | 685 | static const char *ftdi_chip_name[] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 686 | [SIO] = "SIO", /* the serial part of FT8U100AX */ |
| 687 | [FT8U232AM] = "FT8U232AM", |
| 688 | [FT232BM] = "FT232BM", |
| 689 | [FT2232C] = "FT2232C", |
Gard Spreemann | d8b2160 | 2007-03-05 00:03:26 +0100 | [diff] [blame] | 690 | [FT232RL] = "FT232RL", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 691 | }; |
| 692 | |
| 693 | |
| 694 | /* Constants for read urb and write urb */ |
| 695 | #define BUFSZ 512 |
| 696 | #define PKTSZ 64 |
| 697 | |
| 698 | /* rx_flags */ |
| 699 | #define THROTTLED 0x01 |
| 700 | #define ACTUALLY_THROTTLED 0x02 |
| 701 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 702 | /* Used for TIOCMIWAIT */ |
| 703 | #define FTDI_STATUS_B0_MASK (FTDI_RS0_CTS | FTDI_RS0_DSR | FTDI_RS0_RI | FTDI_RS0_RLSD) |
| 704 | #define FTDI_STATUS_B1_MASK (FTDI_RS_BI) |
| 705 | /* End TIOCMIWAIT */ |
| 706 | |
Roel Kluin | bbc5d27 | 2008-02-07 01:06:07 +0100 | [diff] [blame] | 707 | #define FTDI_IMPL_ASYNC_FLAGS = (ASYNC_SPD_HI | ASYNC_SPD_VHI \ |
| 708 | | ASYNC_SPD_CUST | ASYNC_SPD_SHI | ASYNC_SPD_WARP) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 709 | |
| 710 | /* function prototypes for a FTDI serial converter */ |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 711 | static int ftdi_sio_probe(struct usb_serial *serial, |
| 712 | const struct usb_device_id *id); |
| 713 | static void ftdi_shutdown(struct usb_serial *serial); |
| 714 | static int ftdi_sio_port_probe(struct usb_serial_port *port); |
| 715 | static int ftdi_sio_port_remove(struct usb_serial_port *port); |
| 716 | static int ftdi_open(struct tty_struct *tty, |
| 717 | struct usb_serial_port *port, struct file *filp); |
| 718 | static void ftdi_close(struct tty_struct *tty, |
| 719 | struct usb_serial_port *port, struct file *filp); |
| 720 | static int ftdi_write(struct tty_struct *tty, struct usb_serial_port *port, |
| 721 | const unsigned char *buf, int count); |
| 722 | static int ftdi_write_room(struct tty_struct *tty); |
| 723 | static int ftdi_chars_in_buffer(struct tty_struct *tty); |
| 724 | static void ftdi_write_bulk_callback(struct urb *urb); |
| 725 | static void ftdi_read_bulk_callback(struct urb *urb); |
| 726 | static void ftdi_process_read(struct work_struct *work); |
| 727 | static void ftdi_set_termios(struct tty_struct *tty, |
| 728 | struct usb_serial_port *port, struct ktermios *old); |
| 729 | static int ftdi_tiocmget(struct tty_struct *tty, struct file *file); |
| 730 | static int ftdi_tiocmset(struct tty_struct *tty, struct file *file, |
| 731 | unsigned int set, unsigned int clear); |
| 732 | static int ftdi_ioctl(struct tty_struct *tty, struct file *file, |
| 733 | unsigned int cmd, unsigned long arg); |
| 734 | static void ftdi_break_ctl(struct tty_struct *tty, int break_state); |
| 735 | static void ftdi_throttle(struct tty_struct *tty); |
| 736 | static void ftdi_unthrottle(struct tty_struct *tty); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 737 | |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 738 | static unsigned short int ftdi_232am_baud_base_to_divisor(int baud, int base); |
| 739 | static unsigned short int ftdi_232am_baud_to_divisor(int baud); |
| 740 | static __u32 ftdi_232bm_baud_base_to_divisor(int baud, int base); |
| 741 | static __u32 ftdi_232bm_baud_to_divisor(int baud); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 742 | |
Greg Kroah-Hartman | ea65370 | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 743 | static struct usb_serial_driver ftdi_sio_device = { |
Greg Kroah-Hartman | 18fcac3 | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 744 | .driver = { |
| 745 | .owner = THIS_MODULE, |
Greg Kroah-Hartman | 269bda1 | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 746 | .name = "ftdi_sio", |
Greg Kroah-Hartman | 18fcac3 | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 747 | }, |
Greg Kroah-Hartman | 269bda1 | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 748 | .description = "FTDI USB Serial Device", |
Johannes Hölzl | d9b1b78 | 2006-12-17 21:50:24 +0100 | [diff] [blame] | 749 | .usb_driver = &ftdi_driver , |
Ian Abbott | 8f977e4 | 2005-06-20 16:45:42 +0100 | [diff] [blame] | 750 | .id_table = id_table_combined, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 751 | .num_ports = 1, |
Ian Abbott | 8f977e4 | 2005-06-20 16:45:42 +0100 | [diff] [blame] | 752 | .probe = ftdi_sio_probe, |
Jim Radford | 12bdbe0 | 2007-02-28 10:10:50 -0800 | [diff] [blame] | 753 | .port_probe = ftdi_sio_port_probe, |
| 754 | .port_remove = ftdi_sio_port_remove, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 755 | .open = ftdi_open, |
| 756 | .close = ftdi_close, |
| 757 | .throttle = ftdi_throttle, |
| 758 | .unthrottle = ftdi_unthrottle, |
| 759 | .write = ftdi_write, |
| 760 | .write_room = ftdi_write_room, |
| 761 | .chars_in_buffer = ftdi_chars_in_buffer, |
| 762 | .read_bulk_callback = ftdi_read_bulk_callback, |
| 763 | .write_bulk_callback = ftdi_write_bulk_callback, |
| 764 | .tiocmget = ftdi_tiocmget, |
| 765 | .tiocmset = ftdi_tiocmset, |
| 766 | .ioctl = ftdi_ioctl, |
| 767 | .set_termios = ftdi_set_termios, |
| 768 | .break_ctl = ftdi_break_ctl, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 769 | .shutdown = ftdi_shutdown, |
| 770 | }; |
| 771 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 772 | |
| 773 | #define WDR_TIMEOUT 5000 /* default urb timeout */ |
Ian Abbott | 279e154 | 2005-07-29 12:16:52 -0700 | [diff] [blame] | 774 | #define WDR_SHORT_TIMEOUT 1000 /* shorter urb timeout */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 775 | |
| 776 | /* High and low are for DTR, RTS etc etc */ |
| 777 | #define HIGH 1 |
| 778 | #define LOW 0 |
| 779 | |
Ian Abbott | 2246540 | 2006-06-26 12:59:17 +0100 | [diff] [blame] | 780 | /* number of outstanding urbs to prevent userspace DoS from happening */ |
| 781 | #define URB_UPPER_LIMIT 42 |
| 782 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 783 | /* |
| 784 | * *************************************************************************** |
Tony Lindgren | fa91d43 | 2007-05-04 18:23:24 -0700 | [diff] [blame] | 785 | * Utility functions |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 786 | * *************************************************************************** |
| 787 | */ |
| 788 | |
| 789 | static unsigned short int ftdi_232am_baud_base_to_divisor(int baud, int base) |
| 790 | { |
| 791 | unsigned short int divisor; |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 792 | /* divisor shifted 3 bits to the left */ |
| 793 | int divisor3 = base / 2 / baud; |
| 794 | if ((divisor3 & 0x7) == 7) |
| 795 | divisor3++; /* round x.7/8 up to x+1 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 796 | divisor = divisor3 >> 3; |
| 797 | divisor3 &= 0x7; |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 798 | if (divisor3 == 1) |
| 799 | divisor |= 0xc000; |
| 800 | else if (divisor3 >= 4) |
| 801 | divisor |= 0x4000; |
| 802 | else if (divisor3 != 0) |
| 803 | divisor |= 0x8000; |
| 804 | else if (divisor == 1) |
| 805 | divisor = 0; /* special case for maximum baud rate */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 806 | return divisor; |
| 807 | } |
| 808 | |
| 809 | static unsigned short int ftdi_232am_baud_to_divisor(int baud) |
| 810 | { |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 811 | return ftdi_232am_baud_base_to_divisor(baud, 48000000); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 812 | } |
| 813 | |
| 814 | static __u32 ftdi_232bm_baud_base_to_divisor(int baud, int base) |
| 815 | { |
| 816 | static const unsigned char divfrac[8] = { 0, 3, 2, 4, 1, 5, 6, 7 }; |
| 817 | __u32 divisor; |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 818 | /* divisor shifted 3 bits to the left */ |
| 819 | int divisor3 = base / 2 / baud; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 820 | divisor = divisor3 >> 3; |
| 821 | divisor |= (__u32)divfrac[divisor3 & 0x7] << 14; |
| 822 | /* Deal with special cases for highest baud rates. */ |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 823 | if (divisor == 1) |
| 824 | divisor = 0; |
| 825 | else if (divisor == 0x4001) |
| 826 | divisor = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 827 | return divisor; |
| 828 | } |
| 829 | |
| 830 | static __u32 ftdi_232bm_baud_to_divisor(int baud) |
| 831 | { |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 832 | return ftdi_232bm_baud_base_to_divisor(baud, 48000000); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 833 | } |
| 834 | |
Ian Abbott | 74ede0f | 2005-07-29 12:16:41 -0700 | [diff] [blame] | 835 | #define set_mctrl(port, set) update_mctrl((port), (set), 0) |
| 836 | #define clear_mctrl(port, clear) update_mctrl((port), 0, (clear)) |
| 837 | |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 838 | static int update_mctrl(struct usb_serial_port *port, unsigned int set, |
| 839 | unsigned int clear) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 840 | { |
| 841 | struct ftdi_private *priv = usb_get_serial_port_data(port); |
| 842 | char *buf; |
Ian Abbott | 74ede0f | 2005-07-29 12:16:41 -0700 | [diff] [blame] | 843 | unsigned urb_value; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 844 | int rv; |
Ian Abbott | 74ede0f | 2005-07-29 12:16:41 -0700 | [diff] [blame] | 845 | |
| 846 | if (((set | clear) & (TIOCM_DTR | TIOCM_RTS)) == 0) { |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 847 | dbg("%s - DTR|RTS not being set|cleared", __func__); |
Ian Abbott | 74ede0f | 2005-07-29 12:16:41 -0700 | [diff] [blame] | 848 | return 0; /* no change */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 849 | } |
Ian Abbott | 74ede0f | 2005-07-29 12:16:41 -0700 | [diff] [blame] | 850 | |
| 851 | buf = kmalloc(1, GFP_NOIO); |
Alan Cox | 9b0f258 | 2008-02-20 20:49:53 +0000 | [diff] [blame] | 852 | if (!buf) |
Ian Abbott | 74ede0f | 2005-07-29 12:16:41 -0700 | [diff] [blame] | 853 | return -ENOMEM; |
Ian Abbott | 74ede0f | 2005-07-29 12:16:41 -0700 | [diff] [blame] | 854 | |
| 855 | clear &= ~set; /* 'set' takes precedence over 'clear' */ |
| 856 | urb_value = 0; |
| 857 | if (clear & TIOCM_DTR) |
| 858 | urb_value |= FTDI_SIO_SET_DTR_LOW; |
| 859 | if (clear & TIOCM_RTS) |
| 860 | urb_value |= FTDI_SIO_SET_RTS_LOW; |
| 861 | if (set & TIOCM_DTR) |
| 862 | urb_value |= FTDI_SIO_SET_DTR_HIGH; |
| 863 | if (set & TIOCM_RTS) |
| 864 | urb_value |= FTDI_SIO_SET_RTS_HIGH; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 865 | rv = usb_control_msg(port->serial->dev, |
| 866 | usb_sndctrlpipe(port->serial->dev, 0), |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 867 | FTDI_SIO_SET_MODEM_CTRL_REQUEST, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 868 | FTDI_SIO_SET_MODEM_CTRL_REQUEST_TYPE, |
Ian Abbott | 74ede0f | 2005-07-29 12:16:41 -0700 | [diff] [blame] | 869 | urb_value, priv->interface, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 870 | buf, 0, WDR_TIMEOUT); |
| 871 | |
| 872 | kfree(buf); |
Ian Abbott | 74ede0f | 2005-07-29 12:16:41 -0700 | [diff] [blame] | 873 | if (rv < 0) { |
Alan Cox | 43b11d3 | 2008-10-13 10:36:00 +0100 | [diff] [blame] | 874 | dbg("%s Error from MODEM_CTRL urb: DTR %s, RTS %s", |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 875 | __func__, |
Ian Abbott | 74ede0f | 2005-07-29 12:16:41 -0700 | [diff] [blame] | 876 | (set & TIOCM_DTR) ? "HIGH" : |
| 877 | (clear & TIOCM_DTR) ? "LOW" : "unchanged", |
| 878 | (set & TIOCM_RTS) ? "HIGH" : |
| 879 | (clear & TIOCM_RTS) ? "LOW" : "unchanged"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 880 | } else { |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 881 | dbg("%s - DTR %s, RTS %s", __func__, |
Ian Abbott | 74ede0f | 2005-07-29 12:16:41 -0700 | [diff] [blame] | 882 | (set & TIOCM_DTR) ? "HIGH" : |
| 883 | (clear & TIOCM_DTR) ? "LOW" : "unchanged", |
| 884 | (set & TIOCM_RTS) ? "HIGH" : |
| 885 | (clear & TIOCM_RTS) ? "LOW" : "unchanged"); |
Alan Cox | 9b0f258 | 2008-02-20 20:49:53 +0000 | [diff] [blame] | 886 | /* FIXME: locking on last_dtr_rts */ |
Ian Abbott | 74ede0f | 2005-07-29 12:16:41 -0700 | [diff] [blame] | 887 | priv->last_dtr_rts = (priv->last_dtr_rts & ~clear) | set; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 888 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 889 | return rv; |
| 890 | } |
| 891 | |
| 892 | |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 893 | static __u32 get_ftdi_divisor(struct tty_struct *tty, |
| 894 | struct usb_serial_port *port) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 895 | { /* get_ftdi_divisor */ |
| 896 | struct ftdi_private *priv = usb_get_serial_port_data(port); |
| 897 | __u32 div_value = 0; |
| 898 | int div_okay = 1; |
| 899 | int baud; |
| 900 | |
| 901 | /* |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 902 | * The logic involved in setting the baudrate can be cleanly split into |
| 903 | * 3 steps. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 904 | * 1. Standard baud rates are set in tty->termios->c_cflag |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 905 | * 2. If these are not enough, you can set any speed using alt_speed as |
| 906 | * follows: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 907 | * - set tty->termios->c_cflag speed to B38400 |
| 908 | * - set your real speed in tty->alt_speed; it gets ignored when |
| 909 | * alt_speed==0, (or) |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 910 | * - call TIOCSSERIAL ioctl with (struct serial_struct) set as |
| 911 | * follows: |
| 912 | * flags & ASYNC_SPD_MASK == ASYNC_SPD_[HI, VHI, SHI, WARP], |
| 913 | * this just sets alt_speed to (HI: 57600, VHI: 115200, |
| 914 | * SHI: 230400, WARP: 460800) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 915 | * ** Steps 1, 2 are done courtesy of tty_get_baud_rate |
| 916 | * 3. You can also set baud rate by setting custom divisor as follows |
| 917 | * - set tty->termios->c_cflag speed to B38400 |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 918 | * - call TIOCSSERIAL ioctl with (struct serial_struct) set as |
| 919 | * follows: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 920 | * o flags & ASYNC_SPD_MASK == ASYNC_SPD_CUST |
| 921 | * o custom_divisor set to baud_base / your_new_baudrate |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 922 | * ** Step 3 is done courtesy of code borrowed from serial.c |
| 923 | * I should really spend some time and separate + move this common |
| 924 | * code to serial.c, it is replicated in nearly every serial driver |
| 925 | * you see. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 926 | */ |
| 927 | |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 928 | /* 1. Get the baud rate from the tty settings, this observes |
| 929 | alt_speed hack */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 930 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 931 | baud = tty_get_baud_rate(tty); |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 932 | dbg("%s - tty_get_baud_rate reports speed %d", __func__, baud); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 933 | |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 934 | /* 2. Observe async-compatible custom_divisor hack, update baudrate |
| 935 | if needed */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 936 | |
| 937 | if (baud == 38400 && |
| 938 | ((priv->flags & ASYNC_SPD_MASK) == ASYNC_SPD_CUST) && |
| 939 | (priv->custom_divisor)) { |
| 940 | baud = priv->baud_base / priv->custom_divisor; |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 941 | dbg("%s - custom divisor %d sets baud rate to %d", |
| 942 | __func__, priv->custom_divisor, baud); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 943 | } |
| 944 | |
| 945 | /* 3. Convert baudrate to device-specific divisor */ |
| 946 | |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 947 | if (!baud) |
| 948 | baud = 9600; |
| 949 | switch (priv->chip_type) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 950 | case SIO: /* SIO chip */ |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 951 | switch (baud) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 952 | case 300: div_value = ftdi_sio_b300; break; |
| 953 | case 600: div_value = ftdi_sio_b600; break; |
| 954 | case 1200: div_value = ftdi_sio_b1200; break; |
| 955 | case 2400: div_value = ftdi_sio_b2400; break; |
| 956 | case 4800: div_value = ftdi_sio_b4800; break; |
| 957 | case 9600: div_value = ftdi_sio_b9600; break; |
| 958 | case 19200: div_value = ftdi_sio_b19200; break; |
| 959 | case 38400: div_value = ftdi_sio_b38400; break; |
| 960 | case 57600: div_value = ftdi_sio_b57600; break; |
| 961 | case 115200: div_value = ftdi_sio_b115200; break; |
| 962 | } /* baud */ |
| 963 | if (div_value == 0) { |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 964 | dbg("%s - Baudrate (%d) requested is not supported", |
| 965 | __func__, baud); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 966 | div_value = ftdi_sio_b9600; |
Andrew Morton | bd5e47c | 2007-10-18 01:24:25 -0700 | [diff] [blame] | 967 | baud = 9600; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 968 | div_okay = 0; |
| 969 | } |
| 970 | break; |
| 971 | case FT8U232AM: /* 8U232AM chip */ |
| 972 | if (baud <= 3000000) { |
| 973 | div_value = ftdi_232am_baud_to_divisor(baud); |
| 974 | } else { |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 975 | dbg("%s - Baud rate too high!", __func__); |
Andrew Morton | bd5e47c | 2007-10-18 01:24:25 -0700 | [diff] [blame] | 976 | baud = 9600; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 977 | div_value = ftdi_232am_baud_to_divisor(9600); |
| 978 | div_okay = 0; |
| 979 | } |
| 980 | break; |
| 981 | case FT232BM: /* FT232BM chip */ |
| 982 | case FT2232C: /* FT2232C chip */ |
David Brownell | 3b009c6 | 2007-03-23 12:54:27 -0700 | [diff] [blame] | 983 | case FT232RL: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 984 | if (baud <= 3000000) { |
| 985 | div_value = ftdi_232bm_baud_to_divisor(baud); |
| 986 | } else { |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 987 | dbg("%s - Baud rate too high!", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 988 | div_value = ftdi_232bm_baud_to_divisor(9600); |
| 989 | div_okay = 0; |
Alan Cox | 669a6db | 2007-10-18 01:24:24 -0700 | [diff] [blame] | 990 | baud = 9600; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 991 | } |
| 992 | break; |
| 993 | } /* priv->chip_type */ |
| 994 | |
| 995 | if (div_okay) { |
| 996 | dbg("%s - Baud rate set to %d (divisor 0x%lX) on chip %s", |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 997 | __func__, baud, (unsigned long)div_value, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 998 | ftdi_chip_name[priv->chip_type]); |
| 999 | } |
| 1000 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 1001 | tty_encode_baud_rate(tty, baud, baud); |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 1002 | return div_value; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1003 | } |
| 1004 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 1005 | static int change_speed(struct tty_struct *tty, struct usb_serial_port *port) |
| 1006 | { |
| 1007 | struct ftdi_private *priv = usb_get_serial_port_data(port); |
| 1008 | char *buf; |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 1009 | __u16 urb_value; |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 1010 | __u16 urb_index; |
| 1011 | __u32 urb_index_value; |
| 1012 | int rv; |
| 1013 | |
| 1014 | buf = kmalloc(1, GFP_NOIO); |
| 1015 | if (!buf) |
| 1016 | return -ENOMEM; |
| 1017 | |
| 1018 | urb_index_value = get_ftdi_divisor(tty, port); |
| 1019 | urb_value = (__u16)urb_index_value; |
| 1020 | urb_index = (__u16)(urb_index_value >> 16); |
| 1021 | if (priv->interface) { /* FT2232C */ |
| 1022 | urb_index = (__u16)((urb_index << 8) | priv->interface); |
| 1023 | } |
| 1024 | |
| 1025 | rv = usb_control_msg(port->serial->dev, |
| 1026 | usb_sndctrlpipe(port->serial->dev, 0), |
| 1027 | FTDI_SIO_SET_BAUDRATE_REQUEST, |
| 1028 | FTDI_SIO_SET_BAUDRATE_REQUEST_TYPE, |
| 1029 | urb_value, urb_index, |
| 1030 | buf, 0, WDR_SHORT_TIMEOUT); |
| 1031 | |
| 1032 | kfree(buf); |
| 1033 | return rv; |
| 1034 | } |
| 1035 | |
| 1036 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1037 | |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 1038 | static int get_serial_info(struct usb_serial_port *port, |
| 1039 | struct serial_struct __user *retinfo) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1040 | { |
| 1041 | struct ftdi_private *priv = usb_get_serial_port_data(port); |
| 1042 | struct serial_struct tmp; |
| 1043 | |
| 1044 | if (!retinfo) |
| 1045 | return -EFAULT; |
| 1046 | memset(&tmp, 0, sizeof(tmp)); |
| 1047 | tmp.flags = priv->flags; |
| 1048 | tmp.baud_base = priv->baud_base; |
| 1049 | tmp.custom_divisor = priv->custom_divisor; |
| 1050 | if (copy_to_user(retinfo, &tmp, sizeof(*retinfo))) |
| 1051 | return -EFAULT; |
| 1052 | return 0; |
| 1053 | } /* get_serial_info */ |
| 1054 | |
| 1055 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 1056 | static int set_serial_info(struct tty_struct *tty, |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 1057 | struct usb_serial_port *port, struct serial_struct __user *newinfo) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1058 | { /* set_serial_info */ |
| 1059 | struct ftdi_private *priv = usb_get_serial_port_data(port); |
| 1060 | struct serial_struct new_serial; |
| 1061 | struct ftdi_private old_priv; |
| 1062 | |
| 1063 | if (copy_from_user(&new_serial, newinfo, sizeof(new_serial))) |
| 1064 | return -EFAULT; |
Alan Cox | 6b447f04 | 2009-01-02 13:48:56 +0000 | [diff] [blame] | 1065 | |
| 1066 | lock_kernel(); |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 1067 | old_priv = *priv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1068 | |
| 1069 | /* Do error checking and permission checking */ |
| 1070 | |
| 1071 | if (!capable(CAP_SYS_ADMIN)) { |
| 1072 | if (((new_serial.flags & ~ASYNC_USR_MASK) != |
Dan Carpenter | 64905b4 | 2009-02-03 11:11:38 +0300 | [diff] [blame] | 1073 | (priv->flags & ~ASYNC_USR_MASK))) { |
| 1074 | unlock_kernel(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1075 | return -EPERM; |
Dan Carpenter | 64905b4 | 2009-02-03 11:11:38 +0300 | [diff] [blame] | 1076 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1077 | priv->flags = ((priv->flags & ~ASYNC_USR_MASK) | |
| 1078 | (new_serial.flags & ASYNC_USR_MASK)); |
| 1079 | priv->custom_divisor = new_serial.custom_divisor; |
| 1080 | goto check_and_exit; |
| 1081 | } |
| 1082 | |
| 1083 | if ((new_serial.baud_base != priv->baud_base) && |
Alan Cox | 6b447f04 | 2009-01-02 13:48:56 +0000 | [diff] [blame] | 1084 | (new_serial.baud_base < 9600)) { |
| 1085 | unlock_kernel(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1086 | return -EINVAL; |
Alan Cox | 6b447f04 | 2009-01-02 13:48:56 +0000 | [diff] [blame] | 1087 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1088 | |
| 1089 | /* Make the changes - these are privileged changes! */ |
| 1090 | |
| 1091 | priv->flags = ((priv->flags & ~ASYNC_FLAGS) | |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 1092 | (new_serial.flags & ASYNC_FLAGS)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1093 | priv->custom_divisor = new_serial.custom_divisor; |
| 1094 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 1095 | tty->low_latency = (priv->flags & ASYNC_LOW_LATENCY) ? 1 : 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1096 | |
| 1097 | check_and_exit: |
| 1098 | if ((old_priv.flags & ASYNC_SPD_MASK) != |
| 1099 | (priv->flags & ASYNC_SPD_MASK)) { |
| 1100 | if ((priv->flags & ASYNC_SPD_MASK) == ASYNC_SPD_HI) |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 1101 | tty->alt_speed = 57600; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1102 | else if ((priv->flags & ASYNC_SPD_MASK) == ASYNC_SPD_VHI) |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 1103 | tty->alt_speed = 115200; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1104 | else if ((priv->flags & ASYNC_SPD_MASK) == ASYNC_SPD_SHI) |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 1105 | tty->alt_speed = 230400; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1106 | else if ((priv->flags & ASYNC_SPD_MASK) == ASYNC_SPD_WARP) |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 1107 | tty->alt_speed = 460800; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1108 | else |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 1109 | tty->alt_speed = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1110 | } |
| 1111 | if (((old_priv.flags & ASYNC_SPD_MASK) != |
| 1112 | (priv->flags & ASYNC_SPD_MASK)) || |
| 1113 | (((priv->flags & ASYNC_SPD_MASK) == ASYNC_SPD_CUST) && |
| 1114 | (old_priv.custom_divisor != priv->custom_divisor))) { |
Alan Cox | 6b447f04 | 2009-01-02 13:48:56 +0000 | [diff] [blame] | 1115 | unlock_kernel(); |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 1116 | change_speed(tty, port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1117 | } |
Alan Cox | 6b447f04 | 2009-01-02 13:48:56 +0000 | [diff] [blame] | 1118 | else |
| 1119 | unlock_kernel(); |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 1120 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1121 | |
| 1122 | } /* set_serial_info */ |
| 1123 | |
| 1124 | |
Ian Abbott | 8f977e4 | 2005-06-20 16:45:42 +0100 | [diff] [blame] | 1125 | /* Determine type of FTDI chip based on USB config and descriptor. */ |
| 1126 | static void ftdi_determine_type(struct usb_serial_port *port) |
| 1127 | { |
| 1128 | struct ftdi_private *priv = usb_get_serial_port_data(port); |
| 1129 | struct usb_serial *serial = port->serial; |
| 1130 | struct usb_device *udev = serial->dev; |
| 1131 | unsigned version; |
| 1132 | unsigned interfaces; |
| 1133 | |
| 1134 | /* Assume it is not the original SIO device for now. */ |
Ian Abbott | f5e09b7 | 2005-09-12 12:23:25 +0100 | [diff] [blame] | 1135 | priv->baud_base = 48000000 / 2; |
Ian Abbott | 8f977e4 | 2005-06-20 16:45:42 +0100 | [diff] [blame] | 1136 | priv->write_offset = 0; |
| 1137 | |
| 1138 | version = le16_to_cpu(udev->descriptor.bcdDevice); |
| 1139 | interfaces = udev->actconfig->desc.bNumInterfaces; |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1140 | dbg("%s: bcdDevice = 0x%x, bNumInterfaces = %u", __func__, |
Ian Abbott | 8f977e4 | 2005-06-20 16:45:42 +0100 | [diff] [blame] | 1141 | version, interfaces); |
| 1142 | if (interfaces > 1) { |
| 1143 | int inter; |
| 1144 | |
| 1145 | /* Multiple interfaces. Assume FT2232C. */ |
| 1146 | priv->chip_type = FT2232C; |
| 1147 | /* Determine interface code. */ |
| 1148 | inter = serial->interface->altsetting->desc.bInterfaceNumber; |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 1149 | if (inter == 0) |
Ian Abbott | 8f977e4 | 2005-06-20 16:45:42 +0100 | [diff] [blame] | 1150 | priv->interface = PIT_SIOA; |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 1151 | else |
Ian Abbott | 8f977e4 | 2005-06-20 16:45:42 +0100 | [diff] [blame] | 1152 | priv->interface = PIT_SIOB; |
Ian Abbott | 8f977e4 | 2005-06-20 16:45:42 +0100 | [diff] [blame] | 1153 | /* BM-type devices have a bug where bcdDevice gets set |
| 1154 | * to 0x200 when iSerialNumber is 0. */ |
| 1155 | if (version < 0x500) { |
| 1156 | dbg("%s: something fishy - bcdDevice too low for multi-interface device", |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1157 | __func__); |
Ian Abbott | 8f977e4 | 2005-06-20 16:45:42 +0100 | [diff] [blame] | 1158 | } |
| 1159 | } else if (version < 0x200) { |
| 1160 | /* Old device. Assume its the original SIO. */ |
| 1161 | priv->chip_type = SIO; |
| 1162 | priv->baud_base = 12000000 / 16; |
| 1163 | priv->write_offset = 1; |
| 1164 | } else if (version < 0x400) { |
| 1165 | /* Assume its an FT8U232AM (or FT8U245AM) */ |
| 1166 | /* (It might be a BM because of the iSerialNumber bug, |
| 1167 | * but it will still work as an AM device.) */ |
| 1168 | priv->chip_type = FT8U232AM; |
David Brownell | 3b009c6 | 2007-03-23 12:54:27 -0700 | [diff] [blame] | 1169 | } else if (version < 0x600) { |
Ian Abbott | 8f977e4 | 2005-06-20 16:45:42 +0100 | [diff] [blame] | 1170 | /* Assume its an FT232BM (or FT245BM) */ |
| 1171 | priv->chip_type = FT232BM; |
David Brownell | 3b009c6 | 2007-03-23 12:54:27 -0700 | [diff] [blame] | 1172 | } else { |
| 1173 | /* Assume its an FT232R */ |
| 1174 | priv->chip_type = FT232RL; |
Ian Abbott | 8f977e4 | 2005-06-20 16:45:42 +0100 | [diff] [blame] | 1175 | } |
Greg Kroah-Hartman | c197a8d | 2008-08-18 13:21:04 -0700 | [diff] [blame] | 1176 | dev_info(&udev->dev, "Detected %s\n", ftdi_chip_name[priv->chip_type]); |
Ian Abbott | 8f977e4 | 2005-06-20 16:45:42 +0100 | [diff] [blame] | 1177 | } |
| 1178 | |
| 1179 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1180 | /* |
| 1181 | * *************************************************************************** |
| 1182 | * Sysfs Attribute |
| 1183 | * *************************************************************************** |
| 1184 | */ |
| 1185 | |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 1186 | static ssize_t show_latency_timer(struct device *dev, |
| 1187 | struct device_attribute *attr, char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1188 | { |
| 1189 | struct usb_serial_port *port = to_usb_serial_port(dev); |
| 1190 | struct ftdi_private *priv = usb_get_serial_port_data(port); |
Jim Radford | 12bdbe0 | 2007-02-28 10:10:50 -0800 | [diff] [blame] | 1191 | struct usb_device *udev = port->serial->dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1192 | unsigned short latency = 0; |
| 1193 | int rv = 0; |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1194 | |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1195 | |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 1196 | dbg("%s", __func__); |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1197 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1198 | rv = usb_control_msg(udev, |
| 1199 | usb_rcvctrlpipe(udev, 0), |
| 1200 | FTDI_SIO_GET_LATENCY_TIMER_REQUEST, |
| 1201 | FTDI_SIO_GET_LATENCY_TIMER_REQUEST_TYPE, |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1202 | 0, priv->interface, |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 1203 | (char *) &latency, 1, WDR_TIMEOUT); |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1204 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1205 | if (rv < 0) { |
Joe Perches | 898eb71 | 2007-10-18 03:06:30 -0700 | [diff] [blame] | 1206 | dev_err(dev, "Unable to read latency timer: %i\n", rv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1207 | return -EIO; |
| 1208 | } |
| 1209 | return sprintf(buf, "%i\n", latency); |
| 1210 | } |
| 1211 | |
| 1212 | /* Write a new value of the latency timer, in units of milliseconds. */ |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 1213 | static ssize_t store_latency_timer(struct device *dev, |
| 1214 | struct device_attribute *attr, const char *valbuf, |
| 1215 | size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1216 | { |
| 1217 | struct usb_serial_port *port = to_usb_serial_port(dev); |
| 1218 | struct ftdi_private *priv = usb_get_serial_port_data(port); |
Jim Radford | 12bdbe0 | 2007-02-28 10:10:50 -0800 | [diff] [blame] | 1219 | struct usb_device *udev = port->serial->dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1220 | char buf[1]; |
| 1221 | int v = simple_strtoul(valbuf, NULL, 10); |
| 1222 | int rv = 0; |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1223 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1224 | dbg("%s: setting latency timer = %i", __func__, v); |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1225 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1226 | rv = usb_control_msg(udev, |
| 1227 | usb_sndctrlpipe(udev, 0), |
| 1228 | FTDI_SIO_SET_LATENCY_TIMER_REQUEST, |
| 1229 | FTDI_SIO_SET_LATENCY_TIMER_REQUEST_TYPE, |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1230 | v, priv->interface, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1231 | buf, 0, WDR_TIMEOUT); |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1232 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1233 | if (rv < 0) { |
Joe Perches | 898eb71 | 2007-10-18 03:06:30 -0700 | [diff] [blame] | 1234 | dev_err(dev, "Unable to write latency timer: %i\n", rv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1235 | return -EIO; |
| 1236 | } |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1237 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1238 | return count; |
| 1239 | } |
| 1240 | |
| 1241 | /* Write an event character directly to the FTDI register. The ASCII |
| 1242 | value is in the low 8 bits, with the enable bit in the 9th bit. */ |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 1243 | static ssize_t store_event_char(struct device *dev, |
| 1244 | struct device_attribute *attr, const char *valbuf, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1245 | { |
| 1246 | struct usb_serial_port *port = to_usb_serial_port(dev); |
| 1247 | struct ftdi_private *priv = usb_get_serial_port_data(port); |
Jim Radford | 12bdbe0 | 2007-02-28 10:10:50 -0800 | [diff] [blame] | 1248 | struct usb_device *udev = port->serial->dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1249 | char buf[1]; |
| 1250 | int v = simple_strtoul(valbuf, NULL, 10); |
| 1251 | int rv = 0; |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1252 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1253 | dbg("%s: setting event char = %i", __func__, v); |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1254 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1255 | rv = usb_control_msg(udev, |
| 1256 | usb_sndctrlpipe(udev, 0), |
| 1257 | FTDI_SIO_SET_EVENT_CHAR_REQUEST, |
| 1258 | FTDI_SIO_SET_EVENT_CHAR_REQUEST_TYPE, |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1259 | v, priv->interface, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1260 | buf, 0, WDR_TIMEOUT); |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1261 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1262 | if (rv < 0) { |
| 1263 | dbg("Unable to write event character: %i", rv); |
| 1264 | return -EIO; |
| 1265 | } |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1266 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1267 | return count; |
| 1268 | } |
| 1269 | |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 1270 | static DEVICE_ATTR(latency_timer, S_IWUSR | S_IRUGO, show_latency_timer, |
| 1271 | store_latency_timer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1272 | static DEVICE_ATTR(event_char, S_IWUSR, NULL, store_event_char); |
| 1273 | |
Jim Radford | 12bdbe0 | 2007-02-28 10:10:50 -0800 | [diff] [blame] | 1274 | static int create_sysfs_attrs(struct usb_serial_port *port) |
Greg Kroah-Hartman | 13f4db9 | 2006-08-28 11:43:25 -0700 | [diff] [blame] | 1275 | { |
Jim Radford | 12bdbe0 | 2007-02-28 10:10:50 -0800 | [diff] [blame] | 1276 | struct ftdi_private *priv = usb_get_serial_port_data(port); |
Greg Kroah-Hartman | 13f4db9 | 2006-08-28 11:43:25 -0700 | [diff] [blame] | 1277 | int retval = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1278 | |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 1279 | dbg("%s", __func__); |
Greg Kroah-Hartman | 13f4db9 | 2006-08-28 11:43:25 -0700 | [diff] [blame] | 1280 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1281 | /* XXX I've no idea if the original SIO supports the event_char |
| 1282 | * sysfs parameter, so I'm playing it safe. */ |
| 1283 | if (priv->chip_type != SIO) { |
| 1284 | dbg("sysfs attributes for %s", ftdi_chip_name[priv->chip_type]); |
Jim Radford | 12bdbe0 | 2007-02-28 10:10:50 -0800 | [diff] [blame] | 1285 | retval = device_create_file(&port->dev, &dev_attr_event_char); |
Greg Kroah-Hartman | 13f4db9 | 2006-08-28 11:43:25 -0700 | [diff] [blame] | 1286 | if ((!retval) && |
Stepan Moskovchenko | 97cd49e | 2007-05-09 14:53:04 -0400 | [diff] [blame] | 1287 | (priv->chip_type == FT232BM || |
| 1288 | priv->chip_type == FT2232C || |
| 1289 | priv->chip_type == FT232RL)) { |
Jim Radford | 12bdbe0 | 2007-02-28 10:10:50 -0800 | [diff] [blame] | 1290 | retval = device_create_file(&port->dev, |
Greg Kroah-Hartman | 13f4db9 | 2006-08-28 11:43:25 -0700 | [diff] [blame] | 1291 | &dev_attr_latency_timer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1292 | } |
| 1293 | } |
Greg Kroah-Hartman | 13f4db9 | 2006-08-28 11:43:25 -0700 | [diff] [blame] | 1294 | return retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1295 | } |
| 1296 | |
Jim Radford | 12bdbe0 | 2007-02-28 10:10:50 -0800 | [diff] [blame] | 1297 | static void remove_sysfs_attrs(struct usb_serial_port *port) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1298 | { |
Jim Radford | 12bdbe0 | 2007-02-28 10:10:50 -0800 | [diff] [blame] | 1299 | struct ftdi_private *priv = usb_get_serial_port_data(port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1300 | |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 1301 | dbg("%s", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1302 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1303 | /* XXX see create_sysfs_attrs */ |
| 1304 | if (priv->chip_type != SIO) { |
Jim Radford | 12bdbe0 | 2007-02-28 10:10:50 -0800 | [diff] [blame] | 1305 | device_remove_file(&port->dev, &dev_attr_event_char); |
Andrew M. Bishop | ed6e528 | 2007-08-21 19:08:56 +0100 | [diff] [blame] | 1306 | if (priv->chip_type == FT232BM || |
| 1307 | priv->chip_type == FT2232C || |
| 1308 | priv->chip_type == FT232RL) { |
Jim Radford | 12bdbe0 | 2007-02-28 10:10:50 -0800 | [diff] [blame] | 1309 | device_remove_file(&port->dev, &dev_attr_latency_timer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1310 | } |
| 1311 | } |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1312 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1313 | } |
| 1314 | |
| 1315 | /* |
| 1316 | * *************************************************************************** |
| 1317 | * FTDI driver specific functions |
| 1318 | * *************************************************************************** |
| 1319 | */ |
| 1320 | |
Ian Abbott | 8f977e4 | 2005-06-20 16:45:42 +0100 | [diff] [blame] | 1321 | /* Probe function to check for special devices */ |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 1322 | static int ftdi_sio_probe(struct usb_serial *serial, |
| 1323 | const struct usb_device_id *id) |
Ian Abbott | 8f977e4 | 2005-06-20 16:45:42 +0100 | [diff] [blame] | 1324 | { |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 1325 | struct ftdi_sio_quirk *quirk = |
| 1326 | (struct ftdi_sio_quirk *)id->driver_info; |
Tony Lindgren | fa91d43 | 2007-05-04 18:23:24 -0700 | [diff] [blame] | 1327 | |
| 1328 | if (quirk && quirk->probe) { |
| 1329 | int ret = quirk->probe(serial); |
| 1330 | if (ret != 0) |
| 1331 | return ret; |
| 1332 | } |
| 1333 | |
Ian Abbott | 8f977e4 | 2005-06-20 16:45:42 +0100 | [diff] [blame] | 1334 | usb_set_serial_data(serial, (void *)id->driver_info); |
| 1335 | |
Tony Lindgren | fa91d43 | 2007-05-04 18:23:24 -0700 | [diff] [blame] | 1336 | return 0; |
Ian Abbott | 8f977e4 | 2005-06-20 16:45:42 +0100 | [diff] [blame] | 1337 | } |
| 1338 | |
Jim Radford | 12bdbe0 | 2007-02-28 10:10:50 -0800 | [diff] [blame] | 1339 | static int ftdi_sio_port_probe(struct usb_serial_port *port) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1340 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1341 | struct ftdi_private *priv; |
Oliver Neukum | 0ffbbe2 | 2007-07-09 12:03:08 -0700 | [diff] [blame] | 1342 | struct ftdi_sio_quirk *quirk = usb_get_serial_data(port->serial); |
| 1343 | |
Greg Kroah-Hartman | 13f4db9 | 2006-08-28 11:43:25 -0700 | [diff] [blame] | 1344 | |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 1345 | dbg("%s", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1346 | |
Eric Sesterhenn | 80b6ca4 | 2006-02-27 21:29:43 +0100 | [diff] [blame] | 1347 | priv = kzalloc(sizeof(struct ftdi_private), GFP_KERNEL); |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 1348 | if (!priv) { |
Greg Kroah-Hartman | 194343d | 2008-08-20 16:56:34 -0700 | [diff] [blame] | 1349 | dev_err(&port->dev, "%s- kmalloc(%Zd) failed.\n", __func__, |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 1350 | sizeof(struct ftdi_private)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1351 | return -ENOMEM; |
| 1352 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1353 | |
| 1354 | spin_lock_init(&priv->rx_lock); |
Ian Abbott | 2246540 | 2006-06-26 12:59:17 +0100 | [diff] [blame] | 1355 | spin_lock_init(&priv->tx_lock); |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 1356 | init_waitqueue_head(&priv->delta_msr_wait); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1357 | /* This will push the characters through immediately rather |
| 1358 | than queue a task to deliver them */ |
| 1359 | priv->flags = ASYNC_LOW_LATENCY; |
| 1360 | |
Oliver Neukum | 0ffbbe2 | 2007-07-09 12:03:08 -0700 | [diff] [blame] | 1361 | if (quirk && quirk->port_probe) |
| 1362 | quirk->port_probe(priv); |
| 1363 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1364 | /* Increase the size of read buffers */ |
Jesper Juhl | 1bc3c9e | 2005-04-18 17:39:34 -0700 | [diff] [blame] | 1365 | kfree(port->bulk_in_buffer); |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 1366 | port->bulk_in_buffer = kmalloc(BUFSZ, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1367 | if (!port->bulk_in_buffer) { |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 1368 | kfree(priv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1369 | return -ENOMEM; |
| 1370 | } |
| 1371 | if (port->read_urb) { |
| 1372 | port->read_urb->transfer_buffer = port->bulk_in_buffer; |
| 1373 | port->read_urb->transfer_buffer_length = BUFSZ; |
| 1374 | } |
| 1375 | |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 1376 | INIT_DELAYED_WORK(&priv->rx_work, ftdi_process_read); |
| 1377 | priv->port = port; |
Ian Abbott | 76854ce | 2005-06-02 10:34:11 +0100 | [diff] [blame] | 1378 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1379 | /* Free port's existing write urb and transfer buffer. */ |
| 1380 | if (port->write_urb) { |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 1381 | usb_free_urb(port->write_urb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1382 | port->write_urb = NULL; |
| 1383 | } |
Jesper Juhl | 1bc3c9e | 2005-04-18 17:39:34 -0700 | [diff] [blame] | 1384 | kfree(port->bulk_out_buffer); |
| 1385 | port->bulk_out_buffer = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1386 | |
Jim Radford | 12bdbe0 | 2007-02-28 10:10:50 -0800 | [diff] [blame] | 1387 | usb_set_serial_port_data(port, priv); |
Ian Abbott | 8f977e4 | 2005-06-20 16:45:42 +0100 | [diff] [blame] | 1388 | |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 1389 | ftdi_determine_type(port); |
Jim Radford | 12bdbe0 | 2007-02-28 10:10:50 -0800 | [diff] [blame] | 1390 | create_sysfs_attrs(port); |
| 1391 | return 0; |
| 1392 | } |
Ian Abbott | 8f977e4 | 2005-06-20 16:45:42 +0100 | [diff] [blame] | 1393 | |
Ian Abbott | 8f977e4 | 2005-06-20 16:45:42 +0100 | [diff] [blame] | 1394 | /* Setup for the USB-UIRT device, which requires hardwired |
| 1395 | * baudrate (38400 gets mapped to 312500) */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1396 | /* Called from usbserial:serial_probe */ |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 1397 | static void ftdi_USB_UIRT_setup(struct ftdi_private *priv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1398 | { |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 1399 | dbg("%s", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1400 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1401 | priv->flags |= ASYNC_SPD_CUST; |
| 1402 | priv->custom_divisor = 77; |
Alan Cox | 669a6db | 2007-10-18 01:24:24 -0700 | [diff] [blame] | 1403 | priv->force_baud = 38400; |
Ian Abbott | 8f977e4 | 2005-06-20 16:45:42 +0100 | [diff] [blame] | 1404 | } /* ftdi_USB_UIRT_setup */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1405 | |
Ian Abbott | 8f977e4 | 2005-06-20 16:45:42 +0100 | [diff] [blame] | 1406 | /* Setup for the HE-TIRA1 device, which requires hardwired |
| 1407 | * baudrate (38400 gets mapped to 100000) and RTS-CTS enabled. */ |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 1408 | |
| 1409 | static void ftdi_HE_TIRA1_setup(struct ftdi_private *priv) |
Ian Abbott | 8f977e4 | 2005-06-20 16:45:42 +0100 | [diff] [blame] | 1410 | { |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 1411 | dbg("%s", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1412 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1413 | priv->flags |= ASYNC_SPD_CUST; |
| 1414 | priv->custom_divisor = 240; |
Alan Cox | 669a6db | 2007-10-18 01:24:24 -0700 | [diff] [blame] | 1415 | priv->force_baud = 38400; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1416 | priv->force_rtscts = 1; |
Ian Abbott | 8f977e4 | 2005-06-20 16:45:42 +0100 | [diff] [blame] | 1417 | } /* ftdi_HE_TIRA1_setup */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1418 | |
Tony Lindgren | fa91d43 | 2007-05-04 18:23:24 -0700 | [diff] [blame] | 1419 | /* |
Harald Welte | 2073434 | 2008-01-01 15:08:35 +0100 | [diff] [blame] | 1420 | * First port on JTAG adaptors such as Olimex arm-usb-ocd or the FIC/OpenMoko |
| 1421 | * Neo1973 Debug Board is reserved for JTAG interface and can be accessed from |
| 1422 | * userspace using openocd. |
Tony Lindgren | fa91d43 | 2007-05-04 18:23:24 -0700 | [diff] [blame] | 1423 | */ |
Harald Welte | 2073434 | 2008-01-01 15:08:35 +0100 | [diff] [blame] | 1424 | static int ftdi_jtag_probe(struct usb_serial *serial) |
Tony Lindgren | fa91d43 | 2007-05-04 18:23:24 -0700 | [diff] [blame] | 1425 | { |
| 1426 | struct usb_device *udev = serial->dev; |
| 1427 | struct usb_interface *interface = serial->interface; |
| 1428 | |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 1429 | dbg("%s", __func__); |
Tony Lindgren | fa91d43 | 2007-05-04 18:23:24 -0700 | [diff] [blame] | 1430 | |
| 1431 | if (interface == udev->actconfig->interface[0]) { |
Greg Kroah-Hartman | c197a8d | 2008-08-18 13:21:04 -0700 | [diff] [blame] | 1432 | dev_info(&udev->dev, |
| 1433 | "Ignoring serial port reserved for JTAG\n"); |
Tony Lindgren | fa91d43 | 2007-05-04 18:23:24 -0700 | [diff] [blame] | 1434 | return -ENODEV; |
| 1435 | } |
| 1436 | |
| 1437 | return 0; |
| 1438 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1439 | |
Kevin Vance | 546d7ee | 2008-03-01 13:49:59 -0500 | [diff] [blame] | 1440 | /* |
| 1441 | * The Matrix Orbital VK204-25-USB has an invalid IN endpoint. |
| 1442 | * We have to correct it if we want to read from it. |
| 1443 | */ |
| 1444 | static int ftdi_mtxorb_hack_setup(struct usb_serial *serial) |
| 1445 | { |
| 1446 | struct usb_host_endpoint *ep = serial->dev->ep_in[1]; |
| 1447 | struct usb_endpoint_descriptor *ep_desc = &ep->desc; |
| 1448 | |
| 1449 | if (ep->enabled && ep_desc->wMaxPacketSize == 0) { |
Al Viro | fd05e72 | 2008-04-28 07:00:16 +0100 | [diff] [blame] | 1450 | ep_desc->wMaxPacketSize = cpu_to_le16(0x40); |
Greg Kroah-Hartman | c197a8d | 2008-08-18 13:21:04 -0700 | [diff] [blame] | 1451 | dev_info(&serial->dev->dev, |
| 1452 | "Fixing invalid wMaxPacketSize on read pipe\n"); |
Kevin Vance | 546d7ee | 2008-03-01 13:49:59 -0500 | [diff] [blame] | 1453 | } |
| 1454 | |
| 1455 | return 0; |
| 1456 | } |
| 1457 | |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1458 | /* ftdi_shutdown is called from usbserial:usb_serial_disconnect |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1459 | * it is called when the usb device is disconnected |
| 1460 | * |
| 1461 | * usbserial:usb_serial_disconnect |
| 1462 | * calls __serial_close for each open of the port |
| 1463 | * shutdown is called then (ie ftdi_shutdown) |
| 1464 | */ |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 1465 | static void ftdi_shutdown(struct usb_serial *serial) |
Jim Radford | 12bdbe0 | 2007-02-28 10:10:50 -0800 | [diff] [blame] | 1466 | { |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1467 | dbg("%s", __func__); |
Jim Radford | 12bdbe0 | 2007-02-28 10:10:50 -0800 | [diff] [blame] | 1468 | } |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1469 | |
Jim Radford | 12bdbe0 | 2007-02-28 10:10:50 -0800 | [diff] [blame] | 1470 | static int ftdi_sio_port_remove(struct usb_serial_port *port) |
| 1471 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1472 | struct ftdi_private *priv = usb_get_serial_port_data(port); |
| 1473 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1474 | dbg("%s", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1475 | |
Jim Radford | 12bdbe0 | 2007-02-28 10:10:50 -0800 | [diff] [blame] | 1476 | remove_sysfs_attrs(port); |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1477 | |
| 1478 | /* all open ports are closed at this point |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 1479 | * (by usbserial.c:__serial_close, which calls ftdi_close) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1480 | */ |
| 1481 | |
| 1482 | if (priv) { |
| 1483 | usb_set_serial_port_data(port, NULL); |
| 1484 | kfree(priv); |
| 1485 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1486 | |
Jim Radford | 12bdbe0 | 2007-02-28 10:10:50 -0800 | [diff] [blame] | 1487 | return 0; |
| 1488 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1489 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 1490 | static int ftdi_open(struct tty_struct *tty, |
| 1491 | struct usb_serial_port *port, struct file *filp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1492 | { /* ftdi_open */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1493 | struct usb_device *dev = port->serial->dev; |
| 1494 | struct ftdi_private *priv = usb_get_serial_port_data(port); |
| 1495 | unsigned long flags; |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1496 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1497 | int result = 0; |
| 1498 | char buf[1]; /* Needed for the usb_control_msg I think */ |
| 1499 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1500 | dbg("%s", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1501 | |
Ian Abbott | 2246540 | 2006-06-26 12:59:17 +0100 | [diff] [blame] | 1502 | spin_lock_irqsave(&priv->tx_lock, flags); |
| 1503 | priv->tx_bytes = 0; |
| 1504 | spin_unlock_irqrestore(&priv->tx_lock, flags); |
| 1505 | spin_lock_irqsave(&priv->rx_lock, flags); |
| 1506 | priv->rx_bytes = 0; |
| 1507 | spin_unlock_irqrestore(&priv->rx_lock, flags); |
| 1508 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 1509 | if (tty) |
| 1510 | tty->low_latency = (priv->flags & ASYNC_LOW_LATENCY) ? 1 : 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1511 | |
| 1512 | /* No error checking for this (will get errors later anyway) */ |
| 1513 | /* See ftdi_sio.h for description of what is reset */ |
| 1514 | usb_control_msg(dev, usb_sndctrlpipe(dev, 0), |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1515 | FTDI_SIO_RESET_REQUEST, FTDI_SIO_RESET_REQUEST_TYPE, |
| 1516 | FTDI_SIO_RESET_SIO, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1517 | priv->interface, buf, 0, WDR_TIMEOUT); |
| 1518 | |
| 1519 | /* Termios defaults are set by usb_serial_init. We don't change |
Nick Andrew | c4f0124 | 2008-12-05 16:34:46 +0000 | [diff] [blame] | 1520 | port->tty->termios - this would lose speed settings, etc. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1521 | This is same behaviour as serial.c/rs_open() - Kuba */ |
| 1522 | |
| 1523 | /* ftdi_set_termios will send usb control messages */ |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 1524 | if (tty) |
| 1525 | ftdi_set_termios(tty, port, tty->termios); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1526 | |
| 1527 | /* FIXME: Flow control might be enabled, so it should be checked - |
| 1528 | we have no control of defaults! */ |
| 1529 | /* 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] | 1530 | set_mctrl(port, TIOCM_DTR | TIOCM_RTS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1531 | |
| 1532 | /* Not throttled */ |
| 1533 | spin_lock_irqsave(&priv->rx_lock, flags); |
| 1534 | priv->rx_flags &= ~(THROTTLED | ACTUALLY_THROTTLED); |
| 1535 | spin_unlock_irqrestore(&priv->rx_lock, flags); |
| 1536 | |
| 1537 | /* Start reading from the device */ |
Ian Abbott | 76854ce | 2005-06-02 10:34:11 +0100 | [diff] [blame] | 1538 | priv->rx_processed = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1539 | usb_fill_bulk_urb(port->read_urb, dev, |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 1540 | usb_rcvbulkpipe(dev, port->bulk_in_endpointAddress), |
| 1541 | port->read_urb->transfer_buffer, |
| 1542 | port->read_urb->transfer_buffer_length, |
| 1543 | ftdi_read_bulk_callback, port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1544 | result = usb_submit_urb(port->read_urb, GFP_KERNEL); |
| 1545 | if (result) |
Greg Kroah-Hartman | 194343d | 2008-08-20 16:56:34 -0700 | [diff] [blame] | 1546 | dev_err(&port->dev, |
| 1547 | "%s - failed submitting read urb, error %d\n", |
| 1548 | __func__, result); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1549 | |
| 1550 | |
| 1551 | return result; |
| 1552 | } /* ftdi_open */ |
| 1553 | |
| 1554 | |
| 1555 | |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1556 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1557 | * usbserial:__serial_close only calls ftdi_close if the point is open |
| 1558 | * |
| 1559 | * This only gets called when it is the last close |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1560 | * |
| 1561 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1562 | */ |
| 1563 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 1564 | static void ftdi_close(struct tty_struct *tty, |
| 1565 | struct usb_serial_port *port, struct file *filp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1566 | { /* ftdi_close */ |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 1567 | unsigned int c_cflag = tty->termios->c_cflag; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1568 | struct ftdi_private *priv = usb_get_serial_port_data(port); |
| 1569 | char buf[1]; |
| 1570 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1571 | dbg("%s", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1572 | |
Oliver Neukum | 95bef01 | 2008-01-22 13:56:18 +0100 | [diff] [blame] | 1573 | mutex_lock(&port->serial->disc_mutex); |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 1574 | if (c_cflag & HUPCL && !port->serial->disconnected) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1575 | /* Disable flow control */ |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1576 | if (usb_control_msg(port->serial->dev, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1577 | usb_sndctrlpipe(port->serial->dev, 0), |
| 1578 | FTDI_SIO_SET_FLOW_CTRL_REQUEST, |
| 1579 | FTDI_SIO_SET_FLOW_CTRL_REQUEST_TYPE, |
| 1580 | 0, priv->interface, buf, 0, |
| 1581 | WDR_TIMEOUT) < 0) { |
Greg Kroah-Hartman | 194343d | 2008-08-20 16:56:34 -0700 | [diff] [blame] | 1582 | dev_err(&port->dev, "error from flowcontrol urb\n"); |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1583 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1584 | |
Ian Abbott | 74ede0f | 2005-07-29 12:16:41 -0700 | [diff] [blame] | 1585 | /* drop RTS and DTR */ |
| 1586 | clear_mctrl(port, TIOCM_DTR | TIOCM_RTS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1587 | } /* Note change no line if hupcl is off */ |
Oliver Neukum | 95bef01 | 2008-01-22 13:56:18 +0100 | [diff] [blame] | 1588 | mutex_unlock(&port->serial->disc_mutex); |
Ian Abbott | 76854ce | 2005-06-02 10:34:11 +0100 | [diff] [blame] | 1589 | |
| 1590 | /* cancel any scheduled reading */ |
| 1591 | cancel_delayed_work(&priv->rx_work); |
| 1592 | flush_scheduled_work(); |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1593 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1594 | /* shutdown our bulk read */ |
Mariusz Kozlowski | 794c944 | 2006-11-08 15:36:25 +0100 | [diff] [blame] | 1595 | usb_kill_urb(port->read_urb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1596 | } /* ftdi_close */ |
| 1597 | |
| 1598 | |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1599 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1600 | /* The SIO requires the first byte to have: |
| 1601 | * B0 1 |
| 1602 | * B1 0 |
| 1603 | * B2..7 length of message excluding byte 0 |
| 1604 | * |
| 1605 | * The new devices do not require this byte |
| 1606 | */ |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 1607 | static int ftdi_write(struct tty_struct *tty, struct usb_serial_port *port, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1608 | const unsigned char *buf, int count) |
| 1609 | { /* ftdi_write */ |
| 1610 | struct ftdi_private *priv = usb_get_serial_port_data(port); |
| 1611 | struct urb *urb; |
| 1612 | unsigned char *buffer; |
| 1613 | int data_offset ; /* will be 1 for the SIO and 0 otherwise */ |
| 1614 | int status; |
| 1615 | int transfer_size; |
Ian Abbott | 2246540 | 2006-06-26 12:59:17 +0100 | [diff] [blame] | 1616 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1617 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1618 | dbg("%s port %d, %d bytes", __func__, port->number, count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1619 | |
| 1620 | if (count == 0) { |
| 1621 | dbg("write request of 0 bytes"); |
| 1622 | return 0; |
| 1623 | } |
Ian Abbott | 2246540 | 2006-06-26 12:59:17 +0100 | [diff] [blame] | 1624 | spin_lock_irqsave(&priv->tx_lock, flags); |
| 1625 | if (priv->tx_outstanding_urbs > URB_UPPER_LIMIT) { |
| 1626 | spin_unlock_irqrestore(&priv->tx_lock, flags); |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1627 | dbg("%s - write limit hit\n", __func__); |
Ian Abbott | 2246540 | 2006-06-26 12:59:17 +0100 | [diff] [blame] | 1628 | return 0; |
| 1629 | } |
Oliver Neukum | 62127a5 | 2007-03-23 14:30:16 +0100 | [diff] [blame] | 1630 | priv->tx_outstanding_urbs++; |
Ian Abbott | 2246540 | 2006-06-26 12:59:17 +0100 | [diff] [blame] | 1631 | spin_unlock_irqrestore(&priv->tx_lock, flags); |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1632 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1633 | data_offset = priv->write_offset; |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 1634 | dbg("data_offset set to %d", data_offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1635 | |
| 1636 | /* Determine total transfer size */ |
| 1637 | transfer_size = count; |
| 1638 | if (data_offset > 0) { |
| 1639 | /* Original sio needs control bytes too... */ |
| 1640 | transfer_size += (data_offset * |
| 1641 | ((count + (PKTSZ - 1 - data_offset)) / |
| 1642 | (PKTSZ - data_offset))); |
| 1643 | } |
| 1644 | |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 1645 | buffer = kmalloc(transfer_size, GFP_ATOMIC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1646 | if (!buffer) { |
Greg Kroah-Hartman | 194343d | 2008-08-20 16:56:34 -0700 | [diff] [blame] | 1647 | dev_err(&port->dev, |
| 1648 | "%s ran out of kernel memory for urb ...\n", __func__); |
Oliver Neukum | 62127a5 | 2007-03-23 14:30:16 +0100 | [diff] [blame] | 1649 | count = -ENOMEM; |
| 1650 | goto error_no_buffer; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1651 | } |
| 1652 | |
| 1653 | urb = usb_alloc_urb(0, GFP_ATOMIC); |
| 1654 | if (!urb) { |
Greg Kroah-Hartman | 194343d | 2008-08-20 16:56:34 -0700 | [diff] [blame] | 1655 | dev_err(&port->dev, "%s - no more free urbs\n", __func__); |
Oliver Neukum | 62127a5 | 2007-03-23 14:30:16 +0100 | [diff] [blame] | 1656 | count = -ENOMEM; |
| 1657 | goto error_no_urb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1658 | } |
| 1659 | |
| 1660 | /* Copy data */ |
| 1661 | if (data_offset > 0) { |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 1662 | /* Original sio requires control byte at start of |
| 1663 | each packet. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1664 | int user_pktsz = PKTSZ - data_offset; |
| 1665 | int todo = count; |
| 1666 | unsigned char *first_byte = buffer; |
| 1667 | const unsigned char *current_position = buf; |
| 1668 | |
| 1669 | while (todo > 0) { |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 1670 | if (user_pktsz > todo) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1671 | user_pktsz = todo; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1672 | /* Write the control byte at the front of the packet*/ |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1673 | *first_byte = 1 | ((user_pktsz) << 2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1674 | /* Copy data for packet */ |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 1675 | memcpy(first_byte + data_offset, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1676 | current_position, user_pktsz); |
| 1677 | first_byte += user_pktsz + data_offset; |
| 1678 | current_position += user_pktsz; |
| 1679 | todo -= user_pktsz; |
| 1680 | } |
| 1681 | } else { |
| 1682 | /* No control byte required. */ |
| 1683 | /* Copy in the data to send */ |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 1684 | memcpy(buffer, buf, count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1685 | } |
| 1686 | |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 1687 | usb_serial_debug_data(debug, &port->dev, __func__, |
| 1688 | transfer_size, buffer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1689 | |
| 1690 | /* fill the buffer and send it */ |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1691 | usb_fill_bulk_urb(urb, port->serial->dev, |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 1692 | usb_sndbulkpipe(port->serial->dev, |
| 1693 | port->bulk_out_endpointAddress), |
| 1694 | buffer, transfer_size, |
| 1695 | ftdi_write_bulk_callback, port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1696 | |
| 1697 | status = usb_submit_urb(urb, GFP_ATOMIC); |
| 1698 | if (status) { |
Greg Kroah-Hartman | 194343d | 2008-08-20 16:56:34 -0700 | [diff] [blame] | 1699 | dev_err(&port->dev, |
| 1700 | "%s - failed submitting write urb, error %d\n", |
| 1701 | __func__, status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1702 | count = status; |
Oliver Neukum | 62127a5 | 2007-03-23 14:30:16 +0100 | [diff] [blame] | 1703 | goto error; |
Ian Abbott | 2246540 | 2006-06-26 12:59:17 +0100 | [diff] [blame] | 1704 | } else { |
| 1705 | spin_lock_irqsave(&priv->tx_lock, flags); |
Ian Abbott | 2246540 | 2006-06-26 12:59:17 +0100 | [diff] [blame] | 1706 | priv->tx_outstanding_bytes += count; |
| 1707 | priv->tx_bytes += count; |
| 1708 | spin_unlock_irqrestore(&priv->tx_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1709 | } |
| 1710 | |
| 1711 | /* we are done with this urb, so let the host driver |
| 1712 | * really free it when it is finished with it */ |
Oliver Neukum | 62127a5 | 2007-03-23 14:30:16 +0100 | [diff] [blame] | 1713 | usb_free_urb(urb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1714 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1715 | dbg("%s write returning: %d", __func__, count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1716 | return count; |
Oliver Neukum | 62127a5 | 2007-03-23 14:30:16 +0100 | [diff] [blame] | 1717 | error: |
| 1718 | usb_free_urb(urb); |
| 1719 | error_no_urb: |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 1720 | kfree(buffer); |
Oliver Neukum | 62127a5 | 2007-03-23 14:30:16 +0100 | [diff] [blame] | 1721 | error_no_buffer: |
| 1722 | spin_lock_irqsave(&priv->tx_lock, flags); |
| 1723 | priv->tx_outstanding_urbs--; |
| 1724 | spin_unlock_irqrestore(&priv->tx_lock, flags); |
| 1725 | return count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1726 | } /* ftdi_write */ |
| 1727 | |
| 1728 | |
| 1729 | /* This function may get called when the device is closed */ |
| 1730 | |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 1731 | static void ftdi_write_bulk_callback(struct urb *urb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1732 | { |
Ian Abbott | 2246540 | 2006-06-26 12:59:17 +0100 | [diff] [blame] | 1733 | unsigned long flags; |
Ming Lei | cdc9779 | 2008-02-24 18:41:47 +0800 | [diff] [blame] | 1734 | struct usb_serial_port *port = urb->context; |
Ian Abbott | 2246540 | 2006-06-26 12:59:17 +0100 | [diff] [blame] | 1735 | struct ftdi_private *priv; |
| 1736 | int data_offset; /* will be 1 for the SIO and 0 otherwise */ |
| 1737 | unsigned long countback; |
Greg Kroah-Hartman | 0fb0aa1 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 1738 | int status = urb->status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1739 | |
| 1740 | /* free up the transfer buffer, as usb_free_urb() does not do this */ |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 1741 | kfree(urb->transfer_buffer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1742 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1743 | dbg("%s - port %d", __func__, port->number); |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1744 | |
Greg Kroah-Hartman | 0fb0aa1 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 1745 | if (status) { |
| 1746 | dbg("nonzero write bulk status received: %d", status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1747 | return; |
| 1748 | } |
| 1749 | |
Ian Abbott | 2246540 | 2006-06-26 12:59:17 +0100 | [diff] [blame] | 1750 | priv = usb_get_serial_port_data(port); |
| 1751 | if (!priv) { |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1752 | dbg("%s - bad port private data pointer - exiting", __func__); |
Ian Abbott | 2246540 | 2006-06-26 12:59:17 +0100 | [diff] [blame] | 1753 | return; |
| 1754 | } |
| 1755 | /* account for transferred data */ |
| 1756 | countback = urb->actual_length; |
| 1757 | data_offset = priv->write_offset; |
| 1758 | if (data_offset > 0) { |
| 1759 | /* Subtract the control bytes */ |
Julia Lawall | dfa5ec7 | 2008-03-04 15:25:11 -0800 | [diff] [blame] | 1760 | countback -= (data_offset * DIV_ROUND_UP(countback, PKTSZ)); |
Ian Abbott | 2246540 | 2006-06-26 12:59:17 +0100 | [diff] [blame] | 1761 | } |
| 1762 | spin_lock_irqsave(&priv->tx_lock, flags); |
| 1763 | --priv->tx_outstanding_urbs; |
| 1764 | priv->tx_outstanding_bytes -= countback; |
| 1765 | spin_unlock_irqrestore(&priv->tx_lock, flags); |
| 1766 | |
Pete Zaitcev | cf2c748 | 2006-05-22 21:58:49 -0700 | [diff] [blame] | 1767 | usb_serial_port_softint(port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1768 | } /* ftdi_write_bulk_callback */ |
| 1769 | |
| 1770 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 1771 | static int ftdi_write_room(struct tty_struct *tty) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1772 | { |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 1773 | struct usb_serial_port *port = tty->driver_data; |
Ian Abbott | 2246540 | 2006-06-26 12:59:17 +0100 | [diff] [blame] | 1774 | struct ftdi_private *priv = usb_get_serial_port_data(port); |
| 1775 | int room; |
| 1776 | unsigned long flags; |
| 1777 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1778 | dbg("%s - port %d", __func__, port->number); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1779 | |
Ian Abbott | 2246540 | 2006-06-26 12:59:17 +0100 | [diff] [blame] | 1780 | spin_lock_irqsave(&priv->tx_lock, flags); |
| 1781 | if (priv->tx_outstanding_urbs < URB_UPPER_LIMIT) { |
| 1782 | /* |
| 1783 | * We really can take anything the user throws at us |
| 1784 | * but let's pick a nice big number to tell the tty |
| 1785 | * layer that we have lots of free space |
| 1786 | */ |
| 1787 | room = 2048; |
| 1788 | } else { |
| 1789 | room = 0; |
| 1790 | } |
| 1791 | spin_unlock_irqrestore(&priv->tx_lock, flags); |
| 1792 | return room; |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 1793 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1794 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 1795 | static int ftdi_chars_in_buffer(struct tty_struct *tty) |
| 1796 | { |
| 1797 | struct usb_serial_port *port = tty->driver_data; |
Ian Abbott | 2246540 | 2006-06-26 12:59:17 +0100 | [diff] [blame] | 1798 | struct ftdi_private *priv = usb_get_serial_port_data(port); |
| 1799 | int buffered; |
| 1800 | unsigned long flags; |
| 1801 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1802 | dbg("%s - port %d", __func__, port->number); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1803 | |
Ian Abbott | 2246540 | 2006-06-26 12:59:17 +0100 | [diff] [blame] | 1804 | spin_lock_irqsave(&priv->tx_lock, flags); |
| 1805 | buffered = (int)priv->tx_outstanding_bytes; |
| 1806 | spin_unlock_irqrestore(&priv->tx_lock, flags); |
| 1807 | if (buffered < 0) { |
Greg Kroah-Hartman | 194343d | 2008-08-20 16:56:34 -0700 | [diff] [blame] | 1808 | dev_err(&port->dev, "%s outstanding tx bytes is negative!\n", |
| 1809 | __func__); |
Ian Abbott | 2246540 | 2006-06-26 12:59:17 +0100 | [diff] [blame] | 1810 | buffered = 0; |
| 1811 | } |
| 1812 | return buffered; |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 1813 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1814 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 1815 | static void ftdi_read_bulk_callback(struct urb *urb) |
| 1816 | { |
Ming Lei | cdc9779 | 2008-02-24 18:41:47 +0800 | [diff] [blame] | 1817 | struct usb_serial_port *port = urb->context; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1818 | struct tty_struct *tty; |
| 1819 | struct ftdi_private *priv; |
Ian Abbott | 2246540 | 2006-06-26 12:59:17 +0100 | [diff] [blame] | 1820 | unsigned long countread; |
| 1821 | unsigned long flags; |
Greg Kroah-Hartman | 0fb0aa1 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 1822 | int status = urb->status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1823 | |
| 1824 | if (urb->number_of_packets > 0) { |
Greg Kroah-Hartman | 194343d | 2008-08-20 16:56:34 -0700 | [diff] [blame] | 1825 | dev_err(&port->dev, "%s transfer_buffer_length %d " |
| 1826 | "actual_length %d number of packets %d\n", __func__, |
| 1827 | urb->transfer_buffer_length, |
| 1828 | urb->actual_length, urb->number_of_packets); |
| 1829 | dev_err(&port->dev, "%s transfer_flags %x\n", __func__, |
| 1830 | urb->transfer_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1831 | } |
| 1832 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1833 | dbg("%s - port %d", __func__, port->number); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1834 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 1835 | if (port->port.count <= 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1836 | return; |
| 1837 | |
Alan Cox | 4a90f09 | 2008-10-13 10:39:46 +0100 | [diff] [blame] | 1838 | tty = tty_port_tty_get(&port->port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1839 | if (!tty) { |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 1840 | dbg("%s - bad tty pointer - exiting", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1841 | return; |
| 1842 | } |
| 1843 | |
| 1844 | priv = usb_get_serial_port_data(port); |
| 1845 | if (!priv) { |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1846 | dbg("%s - bad port private data pointer - exiting", __func__); |
Alan Cox | 4a90f09 | 2008-10-13 10:39:46 +0100 | [diff] [blame] | 1847 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1848 | } |
| 1849 | |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 1850 | if (urb != port->read_urb) |
Greg Kroah-Hartman | 194343d | 2008-08-20 16:56:34 -0700 | [diff] [blame] | 1851 | dev_err(&port->dev, "%s - Not my urb!\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1852 | |
Greg Kroah-Hartman | 0fb0aa1 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 1853 | if (status) { |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 1854 | /* This will happen at close every time so it is a dbg not an |
| 1855 | err */ |
| 1856 | dbg("(this is ok on close) nonzero read bulk status received: %d", status); |
Alan Cox | 4a90f09 | 2008-10-13 10:39:46 +0100 | [diff] [blame] | 1857 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1858 | } |
| 1859 | |
Ian Abbott | 2246540 | 2006-06-26 12:59:17 +0100 | [diff] [blame] | 1860 | /* count data bytes, but not status bytes */ |
| 1861 | countread = urb->actual_length; |
Julia Lawall | dfa5ec7 | 2008-03-04 15:25:11 -0800 | [diff] [blame] | 1862 | countread -= 2 * DIV_ROUND_UP(countread, PKTSZ); |
Ian Abbott | 2246540 | 2006-06-26 12:59:17 +0100 | [diff] [blame] | 1863 | spin_lock_irqsave(&priv->rx_lock, flags); |
| 1864 | priv->rx_bytes += countread; |
| 1865 | spin_unlock_irqrestore(&priv->rx_lock, flags); |
| 1866 | |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 1867 | ftdi_process_read(&priv->rx_work.work); |
Alan Cox | 4a90f09 | 2008-10-13 10:39:46 +0100 | [diff] [blame] | 1868 | out: |
| 1869 | tty_kref_put(tty); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1870 | } /* ftdi_read_bulk_callback */ |
| 1871 | |
| 1872 | |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 1873 | static void ftdi_process_read(struct work_struct *work) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1874 | { /* ftdi_process_read */ |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 1875 | struct ftdi_private *priv = |
| 1876 | container_of(work, struct ftdi_private, rx_work.work); |
| 1877 | struct usb_serial_port *port = priv->port; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1878 | struct urb *urb; |
| 1879 | struct tty_struct *tty; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1880 | char error_flag; |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1881 | unsigned char *data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1882 | |
| 1883 | int i; |
| 1884 | int result; |
| 1885 | int need_flip; |
| 1886 | int packet_offset; |
Ian Abbott | 76854ce | 2005-06-02 10:34:11 +0100 | [diff] [blame] | 1887 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1888 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1889 | dbg("%s - port %d", __func__, port->number); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1890 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 1891 | if (port->port.count <= 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1892 | return; |
| 1893 | |
Alan Cox | 4a90f09 | 2008-10-13 10:39:46 +0100 | [diff] [blame] | 1894 | tty = tty_port_tty_get(&port->port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1895 | if (!tty) { |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 1896 | dbg("%s - bad tty pointer - exiting", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1897 | return; |
| 1898 | } |
| 1899 | |
| 1900 | priv = usb_get_serial_port_data(port); |
| 1901 | if (!priv) { |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1902 | dbg("%s - bad port private data pointer - exiting", __func__); |
Alan Cox | 4a90f09 | 2008-10-13 10:39:46 +0100 | [diff] [blame] | 1903 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1904 | } |
| 1905 | |
| 1906 | urb = port->read_urb; |
| 1907 | if (!urb) { |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1908 | dbg("%s - bad read_urb pointer - exiting", __func__); |
Alan Cox | 4a90f09 | 2008-10-13 10:39:46 +0100 | [diff] [blame] | 1909 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1910 | } |
| 1911 | |
| 1912 | data = urb->transfer_buffer; |
| 1913 | |
Ian Abbott | 76854ce | 2005-06-02 10:34:11 +0100 | [diff] [blame] | 1914 | if (priv->rx_processed) { |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1915 | dbg("%s - already processed: %d bytes, %d remain", __func__, |
Ian Abbott | 76854ce | 2005-06-02 10:34:11 +0100 | [diff] [blame] | 1916 | priv->rx_processed, |
| 1917 | urb->actual_length - priv->rx_processed); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1918 | } else { |
Ian Abbott | 76854ce | 2005-06-02 10:34:11 +0100 | [diff] [blame] | 1919 | /* The first two bytes of every read packet are status */ |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 1920 | if (urb->actual_length > 2) |
| 1921 | usb_serial_debug_data(debug, &port->dev, __func__, |
| 1922 | urb->actual_length, data); |
| 1923 | else |
| 1924 | dbg("Status only: %03oo %03oo", data[0], data[1]); |
Ian Abbott | 76854ce | 2005-06-02 10:34:11 +0100 | [diff] [blame] | 1925 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1926 | |
| 1927 | |
| 1928 | /* TO DO -- check for hung up line and handle appropriately: */ |
| 1929 | /* send hangup */ |
| 1930 | /* See acm.c - you do a tty_hangup - eg tty_hangup(tty) */ |
| 1931 | /* if CD is dropped and the line is not CLOCAL then we should hangup */ |
| 1932 | |
| 1933 | need_flip = 0; |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 1934 | for (packet_offset = priv->rx_processed; |
| 1935 | packet_offset < urb->actual_length; packet_offset += PKTSZ) { |
Ian Abbott | 76854ce | 2005-06-02 10:34:11 +0100 | [diff] [blame] | 1936 | int length; |
| 1937 | |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 1938 | /* Compare new line status to the old one, signal if different/ |
| 1939 | N.B. packet may be processed more than once, but differences |
| 1940 | are only processed once. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1941 | if (priv != NULL) { |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 1942 | char new_status = data[packet_offset + 0] & |
| 1943 | FTDI_STATUS_B0_MASK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1944 | if (new_status != priv->prev_status) { |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 1945 | priv->diff_status |= |
| 1946 | new_status ^ priv->prev_status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1947 | wake_up_interruptible(&priv->delta_msr_wait); |
| 1948 | priv->prev_status = new_status; |
| 1949 | } |
| 1950 | } |
| 1951 | |
Ian Abbott | 76854ce | 2005-06-02 10:34:11 +0100 | [diff] [blame] | 1952 | length = min(PKTSZ, urb->actual_length-packet_offset)-2; |
| 1953 | if (length < 0) { |
Greg Kroah-Hartman | 194343d | 2008-08-20 16:56:34 -0700 | [diff] [blame] | 1954 | dev_err(&port->dev, "%s - bad packet length: %d\n", |
| 1955 | __func__, length+2); |
Ian Abbott | 76854ce | 2005-06-02 10:34:11 +0100 | [diff] [blame] | 1956 | length = 0; |
| 1957 | } |
| 1958 | |
Ian Abbott | 76854ce | 2005-06-02 10:34:11 +0100 | [diff] [blame] | 1959 | if (priv->rx_flags & THROTTLED) { |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1960 | dbg("%s - throttled", __func__); |
Ian Abbott | 76854ce | 2005-06-02 10:34:11 +0100 | [diff] [blame] | 1961 | break; |
| 1962 | } |
Alan Cox | 33f0f88 | 2006-01-09 20:54:13 -0800 | [diff] [blame] | 1963 | if (tty_buffer_request_room(tty, length) < length) { |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 1964 | /* break out & wait for throttling/unthrottling to |
| 1965 | happen */ |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1966 | dbg("%s - receive room low", __func__); |
Ian Abbott | 76854ce | 2005-06-02 10:34:11 +0100 | [diff] [blame] | 1967 | break; |
| 1968 | } |
| 1969 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1970 | /* Handle errors and break */ |
| 1971 | error_flag = TTY_NORMAL; |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 1972 | /* Although the device uses a bitmask and hence can have |
| 1973 | multiple errors on a packet - the order here sets the |
| 1974 | priority the error is returned to the tty layer */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1975 | |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 1976 | if (data[packet_offset+1] & FTDI_RS_OE) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1977 | error_flag = TTY_OVERRUN; |
| 1978 | dbg("OVERRRUN error"); |
| 1979 | } |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 1980 | if (data[packet_offset+1] & FTDI_RS_BI) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1981 | error_flag = TTY_BREAK; |
| 1982 | dbg("BREAK received"); |
| 1983 | } |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 1984 | if (data[packet_offset+1] & FTDI_RS_PE) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1985 | error_flag = TTY_PARITY; |
| 1986 | dbg("PARITY error"); |
| 1987 | } |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 1988 | if (data[packet_offset+1] & FTDI_RS_FE) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1989 | error_flag = TTY_FRAME; |
| 1990 | dbg("FRAMING error"); |
| 1991 | } |
Ian Abbott | 76854ce | 2005-06-02 10:34:11 +0100 | [diff] [blame] | 1992 | if (length > 0) { |
| 1993 | for (i = 2; i < length+2; i++) { |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 1994 | /* Note that the error flag is duplicated for |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1995 | every character received since we don't know |
| 1996 | which character it applied to */ |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 1997 | tty_insert_flip_char(tty, |
| 1998 | data[packet_offset + i], error_flag); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1999 | } |
| 2000 | need_flip = 1; |
| 2001 | } |
| 2002 | |
| 2003 | #ifdef NOT_CORRECT_BUT_KEEPING_IT_FOR_NOW |
| 2004 | /* if a parity error is detected you get status packets forever |
| 2005 | until a character is sent without a parity error. |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 2006 | This doesn't work well since the application receives a |
| 2007 | never ending stream of bad data - even though new data |
| 2008 | hasn't been sent. Therefore I (bill) have taken this out. |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 2009 | However - this might make sense for framing errors and so on |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2010 | so I am leaving the code in for now. |
| 2011 | */ |
| 2012 | else { |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 2013 | if (error_flag != TTY_NORMAL) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2014 | dbg("error_flag is not normal"); |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 2015 | /* In this case it is just status - if that is |
| 2016 | an error send a bad character */ |
| 2017 | if (tty->flip.count >= TTY_FLIPBUF_SIZE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2018 | tty_flip_buffer_push(tty); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2019 | tty_insert_flip_char(tty, 0xff, error_flag); |
| 2020 | need_flip = 1; |
| 2021 | } |
| 2022 | } |
| 2023 | #endif |
| 2024 | } /* "for(packet_offset=0..." */ |
| 2025 | |
| 2026 | /* Low latency */ |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 2027 | if (need_flip) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2028 | tty_flip_buffer_push(tty); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2029 | |
Ian Abbott | 76854ce | 2005-06-02 10:34:11 +0100 | [diff] [blame] | 2030 | if (packet_offset < urb->actual_length) { |
| 2031 | /* not completely processed - record progress */ |
| 2032 | priv->rx_processed = packet_offset; |
| 2033 | dbg("%s - incomplete, %d bytes processed, %d remain", |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 2034 | __func__, packet_offset, |
Ian Abbott | 76854ce | 2005-06-02 10:34:11 +0100 | [diff] [blame] | 2035 | urb->actual_length - packet_offset); |
| 2036 | /* check if we were throttled while processing */ |
| 2037 | spin_lock_irqsave(&priv->rx_lock, flags); |
| 2038 | if (priv->rx_flags & THROTTLED) { |
| 2039 | priv->rx_flags |= ACTUALLY_THROTTLED; |
| 2040 | spin_unlock_irqrestore(&priv->rx_lock, flags); |
| 2041 | dbg("%s - deferring remainder until unthrottled", |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 2042 | __func__); |
Jim Paris | a9fec71 | 2009-01-15 13:31:07 +0000 | [diff] [blame] | 2043 | goto out; |
Ian Abbott | 76854ce | 2005-06-02 10:34:11 +0100 | [diff] [blame] | 2044 | } |
| 2045 | spin_unlock_irqrestore(&priv->rx_lock, flags); |
| 2046 | /* if the port is closed stop trying to read */ |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 2047 | if (port->port.count > 0) |
Ian Abbott | 76854ce | 2005-06-02 10:34:11 +0100 | [diff] [blame] | 2048 | /* delay processing of remainder */ |
| 2049 | schedule_delayed_work(&priv->rx_work, 1); |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 2050 | else |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 2051 | dbg("%s - port is closed", __func__); |
Alan Cox | 4a90f09 | 2008-10-13 10:39:46 +0100 | [diff] [blame] | 2052 | goto out; |
Ian Abbott | 76854ce | 2005-06-02 10:34:11 +0100 | [diff] [blame] | 2053 | } |
| 2054 | |
| 2055 | /* urb is completely processed */ |
| 2056 | priv->rx_processed = 0; |
| 2057 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2058 | /* if the port is closed stop trying to read */ |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 2059 | if (port->port.count > 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2060 | /* Continue trying to always read */ |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 2061 | usb_fill_bulk_urb(port->read_urb, port->serial->dev, |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 2062 | usb_rcvbulkpipe(port->serial->dev, |
| 2063 | port->bulk_in_endpointAddress), |
| 2064 | port->read_urb->transfer_buffer, |
| 2065 | port->read_urb->transfer_buffer_length, |
| 2066 | ftdi_read_bulk_callback, port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2067 | |
| 2068 | result = usb_submit_urb(port->read_urb, GFP_ATOMIC); |
| 2069 | if (result) |
Greg Kroah-Hartman | 194343d | 2008-08-20 16:56:34 -0700 | [diff] [blame] | 2070 | dev_err(&port->dev, |
| 2071 | "%s - failed resubmitting read urb, error %d\n", |
| 2072 | __func__, result); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2073 | } |
Alan Cox | 4a90f09 | 2008-10-13 10:39:46 +0100 | [diff] [blame] | 2074 | out: |
| 2075 | tty_kref_put(tty); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2076 | } /* ftdi_process_read */ |
| 2077 | |
| 2078 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 2079 | static void ftdi_break_ctl(struct tty_struct *tty, int break_state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2080 | { |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 2081 | struct usb_serial_port *port = tty->driver_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2082 | struct ftdi_private *priv = usb_get_serial_port_data(port); |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 2083 | __u16 urb_value = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2084 | char buf[1]; |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 2085 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2086 | /* break_state = -1 to turn on break, and 0 to turn off break */ |
| 2087 | /* see drivers/char/tty_io.c to see it used */ |
| 2088 | /* last_set_data_urb_value NEVER has the break bit set in it */ |
| 2089 | |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 2090 | if (break_state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2091 | urb_value = priv->last_set_data_urb_value | FTDI_SIO_SET_BREAK; |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 2092 | else |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 2093 | urb_value = priv->last_set_data_urb_value; |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 2094 | |
| 2095 | if (usb_control_msg(port->serial->dev, |
| 2096 | usb_sndctrlpipe(port->serial->dev, 0), |
| 2097 | FTDI_SIO_SET_DATA_REQUEST, |
| 2098 | FTDI_SIO_SET_DATA_REQUEST_TYPE, |
| 2099 | urb_value , priv->interface, |
| 2100 | buf, 0, WDR_TIMEOUT) < 0) { |
Greg Kroah-Hartman | 194343d | 2008-08-20 16:56:34 -0700 | [diff] [blame] | 2101 | dev_err(&port->dev, "%s FAILED to enable/disable break state " |
| 2102 | "(state was %d)\n", __func__, break_state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2103 | } |
| 2104 | |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 2105 | dbg("%s break state is %d - urb is %d", __func__, |
| 2106 | break_state, urb_value); |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 2107 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2108 | } |
| 2109 | |
| 2110 | |
| 2111 | /* old_termios contains the original termios settings and tty->termios contains |
| 2112 | * the new setting to be used |
| 2113 | * WARNING: set_termios calls this with old_termios in kernel space |
| 2114 | */ |
| 2115 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 2116 | static void ftdi_set_termios(struct tty_struct *tty, |
| 2117 | struct usb_serial_port *port, struct ktermios *old_termios) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2118 | { /* ftdi_termios */ |
| 2119 | struct usb_device *dev = port->serial->dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2120 | struct ftdi_private *priv = usb_get_serial_port_data(port); |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 2121 | struct ktermios *termios = tty->termios; |
Alan Cox | 669a6db | 2007-10-18 01:24:24 -0700 | [diff] [blame] | 2122 | unsigned int cflag = termios->c_cflag; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2123 | __u16 urb_value; /* will hold the new flags */ |
| 2124 | char buf[1]; /* Perhaps I should dynamically alloc this? */ |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 2125 | |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 2126 | /* Added for xon/xoff support */ |
Alan Cox | 669a6db | 2007-10-18 01:24:24 -0700 | [diff] [blame] | 2127 | unsigned int iflag = termios->c_iflag; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2128 | unsigned char vstop; |
| 2129 | unsigned char vstart; |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 2130 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 2131 | dbg("%s", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2132 | |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 2133 | /* Force baud rate if this device requires it, unless it is set to |
| 2134 | B0. */ |
Alan Cox | 669a6db | 2007-10-18 01:24:24 -0700 | [diff] [blame] | 2135 | if (priv->force_baud && ((termios->c_cflag & CBAUD) != B0)) { |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 2136 | dbg("%s: forcing baud rate for this device", __func__); |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 2137 | tty_encode_baud_rate(tty, priv->force_baud, |
Andrew Morton | bd5e47c | 2007-10-18 01:24:25 -0700 | [diff] [blame] | 2138 | priv->force_baud); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2139 | } |
| 2140 | |
| 2141 | /* Force RTS-CTS if this device requires it. */ |
| 2142 | if (priv->force_rtscts) { |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 2143 | dbg("%s: forcing rtscts for this device", __func__); |
Alan Cox | 669a6db | 2007-10-18 01:24:24 -0700 | [diff] [blame] | 2144 | termios->c_cflag |= CRTSCTS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2145 | } |
| 2146 | |
Alan Cox | 669a6db | 2007-10-18 01:24:24 -0700 | [diff] [blame] | 2147 | cflag = termios->c_cflag; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2148 | |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 2149 | /* FIXME -For this cut I don't care if the line is really changing or |
| 2150 | not - so just do the change regardless - should be able to |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2151 | compare old_termios and tty->termios */ |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 2152 | /* NOTE These routines can get interrupted by |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 2153 | ftdi_sio_read_bulk_callback - need to examine what this means - |
| 2154 | don't see any problems yet */ |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 2155 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2156 | /* Set number of data bits, parity, stop bits */ |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 2157 | |
Alan Cox | 669a6db | 2007-10-18 01:24:24 -0700 | [diff] [blame] | 2158 | termios->c_cflag &= ~CMSPAR; |
| 2159 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2160 | urb_value = 0; |
| 2161 | urb_value |= (cflag & CSTOPB ? FTDI_SIO_SET_DATA_STOP_BITS_2 : |
| 2162 | FTDI_SIO_SET_DATA_STOP_BITS_1); |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 2163 | urb_value |= (cflag & PARENB ? |
| 2164 | (cflag & PARODD ? FTDI_SIO_SET_DATA_PARITY_ODD : |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2165 | FTDI_SIO_SET_DATA_PARITY_EVEN) : |
| 2166 | FTDI_SIO_SET_DATA_PARITY_NONE); |
| 2167 | if (cflag & CSIZE) { |
| 2168 | switch (cflag & CSIZE) { |
| 2169 | case CS5: urb_value |= 5; dbg("Setting CS5"); break; |
| 2170 | case CS6: urb_value |= 6; dbg("Setting CS6"); break; |
| 2171 | case CS7: urb_value |= 7; dbg("Setting CS7"); break; |
| 2172 | case CS8: urb_value |= 8; dbg("Setting CS8"); break; |
| 2173 | default: |
Greg Kroah-Hartman | 194343d | 2008-08-20 16:56:34 -0700 | [diff] [blame] | 2174 | dev_err(&port->dev, "CSIZE was set but not CS5-CS8\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2175 | } |
| 2176 | } |
| 2177 | |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 2178 | /* This is needed by the break command since it uses the same command |
| 2179 | - but is or'ed with this value */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2180 | priv->last_set_data_urb_value = urb_value; |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 2181 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2182 | if (usb_control_msg(dev, usb_sndctrlpipe(dev, 0), |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 2183 | FTDI_SIO_SET_DATA_REQUEST, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2184 | FTDI_SIO_SET_DATA_REQUEST_TYPE, |
| 2185 | urb_value , priv->interface, |
Ian Abbott | 279e154 | 2005-07-29 12:16:52 -0700 | [diff] [blame] | 2186 | buf, 0, WDR_SHORT_TIMEOUT) < 0) { |
Greg Kroah-Hartman | 194343d | 2008-08-20 16:56:34 -0700 | [diff] [blame] | 2187 | dev_err(&port->dev, "%s FAILED to set " |
| 2188 | "databits/stopbits/parity\n", __func__); |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 2189 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2190 | |
| 2191 | /* Now do the baudrate */ |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 2192 | if ((cflag & CBAUD) == B0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2193 | /* Disable flow control */ |
| 2194 | if (usb_control_msg(dev, usb_sndctrlpipe(dev, 0), |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 2195 | FTDI_SIO_SET_FLOW_CTRL_REQUEST, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2196 | FTDI_SIO_SET_FLOW_CTRL_REQUEST_TYPE, |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 2197 | 0, priv->interface, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2198 | buf, 0, WDR_TIMEOUT) < 0) { |
Greg Kroah-Hartman | 194343d | 2008-08-20 16:56:34 -0700 | [diff] [blame] | 2199 | dev_err(&port->dev, |
| 2200 | "%s error from disable flowcontrol urb\n", |
| 2201 | __func__); |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 2202 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2203 | /* Drop RTS and DTR */ |
Ian Abbott | 74ede0f | 2005-07-29 12:16:41 -0700 | [diff] [blame] | 2204 | clear_mctrl(port, TIOCM_DTR | TIOCM_RTS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2205 | } else { |
| 2206 | /* set the baudrate determined before */ |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 2207 | if (change_speed(tty, port)) |
Greg Kroah-Hartman | 194343d | 2008-08-20 16:56:34 -0700 | [diff] [blame] | 2208 | dev_err(&port->dev, "%s urb failed to set baudrate\n", |
| 2209 | __func__); |
Peter Favrholdt | 72a755f | 2005-09-22 00:48:49 -0700 | [diff] [blame] | 2210 | /* Ensure RTS and DTR are raised when baudrate changed from 0 */ |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 2211 | if (!old_termios || (old_termios->c_cflag & CBAUD) == B0) |
Peter Favrholdt | 72a755f | 2005-09-22 00:48:49 -0700 | [diff] [blame] | 2212 | set_mctrl(port, TIOCM_DTR | TIOCM_RTS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2213 | } |
| 2214 | |
| 2215 | /* Set flow control */ |
| 2216 | /* Note device also supports DTR/CD (ugh) and Xon/Xoff in hardware */ |
| 2217 | if (cflag & CRTSCTS) { |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 2218 | dbg("%s Setting to CRTSCTS flow control", __func__); |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 2219 | if (usb_control_msg(dev, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2220 | usb_sndctrlpipe(dev, 0), |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 2221 | FTDI_SIO_SET_FLOW_CTRL_REQUEST, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2222 | FTDI_SIO_SET_FLOW_CTRL_REQUEST_TYPE, |
| 2223 | 0 , (FTDI_SIO_RTS_CTS_HS | priv->interface), |
| 2224 | buf, 0, WDR_TIMEOUT) < 0) { |
Greg Kroah-Hartman | 194343d | 2008-08-20 16:56:34 -0700 | [diff] [blame] | 2225 | dev_err(&port->dev, |
| 2226 | "urb failed to set to rts/cts flow control\n"); |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 2227 | } |
| 2228 | |
| 2229 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2230 | /* |
| 2231 | * Xon/Xoff code |
| 2232 | * |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 2233 | * Check the IXOFF status in the iflag component of the |
| 2234 | * termios structure. If IXOFF is not set, the pre-xon/xoff |
| 2235 | * code is executed. |
| 2236 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2237 | if (iflag & IXOFF) { |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 2238 | dbg("%s request to enable xonxoff iflag=%04x", |
| 2239 | __func__, iflag); |
| 2240 | /* Try to enable the XON/XOFF on the ftdi_sio |
| 2241 | * Set the vstart and vstop -- could have been done up |
| 2242 | * above where a lot of other dereferencing is done but |
| 2243 | * that would be very inefficient as vstart and vstop |
| 2244 | * are not always needed. |
| 2245 | */ |
Alan Cox | 669a6db | 2007-10-18 01:24:24 -0700 | [diff] [blame] | 2246 | vstart = termios->c_cc[VSTART]; |
| 2247 | vstop = termios->c_cc[VSTOP]; |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 2248 | urb_value = (vstop << 8) | (vstart); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2249 | |
| 2250 | if (usb_control_msg(dev, |
| 2251 | usb_sndctrlpipe(dev, 0), |
| 2252 | FTDI_SIO_SET_FLOW_CTRL_REQUEST, |
| 2253 | FTDI_SIO_SET_FLOW_CTRL_REQUEST_TYPE, |
| 2254 | urb_value , (FTDI_SIO_XON_XOFF_HS |
| 2255 | | priv->interface), |
| 2256 | buf, 0, WDR_TIMEOUT) < 0) { |
Greg Kroah-Hartman | 194343d | 2008-08-20 16:56:34 -0700 | [diff] [blame] | 2257 | dev_err(&port->dev, "urb failed to set to " |
| 2258 | "xon/xoff flow control\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2259 | } |
| 2260 | } else { |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 2261 | /* else clause to only run if cflag ! CRTSCTS and iflag |
| 2262 | * ! XOFF. CHECKME Assuming XON/XOFF handled by tty |
| 2263 | * stack - not by device */ |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 2264 | dbg("%s Turning off hardware flow control", __func__); |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 2265 | if (usb_control_msg(dev, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2266 | usb_sndctrlpipe(dev, 0), |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 2267 | FTDI_SIO_SET_FLOW_CTRL_REQUEST, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2268 | FTDI_SIO_SET_FLOW_CTRL_REQUEST_TYPE, |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 2269 | 0, priv->interface, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2270 | buf, 0, WDR_TIMEOUT) < 0) { |
Greg Kroah-Hartman | 194343d | 2008-08-20 16:56:34 -0700 | [diff] [blame] | 2271 | dev_err(&port->dev, |
| 2272 | "urb failed to clear flow control\n"); |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 2273 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2274 | } |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 2275 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2276 | } |
| 2277 | return; |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 2278 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2279 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 2280 | static int ftdi_tiocmget(struct tty_struct *tty, struct file *file) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2281 | { |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 2282 | struct usb_serial_port *port = tty->driver_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2283 | struct ftdi_private *priv = usb_get_serial_port_data(port); |
| 2284 | unsigned char buf[2]; |
| 2285 | int ret; |
| 2286 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 2287 | dbg("%s TIOCMGET", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2288 | switch (priv->chip_type) { |
| 2289 | case SIO: |
| 2290 | /* Request the status from the device */ |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 2291 | ret = usb_control_msg(port->serial->dev, |
| 2292 | usb_rcvctrlpipe(port->serial->dev, 0), |
| 2293 | FTDI_SIO_GET_MODEM_STATUS_REQUEST, |
| 2294 | FTDI_SIO_GET_MODEM_STATUS_REQUEST_TYPE, |
| 2295 | 0, 0, |
| 2296 | buf, 1, WDR_TIMEOUT); |
| 2297 | if (ret < 0) { |
Alan Cox | 43b11d3 | 2008-10-13 10:36:00 +0100 | [diff] [blame] | 2298 | dbg("%s Could not get modem status of device - err: %d", __func__, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2299 | ret); |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 2300 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2301 | } |
| 2302 | break; |
| 2303 | case FT8U232AM: |
| 2304 | case FT232BM: |
| 2305 | case FT2232C: |
Andrew M. Bishop | ed6e528 | 2007-08-21 19:08:56 +0100 | [diff] [blame] | 2306 | case FT232RL: |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 2307 | /* the 8U232AM returns a two byte value (the sio is a 1 byte |
| 2308 | value) - in the same format as the data returned from the in |
| 2309 | point */ |
| 2310 | ret = usb_control_msg(port->serial->dev, |
| 2311 | usb_rcvctrlpipe(port->serial->dev, 0), |
| 2312 | FTDI_SIO_GET_MODEM_STATUS_REQUEST, |
| 2313 | FTDI_SIO_GET_MODEM_STATUS_REQUEST_TYPE, |
| 2314 | 0, priv->interface, |
| 2315 | buf, 2, WDR_TIMEOUT); |
| 2316 | if (ret < 0) { |
Alan Cox | 43b11d3 | 2008-10-13 10:36:00 +0100 | [diff] [blame] | 2317 | dbg("%s Could not get modem status of device - err: %d", __func__, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2318 | ret); |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 2319 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2320 | } |
| 2321 | break; |
| 2322 | default: |
| 2323 | return -EFAULT; |
| 2324 | break; |
| 2325 | } |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 2326 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2327 | return (buf[0] & FTDI_SIO_DSR_MASK ? TIOCM_DSR : 0) | |
| 2328 | (buf[0] & FTDI_SIO_CTS_MASK ? TIOCM_CTS : 0) | |
| 2329 | (buf[0] & FTDI_SIO_RI_MASK ? TIOCM_RI : 0) | |
| 2330 | (buf[0] & FTDI_SIO_RLSD_MASK ? TIOCM_CD : 0) | |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 2331 | priv->last_dtr_rts; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2332 | } |
| 2333 | |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 2334 | static int ftdi_tiocmset(struct tty_struct *tty, struct file *file, |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 2335 | unsigned int set, unsigned int clear) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2336 | { |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 2337 | struct usb_serial_port *port = tty->driver_data; |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 2338 | dbg("%s TIOCMSET", __func__); |
Ian Abbott | 74ede0f | 2005-07-29 12:16:41 -0700 | [diff] [blame] | 2339 | return update_mctrl(port, set, clear); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2340 | } |
| 2341 | |
| 2342 | |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 2343 | static int ftdi_ioctl(struct tty_struct *tty, struct file *file, |
| 2344 | unsigned int cmd, unsigned long arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2345 | { |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 2346 | struct usb_serial_port *port = tty->driver_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2347 | struct ftdi_private *priv = usb_get_serial_port_data(port); |
| 2348 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 2349 | dbg("%s cmd 0x%04x", __func__, cmd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2350 | |
| 2351 | /* Based on code from acm.c and others */ |
| 2352 | switch (cmd) { |
| 2353 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2354 | case TIOCGSERIAL: /* gets serial port data */ |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 2355 | return get_serial_info(port, |
| 2356 | (struct serial_struct __user *) arg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2357 | |
| 2358 | case TIOCSSERIAL: /* sets serial port data */ |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 2359 | return set_serial_info(tty, port, |
| 2360 | (struct serial_struct __user *) arg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2361 | |
| 2362 | /* |
| 2363 | * Wait for any of the 4 modem inputs (DCD,RI,DSR,CTS) to change |
| 2364 | * - mask passed in arg for lines of interest |
| 2365 | * (use |'ed TIOCM_RNG/DSR/CD/CTS for masking) |
| 2366 | * Caller should use TIOCGICOUNT to see which one it was. |
| 2367 | * |
| 2368 | * This code is borrowed from linux/drivers/char/serial.c |
| 2369 | */ |
| 2370 | case TIOCMIWAIT: |
| 2371 | while (priv != NULL) { |
| 2372 | interruptible_sleep_on(&priv->delta_msr_wait); |
| 2373 | /* see if a signal did it */ |
| 2374 | if (signal_pending(current)) |
| 2375 | return -ERESTARTSYS; |
| 2376 | else { |
| 2377 | char diff = priv->diff_status; |
| 2378 | |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 2379 | if (diff == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2380 | return -EIO; /* no change => error */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2381 | |
| 2382 | /* Consume all events */ |
| 2383 | priv->diff_status = 0; |
| 2384 | |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 2385 | /* Return 0 if caller wanted to know about |
| 2386 | these bits */ |
| 2387 | if (((arg & TIOCM_RNG) && (diff & FTDI_RS0_RI)) || |
| 2388 | ((arg & TIOCM_DSR) && (diff & FTDI_RS0_DSR)) || |
| 2389 | ((arg & TIOCM_CD) && (diff & FTDI_RS0_RLSD)) || |
| 2390 | ((arg & TIOCM_CTS) && (diff & FTDI_RS0_CTS))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2391 | return 0; |
| 2392 | } |
| 2393 | /* |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 2394 | * Otherwise caller can't care less about what |
| 2395 | * happened,and so we continue to wait for more |
| 2396 | * events. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2397 | */ |
| 2398 | } |
| 2399 | } |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 2400 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2401 | default: |
| 2402 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2403 | } |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 2404 | /* This is not necessarily an error - turns out the higher layers |
| 2405 | * will do some ioctls themselves (see comment above) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2406 | */ |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 2407 | dbg("%s arg not supported - it was 0x%04x - check /usr/include/asm/ioctls.h", __func__, cmd); |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 2408 | return -ENOIOCTLCMD; |
| 2409 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2410 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 2411 | static void ftdi_throttle(struct tty_struct *tty) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2412 | { |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 2413 | struct usb_serial_port *port = tty->driver_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2414 | struct ftdi_private *priv = usb_get_serial_port_data(port); |
| 2415 | unsigned long flags; |
| 2416 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 2417 | dbg("%s - port %d", __func__, port->number); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2418 | |
| 2419 | spin_lock_irqsave(&priv->rx_lock, flags); |
| 2420 | priv->rx_flags |= THROTTLED; |
| 2421 | spin_unlock_irqrestore(&priv->rx_lock, flags); |
| 2422 | } |
| 2423 | |
| 2424 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 2425 | static void ftdi_unthrottle(struct tty_struct *tty) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2426 | { |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 2427 | struct usb_serial_port *port = tty->driver_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2428 | struct ftdi_private *priv = usb_get_serial_port_data(port); |
| 2429 | int actually_throttled; |
| 2430 | unsigned long flags; |
| 2431 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 2432 | dbg("%s - port %d", __func__, port->number); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2433 | |
| 2434 | spin_lock_irqsave(&priv->rx_lock, flags); |
| 2435 | actually_throttled = priv->rx_flags & ACTUALLY_THROTTLED; |
| 2436 | priv->rx_flags &= ~(THROTTLED | ACTUALLY_THROTTLED); |
| 2437 | spin_unlock_irqrestore(&priv->rx_lock, flags); |
| 2438 | |
| 2439 | if (actually_throttled) |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 2440 | schedule_delayed_work(&priv->rx_work, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2441 | } |
| 2442 | |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 2443 | static int __init ftdi_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2444 | { |
| 2445 | int retval; |
| 2446 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 2447 | dbg("%s", __func__); |
Ian Abbott | fdcb0a0 | 2005-07-28 18:40:32 +0100 | [diff] [blame] | 2448 | if (vendor > 0 && product > 0) { |
| 2449 | /* Add user specified VID/PID to reserved element of table. */ |
| 2450 | int i; |
| 2451 | for (i = 0; id_table_combined[i].idVendor; i++) |
| 2452 | ; |
| 2453 | id_table_combined[i].match_flags = USB_DEVICE_ID_MATCH_DEVICE; |
| 2454 | id_table_combined[i].idVendor = vendor; |
| 2455 | id_table_combined[i].idProduct = product; |
| 2456 | } |
Ian Abbott | 8f977e4 | 2005-06-20 16:45:42 +0100 | [diff] [blame] | 2457 | retval = usb_serial_register(&ftdi_sio_device); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2458 | if (retval) |
Ian Abbott | 8f977e4 | 2005-06-20 16:45:42 +0100 | [diff] [blame] | 2459 | goto failed_sio_register; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2460 | retval = usb_register(&ftdi_driver); |
David Brownell | 5c09d14 | 2006-10-13 15:57:58 -0700 | [diff] [blame] | 2461 | if (retval) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2462 | goto failed_usb_register; |
| 2463 | |
Greg Kroah-Hartman | c197a8d | 2008-08-18 13:21:04 -0700 | [diff] [blame] | 2464 | printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_VERSION ":" |
| 2465 | DRIVER_DESC "\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2466 | return 0; |
| 2467 | failed_usb_register: |
Ian Abbott | 8f977e4 | 2005-06-20 16:45:42 +0100 | [diff] [blame] | 2468 | usb_serial_deregister(&ftdi_sio_device); |
| 2469 | failed_sio_register: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2470 | return retval; |
| 2471 | } |
| 2472 | |
| 2473 | |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 2474 | static void __exit ftdi_exit(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2475 | { |
| 2476 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 2477 | dbg("%s", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2478 | |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 2479 | usb_deregister(&ftdi_driver); |
| 2480 | usb_serial_deregister(&ftdi_sio_device); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2481 | |
| 2482 | } |
| 2483 | |
| 2484 | |
| 2485 | module_init(ftdi_init); |
| 2486 | module_exit(ftdi_exit); |
| 2487 | |
Alan Cox | 464cbb2 | 2008-07-22 11:11:23 +0100 | [diff] [blame] | 2488 | MODULE_AUTHOR(DRIVER_AUTHOR); |
| 2489 | MODULE_DESCRIPTION(DRIVER_DESC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2490 | MODULE_LICENSE("GPL"); |
| 2491 | |
| 2492 | module_param(debug, bool, S_IRUGO | S_IWUSR); |
| 2493 | MODULE_PARM_DESC(debug, "Debug enabled or not"); |
Ian Abbott | fdcb0a0 | 2005-07-28 18:40:32 +0100 | [diff] [blame] | 2494 | module_param(vendor, ushort, 0); |
| 2495 | MODULE_PARM_DESC(vendor, "User specified vendor ID (default=" |
| 2496 | __MODULE_STRING(FTDI_VID)")"); |
| 2497 | module_param(product, ushort, 0); |
Paulius Zaleckas | 6826504 | 2008-09-10 17:18:46 +0300 | [diff] [blame] | 2498 | MODULE_PARM_DESC(product, "User specified product ID"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2499 | |