blob: e57575dfd2cfbfc4ef0c30c1894be2773718c7b6 [file] [log] [blame]
Harald Weltea082a692017-07-15 15:58:13 +02001/* Encoding/Decoding routines for GSM System Information messages
2 * according to 3GPP TS 44.018 Version 12.3.0 Release 12 */
3
4/* (C) 2017 by Harald Welte <laforge@gnumonks.org> */
5
6module GSM_Types {
7
8 import from General_Types all;
9 import from Osmocom_Types all;
10
Harald Weltebdc5dbd2017-07-16 00:00:43 +020011 type integer GsmArfcn (0..1023);
12 type integer UmtsArfcn (0..16383);
13 type integer UmtsScramblingCode (0..511);
Harald Welted2e342f2017-07-16 07:34:13 +020014 const integer GsmMaxFrameNumber := 26*51*2048;
15 type integer GsmFrameNumber (0..GsmMaxFrameNumber);
16 type integer GsmRxLev (0..63);
17 type integer GsmTsc (0..7) with { variant "FIELDLENGTH(8)" };
18 type uint32_t GsmTmsi;
Harald Welte484160b2017-07-28 13:30:24 +020019 type uint32_t GprsTlli;
Harald Welte72cecfa2017-12-11 19:50:14 +010020 type hexstring GsmMcc length(3);
21 type hexstring GsmMnc length(2 .. 3);
22 type uint16_t GsmLac;
23 type uint16_t GsmCellId;
Harald Weltebdc5dbd2017-07-16 00:00:43 +020024
Harald Welte1dcc3712017-08-01 00:05:52 +020025 type enumerated GprsCodingScheme {
26 CS1, CS2, CS3, CS4
27 };
28
Harald Welted2e342f2017-07-16 07:34:13 +020029 /* 10.5.2.8 */
30 type enumerated ChannelNeeded {
31 CHAN_NEED_ANY (0),
32 CHAN_NEED_SDCCH (1),
33 CHAN_NEED_TCH_F (2),
34 CHAN_NEED_TCH_H (3)
35 } with { variant "FIELDLENGTH(2)" };
36 type record ChannelNeeded12 {
37 ChannelNeeded second,
38 ChannelNeeded first
39 } with { variant "" };
40
Harald Welted2e342f2017-07-16 07:34:13 +020041
Harald Welte0c8d5c02017-07-16 18:53:58 +020042 /* TS 48.058 9.3.1 Channel Number IE */
43 type enumerated RslChanNr0 {
Harald Welte6f3c2232017-07-30 17:17:12 +020044 RSL_CHAN_NR_INVALID ('00000'B),
45 RSL_CHAN_NR_Bm_ACCH ('00001'B),
46 RSL_CHAN_NR_BCCH ('10000'B),
47 RSL_CHAN_NR_RACH ('10001'B),
48 RSL_CHAN_NR_PCH_AGCH ('10010'B),
49 RSL_CHAN_NR_OSMO_PDCH ('11000'B)
Harald Weltec84d8472017-07-30 00:49:56 +020050 } with { variant "FIELDLENGTH(5)" variant "FIELDORDER(msb)" };
Harald Welte0c8d5c02017-07-16 18:53:58 +020051
52 type record RslChanNr2 {
53 BIT4 tag ('0001'B),
54 uint1_t sub_chan
Harald Weltec84d8472017-07-30 00:49:56 +020055 } with { variant "FIELDLENGTH(5)" variant "FIELDORDER(msb)" };
Harald Welte0c8d5c02017-07-16 18:53:58 +020056
57 type record RslChanNr4 {
58 BIT3 tag ('001'B),
59 uint2_t sub_chan
Harald Weltec84d8472017-07-30 00:49:56 +020060 } with { variant "FIELDLENGTH(5)" variant "FIELDORDER(msb)" };
Harald Welte0c8d5c02017-07-16 18:53:58 +020061
62 type record RslChanNr8 {
63 BIT2 tag ('01'B),
64 uint3_t sub_chan
Harald Weltec84d8472017-07-30 00:49:56 +020065 } with { variant "FIELDLENGTH(5)" variant "FIELDORDER(msb)" };
Harald Welte0c8d5c02017-07-16 18:53:58 +020066
67 type union RslChanNrU {
68 RslChanNr0 ch0,
69 RslChanNr2 lm,
70 RslChanNr4 sdcch4,
71 RslChanNr8 sdcch8
72 } with {
73 variant "TAG(lm, tag = '0001'B;
74 sdcch4, tag = '001'B;
75 sdcch8, tag = '01'B;
76 ch0, OTHERWISE)"
77 variant "FIELDLENGTH(5)"
Harald Weltec84d8472017-07-30 00:49:56 +020078 variant "FIELDORDER(msb)"
Harald Welte0c8d5c02017-07-16 18:53:58 +020079 };
80
81 type record RslChannelNr {
82 RslChanNrU u,
83 uint3_t tn
Harald Weltec84d8472017-07-30 00:49:56 +020084 } with { variant "FIELDLENGTH(8)" variant "FIELDORDER(msb)" };
Harald Welte0c8d5c02017-07-16 18:53:58 +020085
86 template RslChannelNr t_RslChanNr0(template uint3_t tn, template RslChanNr0 cht) := {
87 u := { ch0 := cht },
88 tn := tn
89 }
90
91 template RslChannelNr t_RslChanNr_RACH(template uint3_t tn) := t_RslChanNr0(tn, RSL_CHAN_NR_RACH);
92 template RslChannelNr t_RslChanNr_BCCH(template uint3_t tn) := t_RslChanNr0(tn, RSL_CHAN_NR_BCCH);
93 template RslChannelNr t_RslChanNr_PCH_AGCH(template uint3_t tn) := t_RslChanNr0(tn, RSL_CHAN_NR_PCH_AGCH);
94 template RslChannelNr t_RslChanNr_Bm(template uint3_t tn) := t_RslChanNr0(tn, RSL_CHAN_NR_Bm_ACCH);
Harald Welte1dcc3712017-08-01 00:05:52 +020095 template RslChannelNr t_RslChanNr_PDCH(template uint3_t tn) := t_RslChanNr0(tn, RSL_CHAN_NR_OSMO_PDCH);
Harald Welte2c2e8c42018-01-29 21:59:39 +010096 template RslChannelNr t_RslChanNr_Lm(template uint3_t tn, template uint1_t sub_slot) := {
Harald Welte0c8d5c02017-07-16 18:53:58 +020097 u := { lm := { tag := '0001'B, sub_chan := sub_slot } },
98 tn := tn
99 }
100 template RslChannelNr t_RslChanNr_SDCCH4(template uint3_t tn, template uint2_t sub_slot) := {
101 u := { sdcch4 := { tag := '001'B, sub_chan := sub_slot } },
102 tn := tn
103 }
104 template RslChannelNr t_RslChanNr_SDCCH8(template uint3_t tn, template uint3_t sub_slot) := {
105 u := { sdcch8 := { tag := '01'B, sub_chan := sub_slot } },
106 tn := tn
107 }
Harald Welted2e342f2017-07-16 07:34:13 +0200108
Harald Welteb33e7272017-07-16 21:04:12 +0200109 /* TS 48.058 9.3.2 Link ID */
110 type enumerated RslLinkIdC {
111 FACCH_SDCCH (0),
112 SACCH (1)
113 } with { variant "FIELDLENGTH(2)" };
114
115 type enumerated RslSapi0Prio {
116 SAPI0_PRIO_NORMAL (0),
117 SAPI0_PRIO_HIGH (1),
118 SAPI0_PRIO_LOW (2)
119 } with { variant "FIELDLENGTH(2)" };
120
121 type uint3_t GsmSapi;
122
123 type record RslLinkId {
124 RslLinkIdC c,
125 boolean na,
126 RslSapi0Prio prio,
127 GsmSapi sapi
128 } with { variant "" };
129
130 template RslLinkId tr_RslLinkId := {
131 c := ?,
132 na := ?,
133 prio := ?,
134 sapi := ?
135 };
136
137 template RslLinkId tr_RslLinkID_DCCH(template GsmSapi sapi) modifies tr_RslLinkId := {
138 c := FACCH_SDCCH,
139 na := false,
140 sapi := sapi
141 };
142
143 template RslLinkId tr_RslLinkID_SACCH(template GsmSapi sapi) modifies tr_RslLinkId := {
144 c := SACCH,
145 na := false,
146 sapi := sapi
147 };
148
Harald Welte3b2ce022017-12-07 17:47:00 +0100149 template (value) RslLinkId ts_RslLinkID_DCCH(GsmSapi sapi) := {
Harald Welteb33e7272017-07-16 21:04:12 +0200150 c := FACCH_SDCCH,
151 na := false,
152 prio := SAPI0_PRIO_NORMAL,
153 sapi := sapi
154 };
155
Harald Welte3b2ce022017-12-07 17:47:00 +0100156 template (value) RslLinkId ts_RslLinkID_SACCH(GsmSapi sapi) := {
Harald Weltecb5d1fb2017-07-17 21:00:15 +0200157 c := SACCH,
158 na := false,
159 prio := SAPI0_PRIO_NORMAL,
160 sapi := sapi
Harald Welteb33e7272017-07-16 21:04:12 +0200161 };
162
Harald Welte23b774e2018-02-05 09:14:34 +0100163 function f_hex_is_odd_length(hexstring digits) return bitstring {
164 if (lengthof(digits) rem 2 == 1) {
165 return '1'B;
166 } else {
167 return '0'B;
168 }
169 }
170
Harald Weltea082a692017-07-15 15:58:13 +0200171} with { encode "RAW"; variant "FIELDORDER(msb)" }