linux-usb.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Re: non-standard baud rates with Prolific 2303 USB-serial
       [not found] ` <dc3458f1-830b-284b-3464-20124dc3900a@IEEE.org>
@ 2021-02-22  8:52   ` Johan Hovold
  2021-02-22 12:39     ` Michael G. Katzmann
  0 siblings, 1 reply; 38+ messages in thread
From: Johan Hovold @ 2021-02-22  8:52 UTC (permalink / raw)
  To: Michael G. Katzmann, charles-yeh
  Cc: linux-serial, linux-usb, Charles Yeh, Joe Abbott

On Sun, Feb 21, 2021 at 09:15:06PM -0500, Michael G. Katzmann wrote:
> 
> So on more investigation and many hours of trial and error I have
> determined the correct formua for the non-standard rates with this
> Prolific 2303.
>
> There are four bytes used to send the baud rate. When not using the
> 'standard' rates, the Linus driver sets byte 3 to 0x80 and bytes 1 and
> 0 hold the divisor of the clock (12MHz * 32).
> This divisor is encoded in a special way. The 'exponent' (log 4) and
> the mantissa. This is calculated by dividing the divisor by 4 until it
> is less than 512 (the number of times you can do this is the
> exponent). e then goes in bits 1,2 and 3 of byte 1 with the MSBit of
> the mantissa in bit 0 of byte 1. Byte 0 holds the lower 8 bits of the
> mantissa.
> 
> This does not work on the device I have USB PID/VID/REV is 0673 /
> 2303/3.00. Instead...the calculation uses 1024 instead of 512 in the
> method above and the exponent is in byte 1 bits 7,6&5 (the top 2 bits
> of the mantissa are in bits 0 and 1).  I tested this on all baud rates
> that stty will allow that are not 'standard' and it works. (50, 110
> .... 3000000).
> 
> The changed routine is below. I presume the original driver worked so
> perhaps this device is a new variant with the same USB VID/PID.

Nice work!

Joe Abbott reported a similar issue (incidentally also when trying to
use an ASR33) a few weeks ago and concluded that the Windows driver
uses a different encoding:

	https://lore.kernel.org/r/CADuz4ONmN299aw460r4wXCEK5F1v9kt_cewCCrdg2hb5nJV9uQ@mail.gmail.com

His device also had a bcdDevice of 0x0300 as yours (even if I believe
his fell back to 9600 baud).

Does your updated algorithm also result in 110 baud (8n1) being encoded
as:

	a8 a6 01 80 00 02 07

And are you using some official Prolific Windows driver or something
that came with the device?

I tried asking Prolific about this but I'm still not sure whether these
are official chips or counterfeit. 0x0300 is supposed to be a PL2303TA
and Prolific claims that the current driver is working fine with these
so we'd need to key off something more than just bcdDevice.

Charles, here's another device that appears to use a different baudrate
encoding. Does this mean it's not one of your devices or how can we
detect when to use the alternate encoding?

> static speed_t pl2303_encode_baud_rate_divisor(unsigned char buf[4],
>                                 speed_t baud)
> {
>     unsigned int baseline, mantissa, exponent;
>     /*
>      * Apparently the formula is:
>      *   baudrate = 12M * 32 / (mantissa * 4^exponent)
>      * where
>      *   mantissa = buf[8:0]
>      *   exponent = buf[11:9]
>          *
>          * Michael Katzmann: At least versions of the chip VID 0x067b PID 0x2303 bcdDevice 3.00
>          *                   uses mantissa = buf[9:0]
>      *                        exponent = buf[15:13]
>      */
>     baseline = 12000000 * 32;
>     mantissa = baseline / baud;
>     if (mantissa == 0)
>         mantissa = 1;    /* Avoid dividing by zero if baud > 32*12M. */
>     exponent = 0;
> #undef ORIGINAL
> #ifdef ORIGINAL
>     while (mantissa >= 512) {
>         if (exponent < 7) {
>             mantissa >>= 2;    /* divide by 4 */
>             exponent++;
>         } else {
>             /* Exponent is maxed. Trim mantissa and leave. */
>             mantissa = 511;
>             break;
>         }
>     }
>     buf[3] = 0x80;
>     buf[2] = 0;
>     buf[1] = exponent << 1 | mantissa >> 8;
>     buf[0] = mantissa & 0xff;
> #else
>     while (mantissa >= 1024) {
>         if (exponent < 7) {
>             mantissa >>= 2;    /* divide by 4 */
>             exponent++;
>         } else {
>             // This is an logical modification of the original code
>                         // but I do not know if this an actual limitation
>             /* Exponent is maxed. Trim mantissa and leave. */
>             mantissa = 1023 ;
>             break;
>         }
>     }
>     buf[3] = 0x80;
>     buf[2] = 0;
>     buf[1] = exponent << 5 | (mantissa >> 8);
>     buf[0] = mantissa & 0xff;
> #endif
>     /* Calculate and return the exact baud rate. */
>     baud = (baseline / mantissa) >> (exponent << 1);
> 
>     return baud;
> }
> 
> 
> On 2/21/21 10:37 AM, Michael G. Katzmann wrote:
> > The Linux driver does not seem to produce sensible baud rated for
> > other than the 'supported' rates.
> >
> > stty to 110 bd results in ~95,000 bd (that's not a typo but 95
> > thousand). Other rates like 200 also produce odd speeds although not
> > in a logical manner.
> >
> > The data sheets don't describe the formula used for deriving the
> > four bytes used to set the speed.
> >
> > I tried adding 110 to the supported rates but this did not produce
> > the correct baud rate so I presume the Windows driver is using a
> > formula different than the one in the Linux driver for 'non
> > standard' baud rates.
> >

Johan

^ permalink raw reply	[flat|nested] 38+ messages in thread

* Re: non-standard baud rates with Prolific 2303 USB-serial
  2021-02-22  8:52   ` non-standard baud rates with Prolific 2303 USB-serial Johan Hovold
@ 2021-02-22 12:39     ` Michael G. Katzmann
  2021-02-22 13:18       ` Johan Hovold
  0 siblings, 1 reply; 38+ messages in thread
From: Michael G. Katzmann @ 2021-02-22 12:39 UTC (permalink / raw)
  To: Johan Hovold, charles-yeh
  Cc: linux-serial, linux-usb, Charles Yeh, Joe Abbott

On 2/22/21 3:52 AM, Johan Hovold wrote:
> Does your updated algorithm also result in 110 baud (8n1) being encoded
> as:
>
> 	a8 a6 01 80 00 02 07
>
> And are you using some official Prolific Windows driver or something
> that came with the device?

Johan,

  On Windows I did not install a new driver. It was recognized by the system and uses the Microsoft provided Prolific driver Ver 3.8.38.2.

On windows everything looks fine (no sign of distress (i.e. no yellow caution triangle)).

Where should I look for the encoding (a8 a6 01 80 00 02 07) ? (110bd encodes as 80 00 C3 54 using the algorithm I described))

cheers,

   Michael

> I tried asking Prolific about this but I'm still not sure whether these
> are official chips or counterfeit. 0x0300 is supposed to be a PL2303TA
> and Prolific claims that the current driver is working fine with these
> so we'd need to key off something more than just bcdDevice.



^ permalink raw reply	[flat|nested] 38+ messages in thread

* Re: non-standard baud rates with Prolific 2303 USB-serial
  2021-02-22 12:39     ` Michael G. Katzmann
@ 2021-02-22 13:18       ` Johan Hovold
       [not found]         ` <fb1489c2-b972-619b-b7ce-4ae8e1d2cc0f@IEEE.org>
  0 siblings, 1 reply; 38+ messages in thread
From: Johan Hovold @ 2021-02-22 13:18 UTC (permalink / raw)
  To: Michael G. Katzmann
  Cc: charles-yeh, linux-serial, linux-usb, Charles Yeh, Joe Abbott

On Mon, Feb 22, 2021 at 07:39:42AM -0500, Michael G. Katzmann wrote:
> On 2/22/21 3:52 AM, Johan Hovold wrote:
> > Does your updated algorithm also result in 110 baud (8n1) being encoded
> > as:
> >
> > 	a8 a6 01 80 00 02 07
> >
> > And are you using some official Prolific Windows driver or something
> > that came with the device?
> 
> Johan,
> 
>   On Windows I did not install a new driver. It was recognized by the
> system and uses the Microsoft provided Prolific driver Ver 3.8.38.2.

Thanks for confirming. Then this sounds like something which Prolific
should be very well aware of.

> On windows everything looks fine (no sign of distress (i.e. no yellow
> caution triangle)).
> 
> Where should I look for the encoding (a8 a6 01 80 00 02 07) ? (110bd
> encodes as 80 00 C3 54 using the algorithm I described))

That was the encoding used by Joe's device (same driver I think) for
110n81.

It may not work with your device, but 0x10000 could just be a
2-prescaler bit:

	32 * 12*10^6 / (2 * 0x6a8 * 4^5) = ~110.03521126760563380282

where as you would have:

	32 * 12*10^6 / (0x354 * 4^6) = ~110.03521126760563380282

Could you try hardcoding 0x1a6a8 and and see if you end up with 110 bd?

> > I tried asking Prolific about this but I'm still not sure whether these
> > are official chips or counterfeit. 0x0300 is supposed to be a PL2303TA
> > and Prolific claims that the current driver is working fine with these
> > so we'd need to key off something more than just bcdDevice.

Johan

^ permalink raw reply	[flat|nested] 38+ messages in thread

* Re: non-standard baud rates with Prolific 2303 USB-serial
       [not found]         ` <fb1489c2-b972-619b-b7ce-4ae8e1d2cc0f@IEEE.org>
@ 2021-02-22 15:34           ` Johan Hovold
  2021-02-22 15:42             ` Michael G. Katzmann
  0 siblings, 1 reply; 38+ messages in thread
From: Johan Hovold @ 2021-02-22 15:34 UTC (permalink / raw)
  To: Michael G. Katzmann
  Cc: charles-yeh, linux-serial, linux-usb, Charles Yeh, Joe Abbott

On Mon, Feb 22, 2021 at 09:53:39AM -0500, Michael G. Katzmann wrote:
> On 2/22/21 8:18 AM, Johan Hovold wrote:
> 
> I tried hardcoding buf[6-0] in pl2303_set_termios as
> 
> a8 a6 01 80 00 02 07 and got a bitrate of ~200kb 
> 
> so, no these settings do not work in my case (or I missunderstood your
> instructions 8-))

Thanks for testing (and that was with 0xa8 in byte 0, right?)

So it seems we have three devices with bcdDevice 0x0300 encoding the
divisors in slightly different ways and that are all still supported by
the vendor's Windows driver.

Unless Prolific are willing to shed some light on this, I guess someone
needs to try to figure out how the Windows driver determines which
encoding to use.

Is your device supposedly also a PL2303 TA? Could you post the output of
lsusb -v for completeness?

Johan

^ permalink raw reply	[flat|nested] 38+ messages in thread

