blob: 3b1a3111678c9f8d834df87cfada24a48b0a9038 [file] [log] [blame]
Harald Welte643e2a62017-11-27 15:03:18 +01001module RSL_Types {
2
Harald Welte35bb7162018-01-03 21:07:52 +01003/* GSUP_Types, defining abstract TTCN-3 data types for the A-bis RSL protocol.
4 *
5 * RSL is a 3GPP standard protocol used between BTS and BSC in a GSM network.
6 *
7 * (C) 2017 by Harald Welte <laforge@gnumonks.org>
8 * All rights reserved.
9 *
10 * Released under the terms of GNU General Public License, Version 2 or
11 * (at your option) any later version.
12 */
13
Harald Welte643e2a62017-11-27 15:03:18 +010014 import from General_Types all;
15 import from Osmocom_Types all;
16 import from GSM_Types all;
17
18 /* Section 9.1 */
19 type enumerated RSL_MessageGroup {
20 RSL_MDISC_RESERVED ('0000000'B),
21 RSL_MDISC_RLL ('0000001'B),
22 RSL_MDISC_DCHAN ('0000100'B),
23 RSL_MDISC_CCHAN ('0000110'B),
24 RSL_MDISC_TRX_MGMT ('0001000'B),
25 RSL_MDISC_LCS ('0010000'B),
26 RSL_MDISC_IPACCESS ('0111111'B)
27 } with { variant "FIELDLENGTH(7)" };
28
29 /* Section 9.1 */
30 type record RSL_MessageDiscriminator {
31 RSL_MessageGroup msg_group,
32 boolean transparent
33 } with { variant "FIELDORDER(msb)" };
34
Harald Welteefa7d912018-04-18 23:22:15 +020035 template (value) RSL_MessageDiscriminator ts_RSL_MsgDisc(RSL_MessageGroup mg, boolean t := true) := {
Harald Welte643e2a62017-11-27 15:03:18 +010036 msg_group := mg,
37 transparent := t
38 }
Harald Welteefa7d912018-04-18 23:22:15 +020039 template RSL_MessageDiscriminator tr_RSL_MsgDisc(template RSL_MessageGroup mg, boolean t := true) := {
40 msg_group := mg,
41 transparent := t
42 }
43
Harald Welte643e2a62017-11-27 15:03:18 +010044
45 /* Section 9.2 */
46 type enumerated RSL_MessageType {
47 /* Radio Link Layer Management */
48 RSL_MT_DATA_REQ ('00000001'B),
49 RSL_MT_DATA_IND ('00000010'B),
50 RSL_MT_ERROR_IND ('00000011'B),
51 RSL_MT_EST_REQ ('00000100'B),
52 RSL_MT_EST_CONF ('00000101'B),
53 RSL_MT_EST_IND ('00000110'B),
54 RSL_MT_REL_REQ ('00000111'B),
55 RSL_MT_REL_CONF ('00001000'B),
56 RSL_MT_REL_IND ('00001001'B),
57 RSL_MT_UNIT_DATA_REQ ('00001010'B),
58 RSL_MT_UNIT_DATA_IND ('00001011'B),
59
60 /* non-standard below */
61 RSL_MT_SUSP_REQ ('00001100'B),
62 RSL_MT_SUSP_CONF ('00001101'B),
63 RSL_MT_RES_REQ ('00001110'B),
64 RSL_MT_RECON_REQ ('00001111'B),
65
66 /* Common Channel Management / TRX Management */
67 RSL_MT_BCCH_INFO ('00010001'B),
Harald Welte319be822017-12-07 17:50:26 +010068 RSL_MT_CCCH_LOAD_IND ('00010010'B),
69 RSL_MT_CHAN_RQD ('00010011'B),
70 RSL_MT_DELETE_IND ('00010100'B),
71 RSL_MT_PAGING_CMD ('00010101'B),
72 RSL_MT_IMMEDIATE_ASSIGN_CMD ('00010110'B),
73 RSL_MT_SMS_BC_REQ ('00010111'B),
74 RSL_MT_CHAN_CONF ('00011000'B), /* non-standard element */
Harald Welte643e2a62017-11-27 15:03:18 +010075 /* empty */
76 RSL_MT_RF_RES_IND ('00011001'B),
Harald Welte319be822017-12-07 17:50:26 +010077 RSL_MT_SACCH_FILL ('00011010'B),
78 RSL_MT_OVERLOAD ('00011011'B),
79 RSL_MT_ERROR_REPORT ('00011100'B),
80 RSL_MT_SMS_BC_CMD ('00011101'B),
81 RSL_MT_CBCH_LOAD_IND ('00011110'B),
82 RSL_MT_NOT_CMD ('00011111'B),
Harald Welte643e2a62017-11-27 15:03:18 +010083
84 /* Dedicate Channel Management */
85 RSL_MT_CHAN_ACTIV ('00100001'B),
Harald Welte319be822017-12-07 17:50:26 +010086 RSL_MT_CHAN_ACTIV_ACK ('00100010'B),
87 RSL_MT_CHAN_ACTIV_NACK ('00100011'B),
88 RSL_MT_CONN_FAIL ('00100100'B),
89 RSL_MT_DEACTIVATE_SACCH ('00100101'B),
90 RSL_MT_ENCR_CMD ('00100110'B),
91 RSL_MT_HANDO_DET ('00100111'B),
92 RSL_MT_MEAS_RES ('00101000'B),
93 RSL_MT_MODE_MODIFY_REQ ('00101001'B),
94 RSL_MT_MODE_MODIFY_ACK ('00101010'B),
95 RSL_MT_MODE_MODIFY_NACK ('00101011'B),
96 RSL_MT_PHY_CONTEXT_REQ ('00101100'B),
97 RSL_MT_PHY_CONTEXT_CONF ('00101101'B),
98 RSL_MT_RF_CHAN_REL ('00101110'B),
99 RSL_MT_MS_POWER_CONTROL ('00101111'B),
100 RSL_MT_BS_POWER_CONTROL ('00110000'B), /* 0x30 */
101 RSL_MT_PREPROC_CONFIG ('00110001'B),
102 RSL_MT_PREPROC_MEAS_RES ('00110010'B),
103 RSL_MT_RF_CHAN_REL_ACK ('00110011'B),
104 RSL_MT_SACCH_INFO_MODIFY('00110100'B),
105 RSL_MT_TALKER_DET ('00110101'B),
106 RSL_MT_LISTENER_DET ('00110110'B),
107 RSL_MT_REMOTE_CODEC_CONF_REP ('00110111'B),
108 RSL_MT_RTD_REP ('00111000'B),
109 RSL_MT_PRE_HANDO_NOTIF ('00111001'B),
110 RSL_MT_MR_CODEC_MOD_REQ ('00111010'B),
111 RSL_MT_MR_CODEC_MOD_ACK ('00111011'B),
112 RSL_MT_MR_CODEC_MOD_NACK ('00111100'B),
113 RSL_MT_MR_CODEC_MOD_PER ('00111101'B),
114 RSL_MT_TFO_REP ('00111110'B),
115 RSL_MT_TFO_MOD_REQ ('00111111'B), /* 0x3f */
Harald Welte643e2a62017-11-27 15:03:18 +0100116
117 RSL_MT_LOCATION_INFO ('01000001'B),
118
119 /* ip.access specific RSL message types */
120 RSL_MT_IPAC_DIR_RETR_ENQ ('01000000'B),
121
122 RSL_MT_IPAC_PDCH_ACT ('01001000'B),
Harald Welte319be822017-12-07 17:50:26 +0100123 RSL_MT_IPAC_PDCH_ACT_ACK ('01001001'B),
124 RSL_MT_IPAC_PDCH_ACT_NACK ('01001010'B),
Harald Welte643e2a62017-11-27 15:03:18 +0100125 RSL_MT_IPAC_PDCH_DEACT ('01001011'B),
Harald Welte319be822017-12-07 17:50:26 +0100126 RSL_MT_IPAC_PDCH_DEACT_ACK ('01001100'B),
127 RSL_MT_IPAC_PDCH_DEACT_NACK ('01001101'B),
Harald Welte643e2a62017-11-27 15:03:18 +0100128
129 RSL_MT_IPAC_CONNECT_MUX ('01010000'B),
Harald Weltef3075002017-12-16 22:31:41 +0100130 RSL_MT_IPAC_CONNECT_MUX_ACK ('01010001'B),
131 RSL_MT_IPAC_CONNECT_MUX_NACK ('01010010'B),
132 RSL_MT_IPAC_BIND_MUX ('01010011'B),
133 RSL_MT_IPAC_BIND_MUX_ACK ('01010100'B),
134 RSL_MT_IPAC_BIND_MUX_NACK ('01010101'B),
135 RSL_MT_IPAC_DISC_MUX ('01010110'B),
136 RSL_MT_IPAC_DISC_MUX_ACK ('01010111'B),
137 RSL_MT_IPAC_DISC_MUX_NACK ('01011000'B),
Harald Welte643e2a62017-11-27 15:03:18 +0100138 RSL_MT_IPAC_MEAS_PREPROC_DFT ('01100000'B),
Harald Weltef3075002017-12-16 22:31:41 +0100139 RSL_MT_IPAC_HO_CAN_ENQ ('01100001'B),
140 RSL_MT_IPAC_HO_CAN_RES ('01100010'B),
141 RSL_MT_IPAC_CRCX ('01110000'B),
142 RSL_MT_IPAC_CRCX_ACK ('01110001'B),
143 RSL_MT_IPAC_CRCX_NACK ('01110010'B),
144 RSL_MT_IPAC_MDCX ('01110011'B),
145 RSL_MT_IPAC_MDCX_ACK ('01110100'B),
146 RSL_MT_IPAC_MDCX_NACK ('01110101'B),
147 RSL_MT_IPAC_DLCX_IND ('01110110'B),
148 RSL_MT_IPAC_DLCX ('01110111'B),
149 RSL_MT_IPAC_DLCX_ACK ('01111000'B),
150 RSL_MT_IPAC_DLCX_NACK ('01111001'B)
Harald Welte643e2a62017-11-27 15:03:18 +0100151 } with { variant "FIELDLENGTH(8)" };
152
153 /*! RSL Information Element Identifiers (Chapter 9.3) */
154 type enumerated RSL_IE_Type {
155 RSL_IE_CHAN_NR ('00000001'B),
Harald Welte319be822017-12-07 17:50:26 +0100156 RSL_IE_LINK_IDENT ('00000010'B),
157 RSL_IE_ACT_TYPE ('00000011'B),
158 RSL_IE_BS_POWER ('00000100'B),
159 RSL_IE_CHAN_IDENT ('00000101'B),
160 RSL_IE_CHAN_MODE ('00000110'B),
161 RSL_IE_ENCR_INFO ('00000111'B),
162 RSL_IE_FRAME_NUMBER ('00001000'B),
163 RSL_IE_HANDO_REF ('00001001'B),
164 RSL_IE_L1_INFO ('00001010'B),
165 RSL_IE_L3_INFO ('00001011'B),
166 RSL_IE_MS_IDENTITY ('00001100'B),
167 RSL_IE_MS_POWER ('00001101'B),
168 RSL_IE_PAGING_GROUP ('00001110'B),
169 RSL_IE_PAGING_LOAD ('00001111'B),
170 RSL_IE_PYHS_CONTEXT ('00010000'B),
171 RSL_IE_ACCESS_DELAY ('00010001'B),
172 RSL_IE_RACH_LOAD ('00010010'B),
173 RSL_IE_REQ_REFERENCE ('00010011'B),
174 RSL_IE_RELEASE_MODE ('00010100'B),
175 RSL_IE_RESOURCE_INFO ('00010101'B),
176 RSL_IE_RLM_CAUSE ('00010110'B),
177 RSL_IE_STARTNG_TIME ('00010111'B),
178 RSL_IE_TIMING_ADVANCE ('00011000'B),
179 RSL_IE_UPLINK_MEAS ('00011001'B),
180 RSL_IE_CAUSE ('00011010'B),
181 RSL_IE_MEAS_RES_NR ('00011011'B),
182 RSL_IE_MSG_ID ('00011100'B),
Harald Welte643e2a62017-11-27 15:03:18 +0100183 /* reserved */
184 RSL_IE_SYSINFO_TYPE ('00011110'B),
Harald Welte319be822017-12-07 17:50:26 +0100185 RSL_IE_MS_POWER_PARAM ('00011111'B),
186 RSL_IE_BS_POWER_PARAM ('00100000'B),
187 RSL_IE_PREPROC_PARAM ('00100001'B),
188 RSL_IE_PREPROC_MEAS ('00100010'B),
189 RSL_IE_IMM_ASS_INFO ('00100011'B),/* Phase 1 (3.6.0), later Full below */
190 RSL_IE_SMSCB_INFO ('00100100'B),
191 RSL_IE_MS_TIMING_OFFSET ('00100101'B),
192 RSL_IE_ERR_MSG ('00100110'B),
193 RSL_IE_FULL_BCCH_INFO ('00100111'B),
194 RSL_IE_CHAN_NEEDED ('00101000'B),
195 RSL_IE_CB_CMD_TYPE ('00101001'B),
196 RSL_IE_SMSCB_MSG ('00101010'B),
197 RSL_IE_FULL_IMM_ASS_INFO ('00101011'B),
198 RSL_IE_SACCH_INFO ('00101100'B),
199 RSL_IE_CBCH_LOAD_INFO ('00101101'B),
200 RSL_IE_SMSCB_CHAN_INDICATOR ('00101110'B),
201 RSL_IE_GROUP_CALL_REF ('00101111'B),
202 RSL_IE_CHAN_DESC ('00110000'B),
203 RSL_IE_NCH_DRX_INFO ('00110001'B),
204 RSL_IE_CMD_INDICATOR ('00110010'B),
205 RSL_IE_EMLPP_PRIO ('00110011'B),
206 RSL_IE_UIC ('00110100'B),
207 RSL_IE_MAIN_CHAN_REF ('00110101'B),
208 RSL_IE_MR_CONFIG ('00110110'B),
209 RSL_IE_MR_CONTROL ('00110111'B),
210 RSL_IE_SUP_CODEC_TYPES ('00111000'B),
211 RSL_IE_CODEC_CONFIG ('00111001'B),
212 RSL_IE_RTD ('00111010'B),
213 RSL_IE_TFO_STATUS ('00111011'B),
214 RSL_IE_LLP_APDU ('00111100'B),
Harald Welte643e2a62017-11-27 15:03:18 +0100215
216 /* ip.access */
217 RSL_IE_IPAC_SRTP_CONFIG ('11100000'B),
Harald Welte319be822017-12-07 17:50:26 +0100218 RSL_IE_IPAC_PROXY_UDP ('11100001'B),
219 RSL_IE_IPAC_BSCMPL_TOUT ('11100010'B),
Harald Welte643e2a62017-11-27 15:03:18 +0100220
221 RSL_IE_IPAC_REMOTE_IP ('11110000'B),
Harald Welte319be822017-12-07 17:50:26 +0100222 RSL_IE_IPAC_REMOTE_PORT ('11110001'B),
223 RSL_IE_IPAC_RTP_PAYLOAD ('11110010'B),
224 RSL_IE_IPAC_LOCAL_PORT ('11110011'B),
225 RSL_IE_IPAC_SPEECH_MODE ('11110100'B),
226 RSL_IE_IPAC_LOCAL_IP ('11110101'B),
227 RSL_IE_IPAC_CONN_STAT ('11110110'B),
228 RSL_IE_IPAC_HO_C_PARMS ('11110111'B),
229 RSL_IE_IPAC_CONN_ID ('11111000'B),
230 RSL_IE_IPAC_RTP_CSD_FMT ('11111001'B),
231 RSL_IE_IPAC_RTP_JIT_BUF ('11111010'B),
232 RSL_IE_IPAC_RTP_COMPR ('11111011'B),
233 RSL_IE_IPAC_RTP_PAYLOAD2 ('11111100'B),
234 RSL_IE_IPAC_RTP_MPLEX ('11111101'B),
235 RSL_IE_IPAC_RTP_MPLEX_ID ('11111110'B)
Harald Welte643e2a62017-11-27 15:03:18 +0100236 } with { variant "FIELDLENGTH(8)" };
237
238 type record RSL_LV {
239 uint8_t len,
240 octetstring payload
241 } with { variant (len) "LENGTHTO(payload)" }
242
Harald Welteefa7d912018-04-18 23:22:15 +0200243 template (value) RSL_LV ts_RSL_LV(template (value) octetstring pl) := {
Harald Welte643e2a62017-11-27 15:03:18 +0100244 len := 0,
245 payload := pl
246 }
247
Harald Welte51d74102017-12-10 23:05:02 +0100248 template RSL_LV tr_RSL_LV(template octetstring pl) := {
249 len := ?,
250 payload := pl
251 }
252
Harald Welte15bb5b52017-12-07 17:52:04 +0100253 type record RSL_L16V {
254 uint16_t len,
255 octetstring payload
256 } with { variant (len) "LENGTHTO(payload)" }
257
Harald Welteefa7d912018-04-18 23:22:15 +0200258 template (value) RSL_L16V ts_RSL_L16V(template (value) octetstring pl) := {
Harald Welte15bb5b52017-12-07 17:52:04 +0100259 len := 0,
260 payload := pl
261 }
262
Harald Welte7794d5b2017-12-16 23:00:20 +0100263 template RSL_L16V tr_RSL_L16V(template octetstring pl) := {
264 len := ?,
265 payload := pl
266 }
267
Harald Welte643e2a62017-11-27 15:03:18 +0100268 type record RSL_IE_V {
269 uint8_t val
270 }
271
272 /* 9.3.3 */
273 type record RSL_IE_ActivationType {
274 boolean reactivation,
275 uint4_t reserved,
276 uint3_t a_bits
277 }
278
279 template RSL_IE_ActivationType t_RSL_IE_ActType := {
280 reactivation := false,
281 reserved := 0,
282 a_bits := 0 /* related to immediate assignment */
283 }
284
Harald Welte94e0c342018-04-07 11:33:23 +0200285 /* osmocom-style dynamic PDCH */
286 template RSL_IE_ActivationType t_RSL_IE_ActType_PDCH := {
287 reactivation := false,
288 reserved := 1,
289 a_bits := 7 /* related to immediate assignment */
290 }
291
Harald Welte643e2a62017-11-27 15:03:18 +0100292 /* 9.3.6 */
293 type enumerated RSL_SpeechDataInd {
294 RSL_SPDI_SPEECH ('00000001'B),
295 RSL_SPDI_DATA ('00000010'B),
296 RSL_SPDI_SIGN ('00000011'B)
297 } with { variant "FIELDLENGTH(8)" };
298 type enumerated RSL_ChanRateType {
299 RSL_CHRT_SDCCH ('00000001'B),
300 RSL_CHRT_TCH_F ('00001000'B),
301 RSL_CHRT_TCH_H ('00001001'B),
302 RSL_CHRT_TCH_F_BD_MSLOT ('00001010'B),
303 RSL_CHRT_TCH_F_DL_MSLOT ('00011010'B),
304 RSL_CHRT_TCH_F_GROUP ('00011000'B),
305 RSL_CHRT_TCH_H_GROUP ('00011001'B),
306 RSL_CHRT_TCH_F_BCAST ('00101000'B),
307 RSL_CHRT_TCH_H_BCAST ('00101001'B)
308 } with { variant "FIELDLENGTH(8)" };
309 type enumerated RSL_SpeechAlgo {
310 RSL_CMOD_NO_RESOURCE ('00000000'B),
311 RSL_CMOD_SP_GSM1 ('00000001'B),
312 RSL_CMOD_SP_GSM2 ('00010001'B),
313 RSL_CMOD_SP_GSM3 ('00100001'B),
314 RSL_CMOD_SP_GSM4 ('00110001'B),
315 RSL_CMOD_SP_GSM5 ('00001001'B),
316 RSL_CMOD_SP_GSM6 ('00001101'B)
317 } with { variant "FIELDLENGTH(8)" };
318 type record RSL_IE_ChannelMode {
Harald Welte8f2c21d2017-12-07 17:52:40 +0100319 uint8_t len,
Harald Welte643e2a62017-11-27 15:03:18 +0100320 BIT6 reserved,
321 boolean dtx_d,
322 boolean dtx_u,
323 RSL_SpeechDataInd spd_ind,
324 RSL_ChanRateType ch_rate_type,
325 RSL_SpeechAlgo coding_alg_rate
Harald Welte8f2c21d2017-12-07 17:52:40 +0100326 } with { variant (len) "LENGTHTO(reserved,dtx_d,dtx_u,spd_ind,ch_rate_type,coding_alg_rate)" }
Harald Welte643e2a62017-11-27 15:03:18 +0100327
Stefan Sperling4880be42018-08-07 18:12:59 +0200328 template (value) RSL_IE_ChannelMode ts_RSL_ChanMode_SIGN(boolean dtx_downlink := false) := {
Harald Welte8f2c21d2017-12-07 17:52:40 +0100329 len := 0, /* overwritten */
Harald Welte643e2a62017-11-27 15:03:18 +0100330 reserved := '000000'B,
Stefan Sperling4880be42018-08-07 18:12:59 +0200331 dtx_d := dtx_downlink,
Harald Welte643e2a62017-11-27 15:03:18 +0100332 dtx_u := false,
333 spd_ind := RSL_SPDI_SIGN,
334 ch_rate_type := RSL_CHRT_SDCCH,
335 coding_alg_rate := RSL_CMOD_NO_RESOURCE
336 }
337
Stefan Sperling4880be42018-08-07 18:12:59 +0200338 template (value) RSL_IE_ChannelMode ts_RSL_ChanMode(RSL_ChanRateType t, RSL_SpeechAlgo alg,
339 boolean dtx_downlink := false) := {
Harald Welte8f2c21d2017-12-07 17:52:40 +0100340 len := 0, /* overwritten */
Harald Welte643e2a62017-11-27 15:03:18 +0100341 reserved := '000000'B,
Stefan Sperling4880be42018-08-07 18:12:59 +0200342 dtx_d := dtx_downlink,
Harald Welte643e2a62017-11-27 15:03:18 +0100343 dtx_u := false,
344 spd_ind := RSL_SPDI_SPEECH,
345 ch_rate_type := t,
346 coding_alg_rate := alg
347 }
Harald Welte3618d9d2018-03-21 18:45:27 +0100348 template RSL_IE_ChannelMode tr_RSL_ChanMode(template RSL_ChanRateType t,
349 template RSL_SpeechAlgo alg) := {
350 len := ?,
351 reserved := '000000'B,
352 dtx_d := ?,
353 dtx_u := ?,
354 spd_ind := RSL_SPDI_SPEECH,
355 ch_rate_type := t,
356 coding_alg_rate := alg
357 }
Harald Welte643e2a62017-11-27 15:03:18 +0100358
359 /* 9.3.4 */
360 type record RSL_IE_BS_Power {
361 uint1_t reserved,
362 boolean epc,
363 boolean fpc,
364 uint5_t power_level
365 }
366
Harald Welte73cd2712017-12-17 00:44:52 +0100367 /* 9.3.7 */
Harald Weltee613f962018-04-18 22:38:16 +0200368 type enumerated RSL_AlgId {
369 RSL_ALG_ID_A5_0 ('00000001'B),
370 RSL_ALG_ID_A5_1 ('00000010'B),
371 RSL_ALG_ID_A5_2 ('00000011'B),
372 RSL_ALG_ID_A5_3 ('00000100'B),
373 RSL_ALG_ID_A5_4 ('00000101'B),
374 RSL_ALG_ID_A5_5 ('00000110'B),
375 RSL_ALG_ID_A5_6 ('00000111'B),
376 RSL_ALG_ID_A5_7 ('00001000'B)
377 } with { variant "FIELDLENGTH(8)" };
Harald Welte73cd2712017-12-17 00:44:52 +0100378 type record RSL_IE_EncryptionInfo {
379 uint8_t len,
Harald Weltee613f962018-04-18 22:38:16 +0200380 RSL_AlgId alg_id,
Harald Welte73cd2712017-12-17 00:44:52 +0100381 octetstring key
382 } with { variant (len) "LENGTHTO(alg_id,key)" };
383
Harald Weltee613f962018-04-18 22:38:16 +0200384 template RSL_IE_EncryptionInfo tr_RSL_IE_EncrInfo(template RSL_AlgId alg,
385 template octetstring key) := {
Harald Welte73cd2712017-12-17 00:44:52 +0100386 len := ?,
387 alg_id := alg,
388 key := key
389 }
Harald Weltee613f962018-04-18 22:38:16 +0200390 template (value) RSL_IE_EncryptionInfo ts_RSL_IE_EncrInfo(template (value) RSL_AlgId alg,
391 octetstring key) := {
Harald Welteefa7d912018-04-18 23:22:15 +0200392 len := 0, /* overwritten */
393 alg_id := alg,
394 key := key
395 }
396
397
Harald Welte73cd2712017-12-17 00:44:52 +0100398
Harald Welte643e2a62017-11-27 15:03:18 +0100399 /* 9.3.8 */
400 type record RSL_IE_FrameNumber {
401 uint5_t t1_p,
402 uint6_t t3,
403 uint5_t t2
404 }
405 type RSL_IE_FrameNumber RSL_IE_StartingTime;
406
407 /* 9.3.10 */
408 type record RSL_IE_L1Info {
409 uint5_t ms_power_lvl,
410 boolean fpc,
411 uint2_t reserved,
412 uint8_t actual_ta
413 }
414
415 /* 9.3.13 */
416 type record RSL_IE_MS_Power {
417 uint2_t reserved,
418 boolean fpc_epc,
419 uint5_t power_level
420 }
421
Harald Welted5f521e2017-12-07 17:53:06 +0100422 /* 9.3.18 */
423 type record RSL_IE_RachLoad {
424 uint8_t len,
425 uint16_t slot_count,
426 uint16_t busy_count,
427 uint16_t access_count
428 } with { variant (len) "LENGTHTO(slot_count,busy_count,access_count)" }
429
Harald Welteefa7d912018-04-18 23:22:15 +0200430 template (value) RSL_IE_RachLoad ts_RSL_IE_RachLoad(uint16_t slot, uint16_t busy, uint16_t acc) := {
Harald Welted5f521e2017-12-07 17:53:06 +0100431 len := 0, /* overwritten */
432 slot_count := slot,
433 busy_count := busy,
434 access_count := acc
435 }
436
Harald Welte68e495b2018-02-25 00:05:57 +0100437 template RSL_IE_RachLoad tr_RSL_IE_RachLoad(template uint16_t slot,
438 template uint16_t busy,
439 template uint16_t acc) := {
440 len := ?, /* overwritten */
441 slot_count := slot,
442 busy_count := busy,
443 access_count := acc
444 }
445
Harald Welte643e2a62017-11-27 15:03:18 +0100446 /* 9.3.19 */
447 type record RSL_IE_RequestRef {
448 OCT1 ra,
449 RSL_IE_FrameNumber frame_nr
450 }
451
452 /* 3GPP TS 44.018 / 10.5.2.38 Starting Time */
Harald Welte94e0c342018-04-07 11:33:23 +0200453 template (value) RSL_IE_FrameNumber ts_RSL_IE_FrameNumber(GsmFrameNumber fn) := {
Harald Welte643e2a62017-11-27 15:03:18 +0100454 t1_p := (fn / 1326) mod 32,
455 t3 := fn mod 51,
456 t2 := fn mod 26
457 }
458
Harald Welte9abd1282018-02-19 19:18:17 +0100459 function tr_RSL_IE_FrameNumber(template GsmFrameNumber fn) return template RSL_IE_FrameNumber {
460 if (istemplatekind(fn, "?")) {
461 return ?;
462 } else {
463 return ts_RSL_IE_FrameNumber(valueof(fn));
464 }
465 }
466
Harald Welteefa7d912018-04-18 23:22:15 +0200467 template (value) RSL_IE_RequestRef ts_RSL_IE_ReqRef(OCT1 ra, GsmFrameNumber frame_nr) := {
Harald Welte643e2a62017-11-27 15:03:18 +0100468 ra := ra,
469 frame_nr := ts_RSL_IE_FrameNumber(frame_nr)
470 }
471
Harald Welte9abd1282018-02-19 19:18:17 +0100472 template RSL_IE_RequestRef tr_RSL_IE_ReqRef(template OCT1 ra, template GsmFrameNumber frame_nr) := {
473 ra := ra,
474 frame_nr := tr_RSL_IE_FrameNumber(frame_nr)
475 }
476
Harald Welte15de8ba2018-06-29 08:51:42 +0200477 /* Osmocom Extension */
478 type record RSL_IE_UplinkMeasSuppMeasInfo {
479 int16_t toa256_mean,
480 int16_t toa256_min,
481 int16_t toa256_max,
482 uint16_t toa256_std_dev
483 };
484
Harald Welte2691adf2018-02-22 17:32:39 +0100485 /* 9.3.25 */
486 type record RSL_IE_UplinkMeas {
487 uint8_t len,
488 BIT1 rfu,
489 boolean dtx_d,
490 uint6_t rxlev_f_u,
491 BIT2 reserved1,
492 uint6_t rxlev_s_u,
493 BIT2 reserved2,
494 uint3_t rxq_f_u,
495 uint3_t rxq_s_u,
Harald Welte15de8ba2018-06-29 08:51:42 +0200496 RSL_IE_UplinkMeasSuppMeasInfo supp_meas_info optional
Harald Welte2691adf2018-02-22 17:32:39 +0100497 } with { variant (len) "LENGTHTO(rfu,dtx_d,rxlev_f_u,reserved1,rxlev_s_u,reserved2,rxq_f_u,rxq_s_u,supp_meas_info)" };
Harald Welte9abd1282018-02-19 19:18:17 +0100498
Harald Welte643e2a62017-11-27 15:03:18 +0100499 /* 9.3.26 */
Harald Weltea8ed9062017-12-14 09:46:01 +0100500 type enumerated RSL_Cause {
501 /* normal event */
502 RSL_ERR_RADIO_IF_FAIL ('00'O),
503 RSL_ERR_RADIO_LINK_FAIL ('01'O),
504 RSL_ERR_HANDOVER_ACC_FAIL ('02'O),
505 RSL_ERR_TALKER_ACC_FAIL ('03'O),
506 RSL_ERR_OM_INTERVENTION ('07'O),
507 RSL_ERR_NORMAL_UNSPEC ('0f'O),
508 RSL_ERR_T_MSRFPCI_EXP ('18'O),
509 /* resource unavailable */
510 RSL_ERR_EQUIPMENT_FAIL ('20'O),
511 RSL_ERR_RR_UNAVAIL ('21'O),
512 RSL_ERR_TERR_CH_FAIL ('22'O),
513 RSL_ERR_CCCH_OVERLOAD ('23'O),
514 RSL_ERR_ACCH_OVERLOAD ('24'O),
515 RSL_ERR_PROCESSOR_OVERLOAD ('25'O),
516 RSL_ERR_BTS_NOT_EQUIPPED ('27'O),
517 RSL_ERR_REMOTE_TRAU_FAILURE ('28'O),
518 RSL_ERR_NOTIF_OVERFLOW ('29'O),
519 RSL_ERR_RES_UNAVAIL ('2f'O),
520 /* service or option not available */
521 RSL_ERR_TRANSC_UNAVAIL ('30'O),
522 RSL_ERR_SERV_OPT_UNAVAIL ('3f'O),
523 /* service or option not implemented */
524 RSL_ERR_ENCR_UNIMPL ('40'O),
525 RSL_ERR_SERV_OPT_UNIMPL ('4f'O),
526 /* invalid message */
527 RSL_ERR_RCH_ALR_ACTV_ALLOC ('50'O),
Harald Welte9912eb52018-02-25 13:30:15 +0100528 RSL_ERR_IPA_RCH_NOT_ACTV_ALLOC ('51'O),
529 RSL_ERR_IPA_CONN_INVALID ('52'O),
530 RSL_ERR_IPA_CONN_IN_USE ('53'O),
531 RSL_ERR_IPA_CONN_ALREADY_EXISTS ('54'O),
Harald Weltea8ed9062017-12-14 09:46:01 +0100532 RSL_ERR_INVALID_MESSAGE ('5f'O),
533 /* protocol error */
534 RSL_ERR_MSG_DISCR ('60'O),
535 RSL_ERR_MSG_TYPE ('61'O),
536 RSL_ERR_MSG_SEQ ('62'O),
537 RSL_ERR_IE_ERROR ('63'O),
538 RSL_ERR_MAND_IE_ERROR ('64'O),
539 RSL_ERR_OPT_IE_ERROR ('65'O),
540 RSL_ERR_IE_NONEXIST ('66'O),
541 RSL_ERR_IE_LENGTH ('67'O),
542 RSL_ERR_IE_CONTENT ('68'O),
543 RSL_ERR_PROTO ('6f'O),
544 /* interworking */
545 RSL_ERR_INTERWORKING ('7f'O)
546 };
Harald Welte643e2a62017-11-27 15:03:18 +0100547 type record RSL_IE_Cause {
Harald Welte6efa8e32017-12-09 22:34:06 +0100548 uint8_t len,
Harald Welte643e2a62017-11-27 15:03:18 +0100549 uint1_t e,
550 RSL_Cause cause,
551 octetstring cause_ext optional
Harald Welte6efa8e32017-12-09 22:34:06 +0100552 } with { variant (len) "LENGTHTO(e,cause,cause_ext)" }
Harald Welte643e2a62017-11-27 15:03:18 +0100553
Harald Welteefa7d912018-04-18 23:22:15 +0200554 template (value) RSL_IE_Cause ts_RSL_IE_Cause(RSL_Cause cause) := {
Harald Welte6efa8e32017-12-09 22:34:06 +0100555 len := 0, /* overwritten */
Harald Welte643e2a62017-11-27 15:03:18 +0100556 e := 0,
557 cause := cause,
558 cause_ext := omit
559 }
560
Harald Welte9abd1282018-02-19 19:18:17 +0100561 template RSL_IE_Cause tr_RSL_IE_Cause(template RSL_Cause cause) := {
562 len := ?,
563 e := 0,
564 cause := cause,
565 cause_ext := omit
566 }
567
Harald Welte643e2a62017-11-27 15:03:18 +0100568 /* 9.3.40 */
569 type enumerated RSL_ChanNeeded {
570 RSL_CHANNEED_ANY ('00'B),
571 RSL_CHANNEED_SDCCH ('01'B),
572 RSL_CHANNEED_TCH_F ('10'B),
573 RSL_CHANNEED_TCH_ForH ('11'B)
Harald Welte51d74102017-12-10 23:05:02 +0100574 } with { variant "FIELDLENGTH(2)" };
Harald Welte643e2a62017-11-27 15:03:18 +0100575 type record RSL_IE_ChanNeeded {
576 uint6_t reserved,
577 RSL_ChanNeeded chan_needed
578 }
579
Harald Weltecc373202018-09-10 10:28:21 +0200580 /* 9.3.41 CB Command Type */
581 type enumerated RSL_CbCommand {
582 RSL_CB_CMD_NORMAL ('0000'B),
583 RSL_CB_CMD_SCHEDULE ('1000'B),
584 RSL_CB_CMD_DEFAULT ('1110'B),
585 RSL_CB_CMD_NULL ('1111'B)
586 } with { variant "FIELDLENGTH(4)" };
587 type record RSL_IE_CbCommandType {
588 RSL_CbCommand command,
589 boolean default_bcast_null,
590 BIT1 spare,
591 uint2_t last_block
592 };
593 template (value) RSL_IE_CbCommandType ts_RSL_IE_CbCmdType(RSL_CbCommand cmd := RSL_CB_CMD_NORMAL,
594 uint2_t last_block := 1,
595 boolean def_bcast_null := true) := {
596 command := cmd,
597 default_bcast_null := def_bcast_null,
598 spare := '0'B,
599 last_block := last_block
600 }
601
Harald Welte643e2a62017-11-27 15:03:18 +0100602 /* 9.3.53 */
603 type record RSL_IE_MultirateCtrl {
604 uint3_t spare,
605 boolean od,
606 boolean pre,
607 uint2_t rae,
608 boolean tfo
609 }
610
611 type enumerated RSL_IE_SysinfoType {
612 RSL_SYSTEM_INFO_8 ('00000000'B),
613 RSL_SYSTEM_INFO_1 ('00000001'B),
614 RSL_SYSTEM_INFO_2 ('00000010'B),
615 RSL_SYSTEM_INFO_3 ('00000011'B),
616 RSL_SYSTEM_INFO_4 ('00000100'B),
617 RSL_SYSTEM_INFO_5 ('00000101'B),
618 RSL_SYSTEM_INFO_6 ('00000110'B),
619 RSL_SYSTEM_INFO_7 ('00000111'B),
620 RSL_SYSTEM_INFO_16 ('00001000'B),
621 RSL_SYSTEM_INFO_17 ('00001001'B),
622 RSL_SYSTEM_INFO_2bis ('00001010'B),
623 RSL_SYSTEM_INFO_2ter ('00001011'B),
624 RSL_SYSTEM_INFO_5bis ('00001101'B),
625 RSL_SYSTEM_INFO_5ter ('00001110'B),
626 RSL_SYSTEM_INFO_10 ('00001111'B),
627 RSL_EXT_MEAS_ORDER ('01000111'B),
628 RSL_MEAS_INFO ('01001000'B),
629 RSL_SYSTEM_INFO_13 ('00101000'B),
630 RSL_ERIC_SYSTEM_INFO_13 ('00001100'B),
631 RSL_SYSTEM_INFO_2quater ('00101001'B),
632 RSL_SYSTEM_INFO_9 ('00101010'B),
633 RSL_SYSTEM_INFO_18 ('00101011'B),
634 RSL_SYSTEM_INFO_19 ('00101100'B),
635 RSL_SYSTEM_INFO_20 ('00101101'B)
636 } with { variant "FIELDLENGTH(8)" }
637
Harald Welte9958a4d2017-12-14 21:21:33 +0100638 type record RSL_IE_IPA_ConnectionStats {
639 uint8_t len,
640 uint32_t tx_packets,
641 uint32_t tx_octets,
642 uint32_t rx_packets,
643 uint32_t rx_octets,
644 uint32_t lost_packets,
645 uint32_t jitter,
646 uint32_t avg_delay
647 } with { variant (len) "LENGTHTO(tx_packets,tx_octets,rx_packets,rx_octets,lost_packets,jitter,avg_delay)" }
648
649 type enumerated RSL_IPA_SpeechMode {
650 RSL_IPA_SPM_SENDRECV ('00'B),
651 RSL_IPA_SPM_RECVONLY ('01'B),
652 RSL_IPA_SPM_SENDONLY ('10'B),
653 RSL_IPA_SPM_RESERVED ('11'B)
654 } with { variant "FIELDLENGTH(2)" }
655
656 type enumerated RSL_IPA_Codec {
657 RSL_IPA_CODEC_FR ('0000'B),
658 RSL_IPA_CODEC_EFR ('0001'B),
659 RSL_IPA_CODEC_AMR_F ('0010'B),
660 RSL_IPA_CODEC_HR ('0011'B),
661 RSL_IPA_CODEC_AMR_H ('0101'B),
662 RSL_IPA_CODEC_RTP_PT ('1111'B)
663 } with { variant "FIELDLENGTH(4)" }
664
665 type record RSL_IE_IPA_SpeechMode {
666 BIT2 reserved,
667 RSL_IPA_SpeechMode mode,
668 RSL_IPA_Codec codec
669 }
670
Harald Welte0472ab42018-03-12 15:02:26 +0100671 /* 9.3.20 */
672 type enumerated RSL_IE_ReleaseMode {
673 RSL_REL_MODE_NORMAL ('00'B),
674 REL_REL_MODE_LOCAL ('01'B)
675 }
676
Harald Welte643e2a62017-11-27 15:03:18 +0100677 /* union of all IE bodies */
678 type union RSL_IE_Body {
679 RslChannelNr chan_nr,
680 RslLinkId link_id,
Harald Welte15bb5b52017-12-07 17:52:04 +0100681 RSL_L16V l3_info,
Harald Welte643e2a62017-11-27 15:03:18 +0100682 RSL_LV rlm_cause,
Harald Welte0472ab42018-03-12 15:02:26 +0100683 RSL_IE_ReleaseMode release_mode,
Harald Welte643e2a62017-11-27 15:03:18 +0100684 RSL_IE_ActivationType act_type,
685 RSL_IE_ChannelMode chan_mode,
686 uint8_t handover_ref,
687 RSL_IE_BS_Power bs_power,
688 RSL_IE_MS_Power ms_power,
689 uint8_t timing_adv,
690 RSL_IE_MultirateCtrl multirate_ctrl,
691 RSL_IE_FrameNumber frame_nr,
692 RSL_IE_Cause cause,
693 uint8_t access_delay,
Harald Welted5f521e2017-12-07 17:53:06 +0100694 RSL_IE_RachLoad rach_load,
Harald Welte643e2a62017-11-27 15:03:18 +0100695 uint8_t meas_res_nr,
Harald Welte2691adf2018-02-22 17:32:39 +0100696 uint8_t ms_timing_offset,
697 RSL_IE_UplinkMeas uplink_meas,
Harald Welte643e2a62017-11-27 15:03:18 +0100698 RSL_IE_L1Info l1_info,
699 RSL_IE_SysinfoType sysinfo_type,
700 uint16_t paging_load,
701 uint8_t paging_group,
702 RSL_IE_ChanNeeded chan_needed,
Harald Weltecc373202018-09-10 10:28:21 +0200703 RSL_IE_CbCommandType cb_cmd_type,
704 RSL_LV smscb_message,
705
Harald Welte643e2a62017-11-27 15:03:18 +0100706 RSL_IE_StartingTime starting_time,
Harald Welte73cd2712017-12-17 00:44:52 +0100707 RSL_IE_EncryptionInfo encr_info,
Harald Welte643e2a62017-11-27 15:03:18 +0100708 RSL_IE_RequestRef req_ref,
709 RSL_LV full_imm_ass_info,
Harald Weltefff69302017-12-07 17:53:42 +0100710 RSL_LV ms_identity,
Harald Welte643e2a62017-11-27 15:03:18 +0100711
Harald Welte9958a4d2017-12-14 21:21:33 +0100712 uint16_t ipa_conn_id,
713 uint16_t ipa_local_port,
714 uint16_t ipa_remote_port,
715 uint32_t ipa_local_ip,
716 uint32_t ipa_remote_ip,
717 uint8_t ipa_rtp_pt,
718 uint8_t ipa_rtp_pt2,
719 RSL_IE_IPA_ConnectionStats ipa_stats,
720 RSL_IE_IPA_SpeechMode ipa_speech_mode,
721
Harald Welte643e2a62017-11-27 15:03:18 +0100722 RSL_LV other
723 }
724
725 type record RSL_IE {
726 RSL_IE_Type iei,
727 RSL_IE_Body body
728 } with { variant (body) "CROSSTAG(
729 chan_nr, iei = RSL_IE_CHAN_NR;
730 link_id, iei = RSL_IE_LINK_IDENT;
731 l3_info, iei = RSL_IE_L3_INFO;
732 rlm_cause, iei = RSL_IE_RLM_CAUSE;
733 release_mode, iei = RSL_IE_RELEASE_MODE;
734 act_type, iei = RSL_IE_ACT_TYPE;
735 chan_mode, iei = RSL_IE_CHAN_MODE;
736 handover_ref, iei = RSL_IE_HANDO_REF;
737 bs_power, iei = RSL_IE_BS_POWER;
738 ms_power, iei = RSL_IE_MS_POWER;
739 timing_adv, iei = RSL_IE_TIMING_ADVANCE;
740 multirate_ctrl, iei = RSL_IE_MR_CONTROL;
741
742 frame_nr, iei = RSL_IE_FRAME_NUMBER;
743 cause, iei = RSL_IE_CAUSE;
744 access_delay, iei = RSL_IE_ACCESS_DELAY;
Harald Welted5f521e2017-12-07 17:53:06 +0100745 rach_load, iei = RSL_IE_RACH_LOAD;
Harald Welte643e2a62017-11-27 15:03:18 +0100746 meas_res_nr, iei = RSL_IE_MEAS_RES_NR;
Harald Welte2691adf2018-02-22 17:32:39 +0100747 ms_timing_offset, iei = RSL_IE_MS_TIMING_OFFSET;
748 uplink_meas, iei = RSL_IE_UPLINK_MEAS;
Harald Welte643e2a62017-11-27 15:03:18 +0100749 l1_info, iei = RSL_IE_L1_INFO;
750 sysinfo_type, iei = RSL_IE_SYSINFO_TYPE;
751 paging_load, iei = RSL_IE_PAGING_LOAD;
752 paging_group, iei = RSL_IE_PAGING_GROUP;
753 chan_needed, iei = RSL_IE_CHAN_NEEDED;
Harald Weltecc373202018-09-10 10:28:21 +0200754 cb_cmd_type, iei = RSL_IE_CB_CMD_TYPE;
755 smscb_message, iei = RSL_IE_SMSCB_MSG;
Harald Welte643e2a62017-11-27 15:03:18 +0100756 starting_time, iei = RSL_IE_STARTNG_TIME;
Harald Welte73cd2712017-12-17 00:44:52 +0100757 encr_info, iei = RSL_IE_ENCR_INFO;
Harald Welte643e2a62017-11-27 15:03:18 +0100758
759 req_ref, iei = RSL_IE_REQ_REFERENCE;
Harald Weltefff69302017-12-07 17:53:42 +0100760 full_imm_ass_info, iei = RSL_IE_FULL_IMM_ASS_INFO;
761 ms_identity, iei = RSL_IE_MS_IDENTITY;
762 other, iei = RSL_IE_FULL_BCCH_INFO;
Harald Welte643e2a62017-11-27 15:03:18 +0100763
Harald Welte9958a4d2017-12-14 21:21:33 +0100764 ipa_conn_id, iei = RSL_IE_IPAC_CONN_ID;
765 ipa_remote_ip, iei = RSL_IE_IPAC_REMOTE_IP;
766 ipa_remote_port, iei = RSL_IE_IPAC_REMOTE_PORT;
767 ipa_local_ip, iei = RSL_IE_IPAC_LOCAL_IP;
768 ipa_local_port, iei = RSL_IE_IPAC_LOCAL_PORT;
769 ipa_rtp_pt, iei = RSL_IE_IPAC_RTP_PAYLOAD;
770 ipa_rtp_pt2, iei = RSL_IE_IPAC_RTP_PAYLOAD2;
771 ipa_stats, iei = RSL_IE_IPAC_CONN_STAT;
772 ipa_speech_mode, iei = RSL_IE_IPAC_SPEECH_MODE;
773
Harald Welte643e2a62017-11-27 15:03:18 +0100774 other, OTHERWISE;
775 )" };
776
Harald Welte735dd072017-12-12 14:55:17 +0100777 /* For some reason the TTCN-3 RAW codec cannot automatically figure out the IEI
778 * that it needs to set for a given union-choice (body). So we have to explicitly
779 * specify the IEI by the caller :( */
Harald Welteefa7d912018-04-18 23:22:15 +0200780 template (value) RSL_IE t_RSL_IE(RSL_IE_Type iei, template (value) RSL_IE_Body body) := {
Harald Welte735dd072017-12-12 14:55:17 +0100781 iei := iei,
Harald Welte643e2a62017-11-27 15:03:18 +0100782 body := body
783 }
784
Harald Weltec2877752017-12-07 17:54:35 +0100785 template RSL_IE tr_RSL_IE(template RSL_IE_Body body) := {
786 iei := ?, /* overwritten? */
787 body := body
788 }
789
790
Harald Welte643e2a62017-11-27 15:03:18 +0100791 type record of RSL_IE RSL_IE_List;
792
793 type record RSL_Message {
794 RSL_MessageDiscriminator msg_disc,
795 RSL_MessageType msg_type,
796 RSL_IE_List ies optional
797 }
798
799 external function enc_RSL_Message(in RSL_Message msg) return octetstring
800 with { extension "prototype(convert) encode(RAW)" };
801 external function dec_RSL_Message(in octetstring stream) return RSL_Message
802 with { extension "prototype(convert) decode(RAW)" };
803
Harald Weltebc330be2017-12-09 00:56:36 +0100804 template RSL_Message tr_RSL_MsgDiscType(template RSL_MessageDiscriminator m_disc,
Harald Welte643e2a62017-11-27 15:03:18 +0100805 RSL_MessageType m_type) := {
806 msg_disc := m_disc,
807 msg_type := m_type,
808 ies := *
809 }
810
Harald Welteefa7d912018-04-18 23:22:15 +0200811 template (value) RSL_Message ts_RSL_MsgDiscType(template (value) RSL_MessageDiscriminator m_disc,
812 template (value) RSL_MessageType msg_type,
813 template (omit) RSL_IE_List ies := omit) := {
Harald Welte4a267362017-12-09 17:49:32 +0100814 msg_disc := m_disc,
815 msg_type := msg_type,
816 ies := ies
817 }
818
Harald Weltebc330be2017-12-09 00:56:36 +0100819template RSL_Message tr_RSL_MsgType(template RSL_MessageType msg_type) := {
820 msg_disc := ?,
821 msg_type := msg_type,
822 ies := *
823}
824
825/* Common Channel Management */
826template RSL_Message tr_RSL_MsgTypeC(template RSL_MessageType msg_type) modifies tr_RSL_MsgType := {
827 msg_disc := { RSL_MDISC_CCHAN, ? }
828}
829
830/* RLL */
831template RSL_Message tr_RSL_MsgTypeR(template RSL_MessageType msg_type) modifies tr_RSL_MsgType := {
832 msg_disc := { RSL_MDISC_RLL, true }
833}
834
835/* Dedicated Channel Management */
836template RSL_Message tr_RSL_MsgTypeD(template RSL_MessageType msg_type) modifies tr_RSL_MsgType := {
837 msg_disc := { RSL_MDISC_DCHAN, ? }
838}
839
840/* Dedicated Channel Management */
841template RSL_Message tr_RSL_MsgTypeT(template RSL_MessageType msg_type) modifies tr_RSL_MsgType := {
842 msg_disc := { RSL_MDISC_TRX_MGMT, ? }
843}
844
845
846/* dedicated channel or RLL */
847template RSL_Message tr_RSL_MsgTypeDR(template RSL_MessageType msg_type) modifies tr_RSL_MsgType := {
Harald Weltee5408222018-01-29 21:57:58 +0100848 msg_disc := ({RSL_MDISC_DCHAN,?}, {RSL_MDISC_RLL,?}, {RSL_MDISC_IPACCESS,false})
Harald Weltebc330be2017-12-09 00:56:36 +0100849}
850
851
Harald Welte643e2a62017-11-27 15:03:18 +0100852 /* 8.3.1 BSC -> BTS */
Harald Welteefa7d912018-04-18 23:22:15 +0200853 template (value) RSL_Message ts_RSL_DATA_REQ(template (value) RslChannelNr chan_nr,
854 template (value) RslLinkId link_id,
855 octetstring l3_info) := {
Harald Welte643e2a62017-11-27 15:03:18 +0100856 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_RLL, true),
857 msg_type := RSL_MT_DATA_REQ,
858 ies :={
Harald Welte735dd072017-12-12 14:55:17 +0100859 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
860 t_RSL_IE(RSL_IE_LINK_IDENT, RSL_IE_Body:{link_id := link_id}),
861 t_RSL_IE(RSL_IE_L3_INFO, RSL_IE_Body:{l3_info := ts_RSL_L16V(l3_info)})
Harald Welte643e2a62017-11-27 15:03:18 +0100862 }
863 }
864
Harald Welte7794d5b2017-12-16 23:00:20 +0100865 template RSL_Message tr_RSL_DATA_REQ(template RslChannelNr chan_nr :=?,
866 template RslLinkId link_id := ?,
867 template octetstring l3_info := ?) := {
Harald Welteefa7d912018-04-18 23:22:15 +0200868 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_RLL, true),
Harald Welte7794d5b2017-12-16 23:00:20 +0100869 msg_type := RSL_MT_DATA_REQ,
870 ies :={
871 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
872 tr_RSL_IE(RSL_IE_Body:{link_id := link_id}),
873 tr_RSL_IE(RSL_IE_Body:{l3_info := tr_RSL_L16V(l3_info)})
874 }
875 }
876
877
Harald Welte643e2a62017-11-27 15:03:18 +0100878 /* 8.3.2 BTS -> BSC */
Harald Welteefa7d912018-04-18 23:22:15 +0200879 template (value) RSL_Message ts_RSL_DATA_IND(template (value) RslChannelNr chan_nr,
880 template (value) RslLinkId link_id,
881 octetstring l3_info) := {
Harald Welte643e2a62017-11-27 15:03:18 +0100882 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_RLL, true),
883 msg_type := RSL_MT_DATA_IND,
884 ies :={
Harald Welte735dd072017-12-12 14:55:17 +0100885 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
886 t_RSL_IE(RSL_IE_LINK_IDENT, RSL_IE_Body:{link_id := link_id}),
887 t_RSL_IE(RSL_IE_L3_INFO, RSL_IE_Body:{l3_info := ts_RSL_L16V(l3_info)})
Harald Welte643e2a62017-11-27 15:03:18 +0100888 }
889 }
Harald Welte9abd1282018-02-19 19:18:17 +0100890 template RSL_Message tr_RSL_DATA_IND(template RslChannelNr chan_nr, template RslLinkId link_id,
891 template octetstring l3_info := ?) := {
Harald Welteefa7d912018-04-18 23:22:15 +0200892 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_RLL, true),
Harald Welte9abd1282018-02-19 19:18:17 +0100893 msg_type := RSL_MT_DATA_IND,
894 ies :={
895 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
896 tr_RSL_IE(RSL_IE_Body:{link_id := link_id}),
897 tr_RSL_IE(RSL_IE_Body:{l3_info := tr_RSL_L16V(l3_info)})
898 }
899 }
Harald Welte643e2a62017-11-27 15:03:18 +0100900
901 /* 8.3.3 BTS -> BSC */
Harald Welteefa7d912018-04-18 23:22:15 +0200902 template (value) RSL_Message ts_RSL_ERROR_IND(template (value) RslChannelNr chan_nr,
903 template (value) RslLinkId link_id, RSL_Cause cause) := {
Harald Welte643e2a62017-11-27 15:03:18 +0100904 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_RLL, false),
905 msg_type := RSL_MT_ERROR_IND,
906 ies :={
Harald Welte735dd072017-12-12 14:55:17 +0100907 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
908 t_RSL_IE(RSL_IE_LINK_IDENT, RSL_IE_Body:{link_id := link_id}),
909 t_RSL_IE(RSL_IE_CAUSE, RSL_IE_Body:{cause := ts_RSL_IE_Cause(cause)})
Harald Welte643e2a62017-11-27 15:03:18 +0100910 }
911 }
Harald Welte9abd1282018-02-19 19:18:17 +0100912 template RSL_Message tr_RSL_ERROR_IND(template RslChannelNr chan_nr, template RslLinkId link_id,
913 template RSL_Cause cause := ?) := {
Harald Welteefa7d912018-04-18 23:22:15 +0200914 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_RLL, false),
Harald Welte9abd1282018-02-19 19:18:17 +0100915 msg_type := RSL_MT_ERROR_IND,
916 ies :={
917 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
918 tr_RSL_IE(RSL_IE_Body:{link_id := link_id}),
919 tr_RSL_IE(RSL_IE_Body:{cause := tr_RSL_IE_Cause(cause)})
920 }
921 }
Harald Welte643e2a62017-11-27 15:03:18 +0100922
Harald Welteefa7d912018-04-18 23:22:15 +0200923 /* 8.3.4 BTS <- BSC */
924 template (value) RSL_Message ts_RSL_EST_REQ(template (value) RslChannelNr chan_nr,
925 template (value) RslLinkId link_id) := {
926 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_RLL, false),
927 msg_type := RSL_MT_EST_REQ,
928 ies := {
929 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
930 t_RSL_IE(RSL_IE_LINK_IDENT, RSL_IE_Body:{link_id := link_id})
931 }
932 }
933 template RSL_Message tr_RSL_EST_REQ(template RslChannelNr chan_nr, template RslLinkId link_id) := {
934 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_RLL, false),
935 msg_type := RSL_MT_EST_REQ,
936 ies := {
937 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
938 tr_RSL_IE(RSL_IE_Body:{link_id := link_id})
939 }
940 }
941
942 /* 8.3.5 BTS -> BSC */
943 template (value) RSL_Message ts_RSL_EST_CONF(template (value) RslChannelNr chan_nr,
944 template (value) RslLinkId link_id) := {
945 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_RLL, false),
946 msg_type := RSL_MT_EST_CONF,
947 ies := {
948 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
949 t_RSL_IE(RSL_IE_LINK_IDENT, RSL_IE_Body:{link_id := link_id})
950 }
951 }
952 template RSL_Message tr_RSL_EST_CONF(template RslChannelNr chan_nr, template RslLinkId link_id) := {
953 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_RLL, false),
954 msg_type := RSL_MT_EST_CONF,
955 ies := {
956 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
957 tr_RSL_IE(RSL_IE_Body:{link_id := link_id})
958 }
959 }
960
Harald Welte643e2a62017-11-27 15:03:18 +0100961 /* 8.3.6 BTS -> BSC */
Harald Welteefa7d912018-04-18 23:22:15 +0200962 template (value) RSL_Message ts_RSL_EST_IND(template (value) RslChannelNr chan_nr,
963 template (value) RslLinkId link_id,
964 octetstring l3_info) := {
Harald Welte643e2a62017-11-27 15:03:18 +0100965 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_RLL, false),
966 msg_type := RSL_MT_EST_IND,
967 ies := {
Harald Welte735dd072017-12-12 14:55:17 +0100968 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
969 t_RSL_IE(RSL_IE_LINK_IDENT, RSL_IE_Body:{link_id := link_id}),
970 t_RSL_IE(RSL_IE_L3_INFO, RSL_IE_Body:{l3_info := ts_RSL_L16V(l3_info)})
Harald Welte643e2a62017-11-27 15:03:18 +0100971 }
972 }
Harald Welte9abd1282018-02-19 19:18:17 +0100973 template RSL_Message tr_RSL_EST_IND(template RslChannelNr chan_nr, template RslLinkId link_id,
974 template octetstring l3_info := ?) := {
Harald Welteefa7d912018-04-18 23:22:15 +0200975 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_RLL, false),
Harald Welte9abd1282018-02-19 19:18:17 +0100976 msg_type := RSL_MT_EST_IND,
977 ies := {
978 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
979 tr_RSL_IE(RSL_IE_Body:{link_id := link_id}),
980 tr_RSL_IE(RSL_IE_Body:{l3_info := tr_RSL_L16V(l3_info)})
981 }
982 }
Harald Welte0472ab42018-03-12 15:02:26 +0100983 template RSL_Message tr_RSL_EST_IND_NOL3(template RslChannelNr chan_nr, template RslLinkId link_id) :=
984{
985 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_RLL, false),
986 msg_type := RSL_MT_EST_IND,
987 ies := {
988 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
989 tr_RSL_IE(RSL_IE_Body:{link_id := link_id})
990 }
991 }
992
Harald Welte643e2a62017-11-27 15:03:18 +0100993
994 /* 8.3.7 BSC -> BTS */
Harald Welteefa7d912018-04-18 23:22:15 +0200995 template (value) RSL_Message ts_RSL_REL_REQ(template (value) RslChannelNr chan_nr,
Harald Welte0472ab42018-03-12 15:02:26 +0100996 template (value) RslLinkId link_id,
997 template (value) RSL_IE_ReleaseMode rel_mode := RSL_REL_MODE_NORMAL) := {
Harald Welte643e2a62017-11-27 15:03:18 +0100998 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_RLL, false),
999 msg_type := RSL_MT_REL_REQ,
1000 ies :={
Harald Welte735dd072017-12-12 14:55:17 +01001001 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
Harald Welte0472ab42018-03-12 15:02:26 +01001002 t_RSL_IE(RSL_IE_LINK_IDENT, RSL_IE_Body:{link_id := link_id}),
1003 t_RSL_IE(RSL_IE_RELEASE_MODE, RSL_IE_Body:{release_mode := rel_mode})
Harald Welte643e2a62017-11-27 15:03:18 +01001004 }
1005 }
Harald Weltee8a5ab12017-12-09 22:34:57 +01001006 template RSL_Message tr_RSL_REL_REQ(template RslChannelNr chan_nr,
Harald Welte0472ab42018-03-12 15:02:26 +01001007 template RslLinkId link_id,
1008 template RSL_IE_ReleaseMode rel_mode := ?) := {
Harald Welteefa7d912018-04-18 23:22:15 +02001009 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_RLL, false),
Harald Weltee8a5ab12017-12-09 22:34:57 +01001010 msg_type := RSL_MT_REL_REQ,
1011 ies :={
1012 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
1013 tr_RSL_IE(RSL_IE_Body:{link_id := link_id}),
Harald Welte0472ab42018-03-12 15:02:26 +01001014 tr_RSL_IE(RSL_IE_Body:{release_mode := rel_mode})
Harald Weltee8a5ab12017-12-09 22:34:57 +01001015 }
1016 }
Harald Welte643e2a62017-11-27 15:03:18 +01001017
1018 /* 8.3.8 BTS -> BSC */
Harald Welteefa7d912018-04-18 23:22:15 +02001019 template (value) RSL_Message ts_RSL_REL_CONF(template (value) RslChannelNr chan_nr,
1020 template (value) RslLinkId link_id) := {
Harald Welte643e2a62017-11-27 15:03:18 +01001021 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_RLL, false),
1022 msg_type := RSL_MT_REL_CONF,
1023 ies :={
Harald Welte735dd072017-12-12 14:55:17 +01001024 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
1025 t_RSL_IE(RSL_IE_LINK_IDENT, RSL_IE_Body:{link_id := link_id})
Harald Welte643e2a62017-11-27 15:03:18 +01001026 }
1027 }
Harald Welte9abd1282018-02-19 19:18:17 +01001028 template RSL_Message tr_RSL_REL_CONF(template RslChannelNr chan_nr, template RslLinkId link_id) := {
Harald Welteefa7d912018-04-18 23:22:15 +02001029 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_RLL, false),
Harald Welte9abd1282018-02-19 19:18:17 +01001030 msg_type := RSL_MT_REL_CONF,
1031 ies :={
1032 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
1033 tr_RSL_IE(RSL_IE_Body:{link_id := link_id})
1034 }
1035 }
Harald Welte643e2a62017-11-27 15:03:18 +01001036
1037 /* 8.3.9 BTS -> BSC */
Harald Welteefa7d912018-04-18 23:22:15 +02001038 template (value) RSL_Message ts_RSL_REL_IND(template (value) RslChannelNr chan_nr,
1039 template (value) RslLinkId link_id) := {
Harald Welte643e2a62017-11-27 15:03:18 +01001040 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_RLL, false),
1041 msg_type := RSL_MT_REL_IND,
1042 ies :={
Harald Welte735dd072017-12-12 14:55:17 +01001043 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
1044 t_RSL_IE(RSL_IE_LINK_IDENT, RSL_IE_Body:{link_id := link_id})
Harald Welte643e2a62017-11-27 15:03:18 +01001045 }
1046 }
Harald Welte9abd1282018-02-19 19:18:17 +01001047 template RSL_Message tr_RSL_REL_IND(template RslChannelNr chan_nr, template RslLinkId link_id) := {
Harald Welteefa7d912018-04-18 23:22:15 +02001048 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_RLL, false),
Harald Welte9abd1282018-02-19 19:18:17 +01001049 msg_type := RSL_MT_REL_IND,
1050 ies :={
1051 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
1052 tr_RSL_IE(RSL_IE_Body:{link_id := link_id})
1053 }
1054 }
Harald Welte643e2a62017-11-27 15:03:18 +01001055
1056 /* 8.3.10 BSC -> BTS */
Harald Welteefa7d912018-04-18 23:22:15 +02001057 template (value) RSL_Message ts_RSL_UNITDATA_REQ(template (value) RslChannelNr chan_nr,
1058 template (value) RslLinkId link_id,
1059 octetstring l3_info)
Harald Welte643e2a62017-11-27 15:03:18 +01001060 modifies ts_RSL_DATA_REQ := {
1061 msg_type := RSL_MT_UNIT_DATA_REQ
1062 }
Harald Welte0472ab42018-03-12 15:02:26 +01001063 template RSL_Message tr_RSL_UNITDATA_REQ(template RslChannelNr chan_nr,
1064 template RslLinkId link_id,
Vadim Yanitskiy8f98d3f2018-10-03 17:58:10 +07001065 template octetstring l3_info := ?)
Harald Welte0472ab42018-03-12 15:02:26 +01001066 modifies tr_RSL_DATA_REQ := {
1067 msg_type := RSL_MT_UNIT_DATA_REQ
1068 }
1069
Harald Welte643e2a62017-11-27 15:03:18 +01001070
1071 /* 8.3.11 BTS -> BSC */
Harald Welteefa7d912018-04-18 23:22:15 +02001072 template (value) RSL_Message ts_RSL_UNITDATA_IND(template (value) RslChannelNr chan_nr,
1073 template (value) RslLinkId link_id,
1074 octetstring l3_info)
Harald Welte643e2a62017-11-27 15:03:18 +01001075 modifies ts_RSL_DATA_IND := {
1076 msg_type := RSL_MT_UNIT_DATA_IND
1077 }
Harald Welte0472ab42018-03-12 15:02:26 +01001078 template RSL_Message tr_RSL_UNITDATA_IND(template RslChannelNr chan_nr,
Vadim Yanitskiyfabe0f22018-10-03 17:51:47 +07001079 template RslLinkId link_id,
Vadim Yanitskiy8f98d3f2018-10-03 17:58:10 +07001080 template octetstring l3_info := ?)
Harald Welte0472ab42018-03-12 15:02:26 +01001081 modifies tr_RSL_DATA_IND := {
1082 msg_type := RSL_MT_UNIT_DATA_IND
1083 }
1084
1085
Harald Welte643e2a62017-11-27 15:03:18 +01001086
1087
1088 /* DEDICATED CANNEL MANAGEMENT MESSAGES */
1089
1090 /* 8.4.1 BSC -> BTS */
Harald Welteefa7d912018-04-18 23:22:15 +02001091 template (value) RSL_Message ts_RSL_CHAN_ACT(template (value) RslChannelNr chan_nr,
1092 template (value) RSL_IE_ChannelMode mode) := {
Harald Welte643e2a62017-11-27 15:03:18 +01001093 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
1094 msg_type := RSL_MT_CHAN_ACTIV,
1095 ies :={
Harald Welte735dd072017-12-12 14:55:17 +01001096 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
1097 t_RSL_IE(RSL_IE_ACT_TYPE, RSL_IE_Body:{act_type := t_RSL_IE_ActType}),
1098 t_RSL_IE(RSL_IE_CHAN_MODE, RSL_IE_Body:{chan_mode := mode})
Harald Welte643e2a62017-11-27 15:03:18 +01001099 /* lots of optional IEs */
1100 }
1101 }
Harald Welte94e0c342018-04-07 11:33:23 +02001102 template RSL_Message tr_RSL_CHAN_ACT(template RslChannelNr chan_nr,
1103 template RSL_IE_ChannelMode mode) := {
Harald Welteefa7d912018-04-18 23:22:15 +02001104 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
Harald Welte94e0c342018-04-07 11:33:23 +02001105 msg_type := RSL_MT_CHAN_ACTIV,
1106 ies :={
1107 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
1108 tr_RSL_IE(RSL_IE_Body:{act_type := t_RSL_IE_ActType}),
1109 tr_RSL_IE(RSL_IE_Body:{chan_mode := mode}),
1110 /* lots of optional IEs */
1111 *
1112 }
1113 }
1114 template RSL_Message tr_RSL_CHAN_ACT_PDCH(template RslChannelNr chan_nr,
1115 template RSL_IE_ChannelMode mode) := {
Harald Welteefa7d912018-04-18 23:22:15 +02001116 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
Harald Welte94e0c342018-04-07 11:33:23 +02001117 msg_type := RSL_MT_CHAN_ACTIV,
1118 ies :={
1119 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
1120 tr_RSL_IE(RSL_IE_Body:{act_type := t_RSL_IE_ActType_PDCH}),
1121 /* lots of optional IEs */
1122 *
1123 }
1124 }
1125
Harald Welte643e2a62017-11-27 15:03:18 +01001126
1127 /* 8.4.2 BTS -> BSC */
Harald Welteefa7d912018-04-18 23:22:15 +02001128 template (value) RSL_Message ts_RSL_CHAN_ACT_ACK(template (value) RslChannelNr chan_nr,
1129 GsmFrameNumber fn) := {
Harald Welte643e2a62017-11-27 15:03:18 +01001130 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
1131 msg_type := RSL_MT_CHAN_ACTIV_ACK,
1132 ies :={
Harald Welte735dd072017-12-12 14:55:17 +01001133 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
1134 t_RSL_IE(RSL_IE_FRAME_NUMBER, RSL_IE_Body:{frame_nr := ts_RSL_IE_FrameNumber(fn)})
Harald Welte643e2a62017-11-27 15:03:18 +01001135 }
1136 }
Harald Welte9abd1282018-02-19 19:18:17 +01001137 template RSL_Message tr_RSL_CHAN_ACT_ACK(template RslChannelNr chan_nr) := {
Harald Welteefa7d912018-04-18 23:22:15 +02001138 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
Harald Welte9abd1282018-02-19 19:18:17 +01001139 msg_type := RSL_MT_CHAN_ACTIV_ACK,
1140 ies := {
1141 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
1142 tr_RSL_IE(RSL_IE_Body:{frame_nr := ?})
1143 }
1144 }
Harald Welte643e2a62017-11-27 15:03:18 +01001145
1146 /* 8.4.3 BTS -> BSC */
Harald Welteefa7d912018-04-18 23:22:15 +02001147 template (value) RSL_Message ts_RSL_CHAN_ACT_NACK(template (value) RslChannelNr chan_nr,
1148 RSL_Cause cause) := {
Harald Welte643e2a62017-11-27 15:03:18 +01001149 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
1150 msg_type := RSL_MT_CHAN_ACTIV_NACK,
1151 ies :={
Harald Welte735dd072017-12-12 14:55:17 +01001152 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
1153 t_RSL_IE(RSL_IE_CAUSE, RSL_IE_Body:{cause := ts_RSL_IE_Cause(cause)})
Harald Welte643e2a62017-11-27 15:03:18 +01001154 }
1155 }
Harald Welte9abd1282018-02-19 19:18:17 +01001156 template RSL_Message tr_RSL_CHAN_ACT_NACK(template RslChannelNr chan_nr,
1157 template RSL_Cause cause := ?) := {
Harald Welteefa7d912018-04-18 23:22:15 +02001158 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
Harald Welte9abd1282018-02-19 19:18:17 +01001159 msg_type := RSL_MT_CHAN_ACTIV_NACK,
1160 ies := {
1161 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
1162 tr_RSL_IE(RSL_IE_Body:{cause := ?})
1163 }
1164 }
Harald Welte643e2a62017-11-27 15:03:18 +01001165
1166 /* 8.4.4 BTS -> BSC */
Harald Welteefa7d912018-04-18 23:22:15 +02001167 template (value) RSL_Message ts_RSL_CONN_FAIL_IND(RslChannelNr chan_nr, RSL_Cause cause) := {
Harald Welte643e2a62017-11-27 15:03:18 +01001168 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
1169 msg_type := RSL_MT_CONN_FAIL,
1170 ies :={
Harald Welte735dd072017-12-12 14:55:17 +01001171 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
1172 t_RSL_IE(RSL_IE_CAUSE, RSL_IE_Body:{cause := ts_RSL_IE_Cause(cause)})
Harald Welte643e2a62017-11-27 15:03:18 +01001173 }
1174 }
Harald Welte9abd1282018-02-19 19:18:17 +01001175 template RSL_Message tr_RSL_CONN_FAIL_IND(template RslChannelNr chan_nr,
1176 template RSL_Cause cause := ?) := {
1177 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
1178 msg_type := RSL_MT_CONN_FAIL,
1179 ies :={
1180 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
1181 tr_RSL_IE(RSL_IE_Body:{cause := tr_RSL_IE_Cause(cause)})
1182 }
1183 }
Harald Welte643e2a62017-11-27 15:03:18 +01001184
Harald Weltee8a5ab12017-12-09 22:34:57 +01001185 /* 8.4.5 BSC -> BTS */
1186 template RSL_Message tr_RSL_DEACT_SACCH(template RslChannelNr chan_nr) := {
1187 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
1188 msg_type := RSL_MT_DEACTIVATE_SACCH,
1189 ies := {
1190 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr})
1191 }
1192 }
Harald Welteefa7d912018-04-18 23:22:15 +02001193 template (value) RSL_Message ts_RSL_DEACT_SACCH(template (value) RslChannelNr chan_nr) := {
Harald Welte9abd1282018-02-19 19:18:17 +01001194 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
1195 msg_type := RSL_MT_DEACTIVATE_SACCH,
1196 ies := {
1197 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr})
1198 }
1199 }
1200
Harald Weltee8a5ab12017-12-09 22:34:57 +01001201
Harald Welte73cd2712017-12-17 00:44:52 +01001202 /* 8.4.6 BSC ->BTS */
1203 template RSL_Message tr_RSL_ENCR_CMD(template RslChannelNr chan_nr,
1204 template RslLinkId link_id := ?,
Harald Weltee613f962018-04-18 22:38:16 +02001205 template RSL_AlgId alg := ?,
Harald Welte73cd2712017-12-17 00:44:52 +01001206 template octetstring key := ?,
1207 template octetstring l3_info := ?) := {
Harald Welteefa7d912018-04-18 23:22:15 +02001208 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
Harald Welte73cd2712017-12-17 00:44:52 +01001209 msg_type := RSL_MT_ENCR_CMD,
1210 ies := {
1211 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
1212 tr_RSL_IE(RSL_IE_Body:{encr_info := tr_RSL_IE_EncrInfo(alg, key)}),
1213 tr_RSL_IE(RSL_IE_Body:{link_id := link_id}),
1214 tr_RSL_IE(RSL_IE_Body:{l3_info := tr_RSL_L16V(l3_info)})
1215 }
1216 }
Harald Welteefa7d912018-04-18 23:22:15 +02001217 template (value) RSL_Message ts_RSL_ENCR_CMD(template (value) RslChannelNr chan_nr,
1218 template (value) RslLinkId link_id,
Harald Weltee613f962018-04-18 22:38:16 +02001219 template (value) RSL_AlgId alg, octetstring key,
Harald Welteefa7d912018-04-18 23:22:15 +02001220 octetstring l3_info) := {
Harald Welte9abd1282018-02-19 19:18:17 +01001221 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
1222 msg_type := RSL_MT_ENCR_CMD,
1223 ies := {
1224 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
Harald Welteefa7d912018-04-18 23:22:15 +02001225 t_RSL_IE(RSL_IE_ENCR_INFO, RSL_IE_Body:{encr_info := ts_RSL_IE_EncrInfo(alg, key)}),
Harald Welte9abd1282018-02-19 19:18:17 +01001226 t_RSL_IE(RSL_IE_LINK_IDENT, RSL_IE_Body:{link_id := link_id}),
Harald Welteefa7d912018-04-18 23:22:15 +02001227 t_RSL_IE(RSL_IE_L3_INFO, RSL_IE_Body:{l3_info := ts_RSL_L16V(l3_info)})
Harald Welte9abd1282018-02-19 19:18:17 +01001228 }
1229 }
Harald Welte73cd2712017-12-17 00:44:52 +01001230
Harald Welte2691adf2018-02-22 17:32:39 +01001231 template RSL_Message tr_RSL_MEAS_RES(template RslChannelNr chan_nr,
1232 template uint8_t meas_res_nr := ?,
1233 template RSL_IE_UplinkMeas ul_meas := ?,
1234 template RSL_IE_BS_Power bs_power := ?) := {
Harald Welteefa7d912018-04-18 23:22:15 +02001235 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
Harald Welte2691adf2018-02-22 17:32:39 +01001236 msg_type := RSL_MT_MEAS_RES,
1237 ies := {
1238 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
1239 tr_RSL_IE(RSL_IE_Body:{meas_res_nr := meas_res_nr}),
1240 tr_RSL_IE(RSL_IE_Body:{uplink_meas := ul_meas}),
1241 tr_RSL_IE(RSL_IE_Body:{bs_power := bs_power}),
1242 *
1243 }
1244 }
1245
Harald Welte39b47be2018-02-23 18:58:48 +01001246 /* Osmocom specific template, require lots of optional fields to be present */
1247 template RSL_Message tr_RSL_MEAS_RES_OSMO(template RslChannelNr chan_nr,
1248 template uint8_t meas_res_nr := ?,
1249 template RSL_IE_UplinkMeas ul_meas := ?,
1250 template RSL_IE_BS_Power bs_power := ?,
1251 template RSL_IE_L1Info l1_info := ?,
1252 template octetstring l3_info := ?,
1253 template uint8_t ms_to := ?) := {
Harald Welteefa7d912018-04-18 23:22:15 +02001254 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
Harald Welte39b47be2018-02-23 18:58:48 +01001255 msg_type := RSL_MT_MEAS_RES,
1256 ies := {
1257 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
1258 tr_RSL_IE(RSL_IE_Body:{meas_res_nr := meas_res_nr}),
1259 tr_RSL_IE(RSL_IE_Body:{uplink_meas := ul_meas}),
1260 tr_RSL_IE(RSL_IE_Body:{bs_power := bs_power}),
1261 tr_RSL_IE(RSL_IE_Body:{l1_info := l1_info}),
1262 tr_RSL_IE(RSL_IE_Body:{l3_info := tr_RSL_L16V(l3_info)}),
1263 tr_RSL_IE(RSL_IE_Body:{ms_timing_offset := ms_to})
1264 }
1265 }
1266
1267
Harald Welte7794d5b2017-12-16 23:00:20 +01001268 /* 8.4.10 BTS -> BSC */
Harald Welteefa7d912018-04-18 23:22:15 +02001269 template (value) RSL_Message ts_RSL_MODE_MODIFY_ACK(template (value) RslChannelNr chan_nr) := {
Harald Welte7794d5b2017-12-16 23:00:20 +01001270 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
1271 msg_type := RSL_MT_MODE_MODIFY_ACK,
1272 ies := {
1273 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr})
1274 }
1275 }
Harald Welte9abd1282018-02-19 19:18:17 +01001276 template RSL_Message tr_RSL_MODE_MODIFY_ACK(template RslChannelNr chan_nr) := {
Harald Welteefa7d912018-04-18 23:22:15 +02001277 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
Harald Welte9abd1282018-02-19 19:18:17 +01001278 msg_type := RSL_MT_MODE_MODIFY_ACK,
1279 ies := {
1280 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr})
1281 }
1282 }
Harald Welte7794d5b2017-12-16 23:00:20 +01001283
Harald Welte643e2a62017-11-27 15:03:18 +01001284 /* 8.4.11 BTS -> BSC */
Harald Welteefa7d912018-04-18 23:22:15 +02001285 template (value) RSL_Message ts_RSL_MODE_MODIFY_NACK(template (value) RslChannelNr chan_nr,
1286 RSL_Cause cause) := {
Harald Welte9abd1282018-02-19 19:18:17 +01001287 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
1288 msg_type := RSL_MT_MODE_MODIFY_NACK,
1289 ies := {
1290 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
1291 t_RSL_IE(RSL_IE_CAUSE, RSL_IE_Body:{cause := ts_RSL_IE_Cause(cause)})
1292 }
Harald Welte643e2a62017-11-27 15:03:18 +01001293 }
Harald Welte9abd1282018-02-19 19:18:17 +01001294 template RSL_Message tr_RSL_MODE_MODIFY_NACK(template RslChannelNr chan_nr,
1295 template RSL_Cause cause) := {
Harald Welteefa7d912018-04-18 23:22:15 +02001296 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
Harald Welte9abd1282018-02-19 19:18:17 +01001297 msg_type := RSL_MT_MODE_MODIFY_NACK,
1298 ies := {
1299 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
1300 tr_RSL_IE(RSL_IE_Body:{cause := tr_RSL_IE_Cause(cause)})
1301 }
1302 }
1303
Harald Welte643e2a62017-11-27 15:03:18 +01001304
Harald Welte6a8199d2018-01-29 21:58:53 +01001305 /* 8.4.14: BTS <- BSC */
1306 template RSL_Message tr_RSL_RF_CHAN_REL(template RslChannelNr chan_nr) := {
Harald Welteefa7d912018-04-18 23:22:15 +02001307 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
Harald Welte6a8199d2018-01-29 21:58:53 +01001308 msg_type := RSL_MT_RF_CHAN_REL,
1309 ies := {
1310 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr})
1311 }
1312 }
Harald Welteefa7d912018-04-18 23:22:15 +02001313 template (value) RSL_Message ts_RSL_RF_CHAN_REL(template (value) RslChannelNr chan_nr) := {
Harald Welte9abd1282018-02-19 19:18:17 +01001314 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
1315 msg_type := RSL_MT_RF_CHAN_REL,
1316 ies := {
1317 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr})
1318 }
1319 }
Harald Welte6a8199d2018-01-29 21:58:53 +01001320
Philipp Maier4d1e9c92018-12-20 11:11:56 +01001321 /* 8.4.15: BTS <- BSC */
1322 template (value) RSL_Message ts_RSL_MS_PWR_CTRL(template (value) RslChannelNr chan_nr,
1323 template (value) RSL_IE_MS_Power ms_power) := {
1324 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
1325 msg_type := RSL_MT_MS_POWER_CONTROL,
1326 ies := {
1327 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
1328 t_RSL_IE(RSL_IE_MS_POWER, RSL_IE_Body:{ms_power := ms_power})
1329 /* One optional IE: MS POWER PARAMETERS */
1330 }
1331 }
1332
Harald Welte4a267362017-12-09 17:49:32 +01001333 /* 8.4.19 BTS -> BSC */
Harald Welteefa7d912018-04-18 23:22:15 +02001334 template (value) RSL_Message ts_RSL_RF_CHAN_REL_ACK(template (value) RslChannelNr chan_nr) :=
Harald Welte4a267362017-12-09 17:49:32 +01001335 ts_RSL_MsgDiscType(ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
1336 RSL_MT_RF_CHAN_REL_ACK,
Harald Welte735dd072017-12-12 14:55:17 +01001337 { t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}) });
Harald Welte4a267362017-12-09 17:49:32 +01001338
Harald Welte9abd1282018-02-19 19:18:17 +01001339 template RSL_Message tr_RSL_RF_CHAN_REL_ACK(template RslChannelNr chan_nr) := {
Harald Welteefa7d912018-04-18 23:22:15 +02001340 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
Harald Welte9abd1282018-02-19 19:18:17 +01001341 msg_type := RSL_MT_RF_CHAN_REL_ACK,
1342 ies := {
Harald Welteefa7d912018-04-18 23:22:15 +02001343 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr})
Harald Welte9abd1282018-02-19 19:18:17 +01001344 }
1345 }
1346
Harald Welteea17b912018-03-11 22:29:31 +01001347 /* 8.6.20 BTS <- BSC */
Harald Welteefa7d912018-04-18 23:22:15 +02001348 template (value) RSL_Message ts_RSL_SACCH_INF_MOD(template (value) RslChannelNr chan_nr,
1349 RSL_IE_SysinfoType si_type,
1350 octetstring l3_info) := {
Harald Welteea17b912018-03-11 22:29:31 +01001351 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
1352 msg_type := RSL_MT_SACCH_INFO_MODIFY,
1353 ies := {
1354 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
1355 t_RSL_IE(RSL_IE_SYSINFO_TYPE, RSL_IE_Body:{sysinfo_type := si_type}),
1356 t_RSL_IE(RSL_IE_L3_INFO, RSL_IE_Body:{l3_info := ts_RSL_L16V(l3_info)})
1357 }
1358 }
1359
Neels Hofmeyr378a49c2018-06-15 22:18:43 +02001360 /* 8.4.7 BTS -> BSC */
1361 template (value) RSL_Message ts_RSL_HANDO_DET(template (value) RslChannelNr chan_nr) := {
1362 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
1363 msg_type := RSL_MT_HANDO_DET,
1364 ies := {
1365 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr})
1366 }
1367 }
1368
Harald Welteea17b912018-03-11 22:29:31 +01001369
Harald Welte643e2a62017-11-27 15:03:18 +01001370 /* COMMON CHANNEL MANAGEMENT MESSAGES */
1371
Harald Welte874c2232018-02-24 04:52:43 +01001372 /* 8.5.1 BTS <- BSC */
Harald Welteefa7d912018-04-18 23:22:15 +02001373 template (value) RSL_Message ts_RSL_BCCH_INFO(RSL_IE_SysinfoType si_type,
1374 octetstring full_bcch_info) := {
Harald Welte874c2232018-02-24 04:52:43 +01001375 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_CCHAN, false),
1376 msg_type := RSL_MT_BCCH_INFO,
1377 ies := {
Harald Welteefa7d912018-04-18 23:22:15 +02001378 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := ts_RslChanNr_BCCH(0)}),
Harald Welte874c2232018-02-24 04:52:43 +01001379 t_RSL_IE(RSL_IE_SYSINFO_TYPE, RSL_IE_Body:{sysinfo_type := si_type}),
1380 t_RSL_IE(RSL_IE_FULL_BCCH_INFO, RSL_IE_Body:{other := ts_RSL_LV(full_bcch_info)})
1381 }
1382 }
1383
Harald Welte7ae93142017-12-07 17:56:15 +01001384 /* 8.5.2 BTS -> BSC */
Harald Welteefa7d912018-04-18 23:22:15 +02001385 template (value) RSL_Message ts_RSL_RACH_LOAD_IND(uint16_t slot_ct, uint16_t busy_ct,
1386 uint16_t acc_ct) := {
Harald Welte7ae93142017-12-07 17:56:15 +01001387 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_CCHAN, false),
1388 msg_type := RSL_MT_CCCH_LOAD_IND,
1389 ies := {
Harald Welteefa7d912018-04-18 23:22:15 +02001390 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := ts_RslChanNr_RACH(0)}),
Harald Welte735dd072017-12-12 14:55:17 +01001391 t_RSL_IE(RSL_IE_RACH_LOAD, RSL_IE_Body:{rach_load := ts_RSL_IE_RachLoad(slot_ct, busy_ct, acc_ct)})
Harald Welte7ae93142017-12-07 17:56:15 +01001392 }
1393 }
Harald Welte68e495b2018-02-25 00:05:57 +01001394 template RSL_Message tr_RSL_RACH_LOAD_IND(template uint16_t slot_ct := ?,
1395 template uint16_t busy_ct := ?,
1396 template uint16_t acc_ct) := {
Harald Welteefa7d912018-04-18 23:22:15 +02001397 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_CCHAN, false),
Harald Welte68e495b2018-02-25 00:05:57 +01001398 msg_type := RSL_MT_CCCH_LOAD_IND,
1399 ies := {
1400 tr_RSL_IE(RSL_IE_Body:{chan_nr := t_RslChanNr_RACH(0)}),
1401 tr_RSL_IE(RSL_IE_Body:{rach_load := tr_RSL_IE_RachLoad(slot_ct, busy_ct, acc_ct)})
1402 }
1403 }
1404
Harald Welteefa7d912018-04-18 23:22:15 +02001405 template (value) RSL_Message ts_RSL_PAGING_LOAD_IND(uint16_t buffer_space) := {
Harald Welte7ae93142017-12-07 17:56:15 +01001406 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_CCHAN, false),
1407 msg_type := RSL_MT_CCCH_LOAD_IND,
1408 ies := {
Harald Welteefa7d912018-04-18 23:22:15 +02001409 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := ts_RslChanNr_PCH_AGCH(0)}),
Harald Welte735dd072017-12-12 14:55:17 +01001410 t_RSL_IE(RSL_IE_PAGING_LOAD, RSL_IE_Body:{paging_load := buffer_space})
Harald Welte7ae93142017-12-07 17:56:15 +01001411 }
1412 }
Harald Welte68e495b2018-02-25 00:05:57 +01001413 template RSL_Message tr_RSL_PAGING_LOAD_IND(template uint16_t buffer_space := ?) := {
Harald Welteefa7d912018-04-18 23:22:15 +02001414 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_CCHAN, false),
Harald Welte68e495b2018-02-25 00:05:57 +01001415 msg_type := RSL_MT_CCCH_LOAD_IND,
1416 ies := {
1417 tr_RSL_IE(RSL_IE_Body:{chan_nr := t_RslChanNr_PCH_AGCH(0)}),
1418 tr_RSL_IE(RSL_IE_Body:{paging_load := buffer_space})
1419 }
1420 }
1421
Harald Welte7ae93142017-12-07 17:56:15 +01001422
Harald Welte643e2a62017-11-27 15:03:18 +01001423 /* 8.5.3 BTS -> BSC */
Harald Welteefa7d912018-04-18 23:22:15 +02001424 template (value) RSL_Message ts_RSL_CHAN_RQD(OCT1 ra, GsmFrameNumber fn, uint8_t acc_del := 0) := {
Harald Welte643e2a62017-11-27 15:03:18 +01001425 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_CCHAN, false),
1426 msg_type := RSL_MT_CHAN_RQD,
1427 ies := {
Harald Welteefa7d912018-04-18 23:22:15 +02001428 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := ts_RslChanNr_RACH(0)}),
Harald Welte735dd072017-12-12 14:55:17 +01001429 t_RSL_IE(RSL_IE_REQ_REFERENCE, RSL_IE_Body:{req_ref := ts_RSL_IE_ReqRef(ra, fn)}),
1430 t_RSL_IE(RSL_IE_ACCESS_DELAY, RSL_IE_Body:{access_delay := acc_del})
Harald Welte643e2a62017-11-27 15:03:18 +01001431 }
1432 }
Harald Welte9abd1282018-02-19 19:18:17 +01001433 template RSL_Message tr_RSL_CHAN_RQD(template OCT1 ra, template GsmFrameNumber fn := ?,
1434 template uint8_t acc_del := ?) := {
Harald Welteefa7d912018-04-18 23:22:15 +02001435 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_CCHAN, false),
Harald Welte9abd1282018-02-19 19:18:17 +01001436 msg_type := RSL_MT_CHAN_RQD,
1437 ies := {
1438 tr_RSL_IE(RSL_IE_Body:{chan_nr := t_RslChanNr_RACH(0)}),
1439 tr_RSL_IE(RSL_IE_Body:{req_ref := tr_RSL_IE_ReqRef(ra, fn)}),
1440 tr_RSL_IE(RSL_IE_Body:{access_delay := acc_del})
1441 }
1442 }
Harald Welte643e2a62017-11-27 15:03:18 +01001443
1444 /* 8.5.4 BTS -> BSC */
Harald Welteefa7d912018-04-18 23:22:15 +02001445 template (value) RSL_Message ts_DELETE_IND(template (value) RslChannelNr chan_nr,
1446 octetstring imm_ass) := {
Harald Welte643e2a62017-11-27 15:03:18 +01001447 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_CCHAN, false),
1448 msg_type := RSL_MT_DELETE_IND,
1449 ies := {
Harald Welte735dd072017-12-12 14:55:17 +01001450 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
1451 t_RSL_IE(RSL_IE_FULL_IMM_ASS_INFO, RSL_IE_Body:{full_imm_ass_info := ts_RSL_LV(imm_ass)})
Harald Welte643e2a62017-11-27 15:03:18 +01001452 }
1453 }
Harald Weltee8d750e2018-06-10 21:41:35 +02001454 template RSL_Message tr_RSL_DELETE_IND(template octetstring imm_ass := ?, template uint3_t tn) := {
1455 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_CCHAN, false),
1456 msg_type := RSL_MT_DELETE_IND,
1457 ies := {
1458 tr_RSL_IE(RSL_IE_Body:{chan_nr := t_RslChanNr_PCH_AGCH(tn)}),
1459 tr_RSL_IE(RSL_IE_Body:{full_imm_ass_info := tr_RSL_LV(imm_ass)}),
1460 *
1461 }
1462 }
Harald Welte643e2a62017-11-27 15:03:18 +01001463
Harald Weltec2877752017-12-07 17:54:35 +01001464 /* 8.5.5 BSC -> BTS */
1465 template RSL_Message tr_RSL_PAGING_CMD(template octetstring identity, template uint3_t tn := ?) := {
Harald Welteefa7d912018-04-18 23:22:15 +02001466 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_CCHAN, false),
Harald Weltec2877752017-12-07 17:54:35 +01001467 msg_type := RSL_MT_PAGING_CMD,
1468 ies := {
1469 tr_RSL_IE(RSL_IE_Body:{chan_nr := t_RslChanNr_PCH_AGCH(tn)}),
1470 tr_RSL_IE(RSL_IE_Body:{paging_group := ?}),
Harald Welte51d74102017-12-10 23:05:02 +01001471 tr_RSL_IE(RSL_IE_Body:{ms_identity := tr_RSL_LV(identity)}),
Harald Weltec2877752017-12-07 17:54:35 +01001472 * /* opt: channel needed, eMLPP prio */
1473 }
1474 }
Harald Welteefa7d912018-04-18 23:22:15 +02001475 template (value) RSL_Message ts_RSL_PAGING_CMD(octetstring identity, uint8_t pg, uint3_t tn := 0) := {
Harald Welte9abd1282018-02-19 19:18:17 +01001476 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_CCHAN, false),
1477 msg_type := RSL_MT_PAGING_CMD,
1478 ies := {
Harald Welteefa7d912018-04-18 23:22:15 +02001479 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := ts_RslChanNr_PCH_AGCH(tn)}),
Harald Welte9abd1282018-02-19 19:18:17 +01001480 t_RSL_IE(RSL_IE_PAGING_GROUP, RSL_IE_Body:{paging_group := pg}),
1481 t_RSL_IE(RSL_IE_MS_IDENTITY, RSL_IE_Body:{ms_identity := ts_RSL_LV(identity)})
1482 }
1483 }
Harald Weltec2877752017-12-07 17:54:35 +01001484
1485 /* 8.5.6 BSC -> BTS */
1486 template RSL_Message tr_RSL_IMM_ASSIGN(template uint3_t tn := ?) := {
Harald Welteefa7d912018-04-18 23:22:15 +02001487 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_CCHAN, false),
Harald Weltec2877752017-12-07 17:54:35 +01001488 msg_type := RSL_MT_IMMEDIATE_ASSIGN_CMD,
1489 ies := {
1490 tr_RSL_IE(RSL_IE_Body:{chan_nr := t_RslChanNr_PCH_AGCH(tn)}),
1491 tr_RSL_IE(RSL_IE_Body:{full_imm_ass_info := ?})
1492 }
1493 }
Harald Welteefa7d912018-04-18 23:22:15 +02001494 template (value) RSL_Message ts_RSL_IMM_ASSIGN(octetstring f_ass_inf, uint3_t tn := 0) := {
Harald Welte9abd1282018-02-19 19:18:17 +01001495 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_CCHAN, false),
1496 msg_type := RSL_MT_IMMEDIATE_ASSIGN_CMD,
1497 ies := {
Harald Welteefa7d912018-04-18 23:22:15 +02001498 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := ts_RslChanNr_PCH_AGCH(tn)}),
Harald Welte9abd1282018-02-19 19:18:17 +01001499 t_RSL_IE(RSL_IE_FULL_IMM_ASS_INFO, RSL_IE_Body:{full_imm_ass_info := ts_RSL_LV(f_ass_inf)})
1500 }
1501 }
Harald Weltec2877752017-12-07 17:54:35 +01001502
Harald Welte68e495b2018-02-25 00:05:57 +01001503 template RSL_Message tr_RSL_RF_RES_IND := {
Harald Welteefa7d912018-04-18 23:22:15 +02001504 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_TRX_MGMT, false),
Harald Welte68e495b2018-02-25 00:05:57 +01001505 msg_type := RSL_MT_RF_RES_IND,
1506 ies := *
1507 }
1508
Harald Weltecc373202018-09-10 10:28:21 +02001509 /* 8.5.8 BTS <- BSC SMS BROADCAST COMMAND */
1510 template RSL_Message tr_RSL_SMSCB_CMD(template RSL_IE_CbCommandType cb_cmd := ?,
1511 template octetstring msg := ?,
1512 template RslChannelNr chan_nr := ?) := {
1513 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_CCHAN, false),
1514 msg_type := RSL_MT_SMS_BC_CMD,
1515 ies := {
1516 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
1517 tr_RSL_IE(RSL_IE_Body:{cb_cmd_type := cb_cmd}),
1518 tr_RSL_IE(RSL_IE_Body:{smscb_message := tr_RSL_LV(msg)}),
1519 *
1520 }
1521 }
1522 template (value) RSL_Message ts_RSL_SMSCB_CMD(template (value) RSL_IE_CbCommandType cb_cmd,
1523 template (value) octetstring msg,
1524 template (value) RslChannelNr chan_nr :=
1525 ts_RslChanNr_SDCCH4(0, 2)) := {
1526 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_CCHAN, false),
1527 msg_type := RSL_MT_SMS_BC_CMD,
1528 ies := {
1529 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
1530 t_RSL_IE(RSL_IE_CB_CMD_TYPE, RSL_IE_Body:{cb_cmd_type := cb_cmd}),
1531 t_RSL_IE(RSL_IE_SMSCB_MSG, RSL_IE_Body:{smscb_message := ts_RSL_LV(msg)})
1532 /* optional channel type for extended CBCH */
1533 }
1534 }
1535
Harald Welte68e495b2018-02-25 00:05:57 +01001536 /* 8.6.2 BTS <- BSC */
Harald Welteefa7d912018-04-18 23:22:15 +02001537 template (value) RSL_Message ts_RSL_SACCH_FILL(RSL_IE_SysinfoType si_type, octetstring l3_info) := {
Harald Welte68e495b2018-02-25 00:05:57 +01001538 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_TRX_MGMT, false),
1539 msg_type := RSL_MT_SACCH_FILL,
1540 ies := {
1541 t_RSL_IE(RSL_IE_SYSINFO_TYPE, RSL_IE_Body:{sysinfo_type := si_type}),
1542 t_RSL_IE(RSL_IE_L3_INFO, RSL_IE_Body:{l3_info := ts_RSL_L16V(l3_info)})
1543 }
1544 }
1545
Harald Welte643e2a62017-11-27 15:03:18 +01001546 /* 8.6.4 BTS -> BSC */
Harald Welteefa7d912018-04-18 23:22:15 +02001547 template (value) RSL_Message ts_RSL_ERROR_REPORT(RSL_Cause cause) := {
Harald Welte01d982c2018-02-25 01:31:40 +01001548 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_TRX_MGMT, false),
1549 msg_type := RSL_MT_ERROR_REPORT,
Harald Welte643e2a62017-11-27 15:03:18 +01001550 ies := {
Harald Welte735dd072017-12-12 14:55:17 +01001551 t_RSL_IE(RSL_IE_CAUSE, RSL_IE_Body:{cause := ts_RSL_IE_Cause(cause)})
Harald Welte643e2a62017-11-27 15:03:18 +01001552 }
1553 }
Harald Welte01d982c2018-02-25 01:31:40 +01001554 template RSL_Message tr_RSL_ERROR_REPORT(template RSL_Cause cause := ?) := {
Harald Welteefa7d912018-04-18 23:22:15 +02001555 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_TRX_MGMT, false),
Harald Welte01d982c2018-02-25 01:31:40 +01001556 msg_type := RSL_MT_ERROR_REPORT,
1557 ies := {
1558 tr_RSL_IE(RSL_IE_Body:{cause := tr_RSL_IE_Cause(cause)}),
1559 *
1560 }
1561 }
1562
Harald Welte643e2a62017-11-27 15:03:18 +01001563
Harald Welte9958a4d2017-12-14 21:21:33 +01001564
1565 /* Abis/IP specific messages */
1566
1567 template RSL_Message tr_RSL_IPA_CRCX(template RslChannelNr chan_nr) := {
Harald Welteefa7d912018-04-18 23:22:15 +02001568 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_IPACCESS, false),
Harald Welte9958a4d2017-12-14 21:21:33 +01001569 msg_type := RSL_MT_IPAC_CRCX,
1570 ies := {
1571 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
1572 *
1573 }
1574 }
Harald Welteefa7d912018-04-18 23:22:15 +02001575 template (value) RSL_Message ts_RSL_IPA_CRCX(template (value) RslChannelNr chan_nr) := {
Harald Welte9abd1282018-02-19 19:18:17 +01001576 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_IPACCESS, false),
1577 msg_type := RSL_MT_IPAC_CRCX,
1578 ies := {
1579 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr})
1580 }
1581 }
1582
Harald Welte9958a4d2017-12-14 21:21:33 +01001583
Harald Welteefa7d912018-04-18 23:22:15 +02001584 template (value) RSL_Message ts_RSL_IPA_CRCX_ACK(template (value) RslChannelNr chan_nr,
1585 uint16_t ipa_conn_id, uint32_t local_ip,
1586 uint16_t local_port, uint7_t rtp_pt2) := {
Harald Welte9958a4d2017-12-14 21:21:33 +01001587 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_IPACCESS, false),
1588 msg_type := RSL_MT_IPAC_CRCX_ACK,
1589 ies := {
1590 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
1591 t_RSL_IE(RSL_IE_IPAC_CONN_ID, RSL_IE_Body:{ipa_conn_id := ipa_conn_id}),
1592 t_RSL_IE(RSL_IE_IPAC_LOCAL_IP, RSL_IE_Body:{ipa_local_ip := local_ip}),
1593 t_RSL_IE(RSL_IE_IPAC_LOCAL_PORT, RSL_IE_Body:{ipa_local_port := local_port}),
1594 t_RSL_IE(RSL_IE_IPAC_RTP_PAYLOAD2, RSL_IE_Body:{ipa_rtp_pt2 := rtp_pt2})
1595 }
1596 }
Harald Welte9abd1282018-02-19 19:18:17 +01001597 template RSL_Message tr_RSL_IPA_CRCX_ACK(template RslChannelNr chan_nr,
1598 template uint16_t ipa_conn_id,
1599 template uint32_t local_ip,
Harald Welte8bd0f822018-02-25 12:43:28 +01001600 template uint16_t local_port) := {
Harald Welteefa7d912018-04-18 23:22:15 +02001601 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_IPACCESS, false),
Harald Welte9abd1282018-02-19 19:18:17 +01001602 msg_type := RSL_MT_IPAC_CRCX_ACK,
1603 ies := {
1604 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
1605 tr_RSL_IE(RSL_IE_Body:{ipa_conn_id := ipa_conn_id}),
1606 tr_RSL_IE(RSL_IE_Body:{ipa_local_ip := local_ip}),
Harald Welte8bd0f822018-02-25 12:43:28 +01001607 tr_RSL_IE(RSL_IE_Body:{ipa_local_port := local_port})
1608 /* Optional: RTP Payload Type 2 IE */
Harald Welte9abd1282018-02-19 19:18:17 +01001609 }
1610 }
Harald Welte9958a4d2017-12-14 21:21:33 +01001611
Harald Welteefa7d912018-04-18 23:22:15 +02001612 template (value) RSL_Message ts_RSL_IPA_CRCX_NACK(template (value) RslChannelNr chan_nr,
1613 RSL_Cause cause) := {
Harald Welte9958a4d2017-12-14 21:21:33 +01001614 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_IPACCESS, false),
1615 msg_type := RSL_MT_IPAC_CRCX_NACK,
1616 ies := {
1617 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
1618 t_RSL_IE(RSL_IE_CAUSE, RSL_IE_Body:{cause := ts_RSL_IE_Cause(cause)})
1619 }
1620 }
Harald Welte9abd1282018-02-19 19:18:17 +01001621 template RSL_Message tr_RSL_IPA_CRCX_NACK(template RslChannelNr chan_nr,
1622 template RSL_Cause cause := ?) := {
Harald Welteefa7d912018-04-18 23:22:15 +02001623 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_IPACCESS, false),
Harald Welte9abd1282018-02-19 19:18:17 +01001624 msg_type := RSL_MT_IPAC_CRCX_NACK,
1625 ies := {
1626 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
1627 tr_RSL_IE(RSL_IE_Body:{cause := tr_RSL_IE_Cause(cause)})
1628 }
1629 }
Harald Welte9958a4d2017-12-14 21:21:33 +01001630
Harald Welteefa7d912018-04-18 23:22:15 +02001631 template (value) RSL_Message ts_RSL_IPA_MDCX(template (value) RslChannelNr chan_nr,
1632 uint16_t ipa_conn_id,
1633 uint32_t remote_ip, uint16_t remote_port,
1634 uint7_t rtp_pt2) := {
Harald Welte30527452018-02-25 12:46:25 +01001635 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_IPACCESS, false),
1636 msg_type := RSL_MT_IPAC_MDCX,
1637 ies := {
1638 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
1639 t_RSL_IE(RSL_IE_IPAC_CONN_ID, RSL_IE_Body:{ipa_conn_id := ipa_conn_id}),
1640 t_RSL_IE(RSL_IE_IPAC_REMOTE_IP, RSL_IE_Body:{ipa_remote_ip := remote_ip}),
1641 t_RSL_IE(RSL_IE_IPAC_REMOTE_PORT, RSL_IE_Body:{ipa_remote_port := remote_port}),
1642 /* optional: RTP Payload Type */
1643 t_RSL_IE(RSL_IE_IPAC_RTP_PAYLOAD2, RSL_IE_Body:{ipa_rtp_pt2 := rtp_pt2})
1644 }
1645 }
Harald Welte9958a4d2017-12-14 21:21:33 +01001646 template RSL_Message tr_RSL_IPA_MDCX(template RslChannelNr chan_nr,
1647 template uint16_t ipa_conn_id) := {
Harald Welteefa7d912018-04-18 23:22:15 +02001648 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_IPACCESS, false),
Harald Welte9958a4d2017-12-14 21:21:33 +01001649 msg_type := RSL_MT_IPAC_MDCX,
1650 ies := {
1651 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
1652 tr_RSL_IE(RSL_IE_Body:{ipa_conn_id := ipa_conn_id}),
1653 *
1654 }
1655 }
1656
Harald Welteefa7d912018-04-18 23:22:15 +02001657 template (value) RSL_Message ts_RSL_IPA_MDCX_ACK(template (value) RslChannelNr chan_nr,
1658 uint16_t ipa_conn_id,
1659 uint32_t local_ip, uint16_t local_port,
1660 uint7_t rtp_pt2) := {
Harald Welte9958a4d2017-12-14 21:21:33 +01001661 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_IPACCESS, false),
Harald Welte71b5ec82017-12-16 23:01:10 +01001662 msg_type := RSL_MT_IPAC_MDCX_ACK,
Harald Welte9958a4d2017-12-14 21:21:33 +01001663 ies := {
1664 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
1665 /* optional */
1666 t_RSL_IE(RSL_IE_IPAC_CONN_ID, RSL_IE_Body:{ipa_conn_id := ipa_conn_id}),
Harald Welte6cb400a2018-02-25 12:45:25 +01001667 t_RSL_IE(RSL_IE_IPAC_LOCAL_IP, RSL_IE_Body:{ipa_local_ip := local_ip}),
1668 t_RSL_IE(RSL_IE_IPAC_LOCAL_PORT, RSL_IE_Body:{ipa_local_port := local_port}),
Harald Welte9958a4d2017-12-14 21:21:33 +01001669 /* optional: RTP Payload Type */
1670 t_RSL_IE(RSL_IE_IPAC_RTP_PAYLOAD2, RSL_IE_Body:{ipa_rtp_pt2 := rtp_pt2})
1671 }
1672 }
Harald Welte30527452018-02-25 12:46:25 +01001673 template RSL_Message tr_RSL_IPA_MDCX_ACK(template RslChannelNr chan_nr,
1674 template uint16_t ipa_conn_id,
1675 template uint32_t local_ip,
1676 template uint16_t local_port,
1677 template uint7_t rtp_pt2) := {
Harald Welteefa7d912018-04-18 23:22:15 +02001678 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_IPACCESS, false),
Harald Welte30527452018-02-25 12:46:25 +01001679 msg_type := RSL_MT_IPAC_MDCX_ACK,
1680 ies := {
1681 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
1682 /* optional */
1683 tr_RSL_IE(RSL_IE_Body:{ipa_conn_id := ipa_conn_id}),
1684 tr_RSL_IE(RSL_IE_Body:{ipa_local_ip := local_ip}),
1685 tr_RSL_IE(RSL_IE_Body:{ipa_local_port := local_port}),
1686 /* optional: RTP Payload Type */
1687 tr_RSL_IE(RSL_IE_Body:{ipa_rtp_pt2 := rtp_pt2})
1688 }
1689 }
Harald Welte9958a4d2017-12-14 21:21:33 +01001690
Harald Welteefa7d912018-04-18 23:22:15 +02001691 template (value) RSL_Message ts_RSL_IPA_MDCX_NACK(template (value) RslChannelNr chan_nr,
1692 RSL_Cause cause,
1693 template (value) uint16_t ipa_conn_id) := {
Harald Welte9958a4d2017-12-14 21:21:33 +01001694 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_IPACCESS, false),
1695 msg_type := RSL_MT_IPAC_MDCX_NACK,
1696 ies := {
1697 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
1698 /* optional connection ID */
1699 t_RSL_IE(RSL_IE_IPAC_CONN_ID, RSL_IE_Body:{ipa_conn_id := ipa_conn_id}),
1700 t_RSL_IE(RSL_IE_CAUSE, RSL_IE_Body:{cause := ts_RSL_IE_Cause(cause)})
1701 }
1702 }
Harald Welte30527452018-02-25 12:46:25 +01001703 template RSL_Message tr_RSL_IPA_MDCX_NACK(template RslChannelNr chan_nr,
1704 template RSL_Cause cause,
1705 template uint16_t ipa_conn_id) := {
Harald Welteefa7d912018-04-18 23:22:15 +02001706 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_IPACCESS, false),
Harald Welte30527452018-02-25 12:46:25 +01001707 msg_type := RSL_MT_IPAC_MDCX_NACK,
1708 ies := {
1709 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
1710 /* optional connection ID */
1711 tr_RSL_IE(RSL_IE_Body:{ipa_conn_id := ipa_conn_id}),
1712 tr_RSL_IE(RSL_IE_Body:{cause := tr_RSL_IE_Cause(cause)})
1713 }
1714 }
1715
Harald Welte9958a4d2017-12-14 21:21:33 +01001716
Harald Welteefa7d912018-04-18 23:22:15 +02001717 template (value) RSL_Message ts_RSL_IPA_DLCX_IND(template (value) RslChannelNr chan_nr,
1718 uint16_t ipa_conn_id,
1719 template (value) RSL_IE_IPA_ConnectionStats stats,
1720 RSL_Cause cause) := {
Harald Welte9958a4d2017-12-14 21:21:33 +01001721 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_IPACCESS, false),
1722 msg_type := RSL_MT_IPAC_DLCX_IND,
1723 ies := {
1724 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
1725 t_RSL_IE(RSL_IE_IPAC_CONN_ID, RSL_IE_Body:{ipa_conn_id := ipa_conn_id}),
1726 t_RSL_IE(RSL_IE_IPAC_CONN_STAT, RSL_IE_Body:{ipa_stats := stats}),
1727 t_RSL_IE(RSL_IE_CAUSE, RSL_IE_Body:{cause := ts_RSL_IE_Cause(cause)})
1728 }
1729 }
1730
Harald Welteefa7d912018-04-18 23:22:15 +02001731 template (value) RSL_Message ts_RSL_IPA_DLCX(template (value) RslChannelNr chan_nr,
1732 uint16_t ipa_conn_id) := {
Harald Weltea871a382018-02-25 02:03:14 +01001733 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_IPACCESS, false),
1734 msg_type := RSL_MT_IPAC_DLCX,
1735 ies := {
Harald Welte2a7e7162018-02-25 12:46:48 +01001736 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
1737 t_RSL_IE(RSL_IE_IPAC_CONN_ID, RSL_IE_Body:{ipa_conn_id := ipa_conn_id})
Harald Weltea871a382018-02-25 02:03:14 +01001738 }
1739 }
Harald Welte9958a4d2017-12-14 21:21:33 +01001740 template RSL_Message tr_RSL_IPA_DLCX(template RslChannelNr chan_nr,
1741 template uint16_t ipa_conn_id := omit) := {
Harald Welteefa7d912018-04-18 23:22:15 +02001742 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_IPACCESS, false),
Harald Welte9958a4d2017-12-14 21:21:33 +01001743 msg_type := RSL_MT_IPAC_DLCX,
1744 ies := {
1745 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
1746 /* FIXME: optional conn_id */
1747 *
1748 }
1749 }
1750
Harald Welteefa7d912018-04-18 23:22:15 +02001751 template (value) RSL_Message ts_RSL_IPA_DLCX_ACK(template (value) RslChannelNr chan_nr,
1752 uint16_t ipa_conn_id,
1753 RSL_IE_IPA_ConnectionStats stats) := {
Harald Welte9958a4d2017-12-14 21:21:33 +01001754 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_IPACCESS, false),
1755 msg_type := RSL_MT_IPAC_DLCX_ACK,
1756 ies := {
1757 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
1758 t_RSL_IE(RSL_IE_IPAC_CONN_ID, RSL_IE_Body:{ipa_conn_id := ipa_conn_id}),
1759 t_RSL_IE(RSL_IE_IPAC_CONN_STAT, RSL_IE_Body:{ipa_stats := stats})
1760 }
1761 }
Harald Weltea871a382018-02-25 02:03:14 +01001762 template RSL_Message tr_RSL_IPA_DLCX_ACK(template RslChannelNr chan_nr,
1763 template uint16_t ipa_conn_id,
1764 template RSL_IE_IPA_ConnectionStats stats) := {
Harald Welteefa7d912018-04-18 23:22:15 +02001765 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_IPACCESS, false),
Harald Weltea871a382018-02-25 02:03:14 +01001766 msg_type := RSL_MT_IPAC_DLCX_ACK,
1767 ies := {
1768 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
1769 tr_RSL_IE(RSL_IE_Body:{ipa_conn_id := ipa_conn_id}),
1770 tr_RSL_IE(RSL_IE_Body:{ipa_stats := stats})
1771 }
1772 }
1773
1774
Harald Welte9958a4d2017-12-14 21:21:33 +01001775
Harald Welteefa7d912018-04-18 23:22:15 +02001776 template (value) RSL_Message ts_RSL_IPA_DLCX_NACK(template (value) RslChannelNr chan_nr,
1777 RSL_Cause cause, uint16_t ipa_conn_id) := {
Harald Welte9958a4d2017-12-14 21:21:33 +01001778 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_IPACCESS, false),
1779 msg_type := RSL_MT_IPAC_DLCX_NACK,
1780 ies := {
1781 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
1782 /* optional connection ID */
1783 t_RSL_IE(RSL_IE_IPAC_CONN_ID, RSL_IE_Body:{ipa_conn_id := ipa_conn_id}),
1784 t_RSL_IE(RSL_IE_CAUSE, RSL_IE_Body:{cause := ts_RSL_IE_Cause(cause)})
1785 }
1786 }
Harald Weltea871a382018-02-25 02:03:14 +01001787 template RSL_Message tr_RSL_IPA_DLCX_NACK(template RslChannelNr chan_nr,
1788 template RSL_Cause cause) := {
Harald Welteefa7d912018-04-18 23:22:15 +02001789 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_IPACCESS, false),
Harald Weltea871a382018-02-25 02:03:14 +01001790 msg_type := RSL_MT_IPAC_DLCX_NACK,
1791 ies := {
1792 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
1793 /* optional connection ID */
1794 *,
1795 tr_RSL_IE(RSL_IE_Body:{cause := tr_RSL_IE_Cause(cause)})
1796 }
1797 }
1798
Harald Welte9958a4d2017-12-14 21:21:33 +01001799
Harald Welteefa7d912018-04-18 23:22:15 +02001800 template (value) RSL_Message ts_RSL_IPA_PDCH_ACT(RslChannelNr chan_nr) := {
Harald Welteee19c732018-04-05 09:08:26 +02001801 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
1802 msg_type := RSL_MT_IPAC_PDCH_ACT,
1803 ies := {
1804 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr})
1805 }
1806 }
Harald Welte9958a4d2017-12-14 21:21:33 +01001807 template RSL_Message tr_RSL_IPA_PDCH_ACT(template RslChannelNr chan_nr) := {
Harald Welteee19c732018-04-05 09:08:26 +02001808 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
Harald Welte9958a4d2017-12-14 21:21:33 +01001809 msg_type := RSL_MT_IPAC_PDCH_ACT,
1810 ies := {
1811 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr})
1812 }
1813 }
1814
Harald Welteee19c732018-04-05 09:08:26 +02001815
Harald Welte94e0c342018-04-07 11:33:23 +02001816 template RSL_Message ts_RSL_IPA_PDCH_ACT_ACK(RslChannelNr chan_nr,
1817 template (value) RSL_IE_FrameNumber fn) := {
Harald Welteee19c732018-04-05 09:08:26 +02001818 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
Harald Welte9958a4d2017-12-14 21:21:33 +01001819 msg_type := RSL_MT_IPAC_PDCH_ACT_ACK,
1820 ies := {
1821 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
1822 t_RSL_IE(RSL_IE_FRAME_NUMBER, RSL_IE_Body:{frame_nr := fn})
1823 }
1824 }
Harald Welteee19c732018-04-05 09:08:26 +02001825 template RSL_Message tr_RSL_IPA_PDCH_ACT_ACK(template RslChannelNr chan_nr,
1826 template RSL_IE_FrameNumber fn) := {
1827 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
1828 msg_type := RSL_MT_IPAC_PDCH_ACT_ACK,
1829 ies := {
1830 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
1831 tr_RSL_IE(RSL_IE_Body:{frame_nr := fn})
1832 }
1833 }
Harald Welte9958a4d2017-12-14 21:21:33 +01001834
1835 template RSL_Message ts_RSL_IPA_PDCH_ACT_NACK(RslChannelNr chan_nr, RSL_Cause cause) := {
Harald Welteee19c732018-04-05 09:08:26 +02001836 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
Harald Welte9958a4d2017-12-14 21:21:33 +01001837 msg_type := RSL_MT_IPAC_PDCH_ACT_NACK,
1838 ies := {
1839 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
1840 t_RSL_IE(RSL_IE_CAUSE, RSL_IE_Body:{cause := ts_RSL_IE_Cause(cause)})
1841 }
1842 }
Harald Welteee19c732018-04-05 09:08:26 +02001843 template RSL_Message tr_RSL_IPA_PDCH_ACT_NACK(template RslChannelNr chan_nr,
1844 template RSL_Cause cause) := {
1845 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
1846 msg_type := RSL_MT_IPAC_PDCH_ACT_NACK,
1847 ies := {
1848 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
1849 tr_RSL_IE(RSL_IE_Body:{cause := tr_RSL_IE_Cause(cause)})
1850 }
1851 }
Harald Welte9958a4d2017-12-14 21:21:33 +01001852
Harald Welteee19c732018-04-05 09:08:26 +02001853 template RSL_Message ts_RSL_IPA_PDCH_DEACT(RslChannelNr chan_nr) := {
1854 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
1855 msg_type := RSL_MT_IPAC_PDCH_DEACT,
1856 ies := {
1857 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr})
1858 }
1859 }
Harald Welte9958a4d2017-12-14 21:21:33 +01001860 template RSL_Message tr_RSL_IPA_PDCH_DEACT(template RslChannelNr chan_nr) := {
Harald Welteee19c732018-04-05 09:08:26 +02001861 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
Harald Welte9958a4d2017-12-14 21:21:33 +01001862 msg_type := RSL_MT_IPAC_PDCH_DEACT,
1863 ies := {
1864 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr})
1865 }
1866 }
1867
1868 template RSL_Message ts_RSL_IPA_PDCH_DEACT_ACK(RslChannelNr chan_nr) := {
Harald Welteee19c732018-04-05 09:08:26 +02001869 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
Harald Welte9958a4d2017-12-14 21:21:33 +01001870 msg_type := RSL_MT_IPAC_PDCH_DEACT_ACK,
1871 ies := {
1872 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr})
1873 }
1874 }
Harald Welteee19c732018-04-05 09:08:26 +02001875 template RSL_Message tr_RSL_IPA_PDCH_DEACT_ACK(template RslChannelNr chan_nr) := {
1876 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
1877 msg_type := RSL_MT_IPAC_PDCH_DEACT_ACK,
1878 ies := {
1879 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr})
1880 }
1881 }
Harald Welte9958a4d2017-12-14 21:21:33 +01001882
1883 template RSL_Message ts_RSL_IPA_PDCH_DEACT_NACK(RslChannelNr chan_nr, RSL_Cause cause) := {
Harald Welteee19c732018-04-05 09:08:26 +02001884 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
Harald Welte9958a4d2017-12-14 21:21:33 +01001885 msg_type := RSL_MT_IPAC_PDCH_DEACT_NACK,
1886 ies := {
1887 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
1888 t_RSL_IE(RSL_IE_CAUSE, RSL_IE_Body:{cause := ts_RSL_IE_Cause(cause)})
1889 }
1890 }
Harald Welteee19c732018-04-05 09:08:26 +02001891 template RSL_Message tr_RSL_IPA_PDCH_DEACT_NACK(template RslChannelNr chan_nr,
1892 template RSL_Cause cause) := {
1893 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
1894 msg_type := RSL_MT_IPAC_PDCH_DEACT_NACK,
1895 ies := {
1896 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
1897 tr_RSL_IE(RSL_IE_Body:{cause := tr_RSL_IE_Cause(cause)})
1898 }
1899 }
Harald Welte9958a4d2017-12-14 21:21:33 +01001900
1901
Harald Welte6a8199d2018-01-29 21:58:53 +01001902 function f_rsl_find_ie(RSL_Message msg, RSL_IE_Type iei, out RSL_IE_Body ret) return boolean {
1903 for (var integer i := 0; i < sizeof(msg.ies); i := i+1) {
1904 if (msg.ies[i].iei == iei) {
1905 ret := msg.ies[i].body;
1906 return true;
1907 }
1908 }
1909 return false;
1910 }
1911
1912
Harald Welte9958a4d2017-12-14 21:21:33 +01001913
Harald Welte643e2a62017-11-27 15:03:18 +01001914} with { encode "RAW" ; variant "FIELDORDER(msb)" }