On Thu, Apr 25, 2024 at 03:51:04AM +0000, Jerry Meng(蒙杰) wrote: > LCUK54 series have four PIDs, 0x0100, 0x0111, 0x0112 and 0x0113, > with the same interface layout. > > If#= 3: DIAG > If#= 4: NMEA > If#= 5: AT What is the difference between the products with different PIDs? > T: Bus=03 Lev=01 Prnt=01 Port=01 Cnt=02 Dev#= 12 Spd=480 MxCh= 0 > D: Ver= 2.00 Cls=00(>ifc ) Sub=00 Prot=00 MxPS=64 #Cfgs= 1 > P: Vendor=3731 ProdID=0100 Rev= 5.04 > S: Manufacturer=NetPrisma > S: Product=LCUK54-WWD > S: SerialNumber=236ade60 > C:* #Ifs= 8 Cfg#= 1 Atr=a0 MxPwr=500mA > A: FirstIf#= 0 IfCount= 2 Cls=02(comm.) Sub=0e Prot=00 > I:* If#= 0 Alt= 0 #EPs= 1 Cls=02(comm.) Sub=0e Prot=00 Driver=cdc_mbim > E: Ad=81(I) Atr=03(Int.) MxPS= 64 Ivl=32ms > I: If#= 1 Alt= 0 #EPs= 0 Cls=0a(data ) Sub=00 Prot=02 Driver=cdc_mbim > I:* If#= 1 Alt= 1 #EPs= 2 Cls=0a(data ) Sub=00 Prot=02 Driver=cdc_mbim > E: Ad=8e(I) Atr=02(Bulk) MxPS= 512 Ivl=0ms > E: Ad=0f(O) Atr=02(Bulk) MxPS= 512 Ivl=0ms > I:* If#= 2 Alt= 0 #EPs= 1 Cls=ff(vend.) Sub=ff Prot=ff Driver=(none) > E: Ad=82(I) Atr=03(Int.) MxPS= 64 Ivl=32ms What's this interface? > I:* If#= 3 Alt= 0 #EPs= 2 Cls=ff(vend.) Sub=ff Prot=30 Driver=option > E: Ad=01(O) Atr=02(Bulk) MxPS= 512 Ivl=0ms > E: Ad=83(I) Atr=02(Bulk) MxPS= 512 Ivl=0ms > I:* If#= 4 Alt= 0 #EPs= 3 Cls=ff(vend.) Sub=00 Prot=40 Driver=option > E: Ad=85(I) Atr=03(Int.) MxPS= 10 Ivl=32ms > E: Ad=84(I) Atr=02(Bulk) MxPS= 512 Ivl=0ms > E: Ad=02(O) Atr=02(Bulk) MxPS= 512 Ivl=0ms > I:* If#= 5 Alt= 0 #EPs= 3 Cls=ff(vend.) Sub=ff Prot=40 Driver=option > E: Ad=87(I) Atr=03(Int.) MxPS= 10 Ivl=32ms > E: Ad=86(I) Atr=02(Bulk) MxPS= 512 Ivl=0ms > E: Ad=03(O) Atr=02(Bulk) MxPS= 512 Ivl=0ms > I:* If#= 6 Alt= 0 #EPs= 1 Cls=ff(vend.) Sub=ff Prot=70 Driver=(none) > E: Ad=88(I) Atr=02(Bulk) MxPS= 512 Ivl=0ms > I:* If#= 7 Alt= 0 #EPs= 1 Cls=ff(vend.) Sub=ff Prot=80 Driver=(none) > E: Ad=8f(I) Atr=02(Bulk) MxPS= 512 Ivl=0ms And what are these two for. Please include all interfaces in the interface description above. > Signed-off-by: Jerry Meng <jerry@xxxxxxxxxxxx> > --- > drivers/usb/serial/option.c | 20 ++++++++++++++++++++ > 1 file changed, 20 insertions(+) > > diff --git a/drivers/usb/serial/option.c b/drivers/usb/serial/option.c > index 8a5846d4a..6b1f1b8bd 100644 > --- a/drivers/usb/serial/option.c > +++ b/drivers/usb/serial/option.c > @@ -622,6 +622,14 @@ static void option_instat_callback(struct urb *urb); > /* MeiG Smart SLM320 based on UNISOC UIS8910 */ > #define MEIGSMART_PRODUCT_SLM320 0x4d41 > > +/* NetPrisma products */ > +#define NETPRISMA_VENDOR_ID 0x3731 > +#define NETPRISMA_PRODUCT_LCUK54_100 0x0100 > +#define NETPRISMA_PRODUCT_LCUK54_111 0x0111 > +#define NETPRISMA_PRODUCT_LCUK54_112 0x0112 > +#define NETPRISMA_PRODUCT_LCUK54_113 0x0113 And please drop these in favour of using constants with a comment after the first entry for the PID. For example: { USB_DEVICE_AND_INTERFACE_INFO(0x3731, 0x0100, 0xff, 0xff, 0x30) }, /* NetPrisma LCUK54 */ Johan