* Re: non-standard baud rates with Prolific 2303 USB-serial
  2021-02-22 15:34           ` Johan Hovold
@ 2021-02-22 15:42             ` Michael G. Katzmann
  2021-02-22 15:50               ` Johan Hovold
  0 siblings, 1 reply; 38+ messages in thread
From: Michael G. Katzmann @ 2021-02-22 15:42 UTC (permalink / raw)
  To: Johan Hovold
  Cc: charles-yeh, linux-serial, linux-usb, Charles Yeh, Joe Abbott

Sorry, my mistake .. when I put it in the right order it does indeed also give 110Bd !

On 2/22/21 10:34 AM, Johan Hovold wrote:
> On Mon, Feb 22, 2021 at 09:53:39AM -0500, Michael G. Katzmann wrote:
>> On 2/22/21 8:18 AM, Johan Hovold wrote:
>>
>> I tried hardcoding buf[6-0] in pl2303_set_termios as
>>
>> a8 a6 01 80 00 02 07 and got a bitrate of ~200kb 
>>
>> so, no these settings do not work in my case (or I missunderstood your
>> instructions 8-))
> Thanks for testing (and that was with 0xa8 in byte 0, right?)
>
> So it seems we have three devices with bcdDevice 0x0300 encoding the
> divisors in slightly different ways and that are all still supported by
> the vendor's Windows driver.
>
> Unless Prolific are willing to shed some light on this, I guess someone
> needs to try to figure out how the Windows driver determines which
> encoding to use.
>
> Is your device supposedly also a PL2303 TA? Could you post the output of
> lsusb -v for completeness?
>
> Johan


-- 
   |\      _,,,---,,_             Michael Katzmann
   /,`.-'`'    -.  ;-;;,_         NV3Z / VK2BEA / G4NYV
  |,4-  ) )-,_. ,\ (  `'-' 
 '---''(_/--'  `-'\_)             MichaelK@IEEE.org


^ permalink raw reply	[flat|nested] 38+ messages in thread

* Re: non-standard baud rates with Prolific 2303 USB-serial
  2021-02-22 15:42             ` Michael G. Katzmann
@ 2021-02-22 15:50               ` Johan Hovold
  2021-02-22 16:37                 ` Michael G. Katzmann
  2021-02-23 14:58                 ` Michael G. Katzmann
  0 siblings, 2 replies; 38+ messages in thread
From: Johan Hovold @ 2021-02-22 15:50 UTC (permalink / raw)
  To: Michael G. Katzmann
  Cc: charles-yeh, linux-serial, linux-usb, Charles Yeh, Joe Abbott

[ Please try to avoid top posting to the lists. ]

On Mon, Feb 22, 2021 at 10:42:25AM -0500, Michael G. Katzmann wrote:
> Sorry, my mistake .. when I put it in the right order it does indeed
> also give 110Bd !

Heh, thanks for verifying that. So two ways of encoding the divisors
then. :)

> On 2/22/21 10:34 AM, Johan Hovold wrote:
> > On Mon, Feb 22, 2021 at 09:53:39AM -0500, Michael G. Katzmann wrote:
> >> On 2/22/21 8:18 AM, Johan Hovold wrote:
> >>
> >> I tried hardcoding buf[6-0] in pl2303_set_termios as
> >>
> >> a8 a6 01 80 00 02 07 and got a bitrate of ~200kb 
> >>
> >> so, no these settings do not work in my case (or I missunderstood your
> >> instructions 8-))
> > Thanks for testing (and that was with 0xa8 in byte 0, right?)
> >
> > So it seems we have three devices with bcdDevice 0x0300 encoding the
> > divisors in slightly different ways and that are all still supported by
> > the vendor's Windows driver.
> >
> > Unless Prolific are willing to shed some light on this, I guess someone
> > needs to try to figure out how the Windows driver determines which
> > encoding to use.
> >
> > Is your device supposedly also a PL2303 TA? Could you post the output of
> > lsusb -v for completeness?

Was your device also a TA?

Johan

^ permalink raw reply	[flat|nested] 38+ messages in thread

* Re: non-standard baud rates with Prolific 2303 USB-serial
  2021-02-22 15:50               ` Johan Hovold
@ 2021-02-22 16:37                 ` Michael G. Katzmann
  2021-02-22 16:48                   ` Johan Hovold
       [not found]                   ` <43da22ced8e14442bbc8babea77e4ed7@MailHC2.prolific.com.tw>
  2021-02-23 14:58                 ` Michael G. Katzmann
  1 sibling, 2 replies; 38+ messages in thread
From: Michael G. Katzmann @ 2021-02-22 16:37 UTC (permalink / raw)
  To: Johan Hovold
  Cc: charles-yeh, linux-serial, linux-usb, Charles Yeh, Joe Abbott

On 2/22/21 10:50 AM, Johan Hovold wrote:
> [ Please try to avoid top posting to the lists. ]
>
> On Mon, Feb 22, 2021 at 10:42:25AM -0500, Michael G. Katzmann wrote:
>> Sorry, my mistake .. when I put it in the right order it does indeed
>> also give 110Bd !

For reference this is the device I have ...

Bus 001 Device 011: ID 067b:2303 Prolific Technology, Inc. PL2303 Serial Port
Device Descriptor:
  bLength                18
  bDescriptorType         1
  bcdUSB               2.00
  bDeviceClass            0
  bDeviceSubClass         0
  bDeviceProtocol         0
  bMaxPacketSize0        64
  idVendor           0x067b Prolific Technology, Inc.
  idProduct          0x2303 PL2303 Serial Port
  bcdDevice            3.00
  iManufacturer           1
  iProduct                2
  iSerial                 0
  bNumConfigurations      1
  Configuration Descriptor:
    bLength                 9
    bDescriptorType         2
    wTotalLength       0x0027
    bNumInterfaces          1
    bConfigurationValue     1
    iConfiguration          0
    bmAttributes         0xa0
      (Bus Powered)
      Remote Wakeup
    MaxPower              100mA
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        0
      bAlternateSetting       0
      bNumEndpoints           3
      bInterfaceClass       255 Vendor Specific Class
      bInterfaceSubClass      0
      bInterfaceProtocol      0
      iInterface              0
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x81  EP 1 IN
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x000a  1x 10 bytes
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x02  EP 2 OUT
        bmAttributes            2
          Transfer Type            Bulk
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0040  1x 64 bytes
        bInterval               0
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x83  EP 3 IN
        bmAttributes            2
          Transfer Type            Bulk
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0040  1x 64 bytes
        bInterval               0


^ permalink raw reply	[flat|nested] 38+ messages in thread

* Re: non-standard baud rates with Prolific 2303 USB-serial
  2021-02-22 16:37                 ` Michael G. Katzmann
@ 2021-02-22 16:48                   ` Johan Hovold
  2021-02-24 23:08                     ` Joe Abbott
       [not found]                   ` <43da22ced8e14442bbc8babea77e4ed7@MailHC2.prolific.com.tw>
  1 sibling, 1 reply; 38+ messages in thread
From: Johan Hovold @ 2021-02-22 16:48 UTC (permalink / raw)
  To: Michael G. Katzmann
  Cc: charles-yeh, linux-serial, linux-usb, Charles Yeh, Joe Abbott

On Mon, Feb 22, 2021 at 11:37:30AM -0500, Michael G. Katzmann wrote:

> For reference this is the device I have ...
> 
> Bus 001 Device 011: ID 067b:2303 Prolific Technology, Inc. PL2303 Serial Port
> Device Descriptor:
>   bLength                18
>   bDescriptorType         1
>   bcdUSB               2.00
>   bDeviceClass            0
>   bDeviceSubClass         0
>   bDeviceProtocol         0
>   bMaxPacketSize0        64
>   idVendor           0x067b Prolific Technology, Inc.
>   idProduct          0x2303 PL2303 Serial Port
>   bcdDevice            3.00
>   iManufacturer           1
>   iProduct                2

Would be interesting to compare with a real TA in case this one happens
to be a clone after all.

My HXD has

  bcdDevice            4.00
  iManufacturer           1 Prolific Technology Inc. 
  iProduct                2 USB-Serial Controller D

here.

>   iSerial                 0
>   bNumConfigurations      1

Thanks!

Joe, would you mind posting the output of "lsusb -v" for your device as
well?

Johan

^ permalink raw reply	[flat|nested] 38+ messages in thread

* Re: non-standard baud rates with Prolific 2303 USB-serial
       [not found]                   ` <43da22ced8e14442bbc8babea77e4ed7@MailHC2.prolific.com.tw>
@ 2021-02-23 10:18                     ` Johan Hovold
  2021-02-23 13:25                     ` Michael G. Katzmann
  1 sibling, 0 replies; 38+ messages in thread
From: Johan Hovold @ 2021-02-23 10:18 UTC (permalink / raw)
  To: Yeh.Charles [葉榮鑫]
  Cc: Michael G. Katzmann, linux-serial, linux-usb, Charles Yeh, Joe Abbott

Hi Charles,

On Tue, Feb 23, 2021 at 10:14:33AM +0000, Yeh.Charles [葉榮鑫] wrote:

> 保密警語: 本電子郵件內容及其附加檔案均視為機密資料,受保密合約保護或依法不得洩漏。其內容僅供指定收件人按限定範圍或特殊目的合法使用,未經授權者收到此信息均無權閱讀、使用、複製、洩漏或散佈。若您並非本郵件之指定收件人,請即刻回覆郵件並永久刪除此郵件及其附件和銷毀所有複印文件。電子郵件的傳輸可能遭攔截、損毀、遺失、破壞、遲到或不完整、或包含病毒,無法保證其安全或無誤。寄件人不承擔因本電子郵件的錯誤或遺漏所產生的任何損害賠償責任。 Confidentiality Notice: This e-mail message together with any attachments thereto (if any) is confidential, protected under an enforceable non-disclosure agreement, intended only for the use of the named recipient(s) above and may contain information that is privileged, belonging to professional work products or exempt from disclosure under applicable laws. Any unauthorized review, use, copying, disclosure, or distribution of any information contained in or attached to this transmission is strictly prohibited and may be against the laws. If you have received this message in error, or are not the intended recipient(s), please immediately notify the sender by e-mail and delete this e-mail message, all copies, and any attached documentation from your computer. E-mail transmission cannot be guaranteed to be secure or error-free as information could be intercepted, corrupted, lost, destroyed, arrive late or incomplete, or contain viruses. The sender therefore does not accept liability for any damage caused by any errors or omissions in the contents of this email.

Can you please resend from your other account so that this footer isn't
included in your replies to the list?

Johan

^ permalink raw reply	[flat|nested] 38+ messages in thread

* Re: non-standard baud rates with Prolific 2303 USB-serial
       [not found]                   ` <43da22ced8e14442bbc8babea77e4ed7@MailHC2.prolific.com.tw>
  2021-02-23 10:18                     ` Johan Hovold
