forked from xdarklight/drv_dsl_cpe_api_vrx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
1133 lines (1036 loc) · 44 KB
/
ChangeLog
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
NEXT VERSION
V4.16.6.3 - 2014-09-18
common:
- Included compatibility patch with VDSL MEI Driver V1.4.4.x because this API
maintenance version is intended to be used only with this VDSL MEI Driver
maintenance branch.
V4.16.6.2 - 2014-09-09
-
V4.16.6.1 - 2014-09-04
common:
- VRX (DSLCPE_SW-815) FEC and CRC values in pmccsg jump suddenly to a very high
number when disturbing the line
+ extended showtime counters g_VRxPM_MsgChecklist with available state (exception)
+ please note that this covers only a part of the issue! The Jira
DSLCPE_SW-824 (which is currently open) needs to be included in addition.
- VRX (DSLCPE_SW-810) CPE configuration of supported VDSL Profiles
+ Extended Vdsl profiled configuration set within Modem config init (use only
selected profiles via DSL_FIO_VDSL_PROFILE_CONFIG_SET)
V4.16.6 - 2014-04-16
common:
- (DSLCPE_SW-784) State 0xff on CPE after activation of Debug messages
for mutlimode tests
+ added ioctl DSL_FIO_FIRMWARE_DOWNLOAD_STATUS_GET support to trigger
firmware download status within startup script
V4.16.5 - 2014-03-07
Bug fix(es):
- (DSLCPE_SW-786) [VRX] Counter overflow in UAS or FECS values
+ extended UAS counter handling
+ exluded possible overflow within autoboot timeouts handling
V4.16.4 - 2014-03-05
Bug fix(es):
- VRX (DSLCPE_SW-789) Version check for G.INP Amd2 Support (ReTx) is wrong
+ Corrected version check including check to enable feature only for VDSL
common:
- VRX (DSLCPE_SW-777) In case of bonding is enabled increase polling cycle
frequency during G.HS phase
+ excluded PM related counters (except UAS) polling cycle within training
+ added CMD_ATM_BC0_TXSTATSNE_GET to the DSL_DRV_VRX_g_MsgDumpBlacklist
- (DSLSPE_SW-771) Extend debugging functionality and take care that it is
working completely
+ extended DSL_FIO_DBG_MODULE_LEVEL_SET/GET (+ DSL_DBG_NOTIFICATIONS)
+ extended showtime enter/exit debug prints with new debug level
- VRX (DSLCPE_SW-783) first US parameters are 0, when API command lsg is
directly after ST is read.
+ extended DSL_DRV_VRX_LineStatusGet() function
- (DSLCPE_SW-711) Misc smaller improvements
+ extended context variables read/write operations with mutex protection
+ updated timeout wait values within according defines and descriptions
- (DSLCPE_SW-786) [VRX] Counter overflow in UAS or FECS values
+ fixed ms counter overflow handling for UAS counter
+ extended LineSecCounters restore with FECS counter
+ fixed ES counter restore
+ extended UAS counter handling aligned in sync with IFXOS_ElapsedTimeMSecGet
+ extended DSL_DRV_ElapsedTimeMSecGet aligned to the IFXOS_ElapsedTimeMSecGet
- (DSLPCE_SW-787) [VRX] US ETR value read from CPE through API command is not
correct
+ extended msg white list with CMD_RTX_BEARERCHSUS_GET
V4.16.3 - 2014-01-29
common:
- VRX (DSLCPE_SW-768) API for FW R7 Release - Change of default configuration
values
+ Added handling to set API default for (S)RA mode within context of FW
download only in case no user specific re-configurations has been done
before
- VRX (DSLCPE_SW-767) Extensions for retry-counter handling of
Multimode State Machine (APS3).
+ Extended with CAM retry function with nCamGhsReinits counter.
- VRX (DSLCPE_SW-778) Line unlock does not work in case of operating a single
link line on a boding CPE (related to the DSLCPE_SW-752)
+ fix orderly shutdown usage in case of internal firmware exception case
- VRX (DSLCPE_SW-775) Automatically enable Telefonica mode in case of T1.413 is
configured at startup
+ extended startup activation sequence with auto sequence config.
- VRX (DSLCPE_SW-777) In case of bonding is enabled increase polling cycle
frequency during G.HS phase
+ added DSL_AUTOBOOT_BONDING_TRAINING_POLL_TIME 100ms for PafEnable case
between link actvation and full init
+ added new function DSL_DRV_BND_BondingEnableCheck
V4.16.2 - 2014-01-16
-
V4.16.1 - 2014-01-15
common:
- (DSLCPE_SW-770) Klocwork reworks/fixes for UGW-6.1.
+ Extended drv_dsl_cpe_api (UGW_VRX288_GW_HE_VDSL_LTE)
V4.16.0 - 2014-01-10
common:
- Updated copyright header (year 2014)
V4.15.10 - 2013-12-19
- VRX (DSLCPE_SW-768) API for FW R7 Release - Change of default configuration
values
- VRX (DSLCPE_SW-759) Include and test CPE controlled L3 orderly shutdown handling
V4.15.9 - 2013-12-06
- VRX (DSLCPE_SW-749) Rework Retransmission counter related API functions.
+ fix compile with disabled PM ReTX counters
+ fix DSL_DRV_PM_PTR_RETX_COUNTERS macro (definition & usage)
V4.15.8 - 2013-12-05
common:
- (DSLCPE_SW-772) Take care that MEI driver version can be more than three digits
+ Reworked implementation for ADSL platforms (ADSL MEI Driver related handling)
- VRX (DSLCPE_SW-749) Rework Retransmission counter related API functions.
+ Extended PM_ReTxCounters with nErrorFreeBits, nLeftr.
+ Extended PM_LineSecCounters with nFECS.
+ Fixed nEftrMin handling for PM Showtime counter.
- VRX (DSLCPE_SW-752) Strictly usage of local orderly shutdown.
+ Extended transition to L3 within showtime update with orderly shutdown.
+ Extended SNR min margin error within showtime update with orderly shutdown.
- VRX (DSLCPE_SW-764) CMV bit to enable/disable G.INP Amendment 2 support.
+ Added G.998.4 Amendment 2 support.
- VRX (DSLCPE_SW-731) Extend far end counter handling of PM module.
+ Added FarEnd CMD_ATM_BC0_StatsFE_Get (MsgId 0x330A) (HEC, IBE, CD, CU).
V4.15.7 - 2013-09-18
common:
- VRX (DSLCPE_SW-757)Extend Retransmission config&status for Upstream direction
+ Message header files update to VRX FWMCAT Rev2.3
+ Extended handling for upstream RTX config und status, *excluding* counters
from within following functions
- DSL_FIO_PM_RETX_COUNTERS_xxx_GET
- DSL_FIO_RETX_STATISTICS_GET
V4.15.6 - 2013-09-13
common:
- (DSLCPE_SW-755) Extensions for G997_RateAdaptationConfigSet handling
- VRX (DSLCPE_SW-754) Using different DSL FW binaries for dual port
and single port mode.
+ Extended firmware download handling with second firmware.
V4.15.5 - 2013-08-22
-
V4.15.4 - 2013-08-16
common:
- (DSLCPE_SW-734) Take care that DSL Subsystem is fully functional with
Linux kernel 3.8.
+ Extended source code for Danube to be compilable with linux kernel 3.8
Bug fix(es):
- Danube (DSLCPE_SW-744) SNRpsds w/ and w/o virtual noise including bugfixes for
all per-tone/subcarrier functions.
+ Fixed compilation error for DSL_DRV_DEV_DeltSNRGet() function.
V4.15.3 - 2013-08-09
common:
- (DSLCPE_SW-734) Take care that DSL Subsystem is fully functional with
Linux kernel 3.8.
+ Extended source code for VRX to be compilable with linux kernel 3.8
V4.15.2 - 2013-07-29
common:
- VRX (DSLCPE_SW-744) SNRpsds w/ and w/o virtual noise including bugfixes for
all per-tone/subcarrier functions.
Extended DELT functions according to MCAT 2.2 (see Table 12 How to retrieve
test parameter data). Use fw values from CO side via EOC (showtime case).
Added periodically update FE test parameters (background mode).
- VRX (DSLCPE_SW-743) Message header files update to VRX FWMCAT Rev2.2
V4.15.1 - 2013-07-18
Bug fix(es):
- VRX (DSLCPE_SW-739) VDSL modes are masked out in case of ADSL link activation
Corrected to include configured VDSL modes within FW configuration of ADSL
link activation
common:
- VRX (DSLCPE_SW-738) Bonding and ReTx functionality needs to be enabled together
- (DSLCPE_SW-736) Change of default configuration values
Updated the following default configuration values
+ bReTxEnable enabled
+ VRX only: bVirtualNoiseSupport enabled
+ VRX only: G.HS tones A43+A43C for AnnexA respective B43+B43C for AnnexB
+ XTSE octets for AnnexB set to 0x10 0x00 0x00 0x00 0x00 0x04 0x01 0xXX
- VRX (DSLCPE_SW-728) Adapt TR1/TR2 supervision for ReTx specific EFTR_min
parameter.
Extended PM module handling for reTxCounters.
- VRX (DSLCPE_SW-732) Include/rework implementation for NoiseMargingDelta
configuration.
Implementation re-included again with extensions (one parameter for ADSL and
VDSL).
V4.15.0 - 2013-07-10
Bug fix(es):
- VRX (DSLCPE_SW-724) ADSL / ReTx / ActualDataRate is in kpbs
Reworked handling (incl. ReTx) for g997csg related parameters
- VRX (DSLCPE_SW-710) VDSL-PTM doesn't reach showtime when changing mode from
any DSL
+ Extend NextMode update from non-fail state error (wrong xtse config).
- VRX (DSLCPE_SW-707) Extensions for Multimode State Machine (APS3)
+ fixed restart disabled line for manual enabling second line.
+ extend disabled line lock (one of two lines could be paf not available)
+ set bGotShowtime flag for VRX within showtime state.
+ added check for opposite line disabled.
+ added check for only vdsl firmware for CMD_PAF_HS_StatusGet (0xDD03).
- VRX (DSLCPE_SW-712) Error Prints from DSL on the console.
+ extended DSL_DRV_VRX_SendMsgXtseStatusGet function printout (msg dump added).
- VRX (DSLCPE_SW-692) Activating specific debug output results in "Oops[#1]"
on autoboot re-start. Extended debug prints table DSL_DBG_PRN_AUTOBOOT_STATE
with orderly shutdown autoboot states (reques, wait, reached).
- (UGW_SW-3017) Script notification shall be only called in case of relevant
state changes
common:
- VRX (DSLCPE_SW-729) Add FAST LOS suberror code to the known list of
SubErrorCodes
- VRX (DSLCPE_SW-726) Message header files update to VRX FWMCAT Rev2.1
- VRX (DSLCPE_SW-720) XTSE8 (VDSL region) bit on CPE does not match with the
configured value on CPE and not with reported value on CO side
+ If US0 is not used all three regions (A/B/C) are indicated now
- VRX (DSLCPE_SW-718)Increase API training timout handling for vectoring to 12
minutes
- VRX (DSLCPE_SW-672) Extend autoboot handling with orderly link shutdown
handling.
+ added transition from ORDERLY_SHUTDOWN_WAIT state to RESTART state.
+ added orderly shutdown after autoboot training timeout restart.
- (DSLCPE_SW-704) Investigate error prints within autoboot stop/start sequence.
Changed autoboot start error prints level to warning.
- VRX (DSLCPE_SW-707) Extensions for Multimode State Machine (APS3).
Extended autoboot handling for off-chip bonding board and non-bonding CO
(2 lines connected).
- VRX (DSLCPE_SW-730) L2 exit according to G.992.3 Amendment 4.
Extended using message CMD_ModemFSM_OptionsSet with DSL_G997_PMMODE_BIT_L2_STATE
configuration. PMMode stored within DSL_Context.
V4.14.12 - 2013-04-05
common:
- Klocwork issues crosschecked/fixed
V4.14.11 - 2013-04-02
common:
- VRX (DSLCPE_SW-672) Extend autoboot handling with orderly shutdown handling.
+ Added handling for orderly shutdown within training and showtime states.
- VRX (DSLCPE_SW-693) Checks for dual port mode (on-chip bonding) are incorrect.
Updated fw feature checks only for on-chip bonding.
V4.14.10 - 2013-03-25
common:
- VRX (DSLCPE_SW-682) API for FW R6 Release - Support for unified multimode
state machine
+ Changed implementation according to APS3 multimode handling V1d to combine
Telefonica switching mode functionality (from V4.11.x) with bonding
functionality (on-chip and off-chip, from V4.13.x)
V4.14.9 - 2013-03-22
Bug fix(es):
- VRX (DSLCPE_SW-702) SRA VDSL FW version check is wrong for "released" FW binary
- VRX (DSLCPE_SW-697) Correct VDSL FW version checks to allow also app type "7"
- VRX318 (DSLCPE_SW-691) Disabling autoboot state machine results in problems.
Removed INCLUDE_DSL_CPE_API_VRX defined section within function
DSL_DRV_AutobootHandleOrderlyShutdownRequest() implementation.
- VRX (DSLCPE_SW-680) API for FW R6 Release - Include API formated message dump
within MEI
+ Added mapping of low level driver debug configuration (dbgmls 13)
+ Fine tuning of MEI debug level for MEI_MSG_DUMP_API (as within updated Jira)
+ Initialized MEI related debug levels within DSL_DRV_Init()
common:
- (DSLCPE_SW-701) Extend API interface for getting more fail state information
- VRX (DSLCPE_SW-694) Message header files update to VRX FWMCAT Rev2.0
- VRX (DSLCPE_SW-667) API for FW R6 Release - New AELEM Feature to be added.
Changed nAeleMode type to enum DSL_G997_AeleMode_t. Added absent mapping
API nAeleMode to the fw message value.
V4.14.8 - 2013-03-04
Bug fix(es):
- VRX318 (DSLCPE_SW-691) Disabling autoboot state machine results in problems
- VRX (DSLCPE_SW-688) RTX DS - CRC reporting
common:
- VRX (DSLCPE_SW-679) API for FW R6 Release - Erasure decoding specific INP
report. Added new parameters ActualImpulseNoiseProtectionNoErasure and
ActualImpulseNoiseProtectionRein handling, updated parameter
ActualImpulseNoiseProtection handling (fw value used instead of calculated
within API).
V4.14.7 - 2013-02-27
common:
- VRX (DSLCPE_SW-686) Extensions for SystemInterfaceStatus handling
- VRX (DSLCPE_SW-678) API for FW R6 Release - Handling for new FW application
type (which supports G.Vector). Transfer platform id and fw xdsl mode for
MEI driver.
- VRX (DSLCPE_SW-680) API for FW R6 Release - Include API formated message dump
within MEI. ModuleLevelSet for msg dump in sync with MEI debug dump prints.
- VRX (DSLCPE_SW-667) API for FW R6 Release - New AELEM Feature to be added.
Added ioctl DSL_FIO_G997_US_POWER_BACK_OFF_STATUS_GET handling (mapped to the
ACK_PBO_AELEM_Status_Get firmware message).
V4.14.6 - 2013-02-15
Bug fix(es):
- VRX (DSLCPE_SW-685) Notification Events for DSL Bonding and Status are not
received in the xdslrc.sh script
Reworked event generation for DSL_EVENT_S_SYSTEM_INTERFACE_STATUS
- Danube (DSLCPE_SW-663) In case of INCLUDE_DSL_DELT undefined g997lsg returns
error DSL_ERR_DELT_DATA_NOT_AVAILABLE
common:
- Enhanced upstream framing (DSL_ENHANCED_FRAMING_US) will be enabled by default
- Fixed ReTx counters save issue for several "acs 2" auotoboot restart.
- CMD_ATM_BC0_TXSTATSNE_GET moved to whitelist from blacklist
V4.14.5 - 2013-02-05
Bug fix(es):
- Fix for VRX FWMCAT Rev1.9 update: Corrected message length for
"CMD_ATM_BC0_StatsNE_Set" (MsgID: 0x2E4A)
common:
- VRX318 (DSLCPE_SW-672) Extend autoboot handling with orderly link shutdown
handling.
Extended the autoboot handling state machine with an additional state
"OrderlyShutdownRequested".
- Fixed ReTx counters save issue for several "acs 2" auotoboot restart.
- CMD_ATM_BC0_TXSTATSNE_GET moved to whitelist from blacklist
V4.14.4 - 2013-01-25
Bug fix(es):
- VRX (DSLCPE_SW-673) In case of ReTx is used ActualNetDataRate (g997csg) is zero
- VRX (DSLCPE_SW-668) ReTx: lfsg does not give the correct status for
Retransmission (on/off)
common:
- VRX (DSLCPE_SW-669) ReTx is also supported for ADSL AnnexB
- VRX (DSLCPE_SW-653) Update implementation of DSL_FIO_G997_CHANNEL_STATUS_GET
for ReTx specific handling. Added ActualNetDataRate parameter handling.
- Danube (DSLCPE_SW-657) Make usage of ReTx specific net data rate. Updated
actual data rate handling in retransmission case.
- VRX (DSLCPE_SW-660) Supported for TC-Layer automode in VDSL (Step 1, 2).
Updated SystemIf Status handling. Updated DataPathCounters (ATM or PTM)
according to the selected TC-Layer.
- VRX (DSLCPE_SW-650) Cleanup of obsolete preprocessor definition
INCLUDE_DSL_CPE_API_VRX_FULL_MSG.
- [DSLCPE_SW-665][ARX300] DSL Subsystem is fully functional with Linux kernel 2.6.36
- Danube [DSLCPE_SW-663] Function g997lsg deliver values for
nDeltDataType == diagnostic.
- VRX (DSLCPE_SW-664) Message header files updated to VRX FWMCAT Rev1.9
V4.14.3 - 2012-12-03
common:
- Marked left over and not used SAR related functionalities ("not used anymore")
- VRX (DSLCPE_SW-654) Added supporting SRA for VDSL.
V4.14.2 - 2012-11-26
common:
- VRX (DSLCPE_SW-622) Message header files updated to VRX FWMCAT Rev1.8
V4.14.1 - 2012-09-14
common:
- VRX (DSLCPE_SW-635) Message header files updated to VRX FWMCAT Rev1.7
Modem initialization updated with function DSL_DRV_VRX_SendMsgMiscConfigSet
- VRX (DSLCPE_SW-637) API for FW R5.1 Release - Support for Virtual Noise.
Added CMD_ModemFSM_Options2Set msg handle to ModemWriteConfig.
Updated ioctl DSL_FIO_LINE_FEATURE_CONFIG_SET handle (VRX support).
- VRX (DSLCPE_SW-639) API for FW R5.1 Release - ReTx is also supported for ADSL.
RTX related messages handled for minimun firmware versions
DSL_MIN_FW_VERSION_RETX_ADSL and DSL_MIN_FW_VERSION_RETX_VDSL.
V4.14.0 - 2012-09-05
common:
Workarounds added for problems within communication to the PP subsystem
(showtime entry/exit handling)
V4.13.3 - 2012-09-04
Bug fix(es):
- VRX (DSLCPE_SW-642) Link drops in G992.1A mode.
DSL_DRV_VRX_AdslChStatusGet() handling fixed, added back ADSL1 mode
detection
V4.13.2 - 2012-08-16
common:
- (DSLCPE_SW-630) Cleanup deprecated functionalities
Removed deprecated implementation related to LED and line failure counter
handling
Bug fix(es):
- (DSLCPE_SW-618) Extend low level (MEI) driver for support of new SMART PHY
Rollback of changes (not needed because PCIe driver will provide base address
for PDBRAM)
- VRX (DSLCPE_SW-614) Add tear down functionality within context of autoboot
restart
Corrected implementation for Danube Family (fixed unknown symbols)
V4.13.1 - 2012-07-27
common:
- Danube family (DSLCPE_SW-602) Split AutobootHandleStart with
new function DSL_DRV_DEV_ModemWriteConfig.
- VRX - New IOCTL(s) added:
+ DSL_FIO_BND_PORT_MODE_SYNC_SET
- Reduce changelog up to V4.0
- VRX (DSLCPE_SW-610) [VRX200] Correct includation of ReTx functionality:
IOCTL DSL_FIO_RETX_STATISTICS_GET extended for VRX.
- (DSLCPE_SW-600) Remove unnecessary preprocessor options
VRX (DSLCPE_SW-627) Corrections for FW msg. handling accdg. to MCAT Rev1.6.1
CMD_InteropConfigGet is not supported anymore.
- VRX (DSLCPE_SW-614) Add tear down functionality within context of autoboot
restart.
Implemented LinkFreeze functionality (by undefined in MCAT messages).
- (DSLCPE_SW-618) Extend low level (MEI) driver for support of new SMART PHY.
Added PDBRAM field handling for device low level configuration.
Bug fix(es):
- Danube family (DSLCPE_SW-602) Migrate special FW configurations for
retransmission to AutobootHandleStart (to be handled in configuration phase).
- VRX (DSLCPE_SW-603) [VRX200] VRX Onchip-Bonding FSM: Inconsistency after
transition from VDSL dual port to single port mode. Updating current FSM mode
according to sync value BndPortModeSync controled by ioctl. Added according
debug print "CAM - Port Mode Sync".
- VRX (DSLCPE_SW-606) [VRX200] Showtime Interleaving Delay is wrong in ADSL2/2.
Using direct fw delay values instead of calculating it in API (only ADSL).
V4.13.0 - 2012-03-19
common:
- Danube&ARX300 [DSLCPE_SW-599] Remove blacklist handling completely
- excluded OPTN 15 (OLR_CONTROL), DSL 0-2 (FEATURE_CONTROL,
ERASURE_DECODER_CONTROL, PSD_CONTROL)
- Danube family [DSLCPE_SW-602] Include special FW configurations in
case of enabling ReTx. Updated LinkActivate function.
V4.12.3 - 2012-03-09
Bug fix(es):
- VRX (DSLCPE_SW-556)[VRX200] Bonding -- Handling of preprocessor definitions:
+ Updated configure.in file
- VRX (DSLCPE_SW-597) [VRX200] Include functionality to support PM related
counters for ADSL modes. Added PM implementation according to MCAT 1.6
common:
- Danube&ARX300 [DSLCPE_SW-593]Update blacklist handling for S7 Firmware release
- updated ARX300 blacklist (removed OPTN 9)
- highpass filter (bFtTxPotsHp) is not handled for ARX300 firmware
- VRX (DSLCPE_SW-597)[VRX200]:
- updated header files according to MCAT 1.6
- VRX (DSLCPE_SW-598) [VRX200] Missing T1.413 related ModemState needs to be
added. T1.413 line state handling added.
V4.12.2 - 2012-01-20
Bug fix(es):
- VRX (DSLCPE_SW-592) [VRX200] ON-chip Bonding -- Retry counter is not
incrementing on S_XDSL_MODE in Dual Port Mode.
Additional fix added to reset bCamDualPortModeSteady flag.
- VRX (DSLCPE_SW-591) [VRX200] OFF-chip Bonding -- Extend API for basic
off-chip bonding support.
Minor extensions/fixes added.
V4.12.1 - 2012-01-17
Bug fix(es):
- VRX: Internal overwrite removed for nTcLayer configuration parameter.
- VRX (DSLCPE_SW-584) Extensions for Microfilter detection.
+ Added flag for activation of MFD within CMD_OperationOptionsSet message and
set it to VRX_ENABLE
+ Updated Metric2 declaration
+ Updated Metric1 handling
+ Updated BTFlag mapping
+ Added error DSL_ERR_NOT_SUPPORTED_IN_CURRENT_VDSL_MODE for MFD related
IOCtl/CLI commands in case of VDSL is currently active
+ Updated DSL_DRV_DEV_LinkActivate: "not supported in VDSL mode" warning added
in case of VDSL is currently active
- VRX (DSLCPE_SW-588) Clean-up of profile configuration via FW message
CMD_HS_VDSL2ProfileControl.
CMD_HS_VDSL2ProfileControl handling fixed.
- Danube (DSLCPE_SW-569) Timing performance - optimization using CMV commands
with data located in continuous block
+ Updated DSL_DRV_DANUBE_LineInventoryNeWrite() function
+ Updated DSL_CEOC_DANUBE_MessageReceive() function
+ Updated DSL_DRV_DANUBE_G997_LineTrainingStatusUpdate() function
+ Updated DSL_DRV_PM_DEV_ChannelCountersSet() function
+ Updated DSL_Error_t DSL_DRV_PM_DEV_DataPathCountersGet() function
- VRX: Correction within context of CMD_OLR_Control
+ MsgSize corrected within drv_dsl_cpe_vrx_msg_olr.h (19->16 bit)
+ Use positive logic for Bitswap enable bits
+ removed special handling to disable Bitswaps in VDSL mode
+ SRA is now also supported by ADSL firmware for US (upstream) direction
- VRX (DSLCPE_SW-592) [VRX200] ON-chip Bonding -- Retry counter is not
incrementing on S_XDSL_MODE in Dual Port Mode.
Retry function fixed
common:
ARX300:
- Removed configuration CMV of SystemInterface (INFO 103) from black list
merge from 4.10.9:
V4.10.9 - 2011-12-28
common:
- DSL_EVENT_S_MULTIMODE_FSM_STATUS event handling removed completely.
- DSL_MultimodeFsmStatusData_t type removed
- DSL_MultimodeFsmConfig_t type removed
- DSL_FIO_MULTIMODE_FSM_CONFIG_SET/GET ioctls removed
- DSL_FIO_MULTIMODE_FSM_STATUS_GET ioctl removed
VRX:
- Add bPafEnable handling to select next activation mode.
- CMD_HS_VDSL2ProfileControl msg handling updated with respect to the
latest MCAT.
Bug fix(es):
- CAM FSM fix: don't change CAM state in the DUAL port mode showtime.
- DSLCPE_SW-589: [VRX200] ON-chip Bonding -- Violation of timing criterias
in case of ALU/BRCM DSLAM.
SW/HW reboot triggers fixed.
V4.10.8 - 2011-10-28
common:
- VRX & Danube (DSLCPE_SW-561) Set CPE vendor ID to defined value
VRX:
- enable only profiles 8 a/b/c/d for the dual-port mode.
- mask out ADSL XTSE settings for the dual-port mode.
- mask out PAF settings for the single-port mode in the on-chip bonding.
- DSLCPE_SW-581: [VRX200] Bonding -- Implementation of new multimode FSM
Implementation added according to the specified requirements.
Bug fix(es):
- VRX (DSLCPE_SW-543) Enable/extend Retransmission (ReTx) support for VRX200
BugFix to update ReTx status (CLI: lfsg, bReTxEnable) correctly in showtime.
- DSLCPE_SW-578: [VRX200] ON-chip Bonding -- Possibility to compile for non
bonded operation.
Compile options handling fixed. The latest Multimode FSM tested for the
non-bonded operation.
V4.10.7 - 2011-10-13
common:
- ARX300:
+ Extended DSL_FirmwareFeatures_t struct with nPlatformId (major version of FW)
This is extracted from what string and therefore defines the running
platform before firmware download has been done.
+ Adapted handling for ARX300 platform at multiple places
- ARX300 (DSLCPE_SW-577) Blacklist to avoid usage of not supported configuration
messages included
V4.10.6 - 2011-09-23
common:
- VRX (DSLCPE_SW-543) Enable/extend Retransmission (ReTx) support for VRX200
- VRX (DSLCPE_SW-576) Configuration consistency - Exclusive OR enable for
Bonding and ReTx
- VRX (DSLCPE_SW-572) Support of NTR feature
- VRX (DSLCPE_SW-573) Extend mapping of ACTPS to FW message value
- VRX (DSLCPE_SW-570) ON-chip Bonding -- Autoboot handling stuck partially fixed
V4.10.5 - 2011-09-08
common:
- DSLCPE_SW-563: [VRX200] ON-chip Bonding -- Usage of feature indication what
string
Implementation is generic but currently it is only used for indication of a
dual port mode (bonding) capable firmware.
- common (DSLCPE_SW-568) Timing performance - Optimization of autoboot polling
cycles
V4.10.4 - 2011-08-11
Bug fix(es):
- DSLCPE_SW-556: [VRX200] Bonding -- Handling of preprocessor definitions.
Handling extended.
- Apply soft reboot also on a training timeout for a bonded link.
V4.10.3 - 2011-08-04
common:
- New error code(s) added:
+ DSL_ERR_AUTOBOOT_DISABLED = -103
API:
- DSL_AutobootCtrlSet_t extended with:
+ DSL_AUTOBOOT_CTRL_DISABLE = 4
+ DSL_AUTOBOOT_CTRL_ENABLE = 5
+ DSL_AUTOBOOT_CTRL_RESTART_FULL = 6
- DSL_AutobootStatGet_t extended with:
+ DSL_AUTOBOOT_STATUS_DISABLED
V4.10.2 - 2011-08-03
common:
- "--with-lines-per-device" configuration option added
VRX:
- On-chip bonding implementation added
V4.12.0 - 2011-12-19
- New IOCTL(s) added:
+ DSL_FIO_OLR_STATISTICS_GET
- IOCTL(s) extended for VRX:
DSL_FIO_LOOP_LENGTH_STATUS_GET
DSL_FIO_FILTER_DETECTION_DATA_GET
DSL_FIO_HYBRID_SELECTION_DATA_GET
common:
- VRX & Danube (DSLCPE_SW-574) Add configuration option for "Upstream Enhanced Framing"
- VRX & Danube (DSLCPE_SW-539) Extend interface with OLR statistic counters.
OLR statistics counters support added.
- VRX (DSLCPE_SW-584) Extensions for Microfilter detection.
VRX MFD implementation added.
V4.11.1 - 2011-10-26
common:
- VRX & Danube (DSLCPE_SW-561) Set CPE vendor ID to defined value
Bug fix(es):
- VRX (DSLCPE_SW-543) Enable/extend Retransmission (ReTx) support for VRX200
BugFix to update ReTx status (CLI: lfsg, bReTxEnable) correctly in showtime.
V4.11.0 - 2011-09-26
Bug fix(es):
- VRX (DSLCPE_SW-550) T1.413 mode shall be included to be used by default
Update to make it possible to select T1.413 mode exclusively.
- common (DSLCPE_SW-568) Timing performance - Optimization of autoboot polling
cycles
- VRX (DSLCPE_SW-543) Enable/extend Retransmission (ReTx) support for VRX200
- VRX (DSLCPE_SW-572) Support of NTR feature
- VRX (DSLCPE_SW-573) Extend mapping of ACTPS to FW message value
V4.10.1 - 2011-07-18
common:
- VRX (DSLCPE_SW-550) T1.413 mode shall be included to be used by default
T1.413 mode is included in case of ADSL AnnexA by default and can be
configured manually in addition.
- VRX (DSLCPE_SW-541) Enable/extend SystemInterface-Config/-Status
implementation
V4.10.0 - 2011-04-11
common:
- Danube RTT status update extended.
Bug fix(es):
- VRX (DSLCPE_SW-529) Implementation of message dump printouts are not in
sync with specification.
Implementation extended to fulfill specification.
- VRX (DSLCPE_SW-533) Optimize multimode handling.
On sub-error code "S_XDSL_MODE" switch to VDSL mode.
- Danube
RTT functionality check fixed.
V4.9.2 - 2011-02-24
Bug fix(es):
- VRX (DSLCPE_SW-529) Implementation of message dump printouts are not in
sync with specification.
RX/TX message dump fixed.
- Danube (N/A)
Several fixes added to compatibility with new MEI driver sources.
V4.9.1 - 2011-02-18
common:
- VRX (DSLCPE_SW-530) Multimode debugging capability.
New debug module definition added: DSL_DBG_MULTIMODE.
Multiple debug messages related to multimode handling added.
V4.9.0 - 2011-02-15
common:
- VRX (DSLCPE_SW-531) Message header files update to VRX FWMCAT Rev1.4.
Header files updated, related code reworked.
V4.8.12 - 2011-01-31
Bug fix(es):
- Common (DSLCPE_SW-529) Implementation of message dump printouts are not in
sync with specification.
message dump implementation fixed.
- Danube (DSLCPE_SW-527) Problems in case of special split-point configuration.
warning doesn't lead to an error anymore.
V4.8.11 - 2011-01-28
common:
- Common (DSLCPE_SW-431) linefeaturestatus does not return an error if system is
not in showtime.
Linestate check added to DSL_DRV_LineFeatureStatusGet.
- VRX (DSLCPE_SW-485) Add information of which hybrid type (HW) is connected to
version command.
Hybrid type information added to the ioctl DSL_FIO_VERSION_INFORMATION_GET.
V4.8.10 - 2011-01-14
Bug fix(es):
- Danube (DSLCPE_SW-523) Configuration and status implementation for ReTx is
wrong
ReTx activation and status check fixed.
- Danube (DSLCPE_SW-524) g997xtusecs does not reflect the actual mode enabled
for AnxJ
AnxJ handled as AnxB. All related code reworked.
V4.8.9 - 2010-12-29
Bug fix(es):
- Danube (N/A) DELT array spread function fixed.
- VRX (DSLCPE_SW-505) DELT for VR9 FW in ADSL mode reports only every second
tone.
Spread DELT downstream values for ADSL mode.
V4.8.8 - 2010-12-24
Bug fix(es):
- Common (DSLCPE_SW-522) Reboot causes soft lockup and then kernel panic.
Kernel thread handling fixed.
common:
- Common (DSLCPE_SW-518) New IOCTL(s) added
+ DSL_FIO_DBG_DEVICE_MESSAGE_MODIFY_SEND
V4.8.7 - 2010-12-02
Bug fix(es):
- Danube (N/A) CMV DSL 8 8 initialization removed.
V4.8.6 - 2010-12-01
Bug fix(es):
- Danube (N/A) Fixed RTT initialization.
V4.8.5 - 2010-11-30
Bug fix(es):
- Danube (N/A) Fixed RTT initialization.
common:
- IOCTL DSL_FIO_RTT_INIT added Ip address and port settings.
V4.8.4 - 2010-11-13
Bug fix(es):
- Common (DSLCPE_SW-511) Generation for "ifx_mei_atm_showtime_exit" signal does
not work correctly
- VRX (DSLCPE_SW-511) Channel status update fixed.
Channel status information update added to MeiShowtimeSignaling.
V4.8.3 - 2010-11-01
common:
- Added unit selector value in ioctl DSL_FIO_LOOP_LENGTH_STATUS_GET to choose
between feet and meter for loop length status values.
- New IOCTL(s) added:
+ DSL_FIO_HYBRID_SELECTION_DATA_GET
+ DSL_FIO_FILTER_DETECTION_DATA_GET
- new configuration option(s) added:
+ INCLUDE_DSL_FILTER_DETECTION
(--enable-dsl-filter-detection)
- Danube (DSLCPE_SW-507) Extensions for Microfilter detection.
Extensions added.
V4.8.2 - 2010-10-15
- New IOCTL(s) added:
+ DSL_FIO_RTT_INIT
+ DSL_FIO_RTT_CONFIG_SET
+ DSL_FIO_RTT_CONFIG_GET
+ DSL_FIO_RTT_STATUS_GET
+ DSL_FIO_RTT_CONTROL_SET
+ DSL_FIO_RTT_STATISTICS_GET
- New configuration option added to enable/disable RTT support:
+ --enable-real-time-trace (INCLUDE_REAL_TIME_TRACE)
- Parameters nRxCorruptedTotal, nRxUncorrectedProtected, nRxRetransmitted,
nRxCorrected removed. Following IOCTL(s) affected:
+ DSL_FIO_PM_RETX_COUNTERS_15MIN_GET
+ DSL_FIO_PM_RETX_COUNTERS_1DAY_GET
+ DSL_FIO_PM_RETX_COUNTERS_SHOWTIME_GET
+ DSL_FIO_PM_RETX_COUNTERS_TOTAL_GET
+ DSL_FIO_PM_RETX_HISTORY_STATS_15MIN_GET
+ DSL_FIO_PM_RETX_HISTORY_STATS_1DAY_GET
+ DSL_FIO_PM_RETX_THRESHOLDS_15MIN_GET
+ DSL_FIO_PM_RETX_THRESHOLDS_15MIN_SET
+ DSL_FIO_PM_RETX_THRESHOLDS_1DAY_GET
+ DSL_FIO_PM_RETX_THRESHOLDS_1DAY_SET
Bug fix(es):
- VRX (DSLCPE_SW-510) Autoboot issue with ReTX fw.
Data Rate handling fixed.
V4.8.1 - 2010-10-01
- New IOCTL(s) added:
+ DSL_FIO_RETX_STATISTICS_GET
- Added parameter nEftrMin to DSL_PM_ReTxData_t structure
following IOCTL(s) affected:
+ DSL_FIO_PM_RETX_COUNTERS_15MIN_GET
+ DSL_FIO_PM_RETX_COUNTERS_1DAY_GET
+ DSL_FIO_PM_RETX_COUNTERS_SHOWTIME_GET
+ DSL_FIO_PM_RETX_COUNTERS_TOTAL_GET
+ DSL_FIO_PM_RETX_HISTORY_STATS_15MIN_GET
+ DSL_FIO_PM_RETX_HISTORY_STATS_1DAY_GET
+ DSL_FIO_PM_RETX_THRESHOLDS_15MIN_GET
+ DSL_FIO_PM_RETX_THRESHOLDS_15MIN_SET
+ DSL_FIO_PM_RETX_THRESHOLDS_1DAY_GET
+ DSL_FIO_PM_RETX_THRESHOLDS_1DAY_SET
- Added parameter ActualNetDataRate to DSL_G997_ChannelStatusData_t structure.
- Added new error code DSL_ERR_RETRANSMISSION_DISABLED.
V4.8.0 - 2010-09-17
- New IOCTL(s) added:
+ DSL_FIO_LOOP_LENGTH_STATUS_GET
- Danube (DSLCPE_SW-499) Added b20BitSupport within the following IOCTLs:
+ DSL_FIO_LINE_FEATURE_CONFIG_SET/GET
+ DSL_FIO_LINE_FEATURE_STATUS_GET
Bug fix(es):
- Danube (DSLCPE_SW-498) API for FW R5 Release - Looplength estimation.
Looplength estimation feature added.
- Danube (DSLCPE_SW-497) API for FW R5 Release - Hybrid (LIF) Module Selection.
Hybrid selection support added.
- Danube (DSLCPE_SW-495) API for FW R5 Release - Erasure decoding
Dependency between DSL_ERASURE_DECODING_TYPE_DS and DSL_TRUST_ME_BIT added.
- Danube (DSLCPE_SW-496) API for FW R5 Release - US inband spectral shaping
DSL_INBAND_SPECTRAL_SHAPING_US mapping corrected.
V4.7.3 - 2010-09-03
common:
- Added multiple VR9 messages to the white list
+ CMD_CRC_STATSNE_NOTR1GET
+ CMD_FEC_STATSNE_NOTR1GET
+ CMD_CRC_STATSNE_NOTR1SET
+ CMD_FEC_STATSNE_NOTR1SET
Bug fix(es):
- VRX (DSLCPE_SW-492) Event "DSL_EVENT_S_MULTIMODE_FSM_STATUS" is generated
also in single xDSL mode.
Single xDSL modes handling fixed.
- VRX (DSLCPE_SW-489) no NE CRC & FEC in ADSL broken with FW 5.3.2.4.1.2
CRC and FEC ADSL handling extended.
V4.7.2 - 2010-08-05
common:
- VRX (DSLCPE_SW-480) Cleanup of LowLevelConfigSet/Get according to VirtualNoise
switch
- VRX (DSLCPE_SW-479) Default handshake tone sets
Extended interface and internal implementation as defined within jira issue.
- VRX (DSLCPE_SW-475) Remove unused parameters from LowLevelConfigurationGet/Set
IOCTLs LowLevelConfigurationGet/Set parameters list reduced.
- VRX (DSLCPE_SW-476) Handle new 'sub error code' of firmware for hybrid detection
error
New error code definition and handling added for suberror
LINIT_SUB_FW_HYBRID(=5)
Bug fix(es):
- Danube (DSLCPE_SW-482) Include read-modify-write sequence for DSL 2
Changed to read-modify-write for DSL0/1/2 access
- Danube/VRX (DSLCPE_SW-484) DSL Drivers are getting loaded in Ethernet WAN Models
Extended driver installation scripts (inst_drv_dsl_cpe_api<_xxx>.sh) as suggested
- VRX (DSLCPE_SW-477) Wrong TC-Layer returned in
"sisg"/"DSL_FIO_SYSTEM_INTERFACE_STATUS_GET"
Set TC-Layer staus and config within context of FW download as follows
ADSL FW -> ATM, VDSL FW -> EFM
V4.7.1 - 2010-07-16
Bug fix(es):
- Common (DSLCPE_SW-473) Use 120s timeout for line activation for all platforms
Timeout values corrected.
- VRx (DSLCPE_SW-474) Do not use configuration values for
"sics"/"DSL_FIO_SYSTEM_INTERFACE_CONFIG_SET".
Special error code DSL_WRN_CONFIG_PARAM_IGNORED (4) added for the
DSL_FIO_SYSTEM_INTERFACE_CONFIG_SET ioctl call.
V4.7.0 - 2010-07-09
Bug fix(es):
- Danube (DSLCPE_SW-471) Optimization of the current US OHC Polling frequency.
PM FE counters request handling fixed, all OHC counters are handled in a
single HDLC request.
- VRX (DSLCPE_SW-472) Provide line status parameters within context of
"g997lspbg" in ADSL mode.
Implementation extended.
- Common (DSLCPE_SW-405) please reformat debug output of FW messages.
For Danube: Message dump for DSL_DBG_WRN level fixed.
For VRX: Message write check added. Message dump for DSL_DBG_WRN level
fixed. Message opcode definitions added to drv_dsl_cpe_device_vrx.h
V4.6.3 - 2010-07-02
Bug fix(es):
- VRx (N/A) Multimode FSM switch fails from MULTIMODE ADSL to VDSL.
Internal FSM handling fixed.
- VRx (N/A) DSL_FIO_MULTIMODE_FSM_STATUS_GET returns wrong values.
DSL_FIO_MULTIMODE_FSM_STATUS_GET ioctl handling fixed.
V4.6.2 - 2010-07-01
common:
- VRx specific messages removed:
+ CMD_REINITFE_CONFIGURE
+ CMD_GAINCALIBRATIONSET
+ CMD_HW_CONFIGSET
+ CMD_LED_CONTROL
- Added multiple VR9 messages to the white list
+ CMD_PTM_BC0_STATSNE_GET
+ CMD_PTM_BC0_STATSNE_SET
+ CMD_ATM_BC0_STATSNE_GET
+ CMD_ATM_BC0_STATSNE_SET
+ CMD_LINEPERFCOUNTNE_NOTR1GET
+ CMD_LINEPERFCOUNTFE_NOTR1GET
+ CMD_LINEPERFCOUNTNE_NOTR1SET
+ CMD_DATAPATHFAILURESGET
+ CMD_MODEMFSM_OPTIONSSET
+ CMD_HLINDS_GET
+ CMD_HLINUS_GET
+ CMD_HLOGDS_GET
+ CMD_NOISEMARGINDELTASET
+ CMD_OH_OPTIONSSET
+ CMD_LINEFAILUREFE_GET
+ CMD_LINESTATUSPERBANDUS_GET
+ CMD_LINESTATUSPERBANDDS_GET
+ CMD_SYSVENDORSERIALNUM_R_SET
+ CMD_OLR_CONTROL
+ CMD_TESTPARAMSAUXDS_GET
+ CMD_TESTPARAMSAUXUS_GET
+ CMD_PILOTTONESGET
+ CMD_INTEROPCONFIGGET
Bug fix(es):
- Danube (DSLCPE_SW-373) Reporting of showtime pilot tones.
PilotTonesStatusGet return warning code changed to error code -10
(not supported by firmware).
- VRx (DSLCPE_SW-463) Disable/do not configure T1.413 mode on VR9 systems.
Mask added for T1.413 and ETSI Annex C modes.
V4.6.1 - 2010-06-25
common:
- New IOCTL(s) added:
+ DSL_FIO_MULTIMODE_FSM_CONFIG_SET
+ DSL_FIO_MULTIMODE_FSM_CONFIG_GET
+ DSL_FIO_MULTIMODE_FSM_STATUS_SET
- New event for reboot added
+ DSL_EVENT_S_MULTIMODE_FSM_STATUS
- New data type(s) definitions added:
+ DSL_FirmwareType_t
+ DSL_MultimodeConfigData_t
+ DSL_MultimodeFsmConfig_t
+ DSL_MultimodeFsmStatusData_t
+ DSL_MultimodeFsmStatus_t
Bug fix(es):
- VRx (DSLCPE_SW-453) Extensions for API internal multimode handling
(ADSL/VDSL).
CPE Automode FSM implemented according to the proposed concept.
For more details please refer to the appropriate JIRA entry.
V4.6.0 - 2010-06-04
common:
- Added VR9 message CMD_XTSE_CONFIGURE to the white list
V4.5.0 - 2010-05-14
common:
- Added multiple VR9 messages to the white list
+ CMD_ADSL_FRAMEDATAUS_LP0GET
+ CMD_ADSL_FRAMEDATADS_LP0GET
+ CMD_ADSL_FRAMEDATAUS_LP1GET
+ CMD_ADSL_FRAMEDATADS_LP1GET
- Removed multiple VR9 messages from the white list
+ CMD_GAINCALIBRATIONSET
+ CMD_DIGITALFILTERSET
+ CMD_ALGORITHMCONTROLSET
V4.4.1 - 2010-04-09
Bug fix(es):
- Common (SMS01446192) Enhancement of debug implementation for Linux console
prints.
Debug prints implementation extended. For more details please refer to the
appropriate UTP entry.
V4.4.0 - 2010-04-02
common:
- new file(s) added:
+ \src\include\drv_dsl_cpe_device_vrx.h
- VRX common implementation extracted to drv_dsl_cpe_device_vrx.c
V4.3.5 - 2010-03-29
common:
- new file(s) added:
+ \src\device\drv_dsl_cpe_device_vrx.c
- VRX common implementation extracted to drv_dsl_cpe_device_vrx.c
- VRX VDSL1 support removed
Bug fix(es):
- VRX (SMS01434916) Extend automode handling with firmware System Sub
Error Code "S_XDSL_MODE".
Automode handling extended according to the updated concept. For more details
please refer to the appropriate UTP entry.
V4.3.4 - 2010-03-19
-
V4.3.3 - 2010-02-05
common:
- VRx device specific implementation
+ optimizations
+ XTSE status update added in the SHOWTIME state a workaround.
+ ACK_ModemFSM_StateGet parameter#3 ignored since it signals L3 state even
in the SHOWTIME.
- Added multiple VR9 messages to the white list
+ CMD_ADSL_BAT_US_GET
+ CMD_ADSL_BAT_DS_GET
+ CMD_GAINTABLEENTRIESGET
+ CMD_ADSL_GAINTABLEUS_GET
+ CMD_ADSL_GAINTABLEDS_GET
+ CMD_SNR_DS_GET
+ CMD_SNR_US_GET
+ CMD_HLOGUS_GET
+ CMD_QLN_US_GET
+ CMD_HS_TONEGROUPSET
+ CMD_REINITFE_CONFIGURE
+ CMD_HS_VDSL2PROFILECONTROL
+ CMD_DIGITALFILTERSET
+ CMD_HS_STANDARDINFOFE_SPAR1GET
+ CMD_OLR_DS_STATSGET
+ CMD_OLR_US_STATSGET
V4.3.2 - 2010-02-26
common:
- KW cleanups.
V4.3.1 - 2010-02-19
Bug fix(es):
- Danube (SMS01391618) Extend existing interface to report pilot tones.
Danube family implementation extended to support Pilot Tones reporting.
- Danube (SMS01391626) Extension of testmodes with sleep state.
Implementation extended, DSL_TESTMODE_SLEEP (=6) handling added.
- Common (SMS01391620) Add new configuration interface for changing API reboot
criteria's.
API extended. For more details please refer to the appropriate UTP entry.
V4.3.0 - 2010-02-05
common:
- New error code(s) added:
+ DSL_WRN_NOT_RECOMMENDED_CONFIG = 20
Bug fix(es):
- Danube (SMS01300427) Showtime Lock doesn't work.
Showtime lock handling fixed.
- Common (SMS01371264) negative DSL_OPT_NOISE_MARGIN_DELTA_DS should trigger a
warning (it does not).
Special warning "DSL_WRN_NOT_RECOMMENDED_CONFIG" return added in case of
negative values configured.
- Common (SMS01354000) XTSE sanity checks not applied if -i option of
dsl_cpe_control is used.
XTSE sanity checks handling fixed during CPE API driver initialization.
- Danube (SMS01371266) API triggers a FW download (although it should not).
Default nSnrMarginRebootMode changed from "DSL_SNRM_REBOOT_AUTOMODE_API" to
"DSL_SNRM_REBOOT_AUTOMODE_FW". Handling fixed. Documentation corrected.
- Danube/VRx (SMS01379873) Support of Annex J (handling binaries with different
numbering scheme).
API handling extended to accept application type (Annex B/J = 0x0).
V4.2.0 - 2010-01-13
-
V4.0.9 - 2009-12-29
common:
- LED module implementation moved to a deprecated functionality.
- VRx implementation added:
+ FW version decode corrected according to the latest concept.