Skip to content

Commit 7138143

Browse files
Gomella, Andrew (NIH/NHLBI) [F]gregkh
authored andcommitted
USB: ftdi_sio: Add support for Newport CONEX motor drivers
Here are two more devices that use FTDI USB-to-serial chips with new product ID's. The devices are the Newport Conex-AGP and Conex-CC motor controllers. (http://www.newport.com/CONEX-AGP-Integrated-Piezo-Motor-Rotation-Stages-/987623/1033/info.aspx) (http://www.newport.com/CONEX-CC-DC-Servo-Controller-Actuators/934114/1033/info.aspx) usb-devices command yields: P: Vendor=104d ProdID=3002 Rev=06.00 S: Manufacturer=Newport S: Product=CONEX-CC as well as P: Vendor=104d ProdID=3006 Rev=06.00 S: Manufacturer=Newport S: Product=CONEX-AGP Signed-off-by: Andrew Gomella <andrew.gomella@nih.gov> Cc: stable <stable@vger.kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent 49c6e37 commit 7138143

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

drivers/usb/serial/ftdi_sio.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,8 @@ static struct usb_device_id id_table_combined [] = {
189189
{ USB_DEVICE(FTDI_VID, FTDI_OPENDCC_GBM_PID) },
190190
{ USB_DEVICE(FTDI_VID, FTDI_OPENDCC_GBM_BOOST_PID) },
191191
{ USB_DEVICE(NEWPORT_VID, NEWPORT_AGILIS_PID) },
192+
{ USB_DEVICE(NEWPORT_VID, NEWPORT_CONEX_CC_PID) },
193+
{ USB_DEVICE(NEWPORT_VID, NEWPORT_CONEX_AGP_PID) },
192194
{ USB_DEVICE(INTERBIOMETRICS_VID, INTERBIOMETRICS_IOBOARD_PID) },
193195
{ USB_DEVICE(INTERBIOMETRICS_VID, INTERBIOMETRICS_MINI_IOBOARD_PID) },
194196
{ USB_DEVICE(FTDI_VID, FTDI_SPROG_II) },

drivers/usb/serial/ftdi_sio_ids.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -772,6 +772,8 @@
772772
*/
773773
#define NEWPORT_VID 0x104D
774774
#define NEWPORT_AGILIS_PID 0x3000
775+
#define NEWPORT_CONEX_CC_PID 0x3002
776+
#define NEWPORT_CONEX_AGP_PID 0x3006
775777

776778
/* Interbiometrics USB I/O Board */
777779
/* Developed for Interbiometrics by Rudolf Gugler */

0 commit comments

Comments
 (0)