diff options
author | Marek Vasut <marex@denx.de> | 2017-04-18 14:07:56 -0400 |
---|---|---|
committer | Johan Hovold <johan@kernel.org> | 2017-04-19 03:58:50 -0400 |
commit | 31c5d1922b90ddc1da6a6ddecef7cd31f17aa32b (patch) | |
tree | f75f30cf29ba1f6242c3f61876ebf0c46a335bd5 | |
parent | 4f37fa549d0de7aee547783752e70f877a49b0c9 (diff) |
USB: serial: ftdi_sio: add device ID for Microsemi/Arrow SF2PLUS Dev Kit
This development kit has an FT4232 on it with a custom USB VID/PID.
The FT4232 provides four UARTs, but only two are used. The UART 0
is used by the FlashPro5 programmer and UART 2 is connected to the
SmartFusion2 CortexM3 SoC UART port.
Note that the USB VID is registered to Actel according to Linux USB
VID database, but that was acquired by Microsemi.
Signed-off-by: Marek Vasut <marex@denx.de>
Cc: stable <stable@vger.kernel.org>
Signed-off-by: Johan Hovold <johan@kernel.org>
-rw-r--r-- | drivers/usb/serial/ftdi_sio.c | 1 | ||||
-rw-r--r-- | drivers/usb/serial/ftdi_sio_ids.h | 6 |
2 files changed, 7 insertions, 0 deletions
diff --git a/drivers/usb/serial/ftdi_sio.c b/drivers/usb/serial/ftdi_sio.c index 546171289869..d38780fa8788 100644 --- a/drivers/usb/serial/ftdi_sio.c +++ b/drivers/usb/serial/ftdi_sio.c | |||
@@ -873,6 +873,7 @@ static const struct usb_device_id id_table_combined[] = { | |||
873 | { USB_DEVICE_AND_INTERFACE_INFO(MICROCHIP_VID, MICROCHIP_USB_BOARD_PID, | 873 | { USB_DEVICE_AND_INTERFACE_INFO(MICROCHIP_VID, MICROCHIP_USB_BOARD_PID, |
874 | USB_CLASS_VENDOR_SPEC, | 874 | USB_CLASS_VENDOR_SPEC, |
875 | USB_SUBCLASS_VENDOR_SPEC, 0x00) }, | 875 | USB_SUBCLASS_VENDOR_SPEC, 0x00) }, |
876 | { USB_DEVICE_INTERFACE_NUMBER(ACTEL_VID, MICROSEMI_ARROW_SF2PLUS_BOARD_PID, 2) }, | ||
876 | { USB_DEVICE(JETI_VID, JETI_SPC1201_PID) }, | 877 | { USB_DEVICE(JETI_VID, JETI_SPC1201_PID) }, |
877 | { USB_DEVICE(MARVELL_VID, MARVELL_SHEEVAPLUG_PID), | 878 | { USB_DEVICE(MARVELL_VID, MARVELL_SHEEVAPLUG_PID), |
878 | .driver_info = (kernel_ulong_t)&ftdi_jtag_quirk }, | 879 | .driver_info = (kernel_ulong_t)&ftdi_jtag_quirk }, |
diff --git a/drivers/usb/serial/ftdi_sio_ids.h b/drivers/usb/serial/ftdi_sio_ids.h index 48ee04c94a75..71fb9e59db71 100644 --- a/drivers/usb/serial/ftdi_sio_ids.h +++ b/drivers/usb/serial/ftdi_sio_ids.h | |||
@@ -873,6 +873,12 @@ | |||
873 | #define FIC_VID 0x1457 | 873 | #define FIC_VID 0x1457 |
874 | #define FIC_NEO1973_DEBUG_PID 0x5118 | 874 | #define FIC_NEO1973_DEBUG_PID 0x5118 |
875 | 875 | ||
876 | /* | ||
877 | * Actel / Microsemi | ||
878 | */ | ||
879 | #define ACTEL_VID 0x1514 | ||
880 | #define MICROSEMI_ARROW_SF2PLUS_BOARD_PID 0x2008 | ||
881 | |||
876 | /* Olimex */ | 882 | /* Olimex */ |
877 | #define OLIMEX_VID 0x15BA | 883 | #define OLIMEX_VID 0x15BA |
878 | #define OLIMEX_ARM_USB_OCD_PID 0x0003 | 884 | #define OLIMEX_ARM_USB_OCD_PID 0x0003 |