@ 2021-02-23 13:25                     ` Michael G. Katzmann
  1 sibling, 0 replies; 38+ messages in thread
From: Michael G. Katzmann @ 2021-02-23 13:25 UTC (permalink / raw)
  To: Yeh.Charles [葉榮鑫], Johan Hovold
  Cc: linux-serial, linux-usb, Charles Yeh, Joe Abbott

The markings on the device I have are
PL2303TA
G19101E
CDH81920

... and yes I had to destroy it to open it 8-(

Photo here..... https://photos.app.goo.gl/ontHBzGBbaDV6FWu6

Michael.  


On 2/23/21 5:14 AM, Yeh.Charles [葉榮鑫] wrote:
> I set 110 bps / 8 data bits/ none parity / 1 stop bit.
> I used PL2303TA , I got the data is d5 0e 00 80 00 00 08 on 5.8.0-41 kernel.
> Please refer to attached file : PL2303TA.png.
>
> The divider algorithm is OK on Linux for my test.
>
> Can you use you PL2303TA board to print log?
> What are the differences between the log you printed and the log printed in the attachment?

^ permalink raw reply	[flat|nested] 38+ messages in thread

* Re: non-standard baud rates with Prolific 2303 USB-serial
  2021-02-22 15:50               ` Johan Hovold
  2021-02-22 16:37                 ` Michael G. Katzmann
@ 2021-02-23 14:58                 ` Michael G. Katzmann
  2021-02-23 15:43                   ` Johan Hovold
  1 sibling, 1 reply; 38+ messages in thread
From: Michael G. Katzmann @ 2021-02-23 14:58 UTC (permalink / raw)
  To: Johan Hovold
  Cc: charles-yeh, linux-serial, linux-usb, Charles Yeh, Joe Abbott

On 2/22/21 10:50 AM, Johan Hovold wrote:


Well I found I have another Prolific device here that I got from Adafruit (https://www.adafruit.com/product/954)

It also has a Prolific 2303 and behaves exactly like the other one. i.e. with the current Linux driver it gives a very high baudrate when set to 110 bd and gives 110bd when the modifications are made to the driver that I found.

Is it that we are presuming that what Prolific is telling us is true and only Joe and I are actually measuring the data rate?  (i.e. why does the Prolific Windows driver set the values as Joe found ???)

Adafruit device:

Bus 001 Device 013: ID 067b:2303 Prolific Technology, Inc. PL2303 Serial Port
Device Descriptor:
  bLength                18
  bDescriptorType         1
  bcdUSB               2.00
  bDeviceClass            0
  bDeviceSubClass         0
  bDeviceProtocol         0
  bMaxPacketSize0        64
  idVendor           0x067b Prolific Technology, Inc.
  idProduct          0x2303 PL2303 Serial Port
  bcdDevice            3.00
  iManufacturer           1 Prolific Technology Inc.
  iProduct                2 USB-Serial Controller
  iSerial                 0
  bNumConfigurations      1
  Configuration Descriptor:
    bLength                 9
    bDescriptorType         2
    wTotalLength       0x0027
    bNumInterfaces          1
    bConfigurationValue     1
    iConfiguration          0
    bmAttributes         0xa0
      (Bus Powered)
      Remote Wakeup
    MaxPower              100mA
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        0
      bAlternateSetting       0
      bNumEndpoints           3
      bInterfaceClass       255 Vendor Specific Class
      bInterfaceSubClass      0
      bInterfaceProtocol      0
      iInterface              0
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x81  EP 1 IN
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x000a  1x 10 bytes
        bInterval               1
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x02  EP 2 OUT
        bmAttributes            2
          Transfer Type            Bulk
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0040  1x 64 bytes
        bInterval               0
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x83  EP 3 IN
        bmAttributes            2
          Transfer Type            Bulk
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0040  1x 64 bytes
        bInterval               0


-- 
   |\      _,,,---,,_             Michael Katzmann
   /,`.-'`'    -.  ;-;;,_         NV3Z / VK2BEA / G4NYV
  |,4-  ) )-,_. ,\ (  `'-' 
 '---''(_/--'  `-'\_)             MichaelK@IEEE.org


^ permalink raw reply	[flat|nested] 38+ messages in thread

* Re: non-standard baud rates with Prolific 2303 USB-serial
  2021-02-23 14:58                 ` Michael G. Katzmann
@ 2021-02-23 15:43                   ` Johan Hovold
  2021-02-23 15:57                     ` Michael G. Katzmann
  0 siblings, 1 reply; 38+ messages in thread
From: Johan Hovold @ 2021-02-23 15:43 UTC (permalink / raw)
  To: Michael G. Katzmann
  Cc: charles-yeh, linux-serial, linux-usb, Charles Yeh, Joe Abbott

On Tue, Feb 23, 2021 at 09:58:47AM -0500, Michael G. Katzmann wrote:

> Well I found I have another Prolific device here that I got from
> Adafruit (https://www.adafruit.com/product/954)
> 
> It also has a Prolific 2303 and behaves exactly like the other one.
> i.e. with the current Linux driver it gives a very high baudrate when
> set to 110 bd and gives 110bd when the modifications are made to the
> driver that I found.

Interesting.

> Is it that we are presuming that what Prolific is telling us is true
> and only Joe and I are actually measuring the data rate?  (i.e. why
> does the Prolific Windows driver set the values as Joe found ???)

I'm starting to think they've added some alternate baud rate encoding in
order to make life harder for the people pushing (or unknowingly buying)
counterfeit devices.

As you say, why else would the Windows driver support this encoding?

The driver might be triggering on the device descriptors or some control
request so having a packet trace might provide some insight.

I think Joe may already have collected one?
 
> Adafruit device:
> 
> Bus 001 Device 013: ID 067b:2303 Prolific Technology, Inc. PL2303 Serial Port
> Device Descriptor:
>   bLength                18
>   bDescriptorType         1
>   bcdUSB               2.00
>   bDeviceClass            0
>   bDeviceSubClass         0
>   bDeviceProtocol         0
>   bMaxPacketSize0        64
>   idVendor           0x067b Prolific Technology, Inc.
>   idProduct          0x2303 PL2303 Serial Port
>   bcdDevice            3.00
>   iManufacturer           1 Prolific Technology Inc.
>   iProduct                2 USB-Serial Controller
>   iSerial                 0
>   bNumConfigurations      1

Johan

^ permalink raw reply	[flat|nested] 38+ messages in thread

* Re: non-standard baud rates with Prolific 2303 USB-serial
  2021-02-23 15:43                   ` Johan Hovold
@ 2021-02-23 15:57                     ` Michael G. Katzmann
  2021-02-23 16:14                       ` Johan Hovold
  0 siblings, 1 reply; 38+ messages in thread
From: Michael G. Katzmann @ 2021-02-23 15:57 UTC (permalink / raw)
  To: Johan Hovold
  Cc: charles-yeh, linux-serial, linux-usb, Charles Yeh, Joe Abbott

On 2/23/21 10:43 AM, Johan Hovold wrote:
> On Tue, Feb 23, 2021 at 09:58:47AM -0500, Michael G. Katzmann wrote:
>> Is it that we are presuming that what Prolific is telling us is true
>> and only Joe and I are actually measuring the data rate?  (i.e. why
>> does the Prolific Windows driver set the values as Joe found ???)
> I'm starting to think they've added some alternate baud rate encoding in
> order to make life harder for the people pushing (or unknowingly buying)
> counterfeit devices.
>
> As you say, why else would the Windows driver support this encoding?

I find that  'Halon;'s razor' is helpful in these situations...  I can't think that messing with people who use old teleprinters would be useful in protecting one's products 8-)

If Joe has some wireshark traces we can see if there are any vendor specific USB packets. If not I can try it (I'd be starting from scratch as I've only use wireshark on Linux).

I presume you can't see any differentiators in the normal USB identifiers that we can use. 

If someone has a device that works under the existing driver, it would be helpful to see if the modified scheme also works on those devices?



^ permalink raw reply	[flat|nested] 38+ messages in thread

* Re: non-standard baud rates with Prolific 2303 USB-serial
  2021-02-23 15:57                     ` Michael G. Katzmann
@ 2021-02-23 16:14                       ` Johan Hovold
  2021-02-23 16:30                         ` Michael G. Katzmann
  0 siblings, 1 reply; 38+ messages in thread
From: Johan Hovold @ 2021-02-23 16:14 UTC (permalink / raw)
  To: Michael G. Katzmann
  Cc: charles-yeh, linux-serial, linux-usb, Charles Yeh, Joe Abbott

On Tue, Feb 23, 2021 at 10:57:09AM -0500, Michael G. Katzmann wrote:
> On 2/23/21 10:43 AM, Johan Hovold wrote:
> > On Tue, Feb 23, 2021 at 09:58:47AM -0500, Michael G. Katzmann wrote:
> >> Is it that we are presuming that what Prolific is telling us is true
> >> and only Joe and I are actually measuring the data rate?  (i.e. why
> >> does the Prolific Windows driver set the values as Joe found ???)
> > I'm starting to think they've added some alternate baud rate encoding in
> > order to make life harder for the people pushing (or unknowingly buying)
> > counterfeit devices.
> >
> > As you say, why else would the Windows driver support this encoding?
> 
> I find that  'Halon;'s razor' is helpful in these situations...  I
> can't think that messing with people who use old teleprinters would be
> useful in protecting one's products 8-)

Heh, guess you're right.

> If Joe has some wireshark traces we can see if there are any vendor
> specific USB packets. If not I can try it (I'd be starting from
> scratch as I've only use wireshark on Linux).
> 
> I presume you can't see any differentiators in the normal USB
> identifiers that we can use. 

I only have an HXD (and a GC) here.

The HXD has bcdUSB as 1.10 unlike your TA with 2.00, but not sure that
helps.

> If someone has a device that works under the existing driver, it would
> be helpful to see if the modified scheme also works on those devices?
 
I tried with both of mine when Joe reported this and neither works with
the alternate scheme (and the GC turned out not to even support divisor
encoding).

Johan

^ permalink raw reply	[flat|nested] 38+ messages in thread

* Re: non-standard baud rates with Prolific 2303 USB-serial
  2021-02-23 16:14                       ` Johan Hovold
@ 2021-02-23 16:30                         ` Michael G. Katzmann
  2021-02-23 16:52                           ` Johan Hovold
  0 siblings, 1 reply; 38+ messages in thread
From: Michael G. Katzmann @ 2021-02-23 16:30 UTC (permalink / raw)
  To: Johan Hovold
  Cc: charles-yeh, linux-serial, linux-usb, Charles Yeh, Joe Abbott

On 2/23/21 11:14 AM, Johan Hovold wrote:
> I only have an HXD (and a GC) here.
>
> The HXD has bcdUSB as 1.10 unlike your TA with 2.00, but not sure that
> helps.

Sound promising .. why do you think this is this not reliable?


^ permalink raw reply	[flat|nested] 38+ messages in thread

* Re: non-standard baud rates with Prolific 2303 USB-serial
  2021-02-23 16:30                         ` Michael G. Katzmann
@ 2021-02-23 16:52                           ` Johan Hovold
  2021-02-23 19:15                             ` Michael G. Katzmann
  2021-02-24  7:34                             ` Charles Yeh
  0 siblings, 2 replies; 38+ messages in thread
From: Johan Hovold @ 2021-02-23 16:52 UTC (permalink / raw)
  To: Michael G. Katzmann
  Cc: charles-yeh, linux-serial, linux-usb, Charles Yeh, Joe Abbott

On Tue, Feb 23, 2021 at 11:30:41AM -0500, Michael G. Katzmann wrote:
> On 2/23/21 11:14 AM, Johan Hovold wrote:
> > I only have an HXD (and a GC) here.
> >
> > The HXD has bcdUSB as 1.10 unlike your TA with 2.00, but not sure that
> > helps.
> 
> Sound promising .. why do you think this is this not reliable?

Perhaps it is. Perhaps even bcdDevice of 3.00 is enough (includes some
older variants that the TA replaced supposedly). Not sure anyone ever
tried the current scheme on those older models.

Charles, could you post the output of "lsusb -v" for your PL2303TA? And
did you verify that you actually got 110 Bd with the current Linux
driver?

Johan

^ permalink raw reply	[flat|nested] 38+ messages in thread

* Re: non-standard baud rates with Prolific 2303 USB-serial
  2021-02-23 16:52                           ` Johan Hovold
@ 2021-02-23 19:15                             ` Michael G. Katzmann
  2021-02-24 17:04                               ` Johan Hovold
  2021-02-24  7:34                             ` Charles Yeh
  1 sibling, 1 reply; 38+ messages in thread
From: Michael G. Katzmann @ 2021-02-23 19:15 UTC (permalink / raw)
  To: Johan Hovold
  Cc: charles-yeh, linux-serial, linux-usb, Charles Yeh, Joe Abbott

On 2/23/21 11:52 AM, Johan Hovold wrote:
> On Tue, Feb 23, 2021 at 11:30:41AM -0500, Michael G. Katzmann wrote:
>> On 2/23/21 11:14 AM, Johan Hovold wrote:
>>> I only have an HXD (and a GC) here.
>>>
>>> The HXD has bcdUSB as 1.10 unlike your TA with 2.00, but not sure that
>>> helps.
>> Sound promising .. why do you think this is this not reliable?
> Perhaps it is. Perhaps even bcdDevice of 3.00 is enough (includes some
> older variants that the TA replaced supposedly). Not sure anyone ever
> tried the current scheme on those older models.
>
> Charles, could you post the output of "lsusb -v" for your PL2303TA? And
> did you verify that you actually got 110 Bd with the current Linux
> driver?
>
> Johan

Here is the USB packet capture from Wireshark oon Windows 10 when:

1) plugging in pl2303 (packets 18-393)

2) setting the device wia cmd line to 110/even/7 bits/2 stop (packets 393-690)

(device is on port 1.7)

https://drive.google.com/file/d/17TkV9JB2iFNdr4LvRftBnV3_DgITGvUH/view?usp=sharing

There are orders of magnitude more traffic than in Linux!


