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