-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathregister.map
More file actions
1405 lines (1371 loc) · 71.5 KB
/
register.map
File metadata and controls
1405 lines (1371 loc) · 71.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
### Format is TAB (\t, 0x09) separated columns:
### * register (dec or hex)
### * for example '123' (dec) or '0x123' (hex)
### * if only register defined line will be ignored so Wireshark shows 'Unknown'
### * name
###
### Comments ('#') are stripped out
### Leading and trailing whitespace is stripped out
###
### Sample values are included as a comment at the end of each line
# System table of line 1
# Frames 425 - 426
0x006c39 xdslTwConfig # "\xE4\x79\x9e"
0x006d36 xdslTwConfig2 # "\x86\x20\xEE"
0x006e6f xdslTwConfig3 # "\x1C\x62\xC0"
0x006ecc xdslTwConfig4 # "\x39\x89\x05"
0x006d2b xdslMetanoiaUs0PsdLimit # "\xFF\xFE\x20"
0x007cf6 xdslGhsConfOtCarrierSet # "\x00\x00\x01" (Ot = xTU-C)
0x007cf7 xdslGhsConfRtCarrierSet # "\x00\x00\x00" (Rt = xTU-R)
0x006d73 ModemErrOvrflow # "\x00\x00\x00"
# Interface table of line 1
# Frames 427 - 428
0x006c4e CfgM2MiiCtlReg # "\x2F\x73\x18"
0x006c50 CfgM2UtpCfgReg # "\x04\x00\x80"
0x006e36 CfgM2QosfrVd # "\x00\x0C\x02"
0x006d80 CfgPll1Ctl # "\x01\x50\x22"
0x006c3c xdslCfgHwConfig # "\x00\x00\x02" (1 = xTU-C, 2 = xTU-R) ('Port Status'->'Mode' in DSLmonitor and shows 'RT')
# Band profile table of line 1
# Frames 429 - 430
0x007b0a xdsl2LConfProfXdslMode # "\x00\x00\x3A"
0x007b60 xdsl2LConfProfPsdMaskSelectUs # "\x00\x00\x01"
0x007abe xdsl2LConfProfProfiles # "\x00\x00\x80"
0x007b0d xdsl2LConfProfMaxNomAtpDs # "\x00\x00\x91"
0x007b0e xdsl2LConfProfMaxNomAtpUs # "\x00\x00\x91"
0x007a11 xdsl2LConfProfVdsl2CarMask # "\x00\x00\x00"
0x007b38 xdsl2LConfProfPsdMaskUs # "\x00\x00\x00"
0x007b0c xdsl2LConfProfMaxNomPsdUs # "\xFF\xFE\xA7"
0x007b10 xdsl2LConfProfPsdMaskDs # "\x00\x00\x00"
0x007b0b xdsl2LConfProfMaxNomPsdDs # "\xFF\xFE\x93"
0x007b61 xdsl2LConfProfClassMask # "\x00\x00\x01"
0x007b6b xdsl2LConfProfLimitMaskDs # "\xC3\x00\x00"
0x007b93 xdsl2LConfProfLimitMaskUs # "\xC3\x00\x00"
0x007af4 xdsl2LConfProfBandDs # "\x00\x00\x21"
0x007afe xdsl2LConfProfBandUs # "\x00\x00\x07"
0x006d2c xdslVdsl2ProfilesLimit8a # "\x4B\x57\xB3"
0x006d2d xdslVdsl2ProfilesLimit8b # "\x4B\x57\xB3"
0x006d2e xdslVdsl2ProfilesLimit8c # "\x4B\x57\xB3"
0x006d2f xdslVdsl2ProfilesLimit8d # "\x4B\x57\xB3"
0x006d30 xdslVdsl2ProfilesLimit12a # "\xAD\xE7\xB3"
0x006d31 xdslVdsl2ProfilesLimit12b # "\xAD\xE7\xB3"
0x006d32 xdslVdsl2ProfilesLimit17a # "\xAD\xEF\xF0"
0x006d33 xdslVdsl2ProfilesLimit30a # "\xD9\x6A\x6A"
# Channel profile table of line 1
# Frames 431 - 432
0x007bdd xdsl2ChConfProfMinProtection8Us0 # "\x00\x00\x03"
0x007bdc xdsl2ChConfProfMinProtection8Ds0 # "\x00\x00\x03"
0x007bdb xdsl2ChConfProfMinProtectionUs0 # "\x00\x00\x04"
0x007bda xdsl2ChConfProfMinProtectionDs0 # "\x00\x00\x04"
0x007bd9 xdsl2ChConfProfMaxDelayUs0 # "\x00\x00\x40"
0x007bd8 xdsl2ChConfProfMaxDelayDs0 # "\x00\x00\x40"
0x007bd5 xdsl2ChConfProfMaxDataRateUs0 # "\x04\x93\xE0"
0x007bd4 xdsl2ChConfProfMaxDataRateDs0 # "\x04\x93\xE0"
0x007bd1 xdsl2ChConfProfMinDataRateUs0 # "\x00\x00\x20"
0x007bd0 xdsl2ChConfProfMinDataRateDs0 # "\x00\x00\x20"
0x007a7b xdsl2LConfProfTargetSnrmDs # "\x00\x00\x1E"
0x007a7c xdsl2LConfProfTargetSnrmUs # "\x00\x00\x3C"
0x007a7d xdsl2LConfProfMaxSnrmDs # "\x00\x01\x36"
0x007a7e xdsl2LConfProfMaxSnrmUs # "\x00\x01\x36"
0x007a7f xdsl2LConfProfMinSnrmDs # "\x00\x00\x00"
0x007a80 xdsl2LConfProfMinSnrmUs # "\x00\x00\x1E"
0x007a81 xdsl2LConfProfMsgMinUs # "\x00\x00\x10"
0x007a82 xdsl2LConfProfMsgMinDs # "\x00\x00\x10"
# UPBO table of line 1
# Frames 433 - 434
0x007ae6 xdsl2LConfProfUpboKL # "\x00\x00\x00"
0x007ae7 xdsl2LConfProfUpboKLF # "\x00\x01\x01"
0x007bbc xdsl2LConfProfUpboPsdA0 # "\x00\x0F\xA0"
0x007bc1 xdsl2LConfProfUpboPsdA1 # "\x00\x0F\xA0"
0x007bc6 xdsl2LConfProfUpboPsdA2 # "\x00\x0F\xA0"
0x007bcb xdsl2LConfProfUpboPsdA3 # "\x00\x0F\xA0"
0x007bbd xdsl2LConfProfUpboPsdB0 # "\x00\x00\x00"
0x007bc2 xdsl2LConfProfUpboPsdB1 # "\x00\x00\x00"
0x007bc7 xdsl2LConfProfUpboPsdB2 # "\x00\x00\x00"
0x007bcc xdsl2LConfProfUpboPsdB3 # "\x00\x00\x00"
# DPBO table of line 1
# Frames 435 - 436
0x007adf xdsl2LConfProfDpboEsEL # "\x00\x00\x00"
0x007abf xdsl2LConfProfDpboEPsd # "\x44\x00\x00"
0x007ae0 xdsl2LConfProfDpboEsCableModelA # "\x00\x01\x00"
0x007ae1 xdsl2LConfProfDpboEsCableModelB # "\x00\x01\x80"
0x007ae2 xdsl2LConfProfDpboEsCableModelC # "\x00\x01\x00"
0x007ae3 xdsl2LConfProfDpboMus # "\x00\x00\x00"
0x007ae4 xdsl2LConfProfDpboFMin # "\x00\x00\x20"
0x007ae5 xdsl2LConfProfDpboFMax # "\x00\x01\x00"
# SRA table of line 1
# Frames 437 - 438
0x007a71 xdsl2LConfProfRaModeDs # "\x00\x00\x02"
0x007a72 xdsl2LConfProfRaModeUs # "\x00\x00\x02"
0x007a73 xdsl2LConfProfRaUsNrmDs # "\x00\x00\x00"
0x007a74 xdsl2LConfProfRaUsNrmUs # "\x00\x00\x46"
0x007a75 xdsl2LConfProfRaUsTimeDs # "\x00\x00\x00"
0x007a76 xdsl2LConfProfRaUsTimeUs # "\x00\x00\x1E"
0x007a77 xdsl2LConfProfRaDsNrmDs # "\x00\x00\x00"
0x007a78 xdsl2LConfProfRaDsNrmUs # "\x00\x00\x32"
0x007a79 xdsl2LConfProfRaDsTimeDs # "\x00\x00\x00"
0x007a7a xdsl2LConfProfRaDsTimeUs # "\x00\x00\x1E"
# VNS table of line 1
# Frames 439 - 440
0x007a84 xdsl2LConfProfSnrModeDs # "\x00\x00\x01"
0x007a85 xdsl2LConfProfSnrModeUs # "\x00\x00\x01"
0x007a86 xdsl2LConfProfTxRefVnDs # "\x00\x00\x01"
0x007aa6 xdsl2LConfProfTxRefVnUs # "\x00\x00\x01"
# RFI table of line 1
# Frames 441 - 442
0x007a51 xdsl2LConfProfRfiBands # "\x00\x00\x00"
# G.inp configuration table of line 1
# Frames 443 - 444
0x007f5b xdslRtxChConfDsRtxMode # "\x00\x00\x00"
0x007f5c xdslRtxChConfUsRtxMode # "\x00\x00\x00"
0x007f5d xdslRtxChConfDsMinEtrRtx # "\x00\x01\x00"
0x007f5e xdslRtxChConfUsMinEtrRtx # "\x00\x01\x00"
0x007f5f xdslRtxChConfDsMaxEtrRtx # "\x04\x93\xE0"
0x007f60 xdslRtxChConfUsMaxEtrRtx # "\x04\x93\xE0"
0x007f61 xdslRtxChConfDsMaxNdrRtx # "\x04\x93\xE0"
0x007f62 xdslRtxChConfUsMaxNdrRtx # "\x04\x93\xE0"
0x007f63 xdslRtxChConfDsDelayMaxRtx # "\x00\x00\x14"
0x007f64 xdslRtxChConfUsDelayMaxRtx # "\x00\x00\x14"
0x007f65 xdslRtxChConfDsDelayMinRtx # "\x00\x00\x00"
0x007f66 xdslRtxChConfUsDelayMinRtx # "\x00\x00\x00"
0x007f67 xdslRtxChConfDsInpMinShineRtx # "\x00\x00\x00"
0x007f68 xdslRtxChConfUsInpMinShineRtx # "\x00\x00\x00"
0x007f69 xdslRtxChConfDsInpMin8ShineRtx # "\x00\x00\x00"
0x007f6a xdslRtxChConfUsInpMin8ShineRtx # "\x00\x00\x00"
0x007f6b xdslRtxChConfDsInpShineRatioRtx # "\x00\x00\x00"
0x007f6c xdslRtxChConfUsInpShineRatioRtx # "\x00\x00\x00"
0x007f6d xdslRtxChConfDsInpMinReinRtx # "\x00\x00\x02"
0x007f6e xdslRtxChConfUsInpMinReinRtx # "\x00\x00\x02"
0x007f6f xdslRtxChConfDsInpMin8ReinRtx # "\x00\x00\x02"
0x007f70 xdslRtxChConfUsInpMin8ReinRtx # "\x00\x00\x02"
0x007f71 xdslRtxChConfDsIatReinRtx # "\x00\x00\x00"
0x007f72 xdslRtxChConfUsIatReinRtx # "\x00\x00\x00"
0x007f73 xdslRtxChConfDsLeftrThresh # "\x00\x00\x00"
0x007f74 xdslRtxChConfUsLeftrThresh # "\x00\x00\x00"
# G.inp status table of line 1
# Frames 445 - 446
0x007f75 xdslRtxChStatusOtUnit # "\x00\x00\x01" - xTU-C
0x007f8b xdslRtxChStatusRtUnit # "\x00\x00\x02" - xTU-R
0x007f76 xdslRtxChStatusOtRtxUsed # "\x00\x00\x00"
0x007f8c xdslRtxChStatusRtRtxUsed # "\x00\x00\x00"
0x007f77 xdslRtxChStatusOtEtr # "\x00\x00\x00"
0x007f8d xdslRtxChStatusRtEtr # "\x00\x00\x00"
0x007f78 xdslRtxChStatusOtEftr # "\x00\x00\x00"
0x007f8e xdslRtxChStatusRtEftr # "\x00\x00\x00"
0x007f79 xdslRtxChStatusOtEftrMin # "\x00\x00\x00"
0x007f8f xdslRtxChStatusRtEftrMin # "\x00\x00\x00"
0x007f7a xdslRtxChStatusOtActInpShine # "\x00\x00\x00"
0x007f90 xdslRtxChStatusRtActInpShine # "\x00\x00\x00"
0x007f7b xdslRtxChStatusOtActInpRein # "\x00\x00\x00"
0x007f91 xdslRtxChStatusRtActInpRein # "\x00\x00\x00"
0x007f7c xdslRtxChStatusOtActDelayRtx # "\x00\x00\x00"
0x007f92 xdslRtxChStatusRtActDelayRtx # "\x00\x00\x00"
0x007f7d xdslRtxChStatusOtLeftrsHi # "\x00\x00\x00" (Low Error-Free Throughput Rate Second)
0x007f93 xdslRtxChStatusRtLeftrsHi # "\x00\x00\x00" (Low Error-Free Throughput Rate Second)
0x007f7e xdslRtxChStatusOtLeftrsLo # "\x00\x12\x51" (Low Error-Free Throughput Rate Second)
0x007f94 xdslRtxChStatusRtLeftrsLo # "\x01\xA8\x51" (Low Error-Free Throughput Rate Second)
0x007f7f xdslRtxChStatusOtErrorFreeBitsHi # "\x00\x00\x04"
0x007f95 xdslRtxChStatusRtErrorFreeBitsHi # "\x00\x00\xA4"
0x007f80 xdslRtxChStatusOtErrorFreeBitsLo # "\x53\x58\xB9"
0x007f96 xdslRtxChStatusRtErrorFreeBitsLo # "\x6F\xF5\xB7"
0x007f81 xdslRtxChStatusOtRtxUc # "\x20\x6F\x58" (Uncorrected DTUs)
0x007f97 xdslRtxChStatusRtRtxUc # "\x57\x79\xFB" (Uncorrected DTUs)
0x007f82 xdslRtxChStatusOtRtxC # "\x01\xC7\x25" (Corrected[?] DTUs)
0x007f98 xdslRtxChStatusRtRtxC # "\x5B\xF5\x6E" (Corrected[?] DTUs)
0x007f83 xdslRtxChStatusOtRtxTx # "\x89\x5D\xC5" (Retransmitted DTUs)
0x007f99 xdslRtxChStatusRtRtxTx # "\x00\x43\x79" (Retransmitted DTUs)
0x007f84 xdslRtxChStatusOtRtxSupport # "\x00\x00\x00"
0x007f9a xdslRtxChStatusRtRtxSupport # "\x00\x00\x00"
0x007f85 xdslRtxChStatusOtActNdr (US) # "\x00\x19\x82" = 6530 (kbps) [Actual Ndr Data Rate]
0x007f9b xdslRtxChStatusRtActNdr (US) # "\x00\x19\x82" = 6530 (kbps) [Actual Data Rate]
0x007f86 xdslRtxChStatusOtPreviousEtr # "\x00\x00\x00" (Previous Effective Throughput Rate)
0x007f9c xdslRtxChStatusRtPreviousEtr # "\x00\xA8\xB6" (Previous Effective Throughput Rate)
# Additional Mibs
# Frames 447 - 448
0x006e7e xdslCfgIopFixMeta0 # "\xFF\xFF\xFB"
0x006e7f xdslCfgIopFixMeta1 # "\xFF\xFF\xFF"
0x006e80 xdslCfgIopFixMeta2 # "\xFF\xFF\xFF"
0x006e81 xdslCfgIopFixMeta3 # "\xFF\xFF\xFF"
0x006e82 xdslCfgIopFixBrcm0 # "\xFF\xFF\xFF"
0x006e83 xdslCfgIopFixBrcm1 # "\xFF\xFF\xFF"
0x006e84 xdslCfgIopFixBrcm2 # "\xFF\xFF\xFF"
0x006e85 xdslCfgIopFixBrcm3 # "\xFF\xFF\xFF"
0x006e86 xdslCfgIopFixIkns0 # "\xFF\xFF\xFF"
0x006e87 xdslCfgIopFixIkns1 # "\xFF\xFF\xFF"
0x006e88 xdslCfgIopFixIkns2 # "\xFF\xFF\xFF"
0x006e89 xdslCfgIopFixIkns3 # "\xFF\xFF\xFF"
0x006e8a xdslCfgIopFixLantiq0 # "\xFF\xFF\xFF"
0x006e8b xdslCfgIopFixLantiq1 # "\xFF\xFF\xFF"
0x006e8c xdslCfgIopFixLantiq2 # "\xFF\xFF\xFF"
0x006e8d xdslCfgIopFixLantiq3 # "\xFF\xFF\xFF"
0x006e8e xdslCfgIopFixReserved0 # "\x00\x00\x00"
0x006e8f xdslCfgIopFixReserved1 # "\x00\x00\x00"
0x006e90 xdslCfgIopFixReserved2 # "\x00\x00\x00"
0x006e91 xdslCfgIopFixReserved3 # "\x00\x00\x00"
0x006e92 xdslCfgIopFixReserved4 # "\x00\x00\x00"
0x006e9e xdslCfgTargetTrainTimeOut1 # "\x00\x00\x19"
0x006e9f xdslCfgTargetTrainTimeOut2 # "\x00\x00\x0F"
0x006ea0 xdslCfgTargetTrainTimeOut3 # "\x00\x00\x0F"
0x006ea1 xdslIopStatus0 # "\x00\x00\x00"
0x006ea2 xdslIopStatus1 # "\x00\x00\x00"
0x006ea3 xdslIopStatus2 # "\x00\x00\x00"
0x006ea4 xdslIopStatus3 # "\x00\x00\x00"
0x006ea6 xdslCfgIopFixTopLvlCtrl0 # "\x00\x00\x22"
0x006ea7 xdslCfgIopFixTopLvlCtrl1 # "\x00\x00\x00"
0x006ea8 xdslCfgIopFixTopLvlCtrl2 # "\x00\x00\x00"
0x006ea9 xdslCfgIopFixTopLvlCtrl3 # "\x00\x00\x00"
0x006ea5 xdslSecondCnt # "\x41\xE2\x2E"
0x006eaa xdslCfgIopFixTopLvlMaxUsTones # "\x00\x00\x00"
0x006eab xdslCfgIopFixTopLvlMaxDsTones # "\x00\x00\x00"
0x006eac xdslCfgIopFixTopLvlMaxUsRate # "\x00\x00\x00"
0x006ead xdslCfgIopFixTopLvlMaxDsRate # "\x00\x00\x00"
# checking ModemErrBuf
# Frames 459 - 460
0x00001d ModemStatus # "\x00\x00\x11"
0x006c69 xdslLineDiagTrn # "\xFF\xFF\xFF"
0x006c6a xdslLineDiagTrnD # "\xFF\xFF\xFF"
0x006c6b xdslLineDiagTrnDD # "\xFF\xFF\xFF"
0x007f59 xdsl2MetanoiaRtFailureReasons # "\x00\x00\x05"
# Frames 461 - 462
0x006d53 ModemErrBuf[0:2] # "\x00\x00\x00"
0x006d54 ModemErrBuf[3:5] # "\x00\x00\x00"
0x006d55 ModemErrBuf[6:8] # "\x00\x00\x00"
0x006d56 ModemErrBuf[9:11] # "\x00\x00\x00"
0x006d57 ModemErrBuf[12:14] # "\x00\x00\x00"
0x006d58 ModemErrBuf[15:17] # "\x00\x00\x00"
0x006d59 ModemErrBuf[18:20] # "\x00\x00\x00"
0x006d5a ModemErrBuf[21:23] # "\x00\x00\x00"
0x006d5b ModemErrBuf[24:26] # "\x00\x00\x00"
0x006d5c ModemErrBuf[27:29] # "\x00\x00\x00"
0x006d5d ModemErrBuf[30:32] # "\x00\x00\x00"
0x006d5e ModemErrBuf[33:35] # "\x00\x00\x00"
0x006d5f ModemErrBuf[36:38] # "\x00\x00\x00"
0x006d60 ModemErrBuf[39:41] # "\x00\x00\x00"
0x006d61 ModemErrBuf[42:44] # "\x00\x00\x00"
0x006d62 ModemErrBuf[45:47] # "\x00\x00\x00"
0x006d63 ModemErrBuf[48:50] # "\x00\x00\x00"
0x006d64 ModemErrBuf[51:53] # "\x00\x00\x00"
0x006d65 ModemErrBuf[54:56] # "\x00\x00\x00"
0x006d66 ModemErrBuf[57:59] # "\x00\x00\x00"
0x006d67 ModemErrBuf[60:62] # "\x00\x00\x00"
0x006d68 ModemErrBuf[63:65] # "\x00\x00\x00"
0x006d69 ModemErrBuf[66:68] # "\x00\x00\x00"
0x006d6a ModemErrBuf[69:71] # "\x00\x00\x00"
0x006d6b ModemErrBuf[72:74] # "\x00\x00\x00"
0x006d6c ModemErrBuf[75:77] # "\x00\x00\x00"
0x006d6d ModemErrBuf[78:80] # "\x00\x00\x00"
0x006d6e ModemErrBuf[81:83] # "\x00\x00\x00"
0x006d6f ModemErrBuf[84:86] # "\x00\x00\x00"
0x006d70 ModemErrBuf[87:89] # "\x00\x00\x00"
0x006d71 ModemErrBuf[90:92] # "\x00\x00\x00"
0x006d72 ModemErrBuf[93:95] # "\x00\x00\x00"
# Unlabelled dump SoC regs
# Frames 1181 - 1244 [again at Frames 1489 - 1552]
#0x004c00
#[snipped]
#0x0053ff
# Frames 1245 - 1246 [again at Frames 1553 - 1554]
0x006d7a CfgDisableRecovery # writes 0x000000 and 0x0000FD
# Information
# Frames 1555 - 1556
0x006f21 xdsl2LineStatusAttainableRateUs # 6531 (kbps)
0x006f20 xdsl2LineStatusAttainableRateDs # 48244 (kbps)
0x007004 xdsl2ChStatusActDataRate0 (US) # 6530 (kbps)
0x007020 xdsl2ChStatusActDataRate2 (DS) # 43276 (kbps)
0x007005 xdsl2ChStatusPrevDataRate0 (US) # 6669 (kbps)
0x007021 xdsl2ChStatusPrevDataRate2 (DS) # 43218 (kbps)
0x006f2f xdsl2LineStatusElectricalLength # 186 (metres)
0x006f26 xdsl2LineStatusActProfile # "\x00\x00\x40" = 17a (RFC5650 Xdsl2LineProfiles?)
0x000028 AdslFlag # 0
0x002a74 xdslGhsRtStdG993_2_G993_5 # 3
0x007da2 xdslGhsRtStdG993_2_NPar2 # 566
0x006f19 xdsl2LineStatusXtuTransSys # 57
# Firmware version
# Frames 83 - 86
0x007ea4 CO MAC Address [0:2] # "\0\0\0"
0x007ea5 CO MAC Address [3:5] # "\0\0\0"
# Discovered by Scanning
0x007ede CPE MAC Address [0:2] # "\x00\x03\x79" ---\
0x007edf CPE MAC Address [3:5] # "\x06\x89\xd7" \--> 00:03:79:06:89:d7
# Frames 1557 - 1558
# Vendor ID = [2 bytes T.35 country code] + [4 bytes Vendor ID] + [2 bytes Vendor Specific]
# Far End
0x0079c7 CO Termination Unit # "\x00\x00\x01" -> xTU-C
0x0079c8 CO Vendor ID (G.994) [0:2] # "\xb5\x00\x42" -> "\xb5\x00" -> United States, "\x42" -> "B"
0x0079c9 CO Vendor ID (G.994) [3:5] # "DCM"
0x0079ca CO Vendor ID (G.994) [6:8] # "\x1c\xc0\x00" -> "\x1c\xc0"
0x0079cb CO Vendor ID (System) [0:2] # "\xb5\x00\x42" -> "\xb5\x00" -> United States, "\x42" -> "B"
0x0079cc CO Vendor ID (System) [3:5] # "DCM"
0x0079cd CO Vendor ID (System) [6:8] # "\x00\x00\x00" -> "\x00\x00"
0x0079ce CO Inventory Version [0:2] # "v12"
0x0079cf CO Inventory Version [3:5] # ".00"
0x0079d0 CO Inventory Version [6:8] # ".28"
0x0079d1 CO Inventory Version [9:11] # " "
0x0079d2 CO Inventory Version [12:14] # " "
0x0079d3 CO Inventory Version [15:17] # "\0\0\0" -> "\0\0"
0x0079d4 CO Serial Number [0:2] # "eq "
0x0079d5 CO Serial Number [3:5] # "nr "
0x0079d6 CO Serial Number [6:8] # "por"
0x0079d7 CO Serial Number [9:11] # "t:1"
0x0079d8 CO Serial Number [12:14] # "2 "
0x0079d9 CO Serial Number [15:17] # "oem"
0x0079da CO Serial Number [18:20] # "id "
0x0079db CO Serial Number [21:23] # "sof"
0x0079dc CO Serial Number [21:23] # "twa"
0x0079dd CO Serial Number [24:26] # "rer"
0x0079de CO Serial Number [27:29] # "ev\0"
0x0079df CO Serial Number [30:32] # "\0\0\0"
0x007d98 CO Vendor ID [2,1,0] # "CDB" /--> BDCM
0x007d99 CO Vendor ID (and SpecInfo) [SI1,SI0,3] # "\xC1\xC0" .. "M" \--> C01C [SpecInfo]
# Near End
0x0079e3 CPE Termination Unit # "\x00\x00\x02" -> xTU-R
0x0079e4 CPE Vendor ID (G.994) [0:2] # "\xb5\x00\x42" -> "\xb5\x00" -> United States, "\x42" -> "M"
0x0079e5 CPE Vendor ID (G.994) [3:5] # "ETA"
0x0079e6 CPE Vendor ID (G.994) [6:8] # "\x00\x00\x00" -> "\x00\x00"
0x0079e7 CPE Vendor ID (System) [0:2] # "\xb5\x00\x42" -> "\xb5\x00" -> United States, "\x42" -> "M"
0x0079e8 CPE Vendor ID (System) [3:5] # "ETA"
0x0079e9 CPE Vendor ID (System) [6:8] # "\x00\x00\x00" -> "\x00\x00"
0x0079ea CPE Inventory Version [0:2] # "1_6"
0x0079eb CPE Inventory Version [3:5] # "0_8"
0x0079ec CPE Inventory Version [6:8] # "255"
0x0079ed CPE Inventory Version [9:11] # " MT"
0x0079ee CPE Inventory Version [12:14] # "531"
0x0079ef CPE Inventory Version [15:17] # "1\0\0" -> "1\0"
0x0079f0 CPE Serial Number [0:2] # "000"
0x0079f1 CPE Serial Number [3:5] # "379"
0x0079f2 CPE Serial Number [6:8] # "068"
0x0079f3 CPE Serial Number [9:11] # "9D7"
0x0079f4 CPE Serial Number [12:14] # " SF"
0x0079f5 CPE Serial Number [15:17] # "P-V"
0x0079f6 CPE Serial Number [18:20] # "531"
0x0079f7 CPE Serial Number [21:23] # "1-T"
0x0079f8 CPE Serial Number [21:23] # "-R "
0x0079f9 CPE Serial Number [24:26] # "825"
0x0079fa CPE Serial Number [27:29] # "5\0\0"
0x0079fb CPE Serial Number [30:32] # "\0\0\0"
0x007d9a CPE Vendor ID [2,1,0] # "TEM" ---------/--> META
0x007d9b CPE Vendor ID (and SpecInfo) [SI1,SI0,3] # "\0\0A" \--> 0000 [SpecInfo]
# gain wisdom regarding Band Plan, Hlog, QLN and SNR from:
# * https://www.draytek.co.uk/information/blog/dsl-deep-dive
# * https://assia-inc.com/wp-content/uploads/2015/10/Modern_Line_Testing-White_Paper.pdf
# Band Plan (interleaves US0:DS1:US1:DS2:...)
# Frames 1563 - 1600
0x006e37 Band Plan US0 Start # "\x00\x00\x07" = 7
0x006e38 Band Plan US0 End # "\x00\x00\x20" = 32
0x006e39 Band Plan US1 Start # "\x00\x03\x67" = 871
0x006e3a Band Plan US1 End # "\x00\x04\xb5" = 1205
0x006e3b Band Plan US2 Start # "\x00\x00\x00" = 0
0x006e3c Band Plan US2 End # "\x00\x00\x00" = 0
0x006e3d Band Plan US3 Start # "\x00\x00\x00" = 0
0x006e3e Band Plan US3 End # "\x00\x00\x00" = 0
0x006e3f Band Plan US4 Start # "\x00\x00\x00" = 0
0x006e40 Band Plan US4 End # "\x00\x00\x00" = 0
0x006e47 Band Plan DS1 Start # "\x00\x00\x21" = 33
0x006e48 Band Plan DS1 End # "\x00\x03\x5b" = 859
0x006e49 Band Plan DS2 Start # "\x00\x04\xc0" = 1216
0x006e4a Band Plan DS2 End # "\x00\x07\xa9" = 1961
0x006e4b Band Plan DS3 Start # "\x00\x0a\xf0" = 2800
0x006e4c Band Plan DS3 End # "\x00\x0f\x7f" = 3967
0x006e4d Band Plan DS4 Start # "\x00\x00\x00" = 0
0x006e4e Band Plan DS4 End # "\x00\x00\x00" = 0
# Hlog: SCStatusSegmentLog of Line 1 (Channel Characteristics Function per subcarrier)
# Frames 1671 - 1686
# * max is -6.0 dB (0x000)
# * min is -96.3 dB (0x3ff)
# * inc in -0.1 dB
# Format is as xdsl2SCStatusSegmentLog described in RFC 5650, section 2.6
0x007471 Hlog (carriers 1-8) # "\x00\x03\xff"
0x007472 Hlog (carriers 9-16) # "\x00\x03\xff"
0x007473 Hlog (carriers 17-24) # "\x00\x03\xff"
0x007474 Hlog (carriers 25-32) # "\x00\x03\xff"
0x007475 Hlog (carriers 33-40) # "\x00\x03\xff"
0x007476 Hlog (carriers 41-48) # "\x00\x00\xf5" = -18.5 dB
0x007477 Hlog (carriers 49-56) # "\x00\x00\xdb" = -15.9 dB
0x007478 Hlog (carriers 57-64) # ...
0x007479 Hlog (carriers 65-72) # ...
0x00747a Hlog (carriers 73-80) # ...
0x00747b Hlog (carriers 81-88) # ...
0x00747c Hlog (carriers 89-96) # ...
0x00747d Hlog (carriers 97-104) # ...
0x00747e Hlog (carriers 105-112) # ...
0x00747f Hlog (carriers 113-120) # ...
0x007480 Hlog (carriers 121-128) # ...
0x007481 Hlog (carriers 129-136) # ...
0x007482 Hlog (carriers 137-144) # ...
0x007483 Hlog (carriers 145-152) # ...
0x007484 Hlog (carriers 153-160) # ...
0x007485 Hlog (carriers 161-168) # ...
0x007486 Hlog (carriers 169-176) # ...
0x007487 Hlog (carriers 177-184) # ...
0x007488 Hlog (carriers 185-192) # ...
0x007489 Hlog (carriers 193-200) # ...
0x00748a Hlog (carriers 201-208) # ...
0x00748b Hlog (carriers 209-216) # ...
0x00748c Hlog (carriers 217-224) # ...
0x00748d Hlog (carriers 225-232) # ...
0x00748e Hlog (carriers 233-240) # ...
0x00748f Hlog (carriers 241-248) # ...
0x007490 Hlog (carriers 249-256) # ...
0x007491 Hlog (carriers 257-264) # ...
0x007492 Hlog (carriers 265-272) # ...
0x007493 Hlog (carriers 273-280) # ...
0x007494 Hlog (carriers 281-288) # ...
0x007495 Hlog (carriers 289-296) # ...
0x007496 Hlog (carriers 297-304) # ...
0x007497 Hlog (carriers 305-312) # ...
0x007498 Hlog (carriers 313-320) # ...
0x007499 Hlog (carriers 321-328) # ...
0x00749a Hlog (carriers 329-336) # ...
0x00749b Hlog (carriers 337-344) # ...
0x00749c Hlog (carriers 345-352) # ...
0x00749d Hlog (carriers 353-360) # ...
0x00749e Hlog (carriers 361-368) # ...
0x00749f Hlog (carriers 369-376) # ...
0x0074a0 Hlog (carriers 377-384) # ...
0x0074a1 Hlog (carriers 385-392) # ...
0x0074a2 Hlog (carriers 393-400) # ...
0x0074a3 Hlog (carriers 401-408) # ...
0x0074a4 Hlog (carriers 409-416) # ...
0x0074a5 Hlog (carriers 417-424) # ...
0x0074a6 Hlog (carriers 425-432) # ...
0x0074a7 Hlog (carriers 433-440) # ...
0x0074a8 Hlog (carriers 441-448) # ...
0x0074a9 Hlog (carriers 449-456) # ...
0x0074aa Hlog (carriers 457-464) # ...
0x0074ab Hlog (carriers 465-472) # ...
0x0074ac Hlog (carriers 473-480) # ...
0x0074ad Hlog (carriers 481-488) # ...
0x0074ae Hlog (carriers 489-496) # ...
0x0074af Hlog (carriers 497-504) # ...
0x0074b0 Hlog (carriers 505-512) # ...
0x0074b1 Hlog (carriers 513-520) # ...
0x0074b2 Hlog (carriers 521-528) # ...
0x0074b3 Hlog (carriers 529-536) # ...
0x0074b4 Hlog (carriers 537-544) # ...
0x0074b5 Hlog (carriers 545-552) # ...
0x0074b6 Hlog (carriers 553-560) # ...
0x0074b7 Hlog (carriers 561-568) # ...
0x0074b8 Hlog (carriers 569-576) # ...
0x0074b9 Hlog (carriers 577-584) # ...
0x0074ba Hlog (carriers 585-592) # ...
0x0074bb Hlog (carriers 593-600) # ...
0x0074bc Hlog (carriers 601-608) # ...
0x0074bd Hlog (carriers 609-616) # ...
0x0074be Hlog (carriers 617-624) # ...
0x0074bf Hlog (carriers 625-632) # ...
0x0074c0 Hlog (carriers 633-640) # ...
0x0074c1 Hlog (carriers 641-648) # ...
0x0074c2 Hlog (carriers 649-656) # ...
0x0074c3 Hlog (carriers 657-664) # ...
0x0074c4 Hlog (carriers 665-672) # ...
0x0074c5 Hlog (carriers 673-680) # ...
0x0074c6 Hlog (carriers 681-688) # ...
0x0074c7 Hlog (carriers 689-696) # ...
0x0074c8 Hlog (carriers 697-704) # ...
0x0074c9 Hlog (carriers 705-712) # ...
0x0074ca Hlog (carriers 713-720) # ...
0x0074cb Hlog (carriers 721-728) # ...
0x0074cc Hlog (carriers 729-736) # ...
0x0074cd Hlog (carriers 737-744) # ...
0x0074ce Hlog (carriers 745-752) # ...
0x0074cf Hlog (carriers 753-760) # ...
0x0074d0 Hlog (carriers 761-768) # ...
0x0074d1 Hlog (carriers 769-776) # ...
0x0074d2 Hlog (carriers 777-784) # ...
0x0074d3 Hlog (carriers 785-792) # ...
0x0074d4 Hlog (carriers 793-800) # ...
0x0074d5 Hlog (carriers 801-808) # ...
0x0074d6 Hlog (carriers 809-816) # ...
0x0074d7 Hlog (carriers 817-824) # ...
0x0074d8 Hlog (carriers 825-832) # ...
0x0074d9 Hlog (carriers 833-840) # ...
0x0074da Hlog (carriers 841-848) # ...
0x0074db Hlog (carriers 849-856) # ...
0x0074dc Hlog (carriers 857-864) # "\x00\x01\x56" = -36.6 dB
0x0074dd Hlog (carriers 865-872) # "\x00\x03\xff"
0x0074de Hlog (carriers 873-880) # "\x00\x03\xff"
0x0074df Hlog (carriers 881-888) # ...
0x0074e0 Hlog (carriers 889-896) # ...
0x0074e1 Hlog (carriers 897-904) # ...
0x0074e2 Hlog (carriers 905-912) # ...
0x0074e3 Hlog (carriers 913-920) # ...
0x0074e4 Hlog (carriers 921-928) # ...
0x0074e5 Hlog (carriers 929-936) # ...
0x0074e6 Hlog (carriers 937-944) # ...
0x0074e7 Hlog (carriers 945-952) # ...
0x0074e8 Hlog (carriers 953-960) # ...
0x0074e9 Hlog (carriers 961-968) # ...
0x0074ea Hlog (carriers 969-976) # ...
0x0074eb Hlog (carriers 977-984) # ...
0x0074ec Hlog (carriers 985-992) # ...
0x0074ed Hlog (carriers 993-1000) # ...
0x0074ee Hlog (carriers 1001-1008) # ...
0x0074ef Hlog (carriers 1009-1016) # ...
0x0074f0 Hlog (carriers 1017-1024) # ...
0x0074f1 Hlog (carriers 1025-1032) # ...
0x0074f2 Hlog (carriers 1033-1040) # ...
0x0074f3 Hlog (carriers 1041-1048) # ...
0x0074f4 Hlog (carriers 1049-1056) # ...
0x0074f5 Hlog (carriers 1057-1064) # ...
0x0074f6 Hlog (carriers 1065-1072) # ...
0x0074f7 Hlog (carriers 1073-1080) # ...
0x0074f8 Hlog (carriers 1081-1088) # ...
0x0074f9 Hlog (carriers 1089-1096) # ...
0x0074fa Hlog (carriers 1097-1104) # ...
0x0074fb Hlog (carriers 1105-1112) # ...
0x0074fc Hlog (carriers 1113-1120) # ...
0x0074fd Hlog (carriers 1121-1128) # ...
0x0074fe Hlog (carriers 1129-1136) # ...
0x0074ff Hlog (carriers 1137-1144) # ...
0x007500 Hlog (carriers 1145-1152) # ...
0x007501 Hlog (carriers 1153-1160) # ...
0x007502 Hlog (carriers 1161-1168) # ...
0x007503 Hlog (carriers 1169-1176) # ...
0x007504 Hlog (carriers 1177-1184) # ...
0x007505 Hlog (carriers 1185-1192) # ...
0x007506 Hlog (carriers 1193-1200) # ...
0x007507 Hlog (carriers 1201-1208) # ...
0x007508 Hlog (carriers 1209-1216) # ...
0x007509 Hlog (carriers 1217-1224) # ...
0x00750a Hlog (carriers 1225-1232) # ...
0x00750b Hlog (carriers 1233-1240) # ...
0x00750c Hlog (carriers 1241-1248) # ...
0x00750d Hlog (carriers 1249-1256) # ...
0x00750e Hlog (carriers 1257-1264) # ...
0x00750f Hlog (carriers 1265-1272) # ...
0x007510 Hlog (carriers 1273-1280) # ...
0x007511 Hlog (carriers 1281-1288) # ...
0x007512 Hlog (carriers 1289-1296) # ...
0x007513 Hlog (carriers 1297-1304) # ...
0x007514 Hlog (carriers 1305-1312) # ...
0x007515 Hlog (carriers 1313-1320) # ...
0x007516 Hlog (carriers 1321-1328) # ...
0x007517 Hlog (carriers 1329-1336) # ...
0x007518 Hlog (carriers 1337-1344) # ...
0x007519 Hlog (carriers 1345-1352) # ...
0x00751a Hlog (carriers 1353-1360) # ...
0x00751b Hlog (carriers 1361-1368) # ...
0x00751c Hlog (carriers 1369-1376) # ...
0x00751d Hlog (carriers 1377-1384) # ...
0x00751e Hlog (carriers 1385-1392) # ...
0x00751f Hlog (carriers 1393-1400) # ...
0x007520 Hlog (carriers 1401-1408) # ...
0x007521 Hlog (carriers 1409-1416) # ...
0x007522 Hlog (carriers 1417-1424) # ...
0x007523 Hlog (carriers 1425-1432) # ...
0x007524 Hlog (carriers 1433-1440) # ...
0x007525 Hlog (carriers 1441-1448) # ...
0x007526 Hlog (carriers 1449-1456) # ...
0x007527 Hlog (carriers 1457-1464) # ...
0x007528 Hlog (carriers 1465-1472) # ...
0x007529 Hlog (carriers 1473-1480) # ...
0x00752a Hlog (carriers 1481-1488) # ...
0x00752b Hlog (carriers 1489-1496) # ...
0x00752c Hlog (carriers 1497-1504) # ...
0x00752d Hlog (carriers 1505-1512) # ...
0x00752e Hlog (carriers 1513-1520) # ...
0x00752f Hlog (carriers 1521-1528) # ...
0x007530 Hlog (carriers 1529-1536) # ...
0x007531 Hlog (carriers 1537-1544) # ...
0x007532 Hlog (carriers 1545-1552) # ...
0x007533 Hlog (carriers 1553-1560) # ...
0x007534 Hlog (carriers 1561-1568) # ...
0x007535 Hlog (carriers 1569-1576) # ...
0x007536 Hlog (carriers 1577-1584) # ...
0x007537 Hlog (carriers 1585-1592) # ...
0x007538 Hlog (carriers 1593-1600) # ...
0x007539 Hlog (carriers 1601-1608) # ...
0x00753a Hlog (carriers 1609-1616) # ...
0x00753b Hlog (carriers 1617-1624) # ...
0x00753c Hlog (carriers 1625-1632) # ...
0x00753d Hlog (carriers 1633-1640) # ...
0x00753e Hlog (carriers 1641-1648) # ...
0x00753f Hlog (carriers 1649-1656) # ...
0x007540 Hlog (carriers 1657-1664) # ...
0x007541 Hlog (carriers 1665-1672) # ...
0x007542 Hlog (carriers 1673-1680) # ...
0x007543 Hlog (carriers 1681-1688) # ...
0x007544 Hlog (carriers 1689-1696) # ...
0x007545 Hlog (carriers 1697-1704) # ...
0x007546 Hlog (carriers 1705-1712) # ...
0x007547 Hlog (carriers 1713-1720) # ...
0x007548 Hlog (carriers 1721-1728) # ...
0x007549 Hlog (carriers 1729-1736) # ...
0x00754a Hlog (carriers 1737-1744) # ...
0x00754b Hlog (carriers 1745-1752) # ...
0x00754c Hlog (carriers 1753-1760) # ...
0x00754d Hlog (carriers 1761-1768) # ...
0x00754e Hlog (carriers 1769-1776) # ...
0x00754f Hlog (carriers 1777-1784) # ...
0x007550 Hlog (carriers 1785-1792) # ...
0x007551 Hlog (carriers 1793-1800) # ...
0x007552 Hlog (carriers 1801-1808) # ...
0x007553 Hlog (carriers 1809-1816) # ...
0x007554 Hlog (carriers 1817-1824) # ...
0x007555 Hlog (carriers 1825-1832) # ...
0x007556 Hlog (carriers 1833-1840) # ...
0x007557 Hlog (carriers 1841-1848) # ...
0x007558 Hlog (carriers 1849-1856) # ...
0x007559 Hlog (carriers 1857-1864) # ...
0x00755a Hlog (carriers 1865-1872) # ...
0x00755b Hlog (carriers 1873-1880) # ...
0x00755c Hlog (carriers 1881-1888) # ...
0x00755d Hlog (carriers 1889-1896) # ...
0x00755e Hlog (carriers 1897-1904) # ...
0x00755f Hlog (carriers 1905-1912) # ...
0x007560 Hlog (carriers 1913-1920) # ...
0x007561 Hlog (carriers 1921-1928) # ...
0x007562 Hlog (carriers 1929-1936) # ...
0x007563 Hlog (carriers 1937-1944) # ...
0x007564 Hlog (carriers 1945-1952) # ...
0x007565 Hlog (carriers 1953-1960) # ...
0x007566 Hlog (carriers 1961-1968) # ...
0x007567 Hlog (carriers 1969-1976) # ...
0x007568 Hlog (carriers 1977-1984) # ...
0x007569 Hlog (carriers 1985-1992) # ...
0x00756a Hlog (carriers 1993-2000) # ...
0x00756b Hlog (carriers 2001-2008) # ...
0x00756c Hlog (carriers 2009-2016) # ...
0x00756d Hlog (carriers 2017-2024) # ...
0x00756e Hlog (carriers 2025-2032) # ...
0x00756f Hlog (carriers 2033-2040) # ...
0x007570 Hlog (carriers 2041-2048) # ...
0x007571 Hlog (carriers 2049-2056) # ...
0x007572 Hlog (carriers 2057-2064) # ...
0x007573 Hlog (carriers 2065-2072) # ...
0x007574 Hlog (carriers 2073-2080) # ...
0x007575 Hlog (carriers 2081-2088) # ...
0x007576 Hlog (carriers 2089-2096) # ...
0x007577 Hlog (carriers 2097-2104) # ...
0x007578 Hlog (carriers 2105-2112) # ...
0x007579 Hlog (carriers 2113-2120) # ...
0x00757a Hlog (carriers 2121-2128) # ...
0x00757b Hlog (carriers 2129-2136) # ...
0x00757c Hlog (carriers 2137-2144) # ...
0x00757d Hlog (carriers 2145-2152) # ...
0x00757e Hlog (carriers 2153-2160) # ...
0x00757f Hlog (carriers 2161-2168) # ...
0x007580 Hlog (carriers 2169-2176) # ...
0x007581 Hlog (carriers 2177-2184) # ...
0x007582 Hlog (carriers 2185-2192) # ...
0x007583 Hlog (carriers 2193-2200) # ...
0x007584 Hlog (carriers 2201-2208) # ...
0x007585 Hlog (carriers 2209-2216) # ...
0x007586 Hlog (carriers 2217-2224) # ...
0x007587 Hlog (carriers 2225-2232) # ...
0x007588 Hlog (carriers 2233-2240) # ...
0x007589 Hlog (carriers 2241-2248) # ...
0x00758a Hlog (carriers 2249-2256) # ...
0x00758b Hlog (carriers 2257-2264) # ...
0x00758c Hlog (carriers 2265-2272) # ...
0x00758d Hlog (carriers 2273-2280) # ...
0x00758e Hlog (carriers 2281-2288) # ...
0x00758f Hlog (carriers 2289-2296) # ...
0x007590 Hlog (carriers 2297-2304) # ...
0x007591 Hlog (carriers 2305-2312) # ...
0x007592 Hlog (carriers 2313-2320) # ...
0x007593 Hlog (carriers 2321-2328) # ...
0x007594 Hlog (carriers 2329-2336) # ...
0x007595 Hlog (carriers 2337-2344) # ...
0x007596 Hlog (carriers 2345-2352) # ...
0x007597 Hlog (carriers 2353-2360) # ...
0x007598 Hlog (carriers 2361-2368) # ...
0x007599 Hlog (carriers 2369-2376) # ...
0x00759a Hlog (carriers 2377-2384) # ...
0x00759b Hlog (carriers 2385-2392) # ...
0x00759c Hlog (carriers 2393-2400) # ...
0x00759d Hlog (carriers 2401-2408) # ...
0x00759e Hlog (carriers 2409-2416) # ...
0x00759f Hlog (carriers 2417-2424) # ...
0x0075a0 Hlog (carriers 2425-2432) # ...
0x0075a1 Hlog (carriers 2433-2440) # ...
0x0075a2 Hlog (carriers 2441-2448) # ...
0x0075a3 Hlog (carriers 2449-2456) # ...
0x0075a4 Hlog (carriers 2457-2464) # ...
0x0075a5 Hlog (carriers 2465-2472) # ...
0x0075a6 Hlog (carriers 2473-2480) # ...
0x0075a7 Hlog (carriers 2481-2488) # ...
0x0075a8 Hlog (carriers 2489-2496) # ...
0x0075a9 Hlog (carriers 2497-2504) # ...
0x0075aa Hlog (carriers 2505-2512) # ...
0x0075ab Hlog (carriers 2513-2520) # ...
0x0075ac Hlog (carriers 2521-2528) # ...
0x0075ad Hlog (carriers 2529-2536) # ...
0x0075ae Hlog (carriers 2537-2544) # ...
0x0075af Hlog (carriers 2545-2552) # ...
0x0075b0 Hlog (carriers 2553-2560) # ...
0x0075b1 Hlog (carriers 2561-2568) # ...
0x0075b2 Hlog (carriers 2569-2576) # ...
0x0075b3 Hlog (carriers 2577-2584) # ...
0x0075b4 Hlog (carriers 2585-2592) # ...
0x0075b5 Hlog (carriers 2593-2600) # ...
0x0075b6 Hlog (carriers 2601-2608) # ...
0x0075b7 Hlog (carriers 2609-2616) # ...
0x0075b8 Hlog (carriers 2617-2624) # ...
0x0075b9 Hlog (carriers 2625-2632) # ...
0x0075ba Hlog (carriers 2633-2640) # ...
0x0075bb Hlog (carriers 2641-2648) # ...
0x0075bc Hlog (carriers 2649-2656) # ...
0x0075bd Hlog (carriers 2657-2664) # ...
0x0075be Hlog (carriers 2665-2672) # ...
0x0075bf Hlog (carriers 2673-2680) # ...
0x0075c0 Hlog (carriers 2681-2688) # ...
0x0075c1 Hlog (carriers 2689-2696) # ...
0x0075c2 Hlog (carriers 2697-2704) # ...
0x0075c3 Hlog (carriers 2705-2712) # ...
0x0075c4 Hlog (carriers 2713-2720) # ...
0x0075c5 Hlog (carriers 2721-2728) # ...
0x0075c6 Hlog (carriers 2729-2736) # ...
0x0075c7 Hlog (carriers 2737-2744) # ...
0x0075c8 Hlog (carriers 2745-2752) # ...
0x0075c9 Hlog (carriers 2753-2760) # ...
0x0075ca Hlog (carriers 2761-2768) # ...
0x0075cb Hlog (carriers 2769-2776) # ...
0x0075cc Hlog (carriers 2777-2784) # ...
0x0075cd Hlog (carriers 2785-2792) # ...
0x0075ce Hlog (carriers 2793-2800) # ...
0x0075cf Hlog (carriers 2801-2808) # ...
0x0075d0 Hlog (carriers 2809-2816) # ...
0x0075d1 Hlog (carriers 2817-2824) # ...
0x0075d2 Hlog (carriers 2825-2832) # ...
0x0075d3 Hlog (carriers 2833-2840) # ...
0x0075d4 Hlog (carriers 2841-2848) # ...
0x0075d5 Hlog (carriers 2849-2856) # ...
0x0075d6 Hlog (carriers 2857-2864) # ...
0x0075d7 Hlog (carriers 2865-2872) # ...
0x0075d8 Hlog (carriers 2873-2880) # ...
0x0075d9 Hlog (carriers 2881-2888) # ...
0x0075da Hlog (carriers 2889-2896) # ...
0x0075db Hlog (carriers 2897-2904) # ...
0x0075dc Hlog (carriers 2905-2912) # ...
0x0075dd Hlog (carriers 2913-2920) # ...
0x0075de Hlog (carriers 2921-2928) # ...
0x0075df Hlog (carriers 2929-2936) # ...
0x0075e0 Hlog (carriers 2937-2944) # ...
0x0075e1 Hlog (carriers 2945-2952) # ...
0x0075e2 Hlog (carriers 2953-2960) # ...
0x0075e3 Hlog (carriers 2961-2968) # ...
0x0075e4 Hlog (carriers 2969-2976) # ...
0x0075e5 Hlog (carriers 2977-2984) # ...
0x0075e6 Hlog (carriers 2985-2992) # ...
0x0075e7 Hlog (carriers 2993-3000) # ...
0x0075e8 Hlog (carriers 3001-3008) # ...
0x0075e9 Hlog (carriers 3009-3016) # ...
0x0075ea Hlog (carriers 3017-3024) # ...
0x0075eb Hlog (carriers 3025-3032) # ...
0x0075ec Hlog (carriers 3033-3040) # ...
0x0075ed Hlog (carriers 3041-3048) # ...
0x0075ee Hlog (carriers 3049-3056) # ...
0x0075ef Hlog (carriers 3057-3064) # ...
0x0075f0 Hlog (carriers 3065-3072) # ...
0x0075f1 Hlog (carriers 3073-3080) # ...
0x0075f2 Hlog (carriers 3081-3088) # ...
0x0075f3 Hlog (carriers 3089-3096) # ...
0x0075f4 Hlog (carriers 3097-3104) # ...
0x0075f5 Hlog (carriers 3105-3112) # ...
0x0075f6 Hlog (carriers 3113-3120) # ...
0x0075f7 Hlog (carriers 3121-3128) # ...
0x0075f8 Hlog (carriers 3129-3136) # ...
0x0075f9 Hlog (carriers 3137-3144) # ...
0x0075fa Hlog (carriers 3145-3152) # ...
0x0075fb Hlog (carriers 3153-3160) # ...
0x0075fc Hlog (carriers 3161-3168) # ...
0x0075fd Hlog (carriers 3169-3176) # ...
0x0075fe Hlog (carriers 3177-3184) # ...
0x0075ff Hlog (carriers 3185-3192) # ...
0x007600 Hlog (carriers 3193-3200) # ...
0x007601 Hlog (carriers 3201-3208) # ...
0x007602 Hlog (carriers 3209-3216) # ...
0x007603 Hlog (carriers 3217-3224) # ...
0x007604 Hlog (carriers 3225-3232) # ...
0x007605 Hlog (carriers 3233-3240) # ...
0x007606 Hlog (carriers 3241-3248) # ...
0x007607 Hlog (carriers 3249-3256) # ...
0x007608 Hlog (carriers 3257-3264) # ...
0x007609 Hlog (carriers 3265-3272) # ...
0x00760a Hlog (carriers 3273-3280) # ...
0x00760b Hlog (carriers 3281-3288) # ...
0x00760c Hlog (carriers 3289-3296) # ...
0x00760d Hlog (carriers 3297-3304) # ...
0x00760e Hlog (carriers 3305-3312) # ...
0x00760f Hlog (carriers 3313-3320) # ...
0x007610 Hlog (carriers 3321-3328) # ...
0x007611 Hlog (carriers 3329-3336) # ...
0x007612 Hlog (carriers 3337-3344) # ...
0x007613 Hlog (carriers 3345-3352) # ...
0x007614 Hlog (carriers 3353-3360) # ...
0x007615 Hlog (carriers 3361-3368) # ...
0x007616 Hlog (carriers 3369-3376) # ...
0x007617 Hlog (carriers 3377-3384) # ...
0x007618 Hlog (carriers 3385-3392) # ...
0x007619 Hlog (carriers 3393-3400) # ...
0x00761a Hlog (carriers 3401-3408) # ...
0x00761b Hlog (carriers 3409-3416) # ...
0x00761c Hlog (carriers 3417-3424) # ...
0x00761d Hlog (carriers 3425-3432) # ...
0x00761e Hlog (carriers 3433-3440) # ...
0x00761f Hlog (carriers 3441-3448) # ...
0x007620 Hlog (carriers 3449-3456) # ...
0x007621 Hlog (carriers 3457-3464) # ...
0x007622 Hlog (carriers 3465-3472) # ...
0x007623 Hlog (carriers 3473-3480) # ...
0x007624 Hlog (carriers 3481-3488) # ...
0x007625 Hlog (carriers 3489-3496) # ...
0x007626 Hlog (carriers 3497-3504) # ...
0x007627 Hlog (carriers 3505-3512) # ...
0x007628 Hlog (carriers 3513-3520) # ...
0x007629 Hlog (carriers 3521-3528) # ...
0x00762a Hlog (carriers 3529-3536) # ...
0x00762b Hlog (carriers 3537-3544) # ...
0x00762c Hlog (carriers 3545-3552) # ...
0x00762d Hlog (carriers 3553-3560) # ...
0x00762e Hlog (carriers 3561-3568) # ...
0x00762f Hlog (carriers 3569-3576) # ...
0x007630 Hlog (carriers 3577-3584) # ...
0x007631 Hlog (carriers 3585-3592) # ...
0x007632 Hlog (carriers 3593-3600) # ...
0x007633 Hlog (carriers 3601-3608) # ...
0x007634 Hlog (carriers 3609-3616) # ...
0x007635 Hlog (carriers 3617-3624) # ...
0x007636 Hlog (carriers 3625-3632) # ...
0x007637 Hlog (carriers 3633-3640) # ...
0x007638 Hlog (carriers 3641-3648) # ...
0x007639 Hlog (carriers 3649-3656) # ...
0x00763a Hlog (carriers 3657-3664) # ...
0x00763b Hlog (carriers 3665-3672) # ...
0x00763c Hlog (carriers 3673-3680) # ...
0x00763d Hlog (carriers 3681-3688) # ...
0x00763e Hlog (carriers 3689-3696) # ...
0x00763f Hlog (carriers 3697-3704) # ...
0x007640 Hlog (carriers 3705-3712) # ...
0x007641 Hlog (carriers 3713-3720) # ...
0x007642 Hlog (carriers 3721-3728) # ...
0x007643 Hlog (carriers 3729-3736) # ...
0x007644 Hlog (carriers 3737-3744) # ...
0x007645 Hlog (carriers 3745-3752) # ...
0x007646 Hlog (carriers 3753-3760) # ...
0x007647 Hlog (carriers 3761-3768) # ...
0x007648 Hlog (carriers 3769-3776) # ...
0x007649 Hlog (carriers 3777-3784) # ...
0x00764a Hlog (carriers 3785-3792) # ...
0x00764b Hlog (carriers 3793-3800) # ...
0x00764c Hlog (carriers 3801-3808) # ...
0x00764d Hlog (carriers 3809-3816) # ...
0x00764e Hlog (carriers 3817-3824) # ...
0x00764f Hlog (carriers 3825-3832) # ...
0x007650 Hlog (carriers 3833-3840) # ...
0x007651 Hlog (carriers 3841-3848) # ...
0x007652 Hlog (carriers 3849-3856) # ...
0x007653 Hlog (carriers 3857-3864) # ...
0x007654 Hlog (carriers 3865-3872) # ...
0x007655 Hlog (carriers 3873-3880) # ...
0x007656 Hlog (carriers 3881-3888) # ...
0x007657 Hlog (carriers 3889-3896) # ...
0x007658 Hlog (carriers 3897-3904) # ...
0x007659 Hlog (carriers 3905-3912) # ...
0x00765a Hlog (carriers 3913-3920) # ...
0x00765b Hlog (carriers 3921-3928) # ...
0x00765c Hlog (carriers 3929-3936) # ...
0x00765d Hlog (carriers 3937-3944) # ...
0x00765e Hlog (carriers 3945-3952) # ...
0x00765f Hlog (carriers 3953-3960) # "\x00\x03\x1c" = -73.6 dB
0x007660 Hlog (carriers 3961-3968) # "\x00\x03\x1a" = -73.4 dB
0x007661 Hlog (carriers 3969-3976) # "\x00\x03\xff"
0x007662 Hlog (carriers 3977-3984) # "\x00\x03\xff"
0x007663 Hlog (carriers 3985-3992) # ...
0x007664 Hlog (carriers 3993-4000) # ...
0x007665 Hlog (carriers 4001-4008) # ...
0x007666 Hlog (carriers 4009-4016) # ...
0x007667 Hlog (carriers 4017-4024) # ...
0x007668 Hlog (carriers 4025-4032) # ...
0x007669 Hlog (carriers 4033-4040) # ...
0x00766a Hlog (carriers 4041-4048) # ...
0x00766b Hlog (carriers 4049-4056) # ...
0x00766c Hlog (carriers 4057-4064) # ...
0x00766d Hlog (carriers 4065-4072) # ...
0x00766e Hlog (carriers 4073-4080) # ...
0x00766f Hlog (carriers 4081-4088) # ...
0x007670 Hlog (carriers 4089-4096) # ...
# QLN: SCStatusSegmentQln of Line 1 (Quiet-Line-Noise per subcarrier)
# Frames 1797 - 1802
# * one byte per bin (register read returns three results)
# * max is -23.0 dB (0x00)
# * min is -151.0 dB (0xff)
# * inc in -0.5 dB
# Format is as xdsl2SCStatusSegmentQln described in RFC 5650, section 2.6
0x007671 QLN (carriers 1-8, 9-16 and 17-24) # "\xff\xff\xff"
0x007672 QLN (carriers 25-32, 33-40 and 41-48) # "\xff\xd3\xca" = NA, -128.5, -124.0 dBm/Hz
0x007673 QLN (carriers 49-56, 57-64 and 65-72) # "\xc6\xc1\xbd" = -122.0, -119.5, -117.5 dBm/Hz
0x007674 QLN (carriers 73-80, 81-88 and 89-96) # ...
0x007675 QLN (carriers 97-104, 105-112 and 113-120) # ...
0x007676 QLN (carriers 121-128, 129-136 and 137-144) # ...
0x007677 QLN (carriers 145-152, 153-160 and 161-168) # ...
0x007678 QLN (carriers 169-176, 177-184 and 185-192) # ...
0x007679 QLN (carriers 193-200, 201-208 and 209-216) # ...
0x00767a QLN (carriers 217-224, 225-232 and 233-240) # ...
0x00767b QLN (carriers 241-248, 249-256 and 257-264) # ...
0x00767c QLN (carriers 265-272, 273-280 and 281-288) # ...
0x00767d QLN (carriers 289-296, 297-304 and 305-312) # ...
0x00767e QLN (carriers 313-320, 321-328 and 329-336) # ...
0x00767f QLN (carriers 337-344, 345-352 and 353-360) # ...
0x007680 QLN (carriers 361-368, 369-376 and 377-384) # ...
0x007681 QLN (carriers 385-392, 393-400 and 401-408) # ...
0x007682 QLN (carriers 409-416, 417-424 and 425-432) # ...
0x007683 QLN (carriers 433-440, 441-448 and 449-456) # ...
0x007684 QLN (carriers 457-464, 465-472 and 473-480) # ...
0x007685 QLN (carriers 481-488, 489-496 and 497-504) # ...
0x007686 QLN (carriers 505-512, 513-520 and 521-528) # ...
0x007687 QLN (carriers 529-536, 537-544 and 545-552) # ...
0x007688 QLN (carriers 553-560, 561-568 and 569-576) # ...
0x007689 QLN (carriers 577-584, 585-592 and 593-600) # ...
0x00768a QLN (carriers 601-608, 609-616 and 617-624) # ...
0x00768b QLN (carriers 625-632, 633-640 and 641-648) # ...
0x00768c QLN (carriers 649-656, 657-664 and 665-672) # ...
0x00768d QLN (carriers 673-680, 681-688 and 689-696) # ...
0x00768e QLN (carriers 697-704, 705-712 and 713-720) # ...
0x00768f QLN (carriers 721-728, 729-736 and 737-744) # ...
0x007690 QLN (carriers 745-752, 753-760 and 761-768) # ...
0x007691 QLN (carriers 769-776, 777-784 and 785-792) # ...
0x007692 QLN (carriers 793-800, 801-808 and 809-816) # ...
0x007693 QLN (carriers 817-824, 825-832 and 833-840) # ...
0x007694 QLN (carriers 841-848, 849-856 and 857-864) # ...
0x007695 QLN (carriers 865-872, 873-880 and 881-888) # ...
0x007696 QLN (carriers 889-896, 897-904 and 905-912) # ...
0x007697 QLN (carriers 913-920, 921-928 and 929-936) # ...
0x007698 QLN (carriers 937-944, 945-952 and 953-960) # ...
0x007699 QLN (carriers 961-968, 969-976 and 977-984) # ...
0x00769a QLN (carriers 985-992, 993-1000 and 1001-1008) # ...
0x00769b QLN (carriers 1009-1016, 1017-1024 and 1025-1032) # ...
0x00769c QLN (carriers 1033-1040, 1041-1048 and 1049-1056) # ...
0x00769d QLN (carriers 1057-1064, 1065-1072 and 1073-1080) # ...
0x00769e QLN (carriers 1081-1088, 1089-1096 and 1097-1104) # ...
0x00769f QLN (carriers 1105-1112, 1113-1120 and 1121-1128) # ...
0x0076a0 QLN (carriers 1129-1136, 1137-1144 and 1145-1152) # ...
0x0076a1 QLN (carriers 1153-1160, 1161-1168 and 1169-1176) # ...
0x0076a2 QLN (carriers 1177-1184, 1185-1192 and 1193-1200) # ...
0x0076a3 QLN (carriers 1201-1208, 1209-1216 and 1217-1224) # ...
0x0076a4 QLN (carriers 1225-1232, 1233-1240 and 1241-1248) # ...
0x0076a5 QLN (carriers 1249-1256, 1257-1264 and 1265-1272) # ...
0x0076a6 QLN (carriers 1273-1280, 1281-1288 and 1289-1296) # ...
0x0076a7 QLN (carriers 1297-1304, 1305-1312 and 1313-1320) # ...
0x0076a8 QLN (carriers 1321-1328, 1329-1336 and 1337-1344) # ...
0x0076a9 QLN (carriers 1345-1352, 1353-1360 and 1361-1368) # ...
0x0076aa QLN (carriers 1369-1376, 1377-1384 and 1385-1392) # ...
0x0076ab QLN (carriers 1393-1400, 1401-1408 and 1409-1416) # ...
0x0076ac QLN (carriers 1417-1424, 1425-1432 and 1433-1440) # ...
0x0076ad QLN (carriers 1441-1448, 1449-1456 and 1457-1464) # ...
0x0076ae QLN (carriers 1465-1472, 1473-1480 and 1481-1488) # ...
0x0076af QLN (carriers 1489-1496, 1497-1504 and 1505-1512) # ...
0x0076b0 QLN (carriers 1513-1520, 1521-1528 and 1529-1536) # ...
0x0076b1 QLN (carriers 1537-1544, 1545-1552 and 1553-1560) # ...
0x0076b2 QLN (carriers 1561-1568, 1569-1576 and 1577-1584) # ...
0x0076b3 QLN (carriers 1585-1592, 1593-1600 and 1601-1608) # ...
0x0076b4 QLN (carriers 1609-1616, 1617-1624 and 1625-1632) # ...
0x0076b5 QLN (carriers 1633-1640, 1641-1648 and 1649-1656) # ...
0x0076b6 QLN (carriers 1657-1664, 1665-1672 and 1673-1680) # ...
0x0076b7 QLN (carriers 1681-1688, 1689-1696 and 1697-1704) # ...
0x0076b8 QLN (carriers 1705-1712, 1713-1720 and 1721-1728) # ...
0x0076b9 QLN (carriers 1729-1736, 1737-1744 and 1745-1752) # ...
0x0076ba QLN (carriers 1753-1760, 1761-1768 and 1769-1776) # ...
0x0076bb QLN (carriers 1777-1784, 1785-1792 and 1793-1800) # ...
0x0076bc QLN (carriers 1801-1808, 1809-1816 and 1817-1824) # ...
0x0076bd QLN (carriers 1825-1832, 1833-1840 and 1841-1848) # ...
0x0076be QLN (carriers 1849-1856, 1857-1864 and 1865-1872) # ...
0x0076bf QLN (carriers 1873-1880, 1881-1888 and 1889-1896) # ...
0x0076c0 QLN (carriers 1897-1904, 1905-1912 and 1913-1920) # ...
0x0076c1 QLN (carriers 1921-1928, 1929-1936 and 1937-1944) # ...
0x0076c2 QLN (carriers 1945-1952, 1953-1960 and 1961-1968) # ...