-- 
   |\      _,,,---,,_             Michael Katzmann
   /,`.-'`'    -.  ;-;;,_         NV3Z / VK2BEA / G4NYV
  |,4-  ) )-,_. ,\ (  `'-' 
 '---''(_/--'  `-'\_)             MichaelK@IEEE.org


^ permalink raw reply	[flat|nested] 38+ messages in thread

* Re: non-standard baud rates with Prolific 2303 USB-serial
  2021-02-23 16:52                           ` Johan Hovold
  2021-02-23 19:15                             ` Michael G. Katzmann
@ 2021-02-24  7:34                             ` Charles Yeh
  2021-02-24 17:00                               ` Johan Hovold
  1 sibling, 1 reply; 38+ messages in thread
From: Charles Yeh @ 2021-02-24  7:34 UTC (permalink / raw)
  To: Johan Hovold
  Cc: Michael G. Katzmann, Yeh.Charles [葉榮鑫],
	linux-serial, linux-usb, Joe Abbott

PL2303HXD
          ===>Device Descriptor<===
bLength:                           0x12
bDescriptorType:                   0x01
bcdUSB:                          0x0110
bDeviceClass:                      0x00  -> This is an Interface Class
Defined Device
bDeviceSubClass:                   0x00
bDeviceProtocol:                   0x00
bMaxPacketSize0:                   0x40 = (64) Bytes
idVendor:                        0x067B = Prolific Technology, Inc.
idProduct:                       0x2303
bcdDevice:                       0x0400



PL2303TA
          ===>Device Descriptor<===
bLength:                           0x12
bDescriptorType:                   0x01
bcdUSB:                          0x0200
bDeviceClass:                      0x00  -> This is an Interface Class
Defined Device
bDeviceSubClass:                   0x00
bDeviceProtocol:                   0x00
bMaxPacketSize0:                   0x40 = (64) Bytes
idVendor:                        0x067B = Prolific Technology, Inc.
idProduct:                       0x2303
bcdDevice:                       0x0300


PL2303HX(A)/XA ( EOL : PHASED OUT SINCE 2012 )
          ===>Device Descriptor<===
bLength:                           0x12
bDescriptorType:                   0x01
bcdUSB:                          0x0110
bDeviceClass:                      0x00  -> This is an Interface Class
Defined Device
bDeviceSubClass:                   0x00
bDeviceProtocol:                   0x00
bMaxPacketSize0:                   0x40 = (64) Bytes
idVendor:                        0x067B = Prolific Technology, Inc.
idProduct:                       0x2303
bcdDevice:                       0x0300


You can use the two fields bcdUSB & bcdDevice to distinguish PL2303HXD
/ PL2303TA / PL2303HX(A)/XA

Johan Hovold <johan@kernel.org> 於 2021年2月24日 週三 上午12:51寫道:
>
> On Tue, Feb 23, 2021 at 11:30:41AM -0500, Michael G. Katzmann wrote:
> > On 2/23/21 11:14 AM, Johan Hovold wrote:
> > > I only have an HXD (and a GC) here.
> > >
> > > The HXD has bcdUSB as 1.10 unlike your TA with 2.00, but not sure that
> > > helps.
> >
> > Sound promising .. why do you think this is this not reliable?
>
> Perhaps it is. Perhaps even bcdDevice of 3.00 is enough (includes some
> older variants that the TA replaced supposedly). Not sure anyone ever
> tried the current scheme on those older models.
>
> Charles, could you post the output of "lsusb -v" for your PL2303TA? And
> did you verify that you actually got 110 Bd with the current Linux
> driver?
>
> Johan

^ permalink raw reply	[flat|nested] 38+ messages in thread

* Re: non-standard baud rates with Prolific 2303 USB-serial
  2021-02-24  7:34                             ` Charles Yeh
@ 2021-02-24 17:00                               ` Johan Hovold
  2021-02-24 17:12                                 ` Michael G. Katzmann
  2021-03-05  9:32                                 ` Charles Yeh
  0 siblings, 2 replies; 38+ messages in thread
From: Johan Hovold @ 2021-02-24 17:00 UTC (permalink / raw)
  To: Charles Yeh
  Cc: Michael G. Katzmann, Yeh.Charles [葉榮鑫],
	linux-serial, linux-usb, Joe Abbott

On Wed, Feb 24, 2021 at 03:34:43PM +0800, Charles Yeh wrote:
> PL2303HXD
>           ===>Device Descriptor<===
> bLength:                           0x12
> bDescriptorType:                   0x01
> bcdUSB:                          0x0110
> bDeviceClass:                      0x00  -> This is an Interface Class
> Defined Device
> bDeviceSubClass:                   0x00
> bDeviceProtocol:                   0x00
> bMaxPacketSize0:                   0x40 = (64) Bytes
> idVendor:                        0x067B = Prolific Technology, Inc.
> idProduct:                       0x2303
> bcdDevice:                       0x0400
> 
> 
> 
> PL2303TA
>           ===>Device Descriptor<===
> bLength:                           0x12
> bDescriptorType:                   0x01
> bcdUSB:                          0x0200
> bDeviceClass:                      0x00  -> This is an Interface Class
> Defined Device
> bDeviceSubClass:                   0x00
> bDeviceProtocol:                   0x00
> bMaxPacketSize0:                   0x40 = (64) Bytes
> idVendor:                        0x067B = Prolific Technology, Inc.
> idProduct:                       0x2303
> bcdDevice:                       0x0300
> 
> 
> PL2303HX(A)/XA ( EOL : PHASED OUT SINCE 2012 )
>           ===>Device Descriptor<===
> bLength:                           0x12
> bDescriptorType:                   0x01
> bcdUSB:                          0x0110
> bDeviceClass:                      0x00  -> This is an Interface Class
> Defined Device
> bDeviceSubClass:                   0x00
> bDeviceProtocol:                   0x00
> bMaxPacketSize0:                   0x40 = (64) Bytes
> idVendor:                        0x067B = Prolific Technology, Inc.
> idProduct:                       0x2303
> bcdDevice:                       0x0300
> 
> 
> You can use the two fields bcdUSB & bcdDevice to distinguish PL2303HXD
> / PL2303TA / PL2303HX(A)/XA

Thanks a lot, Charles, then we know how to detect the TA.

But can you confirm that your PL2303TA works with the current Linux
driver at 110 Bd (and doesn't need the alternate divisor encoding)?

Johan

^ permalink raw reply	[flat|nested] 38+ messages in thread

* Re: non-standard baud rates with Prolific 2303 USB-serial
  2021-02-23 19:15                             ` Michael G. Katzmann
@ 2021-02-24 17:04                               ` Johan Hovold
  2021-02-24 18:13                                 ` Michael G. Katzmann
  0 siblings, 1 reply; 38+ messages in thread
From: Johan Hovold @ 2021-02-24 17:04 UTC (permalink / raw)
  To: Michael G. Katzmann
  Cc: charles-yeh, linux-serial, linux-usb, Charles Yeh, Joe Abbott

On Tue, Feb 23, 2021 at 02:15:06PM -0500, Michael G. Katzmann wrote:
> On 2/23/21 11:52 AM, Johan Hovold wrote:
> > On Tue, Feb 23, 2021 at 11:30:41AM -0500, Michael G. Katzmann wrote:
> >> On 2/23/21 11:14 AM, Johan Hovold wrote:
> >>> I only have an HXD (and a GC) here.
> >>>
> >>> The HXD has bcdUSB as 1.10 unlike your TA with 2.00, but not sure that
> >>> helps.
> >> Sound promising .. why do you think this is this not reliable?
> > Perhaps it is. Perhaps even bcdDevice of 3.00 is enough (includes some
> > older variants that the TA replaced supposedly). Not sure anyone ever
> > tried the current scheme on those older models.
> >
> > Charles, could you post the output of "lsusb -v" for your PL2303TA? And
> > did you verify that you actually got 110 Bd with the current Linux
> > driver?
> >
> > Johan
> 
> Here is the USB packet capture from Wireshark oon Windows 10 when:
> 
> 1) plugging in pl2303 (packets 18-393)
> 
> 2) setting the device wia cmd line to 110/even/7 bits/2 stop (packets 393-690)
> 
> (device is on port 1.7)
> 
> https://drive.google.com/file/d/17TkV9JB2iFNdr4LvRftBnV3_DgITGvUH/view?usp=sharing
> 
> There are orders of magnitude more traffic than in Linux!

Thanks, I'm sure this will come in handy, but I haven't had time to dig
into it myself yet.

Best case, all TAs need the alternate encoding, but Charles seems to
suggest it isn't that easy and in which case the answer probably lies in
these traces.

Perhaps you can even figure out how to poll for an empty TX FIFO from
it, unless Charles is able to provide some details on that separate
matter?

Johan

^ permalink raw reply	[flat|nested] 38+ messages in thread

* Re: non-standard baud rates with Prolific 2303 USB-serial
  2021-02-24 17:00                               ` Johan Hovold
@ 2021-02-24 17:12                                 ` Michael G. Katzmann
  2021-03-05  9:32                                 ` Charles Yeh
  1 sibling, 0 replies; 38+ messages in thread
From: Michael G. Katzmann @ 2021-02-24 17:12 UTC (permalink / raw)
  To: Johan Hovold, Charles Yeh
  Cc: Yeh.Charles [葉榮鑫],
	linux-serial, linux-usb, Joe Abbott

On 2/24/21 12:00 PM, Johan Hovold wrote:
> On Wed, Feb 24, 2021 at 03:34:43PM +0800, Charles Yeh wrote:
> But can you confirm that your PL2303TA works with the current Linux
> driver at 110 Bd (and doesn't need the alternate divisor encoding)?
>
> Johan

And by works ... please confirm that the PL2303TA is ACTUALLY outputting data at 110bd (9.09ms bit width) with the current setting provided by the Linux driver.

Michael


^ permalink raw reply	[flat|nested] 38+ messages in thread

* Re: non-standard baud rates with Prolific 2303 USB-serial
  2021-02-24 17:04                               ` Johan Hovold
@ 2021-02-24 18:13                                 ` Michael G. Katzmann
  2021-02-25  8:42                                   ` Johan Hovold
  0 siblings, 1 reply; 38+ messages in thread
From: Michael G. Katzmann @ 2021-02-24 18:13 UTC (permalink / raw)
  To: Johan Hovold
  Cc: charles-yeh, linux-serial, linux-usb, Charles Yeh, Joe Abbott

On 2/24/21 12:04 PM, Johan Hovold wrote:
> Perhaps you can even figure out how to poll for an empty TX FIFO from
> it, unless Charles is able to provide some details on that separate
> matter?
>
I presume from the code below, that when the device is closed, all data waiting to send is clobbered (if so, so the problem is the driver and not the device)

I would have thought that the driver should drain the buffers. I can see that this might be a problem if there is flow control (it may never drain) but the current method seems pretty brutal.


119 void usb_serial_generic_close(struct usb_serial_port *port)
120 {
121         unsigned long flags;
122         int i;
123
124         if (port->bulk_out_size) {
125                 for (i = 0; i < ARRAY_SIZE(port->write_urbs); ++i)
126                         usb_kill_urb(port->write_urbs[i]);
127
128                 spin_lock_irqsave(&port->lock, flags);
129                 kfifo_reset_out(&port->write_fifo);
130                 spin_unlock_irqrestore(&port->lock, flags);
131         }
132         if (port->bulk_in_size) {
133                 for (i = 0; i < ARRAY_SIZE(port->read_urbs); ++i)
134                         usb_kill_urb(port->read_urbs[i]);
135         }
136 }


^ permalink raw reply	[flat|nested] 38+ messages in thread

* Re: non-standard baud rates with Prolific 2303 USB-serial
  2021-02-22 16:48                   ` Johan Hovold
@ 2021-02-24 23:08                     ` Joe Abbott
  2021-02-25  8:44                       ` Johan Hovold
  0 siblings, 1 reply; 38+ messages in thread
From: Joe Abbott @ 2021-02-24 23:08 UTC (permalink / raw)
  To: Johan Hovold
  Cc: Michael G. Katzmann, charles-yeh, linux-serial, linux-usb, Charles Yeh

On Mon, Feb 22, 2021 at 10:48 AM Johan Hovold <johan@kernel.org> wrote:

>
> Joe, would you mind posting the output of "lsusb -v" for your device as
> well?
>
Bus 007 Device 002: ID 067b:2303 Prolific Technology, Inc. PL2303 Serial Port
Device Descriptor:
  bLength                18
  bDescriptorType         1
  bcdUSB               2.00
  bDeviceClass            0 (Defined at Interface level)
  bDeviceSubClass         0
  bDeviceProtocol         0
  bMaxPacketSize0        64
  idVendor           0x067b Prolific Technology, Inc.
  idProduct          0x2303 PL2303 Serial Port
  bcdDevice            3.00
  iManufacturer           1 Prolific Technology Inc.
  iProduct                2 USB-Serial Controller
  iSerial                 0
  bNumConfigurations      1
  Configuration Descriptor:
    bLength                 9
    bDescriptorType         2
    wTotalLength           39
    bNumInterfaces          1
    bConfigurationValue     1
    iConfiguration          0
    bmAttributes         0xa0
      (Bus Powered)
      Remote Wakeup
    MaxPower              100mA
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        0
      bAlternateSetting       0
      bNumEndpoints           3
      bInterfaceClass       255 Vendor Specific Class
      bInterfaceSubClass      0
      bInterfaceProtocol      0
      iInterface              0
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x81  EP 1 IN
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x000a  1x 10 bytes
        bInterval               1
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x02  EP 2 OUT
        bmAttributes            2
          Transfer Type            Bulk
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0040  1x 64 bytes
        bInterval               0
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x83  EP 3 IN
        bmAttributes            2
          Transfer Type            Bulk
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0040  1x 64 bytes
        bInterval               0
Device Status:     0x0000
  (Bus Powered)

Also, here's the 110b windows wireshark capture
https://drive.google.com/file/d/1HP5RMRtP11zm4uQNzqlcbILGwebDJaOz/view?usp=sharing

Joe

^ permalink raw reply	[flat|nested] 38+ messages in thread

* Re: non-standard baud rates with Prolific 2303 USB-serial
  2021-02-24 18:13                                 ` Michael G. Katzmann
@ 2021-02-25  8:42                                   ` Johan Hovold
  2021-04-08 15:35                                     ` Johan Hovold
  0 siblings, 1 reply; 38+ messages in thread
From: Johan Hovold @ 2021-02-25  8:42 UTC (permalink / raw)
  To: Michael G. Katzmann
  Cc: charles-yeh, linux-serial, linux-usb, Charles Yeh, Joe Abbott

On Wed, Feb 24, 2021 at 01:13:39PM -0500, Michael G. Katzmann wrote:
> On 2/24/21 12:04 PM, Johan Hovold wrote:
> > Perhaps you can even figure out how to poll for an empty TX FIFO from
> > it, unless Charles is able to provide some details on that separate
> > matter?
> 
> I presume from the code below, that when the device is closed, all
> data waiting to send is clobbered (if so, so the problem is the driver
> and not the device)
> 
> I would have thought that the driver should drain the buffers. I can
> see that this might be a problem if there is flow control (it may
> never drain) but the current method seems pretty brutal.

We do; the code below isn't called until after we've waited for the
buffers to drain (driver buffers + device FIFO).

I'll provide a patch so that you can extend the timeout for draining the
driver buffers (defaults to 30 s), but the main problem is that we don't
know how to query the PL2303 FIFO fill level.

> 119 void usb_serial_generic_close(struct usb_serial_port *port)
> 120 {
> 121         unsigned long flags;
> 122         int i;
> 123
> 124         if (port->bulk_out_size) {
> 125                 for (i = 0; i < ARRAY_SIZE(port->write_urbs); ++i)
> 126                         usb_kill_urb(port->write_urbs[i]);
> 127
> 128                 spin_lock_irqsave(&port->lock, flags);
> 129                 kfifo_reset_out(&port->write_fifo);
> 130                 spin_unlock_irqrestore(&port->lock, flags);
> 131         }
> 132         if (port->bulk_in_size) {
> 133                 for (i = 0; i < ARRAY_SIZE(port->read_urbs); ++i)
> 134                         usb_kill_urb(port->read_urbs[i]);
> 135         }
> 136 }

Johan

^ permalink raw reply	[flat|nested] 38+ messages in thread

* Re: non-standard baud rates with Prolific 2303 USB-serial
  2021-02-24 23:08                     ` Joe Abbott
@ 2021-02-25  8:44                       ` Johan Hovold
  0 siblings, 0 replies; 38+ messages in thread
From: Johan Hovold @ 2021-02-25  8:44 UTC (permalink / raw)
  To: Joe Abbott
  Cc: Michael G. Katzmann, charles-yeh, linux-serial, linux-usb, Charles Yeh

On Wed, Feb 24, 2021 at 05:08:28PM -0600, Joe Abbott wrote:
> On Mon, Feb 22, 2021 at 10:48 AM Johan Hovold <johan@kernel.org> wrote:

> > Joe, would you mind posting the output of "lsusb -v" for your device as
> > well?
> >
> Bus 007 Device 002: ID 067b:2303 Prolific Technology, Inc. PL2303 Serial Port
> Device Descriptor:

> Also, here's the 110b windows wireshark capture
> https://drive.google.com/file/d/1HP5RMRtP11zm4uQNzqlcbILGwebDJaOz/view?usp=sharing

Thanks, Joe!

Johan

^ permalink raw reply	[flat|nested] 38+ messages in thread

* Re: non-standard baud rates with Prolific 2303 USB-serial
  2021-02-24 17:00                               ` Johan Hovold
  2021-02-24 17:12                                 ` Michael G. Katzmann
@ 2021-03-05  9:32                                 ` Charles Yeh
  2021-03-05  9:36                                   ` Johan Hovold
  1 sibling, 1 reply; 38+ messages in thread
From: Charles Yeh @ 2021-03-05  9:32 UTC (permalink / raw)
  To: Johan Hovold
  Cc: Michael G. Katzmann, Yeh.Charles [葉榮鑫],
	linux-serial, linux-usb, Joe Abbott

110 bps is not the standard Baud rate,
PL2303TA don't work with the current Linux driver (d5 0e 00 80), It
needs to "a8 a6 01 80"

Charles.

Johan Hovold <johan@kernel.org> 於 2021年2月25日 週四 上午1:00寫道:

> But can you confirm that your PL2303TA works with the current Linux
> driver at 110 Bd (and doesn't need the alternate divisor encoding)?
>

^ permalink raw reply	[flat|nested] 38+ messages in thread

* Re: non-standard baud rates with Prolific 2303 USB-serial
  2021-03-05  9:32                                 ` Charles Yeh
@ 2021-03-05  9:36                                   ` Johan Hovold
  2021-03-06 20:18                                     ` Michael G. Katzmann
  2021-03-07  4:15                                     ` Michael G. Katzmann
  0 siblings, 2 replies; 38+ messages in thread
From: Johan Hovold @ 2021-03-05  9:36 UTC (permalink / raw)
  To: Charles Yeh
  Cc: Michael G. Katzmann, Yeh.Charles [葉榮鑫],
	linux-serial, linux-usb, Joe Abbott

On Fri, Mar 05, 2021 at 05:32:23PM +0800, Charles Yeh wrote:
> 110 bps is not the standard Baud rate,
> PL2303TA don't work with the current Linux driver (d5 0e 00 80), It
> needs to "a8 a6 01 80"

Ok, thanks for confirming. Then we should be able to fix this up based
on Michael's findings.

> Johan Hovold <johan@kernel.org> 於 2021年2月25日 週四 上午1:00寫道:
> 
> > But can you confirm that your PL2303TA works with the current Linux
> > driver at 110 Bd (and doesn't need the alternate divisor encoding)?

Johan

^ permalink raw reply	[flat|nested] 38+ messages in thread

* Re: non-standard baud rates with Prolific 2303 USB-serial
  2021-03-05  9:36                                   ` Johan Hovold
@ 2021-03-06 20:18                                     ` Michael G. Katzmann
  2021-03-07  4:15                                     ` Michael G. Katzmann
  1 sibling, 0 replies; 38+ messages in thread
From: Michael G. Katzmann @ 2021-03-06 20:18 UTC (permalink / raw)
  To: Johan Hovold, Charles Yeh
  Cc: Yeh.Charles [葉榮鑫],
	linux-serial, linux-usb, Joe Abbott

On 3/5/21 4:36 AM, Johan Hovold wrote:
> On Fri, Mar 05, 2021 at 05:32:23PM +0800, Charles Yeh wrote:
>> 110 bps is not the standard Baud rate,
>> PL2303TA don't work with the current Linux driver (d5 0e 00 80), It
>> needs to "a8 a6 01 80"
> 
> Ok, thanks for confirming. Then we should be able to fix this up based
> on Michael's findings.
> 
>> Johan Hovold <johan@kernel.org> 於 2021年2月25日 週四 上午1:00寫道:
>>
>>> But can you confirm that your PL2303TA works with the current Linux
>>> driver at 110 Bd (and doesn't need the alternate divisor encoding)?
> 
> Johan
> 

How about... altering the call to pl2303_encode_baud_rate_divisor (adding 'port')
       baud = pl2303_encode_baud_rate_divisor(port, buf, baud);

and checking for model and altering algorithm as below.

I've tested this on the TA version.

Michael



static speed_t pl2303_encode_baud_rate_divisor(struct usb_serial_port *port, unsigned char buf[4],
                                speed_t baud)
{
    unsigned int baseline, mantissa, exponent;
        unsigned int bcdDevice = port->serial->dev->descriptor.bcdDevice;
        unsigned int bcdUSB = port->serial->dev->descriptor.bcdUSB;

        enum model { eUNKNOWN, eHXD, eHXA, eTA } model;

   if ( bcdUSB == 0x0110 ) {
       if( bcdDevice == 0x0400 )
           model = eHXD;
       else if ( bcdDevice == 0x0300 )
           model = eHXA; // PL2303HX(A)/XA ( EOL : PHASED OUT SINCE 2012 )
       else
          model = eUNKNOWN;
    } else if( bcdUSB == 0x200 && bcdDevice == 0x0300 ) {
        model = eTA;
    }
    /*
     * Apparently the formula is:
     *   baudrate = 12M * 32 / (mantissa * 4^exponent)
     * where
     *   mantissa = buf[8:0]
     *   exponent = buf[11:9]
         *
         * TA version has more precision
         *      uses mantissa = buf[bits 10:0 ]
     *           exponent = buf[bits 15:13]
     *  and x2 prescaler enable by buf[bit 16]
     */
    baseline = 12000000 * 32;
    mantissa = baseline / baud;
    if (mantissa == 0)
        mantissa = 1;    /* Avoid dividing by zero if baud > 32*12M. */
    exponent = 0;

    if ( model == eTA ) {
        while (mantissa >= 2048) {
            // n.b. below is speculative for the TA chip and is based on original code
            if (exponent < 15) {   // we are going to divide this by 2 later
                mantissa >>= 1;    // divide by 2
                exponent++;        // currently log2 ... will become log4
            } else {
                /* Exponent is maxed. Trim mantissa and leave. */
                mantissa = 2047 ;
                break;
            }
        }
        buf[2] = exponent & 0x01;  // activate x2 prescaler if needed
        exponent >>= 1;            // now log base 4 (losing LSB)
        buf[1] = (exponent << 5) | (mantissa >> 8);
    } else {
        while (mantissa >= 512) {
            if (exponent < 7) {
                mantissa >>= 2; /* divide by 4 */
                exponent++;
            } else {
                /* Exponent is maxed. Trim mantissa and leave. */
                mantissa = 511;
                break;
           }
        }
        buf[2] = 0;
        buf[1] = exponent << 1 | mantissa >> 8;
    }

    buf[3] = 0x80;
    buf[0] = mantissa & 0xff;

    /* Calculate and return the exact baud rate. */
    baud = (baseline / mantissa / (buf[2] == 0x01 ? 2:1)) >> (exponent << 1);
    return baud;
}




^ permalink raw reply	[flat|nested] 38+ messages in thread

* Re: non-standard baud rates with Prolific 2303 USB-serial
  2021-03-05  9:36                                   ` Johan Hovold
  2021-03-06 20:18                                     ` Michael G. Katzmann
@ 2021-03-07  4:15                                     ` Michael G. Katzmann
  2021-03-11 16:08                                       ` Johan Hovold
  1 sibling, 1 reply; 38+ messages in thread
From: Michael G. Katzmann @ 2021-03-07  4:15 UTC (permalink / raw)
  To: Johan Hovold, Charles Yeh
  Cc: Yeh.Charles [葉榮鑫],
	linux-serial, linux-usb, Joe Abbott


On 3/5/21 4:36 AM, Johan Hovold wrote:

oops I should have looked at the previous code determining variants...

take 2...


#define PL2303_QUIRK_DIVISOR_TA                 BIT(3)

enum pl2303_type {
	TYPE_01,	/* Type 0 and 1 (difference unknown) */
	TYPE_HX,	/* HX version of the pl2303 chip */
	TYPE_HXN,	/* HXN version of the pl2303 chip */
	TYPE_TA,	/* TA version of the pl2303 chip */
	TYPE_COUNT
};


static const struct pl2303_type_data pl2303_type_data[TYPE_COUNT] =
....
        [TYPE_TA] = {
                .max_baud_rate          = 6000000,
                .quirks                 = PL2303_QUIRK_DIVISOR_TA,
        },
};

static int pl2303_startup(struct usb_serial *serial)
{
....
	if ( serial->dev->descriptor.bcdDevice == 0x0300 && serial->dev->descriptor.bcdUSB == 0x0200 )
		type = TYPE_TA;
	else if (serial->dev->descriptor.bDeviceClass == 0x02)
....
}

static speed_t pl2303_encode_baud_rate_divisor( struct usb_serial_port *port,
							unsigned char buf[4],
								speed_t baud)
{
	unsigned int baseline, mantissa, exponent;
	struct usb_serial *serial = port->serial;
	struct pl2303_serial_private *spriv = usb_get_serial_data(serial);

	/*
	 * Apparently the formula is:
	 * baudrate = 12M * 32 / (mantissa * 4^exponent)
	 * where
	 *   mantissa = buf[8:0]
	 *   exponent = buf[11:9]
	 *
	 * TA version has more precision
	 *      uses mantissa = buf[bits 10:0 ]
	 *           exponent = buf[bits 15:13]
	 *  and x2 prescaler enable by buf[bit 16]
	 */
	baseline = 12000000 * 32;
	mantissa = baseline / baud;
	if (mantissa == 0)
		mantissa = 1;    /* Avoid dividing by zero if baud > 32*12M. */
	exponent = 0;

	if (spriv->quirks & PL2303_QUIRK_DIVISOR_TA) {
		while (mantissa >= 2048) {
			// exponent is three bits (after shifting right)
			if (exponent < 15) {   // we are going to divide this by 2 later
				mantissa >>= 1;    // divide by 2
				exponent++;        // currently log2 ... will become log4
			} else {
				/* Exponent is maxed. Trim mantissa and leave. */
				mantissa = 2047 ;
				break;
			}
		}
		buf[2] = exponent & 0x01;  // activate x2 prescaler if needed
		exponent >>= 1;            // now log base 4 (losing LSB)
		buf[1] = (exponent << 5) | (mantissa >> 8);
	} else {
		while (mantissa >= 512) {
			if (exponent < 7) {
				mantissa >>= 2; /* divide by 4 */
				exponent++;
			} else {
				/* Exponent is maxed. Trim mantissa and leave. */
				mantissa = 511;
				break;
			}
		}
		buf[2] = 0;
		buf[1] = exponent << 1 | mantissa >> 8;
	}

	buf[3] = 0x80;
	buf[0] = mantissa & 0xff;

	/* Calculate and return the exact baud rate. */
	baud = (baseline / mantissa / (buf[2] == 0x01 ? 2:1)) >> (exponent << 1);
	return baud;
}

static void pl2303_encode_baud_rate(struct tty_struct *tty,
					struct usb_serial_port *port,
					u8 buf[4])
{
....
	else
		baud = pl2303_encode_baud_rate_divisor(port, buf, baud);
....
}

^ permalink raw reply	[flat|nested] 38+ messages in thread

* Re: non-standard baud rates with Prolific 2303 USB-serial
  2021-03-07  4:15                                     ` Michael G. Katzmann
@ 2021-03-11 16:08                                       ` Johan Hovold
  2021-03-12 13:17                                         ` Michael G. Katzmann
  0 siblings, 1 reply; 38+ messages in thread
From: Johan Hovold @ 2021-03-11 16:08 UTC (permalink / raw)
  To: Michael G. Katzmann
  Cc: Charles Yeh, Yeh.Charles [葉榮鑫],
	linux-serial, linux-usb, Joe Abbott

On Sat, Mar 06, 2021 at 11:15:52PM -0500, Michael G. Katzmann wrote:
> 
> On 3/5/21 4:36 AM, Johan Hovold wrote:
> 
> oops I should have looked at the previous code determining variants...
> 
> take 2...
>
> #define PL2303_QUIRK_DIVISOR_TA                 BIT(3)
> 
> enum pl2303_type {
> 	TYPE_01,	/* Type 0 and 1 (difference unknown) */
> 	TYPE_HX,	/* HX version of the pl2303 chip */
> 	TYPE_HXN,	/* HXN version of the pl2303 chip */
> 	TYPE_TA,	/* TA version of the pl2303 chip */
> 	TYPE_COUNT
> };
> 
> 
> static const struct pl2303_type_data pl2303_type_data[TYPE_COUNT] =
> ....
>         [TYPE_TA] = {
>                 .max_baud_rate          = 6000000,
>                 .quirks                 = PL2303_QUIRK_DIVISOR_TA,

I think we should just a new flag for the alternate divisor encoding
named "alt_divisors" (cf. no_divisors).

Chances are this encoding is used for other types as well.

>         },
> };
> 
> static int pl2303_startup(struct usb_serial *serial)
> {
> ....
> 	if ( serial->dev->descriptor.bcdDevice == 0x0300 && serial->dev->descriptor.bcdUSB == 0x0200 )
> 		type = TYPE_TA;

This needs to go after the bDeviceClass == 0x02 check, and the 
descriptor fields need to be accessed using le16_to_cpu().

I've prepared a patch series that clean up and tighten the type
detection which I suggest you built upon instead.

I'll post the series after replying here.

> 	else if (serial->dev->descriptor.bDeviceClass == 0x02)
> ....
> }
> 
> static speed_t pl2303_encode_baud_rate_divisor( struct usb_serial_port *port,
> 							unsigned char buf[4],
> 								speed_t baud)
> {
> 	unsigned int baseline, mantissa, exponent;
> 	struct usb_serial *serial = port->serial;
> 	struct pl2303_serial_private *spriv = usb_get_serial_data(serial);
> 
> 	/*
> 	 * Apparently the formula is:
> 	 * baudrate = 12M * 32 / (mantissa * 4^exponent)
> 	 * where
> 	 *   mantissa = buf[8:0]
> 	 *   exponent = buf[11:9]
> 	 *
> 	 * TA version has more precision
> 	 *      uses mantissa = buf[bits 10:0 ]

So you discovered that there were even more bits here? Your first
version used ten bits, I believe.

I got an offline mail from a third person having problems with the TA
and who had also verified eleven bits here.

> 	 *           exponent = buf[bits 15:13]
> 	 *  and x2 prescaler enable by buf[bit 16]
> 	 */
> 	baseline = 12000000 * 32;
> 	mantissa = baseline / baud;
> 	if (mantissa == 0)
> 		mantissa = 1;    /* Avoid dividing by zero if baud > 32*12M. */
> 	exponent = 0;
> 
> 	if (spriv->quirks & PL2303_QUIRK_DIVISOR_TA) {
> 		while (mantissa >= 2048) {
> 			// exponent is three bits (after shifting right)
> 			if (exponent < 15) {   // we are going to divide this by 2 later
> 				mantissa >>= 1;    // divide by 2
> 				exponent++;        // currently log2 ... will become log4
> 			} else {
> 				/* Exponent is maxed. Trim mantissa and leave. */
> 				mantissa = 2047 ;
> 				break;
> 			}
> 		}
> 		buf[2] = exponent & 0x01;  // activate x2 prescaler if needed
> 		exponent >>= 1;            // now log base 4 (losing LSB)
> 		buf[1] = (exponent << 5) | (mantissa >> 8);

Again, this is really nice work.

But it seems to me that we should simply think about the encoding as
using base-2 with the LSB of the exponent in bit 16. That should make it
easier to follow what's going on here.

I've been thinking about ways of merging the two schemes (both using
base 2), and I even checked if my HXD happened to have a 2-prescaler bit
somewhere as well but I couldn't find one.

It's probably not worth it at this point (and may not end up being more
readable anyway) so I therefore suggest adding a separate function for
the alternate scheme for now. You can just call it at the start of the
"default" function:

	if (spriv->type->alt_divisors)
		return pl2303_encode_baud_rate_divisor_alt(buf, baud);

> 	} else {
> 		while (mantissa >= 512) {
> 			if (exponent < 7) {
> 				mantissa >>= 2; /* divide by 4 */
> 				exponent++;
> 			} else {
> 				/* Exponent is maxed. Trim mantissa and leave. */
> 				mantissa = 511;
> 				break;
> 			}
> 		}
> 		buf[2] = 0;
> 		buf[1] = exponent << 1 | mantissa >> 8;
> 	}
> 
> 	buf[3] = 0x80;
> 	buf[0] = mantissa & 0xff;
> 
> 	/* Calculate and return the exact baud rate. */
> 	baud = (baseline / mantissa / (buf[2] == 0x01 ? 2:1)) >> (exponent << 1);
> 	return baud;
> }
> 
> static void pl2303_encode_baud_rate(struct tty_struct *tty,
> 					struct usb_serial_port *port,
> 					u8 buf[4])
> {
> ....
> 	else
> 		baud = pl2303_encode_baud_rate_divisor(port, buf, baud);
> ....
> }

Johan

^ permalink raw reply	[flat|nested] 38+ messages in thread

* Re: non-standard baud rates with Prolific 2303 USB-serial
  2021-03-11 16:08                                       ` Johan Hovold
@ 2021-03-12 13:17                                         ` Michael G. Katzmann
  2021-03-12 13:44                                           ` Johan Hovold
  0 siblings, 1 reply; 38+ messages in thread
From: Michael G. Katzmann @ 2021-03-12 13:17 UTC (permalink / raw)
  To: Johan Hovold
  Cc: Charles Yeh, Yeh.Charles [葉榮鑫],
	linux-serial, linux-usb, Joe Abbott

On 3/11/21 11:08 AM, Johan Hovold wrote:
> I think we should just a new flag for the alternate divisor encoding
> named "alt_divisors" (cf. no_divisors).
>
> Chances are this encoding is used for other types as well.
>
>>         },
>> };
>>
>> static int pl2303_startup(struct usb_serial *serial)
>> {
>> ....
>> 	if ( serial->dev->descriptor.bcdDevice == 0x0300 && serial->dev->descriptor.bcdUSB == 0x0200 )
>> 		type = TYPE_TA;
> This needs to go after the bDeviceClass == 0x02 check, and the 
> descriptor fields need to be accessed using le16_to_cpu().
>
> I've prepared a patch series that clean up and tighten the type
> detection which I suggest you built upon instead.
>
> I'll post the series after replying here.
>
>> 	else if (serial->dev->descriptor.bDeviceClass == 0x02)
>> ....
>> }
>>
>> static speed_t pl2303_encode_baud_rate_divisor( struct usb_serial_port *port,
>> 							unsigned char buf[4],
>> 								speed_t baud)
>> {
>> 	unsigned int baseline, mantissa, exponent;
>> 	struct usb_serial *serial = port->serial;
>> 	struct pl2303_serial_private *spriv = usb_get_serial_data(serial);
>>
>> 	/*
>> 	 * Apparently the formula is:
>> 	 * baudrate = 12M * 32 / (mantissa * 4^exponent)
>> 	 * where
>> 	 *   mantissa = buf[8:0]
>> 	 *   exponent = buf[11:9]
>> 	 *
>> 	 * TA version has more precision
>> 	 *      uses mantissa = buf[bits 10:0 ]
> So you discovered that there were even more bits here? Your first
> version used ten bits, I believe.
>
> I got an offline mail from a third person having problems with the TA
> and who had also verified eleven bits here.

I was basing this on Joe's discovery of the value used for 110 bd by the windows driver (confirmed by Charles). The sequence 80 01 a6 a8 implies that the mantissa is 0x6a8 (i.e. 11 bits). The tests that I did seemed to confirm this.

>> 	 *           exponent = buf[bits 15:13]
>> 	 *  and x2 prescaler enable by buf[bit 16]
>> 	 */
>> 	baseline = 12000000 * 32;
>> 	mantissa = baseline / baud;
>> 	if (mantissa == 0)
>> 		mantissa = 1;    /* Avoid dividing by zero if baud > 32*12M. */
>> 	exponent = 0;
>>
>> 	if (spriv->quirks & PL2303_QUIRK_DIVISOR_TA) {
>> 		while (mantissa >= 2048) {
>> 			// exponent is three bits (after shifting right)
>> 			if (exponent < 15) {   // we are going to divide this by 2 later
>> 				mantissa >>= 1;    // divide by 2
>> 				exponent++;        // currently log2 ... will become log4
>> 			} else {
>> 				/* Exponent is maxed. Trim mantissa and leave. */
>> 				mantissa = 2047 ;
>> 				break;
>> 			}
>> 		}
>> 		buf[2] = exponent & 0x01;  // activate x2 prescaler if needed
>> 		exponent >>= 1;            // now log base 4 (losing LSB)
>> 		buf[1] = (exponent << 5) | (mantissa >> 8);
> Again, this is really nice work.
>
> But it seems to me that we should simply think about the encoding as
> using base-2 with the LSB of the exponent in bit 16. That should make it
> easier to follow what's going on here.

I quite agree. It would be cleaner.


>
> I've been thinking about ways of merging the two schemes (both using
> base 2), and I even checked if my HXD happened to have a 2-prescaler bit
> somewhere as well but I couldn't find one.
>
> It's probably not worth it at this point (and may not end up being more
> readable anyway) so I therefore suggest adding a separate function for
> the alternate scheme for now. You can just call it at the start of the
> "default" function:
>
> 	if (spriv->type->alt_divisors)
> 		return pl2303_encode_baud_rate_divisor_alt(buf, baud);


Pardon my ignorance of the process but where is the git repo for this development branch?

Michael



^ permalink raw reply	[flat|nested] 38+ messages in thread

* Re: non-standard baud rates with Prolific 2303 USB-serial
  2021-03-12 13:17                                         ` Michael G. Katzmann
@ 2021-03-12 13:44                                           ` Johan Hovold
  2021-03-12 20:29                                             ` Michael G. Katzmann
  2021-03-13  1:28                                             ` Michael G. Katzmann
  0 siblings, 2 replies; 38+ messages in thread
From: Johan Hovold @ 2021-03-12 13:44 UTC (permalink / raw)
  To: Michael G. Katzmann
  Cc: Charles Yeh, Yeh.Charles [葉榮鑫],
	linux-serial, linux-usb, Joe Abbott

On Fri, Mar 12, 2021 at 08:17:55AM -0500, Michael G. Katzmann wrote:
> On 3/11/21 11:08 AM, Johan Hovold wrote:

> >> static speed_t pl2303_encode_baud_rate_divisor( struct usb_serial_port *port,
> >> 							unsigned char buf[4],
> >> 								speed_t baud)
> >> {
> >> 	unsigned int baseline, mantissa, exponent;
> >> 	struct usb_serial *serial = port->serial;
> >> 	struct pl2303_serial_private *spriv = usb_get_serial_data(serial);
> >>
> >> 	/*
> >> 	 * Apparently the formula is:
> >> 	 * baudrate = 12M * 32 / (mantissa * 4^exponent)
> >> 	 * where
> >> 	 *   mantissa = buf[8:0]
> >> 	 *   exponent = buf[11:9]
> >> 	 *
> >> 	 * TA version has more precision
> >> 	 *      uses mantissa = buf[bits 10:0 ]
> > So you discovered that there were even more bits here? Your first
> > version used ten bits, I believe.
> >
> > I got an offline mail from a third person having problems with the TA
> > and who had also verified eleven bits here.
> 
> I was basing this on Joe's discovery of the value used for 110 bd by
> the windows driver (confirmed by Charles). The sequence 80 01 a6 a8
> implies that the mantissa is 0x6a8 (i.e. 11 bits). The tests that I
> did seemed to confirm this.

Ah, of course.

> Pardon my ignorance of the process but where is the git repo for this
> development branch?

I'll wait for a few days before applying the series I posted yesterday
to the usb-next (development) branch, but I've pushed a pl2303-wip
branch for you that you can use use until then:

	https://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git/log/?h=pl2303-wip

You can fetch from

	https://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git

Johan

^ permalink raw reply	[flat|nested] 38+ messages in thread

* Re: non-standard baud rates with Prolific 2303 USB-serial
  2021-03-12 13:44                                           ` Johan Hovold
@ 2021-03-12 20:29                                             ` Michael G. Katzmann
  2021-03-13  1:28                                             ` Michael G. Katzmann
  1 sibling, 0 replies; 38+ messages in thread
From: Michael G. Katzmann @ 2021-03-12 20:29 UTC (permalink / raw)
  To: Johan Hovold
  Cc: Charles Yeh, Yeh.Charles [葉榮鑫],
	linux-serial, linux-usb, Joe Abbott

On 3/12/21 8:44 AM, Johan Hovold wrote:

See diff to your branch below.

Unless we do what I originally did and pass 'port'  to pl2303_encode_baud_rate_divisor we cannot test for 'alt_divisor there.

I did this test in pl2303_encode_baud_rate instead so it looks like ...

        if (baud == baud_sup)
                baud = pl2303_encode_baud_rate_direct(buf, baud);
        else if (spriv->type->alt_divisors)
                baud = pl2303_encode_baud_rate_divisor_alt(buf, baud);
        else
                baud = pl2303_encode_baud_rate_divisor(buf, baud);


Michael


191d190
<     unsigned int alt_divisors:1;
221d219
<         .alt_divisors        = true,
226d223
<         .alt_divisors        = true,
625,664d620
< static speed_t pl2303_encode_baud_rate_divisor_alt(unsigned char buf[4],
<                                                                 speed_t baud)
< {
<         unsigned int baseline, mantissa, exponent;
<
<         /*
<          * Apparently, for the TA version the formula is:
<          *   baudrate = 12M * 32 / (mantissa * 2^exponent)
<          * where
<          *   mantissa = buf[10:0]
<          *   exponent = buf[15:13 16]
<          */
<         baseline = 12000000 * 32;
<         mantissa = baseline / baud;
<         if (mantissa == 0)
<                 mantissa = 1;   /* Avoid dividing by zero if baud > 32*12M. */
<         exponent = 0;
<         while (mantissa >= 2048) {
<                 if (exponent < 15) {
<                         mantissa >>= 1; /* divide by 2 */
<                         exponent++;
<                 } else {
<                         /* Exponent is maxed. Trim mantissa and leave. */
<                         mantissa = 2047;
<                         break;
<                 }
<         }
<
<         buf[3] = 0x80;
<         buf[2] = exponent & 0x01; // LS bit of exponent
<         buf[1] = (exponent & ~0x01) << 4 | mantissa >> 8; // 3 bits of the exponent and MS 3 bits of the mantissa
<         buf[0] = mantissa & 0xff; // LS 8 bits of the mantissa
<
<         /* Calculate and return the exact baud rate. */
<         baud = (baseline / mantissa) >> exponent;
<
<         return baud;
< }
<
<
692,693d647
<     else if (spriv->type->alt_divisors)
<                 baud = pl2303_encode_baud_rate_divisor_alt(buf, baud);


^ permalink raw reply	[flat|nested] 38+ messages in thread

* Re: non-standard baud rates with Prolific 2303 USB-serial
  2021-03-12 13:44                                           ` Johan Hovold
  2021-03-12 20:29                                             ` Michael G. Katzmann
@ 2021-03-13  1:28                                             ` Michael G. Katzmann
  2021-03-15  9:07                                               ` Johan Hovold
  1 sibling, 1 reply; 38+ messages in thread
From: Michael G. Katzmann @ 2021-03-13  1:28 UTC (permalink / raw)
  To: Johan Hovold
  Cc: Charles Yeh, Yeh.Charles [葉榮鑫],
	linux-serial, linux-usb, Joe Abbott

On 3/12/21 8:44 AM, Johan Hovold wrote:


Let me try that patch in the right format 8-)


