mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-10 04:48:04 +09:00
USB: ftdi_sio: support for Signalyzer tools based on FTDI chips
commit 77dbd74e16 upstream.
ftdi_sio: support for Signalyzer tools based on FTDI chips
This patch adds support for the Xverve Signalyzers.
Signed-off-by: Colin Leitner <colin.leitner@googlemail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
1867990f8a
commit
81861ce0dd
@@ -743,6 +743,14 @@ static struct usb_device_id id_table_combined [] = {
|
||||
{ USB_DEVICE(FTDI_VID, MJSG_SR_RADIO_PID) },
|
||||
{ USB_DEVICE(FTDI_VID, MJSG_HD_RADIO_PID) },
|
||||
{ USB_DEVICE(FTDI_VID, MJSG_XM_RADIO_PID) },
|
||||
{ USB_DEVICE(FTDI_VID, XVERVE_SIGNALYZER_ST_PID),
|
||||
.driver_info = (kernel_ulong_t)&ftdi_jtag_quirk },
|
||||
{ USB_DEVICE(FTDI_VID, XVERVE_SIGNALYZER_SLITE_PID),
|
||||
.driver_info = (kernel_ulong_t)&ftdi_jtag_quirk },
|
||||
{ USB_DEVICE(FTDI_VID, XVERVE_SIGNALYZER_SH2_PID),
|
||||
.driver_info = (kernel_ulong_t)&ftdi_jtag_quirk },
|
||||
{ USB_DEVICE(FTDI_VID, XVERVE_SIGNALYZER_SH4_PID),
|
||||
.driver_info = (kernel_ulong_t)&ftdi_jtag_quirk },
|
||||
{ }, /* Optional parameter entry */
|
||||
{ } /* Terminating entry */
|
||||
};
|
||||
|
||||
@@ -1024,3 +1024,12 @@
|
||||
#define MJSG_SR_RADIO_PID 0x9379
|
||||
#define MJSG_XM_RADIO_PID 0x937A
|
||||
#define MJSG_HD_RADIO_PID 0x937C
|
||||
|
||||
/*
|
||||
* Xverve Signalyzer tools (http://www.signalyzer.com/)
|
||||
*/
|
||||
#define XVERVE_SIGNALYZER_ST_PID 0xBCA0
|
||||
#define XVERVE_SIGNALYZER_SLITE_PID 0xBCA1
|
||||
#define XVERVE_SIGNALYZER_SH2_PID 0xBCA2
|
||||
#define XVERVE_SIGNALYZER_SH4_PID 0xBCA4
|
||||
|
||||
|
||||
Reference in New Issue
Block a user