aboutsummaryrefslogtreecommitdiffstats
path: root/OsmoBTS/rtp-amr.adoc
blob: 4da2e1b34532c0c508cadadbe69dd9460cc9e82e (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
= AMR-RTP in Combination with DTX

The purpose of this document is to describe the sometimes quite
intricate interactions between a MS, the BTS-PHY and the BTS software
in case of AMR (Adaptive Multi Rate) codec and DTX (Discontinuous
Transmission).

It is written with the OsmoBTS implementation and the Nutaq GSM PHY
API in mind, but should more or less be applicable to any GSM BTS
PHY or any BTS software implementation, assuming it uses RTP on the
back-haul towards the MGW.

== Full-Rate (TCH/AFS)

=== TCH/AFS Uplink (MS to Network)

==== TCH/AFS Uplink: Initial Assumptions

When a call is established, the BTS expects PH-DATA.ind (TCH) events to be
triggered by BTS-PHY at regular intervals and none of them being lost, even if
the MS is not transmitting at that time due to DTX. This requirement is
important as upper layers rely on this timing to update the RTP source clock at
a correct pace. Given an event from BTS-PHY is lost, the RTP source clock will
drift and this may be seen as steady increase of delay over time from the
receiver point of view.

In the case of Nutaq GSM PHY and API, option fBFILevel is set to a ridiculously
low value -200 to ensure all indications are notified to upper layers, even if
no meaningful payload is available at that time. In this case, an empty payload
is delivered from PHY-BTS to BTS, which updates the clock without sending any
RTP packet.

==== TCH/AFS Uplink: During Talk-Spurt

During a talk-spurt, the system behaves identical to a system without
DTX enabled: Every four radio bursts, the BTS-PHY has one AMR frame
ready and hands it up to the BTS process, which creates an RTP AMR
frame from it and sends that to the MGW.

["mscgen"]
----
msc {
	hscale = 2;
	ms [label="MS"], phy [label="BTS-PHY"], bts [label="BTS"], mgw [label="MGW"];

	...;
	--- 		[label="Regular AMR Speech (has been ongoing for some time)"];

	ms => phy	[label="L1 burst (sub-block 5 of speech frame N-1 + sub-block 1 of speech frame N)"];
	ms => phy	[label="L1 burst (sub-block 6 of speech frame N-1 + sub-block 2 of speech frame N)"];
	ms => phy	[label="L1 burst (sub-block 7 of speech frame N-1 + sub-block 3 of speech frame N)"];
	ms => phy	[label="L1 burst (sub-block 8 of speech frame N-1 + sub-block 4 of speech frame N)"];
	phy => bts	[label="PH-DATA.ind GsmL1_TchPlType_Amr (N-1)"];
	bts => mgw	[label="RTP (AMR FT=0..7,Q=1)"];
	ms => phy	[label="L1 burst (sub-block 5 of speech frame N + sub-block 1 of speech frame N+1)"];
	ms => phy	[label="L1 burst (sub-block 6 of speech frame N + sub-block 2 of speech frame N+1)"];
	ms => phy	[label="L1 burst (sub-block 7 of speech frame N + sub-block 3 of speech frame N+1)"];
	ms => phy	[label="L1 burst (sub-block 8 of speech frame N + sub-block 4 of speech frame N+1)"];
	phy => bts	[label="PH-DATA.ind GsmL1_TchPlType_Amr (N)"];
	bts => mgw	[label="RTP (AMR FT=0..7,Q=1)"];
}
----

==== TCH/AFS Uplink: End of Voice; Start of Silence

When the voice encoder in the MS detects no voice activity anymore, it
signals towards the MS-PHY that SID_FIRST shall be transmitted.

The BTS-PHY reports the following primitives to the BTS after all four
related bursts have been received:

The BTS sends an RTP frame with AMR Frame Type SID, in which the STI
is set to indicate a SID_FIRST message.

["mscgen"]
----
msc {
	hscale = 2;
	ms [label="MS"], phy [label="BTS-PHY"], bts [label="BTS"], mgw [label="MGW"];

	...;
	---		[label="Last AMR Speech (end of talk-spurt) and SID"];

	ms => phy	[label="L1 burst (sub-block 5 of speech frame N, sub-block 1 of SID_FIRST)"];
	ms => phy	[label="L1 burst (sub-block 6 of speech frame N, sub-block 2 of SID_FIRST)"];
	ms => phy	[label="L1 burst (sub-block 7 of speech frame N, sub-block 3 of SID_FIRST)"];
	ms => phy	[label="L1 burst (sub-block 8 of speech frame N, sub-block 4 of SID_FIRST)", id="ULSF2"];
	phy => bts	[label="PH-DATA.ind GsmL1_TchPlType_Amr (N)"];
	bts => mgw	[label="RTP (AMR FT=0..7,Q=1)"];

	ms -x phy	[label="Suppressed L1 burst"];
	ms -x phy	[label="Suppressed L1 burst"];
	ms -x phy	[label="Suppressed L1 burst"];
	ms -x phy	[label="Suppressed L1 burst"];
	phy => bts	[label="PH-DATA.ind GsmL1_TchPlType_Amr (SID_FIRST)"];
	bts => mgw	[label="RTP (AMR FT=SID,Q=1)"];

	ms -x phy	[label="Supressed L1 burst"];
	ms -x phy	[label="Supressed L1 burst"];
	ms -x phy	[label="Supressed L1 burst"];
	ms -x phy	[label="Supressed L1 burst"];
	phy => bts	[label="PH-DATA.ind with empty payload"];
	bts -x mgw	[label="Suppressed RTP frame"];

	ms => phy	[label="L1 burst (sub-block 1+2 of SID_UPDATE)", id="ULSU2"];
	ms => phy	[label="L1 burst (sub-block 3+4 of SID_UPDATE)"];
	ms => phy	[label="L1 burst (sub-block 5+6 of SID_UPDATE)"];
	ms => phy	[label="L1 burst (sub-block 7+8 of SID_UPDATE)"];
	phy => bts	[label="PH-DATA.ind with empty payload"];
	bts -x mgw	[label="Suppressed RTP frame"];


	ms -x phy	[label="Supressed L1 burst"];
	ms -x phy	[label="Supressed L1 burst"];
	ms -x phy	[label="Supressed L1 burst"];
	ms -x phy	[label="Supressed L1 burst"];
	phy => bts	[label="PH-DATA.ind GsmL1_TchPlType_Amr (SID_UPDATE)"];
	bts => mgw	[label="RTP (AMR FT=SID,Q=1)"];
}
----

ULSF2:: As per 3GPP TS 05.03 section 3.9.2.4 The last 4 bursts shall not be transmitted unless
the SID_FIRST frame is immediately followed by a speech frame. It has been observed that some phone
does not transmit the last 4 bursts even if it is not followed by a speech frame.

ULSU2:: There must be exactly two supressed voice frames between the
SID_FIRST and the SID_UPDATE, i.e. there's 60ms between SID_FIRST and
SID_UPDATE.

==== TCH/AFS Uplink: During Silence

While the period of silence is ongoing, the MS pauses all
transmissions, except the periodic scheduling of SID_UPDATE every 8
voice frames (160ms).

NOTE:: Silence can also be interrupted at any time by ONSET, see
<<afs-ul-onset>>.

["mscgen"]
----
msc {
	hscale = 2;
	ms [label="MS"], phy [label="BTS-PHY"], bts [label="BTS"], mgw [label="MGW"];

	...;
	---		[label="Every 8 voice frames (160ms)", id="8VF"];

	ms => phy	[label="L1 burst (sub-block 1+2 of SID_UPDATE)"];
	ms => phy	[label="L1 burst (sub-block 3+4 of SID_UPDATE)"];
	ms => phy	[label="L1 burst (sub-block 5+6 of SID_UPDATE)"];
	ms => phy	[label="L1 burst (sub-block 7+8 of SID_UPDATE)"];
	phy => bts	[label="PH-DATA.ind with empty payload"];
	bts -x mgw	[label="Suppressed RTP frame"];

	ms -x phy	[label="Supressed L1 burst"];
	ms -x phy	[label="Supressed L1 burst"];
	ms -x phy	[label="Supressed L1 burst"];
	ms -x phy	[label="Supressed L1 burst"];
	phy => bts	[label="PH-DATA.ind GsmL1_TchPlType_Amr (SID_UPDATE)"];
	bts => mgw	[label="RTP (AMR FT=SID,Q=1)"];

	ms -x phy	[label="Supressed L1 burst"];
	ms -x phy	[label="Supressed L1 burst"];
	ms -x phy	[label="Supressed L1 burst"];
	ms -x phy	[label="Supressed L1 burst"];
	phy => bts	[label="PH-DATA.ind with empty payload"];
	bts -x mgw	[label="Suppressed RTP frame"];

	ms -x phy	[label="Supressed L1 burst"];
	ms -x phy	[label="Supressed L1 burst"];
	ms -x phy	[label="Supressed L1 burst"];
	ms -x phy	[label="Supressed L1 burst"];
	phy => bts	[label="PH-DATA.ind with empty payload"];
	bts -x mgw	[label="Suppressed RTP frame"];

	ms -x phy	[label="Supressed L1 burst"];
	ms -x phy	[label="Supressed L1 burst"];
	ms -x phy	[label="Supressed L1 burst"];
	ms -x phy	[label="Supressed L1 burst"];
	phy => bts	[label="PH-DATA.ind with empty payload"];
	bts -x mgw	[label="Suppressed RTP frame"];

	ms -x phy	[label="Supressed L1 burst"];
	ms -x phy	[label="Supressed L1 burst"];
	ms -x phy	[label="Supressed L1 burst"];
	ms -x phy	[label="Supressed L1 burst"];
	phy => bts	[label="PH-DATA.ind with empty payload"];
	bts -x mgw	[label="Suppressed RTP frame"];

	ms -x phy	[label="Supressed L1 burst"];
	ms -x phy	[label="Supressed L1 burst"];
	ms -x phy	[label="Supressed L1 burst"];
	ms -x phy	[label="Supressed L1 burst"];
	phy => bts	[label="PH-DATA.ind with empty payload"];
	bts -x mgw	[label="Suppressed RTP frame"];

	ms -x phy	[label="Supressed L1 burst"];
	ms -x phy	[label="Supressed L1 burst"];
	ms -x phy	[label="Supressed L1 burst"];
	ms -x phy	[label="Supressed L1 burst"];
	phy => bts	[label="PH-DATA.ind with empty payload"];
	bts -x mgw	[label="Suppressed RTP frame"];

	ms => phy	[label="L1 burst (sub-block 1+2 of SID_UPDATE)"];
	ms => phy	[label="L1 burst (sub-block 3+4 of SID_UPDATE)"];
	ms => phy	[label="L1 burst (sub-block 5+6 of SID_UPDATE)"];
	ms => phy	[label="L1 burst (sub-block 7+8 of SID_UPDATE)"];
	phy => bts	[label="PH-DATA.ind with empty payload"];
	bts -x mgw	[label="Suppressed RTP frame"];

	ms -x phy	[label="Supressed L1 burst"];
	ms -x phy	[label="Supressed L1 burst"];
	ms -x phy	[label="Supressed L1 burst"];
	ms -x phy	[label="Supressed L1 burst"];
	phy => bts	[label="PH-DATA.ind GsmL1_TchPlType_Amr (SID_UPDATE)"];
	bts => mgw	[label="RTP (AMR FT=SID,Q=1)"];
}
----

8VF:: This happens every 8 *voice frames* (160ms), not every 8 GSM
TDMA frames!

[[afs-ul-onset]]
==== TCH/AFS Uplink: End of Silence; Start of Voice

Once the voice encoder in the MS detects voice activity again, it
asks its transmitter to perform transmission of SID_ONSET, which is a
special frame whose information is encoded only in sub-blocks 3+4, and
sub-blocks 1+2 are discarded before transmission.

A set of four radio bursts is sent, containing

* the only four transmitted sub-blocks of the SID_ONSET frame
* all four sub-blocks of the first voice codec frame
* the first two blocks of the second voice codec frame

The BTS-PHY informs the BTS using two primitives:

* PH-DATA.ind GsmL1_TchPlType_Amr_Onset indicates the presence of
  SID_ONSET, including the Channel Mode Indication (irrespective of
  CMI Phase)
* PH-DATA.ind GsmL1_TchPlType_Amr indicates the first voice frame

The BTS transmits an RTP frame with AMR payload of the corresponding
speech frame type, and sets the RTP MARKER bit to indicate the ONSET
condition.

["mscgen"]
----
msc {
	hscale = 2;
	ms [label="MS"], phy [label="BTS-PHY"], bts [label="BTS"], mgw [label="MGW"];

	...;
	---		[label="Once voice is active again"];

	ms -x phy	[label="Supressed L1 burst"];
	ms -x phy	[label="Supressed L1 burst"];
	ms -x phy	[label="Supressed L1 burst"];
	ms -x phy	[label="Supressed L1 burst"];
	phy => bts	[label="PH-DATA.ind with empty payload"];
	bts -x mgw	[label="Suppressed RTP frame"];

	ms => phy	[label="L1 burst (block 1 of SID_ONSET + sub-block 1 of speech frame N)", id="ULSO2"];
	ms => phy	[label="L1 burst (block 2 of SID_ONSET + sub-block 2 of speech frame N)"];
	ms => phy	[label="L1 burst (block 3 of SID_ONSET + sub-block 3 of speech frame N)"];
	ms => phy	[label="L1 burst (block 4 of SID_ONSET + sub-block 4 of speech frame N)"];
	phy => bts	[label="PH-DATA.ind with empty payload"];
	bts -x mgw	[label="Suppressed RTP frame"];

	ms => phy	[label="L1 burst (sub-block 5 of speech frame N + sub-block 1 of speech frame N+1)"];
	ms => phy	[label="L1 burst (sub-block 6 of speech frame N + sub-block 2 of speech frame N+1)"];
	ms => phy	[label="L1 burst (sub-block 7 of speech frame N + sub-block 3 of speech frame N+1)"];
	ms => phy	[label="L1 burst (sub-block 8 of speech frame N + sub-block 4 of speech frame N+1)"];
	phy => bts	[label="PH-DATA.ind GsmL1_TchPlType_Amr_Onset"];
	bts => bts	[label="lchan_set_marker() and store CMI"];
	phy => bts	[label="PH-DATA.ind GsmL1_TchPlType_Amr (N)"];
	bts => mgw	[label="RTP (AMR FT=0..7,Q=1) MARKER=1"];

	ms => phy	[label="L1 burst (sub-block 5 of speech frame N+1 + sub-block 1 of speech frame N+2)"];
	ms => phy	[label="L1 burst (sub-block 6 of speech frame N+1 + sub-block 2 of speech frame N+2)"];
	ms => phy	[label="L1 burst (sub-block 7 of speech frame N+1 + sub-block 3 of speech frame N+2)"];
	ms => phy	[label="L1 burst (sub-block 8 of speech frame N+1 + sub-block 4 of speech frame N+2)"];
	phy => bts	[label="PH-DATA.ind GsmL1_TchPlType_Amr (N+1)"];
	bts => mgw	[label="RTP (AMR FT=0..7,Q=1)"];
	...;
}
----

ULSO2:: sub-blocks 1..4 of SID_ONSET are never transmitted as all
information is contained in blocks 5..8.

==== TCH/AFS Uplink: Speech Frame Following a SID_FIRST frame

The four last bursts of a SID_FIRST frame can be replaced by an ONSET frame in order to quickly resume speech.

["mscgen"]
----
msc {
	hscale = 2;
	ms [label="MS"], phy [label="BTS-PHY"], bts [label="BTS"], mgw [label="MGW"];

	...;
	---		[label="Speech Frame Following a SID_FIRST"];

	ms => phy	[label="L1 burst (sub-block 5 of speech frame N, sub-block 1 of SID_FIRST)"];
	ms => phy	[label="L1 burst (sub-block 6 of speech frame N, sub-block 2 of SID_FIRST)"];
	ms => phy	[label="L1 burst (sub-block 7 of speech frame N, sub-block 3 of SID_FIRST)"];
	ms => phy	[label="L1 burst (sub-block 8 of speech frame N, sub-block 4 of SID_FIRST)"];
	phy => bts	[label="PH-DATA.ind GsmL1_TchPlType_Amr (N)"];
	bts => mgw	[label="RTP (AMR FT=0..7,Q=1)"];

	ms => phy	[label="L1 burst (block 1 of SID_ONSET + sub-block 1 of speech frame N+1)"];
	ms => phy	[label="L1 burst (block 2 of SID_ONSET + sub-block 2 of speech frame N+1)"];
	ms => phy	[label="L1 burst (block 3 of SID_ONSET + sub-block 3 of speech frame N+1)"];
	ms => phy	[label="L1 burst (block 4 of SID_ONSET + sub-block 4 of speech frame N+1)"];
	phy => bts	[label="PH-DATA.ind GsmL1_TchPlType_Amr (SID_FIRST)"];
	bts => mgw	[label="RTP (AMR FT=SID,Q=1)"];

	ms => phy	[label="L1 burst (sub-block 5 of speech frame N+1 + sub-block 1 of speech frame N+2)"];
	ms => phy	[label="L1 burst (sub-block 6 of speech frame N+1 + sub-block 2 of speech frame N+2)"];
	ms => phy	[label="L1 burst (sub-block 7 of speech frame N+1 + sub-block 3 of speech frame N+2)"];
	ms => phy	[label="L1 burst (sub-block 8 of speech frame N+1 + sub-block 4 of speech frame N+2)"];
	phy => bts	[label="PH-DATA.ind GsmL1_TchPlType_Amr_Onset"];
	bts => bts	[label="lchan_set_marker() and store CMI"];
	phy => bts	[label="PH-DATA.ind GsmL1_TchPlType_Amr (N+1)"];
	bts => mgw	[label="RTP (AMR FT=0..7,Q=1) MARKER=1"];
	...;
}
----

==== TCH/AFS Uplink: FACCH/F Frame During DTX Operation

As mentioned in section A.5.1.2.1 of 3GPP TS 26.093 :

* If the frame preceding the FACCH frame is not of TX_TYPE='SPEECH_GOOD', then an ONSET frame shall be signalled to the CHE, followed by the FACCH frame(s).
* If the frame following the FACCH frame is not of TX_TYPE='SPEECH_GOOD', then a SID_FIRST shall be signalled to the CHE.

["mscgen"]
----
msc {
	hscale = 2;
	ms [label="MS"], phy [label="BTS-PHY"], bts [label="BTS"], mgw [label="MGW"];

	...;
	---		[label="FACCH/F Frame During DTX"];

	ms -x phy	[label="Supressed L1 burst"];
	ms -x phy	[label="Supressed L1 burst"];
	ms -x phy	[label="Supressed L1 burst"];
	ms -x phy	[label="Supressed L1 burst"];
	phy => bts	[label="PH-DATA.ind with empty payload"];
	bts -x mgw	[label="Suppressed RTP frame"];

	ms => phy	[label="L1 burst (block 1 of SID_ONSET + sub-block 1 of FACCH frame)"];
	ms => phy	[label="L1 burst (block 2 of SID_ONSET + sub-block 2 of FACCH frame)"];
	ms => phy	[label="L1 burst (block 3 of SID_ONSET + sub-block 3 of FACCH frame)"];
	ms => phy	[label="L1 burst (block 4 of SID_ONSET + sub-block 4 of FACCH frame)"];
	phy => bts	[label="PH-DATA.ind with empty payload"];
	bts -x mgw	[label="Suppressed RTP frame"];

	ms => phy	[label="L1 burst (sub-block 5 of FACCH frame + sub-block 1 of SID First frame)"];
	ms => phy	[label="L1 burst (sub-block 6 of FACCH frame + sub-block 2 of SID First frame)"];
	ms => phy	[label="L1 burst (sub-block 7 of FACCH frame + sub-block 3 of SID First frame)"];
	ms => phy	[label="L1 burst (sub-block 8 of FACCH frame + sub-block 4 of SID First frame)", id="Note"];
	phy => bts	[label="PH-DATA.ind GsmL1_TchPlType_Amr_Onset"];
	bts => bts	[label="lchan_set_marker() and store CMI"];
	phy => bts	[label="PH-DATA.ind FACCH/F"];
	bts => mgw	[label="FACCH/F"];

	ms -x phy	[label="Supressed L1 burst", id="ULSF2"];
	ms -x phy	[label="Supressed L1 burst"];
	ms -x phy	[label="Supressed L1 burst"];
	ms -x phy	[label="Supressed L1 burst"];
	phy => bts	[label="PH-DATA.ind GsmL1_TchPlType_Amr (SID_FIRST)"];
	bts => mgw	[label="RTP (AMR FT=SID,Q=1)"];
	...;
}
----

ULSF2:: The sub-blocks 5-8 of SID_FIRST are not transmitted, as all
information bits are contained in sub-blocks 1-4 only

Note:: It has been observed with some phones that the SID_FIRST is not sent following the FACCH/F
frame. If this case occures the No Data Frame and SID_UPDATE order resumes.

=== TCH/AFS Downlink (Network to MS)

[[afs-dl-talk]]
==== TCH/AFS Downlink: During Talk-Spurt

During a talk-spurt, the system behaves identical to a system without
DTX enabled: an RTP frame arrives every 20ms.

The PHY sends a PH-RTS.ind in similar intervals, to which the BTS
responds with a PH-DATA.req containing GsmL1_TchPlType_Amr.

The BTS-PHY then encodes and interleaves the codec frame into eight
sub-blocks. Due to the interleaving, one new PH-RTS.ind is issued
every four bursts.

["mscgen"]
----
msc {
	hscale = 2;
	ms [label="MS"], phy [label="BTS-PHY"], bts [label="BTS"], mgw [label="MGW"];

	...;
	--- 		[label="Regular AMR Speech (has been ongoing for some time)"];

	mgw => bts	[label="RTP (AMR FT=0..7,Q=1)"];
	phy => bts	[label="PH-RTS.ind (TCH)"];
	bts => phy	[label="PH-DATA.req GsmL1_TchPlType_Amr (N)"];
	ms <= phy	[label="L1 burst (sub-block 5 of speech frame N-1 + sub-block 1 of speech frame N)"];
	ms <= phy	[label="L1 burst (sub-block 6 of speech frame N-1 + sub-block 2 of speech frame N)"];
	ms <= phy	[label="L1 burst (sub-block 7 of speech frame N-1 + sub-block 3 of speech frame N)"];
	ms <= phy	[label="L1 burst (sub-block 8 of speech frame N-1 + sub-block 4 of speech frame N)"];
	mgw => bts	[label="RTP (AMR FT=0..7,Q=1)"];
	phy => bts	[label="PH-RTS.ind (TCH)"];
	bts => phy	[label="PH-DATA.req GsmL1_TchPlType_Amr (N+1)"];
	ms <= phy	[label="L1 burst (sub-block 5 of speech frame N + sub-block 1 of speech frame N+1)"];
	ms <= phy	[label="L1 burst (sub-block 6 of speech frame N + sub-block 2 of speech frame N+1)"];
	ms <= phy	[label="L1 burst (sub-block 7 of speech frame N + sub-block 3 of speech frame N+1)"];
	ms <= phy	[label="L1 burst (sub-block 8 of speech frame N + sub-block 2 of speech frame N+1)"];
}
----

==== TCH/AFS Downlink: End of Voice; Start of Silence

When the BTS receives the first RTP frame with Frame Type SID, it will
generate a SID_FIRST AMR frame. The AMR frame is interleaved in a way
that all information is contained in the first four sub-blocks, with
the latter four sub-blocks being dropped and not transmitted.

Three codec frames (60ms) later, the BTS needs to transmit a
SID_UPDATE AMR frame, which should consist of comfort noise parameters
received in either the first AMR SID frame, or a subsequent AMR SID
frame received meanwhile.

In between SID_FIRST and SID_UPDATE, and after the SID_UPDATE, the BTS
sends PH-EMPTY-FRAME.req to all PH-RTS.ind, causing the BTS-PHY to
cease transmission in those periods.

NOTE:: At any time, the BTS can end the silence period by issuing
ONSET (in case of a new downlink talk-spurt or a FACCH downlink
frame).  See <<afs-dl-onset>>.

["mscgen"]
----
msc {
	hscale = 2;
	ms [label="MS"], phy [label="BTS-PHY"], bts [label="BTS"], mgw [label="MGW"];

	...;
	---		[label="Last AMR Speech (end of talk-spurt) and SID First"];

	bts <= mgw	[label="RTP (AMR FT=SID,Q=1)"];

	phy => bts	[label="PH-RTS.ind (TCH)"];
	phy <= bts	[label="PH-DATA.req GsmL1_TchPlType_Amr (SID_FIRST)"];
	bts => bts	[label="Store SID frame in case it contains comfort noise parameters"];
	ms <= phy	[label="L1 burst (sub-block 5 of speech frame N-1 + sub-block 1 of SID_FIRST)"];
	ms <= phy	[label="L1 burst (sub-block 6 of speech frame N-1 + sub-block 2 of SID_FIRST)"];
	ms <= phy	[label="L1 burst (sub-block 7 of speech frame N-1 + sub-block 3 of SID_FIRST)"];
	ms <= phy	[label="L1 burst (sub-block 8 of speech frame N-1 + sub-block 4 of SID_FIRST)", id="DLSF2"];

	phy => bts	[label="PH-RTS.ind (TCH)"];
	phy <= bts	[label="PH-EMPTY-FRAME.req"];
	ms x- phy	[label="Suppressed burst"];
	ms x- phy	[label="Suppressed burst"];
	ms x- phy	[label="Suppressed burst"];
	ms x- phy	[label="Suppressed burst"];

	phy => bts	[label="PH-RTS.ind (TCH)"];
	phy <= bts	[label="PH-EMPTY-FRAME.req"];
	ms x- phy	[label="Suppressed burst"];
	ms x- phy	[label="Suppressed burst"];
	ms x- phy	[label="Suppressed burst"];
	ms x- phy	[label="Suppressed burst"];

	bts <= mgw	[label="RTP (AMR FT=SID,Q=1)"];
	bts => bts	[label="Store SID frame in case it contains comfort noise parameters"];

	phy => bts	[label="PH-RTS.ind (TCH)"];
	bts => phy	[label="PH-DATA.req GsmL1_TchPlType_Amr (SID_UPDATE)", id="DLSU2"];
	ms <= phy	[label="L1 burst (sub-block 1+2 of SID_UPDATE)"];
	ms <= phy	[label="L1 burst (sub-block 3+4 of SID_UPDATE)"];
	ms <= phy	[label="L1 burst (sub-block 5+6 of SID_UPDATE)"];
	ms <= phy	[label="L1 burst (sub-block 7+8 of SID_UPDATE)"];

	phy => bts	[label="PH-RTS.ind (TCH)"];
	phy <= bts	[label="PH-EMPTY-FRAME.req"];
	ms x- phy	[label="Suppressed burst"];
	ms x- phy	[label="Suppressed burst"];
	ms x- phy	[label="Suppressed burst"];
	ms x- phy	[label="Suppressed burst"];
}
----

DLSF2:: sub-frames 5..8 of SID_FIRST are not transmitted, as all
information is contained in sub-frames 1..4

DLSU2:: The SID_UPDATE must be sent exactly three voice frames (60ms)
after the SID_FIRST, resulting in two suppressed voice frame periods of
empty bursts in-between.

==== TCH/AFS Downlink: During Silence

During Silence periods, the BTS may at any time receive RTP AMR SID
frames, and keep a copy of the last received frame around.

Every eight voice frames (160ms), the BTS shall respond to the
PH-RTS.ind with a PH-DATA.req containing a GsmL1_TchPlType_Amr with
SID_UPDATE frame.

At all other times, the BTS sends PH-EMPTY-FRAME.req to any received
PH-RTS.ind, causing the BTS-PHY to cease transmission in those
periods.

NOTE:: At any time, the BTS can end the silence period by issuing
ONSET (in case of a new downlink talk-spurt or a FACCH downlink
frame).  See <<afs-dl-onset>>.

["mscgen"]
----
msc {
	hscale = 2;
	ms [label="MS"], phy [label="BTS-PHY"], bts [label="BTS"], mgw [label="MGW"];

	...;
	---		[label="Every 8 voice frames (160ms)", id="8VF"];

	bts <= mgw	[label="RTP (AMR FT=SID,Q=1)"];
	bts => bts	[label="Store SID frame in case it contains comfort noise parameters"];

	phy => bts	[label="PH-RTS.ind (TCH)"];
	bts => phy	[label="PH-DATA.req GsmL1_TchPlType_Amr (SID_UPDATE)"];
	ms <= phy	[label="L1 burst (sub-block 1+2 of SID_UPDATE)"];
	ms <= phy	[label="L1 burst (sub-block 3+4 of SID_UPDATE)"];
	ms <= phy	[label="L1 burst (sub-block 5+6 of SID_UPDATE)"];
	ms <= phy	[label="L1 burst (sub-block 7+8 of SID_UPDATE)"];
}
----

8VF:: This happens every 8 *voice frames* (160ms), not every 8 GSM
TDMA frames!

[[afs-dl-onset]]
==== TCH/AFS Downlink: End of Silence; Start of Voice

Once the BTS receives a non-SID AMR RTP frame (which should also have
the MARKER bit set to 1, but let's not take that for granted), the
contained AMR voice data is passed to the BTS-PHY in the next
PH-DATA.req (GsmL1_TchPlType_Amr_Onset).

From that point onwards, regular transmission resumes, see
<<afs-dl-talk>>

["mscgen"]
----
msc {
	hscale = 2;
	ms [label="MS"], phy [label="BTS-PHY"], bts [label="BTS"], mgw [label="MGW"];

	...;
	---		[label="Once voice is active again"];

	bts <= mgw	[label="RTP (AMR FT=0..7,Q=1) MARKER=1"];
	phy => bts	[label="PH-RTS.ind (TCH)"];
	phy <= bts	[label="PH-DATA.req GsmL1_TchPlType_Amr_Onset"];
	phy <= bts	[label="PH-DATA.req GsmL1_TchPlType_Amr (N)"];
	ms <= phy	[label="L1 burst (block 1 of SID_ONSET + sub-block 1 of speech frame N)"];
	ms <= phy	[label="L1 burst (block 2 of SID_ONSET + sub-block 2 of speech frame N)"];
	ms <= phy	[label="L1 burst (block 3 of SID_ONSET + sub-block 3 of speech frame N)"];
	ms <= phy	[label="L1 burst (block 4 of SID_ONSET + sub-block 4 of speech frame N)"];
	bts <= mgw	[label="RTP (AMR FT=0..7,Q=1)"];
	phy => bts	[label="PH-RTS.ind (TCH)"];
	phy <= bts	[label="PH-DATA.req GsmL1_TchPlType_Amr (N+1)"];
	ms <= phy	[label="L1 burst (sub-block 5 of speech frame N + sub-block 1 of speech frame N+1)"];
	ms <= phy	[label="L1 burst (sub-block 6 of speech frame N + sub-block 2 of speech frame N+1)"];
	ms <= phy	[label="L1 burst (sub-block 7 of speech frame N + sub-block 2 of speech frame N+1)"];
	ms <= phy	[label="L1 burst (sub-block 8 of speech frame N + sub-block 2 of speech frame N+1)"];
}
----

==== TCH/AFS Downlink: Inhibiting a SID_FIRST frame

Here is the procedure to inhibit a SID_FIRST frame in order to quickly resume speech.

["mscgen"]
----
msc {
	hscale = 2;
	ms [label="MS"], phy [label="BTS-PHY"], bts [label="BTS"], mgw [label="MGW"];

	...;
	---		[label="Inhibiting a SID_FIRST frame"];

	bts <= mgw	[label="RTP (AMR FT=SID,Q=1)"];
	phy => bts	[label="PH-RTS.ind (TCH)"];
	phy <= bts	[label="PH-DATA.req GsmL1_TchPlType_Amr (SID_FIRST)"];
	bts => bts	[label="Store SID frame in case it contains comfort noise parameters"];
	ms <= phy	[label="L1 burst (sub-block 5 of speech frame N-1 + sub-block 1 of SID_FIRST)"];
	ms <= phy	[label="L1 burst (sub-block 6 of speech frame N-1 + sub-block 2 of SID_FIRST)"];
	ms <= phy	[label="L1 burst (sub-block 7 of speech frame N-1 + sub-block 3 of SID_FIRST)"];
	ms <= phy	[label="L1 burst (sub-block 8 of speech frame N-1 + sub-block 4 of SID_FIRST)"];

	bts <= mgw	[label="RTP (AMR FT=0..7,Q=1) MARKER=1"];
	phy => bts	[label="PH-RTS.ind (TCH)"];
	phy <= bts	[label="PH-DATA.req GsmL1_TchPlType_Amr_Onset"];
	phy <= bts	[label="PH-DATA.req GsmL1_TchPlType_Amr (N)"];
	ms <= phy	[label="L1 burst (block 1 of SID_ONSET + sub-block 1 of speech frame N)"];
	ms <= phy	[label="L1 burst (block 2 of SID_ONSET + sub-block 2 of speech frame N)"];
	ms <= phy	[label="L1 burst (block 3 of SID_ONSET + sub-block 3 of speech frame N)"];
	ms <= phy	[label="L1 burst (block 4 of SID_ONSET + sub-block 4 of speech frame N)"];

	bts <= mgw	[label="RTP (AMR FT=0..7,Q=1)"];
	phy => bts	[label="PH-RTS.ind (TCH)"];
	phy <= bts	[label="PH-DATA.req GsmL1_TchPlType_Amr (N+1)"];
	ms <= phy	[label="L1 burst (sub-block 5 of speech frame N + sub-block 1 of speech frame N+1)"];
	ms <= phy	[label="L1 burst (sub-block 6 of speech frame N + sub-block 2 of speech frame N+1)"];
	ms <= phy	[label="L1 burst (sub-block 7 of speech frame N + sub-block 2 of speech frame N+1)"];
	ms <= phy	[label="L1 burst (sub-block 8 of speech frame N + sub-block 2 of speech frame N+1)"];
	}
----

==== TCH/AFS Downlink: FACCH/F During DTX Operation

The following procedure must be observed if a FACCH/F frame must be transmitted during DTX operation.

["mscgen"]
----
msc {
	hscale = 2;
	ms [label="MS"], phy [label="BTS-PHY"], bts [label="BTS"], mgw [label="MGW"];

	...;
	---		[label="FACCH/F Frame During DTX"];

	bts <= mgw	[label="FACCH/F"];
	phy => bts	[label="PH-RTS.ind (FACCH/F)"];
	phy => bts	[label="PH-RTS.ind (TCH/F)"];
	phy <= bts	[label="PH-DATA.req (FACCH/F)"];
	phy <= bts	[label="PH-DATA.req GsmL1_TchPlType_Amr_Onset(TCH/F)", id="NOTE"];
	ms <= phy	[label="L1 burst (block 1 of SID_ONSET + sub-block 1 of FACCH/F)"];
	ms <= phy	[label="L1 burst (block 2 of SID_ONSET + sub-block 2 of FACCH/F)"];
	ms <= phy	[label="L1 burst (block 3 of SID_ONSET + sub-block 3 of FACCH/F)"];
	ms <= phy	[label="L1 burst (block 4 of SID_ONSET + sub-block 4 of FACCH/F)"];

	phy => bts	[label="PH-RTS.ind (FACCH)"];
	phy => bts	[label="PH-RTS.ind (TCH)"];
	phy <= bts	[label="PH-EMPTY-FRAME.req (FACCH/F)"];
	phy <= bts	[label="PH-DATA.req GsmL1_TchPlType_Amr (SID_FIRST)"];
	ms x- phy	[label="L1 burst (sub-block 5 of FACCH/F + sub-block 1 of SID_FIRST)"];
	ms x- phy	[label="L1 burst (sub-block 6 of FACCH/F + sub-block 2 of SID_FIRST)"];
	ms x- phy	[label="L1 burst (sub-block 7 of FACCH/F + sub-block 3 of SID_FIRST)"];
	ms x- phy	[label="L1 burst (sub-block 8 of FACCH/F + sub-block 4 of SID_FIRST)"];

	phy => bts	[label="PH-RTS.ind (FACCH)"];
	phy => bts	[label="PH-RTS.ind (TCH)"];
	phy <= bts	[label="PH-EMPTY-FRAME.req (FACCH/F)"];
	phy <= bts	[label="PH-EMPTY-FRAME.req (TCH/F)"];
	ms x- phy	[label="Supressed burst"];
	ms x- phy	[label="Supressed burst"];
	ms x- phy	[label="Supressed burst"];
	ms x- phy	[label="Supressed burst"];
}
----

NOTE:: The ONSET and the FACCH/F PH-DATA requests must both be sent to the PHY.

== Half-Rate (TCH/AHS)

=== TCH/AHS Uplink (MS to Network)

==== TCH/AHS Uplink: During Talk-Spurt

During a talk-spurt, the system behaves identical to a system without
DTX enabled:  Every two radio bursts, the BTS-PHY has one AMR frame
ready and hands it up to the BTS process, which creates an RTP AMR
frame from it and sends that to the MGW.

["mscgen"]
----
msc {
	hscale = 2;
	ms [label="MS"], phy [label="BTS-PHY"], bts [label="BTS"], mgw [label="MGW"];

	...;
	--- 		[label="Regular AMR Speech (has been ongoing for some time)"];

	ms => phy	[label="L1 burst (sub-block 3 of speech frame N-1 + sub-block 1 of speech frame N)"];
	ms => phy	[label="L1 burst (sub-block 4 of speech frame N-1 + sub-block 2 of speech frame N)"];
	phy => bts	[label="PH-DATA.ind GsmL1_TchPlType_Amr (N-2)"];
	bts => mgw	[label="RTP (AMR FT=0..7,Q=1)"];
	ms => phy	[label="L1 burst (sub-block 3 of speech frame N + sub-block 1 of speech frame N+1)"];
	ms => phy	[label="L1 burst (sub-block 4 of speech frame N + sub-block 2 of speech frame N+1)"];
	phy => bts	[label="PH-DATA.ind GsmL1_TchPlType_Amr (N-1)"];
	bts => mgw	[label="RTP (AMR FT=0..7,Q=1)"];
	ms => phy	[label="L1 burst (sub-block 3 of speech frame N+1 + sub-block 1 of speech frame N+2)"];
	ms => phy	[label="L1 burst (sub-block 4 of speech frame N+1 + sub-block 2 of speech frame N+2)"];
	phy => bts	[label="PH-DATA.ind GsmL1_TchPlType_Amr (N)"];
	bts => mgw	[label="RTP (AMR FT=0..7,Q=1)"];
}
----

==== TCH AHS Uplink: End of Voice; Start of Silence

When the voice encoder in the MS detects no voice activity anymore, it
signals towards the MS-PHY that SID_FIRST_P1 and SID_FIRST_P2 shall be
transmitted.

The BTS-PHY reports the following primitives to the BTS after all four
related bursts have been received:

* PH-DATA.ind GsmL1_TchPlType_Amr_SidFirstP1
* PH-DATA.ind GsmL1_TchPlType_Amr_SidFirstP2

The BTS sends an RTP frame with AMR Frame Type SID, in which the STI
is set to indicate a SID_FIRST message.

["mscgen"]
----
msc {
	hscale = 2;
	ms [label="MS"], phy [label="BTS-PHY"], bts [label="BTS"], mgw [label="MGW"];

	...;
	---		[label="Last AMR Speech (end of talk-spurt) and SID P1/P2"];

	ms => phy	[label="L1 burst (sub-block 3 of speech frame N, sub-block 1 of SID_FIRST_P1)"];
	ms => phy	[label="L1 burst (sub-block 4 of speech frame N, sub-block 2 of SID_FIRST_P1)"];
	phy => bts	[label="PH-DATA.ind GsmL1_TchPlType_Amr (N-1)"];
	bts => mgw	[label="RTP (AMR FT=0..7,Q=1)"];

	ms => phy	[label="L1 burst (sub-block 3 of SID_FIRST_P1, sub-block 1 of SID_FIRST_P2)"];
	ms => phy	[label="L1 burst (sub-block 4 of SID_FIRST_P1, sub-block 2 of SID_FIRST_P2)"];
	phy => bts	[label="PH-DATA.ind GsmL1_TchPlType_Amr (N)"];
	bts => mgw	[label="RTP (AMR FT=0..7,Q=1)"];

	ms -x phy	[label="Supressed L1 burst"];
	ms -x phy	[label="Supressed L1 burst"];
	phy => bts	[label="PH-DATA.ind GsmL1_TchPlType_Amr_SidFirstP1", id="ULSF1"];
	bts => mgw	[label="RTP (AMR FT=SID,Q=1)"];

	ms => phy	[label="L1 burst (sub-block 1+2 of SID_UPDATE)", id="ULSU1"];
	ms => phy	[label="L1 burst (sub-block 3+4 of SID_UPDATE)"];
	phy => bts	[label="PH-DATA.ind GsmL1_TchPlType_Amr_SidFirstP2", id="NOTE"];
	bts -x mgw	[label="Suppressed RTP frame"];

	ms => phy	[label="L1 burst (sub-block 5+6 of SID_UPDATE)"];
	ms => phy	[label="L1 burst (sub-block 7+8 of SID_UPDATE)"];
	phy => bts	[label="PH-DATA.ind with empty payload"];
	bts -x mgw	[label="Suppressed RTP frame"];

	ms -x phy	[label="Supressed L1 burst"];
	ms -x phy	[label="Supressed L1 burst"];
	phy => bts	[label="PH-DATA.ind GsmL1_TchPlType_Amr (SID_UPDATE)"];
	bts => mgw	[label="RTP (AMR FT=SID,Q=1)"];
}
----

ULSF1:: Only SID_FIRST_P1 contains information so it must be the only one transmitted over RTP.

NOTE:: It has been observed that not all phones transmit SID_FIRST_P2 so the PH-DATA.ind GsmL1_TchPlType_Amr_SidFirstP2 is not guaranteed to be sent to the BTS.

ULSU1:: There must be exactly two supressed voice frames between the
SID_FIRST and the SID_UPDATE, i.e. there's 60ms between SID_FIRST and
SID_UPDATE.

==== TCH/AFS Uplink: During Silence

While the period of silence is ongoing, the MS pauses all
transmissions, except the periodic scheduling of SID_UPDATE every
8 voice frames (160ms).

NOTE:: Silence can also be interrupted at any time by ONSET, see
<<ahs-ul-onset>>.

["mscgen"]
----
msc {
	hscale = 2;
	ms [label="MS"], phy [label="BTS-PHY"], bts [label="BTS"], mgw [label="MGW"];

	...;
	---		[label="Every 8 voice frames (160ms)", id="8VF"];

	ms => phy	[label="L1 burst (sub-block 1+2 of SID_UPDATE)"];
	ms => phy	[label="L1 burst (sub-block 3+4 of SID_UPDATE)"];
	phy => bts	[label="PH-DATA.ind with empty payload"];
	bts -x mgw	[label="Suppressed RTP frame"];
	ms => phy	[label="L1 burst (sub-block 5+6 of SID_UPDATE)"];
	ms => phy	[label="L1 burst (sub-block 7+8 of SID_UPDATE)"];
	phy => bts	[label="PH-DATA.ind with empty payload"];
	bts -x mgw	[label="Suppressed RTP frame"];

	ms -x phy	[label="Supressed L1 burst"];
	ms -x phy	[label="Supressed L1 burst"];
	phy => bts	[label="PH-DATA.ind GsmL1_TchPlType_Amr (SID_UPDATE)"];
	bts => mgw	[label="RTP (AMR FT=SID,Q=1)"];

	ms -x phy	[label="Supressed L1 burst"];
	ms -x phy	[label="Supressed L1 burst"];
	phy => bts	[label="PH-DATA.ind with empty payload"];
	bts -x mgw	[label="Suppressed RTP frame"];

	ms -x phy	[label="Supressed L1 burst"];
	ms -x phy	[label="Supressed L1 burst"];
	phy => bts	[label="PH-DATA.ind with empty payload"];
	bts -x mgw	[label="Suppressed RTP frame"];

	ms -x phy	[label="Supressed L1 burst"];
	ms -x phy	[label="Supressed L1 burst"];
	phy => bts	[label="PH-DATA.ind with empty payload"];
	bts -x mgw	[label="Suppressed RTP frame"];

	ms -x phy	[label="Supressed L1 burst"];
	ms -x phy	[label="Supressed L1 burst"];
	phy => bts	[label="PH-DATA.ind with empty payload"];
	bts -x mgw	[label="Suppressed RTP frame"];

	ms -x phy	[label="Supressed L1 burst"];
	ms -x phy	[label="Supressed L1 burst"];
	phy => bts	[label="PH-DATA.ind with empty payload"];
	bts -x mgw	[label="Suppressed RTP frame"];

	ms => phy	[label="L1 burst (sub-block 1+2 of SID_UPDATE)"];
	ms => phy	[label="L1 burst (sub-block 3+4 of SID_UPDATE)"];
	phy => bts	[label="PH-DATA.ind with empty payload"];
	bts -x mgw	[label="Suppressed RTP frame"];
	ms => phy	[label="L1 burst (sub-block 5+6 of SID_UPDATE)"];
	ms => phy	[label="L1 burst (sub-block 7+8 of SID_UPDATE)"];
	phy => bts	[label="PH-DATA.ind with empty payload"];
	bts -x mgw	[label="Suppressed RTP frame"];

	ms -x phy	[label="Supressed L1 burst"];
	ms -x phy	[label="Supressed L1 burst"];
	phy => bts	[label="PH-DATA.ind GsmL1_TchPlType_Amr (SID_UPDATE)"];
	bts => mgw	[label="RTP (AMR FT=SID,Q=1)"];
}
----

8VF:: This happens every 8 *voice frames* (160ms), not every 8 GSM
TDMA frames!

[[ahs-ul-onset]]
==== TCH/AHS Uplink: End of Silence; Start of Voice

Once the voice encoder in the MS detects voice activity again, it
asks its transmitter to perform transmission of SID_ONSET, which is a
special frame which has information encoded only in sub-blocks 3+4, and
sub-blocks 1+2 are discarded before transmission.

A set of four radio bursts is sent, containing

* the only two transmitted sub-blocks of the SID_ONSET frame
* all four sub-blocks of the first voice codec frame
* the first two blocks of the second voice codec frame

The BTS-PHY informs the BTS using two primitives:

* PH-DATA.ind GsmL1_TchPlType_Amr_Onset indicates the presence of
  SID_ONSET, including the Channel Mode Indication (irrespective of
  CMI Phase)
* PH-DATA.ind GsmL1_TchPlType_Amr indicates the first voice frame

The BTS transmits a RTP frame with AMR payload of the corresponding
speech frame type, and sets the RTP MARKER bit to indicate the ONSET
condition.

["mscgen"]
----
msc {
	hscale = 2;
	ms [label="MS"], phy [label="BTS-PHY"], bts [label="BTS"], mgw [label="MGW"];

	...;
	---		[label="Once voice is active again"];

	ms -x phy	[label="Suppressed L1 burst"];
	ms -x phy	[label="Suppressed L1 burst"];
	phy => bts	[label="PH-DATA.ind with empty payload"];
	bts -x mgw	[label="Suppressed RTP frame"];

	ms => phy	[label="L1 burst (block 1 of SID_ONSET + sub-block 1 of speech frame N)"];
	ms => phy	[label="L1 burst (block 2 of SID_ONSET + sub-block 2 of speech frame N)"];
	phy => bts	[label="PH-DATA.ind with empty payload"];
	bts -x mgw	[label="Suppressed RTP frame"];

	ms => phy	[label="L1 burst (sub-block 3 of speech frame N + sub-block 1 of speech frame N+1)"];
	ms => phy	[label="L1 burst (sub-block 4 of speech frame N + sub-block 2 of speech frame N+1)"];
	phy => bts	[label="PH-DATA.ind with empty payload"];
	bts -x mgw	[label="Suppressed RTP frame"];

	ms => phy	[label="L1 burst (sub-block 3 of speech frame N+1 + sub-block 1 of speech frame N+2)"];
	ms => phy	[label="L1 burst (sub-block 4 of speech frame N+1 + sub-block 2 of speech frame N+2)"];
	phy => bts	[label="PH-DATA.ind GsmL1_TchPlType_Amr_Onset"];
	bts => bts	[label="lchan_set_marker() and store CMI"];
	phy => bts	[label="PH-DATA.ind GsmL1_TchPlType_Amr (N)"];
	bts => mgw	[label="RTP (AMR FT=0..7,Q=1) MARKER=1"];
	...;
}
----

==== TCH/AHS Uplink: Inhibited SID_FIRST

In case voice activity is detected again while the SID_FIRST_P1
transmission is ongoing or completed, but the SID_FIRST_P2 has not
been transmitted yet, SID_FIRST can be inhibited by means of a
SID_FIRST_INH frame. This allows the first voice frame to be
transmitted with minimal delay, compared to first completing
the regular SID_FIRTS_P2 and SID_ONSET procedure.

["mscgen"]
----
msc {
	hscale = 2;
	ms [label="MS"], phy [label="BTS-PHY"], bts [label="BTS"], mgw [label="MGW"];

	ms .. mgw	[label="End of talk-spurt with inhibited SID_FIRST"];

	ms => phy	[label="L1 burst (sub-block 3 of last speech frame N + sub-block 1 of SID_FIRST_P1)"];
	ms => phy	[label="L1 burst (sub-block 4 of last speech frame N + sub-block 2 of SID_FIRST_P1)"];
	phy => bts	[label="PH-DATA.ind GsmL1_TchPlType_Amr (N-1)"];
	bts => mgw	[label="RTP (AMR FT=0..7,Q=1)"];

	ms => phy	[label="L1 burst (block 1 of SID_FIRST_INH and sub-block 1 of speech frame N+1", id="SFI1"];
	ms => phy	[label="L1 burst (block 2 of SID_FIRST_INH and sub-block 2 of speech frame N+1"];
	phy => bts	[label="PH-DATA.ind GsmL1_TchPlType_Amr (N)"];
	bts => mgw	[label="RTP (AMR FT=0..7,Q=1)"];

	ms => phy	[label="L1 burst (sub-block 3 of speech frame N+1 + sub-block 1 of speech frame N+2)"];
	ms => phy	[label="L1 burst (sub-block 4 of speech frame N+1 + sub-block 2 of speech frame N+2)"];
	phy => bts	[label="PH-DATA.ind with empty payload"];
	bts -x mgw	[label="Suppressed RTP frame"];

	ms => phy	[label="L1 burst (sub-block 3 of speech frame N+2 + sub-block 1 of speech frame N+3)"];
	ms => phy	[label="L1 burst (sub-block 4 of speech frame N+2 + sub-block 2 of speech frame N+3)"];
	phy => bts	[label="PH-DATA.ind GsmL1_TchPlType_Amr_SidInh", id="SFI2"];
	bts => bts	[label="store CMI from SID_FIRST_INH"];
	phy => bts	[label="PH-DATA.ind GsmL1_TchPlType_Amr (N+1)"];
	bts => mgw	[label="RTP (AMR FT=0..7,Q=1) MARKER=1"];
}
----

==== TCH/AHS Uplink: Inhibited SID_UPDATE

In case voice activity is detected again while the SID_UPDATE
transmission of the first two sub-blocks is ongoing or completed, but
the second two sub-blocks have not been transmitted yet, SID_UPDATE can
be inhibited by means of a SID_UPDATE_INH frame. This allows the
first voice frame to be transmitted with minimal delay, compared to
first completing the regular SID_UPDATE and SID_ONSET procedure.

["mscgen"]
----
msc {
	hscale = 2;
	ms [label="MS"], phy [label="BTS-PHY"], bts [label="BTS"], mgw [label="MGW"];

	...;
	ms .. mgw	[label="Inhibited SID Update (during silence period)"];

	ms => phy	[label="L1 burst (sub-block 1+2 of SID_UPDATE)"];
	ms => phy	[label="L1 burst (sub-block 3+4 of SID_UPDATE)"];
	phy => bts	[label="PH-DATA.ind with empty payload"];
	bts -x mgw	[label="Suppressed RTP frame"];

	ms => phy	[label="L1 burst (block 1 of SID_UPD_INH + sub-block 1 of speech frame N)", id="SFU1"];
	ms => phy	[label="L1 burst (block 2 of SID_UPD_INH + sub-block 2 of speech frame N)"];
	phy => bts	[label="PH-DATA.ind with empty payload"];
	bts -x mgw	[label="Suppressed RTP frame"];

	ms => phy	[label="L1 burst (sub-block 3 of speech frame N + sub-block 1 of speech frame N+1)"];
	ms => phy	[label="L1 burst (sub-block 4 of speech frame N + sub-block 2 of speech frame N+1)"];
	phy => bts	[label="PH-DATA.ind with empty payload"];
	bts -x mgw	[label="Suppressed RTP frame"];

	ms => phy	[label="L1 burst (sub-block 3 of speech frame N+1 + sub-block 1 of speech frame N+2)"];
	ms => phy	[label="L1 burst (sub-block 4 of speech frame N+1 + sub-block 2 of speech frame N+2)"];
	phy => bts	[label="PH-DATA.ind GsmL1_TchPlType_Amr_SidUpdateInH", id="SFU2"];
	bts => bts	[label="lchan_set_marker() and store CMI from SID_UPD_INH"];
	phy => bts	[label="PH-DATA.ind GsmL1_TchPlType_Amr (N)"];
	bts => mgw	[label="RTP (AMR FT=0..7,Q=1) MARKER=1"];
}
----

==== TCH/AHS Uplink: FACCH/H During DTX operation

The following procedure must be observed if a FACCH/H frame must be transmitted during DTX operation.

["mscgen"]
----
msc {
	hscale = 2;
	ms [label="MS"], phy [label="BTS-PHY"], bts [label="BTS"], mgw [label="MGW"];

	...;
	ms .. mgw	[label="FACCH/H during DTX operation"];

	ms -x phy	[label="Supressed L1 burst"];
	ms -x phy	[label="Supressed L1 burst"];
	phy => bts	[label="PH-DATA.ind with empty payload"];
	bts -x mgw	[label="Suppressed RTP frame"];

	ms => phy	[label="L1 burst (block 1 of SID_ONSET + sub-block 1 of FACCH/H)"];
	ms => phy	[label="L1 burst (block 2 of SID_ONSET + sub-block 2 of FACCH/H)"];
	phy => bts	[label="PH-DATA.ind with empty payload"];
	bts -x mgw	[label="Suppressed RTP frame"];

	ms => phy	[label="L1 burst (sub-block 3+4 of FACCH/H)"];
	ms => phy	[label="L1 burst (sub-block 5+6 of FACCH/H)"];
	phy => bts	[label="PH-DATA.ind with empty payload"];
	bts -x mgw	[label="Suppressed RTP frame"];

	ms => phy	[label="L1 burst (sub-block 7 of FACCH/H + sub-block 1 of SID_FIRST_P1)"];
	ms => phy	[label="L1 burst (sub-block 8 of FACCH/H + sub-block 2 of SID_FIRST_P1)"];
	phy => bts	[label="PH-DATA.ind GsmL1_TchPlType_Amr_Onset"];
	bts => bts	[label="lchan_set_marker() and store CMI"];
	phy => bts	[label="PH-DATA.ind FACCH/H"];
	bts => mgw	[label="FACCH/H"];

	ms => phy	[label="L1 burst (sub-block 3 of SID_FIRST_P1 + block 1 of SID_FIRST_P2)"];
	ms => phy	[label="L1 burst (sub-block 4 of SID_FIRST_P1 + block 2 of SID_FIRST_P2)"];
	phy => bts	[label="PH-DATA.ind with empty payload"];
	bts -x mgw	[label="Suppressed RTP frame"];

	ms -x phy	[label="Supressed L1 burst"];
	ms -x phy	[label="Supressed L1 burst"];
	phy => bts	[label="PH-DATA.ind GsmL1_TchPlType_Amr_SidFirstP1"];
	bts => mgw	[label="RTP (AMR FT=SID,Q=1)"];
}
----

=== TCH/AHS Downlink (Network to MS)

[[ahs-dl-talk]]
==== TCH/AHS Downlink: During Talk-Spurt

During a talk-spurt, the system behaves identically to a system without
DTX enabled: an RTP frame arrives every 20ms.

The PHY sends a PH-RTS.ind in similar intervals, to which the BTS
responds with a PH-DATA.req containing GsmL1_TchPlType_Amr.

The BTS-PHY then encodes and interleaves the codec frame into four
sub-blocks. Due to the interleaving, one new PH-RTS.ind is issued
every two bursts.

["mscgen"]
----
msc {
	hscale = 2;
	ms [label="MS"], phy [label="BTS-PHY"], bts [label="BTS"], mgw [label="MGW"];

	...;
	--- 		[label="Regular AMR Speech (has been ongoing for some time)"];

	mgw => bts	[label="RTP (AMR FT=0..7,Q=1)"];
	phy => bts	[label="PH-RTS.ind (TCH)"];
	bts => phy	[label="PH-DATA.req GsmL1_TchPlType_Amr (N)"];
	ms <= phy	[label="L1 burst (sub-block 3 of speech frame N-1 + sub-block 1 of speech frame N)"];
	ms <= phy	[label="L1 burst (sub-block 4 of speech frame N-1 + sub-block 2 of speech frame N)"];
	mgw => bts	[label="RTP (AMR FT=0..7,Q=1)"];
	phy => bts	[label="PH-RTS.ind (TCH)"];
	bts => phy	[label="PH-DATA.req GsmL1_TchPlType_Amr (N+1)"];
	ms <= phy	[label="L1 burst (sub-block 3 of speech frame N + sub-block 1 of speech frame N+1)"];
	ms <= phy	[label="L1 burst (sub-block 4 of speech frame N + sub-block 2 of speech frame N+1)"];
}
----

==== TCH/AHS Downlink: End of Voice; Start of Silence


When the BTS receives the first RTP frame with Frame Type SID, it will
first issue a GsmL1_TchPlType_Amr_SidFirstP1 primitive towards the
BTS-PHY, followed by a GsmL1_TchPlType_Amr_SidFirstP2 primitive.

The SID_FIRST_P2 is interleaved in a way that all information is
contained in the first two sub-blocks, with the latter two
sub-blocks being dropped and not transmitted.

Three codec frames (60ms) later, the BTS needs to transmit a
SID_UPDATE AMR frame, which should consist of comfort noise
parameters received in either the first RTP AMR SID frame, or a
subsequent RTP AMR SID frame received meanwhile.

In between SID_FIRST_P2 and SID_UPDATE, and after the SID_UPDATE, the
BTS sends PH-EMPTY-FRAME.req to all PH-RTS.ind, causing the BTS-PHY to
cease transmission in those periods.

NOTE:: At any time, the BTS can end the silence period by issuing
ONSET (in case of a new downlink talk-spurt or a FACCH
downlink frame). See Section <<ahs-dl-onset>>.

["mscgen"]
----
msc {
	hscale = 2;
	ms [label="MS"], phy [label="BTS-PHY"], bts [label="BTS"], mgw [label="MGW"];

	...;
	---		[label="Last AMR Speech (end of talk-spurt) and SID P1/P2"];

	bts <= mgw	[label="RTP (AMR FT=SID,Q=1)"];
	phy => bts	[label="PH-RTS.ind (TCH)"];
	phy <= bts	[label="PH-DATA.req GsmL1_TchPlType_Amr_SidFirstP1"];
	ms <= phy	[label="L1 burst (sub-block 3 of speech frame N-1 + sub-block 1 of SID_FIRST_P1)"];
	ms <= phy	[label="L1 burst (sub-block 4 of speech frame N-1 + sub-block 2 of SID_FIRST_P1)"];

	phy => bts	[label="PH-RTS.ind (TCH)"];
	phy <= bts	[label="PH-DATA.req GsmL1_TchPlType_Amr_SidFirstP2"];
	ms <= phy	[label="L1 burst (sub-block 3 of SID_FIRST_P1, sub-block 1 of SID_FIRST_P2)"];
	ms <= phy	[label="L1 burst (sub-block 4 of SID_FIRST_P1, sub-block 2 of SID_FIRST_P2)"];

	phy => bts	[label="PH-RTS.ind (TCH)"];
	phy <= bts	[label="PH-EMPTY-FRAME.req"];
	ms x- phy	[label="Suppressed burst"];
	ms x- phy	[label="Suppressed burst"];

	phy => bts	[label="PH-RTS.ind (TCH)"];
	phy <= bts	[label="PH-EMPTY-FRAME.req"];
	ms x- phy	[label="Suppressed burst"];
	ms x- phy	[label="Suppressed burst"];

	bts <= mgw	[label="RTP (AMR FT=SID,Q=1)"];
	phy => bts	[label="PH-RTS.ind (TCH)"];
	bts => phy	[label="PH-DATA.req GsmL1_TchPlType_Amr (SID_UPDATE)", id="ULSU2"];
	ms <= phy	[label="L1 burst (sub-block 1+2 of SID_UPDATE)"];
	ms <= phy	[label="L1 burst (sub-block 3+4 of SID_UPDATE)"];
	phy => bts	[label="PH-RTS.ind (TCH)"];
	phy <= bts	[label="PH-EMPTY-FRAME.req"];
	ms <= phy	[label="L1 burst (sub-block 5+6 of SID_UPDATE)"];
	ms <= phy	[label="L1 burst (sub-block 7+8 of SID_UPDATE)"];

	phy => bts	[label="PH-RTS.ind (TCH)"];
	phy <= bts	[label="PH-EMPTY-FRAME.req"];
	ms x- phy	[label="Suppressed burst"];
	ms x- phy	[label="Suppressed burst"];
}
----

ULSU2:: The SID_UPDATE must be sent exactly three voice frames (60ms)
after the SID_FIRST, resulting in two suppressed voice frame periods of
empty bursts in between.

==== TCH/AHS Downlink: During Silence

During Silence periods, the BTS may at any time receive RTP AMR SID
frames and keep a copy of the last received frame around.

Every eight voice frames (160ms), the BTS shall respond to the
PH-RTS.ind with a PH-DATA.req containing a GsmL1_TchPlType_Amr with
SID_UPDATE frame.

At all other times, the BTS sends PH-EMPTY-FRAME.req to any received
PH-RTS.ind, causing the BTS-PHY to cease transmission in those
periods.

NOTE:: At any time, the BTS can end the silence period by issuing
ONSET (in case of a new downlink talk-spurt or a FACCH downlink
frame). See Section <<ahs-dl-onset>>.

["mscgen"]
----
msc {
	hscale = 2;
	ms [label="MS"], phy [label="BTS-PHY"], bts [label="BTS"], mgw [label="MGW"];

	...;
	---		[label="Every 8 voice frames (160ms)", id="8VF"];

	bts <= mgw	[label="RTP (AMR FT=SID,Q=1)"];
	phy => bts	[label="PH-RTS.ind (TCH)"];
	bts => phy	[label="PH-DATA.req GsmL1_TchPlType_Amr (SID_UPDATE)"];
	ms <= phy	[label="L1 burst (sub-block 1+2 of SID_UPDATE)"];
	ms <= phy	[label="L1 burst (sub-block 3+4 of SID_UPDATE)"];
	phy => bts	[label="PH-RTS.ind (TCH)"];
	phy <= bts	[label="PH-EMPTY-FRAME.req"];
	ms <= phy	[label="L1 burst (sub-block 5+6 of SID_UPDATE)"];
	ms <= phy	[label="L1 burst (sub-block 7+8 of SID_UPDATE)"];
}
----

8VF:: This happens every 8 *voice frames* (160ms), not every 8 GSM
TDMA frames!

[[ahs-dl-onset]]
==== TCH/AHS Downlink: End of Silence; Start of Voice

Once the BTS receives a non-SID AMR RTP frame (which should also have
the MARKER bit set to 1, but let’s not take that for granted), the
contained AMR voice data is passed to the BTS-PHY in the next
PH-DATA.req (GsmL1_TchPlType_Amr_Onset).

From that point onwards, regular transmission resumes, see
<<ahs-dl-talk>>.

["mscgen"]
----
msc {
	hscale = 2;
	ms [label="MS"], phy [label="BTS-PHY"], bts [label="BTS"], mgw [label="MGW"];

	...;
	---		[label="Once voice is active again"];

	bts <= mgw	[label="RTP (AMR FT=0..7,Q=1) MARKER=1"];
	phy => bts	[label="PH-RTS.ind (TCH)"];
	phy <= bts	[label="PH-DATA.req GsmL1_TchPlType_Amr_Onset"];
	phy <= bts	[label="PH-DATA.req GsmL1_TchPlType_Amr (N)"];
	ms <= phy	[label="L1 burst (sub-block 3 of SID_ONSET + sub-block 1 of speech frame N)"];
	ms <= phy	[label="L1 burst (sub-block 4 of SID_ONSET + sub-block 2 of speech frame N)"];
	bts <= mgw	[label="RTP (AMR FT=0..7,Q=1)"];
	phy => bts	[label="PH-RTS.ind (TCH)"];
	phy <= bts	[label="PH-DATA.req GsmL1_TchPlType_Amr (N+1)"];
	ms <= phy	[label="L1 burst (sub-block 3 of speech frame N + sub-block 1 of speech frame N+1)"];
	ms <= phy	[label="L1 burst (sub-block 4 of speech frame N + sub-block 2 of speech frame N+1)"];
}
----

==== TCH/AHS Downlink: Inhibited SID_FIRST_P1

The following procedure must be observed in case of a SID_FIRST must be inhibited.

["mscgen"]
----
msc {
	hscale = 2;
	ms [label="MS"], phy [label="BTS-PHY"], bts [label="BTS"], mgw [label="MGW"];

	...;
	---		[label="Inhibited SID_FIRST_P1"];

	bts <= mgw	[label="RTP (AMR FT=SID,Q=1)"];
	phy => bts	[label="PH-RTS.ind (TCH)"];
	phy <= bts	[label="PH-DATA.req GsmL1_TchPlType_Amr_SidFirstP1"];
	ms <= phy	[label="L1 burst (sub-block 3 of speech frame N-1 + sub-block 1 of SID_FIRST_P1)"];
	ms <= phy	[label="L1 burst (sub-block 4 of speech frame N-1 + sub-block 2 of SID_FIRST_P1)"];

	bts <= mgw	[label="RTP (AMR FT=0..7,Q=1) MARKER=1"];
	phy => bts	[label="PH-RTS.ind (TCH)"];
	phy <= bts	[label="PH-DATA.req GsmL1_TchPlType_Amr_SidFirstInh"];
	phy <= bts	[label="PH-DATA.req GsmL1_TchPlType_Amr (N)"];
	ms <= phy	[label="L1 burst (block 1 of SID_FIRST_INH, sub-block 1 of speech frame N)"];
	ms <= phy	[label="L1 burst (block 2 of SID_FIRST_INH, sub-block 2 of speech frame N)"];

	bts <= mgw	[label="RTP (AMR FT=0..7,Q=1)"];
	phy => bts	[label="PH-RTS.ind (TCH)"];
	phy <= bts	[label="PH-DATA.req GsmL1_TchPlType_Amr (N+1)"];
	ms <= phy	[label="L1 burst (sub-block 3 of speech frame N + sub-block 1 of speech frame N+1)"];
	ms <= phy	[label="L1 burst (sub-block 4 of speech frame N + sub-block 2 of speech frame N+1)"];
}
----

==== TCH/AHS Downlink: Inhibited SID_UPDATE

The following procedure must be observed in case of a SID_UPDATE must be inhibited.

["mscgen"]
----
msc {
	hscale = 2;
	ms [label="MS"], phy [label="BTS-PHY"], bts [label="BTS"], mgw [label="MGW"];

	...;
	---		[label="Inhibited SID_UPDATE"];

	bts <= mgw	[label="RTP (AMR FT=SID,Q=1)"];
	phy => bts	[label="PH-RTS.ind (TCH)"];
	bts => phy	[label="PH-DATA.req GsmL1_TchPlType_Amr (SID_UPDATE)"];
	ms <= phy	[label="L1 burst (sub-block 1+2 of SID_UPDATE)"];
	ms <= phy	[label="L1 burst (sub-block 3+4 of SID_UPDATE)"];

	bts <= mgw	[label="RTP (AMR FT=0..7,Q=1) MARKER=1"];
	phy => bts	[label="PH-RTS.ind (TCH)"];
	phy <= bts	[label="PH-DATA.req GsmL1_TchPlType_Amr_SidUpdateInh"];
	phy <= bts	[label="PH-DATA.req GsmL1_TchPlType_Amr (N)"];
	ms <= phy	[label="L1 burst (block 1 of SID_UPDATE_INH, sub-block 1 of speech frame N)"];
	ms <= phy	[label="L1 burst (block 2 of SID_UPDATE_INH, sub-block 2 of speech frame N)"];

	bts <= mgw	[label="RTP (AMR FT=0..7,Q=1)"];
	phy => bts	[label="PH-RTS.ind (TCH)"];
	phy <= bts	[label="PH-DATA.req GsmL1_TchPlType_Amr (N+1)"];
	ms <= phy	[label="L1 burst (sub-block 3 of speech frame N + sub-block 1 of speech frame N+1)"];
	ms <= phy	[label="L1 burst (sub-block 4 of speech frame N + sub-block 2 of speech frame N+1)"];
}
----

==== TCH/AHS Downlink: FACCH/H During DTX Operation

The following procedure must be observed in case of a FACCH/H frame must be inserted during DTX operation.

["mscgen"]
----
msc {
	hscale = 2;
	ms [label="MS"], phy [label="BTS-PHY"], bts [label="BTS"], mgw [label="MGW"];

	...;
	---		[label="FACCH/H During DTX Operation"];

	bts <= mgw	[label="FACCH/H"];
	phy => bts	[label="PH-RTS.ind (FACCH/H)"];
	phy => bts	[label="PH-RTS.ind (TCH/H)"];
	phy <= bts	[label="PH-DATA.req GsmL1_TchPlType_Amr_Onset"];
	phy <= bts	[label="PH-DATA.req FACCH/H"];
	ms <= phy	[label="L1 burst (block 1 of SID_ONSET, sub-block 1 of FACCH/H frame)"];
	ms <= phy	[label="L1 burst (block 2 of SID_ONSET, sub-block 2 of FACCH/H frame)"];

	phy => bts	[label="PH-RTS.ind (TCH/H)"];
	phy <= bts	[label="PH-EMPTY-FRAME.req"];
	ms <= phy	[label="L1 burst (sub-block 3+4 of FACCH/H frame)"];
	ms <= phy	[label="L1 burst (sub-block 5+6 of FACCH/H frame)"];

	phy => bts	[label="PH-RTS.ind (FACCH/H)"];
	phy => bts	[label="PH-RTS.ind (TCH/H)"];
	phy <= bts	[label="PH-EMPTY-FRAME.req (FACCH/H)"];
	phy <= bts	[label="PH-DATA.req GsmL1_TchPlType_Amr_SidFirstP1"];
	ms <= phy	[label="L1 burst (sub-block 7 of FACCH/H frame + sub-block 1 of SID_FIRST_P1)"];
	ms <= phy	[label="L1 burst (sub-block 8 of FACCH/H frame + sub-block 2 of SID_FIRST_P1)"];

	phy => bts	[label="PH-RTS.ind (TCH)"];
	phy <= bts	[label="PH-DATA.req GsmL1_TchPlType_Amr_SidFirstP2"];
	ms <= phy	[label="L1 burst (sub-block 3 of SID_FIRST_P1, sub-block 1 of SID_FIRST_P2)"];
	ms <= phy	[label="L1 burst (sub-block 4 of SID_FIRST_P1, sub-block 2 of SID_FIRST_P2)"];
}
----

== Implementation details

There is FSM implementing all the necessary states and transitions for DTX DL.

[[dtx_dl_fsm]]
[graphviz]
----
include::dtx.dot[]
----

The idea is that each state corresponds to the particular message type which have to be send to L1 next while state transition happens on incoming events like FACCH or Voice frames. There are 3 different classes of of events driving this FSM:

* Voice frame types: E_VOICE, E_SID_U, E_SID_F
* Incoming FACCH: E_FACCH
* Internal: E_ONSET, E_INHIB, E_COMPL

They represent different types of incoming RTP frames (Voice, SID UPDATE and SID FIRST correspondingly), incoming FACCH events or important events internal to DTX operations. The latter are Onset (interruption of silence period), Inhibition (of currently transmitted SID FIRST or UPDATE) and Completion (of silence initiation).

The double-circled states are "stationary" meaning that FSM can stay for longer periods in them. Other states are "transient" - the FSM have to switch away during next step. In practice this is implemented using E_COMPL signal which is issued in corresponding RTS handler or internal function (in case of SID First P1 -> P2 transition).

The FSM states are grouped as follows:

* ST_VOICE: talkspurt, normal voice transmission
* ST_FACCH: transmission of higher-priority FACCH frame, interrupting current DTX state
* ST_ONSET*: handling of Onset event (interruption of silence period)
* ST_SID_F*: silence initiation
* ST_*_REC: sending of 2nd event for L1 during the same FN
* ST_*_INH: handling of Inhibition event (interruption of transmission of previous event)

The latter are specific to AMR HR where transmission of particular message by L1 takes longer so it can be aborted due to another incoming event. Note that for AMR FR only subset of this FSM is active (ST_SID_F2 and *INH states are never reached). This is implemented by signal emitting functions.

Note that the FSM states describe only the situation when we got to send something to L1, the transmission of Empty frames suppressing the actual radio transmission is done by other code.