--- a/drivers/usb/serial/pl2303.c    2021-03-12 09:30:22.963992109 -0500
+++ b/drivers/usb/serial/pl2303.c    2021-03-12 20:00:20.003526891 -0500
@@ -188,6 +188,7 @@
     unsigned long quirks;
     unsigned int no_autoxonxoff:1;
     unsigned int no_divisors:1;
+    unsigned int alt_divisors:1;
 };
 
 struct pl2303_serial_private {
@@ -217,10 +218,12 @@
     [TYPE_TA] = {
         .name            = "TA",
         .max_baud_rate        = 6000000,
+        .alt_divisors        = true,
     },
     [TYPE_TB] = {
         .name            = "TB",
         .max_baud_rate        = 12000000,
+        .alt_divisors        = true,
     },
     [TYPE_HXD] = {
         .name            = "HXD",
@@ -618,6 +621,46 @@
     return baud;
 }
 
+static speed_t pl2303_encode_baud_rate_divisor_alt(unsigned char buf[4],
+                                                                speed_t baud)
+{
+        unsigned int baseline, mantissa, exponent;
+
+        /*
+         * Apparently, for the TA version the formula is:
+         *   baudrate = 12M * 32 / (mantissa * 2^exponent)
+         * where
+         *   mantissa = buf[10:0]
+         *   exponent = buf[15:13 16]
+         */
+        baseline = 12000000 * 32;
+        mantissa = baseline / baud;
+        if (mantissa == 0)
+                mantissa = 1;   /* Avoid dividing by zero if baud > 32*12M. */
+        exponent = 0;
+        while (mantissa >= 2048) {
+                if (exponent < 15) {
+                        mantissa >>= 1; /* divide by 2 */
+                        exponent++;
+                } else {
+                        /* Exponent is maxed. Trim mantissa and leave. */
+                        mantissa = 2047;
+                        break;
+                }
+        }
+
+        buf[3] = 0x80;
+        buf[2] = exponent & 0x01; // LS bit of exponent
+        buf[1] = (exponent & ~0x01) << 4 | mantissa >> 8; // 3 bits of the exponent and MS 3 bits of the mantissa
+        buf[0] = mantissa & 0xff; // LS 8 bits of the mantissa
+
+        /* Calculate and return the exact baud rate. */
+        baud = (baseline / mantissa) >> exponent;
+
+        return baud;
+}
+
+
 static void pl2303_encode_baud_rate(struct tty_struct *tty,
                     struct usb_serial_port *port,
                     u8 buf[4])
@@ -645,6 +688,8 @@
 
     if (baud == baud_sup)
         baud = pl2303_encode_baud_rate_direct(buf, baud);
+    else if (spriv->type->alt_divisors)
+                baud = pl2303_encode_baud_rate_divisor_alt(buf, baud);
     else
         baud = pl2303_encode_baud_rate_divisor(buf, baud);


^ permalink raw reply	[flat|nested] 38+ messages in thread

* Re: non-standard baud rates with Prolific 2303 USB-serial
  2021-03-13  1:28                                             ` Michael G. Katzmann
@ 2021-03-15  9:07                                               ` Johan Hovold
  2021-03-15 10:07                                                 ` Charles Yeh
  0 siblings, 1 reply; 38+ messages in thread
From: Johan Hovold @ 2021-03-15  9:07 UTC (permalink / raw)
  To: Michael G. Katzmann
  Cc: Charles Yeh, Yeh.Charles [葉榮鑫],
	linux-serial, linux-usb, Joe Abbott

On Fri, Mar 12, 2021 at 08:28:04PM -0500, Michael G. Katzmann wrote:
> On 3/12/21 8:44 AM, Johan Hovold wrote:
> 
> 
> Let me try that patch in the right format 8-)

That's better, but we also need a commit message and and Signed-off-by
line from you. Take a look at the general format of the patches I CCed
you on and there's some more information under Documentation/:

	Documentation/process/submitting-patches.rst

The easiest is probably to use git-format-patch and git-send-email to
prevent the patch from being corrupted (e.g. the tabs below have been
replaced by spaces).
 
> --- a/drivers/usb/serial/pl2303.c    2021-03-12 09:30:22.963992109 -0500
> +++ b/drivers/usb/serial/pl2303.c    2021-03-12 20:00:20.003526891 -0500
> @@ -188,6 +188,7 @@
>      unsigned long quirks;
>      unsigned int no_autoxonxoff:1;
>      unsigned int no_divisors:1;
> +    unsigned int alt_divisors:1;
>  };
>  
>  struct pl2303_serial_private {
> @@ -217,10 +218,12 @@
>      [TYPE_TA] = {
>          .name            = "TA",
>          .max_baud_rate        = 6000000,
> +        .alt_divisors        = true,
>      },
>      [TYPE_TB] = {
>          .name            = "TB",
>          .max_baud_rate        = 12000000,
> +        .alt_divisors        = true,

Are you sure that the TB uses the alternate encoding?

Charles, could you help us out here? Which other device types use the
alternate encoding (e.g. HX(A) or TB) if any?

>      },
>      [TYPE_HXD] = {
>          .name            = "HXD",
> @@ -618,6 +621,46 @@
>      return baud;
>  }
>  
> +static speed_t pl2303_encode_baud_rate_divisor_alt(unsigned char buf[4],
> +                                                                speed_t baud)
> +{
> +        unsigned int baseline, mantissa, exponent;
> +
> +        /*
> +         * Apparently, for the TA version the formula is:
> +         *   baudrate = 12M * 32 / (mantissa * 2^exponent)
> +         * where
> +         *   mantissa = buf[10:0]
> +         *   exponent = buf[15:13 16]
> +         */
> +        baseline = 12000000 * 32;
> +        mantissa = baseline / baud;
> +        if (mantissa == 0)
> +                mantissa = 1;   /* Avoid dividing by zero if baud > 32*12M. */
> +        exponent = 0;
> +        while (mantissa >= 2048) {
> +                if (exponent < 15) {
> +                        mantissa >>= 1; /* divide by 2 */
> +                        exponent++;
> +                } else {
> +                        /* Exponent is maxed. Trim mantissa and leave. */
> +                        mantissa = 2047;
> +                        break;
> +                }
> +        }
> +
> +        buf[3] = 0x80;
> +        buf[2] = exponent & 0x01; // LS bit of exponent
> +        buf[1] = (exponent & ~0x01) << 4 | mantissa >> 8; // 3 bits of the exponent and MS 3 bits of the mantissa
> +        buf[0] = mantissa & 0xff; // LS 8 bits of the mantissa

Please avoid c99-style comments, but perhaps the comment at the start of
function is sufficient here.

Looks great otherwise.

> +
> +        /* Calculate and return the exact baud rate. */
> +        baud = (baseline / mantissa) >> exponent;
> +
> +        return baud;
> +}
> +
> +
>  static void pl2303_encode_baud_rate(struct tty_struct *tty,
>                      struct usb_serial_port *port,
>                      u8 buf[4])
> @@ -645,6 +688,8 @@
>  
>      if (baud == baud_sup)
>          baud = pl2303_encode_baud_rate_direct(buf, baud);
> +    else if (spriv->type->alt_divisors)
> +                baud = pl2303_encode_baud_rate_divisor_alt(buf, baud);
>      else
>          baud = pl2303_encode_baud_rate_divisor(buf, baud);

This works too if you don't want to pass in the port to
pl2303_encode_baud_rate_divisor() and hide the device-type differences
there (e.g. to make the logic in pl2303_encode_baud_rate() easier to
follow).

Johan

^ permalink raw reply	[flat|nested] 38+ messages in thread

* Re: non-standard baud rates with Prolific 2303 USB-serial
  2021-03-15  9:07                                               ` Johan Hovold
@ 2021-03-15 10:07                                                 ` Charles Yeh
  2021-03-15 10:24                                                   ` Johan Hovold
  0 siblings, 1 reply; 38+ messages in thread
From: Charles Yeh @ 2021-03-15 10:07 UTC (permalink / raw)
  To: Johan Hovold
  Cc: Michael G. Katzmann, Yeh.Charles [葉榮鑫],
	linux-serial, linux-usb, Joe Abbott

> Charles, could you help us out here? Which other device types use the
> alternate encoding (e.g. HX(A) or TB) if any?

TA and TB are the same hardware design: no need to design a new type

Charles.

^ permalink raw reply	[flat|nested] 38+ messages in thread

* Re: non-standard baud rates with Prolific 2303 USB-serial
  2021-03-15 10:07                                                 ` Charles Yeh
@ 2021-03-15 10:24                                                   ` Johan Hovold
  0 siblings, 0 replies; 38+ messages in thread
From: Johan Hovold @ 2021-03-15 10:24 UTC (permalink / raw)
  To: Charles Yeh
  Cc: Michael G. Katzmann, Yeh.Charles [葉榮鑫],
	linux-serial, linux-usb, Joe Abbott

On Mon, Mar 15, 2021 at 06:07:18PM +0800, Charles Yeh wrote:
> > Charles, could you help us out here? Which other device types use the
> > alternate encoding (e.g. HX(A) or TB) if any?
> 
> TA and TB are the same hardware design: no need to design a new type

Thanks for confirming.

According to the datasheet the maximum baudrate is 6 Mbps for TA and 12
Mbps for TB so I guess we need to keep them separate:

	https://prolificusa.com/app/uploads/2018/02/DS_PL2303TB_d20180327_v1.1.0.pdf

Johan

^ permalink raw reply	[flat|nested] 38+ messages in thread

* Re: non-standard baud rates with Prolific 2303 USB-serial
  2021-02-25  8:42                                   ` Johan Hovold
@ 2021-04-08 15:35                                     ` Johan Hovold
  0 siblings, 0 replies; 38+ messages in thread
From: Johan Hovold @ 2021-04-08 15:35 UTC (permalink / raw)
  To: Michael G. Katzmann
  Cc: charles-yeh, linux-serial, linux-usb, Charles Yeh, Joe Abbott

Hi Michael,

On Thu, Feb 25, 2021 at 09:42:20AM +0100, Johan Hovold wrote:
> On Wed, Feb 24, 2021 at 01:13:39PM -0500, Michael G. Katzmann wrote:
> > On 2/24/21 12:04 PM, Johan Hovold wrote:
> > > Perhaps you can even figure out how to poll for an empty TX FIFO from
> > > it, unless Charles is able to provide some details on that separate
> > > matter?
> > 
> > I presume from the code below, that when the device is closed, all
> > data waiting to send is clobbered (if so, so the problem is the driver
> > and not the device)
> > 
> > I would have thought that the driver should drain the buffers. I can
> > see that this might be a problem if there is flow control (it may
> > never drain) but the current method seems pretty brutal.
> 
> We do; the code below isn't called until after we've waited for the
> buffers to drain (driver buffers + device FIFO).
> 
> I'll provide a patch so that you can extend the timeout for draining the
> driver buffers (defaults to 30 s), but the main problem is that we don't
> know how to query the PL2303 FIFO fill level.

I've added generic support to USB serial for setting the closing_wait
parameter through TIOCSSERIAL (e.g. setserial) so that you can change
the default 30 second timeout also with pl2303:

	https://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git/commit/?h=usb-next&id=01fd45f676f1b3785b7cdd5d815f9c31ddcd9dd1

With the 4k driver buffer and two bulk-out URBs with 256 bytes of data
each you need to set the timeout to something like 420 seconds at 110
bps to allow those buffers to drain (when not using flow control).

On top of that there's the 256 byte device FIFO, which we not yet know
how to query. At 110 bps that one takes about 23 seconds to drain, but
as I mentioned elsewhere we cap the time-based delay at 2 seconds
currently.

Charles, is there a way to check if the device transmit FIFO has
emptied?

Johan

^ permalink raw reply	[flat|nested] 38+ messages in thread

end of thread, other threads:[~2021-04-08 15:35 UTC | newest]

Thread overview: 38+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <3aee5708-7961-f464-8c5f-6685d96920d6@IEEE.org>
     [not found] ` <dc3458f1-830b-284b-3464-20124dc3900a@IEEE.org>
2021-02-22  8:52   ` non-standard baud rates with Prolific 2303 USB-serial Johan Hovold
2021-02-22 12:39     ` Michael G. Katzmann
2021-02-22 13:18       ` Johan Hovold
     [not found]         ` <fb1489c2-b972-619b-b7ce-4ae8e1d2cc0f@IEEE.org>
2021-02-22 15:34           ` Johan Hovold
2021-02-22 15:42             ` Michael G. Katzmann
2021-02-22 15:50               ` Johan Hovold
2021-02-22 16:37                 ` Michael G. Katzmann
2021-02-22 16:48                   ` Johan Hovold
2021-02-24 23:08                     ` Joe Abbott
2021-02-25  8:44                       ` Johan Hovold
     [not found]                   ` <43da22ced8e14442bbc8babea77e4ed7@MailHC2.prolific.com.tw>
2021-02-23 10:18                     ` Johan Hovold
2021-02-23 13:25                     ` Michael G. Katzmann
2021-02-23 14:58                 ` Michael G. Katzmann
2021-02-23 15:43                   ` Johan Hovold
2021-02-23 15:57                     ` Michael G. Katzmann
2021-02-23 16:14                       ` Johan Hovold
2021-02-23 16:30                         ` Michael G. Katzmann
2021-02-23 16:52                           ` Johan Hovold
2021-02-23 19:15                             ` Michael G. Katzmann
2021-02-24 17:04                               ` Johan Hovold
2021-02-24 18:13                                 ` Michael G. Katzmann
2021-02-25  8:42                                   ` Johan Hovold
2021-04-08 15:35                                     ` Johan Hovold
2021-02-24  7:34                             ` Charles Yeh
2021-02-24 17:00                               ` Johan Hovold
2021-02-24 17:12                                 ` Michael G. Katzmann
2021-03-05  9:32                                 ` Charles Yeh
2021-03-05  9:36                                   ` Johan Hovold
2021-03-06 20:18                                     ` Michael G. Katzmann
2021-03-07  4:15                                     ` Michael G. Katzmann
2021-03-11 16:08                                       ` Johan Hovold
2021-03-12 13:17                                         ` Michael G. Katzmann
2021-03-12 13:44                                           ` Johan Hovold
2021-03-12 20:29                                             ` Michael G. Katzmann
2021-03-13  1:28                                             ` Michael G. Katzmann
2021-03-15  9:07                                               ` Johan Hovold
2021-03-15 10:07                                                 ` Charles Yeh
2021-03-15 10:24                                                   ` Johan Hovold

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).