Skip to content

Commit 9bfef72

Browse files
dougg3jhovold
authored andcommitted
USB: serial: ftdi_sio: add support for TI CC3200 LaunchPad
This patch adds support for the TI CC3200 LaunchPad board, which uses a custom USB vendor ID and product ID. Channel A is used for JTAG, and channel B is used for a UART. Signed-off-by: Doug Brown <doug@schmorgal.com> Cc: stable <stable@vger.kernel.org> Signed-off-by: Johan Hovold <johan@kernel.org>
1 parent bc33b0c commit 9bfef72

2 files changed

Lines changed: 8 additions & 0 deletions

File tree

drivers/usb/serial/ftdi_sio.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1012,6 +1012,8 @@ static const struct usb_device_id id_table_combined[] = {
10121012
{ USB_DEVICE(ICPDAS_VID, ICPDAS_I7561U_PID) },
10131013
{ USB_DEVICE(ICPDAS_VID, ICPDAS_I7563U_PID) },
10141014
{ USB_DEVICE(WICED_VID, WICED_USB20706V2_PID) },
1015+
{ USB_DEVICE(TI_VID, TI_CC3200_LAUNCHPAD_PID),
1016+
.driver_info = (kernel_ulong_t)&ftdi_jtag_quirk },
10151017
{ } /* Terminating entry */
10161018
};
10171019

drivers/usb/serial/ftdi_sio_ids.h

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -595,6 +595,12 @@
595595
#define ATMEL_VID 0x03eb /* Vendor ID */
596596
#define STK541_PID 0x2109 /* Zigbee Controller */
597597

598+
/*
599+
* Texas Instruments
600+
*/
601+
#define TI_VID 0x0451
602+
#define TI_CC3200_LAUNCHPAD_PID 0xC32A /* SimpleLink Wi-Fi CC3200 LaunchPad */
603+
598604
/*
599605
* Blackfin gnICE JTAG
600606
* http://docs.blackfin.uclinux.org/doku.php?id=hw:jtag:gnice

0 commit comments

Comments
 (0)