Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

USB: New device ID for ftdi_sio driver

Here's a new device ID for the ftdio_sio driver.
The diff is with linus's tree as of this morning.

The device is the RigExpert Tiny USB Soundcard Transceiver Interface for ham
radio.

(I didn't actually test this. A fellow ham couldn't get the device to work, and
I suggested binding the device ID using sysfs - see
"http://jk.ufisa.uninett.no/usb/". However, he had had moved on to other things
by then. I guess adding the device ID to the kernel "on spec" won't hurt.
The relevant part of cat /proc/bus/usb/devices shows:

T: Bus=02 Lev=01 Prnt=01 Port=00 Cnt=01 Dev#= 2 Spd=12 MxCh= 0
D: Ver= 2.00 Cls=00(>ifc ) Sub=00 Prot=00 MxPS= 8 #Cfgs= 1
P: Vendor=0403 ProdID=ed22 Rev= 5.00
S: Manufacturer=FTDI
S: Product=MixW RigExpert Tiny
S: SerialNumber=00000000
C:* #Ifs= 2 Cfg#= 1 Atr=80 MxPwr=100mA
I:* If#= 0 Alt= 0 #EPs= 2 Cls=ff(vend.) Sub=ff Prot=ff Driver=(none)
E: Ad=81(I) Atr=02(Bulk) MxPS= 64 Ivl=0ms
E: Ad=02(O) Atr=02(Bulk) MxPS= 64 Ivl=0ms
I:* If#= 1 Alt= 0 #EPs= 2 Cls=ff(vend.) Sub=ff Prot=ff Driver=(none)
E: Ad=83(I) Atr=02(Bulk) MxPS= 64 Ivl=0ms
E: Ad=04(O) Atr=02(Bulk) MxPS= 64 Ivl=0ms
)

From: Jon K Hellan <hellan@acm.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>


authored by

Jon K Hellan and committed by
Greg Kroah-Hartman
2542335c f15e3973

+4
+1
drivers/usb/serial/ftdi_sio.c
··· 637 637 { USB_DEVICE(FTDI_VID, FTDI_OOCDLINK_PID), 638 638 .driver_info = (kernel_ulong_t)&ftdi_jtag_quirk }, 639 639 { USB_DEVICE(RATOC_VENDOR_ID, RATOC_PRODUCT_ID_USB60F) }, 640 + { USB_DEVICE(FTDI_VID, FTDI_REU_TINY_PID) }, 640 641 { }, /* Optional parameter entry */ 641 642 { } /* Terminating entry */ 642 643 };
+3
drivers/usb/serial/ftdi_sio.h
··· 828 828 /* Propox devices */ 829 829 #define FTDI_PROPOX_JTAGCABLEII_PID 0xD738 830 830 831 + /* Rig Expert Ukraine devices */ 832 + #define FTDI_REU_TINY_PID 0xED22 /* RigExpert Tiny */ 833 + 831 834 /* Commands */ 832 835 #define FTDI_SIO_RESET 0 /* Reset the port */ 833 836 #define FTDI_SIO_MODEM_CTRL 1 /* Set the modem control register */