blob: fff87f22ee9a7a8d9a77354925c7d68a08d3f3a4 [file] [log] [blame]
Harald Welte643e2a62017-11-27 15:03:18 +01001module RSL_Types {
2
Vadim Yanitskiyc06688e2020-05-06 15:22:45 +07003/* RSL types defining abstract TTCN-3 data types for the A-bis RSL protocol.
Harald Welte35bb7162018-01-03 21:07:52 +01004 *
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.
Harald Welte34b5a952019-05-27 11:54:11 +020012 *
13 * SPDX-License-Identifier: GPL-2.0-or-later
Harald Welte35bb7162018-01-03 21:07:52 +010014 */
15
Harald Welte643e2a62017-11-27 15:03:18 +010016 import from General_Types all;
17 import from Osmocom_Types all;
Vadim Yanitskiye02dbcc2020-08-25 04:20:51 +070018 import from GSM_RR_Types all;
Harald Welte643e2a62017-11-27 15:03:18 +010019 import from GSM_Types all;
Vadim Yanitskiycc4623d2020-03-28 06:14:06 +070020 import from MobileL3_CommonIE_Types all;
21 import from L3_Templates all;
Harald Welte643e2a62017-11-27 15:03:18 +010022
23 /* Section 9.1 */
24 type enumerated RSL_MessageGroup {
25 RSL_MDISC_RESERVED ('0000000'B),
26 RSL_MDISC_RLL ('0000001'B),
27 RSL_MDISC_DCHAN ('0000100'B),
28 RSL_MDISC_CCHAN ('0000110'B),
29 RSL_MDISC_TRX_MGMT ('0001000'B),
30 RSL_MDISC_LCS ('0010000'B),
31 RSL_MDISC_IPACCESS ('0111111'B)
32 } with { variant "FIELDLENGTH(7)" };
33
34 /* Section 9.1 */
35 type record RSL_MessageDiscriminator {
36 RSL_MessageGroup msg_group,
37 boolean transparent
38 } with { variant "FIELDORDER(msb)" };
39
Harald Welteefa7d912018-04-18 23:22:15 +020040 template (value) RSL_MessageDiscriminator ts_RSL_MsgDisc(RSL_MessageGroup mg, boolean t := true) := {
Harald Welte643e2a62017-11-27 15:03:18 +010041 msg_group := mg,
42 transparent := t
43 }
Harald Welteefa7d912018-04-18 23:22:15 +020044 template RSL_MessageDiscriminator tr_RSL_MsgDisc(template RSL_MessageGroup mg, boolean t := true) := {
45 msg_group := mg,
46 transparent := t
47 }
48
Harald Welte643e2a62017-11-27 15:03:18 +010049
50 /* Section 9.2 */
51 type enumerated RSL_MessageType {
52 /* Radio Link Layer Management */
53 RSL_MT_DATA_REQ ('00000001'B),
54 RSL_MT_DATA_IND ('00000010'B),
55 RSL_MT_ERROR_IND ('00000011'B),
56 RSL_MT_EST_REQ ('00000100'B),
57 RSL_MT_EST_CONF ('00000101'B),
58 RSL_MT_EST_IND ('00000110'B),
59 RSL_MT_REL_REQ ('00000111'B),
60 RSL_MT_REL_CONF ('00001000'B),
61 RSL_MT_REL_IND ('00001001'B),
62 RSL_MT_UNIT_DATA_REQ ('00001010'B),
63 RSL_MT_UNIT_DATA_IND ('00001011'B),
64
65 /* non-standard below */
66 RSL_MT_SUSP_REQ ('00001100'B),
67 RSL_MT_SUSP_CONF ('00001101'B),
68 RSL_MT_RES_REQ ('00001110'B),
69 RSL_MT_RECON_REQ ('00001111'B),
70
71 /* Common Channel Management / TRX Management */
72 RSL_MT_BCCH_INFO ('00010001'B),
Harald Welte319be822017-12-07 17:50:26 +010073 RSL_MT_CCCH_LOAD_IND ('00010010'B),
74 RSL_MT_CHAN_RQD ('00010011'B),
75 RSL_MT_DELETE_IND ('00010100'B),
76 RSL_MT_PAGING_CMD ('00010101'B),
77 RSL_MT_IMMEDIATE_ASSIGN_CMD ('00010110'B),
78 RSL_MT_SMS_BC_REQ ('00010111'B),
79 RSL_MT_CHAN_CONF ('00011000'B), /* non-standard element */
Harald Welte643e2a62017-11-27 15:03:18 +010080 /* empty */
81 RSL_MT_RF_RES_IND ('00011001'B),
Harald Welte319be822017-12-07 17:50:26 +010082 RSL_MT_SACCH_FILL ('00011010'B),
83 RSL_MT_OVERLOAD ('00011011'B),
84 RSL_MT_ERROR_REPORT ('00011100'B),
85 RSL_MT_SMS_BC_CMD ('00011101'B),
86 RSL_MT_CBCH_LOAD_IND ('00011110'B),
87 RSL_MT_NOT_CMD ('00011111'B),
Harald Welte643e2a62017-11-27 15:03:18 +010088
89 /* Dedicate Channel Management */
90 RSL_MT_CHAN_ACTIV ('00100001'B),
Harald Welte319be822017-12-07 17:50:26 +010091 RSL_MT_CHAN_ACTIV_ACK ('00100010'B),
92 RSL_MT_CHAN_ACTIV_NACK ('00100011'B),
93 RSL_MT_CONN_FAIL ('00100100'B),
94 RSL_MT_DEACTIVATE_SACCH ('00100101'B),
95 RSL_MT_ENCR_CMD ('00100110'B),
96 RSL_MT_HANDO_DET ('00100111'B),
97 RSL_MT_MEAS_RES ('00101000'B),
98 RSL_MT_MODE_MODIFY_REQ ('00101001'B),
99 RSL_MT_MODE_MODIFY_ACK ('00101010'B),
100 RSL_MT_MODE_MODIFY_NACK ('00101011'B),
101 RSL_MT_PHY_CONTEXT_REQ ('00101100'B),
102 RSL_MT_PHY_CONTEXT_CONF ('00101101'B),
103 RSL_MT_RF_CHAN_REL ('00101110'B),
104 RSL_MT_MS_POWER_CONTROL ('00101111'B),
105 RSL_MT_BS_POWER_CONTROL ('00110000'B), /* 0x30 */
106 RSL_MT_PREPROC_CONFIG ('00110001'B),
107 RSL_MT_PREPROC_MEAS_RES ('00110010'B),
108 RSL_MT_RF_CHAN_REL_ACK ('00110011'B),
109 RSL_MT_SACCH_INFO_MODIFY('00110100'B),
110 RSL_MT_TALKER_DET ('00110101'B),
111 RSL_MT_LISTENER_DET ('00110110'B),
112 RSL_MT_REMOTE_CODEC_CONF_REP ('00110111'B),
113 RSL_MT_RTD_REP ('00111000'B),
114 RSL_MT_PRE_HANDO_NOTIF ('00111001'B),
115 RSL_MT_MR_CODEC_MOD_REQ ('00111010'B),
116 RSL_MT_MR_CODEC_MOD_ACK ('00111011'B),
117 RSL_MT_MR_CODEC_MOD_NACK ('00111100'B),
118 RSL_MT_MR_CODEC_MOD_PER ('00111101'B),
119 RSL_MT_TFO_REP ('00111110'B),
120 RSL_MT_TFO_MOD_REQ ('00111111'B), /* 0x3f */
Harald Welte643e2a62017-11-27 15:03:18 +0100121
122 RSL_MT_LOCATION_INFO ('01000001'B),
123
124 /* ip.access specific RSL message types */
125 RSL_MT_IPAC_DIR_RETR_ENQ ('01000000'B),
126
127 RSL_MT_IPAC_PDCH_ACT ('01001000'B),
Harald Welte319be822017-12-07 17:50:26 +0100128 RSL_MT_IPAC_PDCH_ACT_ACK ('01001001'B),
129 RSL_MT_IPAC_PDCH_ACT_NACK ('01001010'B),
Harald Welte643e2a62017-11-27 15:03:18 +0100130 RSL_MT_IPAC_PDCH_DEACT ('01001011'B),
Harald Welte319be822017-12-07 17:50:26 +0100131 RSL_MT_IPAC_PDCH_DEACT_ACK ('01001100'B),
132 RSL_MT_IPAC_PDCH_DEACT_NACK ('01001101'B),
Harald Welte643e2a62017-11-27 15:03:18 +0100133
134 RSL_MT_IPAC_CONNECT_MUX ('01010000'B),
Harald Weltef3075002017-12-16 22:31:41 +0100135 RSL_MT_IPAC_CONNECT_MUX_ACK ('01010001'B),
136 RSL_MT_IPAC_CONNECT_MUX_NACK ('01010010'B),
137 RSL_MT_IPAC_BIND_MUX ('01010011'B),
138 RSL_MT_IPAC_BIND_MUX_ACK ('01010100'B),
139 RSL_MT_IPAC_BIND_MUX_NACK ('01010101'B),
140 RSL_MT_IPAC_DISC_MUX ('01010110'B),
141 RSL_MT_IPAC_DISC_MUX_ACK ('01010111'B),
142 RSL_MT_IPAC_DISC_MUX_NACK ('01011000'B),
Harald Welte643e2a62017-11-27 15:03:18 +0100143 RSL_MT_IPAC_MEAS_PREPROC_DFT ('01100000'B),
Harald Weltef3075002017-12-16 22:31:41 +0100144 RSL_MT_IPAC_HO_CAN_ENQ ('01100001'B),
145 RSL_MT_IPAC_HO_CAN_RES ('01100010'B),
146 RSL_MT_IPAC_CRCX ('01110000'B),
147 RSL_MT_IPAC_CRCX_ACK ('01110001'B),
148 RSL_MT_IPAC_CRCX_NACK ('01110010'B),
149 RSL_MT_IPAC_MDCX ('01110011'B),
150 RSL_MT_IPAC_MDCX_ACK ('01110100'B),
151 RSL_MT_IPAC_MDCX_NACK ('01110101'B),
152 RSL_MT_IPAC_DLCX_IND ('01110110'B),
153 RSL_MT_IPAC_DLCX ('01110111'B),
154 RSL_MT_IPAC_DLCX_ACK ('01111000'B),
Harald Welte908ce542019-09-04 23:05:40 +0200155 RSL_MT_IPAC_DLCX_NACK ('01111001'B),
156
157 RSL_MT_OSMO_ETWS_CMD ('01111111'B)
Harald Welte643e2a62017-11-27 15:03:18 +0100158 } with { variant "FIELDLENGTH(8)" };
159
160 /*! RSL Information Element Identifiers (Chapter 9.3) */
161 type enumerated RSL_IE_Type {
162 RSL_IE_CHAN_NR ('00000001'B),
Harald Welte319be822017-12-07 17:50:26 +0100163 RSL_IE_LINK_IDENT ('00000010'B),
164 RSL_IE_ACT_TYPE ('00000011'B),
165 RSL_IE_BS_POWER ('00000100'B),
166 RSL_IE_CHAN_IDENT ('00000101'B),
167 RSL_IE_CHAN_MODE ('00000110'B),
168 RSL_IE_ENCR_INFO ('00000111'B),
169 RSL_IE_FRAME_NUMBER ('00001000'B),
170 RSL_IE_HANDO_REF ('00001001'B),
171 RSL_IE_L1_INFO ('00001010'B),
172 RSL_IE_L3_INFO ('00001011'B),
173 RSL_IE_MS_IDENTITY ('00001100'B),
174 RSL_IE_MS_POWER ('00001101'B),
175 RSL_IE_PAGING_GROUP ('00001110'B),
176 RSL_IE_PAGING_LOAD ('00001111'B),
177 RSL_IE_PYHS_CONTEXT ('00010000'B),
178 RSL_IE_ACCESS_DELAY ('00010001'B),
179 RSL_IE_RACH_LOAD ('00010010'B),
180 RSL_IE_REQ_REFERENCE ('00010011'B),
181 RSL_IE_RELEASE_MODE ('00010100'B),
182 RSL_IE_RESOURCE_INFO ('00010101'B),
183 RSL_IE_RLM_CAUSE ('00010110'B),
184 RSL_IE_STARTNG_TIME ('00010111'B),
185 RSL_IE_TIMING_ADVANCE ('00011000'B),
186 RSL_IE_UPLINK_MEAS ('00011001'B),
187 RSL_IE_CAUSE ('00011010'B),
188 RSL_IE_MEAS_RES_NR ('00011011'B),
189 RSL_IE_MSG_ID ('00011100'B),
Harald Welte643e2a62017-11-27 15:03:18 +0100190 /* reserved */
191 RSL_IE_SYSINFO_TYPE ('00011110'B),
Harald Welte319be822017-12-07 17:50:26 +0100192 RSL_IE_MS_POWER_PARAM ('00011111'B),
193 RSL_IE_BS_POWER_PARAM ('00100000'B),
194 RSL_IE_PREPROC_PARAM ('00100001'B),
195 RSL_IE_PREPROC_MEAS ('00100010'B),
196 RSL_IE_IMM_ASS_INFO ('00100011'B),/* Phase 1 (3.6.0), later Full below */
197 RSL_IE_SMSCB_INFO ('00100100'B),
198 RSL_IE_MS_TIMING_OFFSET ('00100101'B),
199 RSL_IE_ERR_MSG ('00100110'B),
200 RSL_IE_FULL_BCCH_INFO ('00100111'B),
201 RSL_IE_CHAN_NEEDED ('00101000'B),
202 RSL_IE_CB_CMD_TYPE ('00101001'B),
203 RSL_IE_SMSCB_MSG ('00101010'B),
204 RSL_IE_FULL_IMM_ASS_INFO ('00101011'B),
205 RSL_IE_SACCH_INFO ('00101100'B),
206 RSL_IE_CBCH_LOAD_INFO ('00101101'B),
207 RSL_IE_SMSCB_CHAN_INDICATOR ('00101110'B),
208 RSL_IE_GROUP_CALL_REF ('00101111'B),
209 RSL_IE_CHAN_DESC ('00110000'B),
210 RSL_IE_NCH_DRX_INFO ('00110001'B),
211 RSL_IE_CMD_INDICATOR ('00110010'B),
212 RSL_IE_EMLPP_PRIO ('00110011'B),
213 RSL_IE_UIC ('00110100'B),
214 RSL_IE_MAIN_CHAN_REF ('00110101'B),
215 RSL_IE_MR_CONFIG ('00110110'B),
216 RSL_IE_MR_CONTROL ('00110111'B),
217 RSL_IE_SUP_CODEC_TYPES ('00111000'B),
218 RSL_IE_CODEC_CONFIG ('00111001'B),
219 RSL_IE_RTD ('00111010'B),
220 RSL_IE_TFO_STATUS ('00111011'B),
221 RSL_IE_LLP_APDU ('00111100'B),
Harald Welte643e2a62017-11-27 15:03:18 +0100222
Pau Espin Pedrol29c6dfb2022-08-08 18:37:56 +0200223 /* Osmocom extensions */
Vadim Yanitskiy1f532152021-11-01 20:37:56 +0300224 RSL_IE_OSMO_REP_ACCH_CAP ('01100000'B),
Neels Hofmeyr2bef0dd2021-04-22 21:46:00 +0000225 RSL_IE_OSMO_TRAINING_SEQUENCE ('01100001'B),
Vadim Yanitskiya203d3b2021-11-01 21:32:31 +0300226 RSL_IE_OSMO_TOP_ACCH_CAP ('01100010'B),
Pau Espin Pedrol29c6dfb2022-08-08 18:37:56 +0200227 RSL_IE_OSMO_OSMUX_CID ('01100011'B),
Neels Hofmeyr2bef0dd2021-04-22 21:46:00 +0000228
Harald Welte643e2a62017-11-27 15:03:18 +0100229 /* ip.access */
230 RSL_IE_IPAC_SRTP_CONFIG ('11100000'B),
Harald Welte319be822017-12-07 17:50:26 +0100231 RSL_IE_IPAC_PROXY_UDP ('11100001'B),
232 RSL_IE_IPAC_BSCMPL_TOUT ('11100010'B),
Harald Welte643e2a62017-11-27 15:03:18 +0100233
234 RSL_IE_IPAC_REMOTE_IP ('11110000'B),
Harald Welte319be822017-12-07 17:50:26 +0100235 RSL_IE_IPAC_REMOTE_PORT ('11110001'B),
236 RSL_IE_IPAC_RTP_PAYLOAD ('11110010'B),
237 RSL_IE_IPAC_LOCAL_PORT ('11110011'B),
238 RSL_IE_IPAC_SPEECH_MODE ('11110100'B),
239 RSL_IE_IPAC_LOCAL_IP ('11110101'B),
240 RSL_IE_IPAC_CONN_STAT ('11110110'B),
241 RSL_IE_IPAC_HO_C_PARMS ('11110111'B),
242 RSL_IE_IPAC_CONN_ID ('11111000'B),
243 RSL_IE_IPAC_RTP_CSD_FMT ('11111001'B),
244 RSL_IE_IPAC_RTP_JIT_BUF ('11111010'B),
245 RSL_IE_IPAC_RTP_COMPR ('11111011'B),
246 RSL_IE_IPAC_RTP_PAYLOAD2 ('11111100'B),
247 RSL_IE_IPAC_RTP_MPLEX ('11111101'B),
248 RSL_IE_IPAC_RTP_MPLEX_ID ('11111110'B)
Harald Welte643e2a62017-11-27 15:03:18 +0100249 } with { variant "FIELDLENGTH(8)" };
250
251 type record RSL_LV {
252 uint8_t len,
253 octetstring payload
254 } with { variant (len) "LENGTHTO(payload)" }
255
Harald Welteefa7d912018-04-18 23:22:15 +0200256 template (value) RSL_LV ts_RSL_LV(template (value) octetstring pl) := {
Harald Welte643e2a62017-11-27 15:03:18 +0100257 len := 0,
258 payload := pl
259 }
260
Harald Welte51d74102017-12-10 23:05:02 +0100261 template RSL_LV tr_RSL_LV(template octetstring pl) := {
262 len := ?,
263 payload := pl
264 }
265
Harald Welte15bb5b52017-12-07 17:52:04 +0100266 type record RSL_L16V {
267 uint16_t len,
268 octetstring payload
269 } with { variant (len) "LENGTHTO(payload)" }
270
Harald Welteefa7d912018-04-18 23:22:15 +0200271 template (value) RSL_L16V ts_RSL_L16V(template (value) octetstring pl) := {
Harald Welte15bb5b52017-12-07 17:52:04 +0100272 len := 0,
273 payload := pl
274 }
275
Harald Welte7794d5b2017-12-16 23:00:20 +0100276 template RSL_L16V tr_RSL_L16V(template octetstring pl) := {
277 len := ?,
278 payload := pl
279 }
280
Harald Welte643e2a62017-11-27 15:03:18 +0100281 type record RSL_IE_V {
282 uint8_t val
283 }
284
285 /* 9.3.3 */
286 type record RSL_IE_ActivationType {
287 boolean reactivation,
288 uint4_t reserved,
Harald Welte921f9e02019-05-19 22:27:11 +0200289 RSL_ActivationAbits a_bits
290 };
291 type enumerated RSL_ActivationAbits {
292 ACT_REL_TO_IMM_ASSIGN ('000'B),
293 ACT_REL_TO_NORM_ASSIGN ('001'B),
294 ACT_REL_TO_ASYNC_HANDOVER ('010'B),
295 ACT_REL_TO_SYNC_HANDOVER ('011'B),
296 ACT_REL_TO_ADDL_ASSIGN ('100'B),
297 ACT_REL_TO_MSLOT_CONFIG ('101'B),
298 ACT_REL_TO_OSMO_PDCH ('111'B)
299 } with { variant "FIELDLENGTH(3)" };
Harald Welte643e2a62017-11-27 15:03:18 +0100300
Harald Welte921f9e02019-05-19 22:27:11 +0200301 const RSL_IE_ActivationType t_RSL_IE_ActType_IA := {
Harald Welte643e2a62017-11-27 15:03:18 +0100302 reactivation := false,
303 reserved := 0,
Harald Welte921f9e02019-05-19 22:27:11 +0200304 a_bits := ACT_REL_TO_IMM_ASSIGN
305 }
306 const RSL_IE_ActivationType t_RSL_IE_ActType_ASS := {
307 reactivation := false,
308 reserved := 0,
309 a_bits := ACT_REL_TO_NORM_ASSIGN
310 }
311 const RSL_IE_ActivationType t_RSL_IE_ActType_HO_ASYNC := {
312 reactivation := false,
313 reserved := 0,
314 a_bits := ACT_REL_TO_ASYNC_HANDOVER
315 }
316 const RSL_IE_ActivationType t_RSL_IE_ActType_HO_SYNC := {
317 reactivation := false,
318 reserved := 0,
319 a_bits := ACT_REL_TO_SYNC_HANDOVER
Harald Welte643e2a62017-11-27 15:03:18 +0100320 }
321
Harald Welte94e0c342018-04-07 11:33:23 +0200322 /* osmocom-style dynamic PDCH */
Vadim Yanitskiy58b16532021-10-09 20:27:39 +0600323 const RSL_IE_ActivationType c_RSL_IE_ActType_PDCH := {
Harald Welte94e0c342018-04-07 11:33:23 +0200324 reactivation := false,
325 reserved := 1,
Harald Welte921f9e02019-05-19 22:27:11 +0200326 a_bits := ACT_REL_TO_OSMO_PDCH
Harald Welte94e0c342018-04-07 11:33:23 +0200327 }
328
Vadim Yanitskiye02dbcc2020-08-25 04:20:51 +0700329 /* 9.3.5 */
330 type record RSL_IE_ChannelIdent {
331 uint8_t len,
332 /* 3GPP TS 44.018 Channel Description IE (TV) */
333 ChannelDescriptionTV ch_desc,
334 /* 3GPP TS 44.018 Mobile Allocation IE (shall be empty) */
335 MobileAllocationTLV ma
336 } with { variant (len) "LENGTHTO(ch_desc,ma)" };
337
338 template (value) RSL_IE_ChannelIdent
339 ts_RSL_ChannelIdent(template (value) ChannelDescription ch_desc) := {
340 len := 0, /* overwritten */
341 ch_desc := {
342 iei := '64'O,
343 v := ch_desc
344 },
345 /* Shall be included but empty */
346 ma := {
347 iei := '72'O,
348 v := {
349 len := 0,
350 ma := ''B
351 }
352 }
353 };
354
355 template RSL_IE_ChannelIdent
356 tr_RSL_ChannelIdent(template (present) ChannelDescription ch_desc := ?,
357 template (present) MobileAllocationLV ma := ?) := {
358 len := ?,
359 ch_desc := {
360 iei := '64'O,
361 v := ch_desc
362 },
363 /* Shall be included but empty */
364 ma := {
365 iei := '72'O,
366 v := ma
367 }
368 };
369
Harald Welte643e2a62017-11-27 15:03:18 +0100370 /* 9.3.6 */
371 type enumerated RSL_SpeechDataInd {
372 RSL_SPDI_SPEECH ('00000001'B),
373 RSL_SPDI_DATA ('00000010'B),
374 RSL_SPDI_SIGN ('00000011'B)
375 } with { variant "FIELDLENGTH(8)" };
376 type enumerated RSL_ChanRateType {
377 RSL_CHRT_SDCCH ('00000001'B),
378 RSL_CHRT_TCH_F ('00001000'B),
379 RSL_CHRT_TCH_H ('00001001'B),
380 RSL_CHRT_TCH_F_BD_MSLOT ('00001010'B),
381 RSL_CHRT_TCH_F_DL_MSLOT ('00011010'B),
382 RSL_CHRT_TCH_F_GROUP ('00011000'B),
383 RSL_CHRT_TCH_H_GROUP ('00011001'B),
384 RSL_CHRT_TCH_F_BCAST ('00101000'B),
Neels Hofmeyr2bef0dd2021-04-22 21:46:00 +0000385 RSL_CHRT_TCH_H_BCAST ('00101001'B),
386 RSL_CHRT_OSMO_TCH_F_VAMOS ('10001000'B),
387 RSL_CHRT_OSMO_TCH_H_VAMOS ('10001001'B)
Harald Welte643e2a62017-11-27 15:03:18 +0100388 } with { variant "FIELDLENGTH(8)" };
Oliver Smith0033b122023-02-28 13:30:53 +0100389 type enumerated RSL_ChanModeOct6Signalling {
390 RSL_CMOD_NO_RESOURCE ('00000000'B)
391 } with { variant "FIELDLENGTH(8)" };
392 type enumerated RSL_ChanModeOct6SpeechAlgo {
Harald Welte643e2a62017-11-27 15:03:18 +0100393 RSL_CMOD_SP_GSM1 ('00000001'B),
394 RSL_CMOD_SP_GSM2 ('00010001'B),
395 RSL_CMOD_SP_GSM3 ('00100001'B),
396 RSL_CMOD_SP_GSM4 ('00110001'B),
397 RSL_CMOD_SP_GSM5 ('00001001'B),
398 RSL_CMOD_SP_GSM6 ('00001101'B)
399 } with { variant "FIELDLENGTH(8)" };
Oliver Smith0033b122023-02-28 13:30:53 +0100400 type enumerated RSL_ChanModeOct6DataRate {
401 RSL_CMOD_CSD_NTA_43k5_14k5 ('01100001'B),
402 RSL_CMOD_CSD_NTA_29k0_14k5 ('01100010'B),
403 RSL_CMOD_CSD_NTA_43k5_29k0 ('01100011'B),
404 RSL_CMOD_CSD_NTA_14k5_43k5 ('01101001'B),
405 RSL_CMOD_CSD_NTA_14k5_29k0 ('01101010'B),
406 RSL_CMOD_CSD_NTA_29k0_43k5 ('01101011'B),
407 RSL_CMOD_CSD_NT_43k5 ('01110100'B),
408 RSL_CMOD_CSD_NT_28k8 ('01110001'B),
409 RSL_CMOD_CSD_NT_14k5 ('01011000'B),
410 RSL_CMOD_CSD_NT_12k0 ('01010000'B),
411 RSL_CMOD_CSD_NT_6k0 ('01010001'B),
412 RSL_CMOD_CSD_T_32k0 ('00111000'B),
413 RSL_CMOD_CSD_T_29k0 ('00111001'B),
414 RSL_CMOD_CSD_T_14k4 ('00011000'B),
415 RSL_CMOD_CSD_T_9k6 ('00010000'B),
416 RSL_CMOD_CSD_T_4k8 ('00010001'B),
417 RSL_CMOD_CSD_T_2k4 ('00010010'B),
418 RSL_CMOD_CSD_T_1k2 ('00010011'B),
419 RSL_CMOD_CSD_T_600 ('00010100'B),
420 RSL_CMOD_CSD_T_1200_75 ('00010101'B)
421 } with { variant "FIELDLENGTH(8)" };
422 type union RSL_ChanModeOct6 {
423 RSL_ChanModeOct6Signalling sign,
424 RSL_ChanModeOct6SpeechAlgo speech,
425 RSL_ChanModeOct6DataRate data
426 };
Harald Welte643e2a62017-11-27 15:03:18 +0100427 type record RSL_IE_ChannelMode {
Harald Welte8f2c21d2017-12-07 17:52:40 +0100428 uint8_t len,
Harald Welte643e2a62017-11-27 15:03:18 +0100429 BIT6 reserved,
430 boolean dtx_d,
431 boolean dtx_u,
432 RSL_SpeechDataInd spd_ind,
433 RSL_ChanRateType ch_rate_type,
Oliver Smith0033b122023-02-28 13:30:53 +0100434 RSL_ChanModeOct6 u
435 } with { variant (len) "LENGTHTO(reserved,dtx_d,dtx_u,spd_ind,ch_rate_type,u)"
436 variant (u) "CROSSTAG(
437 sign, spd_ind = RSL_SPDI_SIGN;
438 speech, spd_ind = RSL_SPDI_SPEECH;
439 data, spd_ind = RSL_SPDI_DATA;
440 )"}
Harald Welte643e2a62017-11-27 15:03:18 +0100441
Vadim Yanitskiy8fc43df2020-10-20 02:11:05 +0700442 template (value) RSL_IE_ChannelMode ts_RSL_ChanMode_SIGN(RSL_ChanRateType t := RSL_CHRT_SDCCH,
443 boolean dtx_downlink := false) := {
Harald Welte8f2c21d2017-12-07 17:52:40 +0100444 len := 0, /* overwritten */
Harald Welte643e2a62017-11-27 15:03:18 +0100445 reserved := '000000'B,
Stefan Sperling4880be42018-08-07 18:12:59 +0200446 dtx_d := dtx_downlink,
Harald Welte643e2a62017-11-27 15:03:18 +0100447 dtx_u := false,
448 spd_ind := RSL_SPDI_SIGN,
Philipp Maierac693462020-10-14 20:21:44 +0200449 ch_rate_type := t,
Oliver Smith0033b122023-02-28 13:30:53 +0100450 u := { sign := RSL_CMOD_NO_RESOURCE }
Harald Welte643e2a62017-11-27 15:03:18 +0100451 }
452
Oliver Smith0033b122023-02-28 13:30:53 +0100453 template (value) RSL_IE_ChannelMode ts_RSL_ChanMode(RSL_ChanRateType t, RSL_ChanModeOct6SpeechAlgo alg,
Stefan Sperling4880be42018-08-07 18:12:59 +0200454 boolean dtx_downlink := false) := {
Harald Welte8f2c21d2017-12-07 17:52:40 +0100455 len := 0, /* overwritten */
Harald Welte643e2a62017-11-27 15:03:18 +0100456 reserved := '000000'B,
Stefan Sperling4880be42018-08-07 18:12:59 +0200457 dtx_d := dtx_downlink,
Harald Welte643e2a62017-11-27 15:03:18 +0100458 dtx_u := false,
459 spd_ind := RSL_SPDI_SPEECH,
460 ch_rate_type := t,
Oliver Smith0033b122023-02-28 13:30:53 +0100461 u := { speech := alg }
Harald Welte643e2a62017-11-27 15:03:18 +0100462 }
Harald Welte3618d9d2018-03-21 18:45:27 +0100463 template RSL_IE_ChannelMode tr_RSL_ChanMode(template RSL_ChanRateType t,
Oliver Smith0033b122023-02-28 13:30:53 +0100464 template RSL_ChanModeOct6SpeechAlgo alg) := {
Harald Welte3618d9d2018-03-21 18:45:27 +0100465 len := ?,
466 reserved := '000000'B,
467 dtx_d := ?,
468 dtx_u := ?,
469 spd_ind := RSL_SPDI_SPEECH,
470 ch_rate_type := t,
Oliver Smith0033b122023-02-28 13:30:53 +0100471 u := { speech := alg }
Harald Welte3618d9d2018-03-21 18:45:27 +0100472 }
Harald Welte643e2a62017-11-27 15:03:18 +0100473
Vadim Yanitskiy117c1762020-06-16 01:40:10 +0700474 /* 9.3.4 BS Power IE */
Harald Welte643e2a62017-11-27 15:03:18 +0100475 type record RSL_IE_BS_Power {
Vadim Yanitskiy117c1762020-06-16 01:40:10 +0700476 uint2_t reserved,
Harald Welte643e2a62017-11-27 15:03:18 +0100477 boolean epc,
478 boolean fpc,
Vadim Yanitskiy117c1762020-06-16 01:40:10 +0700479 uint4_t power_level
Harald Welte643e2a62017-11-27 15:03:18 +0100480 }
481
Vadim Yanitskiy117c1762020-06-16 01:40:10 +0700482 template (value) RSL_IE_BS_Power ts_RSL_IE_BS_Power(uint4_t power_level,
Eric Wildae8f2622019-06-18 17:05:11 +0200483 boolean epc := false, boolean fpc := false) := {
484 reserved := 0,
485 epc := epc,
486 fpc := fpc,
487 power_level := power_level
488 }
Vadim Yanitskiy2a5a1ef2021-06-30 00:51:48 +0200489 template RSL_IE_BS_Power
490 tr_RSL_IE_BS_Power(template (present) uint4_t power_level,
491 template (present) boolean epc := ?,
492 template (present) boolean fpc := ?) := {
493 reserved := ?,
494 epc := epc,
495 fpc := fpc,
496 power_level := power_level
497 }
Eric Wildae8f2622019-06-18 17:05:11 +0200498
Harald Welte73cd2712017-12-17 00:44:52 +0100499 /* 9.3.7 */
Harald Weltee613f962018-04-18 22:38:16 +0200500 type enumerated RSL_AlgId {
501 RSL_ALG_ID_A5_0 ('00000001'B),
502 RSL_ALG_ID_A5_1 ('00000010'B),
503 RSL_ALG_ID_A5_2 ('00000011'B),
504 RSL_ALG_ID_A5_3 ('00000100'B),
505 RSL_ALG_ID_A5_4 ('00000101'B),
506 RSL_ALG_ID_A5_5 ('00000110'B),
507 RSL_ALG_ID_A5_6 ('00000111'B),
508 RSL_ALG_ID_A5_7 ('00001000'B)
509 } with { variant "FIELDLENGTH(8)" };
Harald Welte73cd2712017-12-17 00:44:52 +0100510 type record RSL_IE_EncryptionInfo {
511 uint8_t len,
Harald Weltee613f962018-04-18 22:38:16 +0200512 RSL_AlgId alg_id,
Harald Welte73cd2712017-12-17 00:44:52 +0100513 octetstring key
514 } with { variant (len) "LENGTHTO(alg_id,key)" };
515
Harald Weltee613f962018-04-18 22:38:16 +0200516 template RSL_IE_EncryptionInfo tr_RSL_IE_EncrInfo(template RSL_AlgId alg,
517 template octetstring key) := {
Harald Welte73cd2712017-12-17 00:44:52 +0100518 len := ?,
519 alg_id := alg,
520 key := key
521 }
Harald Weltee613f962018-04-18 22:38:16 +0200522 template (value) RSL_IE_EncryptionInfo ts_RSL_IE_EncrInfo(template (value) RSL_AlgId alg,
523 octetstring key) := {
Harald Welteefa7d912018-04-18 23:22:15 +0200524 len := 0, /* overwritten */
525 alg_id := alg,
526 key := key
527 }
528
529
Harald Welte73cd2712017-12-17 00:44:52 +0100530
Harald Welte643e2a62017-11-27 15:03:18 +0100531 /* 9.3.8 */
532 type record RSL_IE_FrameNumber {
533 uint5_t t1_p,
534 uint6_t t3,
535 uint5_t t2
536 }
537 type RSL_IE_FrameNumber RSL_IE_StartingTime;
538
539 /* 9.3.10 */
540 type record RSL_IE_L1Info {
541 uint5_t ms_power_lvl,
542 boolean fpc,
543 uint2_t reserved,
544 uint8_t actual_ta
545 }
546
Neels Hofmeyrafe2ea52021-11-24 15:16:12 +0100547 template (value) RSL_IE_L1Info ts_RSL_IE_L1Info := {
548 ms_power_lvl := 0,
549 fpc := false,
550 reserved := 0,
551 actual_ta := 0
552 };
553
Harald Welte643e2a62017-11-27 15:03:18 +0100554 /* 9.3.13 */
555 type record RSL_IE_MS_Power {
556 uint2_t reserved,
557 boolean fpc_epc,
558 uint5_t power_level
559 }
Pau Espin Pedrolf7630a62019-10-28 15:07:08 +0100560 template RSL_IE_MS_Power tr_RSL_IE_MS_Power(template uint5_t power_level := ?,
561 template boolean fpc_epc := false) := {
562 reserved := 0,
563 fpc_epc := fpc_epc,
564 power_level := power_level
565 }
Harald Welte10280172019-05-19 22:28:04 +0200566 template (value) RSL_IE_MS_Power ts_RSL_IE_MS_Power(uint5_t power_level,
567 boolean fpc_epc := false) := {
568 reserved := 0,
569 fpc_epc := fpc_epc,
570 power_level := power_level
571 }
Harald Welte643e2a62017-11-27 15:03:18 +0100572
Harald Welted5f521e2017-12-07 17:53:06 +0100573 /* 9.3.18 */
574 type record RSL_IE_RachLoad {
575 uint8_t len,
576 uint16_t slot_count,
577 uint16_t busy_count,
578 uint16_t access_count
579 } with { variant (len) "LENGTHTO(slot_count,busy_count,access_count)" }
580
Harald Welteefa7d912018-04-18 23:22:15 +0200581 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 +0100582 len := 0, /* overwritten */
583 slot_count := slot,
584 busy_count := busy,
585 access_count := acc
586 }
587
Harald Welte68e495b2018-02-25 00:05:57 +0100588 template RSL_IE_RachLoad tr_RSL_IE_RachLoad(template uint16_t slot,
589 template uint16_t busy,
590 template uint16_t acc) := {
591 len := ?, /* overwritten */
592 slot_count := slot,
593 busy_count := busy,
594 access_count := acc
595 }
596
Harald Welte643e2a62017-11-27 15:03:18 +0100597 /* 9.3.19 */
598 type record RSL_IE_RequestRef {
599 OCT1 ra,
600 RSL_IE_FrameNumber frame_nr
601 }
602
603 /* 3GPP TS 44.018 / 10.5.2.38 Starting Time */
Harald Welte94e0c342018-04-07 11:33:23 +0200604 template (value) RSL_IE_FrameNumber ts_RSL_IE_FrameNumber(GsmFrameNumber fn) := {
Harald Welte643e2a62017-11-27 15:03:18 +0100605 t1_p := (fn / 1326) mod 32,
606 t3 := fn mod 51,
607 t2 := fn mod 26
608 }
609
Harald Welte9abd1282018-02-19 19:18:17 +0100610 function tr_RSL_IE_FrameNumber(template GsmFrameNumber fn) return template RSL_IE_FrameNumber {
611 if (istemplatekind(fn, "?")) {
612 return ?;
613 } else {
614 return ts_RSL_IE_FrameNumber(valueof(fn));
615 }
616 }
617
Harald Welteefa7d912018-04-18 23:22:15 +0200618 template (value) RSL_IE_RequestRef ts_RSL_IE_ReqRef(OCT1 ra, GsmFrameNumber frame_nr) := {
Harald Welte643e2a62017-11-27 15:03:18 +0100619 ra := ra,
620 frame_nr := ts_RSL_IE_FrameNumber(frame_nr)
621 }
622
Harald Welte9abd1282018-02-19 19:18:17 +0100623 template RSL_IE_RequestRef tr_RSL_IE_ReqRef(template OCT1 ra, template GsmFrameNumber frame_nr) := {
624 ra := ra,
625 frame_nr := tr_RSL_IE_FrameNumber(frame_nr)
626 }
627
Vadim Yanitskiy9f699532021-06-03 17:29:22 +0200628 /* 9.3.21 Resource Information */
629 type record RSL_IE_ResourceInfo {
630 uint8_t len,
631 RSL_ResourceInfo info
632 } with { variant (len) "LENGTHTO(info)" };
633
634 type record of RSL_ResourceInfoItem RSL_ResourceInfo;
635 type record RSL_ResourceInfoItem {
636 RslChannelNr chan_nr,
637 uint3_t interf_band,
638 BIT5 rfu ('00000'B)
639 };
640
641 template (value) RSL_ResourceInfoItem
642 ts_RSL_ResourceInfoItem(template (value) RslChannelNr chan_nr,
643 template (value) uint3_t interf_band := 0) := {
644 chan_nr := chan_nr,
645 interf_band := interf_band,
646 rfu := '00000'B
647 }
648 template RSL_ResourceInfoItem
649 tr_RSL_ResourceInfoItem(template (present) RslChannelNr chan_nr := ?,
650 template (present) uint3_t interf_band := ?) := {
651 chan_nr := chan_nr,
652 interf_band := interf_band,
653 rfu := ? /* Tolerate unknown values */
654 }
655
Harald Welte15de8ba2018-06-29 08:51:42 +0200656 /* Osmocom Extension */
657 type record RSL_IE_UplinkMeasSuppMeasInfo {
658 int16_t toa256_mean,
659 int16_t toa256_min,
660 int16_t toa256_max,
661 uint16_t toa256_std_dev
662 };
663
Harald Welte2691adf2018-02-22 17:32:39 +0100664 /* 9.3.25 */
665 type record RSL_IE_UplinkMeas {
666 uint8_t len,
667 BIT1 rfu,
668 boolean dtx_d,
669 uint6_t rxlev_f_u,
670 BIT2 reserved1,
671 uint6_t rxlev_s_u,
672 BIT2 reserved2,
673 uint3_t rxq_f_u,
674 uint3_t rxq_s_u,
Harald Welte15de8ba2018-06-29 08:51:42 +0200675 RSL_IE_UplinkMeasSuppMeasInfo supp_meas_info optional
Harald Welte2691adf2018-02-22 17:32:39 +0100676 } 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 +0100677
Neels Hofmeyrafe2ea52021-11-24 15:16:12 +0100678 template (value) RSL_IE_UplinkMeas ts_RSL_IE_UplinkMeas(uint6_t rxlev := 12, uint3_t rxqual := 0) := {
679 len := 0, /* overwritten */
680 rfu := '0'B,
681 dtx_d := false,
682 rxlev_f_u := rxlev,
683 reserved1 := '00'B,
684 rxlev_s_u := rxlev,
685 reserved2 := '00'B,
686 rxq_f_u := rxqual,
687 rxq_s_u := rxqual,
688 supp_meas_info := omit
689 };
690
Harald Welte643e2a62017-11-27 15:03:18 +0100691 /* 9.3.26 */
Harald Weltea8ed9062017-12-14 09:46:01 +0100692 type enumerated RSL_Cause {
693 /* normal event */
694 RSL_ERR_RADIO_IF_FAIL ('00'O),
695 RSL_ERR_RADIO_LINK_FAIL ('01'O),
696 RSL_ERR_HANDOVER_ACC_FAIL ('02'O),
697 RSL_ERR_TALKER_ACC_FAIL ('03'O),
698 RSL_ERR_OM_INTERVENTION ('07'O),
699 RSL_ERR_NORMAL_UNSPEC ('0f'O),
700 RSL_ERR_T_MSRFPCI_EXP ('18'O),
701 /* resource unavailable */
702 RSL_ERR_EQUIPMENT_FAIL ('20'O),
703 RSL_ERR_RR_UNAVAIL ('21'O),
704 RSL_ERR_TERR_CH_FAIL ('22'O),
705 RSL_ERR_CCCH_OVERLOAD ('23'O),
706 RSL_ERR_ACCH_OVERLOAD ('24'O),
707 RSL_ERR_PROCESSOR_OVERLOAD ('25'O),
708 RSL_ERR_BTS_NOT_EQUIPPED ('27'O),
709 RSL_ERR_REMOTE_TRAU_FAILURE ('28'O),
710 RSL_ERR_NOTIF_OVERFLOW ('29'O),
711 RSL_ERR_RES_UNAVAIL ('2f'O),
712 /* service or option not available */
713 RSL_ERR_TRANSC_UNAVAIL ('30'O),
714 RSL_ERR_SERV_OPT_UNAVAIL ('3f'O),
715 /* service or option not implemented */
716 RSL_ERR_ENCR_UNIMPL ('40'O),
717 RSL_ERR_SERV_OPT_UNIMPL ('4f'O),
718 /* invalid message */
719 RSL_ERR_RCH_ALR_ACTV_ALLOC ('50'O),
Harald Welte9912eb52018-02-25 13:30:15 +0100720 RSL_ERR_IPA_RCH_NOT_ACTV_ALLOC ('51'O),
721 RSL_ERR_IPA_CONN_INVALID ('52'O),
722 RSL_ERR_IPA_CONN_IN_USE ('53'O),
723 RSL_ERR_IPA_CONN_ALREADY_EXISTS ('54'O),
Harald Weltea8ed9062017-12-14 09:46:01 +0100724 RSL_ERR_INVALID_MESSAGE ('5f'O),
725 /* protocol error */
726 RSL_ERR_MSG_DISCR ('60'O),
727 RSL_ERR_MSG_TYPE ('61'O),
728 RSL_ERR_MSG_SEQ ('62'O),
729 RSL_ERR_IE_ERROR ('63'O),
730 RSL_ERR_MAND_IE_ERROR ('64'O),
731 RSL_ERR_OPT_IE_ERROR ('65'O),
732 RSL_ERR_IE_NONEXIST ('66'O),
733 RSL_ERR_IE_LENGTH ('67'O),
734 RSL_ERR_IE_CONTENT ('68'O),
735 RSL_ERR_PROTO ('6f'O),
736 /* interworking */
737 RSL_ERR_INTERWORKING ('7f'O)
738 };
Harald Welte643e2a62017-11-27 15:03:18 +0100739 type record RSL_IE_Cause {
Harald Welte6efa8e32017-12-09 22:34:06 +0100740 uint8_t len,
Harald Welte643e2a62017-11-27 15:03:18 +0100741 uint1_t e,
742 RSL_Cause cause,
743 octetstring cause_ext optional
Harald Welte6efa8e32017-12-09 22:34:06 +0100744 } with { variant (len) "LENGTHTO(e,cause,cause_ext)" }
Harald Welte643e2a62017-11-27 15:03:18 +0100745
Harald Welteefa7d912018-04-18 23:22:15 +0200746 template (value) RSL_IE_Cause ts_RSL_IE_Cause(RSL_Cause cause) := {
Harald Welte6efa8e32017-12-09 22:34:06 +0100747 len := 0, /* overwritten */
Harald Welte643e2a62017-11-27 15:03:18 +0100748 e := 0,
749 cause := cause,
750 cause_ext := omit
751 }
752
Harald Welte9abd1282018-02-19 19:18:17 +0100753 template RSL_IE_Cause tr_RSL_IE_Cause(template RSL_Cause cause) := {
754 len := ?,
755 e := 0,
756 cause := cause,
757 cause_ext := omit
758 }
759
Harald Weltec8d363c2019-05-19 20:36:48 +0200760 /* 9.3.29 */
761 type record RSL_SacchInfo {
762 uint8_t len,
763 uint8_t num_msgs,
764 RSL_SacchInfoElements elems
765 } with {
766 variant (len) "LENGTHTO(num_msgs,elems)";
767 variant (num_msgs) "LENGTHTO(elems)";
768 variant (num_msgs) "UNIT(elements)"
769 };
770 type record RSL_SacchInfoElement {
771 RSL_IE_SysinfoType si_type,
772 uint8_t len,
773 octetstring msg
774 } with {
775 variant (len) "LENGTHTO(msg)";
776 };
777 type record of RSL_SacchInfoElement RSL_SacchInfoElements;
778 template (value) RSL_SacchInfo ts_RSL_SacchInfo(template (value) RSL_SacchInfoElements elems) := {
779 len := 0, /* overwritten */
780 num_msgs := 0, /* overwritten */
781 elems := elems
782 }
783 template (value) RSL_SacchInfoElement ts_RSL_SacchInfoElem(RSL_IE_SysinfoType tp, octetstring msg) := {
784 si_type := tp,
785 len := lengthof(msg),
786 msg := msg
787 }
788
Eric Wild61edb7e2019-06-03 12:38:31 +0200789 /* 9.3.31 */
790 type record RSL_IE_MS_Power_Parameters {
791 uint8_t len,
792 octetstring params
793 } with {
794 variant (len) "LENGTHTO(params)";
795 };
796 template (value) RSL_IE_MS_Power_Parameters ts_RSL_IE_MS_Power_Parameters(octetstring params) := {
797 len := 0, /* overwritten */
798 params := params
799 }
800
Harald Welte643e2a62017-11-27 15:03:18 +0100801 /* 9.3.40 */
802 type enumerated RSL_ChanNeeded {
803 RSL_CHANNEED_ANY ('00'B),
804 RSL_CHANNEED_SDCCH ('01'B),
805 RSL_CHANNEED_TCH_F ('10'B),
806 RSL_CHANNEED_TCH_ForH ('11'B)
Harald Welte51d74102017-12-10 23:05:02 +0100807 } with { variant "FIELDLENGTH(2)" };
Harald Welte643e2a62017-11-27 15:03:18 +0100808 type record RSL_IE_ChanNeeded {
809 uint6_t reserved,
810 RSL_ChanNeeded chan_needed
811 }
812
Harald Weltecc373202018-09-10 10:28:21 +0200813 /* 9.3.41 CB Command Type */
814 type enumerated RSL_CbCommand {
815 RSL_CB_CMD_NORMAL ('0000'B),
816 RSL_CB_CMD_SCHEDULE ('1000'B),
817 RSL_CB_CMD_DEFAULT ('1110'B),
818 RSL_CB_CMD_NULL ('1111'B)
819 } with { variant "FIELDLENGTH(4)" };
820 type record RSL_IE_CbCommandType {
821 RSL_CbCommand command,
822 boolean default_bcast_null,
823 BIT1 spare,
824 uint2_t last_block
825 };
826 template (value) RSL_IE_CbCommandType ts_RSL_IE_CbCmdType(RSL_CbCommand cmd := RSL_CB_CMD_NORMAL,
827 uint2_t last_block := 1,
828 boolean def_bcast_null := true) := {
829 command := cmd,
830 default_bcast_null := def_bcast_null,
831 spare := '0'B,
832 last_block := last_block
833 }
834
Harald Welte4a129f82019-05-21 16:35:22 +0200835 /* 9.4.43 CBCH Load Information */
836 type record RSL_IE_CbchLoadInfo {
837 boolean overflow,
838 BIT3 spare,
839 uint4_t slot_count
840 };
841 template RSL_IE_CbchLoadInfo tr_CbchLoadInfo(template boolean overflow,
842 template uint4_t slot_count) := {
843 overflow := overflow,
844 spare := ?,
845 slot_count := slot_count
846 }
847 template (value) RSL_IE_CbchLoadInfo ts_CbchLoadInfo(boolean overflow, uint4_t slot_count) := {
848 overflow := overflow,
849 spare := '000'B,
850 slot_count := slot_count
851 }
852
Pau Espin Pedrolf7634dc2022-09-02 17:56:00 +0200853 /* 9.3.52, 3GPP TS 44.018 10.5.2.21aa */
854 type record RSL_IE_MultirateCfg {
855 uint8_t len,
856 uint3_t mr_speech_ver,
857 boolean nscb,
858 boolean icmi,
859 BIT1 spare,
860 uint2_t start_mode,
Vadim Yanitskiyf14e6962022-09-14 15:18:06 +0700861 BIT8 codec_modes,
Pau Espin Pedrolf7634dc2022-09-02 17:56:00 +0200862 octetstring parameters
863 } with {
Vadim Yanitskiyf14e6962022-09-14 15:18:06 +0700864 variant (len) "LENGTHTO(mr_speech_ver,nscb,icmi,spare,start_mode,codec_modes,parameters)"
Pau Espin Pedrolf7634dc2022-09-02 17:56:00 +0200865 };
866 template (value) RSL_IE_MultirateCfg ts_RSL_MultirateCfg(boolean icmi := true, uint2_t start_mode := 0,
Vadim Yanitskiy0345d202022-09-14 16:13:40 +0700867 BIT8 codec_modes := '00000100'B /* 5,90k */,
868 octetstring params := ''O) := {
Vadim Yanitskiy9e0139b2022-09-14 17:41:29 +0700869 len := 2 + lengthof(params),
Pau Espin Pedrolf7634dc2022-09-02 17:56:00 +0200870 mr_speech_ver := 1,
871 nscb := false,
872 icmi := icmi,
873 spare := '0'B,
874 start_mode := start_mode,
Vadim Yanitskiyf14e6962022-09-14 15:18:06 +0700875 codec_modes := codec_modes,
Vadim Yanitskiy0345d202022-09-14 16:13:40 +0700876 parameters := params
Pau Espin Pedrolf7634dc2022-09-02 17:56:00 +0200877 }
878
Harald Welte643e2a62017-11-27 15:03:18 +0100879 /* 9.3.53 */
880 type record RSL_IE_MultirateCtrl {
881 uint3_t spare,
882 boolean od,
883 boolean pre,
884 uint2_t rae,
885 boolean tfo
886 }
887
888 type enumerated RSL_IE_SysinfoType {
889 RSL_SYSTEM_INFO_8 ('00000000'B),
890 RSL_SYSTEM_INFO_1 ('00000001'B),
891 RSL_SYSTEM_INFO_2 ('00000010'B),
892 RSL_SYSTEM_INFO_3 ('00000011'B),
893 RSL_SYSTEM_INFO_4 ('00000100'B),
894 RSL_SYSTEM_INFO_5 ('00000101'B),
895 RSL_SYSTEM_INFO_6 ('00000110'B),
896 RSL_SYSTEM_INFO_7 ('00000111'B),
897 RSL_SYSTEM_INFO_16 ('00001000'B),
898 RSL_SYSTEM_INFO_17 ('00001001'B),
899 RSL_SYSTEM_INFO_2bis ('00001010'B),
900 RSL_SYSTEM_INFO_2ter ('00001011'B),
901 RSL_SYSTEM_INFO_5bis ('00001101'B),
902 RSL_SYSTEM_INFO_5ter ('00001110'B),
903 RSL_SYSTEM_INFO_10 ('00001111'B),
904 RSL_EXT_MEAS_ORDER ('01000111'B),
905 RSL_MEAS_INFO ('01001000'B),
906 RSL_SYSTEM_INFO_13 ('00101000'B),
907 RSL_ERIC_SYSTEM_INFO_13 ('00001100'B),
908 RSL_SYSTEM_INFO_2quater ('00101001'B),
909 RSL_SYSTEM_INFO_9 ('00101010'B),
910 RSL_SYSTEM_INFO_18 ('00101011'B),
911 RSL_SYSTEM_INFO_19 ('00101100'B),
912 RSL_SYSTEM_INFO_20 ('00101101'B)
913 } with { variant "FIELDLENGTH(8)" }
914
Harald Welte9958a4d2017-12-14 21:21:33 +0100915 type record RSL_IE_IPA_ConnectionStats {
916 uint8_t len,
917 uint32_t tx_packets,
918 uint32_t tx_octets,
919 uint32_t rx_packets,
920 uint32_t rx_octets,
921 uint32_t lost_packets,
922 uint32_t jitter,
923 uint32_t avg_delay
924 } with { variant (len) "LENGTHTO(tx_packets,tx_octets,rx_packets,rx_octets,lost_packets,jitter,avg_delay)" }
925
926 type enumerated RSL_IPA_SpeechMode {
927 RSL_IPA_SPM_SENDRECV ('00'B),
928 RSL_IPA_SPM_RECVONLY ('01'B),
929 RSL_IPA_SPM_SENDONLY ('10'B),
930 RSL_IPA_SPM_RESERVED ('11'B)
931 } with { variant "FIELDLENGTH(2)" }
932
933 type enumerated RSL_IPA_Codec {
934 RSL_IPA_CODEC_FR ('0000'B),
935 RSL_IPA_CODEC_EFR ('0001'B),
936 RSL_IPA_CODEC_AMR_F ('0010'B),
937 RSL_IPA_CODEC_HR ('0011'B),
938 RSL_IPA_CODEC_AMR_H ('0101'B),
939 RSL_IPA_CODEC_RTP_PT ('1111'B)
940 } with { variant "FIELDLENGTH(4)" }
941
942 type record RSL_IE_IPA_SpeechMode {
943 BIT2 reserved,
944 RSL_IPA_SpeechMode mode,
945 RSL_IPA_Codec codec
946 }
947
Harald Welte0472ab42018-03-12 15:02:26 +0100948 /* 9.3.20 */
949 type enumerated RSL_IE_ReleaseMode {
950 RSL_REL_MODE_NORMAL ('00'B),
951 REL_REL_MODE_LOCAL ('01'B)
952 }
953
Neels Hofmeyr2bef0dd2021-04-22 21:46:00 +0000954 type record RSL_IE_OSMO_TrainingSequence {
955 uint8_t len,
956 uint8_t tsc_set,
957 uint8_t tsc
958 } with { variant (len) "LENGTHTO(tsc_set,tsc)" }
959
Vadim Yanitskiy1f532152021-11-01 20:37:56 +0300960 type record RSL_IE_OSMO_RepAcchCap {
961 uint8_t len,
962 BIT1 rfu ('0'B),
963 uint3_t rxqual,
964 boolean ul_sacch,
965 boolean dl_sacch,
966 boolean dl_facch_all,
967 boolean dl_facch_cmd
968 } with { variant (len) "LENGTHTO(rfu,rxqual,ul_sacch,dl_sacch,dl_facch_all,dl_facch_cmd)" }
969
Vadim Yanitskiya203d3b2021-11-01 21:32:31 +0300970 type record RSL_IE_OSMO_TopAcchCap {
971 uint8_t len,
972 boolean sacch_enable,
973 boolean facch_enable,
974 uint3_t rxqual,
975 uint3_t overpower_db
976 } with { variant (len) "LENGTHTO(sacch_enable,facch_enable,rxqual,overpower_db)" }
977
Vadim Yanitskiy66d3c332021-11-06 18:18:13 +0300978 template (value) RSL_IE_OSMO_TopAcchCap
979 ts_RSL_IE_OSMO_TopAcchCap(template (value) uint3_t overpower := 2,
980 template (value) uint3_t rxqual := 4,
981 boolean facch_enable := true,
982 boolean sacch_enable := true) := {
983 len := 0, /* overwritten */
984 sacch_enable := sacch_enable,
985 facch_enable := facch_enable,
986 rxqual := rxqual,
987 overpower_db := overpower
988 };
989 template RSL_IE_OSMO_TopAcchCap
990 tr_RSL_IE_OSMO_TopAcchCap(template (present) uint3_t overpower := ?,
991 template (present) uint3_t rxqual := ?,
992 template (present) boolean facch_enable := ?,
993 template (present) boolean sacch_enable := ?) := {
994 len := ?, /* overwritten */
995 sacch_enable := sacch_enable,
996 facch_enable := facch_enable,
997 rxqual := rxqual,
998 overpower_db := overpower
999 };
1000
Pau Espin Pedrol29c6dfb2022-08-08 18:37:56 +02001001 type record RSL_IE_OSMO_Osmux_CID {
1002 uint8_t len,
1003 uint8_t cid
1004 } with { variant (len) "LENGTHTO(cid)" }
1005
1006 template (present) RSL_IE_OSMO_Osmux_CID
1007 tr_RSL_IE_OSMO_Osmux_CID(template (present) uint8_t osmux_cid := ?) := {
1008 len := ?, /* overwritten */
1009 cid := osmux_cid
1010 };
Pau Espin Pedrol39bfa022022-08-12 14:56:12 +02001011 function f_tr_RSL_IE_OSMO_Osmux_CID(template uint8_t osmux_cid := *)
1012 return template RSL_IE_OSMO_Osmux_CID {
1013 var template RSL_IE_OSMO_Osmux_CID ie := omit;
1014 if (not istemplatekind(osmux_cid, "omit")) {
1015 ie := tr_RSL_IE_OSMO_Osmux_CID(osmux_cid);
1016 }
1017 return ie;
1018 }
Pau Espin Pedrol29c6dfb2022-08-08 18:37:56 +02001019 template (value) RSL_IE_OSMO_Osmux_CID
1020 ts_RSL_IE_OSMO_Osmux_CID(template (value) uint8_t osmux_cid) := {
1021 len := 0, /* overwritten */
1022 cid := osmux_cid
1023 };
1024
1025
Harald Welte643e2a62017-11-27 15:03:18 +01001026 /* union of all IE bodies */
1027 type union RSL_IE_Body {
1028 RslChannelNr chan_nr,
1029 RslLinkId link_id,
Harald Welte15bb5b52017-12-07 17:52:04 +01001030 RSL_L16V l3_info,
Harald Welte643e2a62017-11-27 15:03:18 +01001031 RSL_LV rlm_cause,
Harald Welte0472ab42018-03-12 15:02:26 +01001032 RSL_IE_ReleaseMode release_mode,
Harald Welte643e2a62017-11-27 15:03:18 +01001033 RSL_IE_ActivationType act_type,
Vadim Yanitskiye02dbcc2020-08-25 04:20:51 +07001034 RSL_IE_ChannelIdent chan_ident,
Harald Welte643e2a62017-11-27 15:03:18 +01001035 RSL_IE_ChannelMode chan_mode,
1036 uint8_t handover_ref,
1037 RSL_IE_BS_Power bs_power,
Vadim Yanitskiy802508e2020-11-11 07:25:47 +07001038 RSL_LV bs_power_params,
Harald Welte643e2a62017-11-27 15:03:18 +01001039 RSL_IE_MS_Power ms_power,
Eric Wild61edb7e2019-06-03 12:38:31 +02001040 RSL_IE_MS_Power_Parameters ms_power_params,
Harald Welte643e2a62017-11-27 15:03:18 +01001041 uint8_t timing_adv,
Pau Espin Pedrolf7634dc2022-09-02 17:56:00 +02001042 RSL_IE_MultirateCfg multirate_cfg,
Harald Welte643e2a62017-11-27 15:03:18 +01001043 RSL_IE_MultirateCtrl multirate_ctrl,
Harald Weltea6706152019-05-19 20:38:18 +02001044 uint8_t msg_id,
Harald Welte643e2a62017-11-27 15:03:18 +01001045 RSL_IE_FrameNumber frame_nr,
1046 RSL_IE_Cause cause,
1047 uint8_t access_delay,
Harald Welted5f521e2017-12-07 17:53:06 +01001048 RSL_IE_RachLoad rach_load,
Harald Welte643e2a62017-11-27 15:03:18 +01001049 uint8_t meas_res_nr,
Harald Welte2691adf2018-02-22 17:32:39 +01001050 uint8_t ms_timing_offset,
1051 RSL_IE_UplinkMeas uplink_meas,
Harald Welte643e2a62017-11-27 15:03:18 +01001052 RSL_IE_L1Info l1_info,
1053 RSL_IE_SysinfoType sysinfo_type,
1054 uint16_t paging_load,
1055 uint8_t paging_group,
1056 RSL_IE_ChanNeeded chan_needed,
Harald Weltecc373202018-09-10 10:28:21 +02001057 RSL_IE_CbCommandType cb_cmd_type,
1058 RSL_LV smscb_message,
Harald Welte4a129f82019-05-21 16:35:22 +02001059 RSL_IE_CbchLoadInfo cbch_load_info,
Vadim Yanitskiy9f699532021-06-03 17:29:22 +02001060 RSL_IE_ResourceInfo resource_info,
Harald Weltec8d363c2019-05-19 20:36:48 +02001061 RSL_SacchInfo sacch_info,
Harald Weltecc373202018-09-10 10:28:21 +02001062
Harald Welte643e2a62017-11-27 15:03:18 +01001063 RSL_IE_StartingTime starting_time,
Harald Welte73cd2712017-12-17 00:44:52 +01001064 RSL_IE_EncryptionInfo encr_info,
Harald Weltea3ff6702019-05-20 20:03:50 +02001065 uint8_t smscb_chan_ind,
Harald Welte643e2a62017-11-27 15:03:18 +01001066 RSL_IE_RequestRef req_ref,
1067 RSL_LV full_imm_ass_info,
Vadim Yanitskiycc4623d2020-03-28 06:14:06 +07001068 MobileIdentityLV ms_identity,
Harald Welte643e2a62017-11-27 15:03:18 +01001069
Harald Welte9958a4d2017-12-14 21:21:33 +01001070 uint16_t ipa_conn_id,
1071 uint16_t ipa_local_port,
1072 uint16_t ipa_remote_port,
Vadim Yanitskiyfc631642021-07-03 02:42:45 +02001073 OCT4 ipa_local_ip,
1074 OCT4 ipa_remote_ip,
Harald Welte9958a4d2017-12-14 21:21:33 +01001075 uint8_t ipa_rtp_pt,
1076 uint8_t ipa_rtp_pt2,
1077 RSL_IE_IPA_ConnectionStats ipa_stats,
1078 RSL_IE_IPA_SpeechMode ipa_speech_mode,
1079
Neels Hofmeyr2bef0dd2021-04-22 21:46:00 +00001080 RSL_IE_OSMO_TrainingSequence osmo_training_sequence,
Vadim Yanitskiy1f532152021-11-01 20:37:56 +03001081 RSL_IE_OSMO_RepAcchCap rep_acch_cap,
Vadim Yanitskiya203d3b2021-11-01 21:32:31 +03001082 RSL_IE_OSMO_TopAcchCap top_acch_cap,
Pau Espin Pedrol29c6dfb2022-08-08 18:37:56 +02001083 RSL_IE_OSMO_Osmux_CID osmux_cid,
Neels Hofmeyr2bef0dd2021-04-22 21:46:00 +00001084
Harald Welte643e2a62017-11-27 15:03:18 +01001085 RSL_LV other
1086 }
1087
1088 type record RSL_IE {
1089 RSL_IE_Type iei,
1090 RSL_IE_Body body
1091 } with { variant (body) "CROSSTAG(
1092 chan_nr, iei = RSL_IE_CHAN_NR;
1093 link_id, iei = RSL_IE_LINK_IDENT;
1094 l3_info, iei = RSL_IE_L3_INFO;
1095 rlm_cause, iei = RSL_IE_RLM_CAUSE;
1096 release_mode, iei = RSL_IE_RELEASE_MODE;
1097 act_type, iei = RSL_IE_ACT_TYPE;
Vadim Yanitskiye02dbcc2020-08-25 04:20:51 +07001098 chan_ident, iei = RSL_IE_CHAN_IDENT;
Harald Welte643e2a62017-11-27 15:03:18 +01001099 chan_mode, iei = RSL_IE_CHAN_MODE;
1100 handover_ref, iei = RSL_IE_HANDO_REF;
1101 bs_power, iei = RSL_IE_BS_POWER;
Vadim Yanitskiy802508e2020-11-11 07:25:47 +07001102 bs_power_params, iei = RSL_IE_BS_POWER_PARAM;
Harald Welte643e2a62017-11-27 15:03:18 +01001103 ms_power, iei = RSL_IE_MS_POWER;
Eric Wild61edb7e2019-06-03 12:38:31 +02001104 ms_power_params, iei = RSL_IE_MS_POWER_PARAM;
Harald Welte643e2a62017-11-27 15:03:18 +01001105 timing_adv, iei = RSL_IE_TIMING_ADVANCE;
Pau Espin Pedrolf7634dc2022-09-02 17:56:00 +02001106 multirate_cfg, iei = RSL_IE_MR_CONFIG;
Harald Welte643e2a62017-11-27 15:03:18 +01001107 multirate_ctrl, iei = RSL_IE_MR_CONTROL;
Harald Weltea6706152019-05-19 20:38:18 +02001108 msg_id, iei = RSL_IE_MSG_ID;
Harald Welte643e2a62017-11-27 15:03:18 +01001109
1110 frame_nr, iei = RSL_IE_FRAME_NUMBER;
1111 cause, iei = RSL_IE_CAUSE;
1112 access_delay, iei = RSL_IE_ACCESS_DELAY;
Harald Welted5f521e2017-12-07 17:53:06 +01001113 rach_load, iei = RSL_IE_RACH_LOAD;
Harald Welte643e2a62017-11-27 15:03:18 +01001114 meas_res_nr, iei = RSL_IE_MEAS_RES_NR;
Harald Welte2691adf2018-02-22 17:32:39 +01001115 ms_timing_offset, iei = RSL_IE_MS_TIMING_OFFSET;
1116 uplink_meas, iei = RSL_IE_UPLINK_MEAS;
Harald Welte643e2a62017-11-27 15:03:18 +01001117 l1_info, iei = RSL_IE_L1_INFO;
1118 sysinfo_type, iei = RSL_IE_SYSINFO_TYPE;
1119 paging_load, iei = RSL_IE_PAGING_LOAD;
1120 paging_group, iei = RSL_IE_PAGING_GROUP;
1121 chan_needed, iei = RSL_IE_CHAN_NEEDED;
Harald Weltecc373202018-09-10 10:28:21 +02001122 cb_cmd_type, iei = RSL_IE_CB_CMD_TYPE;
1123 smscb_message, iei = RSL_IE_SMSCB_MSG;
Harald Welte4a129f82019-05-21 16:35:22 +02001124 cbch_load_info, iei = RSL_IE_CBCH_LOAD_INFO;
Vadim Yanitskiy9f699532021-06-03 17:29:22 +02001125 resource_info, iei = RSL_IE_RESOURCE_INFO;
Harald Weltec8d363c2019-05-19 20:36:48 +02001126 sacch_info, iei = RSL_IE_SACCH_INFO;
Harald Welte643e2a62017-11-27 15:03:18 +01001127 starting_time, iei = RSL_IE_STARTNG_TIME;
Harald Welte73cd2712017-12-17 00:44:52 +01001128 encr_info, iei = RSL_IE_ENCR_INFO;
Harald Weltea3ff6702019-05-20 20:03:50 +02001129 smscb_chan_ind, iei = RSL_IE_SMSCB_CHAN_INDICATOR;
Harald Welte643e2a62017-11-27 15:03:18 +01001130
1131 req_ref, iei = RSL_IE_REQ_REFERENCE;
Harald Weltefff69302017-12-07 17:53:42 +01001132 full_imm_ass_info, iei = RSL_IE_FULL_IMM_ASS_INFO;
1133 ms_identity, iei = RSL_IE_MS_IDENTITY;
1134 other, iei = RSL_IE_FULL_BCCH_INFO;
Harald Welte643e2a62017-11-27 15:03:18 +01001135
Harald Welte9958a4d2017-12-14 21:21:33 +01001136 ipa_conn_id, iei = RSL_IE_IPAC_CONN_ID;
1137 ipa_remote_ip, iei = RSL_IE_IPAC_REMOTE_IP;
1138 ipa_remote_port, iei = RSL_IE_IPAC_REMOTE_PORT;
1139 ipa_local_ip, iei = RSL_IE_IPAC_LOCAL_IP;
1140 ipa_local_port, iei = RSL_IE_IPAC_LOCAL_PORT;
1141 ipa_rtp_pt, iei = RSL_IE_IPAC_RTP_PAYLOAD;
1142 ipa_rtp_pt2, iei = RSL_IE_IPAC_RTP_PAYLOAD2;
1143 ipa_stats, iei = RSL_IE_IPAC_CONN_STAT;
1144 ipa_speech_mode, iei = RSL_IE_IPAC_SPEECH_MODE;
1145
Neels Hofmeyr2bef0dd2021-04-22 21:46:00 +00001146 osmo_training_sequence, iei = RSL_IE_OSMO_TRAINING_SEQUENCE;
Vadim Yanitskiy1f532152021-11-01 20:37:56 +03001147 rep_acch_cap, iei = RSL_IE_OSMO_REP_ACCH_CAP;
Vadim Yanitskiya203d3b2021-11-01 21:32:31 +03001148 top_acch_cap, iei = RSL_IE_OSMO_TOP_ACCH_CAP;
Pau Espin Pedrol29c6dfb2022-08-08 18:37:56 +02001149 osmux_cid, iei = RSL_IE_OSMO_OSMUX_CID;
Neels Hofmeyr2bef0dd2021-04-22 21:46:00 +00001150
Harald Welte643e2a62017-11-27 15:03:18 +01001151 other, OTHERWISE;
1152 )" };
1153
Harald Welte735dd072017-12-12 14:55:17 +01001154 /* For some reason the TTCN-3 RAW codec cannot automatically figure out the IEI
1155 * that it needs to set for a given union-choice (body). So we have to explicitly
1156 * specify the IEI by the caller :( */
Harald Welteefa7d912018-04-18 23:22:15 +02001157 template (value) RSL_IE t_RSL_IE(RSL_IE_Type iei, template (value) RSL_IE_Body body) := {
Harald Welte735dd072017-12-12 14:55:17 +01001158 iei := iei,
Harald Welte643e2a62017-11-27 15:03:18 +01001159 body := body
1160 }
1161
Harald Weltec2877752017-12-07 17:54:35 +01001162 template RSL_IE tr_RSL_IE(template RSL_IE_Body body) := {
1163 iei := ?, /* overwritten? */
1164 body := body
1165 }
1166
1167
Harald Welte643e2a62017-11-27 15:03:18 +01001168 type record of RSL_IE RSL_IE_List;
1169
1170 type record RSL_Message {
1171 RSL_MessageDiscriminator msg_disc,
1172 RSL_MessageType msg_type,
1173 RSL_IE_List ies optional
1174 }
1175
1176 external function enc_RSL_Message(in RSL_Message msg) return octetstring
1177 with { extension "prototype(convert) encode(RAW)" };
1178 external function dec_RSL_Message(in octetstring stream) return RSL_Message
1179 with { extension "prototype(convert) decode(RAW)" };
1180
Harald Weltebc330be2017-12-09 00:56:36 +01001181 template RSL_Message tr_RSL_MsgDiscType(template RSL_MessageDiscriminator m_disc,
Harald Welte643e2a62017-11-27 15:03:18 +01001182 RSL_MessageType m_type) := {
1183 msg_disc := m_disc,
1184 msg_type := m_type,
1185 ies := *
1186 }
1187
Harald Welteefa7d912018-04-18 23:22:15 +02001188 template (value) RSL_Message ts_RSL_MsgDiscType(template (value) RSL_MessageDiscriminator m_disc,
1189 template (value) RSL_MessageType msg_type,
1190 template (omit) RSL_IE_List ies := omit) := {
Harald Welte4a267362017-12-09 17:49:32 +01001191 msg_disc := m_disc,
1192 msg_type := msg_type,
1193 ies := ies
1194 }
1195
Harald Weltebc330be2017-12-09 00:56:36 +01001196template RSL_Message tr_RSL_MsgType(template RSL_MessageType msg_type) := {
1197 msg_disc := ?,
1198 msg_type := msg_type,
1199 ies := *
1200}
1201
1202/* Common Channel Management */
1203template RSL_Message tr_RSL_MsgTypeC(template RSL_MessageType msg_type) modifies tr_RSL_MsgType := {
1204 msg_disc := { RSL_MDISC_CCHAN, ? }
1205}
1206
1207/* RLL */
1208template RSL_Message tr_RSL_MsgTypeR(template RSL_MessageType msg_type) modifies tr_RSL_MsgType := {
1209 msg_disc := { RSL_MDISC_RLL, true }
1210}
1211
1212/* Dedicated Channel Management */
1213template RSL_Message tr_RSL_MsgTypeD(template RSL_MessageType msg_type) modifies tr_RSL_MsgType := {
1214 msg_disc := { RSL_MDISC_DCHAN, ? }
1215}
1216
Vadim Yanitskiybf2aa492022-06-01 00:28:38 +06001217/* TRX Management */
Harald Weltebc330be2017-12-09 00:56:36 +01001218template RSL_Message tr_RSL_MsgTypeT(template RSL_MessageType msg_type) modifies tr_RSL_MsgType := {
1219 msg_disc := { RSL_MDISC_TRX_MGMT, ? }
1220}
1221
1222
1223/* dedicated channel or RLL */
1224template RSL_Message tr_RSL_MsgTypeDR(template RSL_MessageType msg_type) modifies tr_RSL_MsgType := {
Harald Weltee5408222018-01-29 21:57:58 +01001225 msg_disc := ({RSL_MDISC_DCHAN,?}, {RSL_MDISC_RLL,?}, {RSL_MDISC_IPACCESS,false})
Harald Weltebc330be2017-12-09 00:56:36 +01001226}
1227
1228
Harald Welte643e2a62017-11-27 15:03:18 +01001229 /* 8.3.1 BSC -> BTS */
Harald Welteefa7d912018-04-18 23:22:15 +02001230 template (value) RSL_Message ts_RSL_DATA_REQ(template (value) RslChannelNr chan_nr,
1231 template (value) RslLinkId link_id,
1232 octetstring l3_info) := {
Harald Welte643e2a62017-11-27 15:03:18 +01001233 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_RLL, true),
1234 msg_type := RSL_MT_DATA_REQ,
1235 ies :={
Harald Welte735dd072017-12-12 14:55:17 +01001236 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
1237 t_RSL_IE(RSL_IE_LINK_IDENT, RSL_IE_Body:{link_id := link_id}),
1238 t_RSL_IE(RSL_IE_L3_INFO, RSL_IE_Body:{l3_info := ts_RSL_L16V(l3_info)})
Harald Welte643e2a62017-11-27 15:03:18 +01001239 }
1240 }
1241
Harald Welte7794d5b2017-12-16 23:00:20 +01001242 template RSL_Message tr_RSL_DATA_REQ(template RslChannelNr chan_nr :=?,
1243 template RslLinkId link_id := ?,
1244 template octetstring l3_info := ?) := {
Harald Welteefa7d912018-04-18 23:22:15 +02001245 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_RLL, true),
Harald Welte7794d5b2017-12-16 23:00:20 +01001246 msg_type := RSL_MT_DATA_REQ,
1247 ies :={
1248 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
1249 tr_RSL_IE(RSL_IE_Body:{link_id := link_id}),
1250 tr_RSL_IE(RSL_IE_Body:{l3_info := tr_RSL_L16V(l3_info)})
1251 }
1252 }
1253
1254
Harald Welte643e2a62017-11-27 15:03:18 +01001255 /* 8.3.2 BTS -> BSC */
Harald Welteefa7d912018-04-18 23:22:15 +02001256 template (value) RSL_Message ts_RSL_DATA_IND(template (value) RslChannelNr chan_nr,
1257 template (value) RslLinkId link_id,
1258 octetstring l3_info) := {
Harald Welte643e2a62017-11-27 15:03:18 +01001259 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_RLL, true),
1260 msg_type := RSL_MT_DATA_IND,
1261 ies :={
Harald Welte735dd072017-12-12 14:55:17 +01001262 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
1263 t_RSL_IE(RSL_IE_LINK_IDENT, RSL_IE_Body:{link_id := link_id}),
1264 t_RSL_IE(RSL_IE_L3_INFO, RSL_IE_Body:{l3_info := ts_RSL_L16V(l3_info)})
Harald Welte643e2a62017-11-27 15:03:18 +01001265 }
1266 }
Harald Welte9abd1282018-02-19 19:18:17 +01001267 template RSL_Message tr_RSL_DATA_IND(template RslChannelNr chan_nr, template RslLinkId link_id,
1268 template octetstring l3_info := ?) := {
Harald Welteefa7d912018-04-18 23:22:15 +02001269 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_RLL, true),
Harald Welte9abd1282018-02-19 19:18:17 +01001270 msg_type := RSL_MT_DATA_IND,
1271 ies :={
1272 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
1273 tr_RSL_IE(RSL_IE_Body:{link_id := link_id}),
1274 tr_RSL_IE(RSL_IE_Body:{l3_info := tr_RSL_L16V(l3_info)})
1275 }
1276 }
Harald Welte643e2a62017-11-27 15:03:18 +01001277
1278 /* 8.3.3 BTS -> BSC */
Harald Welteefa7d912018-04-18 23:22:15 +02001279 template (value) RSL_Message ts_RSL_ERROR_IND(template (value) RslChannelNr chan_nr,
Harald Weltea7d81f12019-06-02 22:33:19 +02001280 template (value) RslLinkId link_id,
1281 template (value) octetstring rlm_cause) := {
Harald Welte643e2a62017-11-27 15:03:18 +01001282 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_RLL, false),
1283 msg_type := RSL_MT_ERROR_IND,
1284 ies :={
Harald Welte735dd072017-12-12 14:55:17 +01001285 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
1286 t_RSL_IE(RSL_IE_LINK_IDENT, RSL_IE_Body:{link_id := link_id}),
Harald Weltea7d81f12019-06-02 22:33:19 +02001287 t_RSL_IE(RSL_IE_CAUSE, RSL_IE_Body:{rlm_cause := ts_RSL_LV(rlm_cause)})
Harald Welte643e2a62017-11-27 15:03:18 +01001288 }
1289 }
Harald Welte9abd1282018-02-19 19:18:17 +01001290 template RSL_Message tr_RSL_ERROR_IND(template RslChannelNr chan_nr, template RslLinkId link_id,
Harald Weltea7d81f12019-06-02 22:33:19 +02001291 template octetstring rlm_cause := ?) := {
Harald Welteefa7d912018-04-18 23:22:15 +02001292 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_RLL, false),
Harald Welte9abd1282018-02-19 19:18:17 +01001293 msg_type := RSL_MT_ERROR_IND,
1294 ies :={
1295 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
1296 tr_RSL_IE(RSL_IE_Body:{link_id := link_id}),
Harald Weltea7d81f12019-06-02 22:33:19 +02001297 tr_RSL_IE(RSL_IE_Body:{rlm_cause := tr_RSL_LV(rlm_cause)})
Harald Welte9abd1282018-02-19 19:18:17 +01001298 }
1299 }
Harald Welte643e2a62017-11-27 15:03:18 +01001300
Harald Welteefa7d912018-04-18 23:22:15 +02001301 /* 8.3.4 BTS <- BSC */
1302 template (value) RSL_Message ts_RSL_EST_REQ(template (value) RslChannelNr chan_nr,
1303 template (value) RslLinkId link_id) := {
1304 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_RLL, false),
1305 msg_type := RSL_MT_EST_REQ,
1306 ies := {
1307 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
1308 t_RSL_IE(RSL_IE_LINK_IDENT, RSL_IE_Body:{link_id := link_id})
1309 }
1310 }
1311 template RSL_Message tr_RSL_EST_REQ(template RslChannelNr chan_nr, template RslLinkId link_id) := {
1312 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_RLL, false),
1313 msg_type := RSL_MT_EST_REQ,
1314 ies := {
1315 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
1316 tr_RSL_IE(RSL_IE_Body:{link_id := link_id})
1317 }
1318 }
1319
1320 /* 8.3.5 BTS -> BSC */
1321 template (value) RSL_Message ts_RSL_EST_CONF(template (value) RslChannelNr chan_nr,
1322 template (value) RslLinkId link_id) := {
1323 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_RLL, false),
1324 msg_type := RSL_MT_EST_CONF,
1325 ies := {
1326 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
1327 t_RSL_IE(RSL_IE_LINK_IDENT, RSL_IE_Body:{link_id := link_id})
1328 }
1329 }
1330 template RSL_Message tr_RSL_EST_CONF(template RslChannelNr chan_nr, template RslLinkId link_id) := {
1331 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_RLL, false),
1332 msg_type := RSL_MT_EST_CONF,
1333 ies := {
1334 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
1335 tr_RSL_IE(RSL_IE_Body:{link_id := link_id})
1336 }
1337 }
1338
Harald Welte643e2a62017-11-27 15:03:18 +01001339 /* 8.3.6 BTS -> BSC */
Harald Welteefa7d912018-04-18 23:22:15 +02001340 template (value) RSL_Message ts_RSL_EST_IND(template (value) RslChannelNr chan_nr,
1341 template (value) RslLinkId link_id,
1342 octetstring l3_info) := {
Harald Welte643e2a62017-11-27 15:03:18 +01001343 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_RLL, false),
1344 msg_type := RSL_MT_EST_IND,
1345 ies := {
Harald Welte735dd072017-12-12 14:55:17 +01001346 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
1347 t_RSL_IE(RSL_IE_LINK_IDENT, RSL_IE_Body:{link_id := link_id}),
1348 t_RSL_IE(RSL_IE_L3_INFO, RSL_IE_Body:{l3_info := ts_RSL_L16V(l3_info)})
Harald Welte643e2a62017-11-27 15:03:18 +01001349 }
1350 }
Harald Welte9abd1282018-02-19 19:18:17 +01001351 template RSL_Message tr_RSL_EST_IND(template RslChannelNr chan_nr, template RslLinkId link_id,
1352 template octetstring l3_info := ?) := {
Harald Welteefa7d912018-04-18 23:22:15 +02001353 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_RLL, false),
Harald Welte9abd1282018-02-19 19:18:17 +01001354 msg_type := RSL_MT_EST_IND,
1355 ies := {
1356 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
1357 tr_RSL_IE(RSL_IE_Body:{link_id := link_id}),
1358 tr_RSL_IE(RSL_IE_Body:{l3_info := tr_RSL_L16V(l3_info)})
1359 }
1360 }
Harald Welte0472ab42018-03-12 15:02:26 +01001361 template RSL_Message tr_RSL_EST_IND_NOL3(template RslChannelNr chan_nr, template RslLinkId link_id) :=
1362{
1363 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_RLL, false),
1364 msg_type := RSL_MT_EST_IND,
1365 ies := {
1366 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
1367 tr_RSL_IE(RSL_IE_Body:{link_id := link_id})
1368 }
1369 }
1370
Harald Welte643e2a62017-11-27 15:03:18 +01001371
1372 /* 8.3.7 BSC -> BTS */
Harald Welteefa7d912018-04-18 23:22:15 +02001373 template (value) RSL_Message ts_RSL_REL_REQ(template (value) RslChannelNr chan_nr,
Harald Welte0472ab42018-03-12 15:02:26 +01001374 template (value) RslLinkId link_id,
1375 template (value) RSL_IE_ReleaseMode rel_mode := RSL_REL_MODE_NORMAL) := {
Harald Welte643e2a62017-11-27 15:03:18 +01001376 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_RLL, false),
1377 msg_type := RSL_MT_REL_REQ,
1378 ies :={
Harald Welte735dd072017-12-12 14:55:17 +01001379 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
Harald Welte0472ab42018-03-12 15:02:26 +01001380 t_RSL_IE(RSL_IE_LINK_IDENT, RSL_IE_Body:{link_id := link_id}),
1381 t_RSL_IE(RSL_IE_RELEASE_MODE, RSL_IE_Body:{release_mode := rel_mode})
Harald Welte643e2a62017-11-27 15:03:18 +01001382 }
1383 }
Harald Weltee8a5ab12017-12-09 22:34:57 +01001384 template RSL_Message tr_RSL_REL_REQ(template RslChannelNr chan_nr,
Harald Welte0472ab42018-03-12 15:02:26 +01001385 template RslLinkId link_id,
1386 template RSL_IE_ReleaseMode rel_mode := ?) := {
Harald Welteefa7d912018-04-18 23:22:15 +02001387 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_RLL, false),
Harald Weltee8a5ab12017-12-09 22:34:57 +01001388 msg_type := RSL_MT_REL_REQ,
1389 ies :={
1390 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
1391 tr_RSL_IE(RSL_IE_Body:{link_id := link_id}),
Harald Welte0472ab42018-03-12 15:02:26 +01001392 tr_RSL_IE(RSL_IE_Body:{release_mode := rel_mode})
Harald Weltee8a5ab12017-12-09 22:34:57 +01001393 }
1394 }
Harald Welte643e2a62017-11-27 15:03:18 +01001395
1396 /* 8.3.8 BTS -> BSC */
Harald Welteefa7d912018-04-18 23:22:15 +02001397 template (value) RSL_Message ts_RSL_REL_CONF(template (value) RslChannelNr chan_nr,
1398 template (value) RslLinkId link_id) := {
Harald Welte643e2a62017-11-27 15:03:18 +01001399 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_RLL, false),
1400 msg_type := RSL_MT_REL_CONF,
1401 ies :={
Harald Welte735dd072017-12-12 14:55:17 +01001402 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
1403 t_RSL_IE(RSL_IE_LINK_IDENT, RSL_IE_Body:{link_id := link_id})
Harald Welte643e2a62017-11-27 15:03:18 +01001404 }
1405 }
Harald Welte9abd1282018-02-19 19:18:17 +01001406 template RSL_Message tr_RSL_REL_CONF(template RslChannelNr chan_nr, template RslLinkId link_id) := {
Harald Welteefa7d912018-04-18 23:22:15 +02001407 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_RLL, false),
Harald Welte9abd1282018-02-19 19:18:17 +01001408 msg_type := RSL_MT_REL_CONF,
1409 ies :={
1410 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
1411 tr_RSL_IE(RSL_IE_Body:{link_id := link_id})
1412 }
1413 }
Harald Welte643e2a62017-11-27 15:03:18 +01001414
1415 /* 8.3.9 BTS -> BSC */
Harald Welteefa7d912018-04-18 23:22:15 +02001416 template (value) RSL_Message ts_RSL_REL_IND(template (value) RslChannelNr chan_nr,
1417 template (value) RslLinkId link_id) := {
Harald Welte643e2a62017-11-27 15:03:18 +01001418 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_RLL, false),
1419 msg_type := RSL_MT_REL_IND,
1420 ies :={
Harald Welte735dd072017-12-12 14:55:17 +01001421 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
1422 t_RSL_IE(RSL_IE_LINK_IDENT, RSL_IE_Body:{link_id := link_id})
Harald Welte643e2a62017-11-27 15:03:18 +01001423 }
1424 }
Harald Welte9abd1282018-02-19 19:18:17 +01001425 template RSL_Message tr_RSL_REL_IND(template RslChannelNr chan_nr, template RslLinkId link_id) := {
Harald Welteefa7d912018-04-18 23:22:15 +02001426 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_RLL, false),
Harald Welte9abd1282018-02-19 19:18:17 +01001427 msg_type := RSL_MT_REL_IND,
1428 ies :={
1429 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
1430 tr_RSL_IE(RSL_IE_Body:{link_id := link_id})
1431 }
1432 }
Harald Welte643e2a62017-11-27 15:03:18 +01001433
1434 /* 8.3.10 BSC -> BTS */
Harald Welteefa7d912018-04-18 23:22:15 +02001435 template (value) RSL_Message ts_RSL_UNITDATA_REQ(template (value) RslChannelNr chan_nr,
1436 template (value) RslLinkId link_id,
1437 octetstring l3_info)
Harald Welte643e2a62017-11-27 15:03:18 +01001438 modifies ts_RSL_DATA_REQ := {
1439 msg_type := RSL_MT_UNIT_DATA_REQ
1440 }
Harald Welte0472ab42018-03-12 15:02:26 +01001441 template RSL_Message tr_RSL_UNITDATA_REQ(template RslChannelNr chan_nr,
1442 template RslLinkId link_id,
Vadim Yanitskiy8f98d3f2018-10-03 17:58:10 +07001443 template octetstring l3_info := ?)
Harald Welte0472ab42018-03-12 15:02:26 +01001444 modifies tr_RSL_DATA_REQ := {
1445 msg_type := RSL_MT_UNIT_DATA_REQ
1446 }
1447
Harald Welte643e2a62017-11-27 15:03:18 +01001448
1449 /* 8.3.11 BTS -> BSC */
Harald Welteefa7d912018-04-18 23:22:15 +02001450 template (value) RSL_Message ts_RSL_UNITDATA_IND(template (value) RslChannelNr chan_nr,
1451 template (value) RslLinkId link_id,
1452 octetstring l3_info)
Harald Welte643e2a62017-11-27 15:03:18 +01001453 modifies ts_RSL_DATA_IND := {
1454 msg_type := RSL_MT_UNIT_DATA_IND
1455 }
Harald Welte0472ab42018-03-12 15:02:26 +01001456 template RSL_Message tr_RSL_UNITDATA_IND(template RslChannelNr chan_nr,
Vadim Yanitskiyfabe0f22018-10-03 17:51:47 +07001457 template RslLinkId link_id,
Vadim Yanitskiy8f98d3f2018-10-03 17:58:10 +07001458 template octetstring l3_info := ?)
Harald Welte0472ab42018-03-12 15:02:26 +01001459 modifies tr_RSL_DATA_IND := {
1460 msg_type := RSL_MT_UNIT_DATA_IND
1461 }
1462
1463
Harald Welte643e2a62017-11-27 15:03:18 +01001464
1465
1466 /* DEDICATED CANNEL MANAGEMENT MESSAGES */
1467
1468 /* 8.4.1 BSC -> BTS */
Harald Welteefa7d912018-04-18 23:22:15 +02001469 template (value) RSL_Message ts_RSL_CHAN_ACT(template (value) RslChannelNr chan_nr,
Harald Welte921f9e02019-05-19 22:27:11 +02001470 template (value) RSL_IE_ChannelMode mode,
1471 template (value) RSL_IE_ActivationType at := t_RSL_IE_ActType_IA) := {
Harald Welte643e2a62017-11-27 15:03:18 +01001472 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
1473 msg_type := RSL_MT_CHAN_ACTIV,
1474 ies :={
Harald Welte735dd072017-12-12 14:55:17 +01001475 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
Harald Welte921f9e02019-05-19 22:27:11 +02001476 t_RSL_IE(RSL_IE_ACT_TYPE, RSL_IE_Body:{act_type := at}),
Harald Welte735dd072017-12-12 14:55:17 +01001477 t_RSL_IE(RSL_IE_CHAN_MODE, RSL_IE_Body:{chan_mode := mode})
Harald Welte643e2a62017-11-27 15:03:18 +01001478 /* lots of optional IEs */
1479 }
1480 }
Harald Welte94e0c342018-04-07 11:33:23 +02001481 template RSL_Message tr_RSL_CHAN_ACT(template RslChannelNr chan_nr,
Harald Welte921f9e02019-05-19 22:27:11 +02001482 template RSL_IE_ChannelMode mode,
1483 template (value) RSL_IE_ActivationType at := t_RSL_IE_ActType_IA) := {
Harald Welteefa7d912018-04-18 23:22:15 +02001484 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
Harald Welte94e0c342018-04-07 11:33:23 +02001485 msg_type := RSL_MT_CHAN_ACTIV,
1486 ies :={
1487 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
Harald Welte921f9e02019-05-19 22:27:11 +02001488 tr_RSL_IE(RSL_IE_Body:{act_type := at}),
Harald Welte94e0c342018-04-07 11:33:23 +02001489 tr_RSL_IE(RSL_IE_Body:{chan_mode := mode}),
1490 /* lots of optional IEs */
1491 *
1492 }
1493 }
Vadim Yanitskiy58b16532021-10-09 20:27:39 +06001494
1495 template (value) RSL_Message
1496 ts_RSL_CHAN_ACT_PDCH(template (value) RslChannelNr chan_nr) := {
1497 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
1498 msg_type := RSL_MT_CHAN_ACTIV,
1499 ies :={
1500 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
1501 t_RSL_IE(RSL_IE_ACT_TYPE, RSL_IE_Body:{act_type := c_RSL_IE_ActType_PDCH})
1502 }
1503 }
1504 template RSL_Message
1505 tr_RSL_CHAN_ACT_PDCH(template (present) RslChannelNr chan_nr) := {
Harald Welteefa7d912018-04-18 23:22:15 +02001506 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
Harald Welte94e0c342018-04-07 11:33:23 +02001507 msg_type := RSL_MT_CHAN_ACTIV,
1508 ies :={
1509 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
Vadim Yanitskiy58b16532021-10-09 20:27:39 +06001510 tr_RSL_IE(RSL_IE_Body:{act_type := c_RSL_IE_ActType_PDCH}),
Harald Welte94e0c342018-04-07 11:33:23 +02001511 /* lots of optional IEs */
1512 *
1513 }
1514 }
1515
Harald Welte643e2a62017-11-27 15:03:18 +01001516
1517 /* 8.4.2 BTS -> BSC */
Harald Welteefa7d912018-04-18 23:22:15 +02001518 template (value) RSL_Message ts_RSL_CHAN_ACT_ACK(template (value) RslChannelNr chan_nr,
1519 GsmFrameNumber fn) := {
Harald Welte643e2a62017-11-27 15:03:18 +01001520 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
1521 msg_type := RSL_MT_CHAN_ACTIV_ACK,
1522 ies :={
Harald Welte735dd072017-12-12 14:55:17 +01001523 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
1524 t_RSL_IE(RSL_IE_FRAME_NUMBER, RSL_IE_Body:{frame_nr := ts_RSL_IE_FrameNumber(fn)})
Harald Welte643e2a62017-11-27 15:03:18 +01001525 }
1526 }
Harald Welte9abd1282018-02-19 19:18:17 +01001527 template RSL_Message tr_RSL_CHAN_ACT_ACK(template RslChannelNr chan_nr) := {
Harald Welteefa7d912018-04-18 23:22:15 +02001528 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
Harald Welte9abd1282018-02-19 19:18:17 +01001529 msg_type := RSL_MT_CHAN_ACTIV_ACK,
1530 ies := {
1531 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
1532 tr_RSL_IE(RSL_IE_Body:{frame_nr := ?})
1533 }
1534 }
Harald Welte643e2a62017-11-27 15:03:18 +01001535
1536 /* 8.4.3 BTS -> BSC */
Harald Welteefa7d912018-04-18 23:22:15 +02001537 template (value) RSL_Message ts_RSL_CHAN_ACT_NACK(template (value) RslChannelNr chan_nr,
1538 RSL_Cause cause) := {
Harald Welte643e2a62017-11-27 15:03:18 +01001539 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
1540 msg_type := RSL_MT_CHAN_ACTIV_NACK,
1541 ies :={
Harald Welte735dd072017-12-12 14:55:17 +01001542 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
1543 t_RSL_IE(RSL_IE_CAUSE, RSL_IE_Body:{cause := ts_RSL_IE_Cause(cause)})
Harald Welte643e2a62017-11-27 15:03:18 +01001544 }
1545 }
Harald Welte9abd1282018-02-19 19:18:17 +01001546 template RSL_Message tr_RSL_CHAN_ACT_NACK(template RslChannelNr chan_nr,
1547 template RSL_Cause cause := ?) := {
Harald Welteefa7d912018-04-18 23:22:15 +02001548 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
Harald Welte9abd1282018-02-19 19:18:17 +01001549 msg_type := RSL_MT_CHAN_ACTIV_NACK,
1550 ies := {
1551 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
1552 tr_RSL_IE(RSL_IE_Body:{cause := ?})
1553 }
1554 }
Harald Welte643e2a62017-11-27 15:03:18 +01001555
1556 /* 8.4.4 BTS -> BSC */
Harald Welteefa7d912018-04-18 23:22:15 +02001557 template (value) RSL_Message ts_RSL_CONN_FAIL_IND(RslChannelNr chan_nr, RSL_Cause cause) := {
Harald Welte643e2a62017-11-27 15:03:18 +01001558 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
1559 msg_type := RSL_MT_CONN_FAIL,
1560 ies :={
Harald Welte735dd072017-12-12 14:55:17 +01001561 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
1562 t_RSL_IE(RSL_IE_CAUSE, RSL_IE_Body:{cause := ts_RSL_IE_Cause(cause)})
Harald Welte643e2a62017-11-27 15:03:18 +01001563 }
1564 }
Harald Welte9abd1282018-02-19 19:18:17 +01001565 template RSL_Message tr_RSL_CONN_FAIL_IND(template RslChannelNr chan_nr,
1566 template RSL_Cause cause := ?) := {
1567 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
1568 msg_type := RSL_MT_CONN_FAIL,
1569 ies :={
1570 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
1571 tr_RSL_IE(RSL_IE_Body:{cause := tr_RSL_IE_Cause(cause)})
1572 }
1573 }
Harald Welte643e2a62017-11-27 15:03:18 +01001574
Harald Weltee8a5ab12017-12-09 22:34:57 +01001575 /* 8.4.5 BSC -> BTS */
1576 template RSL_Message tr_RSL_DEACT_SACCH(template RslChannelNr chan_nr) := {
1577 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
1578 msg_type := RSL_MT_DEACTIVATE_SACCH,
1579 ies := {
1580 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr})
1581 }
1582 }
Harald Welteefa7d912018-04-18 23:22:15 +02001583 template (value) RSL_Message ts_RSL_DEACT_SACCH(template (value) RslChannelNr chan_nr) := {
Harald Welte9abd1282018-02-19 19:18:17 +01001584 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
1585 msg_type := RSL_MT_DEACTIVATE_SACCH,
1586 ies := {
1587 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr})
1588 }
1589 }
1590
Harald Weltee8a5ab12017-12-09 22:34:57 +01001591
Harald Welte73cd2712017-12-17 00:44:52 +01001592 /* 8.4.6 BSC ->BTS */
1593 template RSL_Message tr_RSL_ENCR_CMD(template RslChannelNr chan_nr,
1594 template RslLinkId link_id := ?,
Harald Weltee613f962018-04-18 22:38:16 +02001595 template RSL_AlgId alg := ?,
Harald Welte73cd2712017-12-17 00:44:52 +01001596 template octetstring key := ?,
1597 template octetstring l3_info := ?) := {
Harald Welteefa7d912018-04-18 23:22:15 +02001598 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
Harald Welte73cd2712017-12-17 00:44:52 +01001599 msg_type := RSL_MT_ENCR_CMD,
1600 ies := {
1601 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
1602 tr_RSL_IE(RSL_IE_Body:{encr_info := tr_RSL_IE_EncrInfo(alg, key)}),
1603 tr_RSL_IE(RSL_IE_Body:{link_id := link_id}),
1604 tr_RSL_IE(RSL_IE_Body:{l3_info := tr_RSL_L16V(l3_info)})
1605 }
1606 }
Harald Welteefa7d912018-04-18 23:22:15 +02001607 template (value) RSL_Message ts_RSL_ENCR_CMD(template (value) RslChannelNr chan_nr,
1608 template (value) RslLinkId link_id,
Harald Weltee613f962018-04-18 22:38:16 +02001609 template (value) RSL_AlgId alg, octetstring key,
Harald Welteefa7d912018-04-18 23:22:15 +02001610 octetstring l3_info) := {
Harald Welte9abd1282018-02-19 19:18:17 +01001611 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
1612 msg_type := RSL_MT_ENCR_CMD,
1613 ies := {
1614 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
Harald Welteefa7d912018-04-18 23:22:15 +02001615 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 +01001616 t_RSL_IE(RSL_IE_LINK_IDENT, RSL_IE_Body:{link_id := link_id}),
Harald Welteefa7d912018-04-18 23:22:15 +02001617 t_RSL_IE(RSL_IE_L3_INFO, RSL_IE_Body:{l3_info := ts_RSL_L16V(l3_info)})
Harald Welte9abd1282018-02-19 19:18:17 +01001618 }
1619 }
Harald Welte73cd2712017-12-17 00:44:52 +01001620
Harald Welte2691adf2018-02-22 17:32:39 +01001621 template RSL_Message tr_RSL_MEAS_RES(template RslChannelNr chan_nr,
1622 template uint8_t meas_res_nr := ?,
1623 template RSL_IE_UplinkMeas ul_meas := ?,
1624 template RSL_IE_BS_Power bs_power := ?) := {
Harald Welteefa7d912018-04-18 23:22:15 +02001625 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
Harald Welte2691adf2018-02-22 17:32:39 +01001626 msg_type := RSL_MT_MEAS_RES,
1627 ies := {
1628 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
1629 tr_RSL_IE(RSL_IE_Body:{meas_res_nr := meas_res_nr}),
1630 tr_RSL_IE(RSL_IE_Body:{uplink_meas := ul_meas}),
1631 tr_RSL_IE(RSL_IE_Body:{bs_power := bs_power}),
1632 *
1633 }
1634 }
1635
Vadim Yanitskiy7c29c4e2022-06-18 03:07:50 +07001636 /* Templates for a measurement report that lacks the measurement report
Philipp Maierdd841d32019-12-17 14:44:54 +01001637 * from the MS (l1_info, l3_info and ms timing offset */
Vadim Yanitskiy7c29c4e2022-06-18 03:07:50 +07001638 template (value) RSL_Message
1639 ts_RSL_MEAS_RES_EMPTY(template (value) RslChannelNr chan_nr,
1640 template (value) uint8_t meas_res_nr,
1641 template (value) RSL_IE_UplinkMeas ul_meas,
1642 template (value) RSL_IE_BS_Power bs_power) := {
1643 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
1644 msg_type := RSL_MT_MEAS_RES,
1645 ies := {
1646 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
1647 t_RSL_IE(RSL_IE_MEAS_RES_NR, RSL_IE_Body:{meas_res_nr := meas_res_nr}),
1648 t_RSL_IE(RSL_IE_UPLINK_MEAS, RSL_IE_Body:{uplink_meas := ul_meas}),
1649 t_RSL_IE(RSL_IE_BS_POWER, RSL_IE_Body:{bs_power := bs_power})
1650 }
1651 }
1652 template RSL_Message
1653 tr_RSL_MEAS_RES_EMPTY(template (present) RslChannelNr chan_nr,
1654 template uint8_t meas_res_nr := ?,
1655 template RSL_IE_UplinkMeas ul_meas := ?,
1656 template RSL_IE_BS_Power bs_power := ?) := {
Philipp Maierdd841d32019-12-17 14:44:54 +01001657 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
1658 msg_type := RSL_MT_MEAS_RES,
1659 ies := {
1660 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
1661 tr_RSL_IE(RSL_IE_Body:{meas_res_nr := meas_res_nr}),
1662 tr_RSL_IE(RSL_IE_Body:{uplink_meas := ul_meas}),
1663 tr_RSL_IE(RSL_IE_Body:{bs_power := bs_power})
1664 }
1665 }
1666
Harald Welte39b47be2018-02-23 18:58:48 +01001667 /* Osmocom specific template, require lots of optional fields to be present */
1668 template RSL_Message tr_RSL_MEAS_RES_OSMO(template RslChannelNr chan_nr,
1669 template uint8_t meas_res_nr := ?,
1670 template RSL_IE_UplinkMeas ul_meas := ?,
1671 template RSL_IE_BS_Power bs_power := ?,
1672 template RSL_IE_L1Info l1_info := ?,
1673 template octetstring l3_info := ?,
1674 template uint8_t ms_to := ?) := {
Harald Welteefa7d912018-04-18 23:22:15 +02001675 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
Harald Welte39b47be2018-02-23 18:58:48 +01001676 msg_type := RSL_MT_MEAS_RES,
1677 ies := {
1678 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
1679 tr_RSL_IE(RSL_IE_Body:{meas_res_nr := meas_res_nr}),
1680 tr_RSL_IE(RSL_IE_Body:{uplink_meas := ul_meas}),
1681 tr_RSL_IE(RSL_IE_Body:{bs_power := bs_power}),
1682 tr_RSL_IE(RSL_IE_Body:{l1_info := l1_info}),
1683 tr_RSL_IE(RSL_IE_Body:{l3_info := tr_RSL_L16V(l3_info)}),
1684 tr_RSL_IE(RSL_IE_Body:{ms_timing_offset := ms_to})
1685 }
1686 }
1687
Neels Hofmeyrafe2ea52021-11-24 15:16:12 +01001688 template (value) RSL_Message ts_RSL_MEAS_RES(template (value) RslChannelNr chan_nr,
1689 uint8_t meas_res_nr,
1690 template (value) RSL_IE_UplinkMeas ul_meas,
1691 template (value) RSL_IE_BS_Power bs_power,
1692 template (value) RSL_IE_L1Info l1_info,
1693 octetstring l3_info,
1694 uint8_t ms_to) := {
1695 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
1696 msg_type := RSL_MT_MEAS_RES,
1697 ies := {
1698 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
1699 t_RSL_IE(RSL_IE_MEAS_RES_NR, RSL_IE_Body:{meas_res_nr := meas_res_nr}),
1700 t_RSL_IE(RSL_IE_UPLINK_MEAS, RSL_IE_Body:{uplink_meas := ul_meas}),
1701 t_RSL_IE(RSL_IE_BS_POWER, RSL_IE_Body:{bs_power := bs_power}),
1702 t_RSL_IE(RSL_IE_L1_INFO, RSL_IE_Body:{l1_info := l1_info}),
1703 t_RSL_IE(RSL_IE_L3_INFO, RSL_IE_Body:{l3_info := ts_RSL_L16V(l3_info)}),
1704 t_RSL_IE(RSL_IE_MS_TIMING_OFFSET, RSL_IE_Body:{ms_timing_offset := ms_to})
1705 }
1706 }
1707
Eric Wildf1827a72019-05-28 17:37:35 +02001708 /* 8.4.9 BSC -> BTS */
1709 template (value) RSL_Message ts_RSL_MODE_MODIFY_REQ(template (value) RslChannelNr chan_nr,
1710 template (value) RSL_IE_ChannelMode mode) := {
1711 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
1712 msg_type := RSL_MT_MODE_MODIFY_REQ,
1713 ies :={
1714 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
1715 t_RSL_IE(RSL_IE_CHAN_MODE, RSL_IE_Body:{chan_mode := mode})
1716 /* lots of optional IEs */
1717 }
1718 }
1719 template RSL_Message tr_RSL_MODE_MODIFY_REQ(template RslChannelNr chan_nr,
1720 template RSL_IE_ChannelMode mode) := {
1721 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
1722 msg_type := RSL_MT_MODE_MODIFY_REQ,
1723 ies :={
1724 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
1725 tr_RSL_IE(RSL_IE_Body:{chan_mode := mode}),
1726 /* lots of optional IEs */
1727 *
1728 }
1729 }
Neels Hofmeyr9f3e6ac2021-04-08 23:09:24 +02001730
1731 template RSL_Message tr_RSL_MODE_MODIFY_REQ_with_OSMO_TSC(template RslChannelNr chan_nr,
1732 template RSL_IE_ChannelMode mode,
1733 template uint8_t tsc_set := ?,
1734 template uint8_t tsc := ?) := {
1735 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
1736 msg_type := RSL_MT_MODE_MODIFY_REQ,
1737 ies := {
1738 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
1739 tr_RSL_IE(RSL_IE_Body:{chan_mode := mode}),
1740 tr_RSL_IE(RSL_IE_Body:{osmo_training_sequence := {
1741 len := ?,
1742 tsc_set := tsc_set,
1743 tsc := tsc
1744 }
1745 })
1746 }
1747 };
Pau Espin Pedrol85393122022-09-02 17:56:25 +02001748
Harald Welte7794d5b2017-12-16 23:00:20 +01001749 /* 8.4.10 BTS -> BSC */
Harald Welteefa7d912018-04-18 23:22:15 +02001750 template (value) RSL_Message ts_RSL_MODE_MODIFY_ACK(template (value) RslChannelNr chan_nr) := {
Harald Welte7794d5b2017-12-16 23:00:20 +01001751 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
1752 msg_type := RSL_MT_MODE_MODIFY_ACK,
1753 ies := {
1754 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr})
1755 }
1756 }
Harald Welte9abd1282018-02-19 19:18:17 +01001757 template RSL_Message tr_RSL_MODE_MODIFY_ACK(template RslChannelNr chan_nr) := {
Harald Welteefa7d912018-04-18 23:22:15 +02001758 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
Harald Welte9abd1282018-02-19 19:18:17 +01001759 msg_type := RSL_MT_MODE_MODIFY_ACK,
1760 ies := {
1761 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr})
1762 }
1763 }
Harald Welte7794d5b2017-12-16 23:00:20 +01001764
Harald Welte643e2a62017-11-27 15:03:18 +01001765 /* 8.4.11 BTS -> BSC */
Harald Welteefa7d912018-04-18 23:22:15 +02001766 template (value) RSL_Message ts_RSL_MODE_MODIFY_NACK(template (value) RslChannelNr chan_nr,
1767 RSL_Cause cause) := {
Harald Welte9abd1282018-02-19 19:18:17 +01001768 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
1769 msg_type := RSL_MT_MODE_MODIFY_NACK,
1770 ies := {
1771 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
1772 t_RSL_IE(RSL_IE_CAUSE, RSL_IE_Body:{cause := ts_RSL_IE_Cause(cause)})
1773 }
Harald Welte643e2a62017-11-27 15:03:18 +01001774 }
Harald Welte9abd1282018-02-19 19:18:17 +01001775 template RSL_Message tr_RSL_MODE_MODIFY_NACK(template RslChannelNr chan_nr,
1776 template RSL_Cause cause) := {
Harald Welteefa7d912018-04-18 23:22:15 +02001777 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
Harald Welte9abd1282018-02-19 19:18:17 +01001778 msg_type := RSL_MT_MODE_MODIFY_NACK,
1779 ies := {
1780 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
1781 tr_RSL_IE(RSL_IE_Body:{cause := tr_RSL_IE_Cause(cause)})
1782 }
1783 }
1784
Harald Welte643e2a62017-11-27 15:03:18 +01001785
Harald Welte6a8199d2018-01-29 21:58:53 +01001786 /* 8.4.14: BTS <- BSC */
1787 template RSL_Message tr_RSL_RF_CHAN_REL(template RslChannelNr chan_nr) := {
Harald Welteefa7d912018-04-18 23:22:15 +02001788 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
Harald Welte6a8199d2018-01-29 21:58:53 +01001789 msg_type := RSL_MT_RF_CHAN_REL,
1790 ies := {
1791 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr})
1792 }
1793 }
Harald Welteefa7d912018-04-18 23:22:15 +02001794 template (value) RSL_Message ts_RSL_RF_CHAN_REL(template (value) RslChannelNr chan_nr) := {
Harald Welte9abd1282018-02-19 19:18:17 +01001795 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
1796 msg_type := RSL_MT_RF_CHAN_REL,
1797 ies := {
1798 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr})
1799 }
1800 }
Harald Welte6a8199d2018-01-29 21:58:53 +01001801
Philipp Maier4d1e9c92018-12-20 11:11:56 +01001802 /* 8.4.15: BTS <- BSC */
1803 template (value) RSL_Message ts_RSL_MS_PWR_CTRL(template (value) RslChannelNr chan_nr,
1804 template (value) RSL_IE_MS_Power ms_power) := {
1805 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
1806 msg_type := RSL_MT_MS_POWER_CONTROL,
1807 ies := {
1808 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
1809 t_RSL_IE(RSL_IE_MS_POWER, RSL_IE_Body:{ms_power := ms_power})
1810 /* One optional IE: MS POWER PARAMETERS */
1811 }
1812 }
1813
Eric Wild61edb7e2019-06-03 12:38:31 +02001814 template (value) RSL_Message ts_RSL_MS_PWR_CTRL_with_pp(template (value) RslChannelNr chan_nr,
1815 integer pwr_level) := {
1816 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
1817 msg_type := RSL_MT_MS_POWER_CONTROL,
1818 ies := {
1819 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
1820 t_RSL_IE(RSL_IE_MS_POWER, RSL_IE_Body:{ms_power := ts_RSL_IE_MS_Power(pwr_level)}),
1821 t_RSL_IE(RSL_IE_MS_POWER_PARAM, RSL_IE_Body:{ms_power_params :=
1822 ts_RSL_IE_MS_Power_Parameters(''O)})
1823 }
1824 }
1825
Eric Wildae8f2622019-06-18 17:05:11 +02001826 /* 8.4.16: BTS <- BSC */
1827 template (value) RSL_Message ts_RSL_BS_PWR_CTRL(template (value) RslChannelNr chan_nr,
1828 template (value) RSL_IE_BS_Power bs_power) := {
1829 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
1830 msg_type := RSL_MT_BS_POWER_CONTROL,
1831 ies := {
1832 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
1833 t_RSL_IE(RSL_IE_BS_POWER, RSL_IE_Body:{bs_power := bs_power})
1834 /* One optional IE: BS POWER PARAMETERS */
1835 }
1836 }
Vadim Yanitskiy2a5a1ef2021-06-30 00:51:48 +02001837 template RSL_Message tr_RSL_BS_PWR_CTRL(template (present) RslChannelNr chan_nr,
1838 template (present) RSL_IE_BS_Power bs_power) := {
1839 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
1840 msg_type := RSL_MT_BS_POWER_CONTROL,
1841 ies := {
1842 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
1843 tr_RSL_IE(RSL_IE_Body:{bs_power := bs_power})
1844 /* One optional IE: BS POWER PARAMETERS */
1845 }
1846 }
Eric Wildae8f2622019-06-18 17:05:11 +02001847
Harald Welte4a267362017-12-09 17:49:32 +01001848 /* 8.4.19 BTS -> BSC */
Harald Welteefa7d912018-04-18 23:22:15 +02001849 template (value) RSL_Message ts_RSL_RF_CHAN_REL_ACK(template (value) RslChannelNr chan_nr) :=
Harald Welte4a267362017-12-09 17:49:32 +01001850 ts_RSL_MsgDiscType(ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
1851 RSL_MT_RF_CHAN_REL_ACK,
Harald Welte735dd072017-12-12 14:55:17 +01001852 { t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}) });
Harald Welte4a267362017-12-09 17:49:32 +01001853
Harald Welte9abd1282018-02-19 19:18:17 +01001854 template RSL_Message tr_RSL_RF_CHAN_REL_ACK(template RslChannelNr chan_nr) := {
Harald Welteefa7d912018-04-18 23:22:15 +02001855 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
Harald Welte9abd1282018-02-19 19:18:17 +01001856 msg_type := RSL_MT_RF_CHAN_REL_ACK,
1857 ies := {
Harald Welteefa7d912018-04-18 23:22:15 +02001858 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr})
Harald Welte9abd1282018-02-19 19:18:17 +01001859 }
1860 }
1861
Harald Welteea17b912018-03-11 22:29:31 +01001862 /* 8.6.20 BTS <- BSC */
Harald Welteefa7d912018-04-18 23:22:15 +02001863 template (value) RSL_Message ts_RSL_SACCH_INF_MOD(template (value) RslChannelNr chan_nr,
1864 RSL_IE_SysinfoType si_type,
1865 octetstring l3_info) := {
Harald Welteea17b912018-03-11 22:29:31 +01001866 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
1867 msg_type := RSL_MT_SACCH_INFO_MODIFY,
1868 ies := {
1869 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
1870 t_RSL_IE(RSL_IE_SYSINFO_TYPE, RSL_IE_Body:{sysinfo_type := si_type}),
1871 t_RSL_IE(RSL_IE_L3_INFO, RSL_IE_Body:{l3_info := ts_RSL_L16V(l3_info)})
1872 }
1873 }
1874
Neels Hofmeyr378a49c2018-06-15 22:18:43 +02001875 /* 8.4.7 BTS -> BSC */
1876 template (value) RSL_Message ts_RSL_HANDO_DET(template (value) RslChannelNr chan_nr) := {
1877 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
1878 msg_type := RSL_MT_HANDO_DET,
1879 ies := {
1880 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr})
1881 }
1882 }
Vadim Yanitskiy7c2c10c2019-05-31 20:42:01 +07001883 template RSL_Message tr_RSL_HANDO_DET(template RslChannelNr chan_nr,
1884 template uint8_t acc_delay := ?) := {
1885 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
1886 msg_type := RSL_MT_HANDO_DET,
1887 ies := {
1888 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
1889 tr_RSL_IE(RSL_IE_Body:{access_delay := acc_delay})
1890 }
1891 }
Neels Hofmeyr378a49c2018-06-15 22:18:43 +02001892
Harald Welteea17b912018-03-11 22:29:31 +01001893
Harald Welte643e2a62017-11-27 15:03:18 +01001894 /* COMMON CHANNEL MANAGEMENT MESSAGES */
1895
Harald Welte874c2232018-02-24 04:52:43 +01001896 /* 8.5.1 BTS <- BSC */
Harald Welteefa7d912018-04-18 23:22:15 +02001897 template (value) RSL_Message ts_RSL_BCCH_INFO(RSL_IE_SysinfoType si_type,
1898 octetstring full_bcch_info) := {
Harald Welte874c2232018-02-24 04:52:43 +01001899 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_CCHAN, false),
1900 msg_type := RSL_MT_BCCH_INFO,
1901 ies := {
Harald Welteefa7d912018-04-18 23:22:15 +02001902 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := ts_RslChanNr_BCCH(0)}),
Harald Welte874c2232018-02-24 04:52:43 +01001903 t_RSL_IE(RSL_IE_SYSINFO_TYPE, RSL_IE_Body:{sysinfo_type := si_type}),
1904 t_RSL_IE(RSL_IE_FULL_BCCH_INFO, RSL_IE_Body:{other := ts_RSL_LV(full_bcch_info)})
1905 }
1906 }
Harald Welte09538f82019-08-01 09:50:25 +02001907 template RSL_Message tr_RSL_NO_BCCH_INFO(template RSL_IE_SysinfoType si_type := ?) := {
1908 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_CCHAN, false),
1909 msg_type := RSL_MT_BCCH_INFO,
1910 ies := {
1911 tr_RSL_IE(RSL_IE_Body:{chan_nr := ts_RslChanNr_BCCH(0)}),
1912 tr_RSL_IE(RSL_IE_Body:{sysinfo_type := si_type})
1913 }
1914 }
1915 template RSL_Message tr_RSL_BCCH_INFO(template RSL_IE_SysinfoType si_type := ?,
1916 template octetstring full_bcch_info := ?) := {
1917 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_CCHAN, false),
1918 msg_type := RSL_MT_BCCH_INFO,
1919 ies := {
1920 tr_RSL_IE(RSL_IE_Body:{chan_nr := ts_RslChanNr_BCCH(0)}),
1921 tr_RSL_IE(RSL_IE_Body:{sysinfo_type := si_type}),
1922 tr_RSL_IE(RSL_IE_Body:{other := tr_RSL_LV(full_bcch_info)}),
1923 *
1924 }
1925 }
Harald Welte874c2232018-02-24 04:52:43 +01001926
Harald Welte7ae93142017-12-07 17:56:15 +01001927 /* 8.5.2 BTS -> BSC */
Harald Welteefa7d912018-04-18 23:22:15 +02001928 template (value) RSL_Message ts_RSL_RACH_LOAD_IND(uint16_t slot_ct, uint16_t busy_ct,
1929 uint16_t acc_ct) := {
Harald Welte7ae93142017-12-07 17:56:15 +01001930 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_CCHAN, false),
1931 msg_type := RSL_MT_CCCH_LOAD_IND,
1932 ies := {
Harald Welteefa7d912018-04-18 23:22:15 +02001933 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := ts_RslChanNr_RACH(0)}),
Harald Welte735dd072017-12-12 14:55:17 +01001934 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 +01001935 }
1936 }
Harald Welte68e495b2018-02-25 00:05:57 +01001937 template RSL_Message tr_RSL_RACH_LOAD_IND(template uint16_t slot_ct := ?,
1938 template uint16_t busy_ct := ?,
Harald Welte09538f82019-08-01 09:50:25 +02001939 template uint16_t acc_ct := ?) := {
Harald Welteefa7d912018-04-18 23:22:15 +02001940 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_CCHAN, false),
Harald Welte68e495b2018-02-25 00:05:57 +01001941 msg_type := RSL_MT_CCCH_LOAD_IND,
1942 ies := {
1943 tr_RSL_IE(RSL_IE_Body:{chan_nr := t_RslChanNr_RACH(0)}),
1944 tr_RSL_IE(RSL_IE_Body:{rach_load := tr_RSL_IE_RachLoad(slot_ct, busy_ct, acc_ct)})
1945 }
1946 }
1947
Harald Welteefa7d912018-04-18 23:22:15 +02001948 template (value) RSL_Message ts_RSL_PAGING_LOAD_IND(uint16_t buffer_space) := {
Harald Welte7ae93142017-12-07 17:56:15 +01001949 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_CCHAN, false),
1950 msg_type := RSL_MT_CCCH_LOAD_IND,
1951 ies := {
Harald Welteefa7d912018-04-18 23:22:15 +02001952 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := ts_RslChanNr_PCH_AGCH(0)}),
Harald Welte735dd072017-12-12 14:55:17 +01001953 t_RSL_IE(RSL_IE_PAGING_LOAD, RSL_IE_Body:{paging_load := buffer_space})
Harald Welte7ae93142017-12-07 17:56:15 +01001954 }
1955 }
Harald Welte68e495b2018-02-25 00:05:57 +01001956 template RSL_Message tr_RSL_PAGING_LOAD_IND(template uint16_t buffer_space := ?) := {
Harald Welteefa7d912018-04-18 23:22:15 +02001957 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_CCHAN, false),
Harald Welte68e495b2018-02-25 00:05:57 +01001958 msg_type := RSL_MT_CCCH_LOAD_IND,
1959 ies := {
1960 tr_RSL_IE(RSL_IE_Body:{chan_nr := t_RslChanNr_PCH_AGCH(0)}),
1961 tr_RSL_IE(RSL_IE_Body:{paging_load := buffer_space})
1962 }
1963 }
1964
Harald Welte7ae93142017-12-07 17:56:15 +01001965
Harald Welte643e2a62017-11-27 15:03:18 +01001966 /* 8.5.3 BTS -> BSC */
Vadim Yanitskiyab448a52019-05-31 20:24:03 +07001967 template (value) RSL_Message ts_RSL_CHAN_RQD(OCT1 ra, GsmFrameNumber fn,
1968 template (value) RslChannelNr chan_nr := ts_RslChanNr_RACH(0),
1969 uint8_t acc_del := 0) := {
Harald Welte643e2a62017-11-27 15:03:18 +01001970 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_CCHAN, false),
1971 msg_type := RSL_MT_CHAN_RQD,
1972 ies := {
Vadim Yanitskiyab448a52019-05-31 20:24:03 +07001973 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
1974 /* TODO: we may need to have optional RSL_IE_LINK_IDENT IE here */
Harald Welte735dd072017-12-12 14:55:17 +01001975 t_RSL_IE(RSL_IE_REQ_REFERENCE, RSL_IE_Body:{req_ref := ts_RSL_IE_ReqRef(ra, fn)}),
1976 t_RSL_IE(RSL_IE_ACCESS_DELAY, RSL_IE_Body:{access_delay := acc_del})
Harald Welte643e2a62017-11-27 15:03:18 +01001977 }
1978 }
Harald Welte9abd1282018-02-19 19:18:17 +01001979 template RSL_Message tr_RSL_CHAN_RQD(template OCT1 ra, template GsmFrameNumber fn := ?,
Vadim Yanitskiyab448a52019-05-31 20:24:03 +07001980 template RslChannelNr chan_nr := ts_RslChanNr_RACH(0),
1981 template uint8_t acc_del := ?) := {
Harald Welteefa7d912018-04-18 23:22:15 +02001982 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_CCHAN, false),
Harald Welte9abd1282018-02-19 19:18:17 +01001983 msg_type := RSL_MT_CHAN_RQD,
1984 ies := {
Vadim Yanitskiyab448a52019-05-31 20:24:03 +07001985 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
1986 /* TODO: we may need to have optional RSL_IE_LINK_IDENT IE here */
Harald Welte9abd1282018-02-19 19:18:17 +01001987 tr_RSL_IE(RSL_IE_Body:{req_ref := tr_RSL_IE_ReqRef(ra, fn)}),
1988 tr_RSL_IE(RSL_IE_Body:{access_delay := acc_del})
1989 }
1990 }
Harald Welte643e2a62017-11-27 15:03:18 +01001991
1992 /* 8.5.4 BTS -> BSC */
Harald Welteefa7d912018-04-18 23:22:15 +02001993 template (value) RSL_Message ts_DELETE_IND(template (value) RslChannelNr chan_nr,
1994 octetstring imm_ass) := {
Harald Welte643e2a62017-11-27 15:03:18 +01001995 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_CCHAN, false),
1996 msg_type := RSL_MT_DELETE_IND,
1997 ies := {
Harald Welte735dd072017-12-12 14:55:17 +01001998 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
1999 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 +01002000 }
2001 }
Harald Weltee8d750e2018-06-10 21:41:35 +02002002 template RSL_Message tr_RSL_DELETE_IND(template octetstring imm_ass := ?, template uint3_t tn) := {
2003 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_CCHAN, false),
2004 msg_type := RSL_MT_DELETE_IND,
2005 ies := {
2006 tr_RSL_IE(RSL_IE_Body:{chan_nr := t_RslChanNr_PCH_AGCH(tn)}),
2007 tr_RSL_IE(RSL_IE_Body:{full_imm_ass_info := tr_RSL_LV(imm_ass)}),
2008 *
2009 }
2010 }
Harald Welte643e2a62017-11-27 15:03:18 +01002011
Harald Weltec2877752017-12-07 17:54:35 +01002012 /* 8.5.5 BSC -> BTS */
Vadim Yanitskiycc4623d2020-03-28 06:14:06 +07002013 template RSL_Message tr_RSL_PAGING_CMD(template MobileIdentityV mi, template uint3_t tn := ?) := {
Harald Welteefa7d912018-04-18 23:22:15 +02002014 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_CCHAN, false),
Harald Weltec2877752017-12-07 17:54:35 +01002015 msg_type := RSL_MT_PAGING_CMD,
2016 ies := {
2017 tr_RSL_IE(RSL_IE_Body:{chan_nr := t_RslChanNr_PCH_AGCH(tn)}),
2018 tr_RSL_IE(RSL_IE_Body:{paging_group := ?}),
Vadim Yanitskiycc4623d2020-03-28 06:14:06 +07002019 tr_RSL_IE(RSL_IE_Body:{ms_identity := tr_MI_LV(mi)}),
Harald Weltec2877752017-12-07 17:54:35 +01002020 * /* opt: channel needed, eMLPP prio */
2021 }
2022 }
Vadim Yanitskiycc4623d2020-03-28 06:14:06 +07002023 template (value) RSL_Message ts_RSL_PAGING_CMD(MobileIdentityV mi, uint8_t pg, uint3_t tn := 0) := {
Harald Welte9abd1282018-02-19 19:18:17 +01002024 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_CCHAN, false),
2025 msg_type := RSL_MT_PAGING_CMD,
2026 ies := {
Harald Welteefa7d912018-04-18 23:22:15 +02002027 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := ts_RslChanNr_PCH_AGCH(tn)}),
Harald Welte9abd1282018-02-19 19:18:17 +01002028 t_RSL_IE(RSL_IE_PAGING_GROUP, RSL_IE_Body:{paging_group := pg}),
Vadim Yanitskiycc4623d2020-03-28 06:14:06 +07002029 t_RSL_IE(RSL_IE_MS_IDENTITY, RSL_IE_Body:{ms_identity := ts_MI_LV(mi)})
Harald Welte9abd1282018-02-19 19:18:17 +01002030 }
2031 }
Harald Weltec2877752017-12-07 17:54:35 +01002032
2033 /* 8.5.6 BSC -> BTS */
2034 template RSL_Message tr_RSL_IMM_ASSIGN(template uint3_t tn := ?) := {
Harald Welteefa7d912018-04-18 23:22:15 +02002035 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_CCHAN, false),
Harald Weltec2877752017-12-07 17:54:35 +01002036 msg_type := RSL_MT_IMMEDIATE_ASSIGN_CMD,
2037 ies := {
2038 tr_RSL_IE(RSL_IE_Body:{chan_nr := t_RslChanNr_PCH_AGCH(tn)}),
2039 tr_RSL_IE(RSL_IE_Body:{full_imm_ass_info := ?})
2040 }
2041 }
Harald Welteefa7d912018-04-18 23:22:15 +02002042 template (value) RSL_Message ts_RSL_IMM_ASSIGN(octetstring f_ass_inf, uint3_t tn := 0) := {
Harald Welte9abd1282018-02-19 19:18:17 +01002043 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_CCHAN, false),
2044 msg_type := RSL_MT_IMMEDIATE_ASSIGN_CMD,
2045 ies := {
Harald Welteefa7d912018-04-18 23:22:15 +02002046 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := ts_RslChanNr_PCH_AGCH(tn)}),
Harald Welte9abd1282018-02-19 19:18:17 +01002047 t_RSL_IE(RSL_IE_FULL_IMM_ASS_INFO, RSL_IE_Body:{full_imm_ass_info := ts_RSL_LV(f_ass_inf)})
2048 }
2049 }
Harald Weltec2877752017-12-07 17:54:35 +01002050
Harald Weltecc373202018-09-10 10:28:21 +02002051 /* 8.5.8 BTS <- BSC SMS BROADCAST COMMAND */
2052 template RSL_Message tr_RSL_SMSCB_CMD(template RSL_IE_CbCommandType cb_cmd := ?,
2053 template octetstring msg := ?,
2054 template RslChannelNr chan_nr := ?) := {
2055 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_CCHAN, false),
2056 msg_type := RSL_MT_SMS_BC_CMD,
2057 ies := {
2058 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
2059 tr_RSL_IE(RSL_IE_Body:{cb_cmd_type := cb_cmd}),
2060 tr_RSL_IE(RSL_IE_Body:{smscb_message := tr_RSL_LV(msg)}),
2061 *
2062 }
2063 }
2064 template (value) RSL_Message ts_RSL_SMSCB_CMD(template (value) RSL_IE_CbCommandType cb_cmd,
2065 template (value) octetstring msg,
2066 template (value) RslChannelNr chan_nr :=
2067 ts_RslChanNr_SDCCH4(0, 2)) := {
2068 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_CCHAN, false),
2069 msg_type := RSL_MT_SMS_BC_CMD,
2070 ies := {
2071 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
2072 t_RSL_IE(RSL_IE_CB_CMD_TYPE, RSL_IE_Body:{cb_cmd_type := cb_cmd}),
2073 t_RSL_IE(RSL_IE_SMSCB_MSG, RSL_IE_Body:{smscb_message := ts_RSL_LV(msg)})
2074 /* optional channel type for extended CBCH */
2075 }
2076 }
2077
Harald Welte4a129f82019-05-21 16:35:22 +02002078 /* 8.5.9 BTS -> BSC CBCH LOAD INDICATION */
2079 template RSL_Message tr_RSL_CBCH_LOAD_IND_BASIC(template boolean overflow := ?,
2080 template uint4_t slot_count := ?,
2081 template RslChannelNr chan_nr := ?) := {
2082 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_CCHAN, false),
2083 msg_type := RSL_MT_CBCH_LOAD_IND,
2084 ies := {
2085 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
2086 tr_RSL_IE(RSL_IE_Body:{cbch_load_info := tr_CbchLoadInfo(overflow, slot_count)})
2087 }
2088 }
2089 template (value) RSL_Message ts_RSL_CBCH_LOAD_IND_BASIC(boolean overflow, uint4_t slot_count,
2090 template (value) RslChannelNr chan_nr :=
2091 ts_RslChanNr_SDCCH4(0, 2)) := {
2092 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_CCHAN, false),
2093 msg_type := RSL_MT_CBCH_LOAD_IND,
2094 ies := {
2095 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
2096 t_RSL_IE(RSL_IE_CBCH_LOAD_INFO, RSL_IE_Body:{cbch_load_info := ts_CbchLoadInfo(overflow, slot_count)})
2097 }
2098 }
2099 template RSL_Message tr_RSL_CBCH_LOAD_IND_EXTD(template boolean overflow := ?,
2100 template uint4_t slot_count := ?,
2101 template RslChannelNr chan_nr := ?) := {
2102 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_CCHAN, false),
2103 msg_type := RSL_MT_CBCH_LOAD_IND,
2104 ies := {
2105 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
2106 tr_RSL_IE(RSL_IE_Body:{cbch_load_info := tr_CbchLoadInfo(overflow, slot_count)}),
2107 tr_RSL_IE(RSL_IE_Body:{smscb_chan_ind := 1})
2108 }
2109 }
2110 template (value) RSL_Message ts_RSL_CBCH_LOAD_IND_EXTD(boolean overflow, uint4_t slot_count,
2111 template (value) RslChannelNr chan_nr :=
2112 ts_RslChanNr_SDCCH4(0, 2)) := {
2113 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_CCHAN, false),
2114 msg_type := RSL_MT_CBCH_LOAD_IND,
2115 ies := {
2116 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
2117 t_RSL_IE(RSL_IE_CBCH_LOAD_INFO, RSL_IE_Body:{cbch_load_info := ts_CbchLoadInfo(overflow, slot_count)}),
2118 t_RSL_IE(RSL_IE_SMSCB_CHAN_INDICATOR, RSL_IE_Body:{smscb_chan_ind := 1})
2119 }
2120 }
2121
2122
Vadim Yanitskiy9f699532021-06-03 17:29:22 +02002123 /* 8.6.1 BTS -> BSC */
2124 template (value) RSL_Message
2125 ts_RSL_RF_RES_IND(template (value) RSL_ResourceInfo info) := {
2126 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_TRX_MGMT, false),
2127 msg_type := RSL_MT_RF_RES_IND,
2128 ies := {
2129 t_RSL_IE(RSL_IE_RESOURCE_INFO, RSL_IE_Body:{
2130 resource_info := {
2131 len := 0, /* overwritten */
2132 info := info
2133 }
2134 })
2135 }
2136 }
2137 template RSL_Message
2138 tr_RSL_RF_RES_IND(template (present) RSL_ResourceInfo info := ?) := {
2139 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_TRX_MGMT, false),
2140 msg_type := RSL_MT_RF_RES_IND,
2141 ies := {
2142 tr_RSL_IE(RSL_IE_Body:{
2143 resource_info := {
2144 len := ?,
2145 info := info
2146 }
2147 })
2148 }
2149 }
2150
2151
Harald Welte68e495b2018-02-25 00:05:57 +01002152 /* 8.6.2 BTS <- BSC */
Harald Welteefa7d912018-04-18 23:22:15 +02002153 template (value) RSL_Message ts_RSL_SACCH_FILL(RSL_IE_SysinfoType si_type, octetstring l3_info) := {
Harald Welte68e495b2018-02-25 00:05:57 +01002154 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_TRX_MGMT, false),
2155 msg_type := RSL_MT_SACCH_FILL,
2156 ies := {
2157 t_RSL_IE(RSL_IE_SYSINFO_TYPE, RSL_IE_Body:{sysinfo_type := si_type}),
2158 t_RSL_IE(RSL_IE_L3_INFO, RSL_IE_Body:{l3_info := ts_RSL_L16V(l3_info)})
2159 }
2160 }
Harald Welte09538f82019-08-01 09:50:25 +02002161 template RSL_Message tr_RSL_NO_SACCH_FILL(template RSL_IE_SysinfoType si_type := ?) := {
2162 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_TRX_MGMT, false),
2163 msg_type := RSL_MT_SACCH_FILL,
2164 ies := {
2165 tr_RSL_IE(RSL_IE_Body:{sysinfo_type := si_type})
2166 }
2167 }
2168 template RSL_Message tr_RSL_SACCH_FILL(template RSL_IE_SysinfoType si_type := ?,
2169 template octetstring l3_info := ?) := {
2170 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_TRX_MGMT, false),
2171 msg_type := RSL_MT_SACCH_FILL,
2172 ies := {
2173 tr_RSL_IE(RSL_IE_Body:{sysinfo_type := si_type}),
2174 tr_RSL_IE(RSL_IE_Body:{l3_info := tr_RSL_L16V(l3_info)}),
2175 *
2176 }
2177 }
2178
Harald Welte68e495b2018-02-25 00:05:57 +01002179
Harald Welte643e2a62017-11-27 15:03:18 +01002180 /* 8.6.4 BTS -> BSC */
Harald Welteefa7d912018-04-18 23:22:15 +02002181 template (value) RSL_Message ts_RSL_ERROR_REPORT(RSL_Cause cause) := {
Harald Welte01d982c2018-02-25 01:31:40 +01002182 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_TRX_MGMT, false),
2183 msg_type := RSL_MT_ERROR_REPORT,
Harald Welte643e2a62017-11-27 15:03:18 +01002184 ies := {
Harald Welte735dd072017-12-12 14:55:17 +01002185 t_RSL_IE(RSL_IE_CAUSE, RSL_IE_Body:{cause := ts_RSL_IE_Cause(cause)})
Harald Welte643e2a62017-11-27 15:03:18 +01002186 }
2187 }
Harald Welte01d982c2018-02-25 01:31:40 +01002188 template RSL_Message tr_RSL_ERROR_REPORT(template RSL_Cause cause := ?) := {
Harald Welteefa7d912018-04-18 23:22:15 +02002189 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_TRX_MGMT, false),
Harald Welte01d982c2018-02-25 01:31:40 +01002190 msg_type := RSL_MT_ERROR_REPORT,
2191 ies := {
2192 tr_RSL_IE(RSL_IE_Body:{cause := tr_RSL_IE_Cause(cause)}),
2193 *
2194 }
2195 }
2196
Harald Welte643e2a62017-11-27 15:03:18 +01002197
Harald Welte9958a4d2017-12-14 21:21:33 +01002198
2199 /* Abis/IP specific messages */
2200
Vadim Yanitskiy1567bac2022-05-01 03:36:24 +03002201 private function f_ts_RSL_IPA_CRCX_IEs(template (value) RslChannelNr chan_nr,
2202 template (omit) OCT4 remote_ip,
Pau Espin Pedrol39bfa022022-08-12 14:56:12 +02002203 template (omit) uint16_t remote_port,
2204 template (omit) uint8_t osmux_cid)
Vadim Yanitskiy1567bac2022-05-01 03:36:24 +03002205 return RSL_IE_List {
2206 var RSL_IE_List ies;
2207
2208 /* Channel Number is a mandatory IE */
2209 ies := {
2210 valueof(RSL_IE:{
2211 iei := RSL_IE_CHAN_NR,
2212 body := { chan_nr := chan_nr }
2213 })
2214 };
2215 /* Remote IP / Port are optional IEs */
2216 if (not istemplatekind(remote_ip, "omit")) {
2217 ies := ies & {
2218 valueof(RSL_IE:{
2219 iei := RSL_IE_IPAC_REMOTE_IP,
2220 body := { ipa_remote_ip := remote_ip }
2221 })
2222 };
2223 }
2224 if (not istemplatekind(remote_port, "omit")) {
2225 ies := ies & {
2226 valueof(RSL_IE:{
2227 iei := RSL_IE_IPAC_REMOTE_PORT,
2228 body := { ipa_remote_port := remote_port }
2229 })
2230 };
2231 }
Pau Espin Pedrol39bfa022022-08-12 14:56:12 +02002232 /* Osmux CID extension IE is optional: */
2233 if (not istemplatekind(osmux_cid, "omit")) {
2234 ies := ies & {
2235 valueof(RSL_IE:{
2236 iei := RSL_IE_OSMO_OSMUX_CID,
2237 body := { osmux_cid := ts_RSL_IE_OSMO_Osmux_CID(osmux_cid) }
2238 })
2239 };
2240 }
Vadim Yanitskiy1567bac2022-05-01 03:36:24 +03002241
2242 return ies;
2243 }
Harald Welte9958a4d2017-12-14 21:21:33 +01002244 template RSL_Message tr_RSL_IPA_CRCX(template RslChannelNr chan_nr) := {
Harald Welteefa7d912018-04-18 23:22:15 +02002245 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_IPACCESS, false),
Harald Welte9958a4d2017-12-14 21:21:33 +01002246 msg_type := RSL_MT_IPAC_CRCX,
2247 ies := {
2248 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
2249 *
2250 }
2251 }
Vadim Yanitskiye9141c22021-07-03 01:45:40 +02002252 template (value) RSL_Message
2253 ts_RSL_IPA_CRCX(template (value) RslChannelNr chan_nr,
Vadim Yanitskiy1567bac2022-05-01 03:36:24 +03002254 template (omit) OCT4 remote_ip := omit,
Pau Espin Pedrol39bfa022022-08-12 14:56:12 +02002255 template (omit) uint16_t remote_port := omit,
2256 template (omit) uint8_t osmux_cid := omit) := {
Harald Welte9abd1282018-02-19 19:18:17 +01002257 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_IPACCESS, false),
2258 msg_type := RSL_MT_IPAC_CRCX,
Pau Espin Pedrol39bfa022022-08-12 14:56:12 +02002259 ies := f_ts_RSL_IPA_CRCX_IEs(chan_nr, remote_ip, remote_port, osmux_cid)
Harald Welte9abd1282018-02-19 19:18:17 +01002260 }
2261
Pau Espin Pedrol29c6dfb2022-08-08 18:37:56 +02002262 function ts_RSL_IPA_CRCX_ACK(template (value) RslChannelNr chan_nr,
2263 uint16_t ipa_conn_id, OCT4 local_ip,
2264 uint16_t local_port, uint7_t rtp_pt2,
2265 template (omit) uint8_t osmux_cid := omit)
2266 return template (value) RSL_Message {
2267 var template (value) RSL_Message msg := {
2268 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_IPACCESS, false),
2269 msg_type := RSL_MT_IPAC_CRCX_ACK,
2270 ies := {
2271 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
2272 t_RSL_IE(RSL_IE_IPAC_CONN_ID, RSL_IE_Body:{ipa_conn_id := ipa_conn_id}),
2273 t_RSL_IE(RSL_IE_IPAC_LOCAL_IP, RSL_IE_Body:{ipa_local_ip := local_ip}),
2274 t_RSL_IE(RSL_IE_IPAC_LOCAL_PORT, RSL_IE_Body:{ipa_local_port := local_port}),
2275 t_RSL_IE(RSL_IE_IPAC_RTP_PAYLOAD2, RSL_IE_Body:{ipa_rtp_pt2 := rtp_pt2})
2276 }
Harald Welte9958a4d2017-12-14 21:21:33 +01002277 }
Pau Espin Pedrol29c6dfb2022-08-08 18:37:56 +02002278 if (not istemplatekind(osmux_cid, "omit")) {
2279 msg.ies[lengthof(msg.ies)] := t_RSL_IE(RSL_IE_OSMO_OSMUX_CID, RSL_IE_Body:{osmux_cid := ts_RSL_IE_OSMO_Osmux_CID(osmux_cid)});
2280 }
2281 return msg;
Harald Welte9958a4d2017-12-14 21:21:33 +01002282 }
Pau Espin Pedrol29c6dfb2022-08-08 18:37:56 +02002283
Pau Espin Pedrol39bfa022022-08-12 14:56:12 +02002284 function tr_RSL_IPA_CRCX_ACK(template RslChannelNr chan_nr,
2285 template uint16_t ipa_conn_id,
2286 template OCT4 local_ip,
2287 template uint16_t local_port,
2288 template uint8_t osmux_cid := omit)
2289 return template RSL_Message {
2290 var template RSL_Message msg := {
2291 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_IPACCESS, false),
2292 msg_type := RSL_MT_IPAC_CRCX_ACK,
2293 ies := {
2294 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
2295 tr_RSL_IE(RSL_IE_Body:{ipa_conn_id := ipa_conn_id}),
2296 tr_RSL_IE(RSL_IE_Body:{ipa_local_ip := local_ip}),
2297 tr_RSL_IE(RSL_IE_Body:{ipa_local_port := local_port})
2298 /* Optional: RTP Payload Type 2 IE */
2299 }
Harald Welte9abd1282018-02-19 19:18:17 +01002300 }
Pau Espin Pedrol39bfa022022-08-12 14:56:12 +02002301 if (not istemplatekind(osmux_cid, "omit")) {
2302 msg.ies[lengthof(msg.ies)] := tr_RSL_IE(RSL_IE_Body:{osmux_cid := f_tr_RSL_IE_OSMO_Osmux_CID(osmux_cid)});
2303 }
2304 return msg;
Harald Welte9abd1282018-02-19 19:18:17 +01002305 }
Harald Welte9958a4d2017-12-14 21:21:33 +01002306
Harald Welteefa7d912018-04-18 23:22:15 +02002307 template (value) RSL_Message ts_RSL_IPA_CRCX_NACK(template (value) RslChannelNr chan_nr,
2308 RSL_Cause cause) := {
Harald Welte9958a4d2017-12-14 21:21:33 +01002309 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_IPACCESS, false),
2310 msg_type := RSL_MT_IPAC_CRCX_NACK,
2311 ies := {
2312 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
2313 t_RSL_IE(RSL_IE_CAUSE, RSL_IE_Body:{cause := ts_RSL_IE_Cause(cause)})
2314 }
2315 }
Harald Welte9abd1282018-02-19 19:18:17 +01002316 template RSL_Message tr_RSL_IPA_CRCX_NACK(template RslChannelNr chan_nr,
2317 template RSL_Cause cause := ?) := {
Harald Welteefa7d912018-04-18 23:22:15 +02002318 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_IPACCESS, false),
Harald Welte9abd1282018-02-19 19:18:17 +01002319 msg_type := RSL_MT_IPAC_CRCX_NACK,
2320 ies := {
2321 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
2322 tr_RSL_IE(RSL_IE_Body:{cause := tr_RSL_IE_Cause(cause)})
2323 }
2324 }
Harald Welte9958a4d2017-12-14 21:21:33 +01002325
Pau Espin Pedrol39bfa022022-08-12 14:56:12 +02002326 function ts_RSL_IPA_MDCX(template (value) RslChannelNr chan_nr,
2327 uint16_t ipa_conn_id,
2328 OCT4 remote_ip, uint16_t remote_port,
2329 uint7_t rtp_pt2,
2330 template (omit) uint8_t osmux_cid := omit)
2331 return template (value) RSL_Message {
2332 var template (value) RSL_Message msg := {
2333 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_IPACCESS, false),
2334 msg_type := RSL_MT_IPAC_MDCX,
2335 ies := {
2336 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
2337 t_RSL_IE(RSL_IE_IPAC_CONN_ID, RSL_IE_Body:{ipa_conn_id := ipa_conn_id}),
2338 t_RSL_IE(RSL_IE_IPAC_REMOTE_IP, RSL_IE_Body:{ipa_remote_ip := remote_ip}),
2339 t_RSL_IE(RSL_IE_IPAC_REMOTE_PORT, RSL_IE_Body:{ipa_remote_port := remote_port}),
2340 /* optional: RTP Payload Type */
2341 t_RSL_IE(RSL_IE_IPAC_RTP_PAYLOAD2, RSL_IE_Body:{ipa_rtp_pt2 := rtp_pt2})
2342 }
Harald Welte30527452018-02-25 12:46:25 +01002343 }
Pau Espin Pedrol39bfa022022-08-12 14:56:12 +02002344 if (not istemplatekind(osmux_cid, "omit")) {
2345 msg.ies[lengthof(msg.ies)] := t_RSL_IE(RSL_IE_OSMO_OSMUX_CID, RSL_IE_Body:{osmux_cid := ts_RSL_IE_OSMO_Osmux_CID(osmux_cid)});
2346 }
2347 return msg;
Harald Welte30527452018-02-25 12:46:25 +01002348 }
Harald Welte9958a4d2017-12-14 21:21:33 +01002349 template RSL_Message tr_RSL_IPA_MDCX(template RslChannelNr chan_nr,
2350 template uint16_t ipa_conn_id) := {
Harald Welteefa7d912018-04-18 23:22:15 +02002351 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_IPACCESS, false),
Harald Welte9958a4d2017-12-14 21:21:33 +01002352 msg_type := RSL_MT_IPAC_MDCX,
2353 ies := {
2354 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
2355 tr_RSL_IE(RSL_IE_Body:{ipa_conn_id := ipa_conn_id}),
2356 *
2357 }
2358 }
2359
Pau Espin Pedrol29c6dfb2022-08-08 18:37:56 +02002360 function ts_RSL_IPA_MDCX_ACK(template (value) RslChannelNr chan_nr,
2361 uint16_t ipa_conn_id,
2362 OCT4 local_ip, uint16_t local_port,
2363 uint7_t rtp_pt2,
2364 template (omit) uint8_t osmux_cid := omit)
Pau Espin Pedrol39bfa022022-08-12 14:56:12 +02002365 return template (value) RSL_Message {
2366 var template (value) RSL_Message msg := {
2367 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_IPACCESS, false),
2368 msg_type := RSL_MT_IPAC_MDCX_ACK,
2369 ies := {
2370 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
2371 /* optional */
2372 t_RSL_IE(RSL_IE_IPAC_CONN_ID, RSL_IE_Body:{ipa_conn_id := ipa_conn_id}),
2373 t_RSL_IE(RSL_IE_IPAC_LOCAL_IP, RSL_IE_Body:{ipa_local_ip := local_ip}),
2374 t_RSL_IE(RSL_IE_IPAC_LOCAL_PORT, RSL_IE_Body:{ipa_local_port := local_port}),
2375 /* optional: RTP Payload Type */
2376 t_RSL_IE(RSL_IE_IPAC_RTP_PAYLOAD2, RSL_IE_Body:{ipa_rtp_pt2 := rtp_pt2})
Pau Espin Pedrol29c6dfb2022-08-08 18:37:56 +02002377 }
Pau Espin Pedrol39bfa022022-08-12 14:56:12 +02002378 }
2379 if (not istemplatekind(osmux_cid, "omit")) {
2380 msg.ies[lengthof(msg.ies)] := t_RSL_IE(RSL_IE_OSMO_OSMUX_CID, RSL_IE_Body:{osmux_cid := ts_RSL_IE_OSMO_Osmux_CID(osmux_cid)});
2381 }
2382 return msg;
2383 }
2384 function tr_RSL_IPA_MDCX_ACK(template RslChannelNr chan_nr,
2385 template uint16_t ipa_conn_id,
2386 template OCT4 local_ip,
2387 template uint16_t local_port,
2388 template uint7_t rtp_pt2,
2389 template uint8_t osmux_cid := omit)
2390 return template RSL_Message {
2391 var template RSL_Message msg := {
2392 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_IPACCESS, false),
2393 msg_type := RSL_MT_IPAC_MDCX_ACK,
2394 ies := {
2395 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
2396 /* optional */
2397 tr_RSL_IE(RSL_IE_Body:{ipa_conn_id := ipa_conn_id}),
2398 tr_RSL_IE(RSL_IE_Body:{ipa_local_ip := local_ip}),
2399 tr_RSL_IE(RSL_IE_Body:{ipa_local_port := local_port}),
2400 /* optional: RTP Payload Type */
2401 tr_RSL_IE(RSL_IE_Body:{ipa_rtp_pt2 := rtp_pt2})
Pau Espin Pedrol29c6dfb2022-08-08 18:37:56 +02002402 }
Harald Welte9958a4d2017-12-14 21:21:33 +01002403 }
Pau Espin Pedrol39bfa022022-08-12 14:56:12 +02002404 if (not istemplatekind(osmux_cid, "omit")) {
2405 msg.ies[lengthof(msg.ies)] := tr_RSL_IE(RSL_IE_Body:{osmux_cid := f_tr_RSL_IE_OSMO_Osmux_CID(osmux_cid)});
Harald Welte30527452018-02-25 12:46:25 +01002406 }
Pau Espin Pedrol39bfa022022-08-12 14:56:12 +02002407 return msg;
Harald Welte30527452018-02-25 12:46:25 +01002408 }
Harald Welte9958a4d2017-12-14 21:21:33 +01002409
Harald Welteefa7d912018-04-18 23:22:15 +02002410 template (value) RSL_Message ts_RSL_IPA_MDCX_NACK(template (value) RslChannelNr chan_nr,
2411 RSL_Cause cause,
2412 template (value) uint16_t ipa_conn_id) := {
Harald Welte9958a4d2017-12-14 21:21:33 +01002413 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_IPACCESS, false),
2414 msg_type := RSL_MT_IPAC_MDCX_NACK,
2415 ies := {
2416 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
2417 /* optional connection ID */
2418 t_RSL_IE(RSL_IE_IPAC_CONN_ID, RSL_IE_Body:{ipa_conn_id := ipa_conn_id}),
2419 t_RSL_IE(RSL_IE_CAUSE, RSL_IE_Body:{cause := ts_RSL_IE_Cause(cause)})
2420 }
2421 }
Harald Welte30527452018-02-25 12:46:25 +01002422 template RSL_Message tr_RSL_IPA_MDCX_NACK(template RslChannelNr chan_nr,
2423 template RSL_Cause cause,
2424 template uint16_t ipa_conn_id) := {
Harald Welteefa7d912018-04-18 23:22:15 +02002425 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_IPACCESS, false),
Harald Welte30527452018-02-25 12:46:25 +01002426 msg_type := RSL_MT_IPAC_MDCX_NACK,
2427 ies := {
2428 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
2429 /* optional connection ID */
2430 tr_RSL_IE(RSL_IE_Body:{ipa_conn_id := ipa_conn_id}),
2431 tr_RSL_IE(RSL_IE_Body:{cause := tr_RSL_IE_Cause(cause)})
2432 }
2433 }
2434
Harald Welte9958a4d2017-12-14 21:21:33 +01002435
Harald Welteefa7d912018-04-18 23:22:15 +02002436 template (value) RSL_Message ts_RSL_IPA_DLCX_IND(template (value) RslChannelNr chan_nr,
2437 uint16_t ipa_conn_id,
2438 template (value) RSL_IE_IPA_ConnectionStats stats,
2439 RSL_Cause cause) := {
Harald Welte9958a4d2017-12-14 21:21:33 +01002440 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_IPACCESS, false),
2441 msg_type := RSL_MT_IPAC_DLCX_IND,
2442 ies := {
2443 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
2444 t_RSL_IE(RSL_IE_IPAC_CONN_ID, RSL_IE_Body:{ipa_conn_id := ipa_conn_id}),
2445 t_RSL_IE(RSL_IE_IPAC_CONN_STAT, RSL_IE_Body:{ipa_stats := stats}),
2446 t_RSL_IE(RSL_IE_CAUSE, RSL_IE_Body:{cause := ts_RSL_IE_Cause(cause)})
2447 }
2448 }
2449
Harald Welteefa7d912018-04-18 23:22:15 +02002450 template (value) RSL_Message ts_RSL_IPA_DLCX(template (value) RslChannelNr chan_nr,
2451 uint16_t ipa_conn_id) := {
Harald Weltea871a382018-02-25 02:03:14 +01002452 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_IPACCESS, false),
2453 msg_type := RSL_MT_IPAC_DLCX,
2454 ies := {
Harald Welte2a7e7162018-02-25 12:46:48 +01002455 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
2456 t_RSL_IE(RSL_IE_IPAC_CONN_ID, RSL_IE_Body:{ipa_conn_id := ipa_conn_id})
Harald Weltea871a382018-02-25 02:03:14 +01002457 }
2458 }
Harald Welte9958a4d2017-12-14 21:21:33 +01002459 template RSL_Message tr_RSL_IPA_DLCX(template RslChannelNr chan_nr,
2460 template uint16_t ipa_conn_id := omit) := {
Harald Welteefa7d912018-04-18 23:22:15 +02002461 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_IPACCESS, false),
Harald Welte9958a4d2017-12-14 21:21:33 +01002462 msg_type := RSL_MT_IPAC_DLCX,
2463 ies := {
2464 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
2465 /* FIXME: optional conn_id */
2466 *
2467 }
2468 }
2469
Harald Welteefa7d912018-04-18 23:22:15 +02002470 template (value) RSL_Message ts_RSL_IPA_DLCX_ACK(template (value) RslChannelNr chan_nr,
2471 uint16_t ipa_conn_id,
2472 RSL_IE_IPA_ConnectionStats stats) := {
Harald Welte9958a4d2017-12-14 21:21:33 +01002473 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_IPACCESS, false),
2474 msg_type := RSL_MT_IPAC_DLCX_ACK,
2475 ies := {
2476 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
2477 t_RSL_IE(RSL_IE_IPAC_CONN_ID, RSL_IE_Body:{ipa_conn_id := ipa_conn_id}),
2478 t_RSL_IE(RSL_IE_IPAC_CONN_STAT, RSL_IE_Body:{ipa_stats := stats})
2479 }
2480 }
Harald Weltea871a382018-02-25 02:03:14 +01002481 template RSL_Message tr_RSL_IPA_DLCX_ACK(template RslChannelNr chan_nr,
2482 template uint16_t ipa_conn_id,
2483 template RSL_IE_IPA_ConnectionStats stats) := {
Harald Welteefa7d912018-04-18 23:22:15 +02002484 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_IPACCESS, false),
Harald Weltea871a382018-02-25 02:03:14 +01002485 msg_type := RSL_MT_IPAC_DLCX_ACK,
2486 ies := {
2487 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
2488 tr_RSL_IE(RSL_IE_Body:{ipa_conn_id := ipa_conn_id}),
2489 tr_RSL_IE(RSL_IE_Body:{ipa_stats := stats})
2490 }
2491 }
2492
2493
Harald Welte9958a4d2017-12-14 21:21:33 +01002494
Harald Welteefa7d912018-04-18 23:22:15 +02002495 template (value) RSL_Message ts_RSL_IPA_DLCX_NACK(template (value) RslChannelNr chan_nr,
2496 RSL_Cause cause, uint16_t ipa_conn_id) := {
Harald Welte9958a4d2017-12-14 21:21:33 +01002497 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_IPACCESS, false),
2498 msg_type := RSL_MT_IPAC_DLCX_NACK,
2499 ies := {
2500 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
2501 /* optional connection ID */
2502 t_RSL_IE(RSL_IE_IPAC_CONN_ID, RSL_IE_Body:{ipa_conn_id := ipa_conn_id}),
2503 t_RSL_IE(RSL_IE_CAUSE, RSL_IE_Body:{cause := ts_RSL_IE_Cause(cause)})
2504 }
2505 }
Harald Weltea871a382018-02-25 02:03:14 +01002506 template RSL_Message tr_RSL_IPA_DLCX_NACK(template RslChannelNr chan_nr,
2507 template RSL_Cause cause) := {
Harald Welteefa7d912018-04-18 23:22:15 +02002508 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_IPACCESS, false),
Harald Weltea871a382018-02-25 02:03:14 +01002509 msg_type := RSL_MT_IPAC_DLCX_NACK,
2510 ies := {
2511 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
2512 /* optional connection ID */
2513 *,
2514 tr_RSL_IE(RSL_IE_Body:{cause := tr_RSL_IE_Cause(cause)})
2515 }
2516 }
2517
Harald Welte9958a4d2017-12-14 21:21:33 +01002518
Vadim Yanitskiy58b16532021-10-09 20:27:39 +06002519 template (value) RSL_Message
2520 ts_RSL_IPA_PDCH_ACT(template (value) RslChannelNr chan_nr) := {
Harald Welteee19c732018-04-05 09:08:26 +02002521 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
2522 msg_type := RSL_MT_IPAC_PDCH_ACT,
2523 ies := {
2524 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr})
2525 }
2526 }
Vadim Yanitskiy58b16532021-10-09 20:27:39 +06002527 template RSL_Message
2528 tr_RSL_IPA_PDCH_ACT(template (present) RslChannelNr chan_nr) := {
Harald Welteee19c732018-04-05 09:08:26 +02002529 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
Harald Welte9958a4d2017-12-14 21:21:33 +01002530 msg_type := RSL_MT_IPAC_PDCH_ACT,
2531 ies := {
2532 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr})
2533 }
2534 }
2535
Harald Welteee19c732018-04-05 09:08:26 +02002536
Harald Welte94e0c342018-04-07 11:33:23 +02002537 template RSL_Message ts_RSL_IPA_PDCH_ACT_ACK(RslChannelNr chan_nr,
2538 template (value) RSL_IE_FrameNumber fn) := {
Harald Welteee19c732018-04-05 09:08:26 +02002539 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
Harald Welte9958a4d2017-12-14 21:21:33 +01002540 msg_type := RSL_MT_IPAC_PDCH_ACT_ACK,
2541 ies := {
2542 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
2543 t_RSL_IE(RSL_IE_FRAME_NUMBER, RSL_IE_Body:{frame_nr := fn})
2544 }
2545 }
Harald Welteee19c732018-04-05 09:08:26 +02002546 template RSL_Message tr_RSL_IPA_PDCH_ACT_ACK(template RslChannelNr chan_nr,
2547 template RSL_IE_FrameNumber fn) := {
2548 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
2549 msg_type := RSL_MT_IPAC_PDCH_ACT_ACK,
2550 ies := {
2551 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
2552 tr_RSL_IE(RSL_IE_Body:{frame_nr := fn})
2553 }
2554 }
Harald Welte9958a4d2017-12-14 21:21:33 +01002555
2556 template RSL_Message ts_RSL_IPA_PDCH_ACT_NACK(RslChannelNr chan_nr, RSL_Cause cause) := {
Harald Welteee19c732018-04-05 09:08:26 +02002557 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
Harald Welte9958a4d2017-12-14 21:21:33 +01002558 msg_type := RSL_MT_IPAC_PDCH_ACT_NACK,
2559 ies := {
2560 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
2561 t_RSL_IE(RSL_IE_CAUSE, RSL_IE_Body:{cause := ts_RSL_IE_Cause(cause)})
2562 }
2563 }
Harald Welteee19c732018-04-05 09:08:26 +02002564 template RSL_Message tr_RSL_IPA_PDCH_ACT_NACK(template RslChannelNr chan_nr,
2565 template RSL_Cause cause) := {
2566 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
2567 msg_type := RSL_MT_IPAC_PDCH_ACT_NACK,
2568 ies := {
2569 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
2570 tr_RSL_IE(RSL_IE_Body:{cause := tr_RSL_IE_Cause(cause)})
2571 }
2572 }
Harald Welte9958a4d2017-12-14 21:21:33 +01002573
Harald Welteee19c732018-04-05 09:08:26 +02002574 template RSL_Message ts_RSL_IPA_PDCH_DEACT(RslChannelNr chan_nr) := {
2575 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
2576 msg_type := RSL_MT_IPAC_PDCH_DEACT,
2577 ies := {
2578 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr})
2579 }
2580 }
Harald Welte9958a4d2017-12-14 21:21:33 +01002581 template RSL_Message tr_RSL_IPA_PDCH_DEACT(template RslChannelNr chan_nr) := {
Harald Welteee19c732018-04-05 09:08:26 +02002582 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
Harald Welte9958a4d2017-12-14 21:21:33 +01002583 msg_type := RSL_MT_IPAC_PDCH_DEACT,
2584 ies := {
2585 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr})
2586 }
2587 }
2588
2589 template RSL_Message ts_RSL_IPA_PDCH_DEACT_ACK(RslChannelNr chan_nr) := {
Harald Welteee19c732018-04-05 09:08:26 +02002590 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
Harald Welte9958a4d2017-12-14 21:21:33 +01002591 msg_type := RSL_MT_IPAC_PDCH_DEACT_ACK,
2592 ies := {
2593 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr})
2594 }
2595 }
Harald Welteee19c732018-04-05 09:08:26 +02002596 template RSL_Message tr_RSL_IPA_PDCH_DEACT_ACK(template RslChannelNr chan_nr) := {
2597 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
2598 msg_type := RSL_MT_IPAC_PDCH_DEACT_ACK,
2599 ies := {
2600 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr})
2601 }
2602 }
Harald Welte9958a4d2017-12-14 21:21:33 +01002603
2604 template RSL_Message ts_RSL_IPA_PDCH_DEACT_NACK(RslChannelNr chan_nr, RSL_Cause cause) := {
Harald Welteee19c732018-04-05 09:08:26 +02002605 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
Harald Welte9958a4d2017-12-14 21:21:33 +01002606 msg_type := RSL_MT_IPAC_PDCH_DEACT_NACK,
2607 ies := {
2608 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
2609 t_RSL_IE(RSL_IE_CAUSE, RSL_IE_Body:{cause := ts_RSL_IE_Cause(cause)})
2610 }
2611 }
Harald Welteee19c732018-04-05 09:08:26 +02002612 template RSL_Message tr_RSL_IPA_PDCH_DEACT_NACK(template RslChannelNr chan_nr,
2613 template RSL_Cause cause) := {
2614 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
2615 msg_type := RSL_MT_IPAC_PDCH_DEACT_NACK,
2616 ies := {
2617 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
2618 tr_RSL_IE(RSL_IE_Body:{cause := tr_RSL_IE_Cause(cause)})
2619 }
2620 }
Harald Welte9958a4d2017-12-14 21:21:33 +01002621
Harald Welte908ce542019-09-04 23:05:40 +02002622 template (value) RSL_Message ts_RSL_OSMO_ETWS_CMD(template (value) octetstring msg,
2623 template (value) RslChannelNr chan_nr := ts_RslChanNr_PCH_AGCH(0)) := {
2624 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_CCHAN, false),
2625 msg_type := RSL_MT_OSMO_ETWS_CMD,
2626 ies := {
2627 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
2628 t_RSL_IE(RSL_IE_SMSCB_MSG, RSL_IE_Body:{smscb_message := ts_RSL_LV(msg)})
2629 }
2630 }
2631 template RSL_Message tr_RSL_OSMO_ETWS_CMD(template RslChannelNr chan_nr := ?,
2632 template octetstring msg := ?) := {
2633 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_CCHAN, false),
2634 msg_type := RSL_MT_OSMO_ETWS_CMD,
2635 ies := {
2636 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
2637 tr_RSL_IE(RSL_IE_Body:{smscb_message := tr_RSL_LV(msg)})
2638 }
2639 }
2640
2641
Harald Welte9958a4d2017-12-14 21:21:33 +01002642
Harald Welte6a8199d2018-01-29 21:58:53 +01002643 function f_rsl_find_ie(RSL_Message msg, RSL_IE_Type iei, out RSL_IE_Body ret) return boolean {
2644 for (var integer i := 0; i < sizeof(msg.ies); i := i+1) {
2645 if (msg.ies[i].iei == iei) {
2646 ret := msg.ies[i].body;
2647 return true;
2648 }
2649 }
2650 return false;
2651 }
2652
2653
Harald Welte9958a4d2017-12-14 21:21:33 +01002654
Harald Welte643e2a62017-11-27 15:03:18 +01002655} with { encode "RAW" ; variant "FIELDORDER(msb)" }