OK, here is the result of the investigation.
The hunch:Due to the way a LFSR works, the number of zeros following the maximum ones run is determined by the exponent, ie., position of the first "tap" starting from X⁰ == 1.
E.g., for the PRBS-9, with the standard X⁹ + X⁵ + 1 polynomial, the expected number of zeros is five.
The SDG1kX+, instead, produces four zeros, hinting to a X⁹ + X⁴ + 1 poly.
BUT! 9-5 = 4. That's what you would get by reversing the tap order - BTW, much easier to inadvertently do in verilog than in C, IMO.
VerificationI verified whether that was the case for all the de facto standard polynomial (from Wikipedia, the standard, or any other source):
PRBS7 = x⁷ + x⁶ + 1 ᑫЯᗺƧ7 = x⁷ + x + 1
PRBS9 = x⁹ + x⁵ + 1 ᑫЯᗺƧ9 = x⁹ + x⁴ + 1
PRBS11 = x¹¹ + x⁹ + 1 ᑫЯᗺƧ11 = x¹¹ + x² + 1
PRBS13 = x¹³ + x¹² + x² + x + 1 Not useful for this quick test!
PRBS15 = x¹⁵ + x¹⁴ + 1 ᑫЯᗺƧ15 = x¹⁵ + x + 1
PRBS20 = x²⁰ + x¹⁷ + 1 ᑫЯᗺƧ20 = x²⁰ + x³ + 1
PRBS23 = x²³ + x¹⁸ + 1 ᑫЯᗺƧ23 = x²³ + x⁵ + 1
PRBS31 = x³¹ + x²⁸ + 1 ᑫЯᗺƧ31 = x³¹ + x³ + 1
NOTE: I did
not check that the full sequence matched the reversed polynomial, just that the first zero runs matched the expectations.
Results:
PRBS-7, tested at 1 Mbps

Not off to good start. A sequence of 3 zeros does not match either polynomial.
PRBS-9, tested at 1 Mbps

This is a positive, as we know by now!
PBRS-11, still 1 Mbps

Another positive.
PBRS-13
NOT tested, as the run is of length one in both directions!
PRBS-15, 1 Mbps

Another positive
PRBS-20, 1 Mbps

This one is a bit
inconclusive, O.151 gives the poly I used - a positive, but O.153 suggests the reversed one, as does Wikipedia.
I don't have the spec at hand now, I might need to check at work tomorrow - if I can get them.
I'd still count this as a confirmation.
PRBS-23, Now at 10 Mbps, to get a faster trigger.

Confirmed.
PRBS-31, 40 Mbps, maximum for the SDG1kX+

Yup!
Conclusion:Of course, the hypothesis can be thoroughly confirmed only by a deeper check (wondering: is it enough to check
n bits after the maximum one run? Possibly yes), but, with the exception of PRBS-7, a complete outlier, I'm strongly inclined to believe that a bit index reversal is what happened.
What do you think?
EtA: I
hate this forum attachment mechanism...