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