blob: c7c85b043b5263502ed2c59f8a16fd516ead381b [file] [log] [blame]
Harald Weltea43f7892009-12-01 18:04:30 +05301/* GSM 04.08 System Information (SI) encoding and decoding
2 * 3GPP TS 04.08 version 7.21.0 Release 1998 / ETSI TS 100 940 V7.21.0 */
3
Harald Welte7401ae62010-06-15 16:44:12 +02004/* (C) 2008-2010 by Harald Welte <laforge@gnumonks.org>
Holger Hans Peter Freyther511f9c32012-10-13 12:38:54 +02005 * (C) 2012 Holger Hans Peter Freyther
Harald Weltea43f7892009-12-01 18:04:30 +05306 *
7 * All Rights Reserved
8 *
9 * This program is free software; you can redistribute it and/or modify
Harald Welte9af6ddf2011-01-01 15:25:50 +010010 * it under the terms of the GNU Affero General Public License as published by
11 * the Free Software Foundation; either version 3 of the License, or
Harald Weltea43f7892009-12-01 18:04:30 +053012 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Harald Welte9af6ddf2011-01-01 15:25:50 +010017 * GNU Affero General Public License for more details.
Harald Weltea43f7892009-12-01 18:04:30 +053018 *
Harald Welte9af6ddf2011-01-01 15:25:50 +010019 * You should have received a copy of the GNU Affero General Public License
20 * along with this program. If not, see <http://www.gnu.org/licenses/>.
Harald Weltea43f7892009-12-01 18:04:30 +053021 *
22 */
23
24#include <errno.h>
25#include <string.h>
Harald Welte6c40def2009-12-14 22:07:14 +010026#include <stdio.h>
Harald Weltea43f7892009-12-01 18:04:30 +053027#include <netinet/in.h>
Max5fa7e362016-04-15 16:04:45 +020028#include <stdbool.h>
Harald Weltea43f7892009-12-01 18:04:30 +053029
Harald Welte80cffaf2011-05-24 15:02:20 +020030#include <osmocom/core/bitvec.h>
31#include <osmocom/core/utils.h>
32#include <osmocom/gsm/sysinfo.h>
Neels Hofmeyr7b656882017-07-09 22:09:18 +020033#include <osmocom/gsm/gsm48_ie.h>
34#include <osmocom/gsm/gsm48.h>
Harald Welte80cffaf2011-05-24 15:02:20 +020035
Neels Hofmeyrc0164792017-09-04 15:15:32 +020036#include <osmocom/bsc/debug.h>
37#include <osmocom/bsc/gsm_data.h>
38#include <osmocom/bsc/abis_rsl.h>
39#include <osmocom/bsc/rest_octets.h>
40#include <osmocom/bsc/arfcn_range_encode.h>
41#include <osmocom/bsc/gsm_04_08_utils.h>
Stefan Sperling6442e432018-02-06 14:44:54 +010042#include <osmocom/bsc/acc_ramp.h>
Harald Weltea43f7892009-12-01 18:04:30 +053043
Holger Hans Peter Freytherd4d1d5e2013-01-17 13:49:39 +010044/*
45 * DCS1800 and PCS1900 have overlapping ARFCNs. We would need to set the
46 * ARFCN_PCS flag on the 1900 ARFCNs but this would increase cell_alloc
47 * and other arrays to make sure (ARFCN_PCS + 1024)/8 ARFCNs fit into the
48 * array. DCS1800 and PCS1900 can not be used at the same time so conserve
49 * memory and do the below.
50 */
51static int band_compatible(const struct gsm_bts *bts, int arfcn)
52{
53 enum gsm_band band = gsm_arfcn2band(arfcn);
54
55 /* normal case */
56 if (band == bts->band)
57 return 1;
58 /* deal with ARFCN_PCS not set */
59 if (band == GSM_BAND_1800 && bts->band == GSM_BAND_1900)
60 return 1;
61
62 return 0;
63}
Holger Hans Peter Freytherb91a1062010-01-06 06:38:14 +010064
Holger Hans Peter Freytherf876c392013-03-06 12:02:33 +010065static int is_dcs_net(const struct gsm_bts *bts)
66{
67 if (bts->band == GSM_BAND_850)
68 return 0;
69 if (bts->band == GSM_BAND_1900)
70 return 0;
71 return 1;
72}
73
Max299a9992016-04-28 17:51:15 +020074/* Return p(n) for given NR_OF_TDD_CELLS - see Table 9.1.54.1a, 3GPP TS 44.018 */
Max26679e02016-04-20 15:57:13 +020075unsigned range1024_p(unsigned n)
76{
77 switch (n) {
78 case 0: return 0;
79 case 1: return 10;
80 case 2: return 19;
81 case 3: return 28;
82 case 4: return 36;
83 case 5: return 44;
84 case 6: return 52;
85 case 7: return 60;
86 case 8: return 67;
87 case 9: return 74;
88 case 10: return 81;
89 case 11: return 88;
90 case 12: return 95;
91 case 13: return 102;
92 case 14: return 109;
93 case 15: return 116;
94 case 16: return 122;
95 default: return 0;
96 }
97}
98
99/* Return q(m) for given NR_OF_TDD_CELLS - see Table 9.1.54.1b, 3GPP TS 44.018 */
100unsigned range512_q(unsigned m)
101{
102 switch (m) {
103 case 0: return 0;
104 case 1: return 9;
105 case 2: return 17;
106 case 3: return 25;
107 case 4: return 32;
108 case 5: return 39;
109 case 6: return 46;
110 case 7: return 53;
111 case 8: return 59;
112 case 9: return 65;
113 case 10: return 71;
114 case 11: return 77;
115 case 12: return 83;
116 case 13: return 89;
117 case 14: return 95;
118 case 15: return 101;
119 case 16: return 106;
120 case 17: return 111;
121 case 18: return 116;
122 case 19: return 121;
123 case 20: return 126;
124 default: return 0;
125 }
126}
127
Max70fdd242017-06-15 15:10:53 +0200128size_t si2q_earfcn_count(const struct osmo_earfcn_si2q *e)
Max26679e02016-04-20 15:57:13 +0200129{
Max70fdd242017-06-15 15:10:53 +0200130 unsigned i, ret = 0;
Maxf39d03a2017-05-12 17:00:30 +0200131
Max70fdd242017-06-15 15:10:53 +0200132 if (!e)
133 return 0;
134
135 for (i = 0; i < e->length; i++)
136 if (e->arfcn[i] != OSMO_EARFCN_INVALID)
137 ret++;
138
139 return ret;
Max26679e02016-04-20 15:57:13 +0200140}
141
Max70fdd242017-06-15 15:10:53 +0200142/* generate SI2quater messages, return rest octets length of last generated message or negative error code */
143static int make_si2quaters(struct gsm_bts *bts, bool counting)
Max26679e02016-04-20 15:57:13 +0200144{
Max70fdd242017-06-15 15:10:53 +0200145 int rc;
146 bool memory_exceeded = true;
147 struct gsm48_system_information_type_2quater *si2q;
Maxe610e702016-12-19 13:41:48 +0100148
Max70fdd242017-06-15 15:10:53 +0200149 for (bts->si2q_index = 0; bts->si2q_index < SI2Q_MAX_NUM; bts->si2q_index++) {
150 si2q = GSM_BTS_SI2Q(bts, bts->si2q_index);
151 if (counting) { /* that's legitimate if we're called for counting purpose: */
152 if (bts->si2q_count < bts->si2q_index)
153 bts->si2q_count = bts->si2q_index;
154 } else {
155 memset(si2q, GSM_MACBLOCK_PADDING, GSM_MACBLOCK_LEN);
156
157 si2q->header.l2_plen = GSM48_LEN2PLEN(22);
158 si2q->header.rr_protocol_discriminator = GSM48_PDISC_RR;
159 si2q->header.skip_indicator = 0;
160 si2q->header.system_information = GSM48_MT_RR_SYSINFO_2quater;
161 }
162
163 rc = rest_octets_si2quater(si2q->rest_octets, bts);
164 if (rc < 0)
165 return rc;
166
167 if (bts->u_offset >= bts->si_common.uarfcn_length &&
168 bts->e_offset >= si2q_earfcn_count(&bts->si_common.si2quater_neigh_list)) {
169 memory_exceeded = false;
170 break;
Maxe610e702016-12-19 13:41:48 +0100171 }
172 }
173
Max70fdd242017-06-15 15:10:53 +0200174 if (memory_exceeded)
175 return -ENOMEM;
Maxe610e702016-12-19 13:41:48 +0100176
Max70fdd242017-06-15 15:10:53 +0200177 return rc;
Max26679e02016-04-20 15:57:13 +0200178}
179
Max70fdd242017-06-15 15:10:53 +0200180/* we generate SI2q rest octets twice to get proper estimation but it's one time cost anyway */
Maxf39d03a2017-05-12 17:00:30 +0200181uint8_t si2q_num(struct gsm_bts *bts)
Maxaafff962016-04-20 15:57:14 +0200182{
Max70fdd242017-06-15 15:10:53 +0200183 int rc = make_si2quaters(bts, true);
184 uint8_t num = bts->si2q_index + 1; /* number of SI2quater messages */
Maxf39d03a2017-05-12 17:00:30 +0200185
Max081ceba2017-09-29 14:10:24 +0200186 /* N. B: si2q_num() should NEVER be called during actual SI2q rest octets generation
Max70fdd242017-06-15 15:10:53 +0200187 we're not re-entrant because of the following code: */
188 bts->u_offset = 0;
189 bts->e_offset = 0;
Maxf39d03a2017-05-12 17:00:30 +0200190
Max70fdd242017-06-15 15:10:53 +0200191 if (rc < 0)
192 return 0xFF; /* return impossible index as an indicator of error in generating SI2quater */
Maxf39d03a2017-05-12 17:00:30 +0200193
Max70fdd242017-06-15 15:10:53 +0200194 return num;
Maxaafff962016-04-20 15:57:14 +0200195}
196
Max26679e02016-04-20 15:57:13 +0200197/* 3GPP TS 44.018, Table 9.1.54.1 - prepend diversity bit to scrambling code */
Max34be86b2016-12-16 18:45:51 +0100198static inline uint16_t encode_fdd(uint16_t scramble, bool diversity)
Max26679e02016-04-20 15:57:13 +0200199{
200 if (diversity)
201 return scramble | (1 << 9);
202 return scramble;
203}
204
Max70fdd242017-06-15 15:10:53 +0200205int bts_earfcn_add(struct gsm_bts *bts, uint16_t earfcn, uint8_t thresh_hi, uint8_t thresh_lo, uint8_t prio,
206 uint8_t qrx, uint8_t meas_bw)
207{
208 struct osmo_earfcn_si2q *e = &bts->si_common.si2quater_neigh_list;
209 int r = osmo_earfcn_add(e, earfcn, (meas_bw < EARFCN_MEAS_BW_INVALID) ? meas_bw : OSMO_EARFCN_MEAS_INVALID);
210
211 if (r < 0)
212 return r;
213
214 if (e->thresh_hi && thresh_hi != e->thresh_hi)
215 r = 1;
216
217 e->thresh_hi = thresh_hi;
218
219 if (thresh_lo != EARFCN_THRESH_LOW_INVALID) {
220 if (e->thresh_lo_valid && e->thresh_lo != thresh_lo)
221 r = EARFCN_THRESH_LOW_INVALID;
222 e->thresh_lo = thresh_lo;
223 e->thresh_lo_valid = true;
224 }
225
226 if (qrx != EARFCN_QRXLV_INVALID) {
227 if (e->qrxlm_valid && e->qrxlm != qrx)
228 r = EARFCN_QRXLV_INVALID + 1;
229 e->qrxlm = qrx;
230 e->qrxlm_valid = true;
231 }
232
233 if (prio != EARFCN_PRIO_INVALID) {
234 if (e->prio_valid && e->prio != prio)
235 r = EARFCN_PRIO_INVALID;
236 e->prio = prio;
237 e->prio_valid = true;
238 }
239
240 return r;
241}
242
Max081ceba2017-09-29 14:10:24 +0200243/* Scrambling Code as defined in 3GPP TS 25.213 is 9 bit long so number below is unreacheable upper bound */
244#define SC_BOUND 600
245
246/* Find position for a given UARFCN (take SC into consideration if it's available) in a sorted list
247 N. B: we rely on the assumption that (uarfcn, scramble) tuple is unique in the lists */
248static int uarfcn_sc_pos(const struct gsm_bts *bts, uint16_t uarfcn, uint16_t scramble)
249{
250 const uint16_t *sc = bts->si_common.data.scramble_list;
251 uint16_t i, scramble0 = encode_fdd(scramble, false), scramble1 = encode_fdd(scramble, true);
252 for (i = 0; i < bts->si_common.uarfcn_length; i++)
253 if (uarfcn == bts->si_common.data.uarfcn_list[i]) {
254 if (scramble < SC_BOUND) {
255 if (scramble0 == sc[i] || scramble1 == sc[i])
256 return i;
257 } else
258 return i;
259 }
260
261 return -1;
262}
263
Max26679e02016-04-20 15:57:13 +0200264int bts_uarfcn_del(struct gsm_bts *bts, uint16_t arfcn, uint16_t scramble)
265{
Max081ceba2017-09-29 14:10:24 +0200266 uint16_t *ual = bts->si_common.data.uarfcn_list, *scl = bts->si_common.data.scramble_list;
267 size_t len = bts->si_common.uarfcn_length;
268 int pos = uarfcn_sc_pos(bts, arfcn, scramble);
Max26679e02016-04-20 15:57:13 +0200269
Max081ceba2017-09-29 14:10:24 +0200270 if (pos < 0)
Max26679e02016-04-20 15:57:13 +0200271 return -EINVAL;
272
Max081ceba2017-09-29 14:10:24 +0200273 if (pos != len - 1) { /* move the tail if necessary */
274 memmove(ual + pos, ual + pos + 1, 2 * (len - pos + 1));
275 memmove(scl + pos, scl + pos + 1, 2 * (len - pos + 1));
276 }
277
Max26679e02016-04-20 15:57:13 +0200278 bts->si_common.uarfcn_length--;
279 return 0;
280}
281
Maxf39d03a2017-05-12 17:00:30 +0200282int bts_uarfcn_add(struct gsm_bts *bts, uint16_t arfcn, uint16_t scramble, bool diversity)
Max26679e02016-04-20 15:57:13 +0200283{
Max7d73cc72017-10-02 18:37:46 +0200284 size_t len = bts->si_common.uarfcn_length, i;
Max081ceba2017-09-29 14:10:24 +0200285 uint8_t si2q;
286 int pos = uarfcn_sc_pos(bts, arfcn, scramble);
287 uint16_t scr = diversity ? encode_fdd(scramble, true) : encode_fdd(scramble, false),
Max26679e02016-04-20 15:57:13 +0200288 *ual = bts->si_common.data.uarfcn_list,
Max081ceba2017-09-29 14:10:24 +0200289 *scl = bts->si_common.data.scramble_list;
Max26679e02016-04-20 15:57:13 +0200290
291 if (len == MAX_EARFCN_LIST)
292 return -ENOMEM;
293
Max081ceba2017-09-29 14:10:24 +0200294 if (pos >= 0)
295 return -EADDRINUSE;
Maxe610e702016-12-19 13:41:48 +0100296
Max081ceba2017-09-29 14:10:24 +0200297 /* find the suitable position for arfcn if any */
298 pos = uarfcn_sc_pos(bts, arfcn, SC_BOUND);
299 i = (pos < 0) ? len : pos;
300
Max7d73cc72017-10-02 18:37:46 +0200301 /* move the tail to make space for inserting if necessary */
302 if (i < len) {
303 memmove(ual + i + 1, ual + i, (len - i) * 2);
304 memmove(scl + i + 1, scl + i, (len - i) * 2);
Max26679e02016-04-20 15:57:13 +0200305 }
Maxe610e702016-12-19 13:41:48 +0100306
Max7d73cc72017-10-02 18:37:46 +0200307 /* insert into appropriate position */
308 ual[i] = arfcn;
309 scl[i] = scr;
Max26679e02016-04-20 15:57:13 +0200310 bts->si_common.uarfcn_length++;
Max7d73cc72017-10-02 18:37:46 +0200311 /* try to generate SI2q */
Max081ceba2017-09-29 14:10:24 +0200312 si2q = si2q_num(bts);
Maxaafff962016-04-20 15:57:14 +0200313
Max081ceba2017-09-29 14:10:24 +0200314 if (si2q <= SI2Q_MAX_NUM) {
315 bts->si2q_count = si2q - 1;
Maxaafff962016-04-20 15:57:14 +0200316 return 0;
Max70fdd242017-06-15 15:10:53 +0200317 }
Maxaafff962016-04-20 15:57:14 +0200318
Max7d73cc72017-10-02 18:37:46 +0200319 /* rollback after unsuccessful generation */
Maxaafff962016-04-20 15:57:14 +0200320 bts_uarfcn_del(bts, arfcn, scramble);
321 return -ENOSPC;
Max26679e02016-04-20 15:57:13 +0200322}
323
Max5fa7e362016-04-15 16:04:45 +0200324static inline int use_arfcn(const struct gsm_bts *bts, const bool bis, const bool ter,
325 const bool pgsm, const int arfcn)
Holger Hans Peter Freyther9e1952a2013-01-17 12:04:17 +0100326{
Jacob Erlbeck65d114f2014-01-16 11:02:14 +0100327 if (bts->force_combined_si)
328 return !bis && !ter;
Holger Hans Peter Freytherd4d1d5e2013-01-17 13:49:39 +0100329 if (!bis && !ter && band_compatible(bts, arfcn))
Holger Hans Peter Freyther9e1952a2013-01-17 12:04:17 +0100330 return 1;
Jacob Erlbeck65d114f2014-01-16 11:02:14 +0100331 /* Correct but somehow broken with either the nanoBTS or the iPhone5 */
Holger Hans Peter Freytherd4d1d5e2013-01-17 13:49:39 +0100332 if (bis && pgsm && band_compatible(bts, arfcn) && (arfcn < 1 || arfcn > 124))
Holger Hans Peter Freyther9e1952a2013-01-17 12:04:17 +0100333 return 1;
Holger Hans Peter Freytherd4d1d5e2013-01-17 13:49:39 +0100334 if (ter && !band_compatible(bts, arfcn))
Holger Hans Peter Freyther9e1952a2013-01-17 12:04:17 +0100335 return 1;
336 return 0;
337}
338
Harald Welteda760d32009-12-14 20:25:05 +0100339/* Frequency Lists as per TS 04.08 10.5.2.13 */
340
341/* 10.5.2.13.2: Bit map 0 format */
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200342static int freq_list_bm0_set_arfcn(uint8_t *chan_list, unsigned int arfcn)
Harald Weltea43f7892009-12-01 18:04:30 +0530343{
344 unsigned int byte, bit;
345
Harald Welteb1d4c8e2009-12-17 23:10:46 +0100346 if (arfcn > 124 || arfcn < 1) {
347 LOGP(DRR, LOGL_ERROR, "Bitmap 0 only supports ARFCN 1...124\n");
Harald Weltea43f7892009-12-01 18:04:30 +0530348 return -EINVAL;
Harald Welteb1d4c8e2009-12-17 23:10:46 +0100349 }
Harald Weltea43f7892009-12-01 18:04:30 +0530350
Harald Welteda760d32009-12-14 20:25:05 +0100351 /* the bitmask is from 1..124, not from 0..123 */
352 arfcn--;
353
Harald Weltea43f7892009-12-01 18:04:30 +0530354 byte = arfcn / 8;
355 bit = arfcn % 8;
356
Harald Welteda760d32009-12-14 20:25:05 +0100357 chan_list[GSM48_CELL_CHAN_DESC_SIZE-1-byte] |= (1 << bit);
Harald Weltea43f7892009-12-01 18:04:30 +0530358
359 return 0;
360}
361
Harald Welteda760d32009-12-14 20:25:05 +0100362/* 10.5.2.13.7: Variable bit map format */
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200363static int freq_list_bmrel_set_arfcn(uint8_t *chan_list, unsigned int arfcn)
Harald Weltea43f7892009-12-01 18:04:30 +0530364{
365 unsigned int byte, bit;
366 unsigned int min_arfcn;
367 unsigned int bitno;
368
369 min_arfcn = (chan_list[0] & 1) << 9;
370 min_arfcn |= chan_list[1] << 1;
371 min_arfcn |= (chan_list[2] >> 7) & 1;
372
373 /* The lower end of our bitmaks is always implicitly included */
374 if (arfcn == min_arfcn)
375 return 0;
376
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100377 if (((arfcn - min_arfcn) & 1023) > 111) {
Harald Welteb1d4c8e2009-12-17 23:10:46 +0100378 LOGP(DRR, LOGL_ERROR, "arfcn(%u) > min(%u) + 111\n", arfcn, min_arfcn);
Harald Weltea43f7892009-12-01 18:04:30 +0530379 return -EINVAL;
Harald Welte152b6262009-12-16 11:57:48 +0100380 }
Harald Weltea43f7892009-12-01 18:04:30 +0530381
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100382 bitno = (arfcn - min_arfcn) & 1023;
Harald Weltea43f7892009-12-01 18:04:30 +0530383 byte = bitno / 8;
384 bit = bitno % 8;
385
386 chan_list[2 + byte] |= 1 << (7 - bit);
387
388 return 0;
389}
390
Holger Hans Peter Freyther511f9c32012-10-13 12:38:54 +0200391/* generate a variable bitmap */
Max5fa7e362016-04-15 16:04:45 +0200392static inline int enc_freq_lst_var_bitmap(uint8_t *chan_list,
Holger Hans Peter Freyther511f9c32012-10-13 12:38:54 +0200393 struct bitvec *bv, const struct gsm_bts *bts,
Max5fa7e362016-04-15 16:04:45 +0200394 bool bis, bool ter, int min, bool pgsm)
Holger Hans Peter Freyther511f9c32012-10-13 12:38:54 +0200395{
396 int i;
397
398 /* set it to 'Variable bitmap format' */
399 chan_list[0] = 0x8e;
400
401 chan_list[0] |= (min >> 9) & 1;
402 chan_list[1] = (min >> 1);
403 chan_list[2] = (min & 1) << 7;
404
405 for (i = 0; i < bv->data_len*8; i++) {
406 /* see notes in bitvec2freq_list */
407 if (bitvec_get_bit_pos(bv, i)
Harald Weltee18f78e2015-09-04 06:21:32 +0200408 && ((!bis && !ter && band_compatible(bts,i))
409 || (bis && pgsm && band_compatible(bts,i) && (i < 1 || i > 124))
410 || (ter && !band_compatible(bts, i)))) {
Holger Hans Peter Freyther511f9c32012-10-13 12:38:54 +0200411 int rc = freq_list_bmrel_set_arfcn(chan_list, i);
412 if (rc < 0)
413 return rc;
414 }
415 }
416
417 return 0;
418}
419
Max881064e2016-12-14 14:51:40 +0100420int range_encode(enum gsm48_range r, int *arfcns, int arfcns_used, int *w,
421 int f0, uint8_t *chan_list)
422{
423 /*
424 * Manipulate the ARFCN list according to the rules in J4 depending
425 * on the selected range.
426 */
427 int rc, f0_included;
428
429 range_enc_filter_arfcns(arfcns, arfcns_used, f0, &f0_included);
430
431 rc = range_enc_arfcns(r, arfcns, arfcns_used, w, 0);
432 if (rc < 0)
433 return rc;
434
435 /* Select the range and the amount of bits needed */
436 switch (r) {
437 case ARFCN_RANGE_128:
438 return range_enc_range128(chan_list, f0, w);
439 case ARFCN_RANGE_256:
440 return range_enc_range256(chan_list, f0, w);
441 case ARFCN_RANGE_512:
442 return range_enc_range512(chan_list, f0, w);
443 case ARFCN_RANGE_1024:
444 return range_enc_range1024(chan_list, f0, f0_included, w);
445 default:
446 return -ERANGE;
447 };
448
449 return f0_included;
450}
451
Holger Hans Peter Freyther511f9c32012-10-13 12:38:54 +0200452/* generate a frequency list with the range 512 format */
Max5fa7e362016-04-15 16:04:45 +0200453static inline int enc_freq_lst_range(uint8_t *chan_list,
Holger Hans Peter Freyther511f9c32012-10-13 12:38:54 +0200454 struct bitvec *bv, const struct gsm_bts *bts,
Max5fa7e362016-04-15 16:04:45 +0200455 bool bis, bool ter, bool pgsm)
Holger Hans Peter Freyther511f9c32012-10-13 12:38:54 +0200456{
457 int arfcns[RANGE_ENC_MAX_ARFCNS];
458 int w[RANGE_ENC_MAX_ARFCNS];
Holger Hans Peter Freyther511f9c32012-10-13 12:38:54 +0200459 int arfcns_used = 0;
Max881064e2016-12-14 14:51:40 +0100460 int i, range, f0;
Holger Hans Peter Freyther511f9c32012-10-13 12:38:54 +0200461
462 /*
463 * Select ARFCNs according to the rules in bitvec2freq_list
464 */
465 for (i = 0; i < bv->data_len * 8; ++i) {
466 /* More ARFCNs than the maximum */
467 if (arfcns_used > ARRAY_SIZE(arfcns))
468 return -1;
469 /* Check if we can select it? */
Holger Hans Peter Freyther9e1952a2013-01-17 12:04:17 +0100470 if (bitvec_get_bit_pos(bv, i) && use_arfcn(bts, bis, ter, pgsm, i))
Holger Hans Peter Freyther511f9c32012-10-13 12:38:54 +0200471 arfcns[arfcns_used++] = i;
Holger Hans Peter Freyther511f9c32012-10-13 12:38:54 +0200472 }
473
474 /*
475 * Check if the given list of ARFCNs can be encoded.
476 */
477 range = range_enc_determine_range(arfcns, arfcns_used, &f0);
478 if (range == ARFCN_RANGE_INVALID)
479 return -2;
480
Holger Hans Peter Freyther511f9c32012-10-13 12:38:54 +0200481 memset(w, 0, sizeof(w));
Max881064e2016-12-14 14:51:40 +0100482 return range_encode(range, arfcns, arfcns_used, w, f0, chan_list);
Holger Hans Peter Freyther511f9c32012-10-13 12:38:54 +0200483}
484
Harald Weltea43f7892009-12-01 18:04:30 +0530485/* generate a cell channel list as per Section 10.5.2.1b of 04.08 */
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200486static int bitvec2freq_list(uint8_t *chan_list, struct bitvec *bv,
Max5fa7e362016-04-15 16:04:45 +0200487 const struct gsm_bts *bts, bool bis, bool ter)
Harald Weltea43f7892009-12-01 18:04:30 +0530488{
Max5fa7e362016-04-15 16:04:45 +0200489 int i, rc, min = -1, max = -1, arfcns = 0;
490 bool pgsm = false;
Harald Weltea43f7892009-12-01 18:04:30 +0530491 memset(chan_list, 0, 16);
492
Harald Welte29350342012-02-17 15:58:23 +0100493 if (bts->band == GSM_BAND_900
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100494 && bts->c0->arfcn >= 1 && bts->c0->arfcn <= 124)
Max5fa7e362016-04-15 16:04:45 +0200495 pgsm = true;
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100496 /* P-GSM-only handsets only support 'bit map 0 format' */
497 if (!bis && !ter && pgsm) {
Harald Weltea43f7892009-12-01 18:04:30 +0530498 chan_list[0] = 0;
Harald Welte6c40def2009-12-14 22:07:14 +0100499
500 for (i = 0; i < bv->data_len*8; i++) {
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100501 if (i >= 1 && i <= 124
502 && bitvec_get_bit_pos(bv, i)) {
Harald Welte6c40def2009-12-14 22:07:14 +0100503 rc = freq_list_bm0_set_arfcn(chan_list, i);
504 if (rc < 0)
505 return rc;
506 }
Harald Weltea43f7892009-12-01 18:04:30 +0530507 }
508 return 0;
509 }
510
Harald Welte6c40def2009-12-14 22:07:14 +0100511 for (i = 0; i < bv->data_len*8; i++) {
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100512 /* in case of SI2 or SI5 allow all neighbours in same band
513 * in case of SI*bis, allow neighbours in same band ouside pgsm
514 * in case of SI*ter, allow neighbours in different bands
515 */
Holger Hans Peter Freyther9e1952a2013-01-17 12:04:17 +0100516 if (!bitvec_get_bit_pos(bv, i))
517 continue;
518 if (!use_arfcn(bts, bis, ter, pgsm, i))
519 continue;
520 /* count the arfcns we want to carry */
521 arfcns += 1;
Holger Hans Peter Freyther511f9c32012-10-13 12:38:54 +0200522
Holger Hans Peter Freyther9e1952a2013-01-17 12:04:17 +0100523 /* 955..1023 < 0..885 */
524 if (min < 0)
525 min = i;
526 if (i >= 955 && min < 955)
527 min = i;
528 if (i >= 955 && min >= 955 && i < min)
529 min = i;
530 if (i < 955 && min < 955 && i < min)
531 min = i;
532 if (max < 0)
533 max = i;
534 if (i < 955 && max >= 955)
535 max = i;
536 if (i >= 955 && max >= 955 && i > max)
537 max = i;
538 if (i < 955 && max < 955 && i > max)
539 max = i;
Harald Weltea43f7892009-12-01 18:04:30 +0530540 }
541
Sylvain Munaut42a56522009-12-24 14:20:19 +0100542 if (max == -1) {
543 /* Empty set, use 'bit map 0 format' */
544 chan_list[0] = 0;
545 return 0;
546 }
547
Holger Hans Peter Freyther511f9c32012-10-13 12:38:54 +0200548 /* Now find the best encoding */
549 if (((max - min) & 1023) <= 111)
550 return enc_freq_lst_var_bitmap(chan_list, bv, bts, bis,
551 ter, min, pgsm);
Harald Weltea43f7892009-12-01 18:04:30 +0530552
Holger Hans Peter Freyther511f9c32012-10-13 12:38:54 +0200553 /* Attempt to do the range encoding */
554 rc = enc_freq_lst_range(chan_list, bv, bts, bis, ter, pgsm);
Max881064e2016-12-14 14:51:40 +0100555 if (rc >= 0)
Holger Hans Peter Freyther511f9c32012-10-13 12:38:54 +0200556 return 0;
Harald Weltea43f7892009-12-01 18:04:30 +0530557
Holger Hans Peter Freyther511f9c32012-10-13 12:38:54 +0200558 LOGP(DRR, LOGL_ERROR, "min_arfcn=%u, max_arfcn=%u, arfcns=%d "
559 "can not generate ARFCN list", min, max, arfcns);
560 return -EINVAL;
Harald Weltea43f7892009-12-01 18:04:30 +0530561}
562
563/* generate a cell channel list as per Section 10.5.2.1b of 04.08 */
Dieter Spaar16646022011-07-28 00:01:50 +0200564/* static*/ int generate_cell_chan_list(uint8_t *chan_list, struct gsm_bts *bts)
Harald Weltea43f7892009-12-01 18:04:30 +0530565{
Harald Weltea43f7892009-12-01 18:04:30 +0530566 struct gsm_bts_trx *trx;
Harald Welte6c40def2009-12-14 22:07:14 +0100567 struct bitvec *bv = &bts->si_common.cell_alloc;
Harald Weltea43f7892009-12-01 18:04:30 +0530568
Harald Weltea39b0f22010-06-14 22:26:10 +0200569 /* Zero-initialize the bit-vector */
Harald Weltec8794b52010-06-16 11:09:18 +0200570 memset(bv->data, 0, bv->data_len);
Harald Weltea39b0f22010-06-14 22:26:10 +0200571
Harald Welte6c40def2009-12-14 22:07:14 +0100572 /* first we generate a bitvec of all TRX ARFCN's in our BTS */
Harald Weltea39b0f22010-06-14 22:26:10 +0200573 llist_for_each_entry(trx, &bts->trx_list, list) {
574 unsigned int i, j;
575 /* Always add the TRX's ARFCN */
Harald Welte6c40def2009-12-14 22:07:14 +0100576 bitvec_set_bit_pos(bv, trx->arfcn, 1);
Harald Weltea39b0f22010-06-14 22:26:10 +0200577 for (i = 0; i < ARRAY_SIZE(trx->ts); i++) {
578 struct gsm_bts_trx_ts *ts = &trx->ts[i];
579 /* Add any ARFCNs present in hopping channels */
580 for (j = 0; j < 1024; j++) {
581 if (bitvec_get_bit_pos(&ts->hopping.arfcns, j))
582 bitvec_set_bit_pos(bv, j, 1);
583 }
584 }
585 }
Harald Weltea43f7892009-12-01 18:04:30 +0530586
Harald Welte6c40def2009-12-14 22:07:14 +0100587 /* then we generate a GSM 04.08 frequency list from the bitvec */
Max5fa7e362016-04-15 16:04:45 +0200588 return bitvec2freq_list(chan_list, bv, bts, false, false);
Harald Weltea43f7892009-12-01 18:04:30 +0530589}
590
Harald Welted6a52e92017-09-30 09:22:14 +0800591/*! generate a cell channel list as per Section 10.5.2.22 of 04.08
592 * \param[out] chan_list caller-provided output buffer
593 * \param[in] bts BTS descriptor used for input data
594 * \param[in] si5 Are we generating SI5xxx (true) or SI2xxx (false)
595 * \param[in] bis Are we generating SIXbis (true) or not (false)
596 * \param[in] ter Are we generating SIXter (true) or not (false)
597 */
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100598static int generate_bcch_chan_list(uint8_t *chan_list, struct gsm_bts *bts,
Max5fa7e362016-04-15 16:04:45 +0200599 bool si5, bool bis, bool ter)
Harald Welte6c40def2009-12-14 22:07:14 +0100600{
601 struct gsm_bts *cur_bts;
Harald Welte64c07d22011-02-15 11:43:27 +0100602 struct bitvec *bv;
Harald Welteaa70d9d2017-09-30 09:22:30 +0800603 int rc;
Harald Welte64c07d22011-02-15 11:43:27 +0100604
605 if (si5 && bts->neigh_list_manual_mode == NL_MODE_MANUAL_SI5SEP)
606 bv = &bts->si_common.si5_neigh_list;
607 else
608 bv = &bts->si_common.neigh_list;
Harald Welte6c40def2009-12-14 22:07:14 +0100609
Harald Welte32c09622011-01-11 23:44:56 +0100610 /* Generate list of neighbor cells if we are in automatic mode */
Harald Welte64c07d22011-02-15 11:43:27 +0100611 if (bts->neigh_list_manual_mode == NL_MODE_AUTOMATIC) {
Harald Welte21bbda22011-02-19 20:43:37 +0100612 /* Zero-initialize the bit-vector */
613 memset(bv->data, 0, bv->data_len);
614
Harald Welte32c09622011-01-11 23:44:56 +0100615 /* first we generate a bitvec of the BCCH ARFCN's in our BSC */
616 llist_for_each_entry(cur_bts, &bts->network->bts_list, list) {
617 if (cur_bts == bts)
618 continue;
619 bitvec_set_bit_pos(bv, cur_bts->c0->arfcn, 1);
620 }
Harald Welte6c40def2009-12-14 22:07:14 +0100621 }
622
623 /* then we generate a GSM 04.08 frequency list from the bitvec */
Harald Welteaa70d9d2017-09-30 09:22:30 +0800624 rc = bitvec2freq_list(chan_list, bv, bts, bis, ter);
625 if (rc < 0)
626 return rc;
627
628 /* Set BA-IND depending on whether we're generating SI2 or SI5.
629 * The point here is to be able to correlate whether a given MS
630 * measurement report was using the neighbor cells advertised in
631 * SI2 or in SI5, as those two could very well be different */
632 if (si5)
633 chan_list[0] |= 0x10;
634 else
635 chan_list[0] &= ~0x10;
636
637 return rc;
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100638}
639
640static int list_arfcn(uint8_t *chan_list, uint8_t mask, char *text)
641{
642 int n = 0, i;
643 struct gsm_sysinfo_freq freq[1024];
644
645 memset(freq, 0, sizeof(freq));
646 gsm48_decode_freq_list(freq, chan_list, 16, 0xce, 1);
647 for (i = 0; i < 1024; i++) {
648 if (freq[i].mask) {
649 if (!n)
650 LOGP(DRR, LOGL_INFO, "%s", text);
651 LOGPC(DRR, LOGL_INFO, " %d", i);
652 n++;
653 }
654 }
655 if (n)
656 LOGPC(DRR, LOGL_INFO, "\n");
657
658 return n;
Harald Welte6c40def2009-12-14 22:07:14 +0100659}
660
Max6f0e50c2017-04-12 15:30:54 +0200661static int generate_si1(enum osmo_sysinfo_type t, struct gsm_bts *bts)
Harald Weltea43f7892009-12-01 18:04:30 +0530662{
663 int rc;
Max6f0e50c2017-04-12 15:30:54 +0200664 struct gsm48_system_information_type_1 *si1 = (struct gsm48_system_information_type_1 *) GSM_BTS_SI(bts, t);
Harald Weltea43f7892009-12-01 18:04:30 +0530665
666 memset(si1, GSM_MACBLOCK_PADDING, GSM_MACBLOCK_LEN);
667
Max2440f492016-12-07 18:03:03 +0100668 si1->header.l2_plen = GSM48_LEN2PLEN(21);
Harald Weltea43f7892009-12-01 18:04:30 +0530669 si1->header.rr_protocol_discriminator = GSM48_PDISC_RR;
670 si1->header.skip_indicator = 0;
671 si1->header.system_information = GSM48_MT_RR_SYSINFO_1;
672
673 rc = generate_cell_chan_list(si1->cell_channel_description, bts);
674 if (rc < 0)
675 return rc;
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100676 list_arfcn(si1->cell_channel_description, 0xce, "Serving cell:");
Harald Weltea43f7892009-12-01 18:04:30 +0530677
678 si1->rach_control = bts->si_common.rach_control;
Stefan Sperling6442e432018-02-06 14:44:54 +0100679 if (acc_ramp_is_enabled(&bts->acc_ramp))
680 acc_ramp_apply(&si1->rach_control, &bts->acc_ramp);
Harald Weltea43f7892009-12-01 18:04:30 +0530681
Holger Hans Peter Freytherf876c392013-03-06 12:02:33 +0100682 /*
683 * SI1 Rest Octets (10.5.2.32), contains NCH position and band
684 * indicator but that is not in the 04.08.
685 */
686 rc = rest_octets_si1(si1->rest_octets, NULL, is_dcs_net(bts));
Harald Welte7401ae62010-06-15 16:44:12 +0200687
Holger Hans Peter Freyther7ec448d2010-01-06 07:52:31 +0100688 return sizeof(*si1) + rc;
Harald Weltea43f7892009-12-01 18:04:30 +0530689}
690
Max6f0e50c2017-04-12 15:30:54 +0200691static int generate_si2(enum osmo_sysinfo_type t, struct gsm_bts *bts)
Harald Weltea43f7892009-12-01 18:04:30 +0530692{
693 int rc;
Max6f0e50c2017-04-12 15:30:54 +0200694 struct gsm48_system_information_type_2 *si2 = (struct gsm48_system_information_type_2 *) GSM_BTS_SI(bts, t);
Harald Weltea43f7892009-12-01 18:04:30 +0530695
696 memset(si2, GSM_MACBLOCK_PADDING, GSM_MACBLOCK_LEN);
697
Max2440f492016-12-07 18:03:03 +0100698 si2->header.l2_plen = GSM48_LEN2PLEN(22);
Harald Weltea43f7892009-12-01 18:04:30 +0530699 si2->header.rr_protocol_discriminator = GSM48_PDISC_RR;
700 si2->header.skip_indicator = 0;
701 si2->header.system_information = GSM48_MT_RR_SYSINFO_2;
702
Max5fa7e362016-04-15 16:04:45 +0200703 rc = generate_bcch_chan_list(si2->bcch_frequency_list, bts, false, false, false);
Harald Weltea43f7892009-12-01 18:04:30 +0530704 if (rc < 0)
705 return rc;
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100706 list_arfcn(si2->bcch_frequency_list, 0xce,
Harald Weltee5ba92e2015-09-04 06:22:46 +0200707 "SI2 Neighbour cells in same band:");
Harald Weltea43f7892009-12-01 18:04:30 +0530708
709 si2->ncc_permitted = bts->si_common.ncc_permitted;
710 si2->rach_control = bts->si_common.rach_control;
Stefan Sperling6442e432018-02-06 14:44:54 +0100711 if (acc_ramp_is_enabled(&bts->acc_ramp))
712 acc_ramp_apply(&si2->rach_control, &bts->acc_ramp);
Harald Weltea43f7892009-12-01 18:04:30 +0530713
Holger Hans Peter Freyther7ec448d2010-01-06 07:52:31 +0100714 return sizeof(*si2);
Harald Weltea43f7892009-12-01 18:04:30 +0530715}
716
Max6f0e50c2017-04-12 15:30:54 +0200717static int generate_si2bis(enum osmo_sysinfo_type t, struct gsm_bts *bts)
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100718{
719 int rc;
720 struct gsm48_system_information_type_2bis *si2b =
Max6f0e50c2017-04-12 15:30:54 +0200721 (struct gsm48_system_information_type_2bis *) GSM_BTS_SI(bts, t);
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100722 int n;
723
724 memset(si2b, GSM_MACBLOCK_PADDING, GSM_MACBLOCK_LEN);
725
Max2440f492016-12-07 18:03:03 +0100726 si2b->header.l2_plen = GSM48_LEN2PLEN(22);
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100727 si2b->header.rr_protocol_discriminator = GSM48_PDISC_RR;
728 si2b->header.skip_indicator = 0;
729 si2b->header.system_information = GSM48_MT_RR_SYSINFO_2bis;
730
Max5fa7e362016-04-15 16:04:45 +0200731 rc = generate_bcch_chan_list(si2b->bcch_frequency_list, bts, false, true, false);
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100732 if (rc < 0)
733 return rc;
734 n = list_arfcn(si2b->bcch_frequency_list, 0xce,
735 "Neighbour cells in same band, but outside P-GSM:");
736 if (n) {
737 /* indicate in SI2 and SI2bis: there is an extension */
738 struct gsm48_system_information_type_2 *si2 =
Max6f0e50c2017-04-12 15:30:54 +0200739 (struct gsm48_system_information_type_2 *) GSM_BTS_SI(bts, SYSINFO_TYPE_2);
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100740 si2->bcch_frequency_list[0] |= 0x20;
741 si2b->bcch_frequency_list[0] |= 0x20;
742 } else
743 bts->si_valid &= ~(1 << SYSINFO_TYPE_2bis);
744
745 si2b->rach_control = bts->si_common.rach_control;
Stefan Sperling6442e432018-02-06 14:44:54 +0100746 if (acc_ramp_is_enabled(&bts->acc_ramp))
747 acc_ramp_apply(&si2b->rach_control, &bts->acc_ramp);
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100748
Max61b0c302017-12-11 12:24:18 +0100749 /* SI2bis Rest Octets as per 3GPP TS 44.018 §10.5.2.33 */
750 rc = rest_octets_si2bis(si2b->rest_octets);
751
752 return sizeof(*si2b) + rc;
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100753}
754
Max6f0e50c2017-04-12 15:30:54 +0200755static int generate_si2ter(enum osmo_sysinfo_type t, struct gsm_bts *bts)
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100756{
757 int rc;
758 struct gsm48_system_information_type_2ter *si2t =
Max6f0e50c2017-04-12 15:30:54 +0200759 (struct gsm48_system_information_type_2ter *) GSM_BTS_SI(bts, t);
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100760 int n;
761
762 memset(si2t, GSM_MACBLOCK_PADDING, GSM_MACBLOCK_LEN);
763
Max2440f492016-12-07 18:03:03 +0100764 si2t->header.l2_plen = GSM48_LEN2PLEN(22);
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100765 si2t->header.rr_protocol_discriminator = GSM48_PDISC_RR;
766 si2t->header.skip_indicator = 0;
767 si2t->header.system_information = GSM48_MT_RR_SYSINFO_2ter;
768
Max5fa7e362016-04-15 16:04:45 +0200769 rc = generate_bcch_chan_list(si2t->ext_bcch_frequency_list, bts, false, false, true);
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100770 if (rc < 0)
771 return rc;
772 n = list_arfcn(si2t->ext_bcch_frequency_list, 0x8e,
773 "Neighbour cells in different band:");
774 if (!n)
775 bts->si_valid &= ~(1 << SYSINFO_TYPE_2ter);
776
Max4bd710d2017-12-11 12:09:34 +0100777 /* SI2ter Rest Octets as per 3GPP TS 44.018 §10.5.2.33a */
778 rc = rest_octets_si2ter(si2t->rest_octets);
779
780 return sizeof(*si2t) + rc;
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100781}
782
Maxf39d03a2017-05-12 17:00:30 +0200783/* SI2quater messages are optional - we only generate them when neighbor UARFCNs or EARFCNs are configured */
784static inline bool si2quater_not_needed(struct gsm_bts *bts)
785{
786 unsigned i = MAX_EARFCN_LIST;
787
788 if (bts->si_common.si2quater_neigh_list.arfcn)
789 for (i = 0; i < MAX_EARFCN_LIST; i++)
790 if (bts->si_common.si2quater_neigh_list.arfcn[i] != OSMO_EARFCN_INVALID)
791 break;
792
793 if (!bts->si_common.uarfcn_length && i == MAX_EARFCN_LIST) {
794 bts->si_valid &= ~(1 << SYSINFO_TYPE_2quater); /* mark SI2q as invalid if no (E|U)ARFCNs are present */
795 return true;
796 }
797
798 return false;
799}
800
Max6f0e50c2017-04-12 15:30:54 +0200801static int generate_si2quater(enum osmo_sysinfo_type t, struct gsm_bts *bts)
Max59a1bf32016-04-15 16:04:46 +0200802{
Maxf39d03a2017-05-12 17:00:30 +0200803 int rc;
Max70fdd242017-06-15 15:10:53 +0200804 struct gsm48_system_information_type_2quater *si2q;
Maxf39d03a2017-05-12 17:00:30 +0200805
806 if (si2quater_not_needed(bts)) /* generate rest_octets for SI2q only when necessary */
807 return GSM_MACBLOCK_LEN;
Max59a1bf32016-04-15 16:04:46 +0200808
Max70fdd242017-06-15 15:10:53 +0200809 bts->u_offset = 0;
810 bts->e_offset = 0;
811 bts->si2q_index = 0;
812 bts->si2q_count = si2q_num(bts) - 1;
Max59a1bf32016-04-15 16:04:46 +0200813
Max70fdd242017-06-15 15:10:53 +0200814 rc = make_si2quaters(bts, false);
Max59a1bf32016-04-15 16:04:46 +0200815 if (rc < 0)
816 return rc;
817
Max70fdd242017-06-15 15:10:53 +0200818 OSMO_ASSERT(bts->si2q_count == bts->si2q_index);
819 OSMO_ASSERT(bts->si2q_count <= SI2Q_MAX_NUM);
820
Max59a1bf32016-04-15 16:04:46 +0200821 return sizeof(*si2q) + rc;
822}
823
Harald Welte1f893292010-03-14 23:46:48 +0800824static struct gsm48_si_ro_info si_info = {
Harald Weltea43f7892009-12-01 18:04:30 +0530825 .selection_params = {
826 .present = 0,
827 },
828 .power_offset = {
829 .present = 0,
830 },
Pau Espin Pedrol91c76fd2017-11-24 12:44:07 +0100831 .si2ter_indicator = false,
832 .early_cm_ctrl = true,
Harald Weltea43f7892009-12-01 18:04:30 +0530833 .scheduling = {
834 .present = 0,
835 },
836 .gprs_ind = {
837 .si13_position = 0,
838 .ra_colour = 0,
Harald Welte97a282b2010-03-14 15:37:43 +0800839 .present = 1,
Harald Weltea43f7892009-12-01 18:04:30 +0530840 },
Pau Espin Pedrole8dda5f2017-11-23 19:06:09 +0100841 .early_cm_restrict_3g = false,
Pau Espin Pedrol91c76fd2017-11-24 12:44:07 +0100842 .si2quater_indicator = false,
Harald Weltea43f7892009-12-01 18:04:30 +0530843 .lsa_params = {
844 .present = 0,
845 },
846 .cell_id = 0, /* FIXME: doesn't the bts have this? */
847 .break_ind = 0,
848};
849
Max6f0e50c2017-04-12 15:30:54 +0200850static int generate_si3(enum osmo_sysinfo_type t, struct gsm_bts *bts)
Harald Weltea43f7892009-12-01 18:04:30 +0530851{
Holger Hans Peter Freyther7ec448d2010-01-06 07:52:31 +0100852 int rc;
Max6f0e50c2017-04-12 15:30:54 +0200853 struct gsm48_system_information_type_3 *si3 = (struct gsm48_system_information_type_3 *) GSM_BTS_SI(bts, t);
Harald Weltea43f7892009-12-01 18:04:30 +0530854
855 memset(si3, GSM_MACBLOCK_PADDING, GSM_MACBLOCK_LEN);
856
Max2440f492016-12-07 18:03:03 +0100857 si3->header.l2_plen = GSM48_LEN2PLEN(18);
Harald Weltea43f7892009-12-01 18:04:30 +0530858 si3->header.rr_protocol_discriminator = GSM48_PDISC_RR;
859 si3->header.skip_indicator = 0;
860 si3->header.system_information = GSM48_MT_RR_SYSINFO_3;
861
862 si3->cell_identity = htons(bts->cell_identity);
Neels Hofmeyrf93970b2018-03-05 02:09:40 +0100863 gsm48_generate_lai2(&si3->lai, bts_lai(bts));
Harald Weltea43f7892009-12-01 18:04:30 +0530864 si3->control_channel_desc = bts->si_common.chan_desc;
865 si3->cell_options = bts->si_common.cell_options;
866 si3->cell_sel_par = bts->si_common.cell_sel_par;
867 si3->rach_control = bts->si_common.rach_control;
Stefan Sperling6442e432018-02-06 14:44:54 +0100868 if (acc_ramp_is_enabled(&bts->acc_ramp))
869 acc_ramp_apply(&si3->rach_control, &bts->acc_ramp);
Harald Weltea43f7892009-12-01 18:04:30 +0530870
Maxc08ee712016-05-11 12:45:13 +0200871 /* allow/disallow DTXu */
872 gsm48_set_dtx(&si3->cell_options, bts->dtxu, bts->dtxu, true);
873
Max9b97b002017-06-02 10:58:26 +0200874 if (GSM_BTS_HAS_SI(bts, SYSINFO_TYPE_2ter)) {
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100875 LOGP(DRR, LOGL_INFO, "SI 2ter is included.\n");
Pau Espin Pedrol91c76fd2017-11-24 12:44:07 +0100876 si_info.si2ter_indicator = true;
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100877 } else {
Pau Espin Pedrol91c76fd2017-11-24 12:44:07 +0100878 si_info.si2ter_indicator = false;
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100879 }
Max9b97b002017-06-02 10:58:26 +0200880 if (GSM_BTS_HAS_SI(bts, SYSINFO_TYPE_2quater)) {
Max845a3a42017-05-15 12:02:29 +0200881 LOGP(DRR, LOGL_INFO, "SI 2quater is included, based on %zu EARFCNs and %zu UARFCNs.\n",
882 si2q_earfcn_count(&bts->si_common.si2quater_neigh_list), bts->si_common.uarfcn_length);
Pau Espin Pedrol91c76fd2017-11-24 12:44:07 +0100883 si_info.si2quater_indicator = true;
Maxf3f35052016-04-15 16:04:44 +0200884 } else {
Pau Espin Pedrol91c76fd2017-11-24 12:44:07 +0100885 si_info.si2quater_indicator = false;
Maxf3f35052016-04-15 16:04:44 +0200886 }
Harald Welte42def722017-01-13 00:10:32 +0100887 si_info.early_cm_ctrl = bts->early_classmark_allowed;
Pau Espin Pedrole8dda5f2017-11-23 19:06:09 +0100888 si_info.early_cm_restrict_3g = !bts->early_classmark_allowed_3g;
Harald Welte42def722017-01-13 00:10:32 +0100889
Harald Weltea43f7892009-12-01 18:04:30 +0530890 /* SI3 Rest Octets (10.5.2.34), containing
891 CBQ, CELL_RESELECT_OFFSET, TEMPORARY_OFFSET, PENALTY_TIME
892 Power Offset, 2ter Indicator, Early Classmark Sending,
893 Scheduling if and WHERE, GPRS Indicator, SI13 position */
Holger Hans Peter Freyther7ec448d2010-01-06 07:52:31 +0100894 rc = rest_octets_si3(si3->rest_octets, &si_info);
Harald Weltea43f7892009-12-01 18:04:30 +0530895
Holger Hans Peter Freyther7ec448d2010-01-06 07:52:31 +0100896 return sizeof(*si3) + rc;
Harald Weltea43f7892009-12-01 18:04:30 +0530897}
898
Max6f0e50c2017-04-12 15:30:54 +0200899static int generate_si4(enum osmo_sysinfo_type t, struct gsm_bts *bts)
Harald Weltea43f7892009-12-01 18:04:30 +0530900{
Holger Hans Peter Freyther7ec448d2010-01-06 07:52:31 +0100901 int rc;
Max6f0e50c2017-04-12 15:30:54 +0200902 struct gsm48_system_information_type_4 *si4 = (struct gsm48_system_information_type_4 *) GSM_BTS_SI(bts, t);
Harald Welte30f1f372014-12-28 15:00:45 +0100903 struct gsm_lchan *cbch_lchan;
904 uint8_t *restoct = si4->data;
Harald Weltea43f7892009-12-01 18:04:30 +0530905
906 /* length of all IEs present except SI4 rest octets and l2_plen */
907 int l2_plen = sizeof(*si4) - 1;
908
909 memset(si4, GSM_MACBLOCK_PADDING, GSM_MACBLOCK_LEN);
910
911 si4->header.rr_protocol_discriminator = GSM48_PDISC_RR;
912 si4->header.skip_indicator = 0;
913 si4->header.system_information = GSM48_MT_RR_SYSINFO_4;
914
Neels Hofmeyrf93970b2018-03-05 02:09:40 +0100915 gsm48_generate_lai2(&si4->lai, bts_lai(bts));
Harald Weltea43f7892009-12-01 18:04:30 +0530916 si4->cell_sel_par = bts->si_common.cell_sel_par;
917 si4->rach_control = bts->si_common.rach_control;
Stefan Sperling6442e432018-02-06 14:44:54 +0100918 if (acc_ramp_is_enabled(&bts->acc_ramp))
919 acc_ramp_apply(&si4->rach_control, &bts->acc_ramp);
Harald Weltea43f7892009-12-01 18:04:30 +0530920
921 /* Optional: CBCH Channel Description + CBCH Mobile Allocation */
Harald Welte142d12d2014-12-29 17:47:08 +0100922 cbch_lchan = gsm_bts_get_cbch(bts);
Harald Welte30f1f372014-12-28 15:00:45 +0100923 if (cbch_lchan) {
924 struct gsm48_chan_desc cd;
925 gsm48_lchan2chan_desc(&cd, cbch_lchan);
Daniel Willmann695675f2014-12-30 12:10:25 +0100926 tv_fixed_put(si4->data, GSM48_IE_CBCH_CHAN_DESC, 3,
Harald Welte30f1f372014-12-28 15:00:45 +0100927 (uint8_t *) &cd);
Daniel Willmann695675f2014-12-30 12:10:25 +0100928 l2_plen += 3 + 1;
929 restoct += 3 + 1;
Harald Welte30f1f372014-12-28 15:00:45 +0100930 /* we don't use hopping and thus don't need a CBCH MA */
931 }
Harald Weltea43f7892009-12-01 18:04:30 +0530932
Max2440f492016-12-07 18:03:03 +0100933 si4->header.l2_plen = GSM48_LEN2PLEN(l2_plen);
Harald Weltea43f7892009-12-01 18:04:30 +0530934
935 /* SI4 Rest Octets (10.5.2.35), containing
936 Optional Power offset, GPRS Indicator,
937 Cell Identity, LSA ID, Selection Parameter */
Max6f0e50c2017-04-12 15:30:54 +0200938 rc = rest_octets_si4(restoct, &si_info, (uint8_t *)GSM_BTS_SI(bts, t) + GSM_MACBLOCK_LEN - restoct);
Harald Weltea43f7892009-12-01 18:04:30 +0530939
Harald Welte30f1f372014-12-28 15:00:45 +0100940 return l2_plen + 1 + rc;
Harald Weltea43f7892009-12-01 18:04:30 +0530941}
942
Max6f0e50c2017-04-12 15:30:54 +0200943static int generate_si5(enum osmo_sysinfo_type t, struct gsm_bts *bts)
Harald Weltea43f7892009-12-01 18:04:30 +0530944{
Harald Weltee2d0d5f2009-12-19 21:26:54 +0100945 struct gsm48_system_information_type_5 *si5;
Max6f0e50c2017-04-12 15:30:54 +0200946 uint8_t *output = GSM_BTS_SI(bts, t);
Harald Weltee2d0d5f2009-12-19 21:26:54 +0100947 int rc, l2_plen = 18;
Harald Weltea43f7892009-12-01 18:04:30 +0530948
Holger Hans Peter Freyther17d81e22010-01-06 07:52:55 +0100949 memset(output, GSM_MACBLOCK_PADDING, GSM_MACBLOCK_LEN);
950
Harald Weltee2d0d5f2009-12-19 21:26:54 +0100951 /* ip.access nanoBTS needs l2_plen!! */
Harald Weltefd355a32011-03-04 13:41:31 +0100952 switch (bts->type) {
953 case GSM_BTS_TYPE_NANOBTS:
Maxf9685c12017-03-23 12:01:07 +0100954 case GSM_BTS_TYPE_OSMOBTS:
Max2440f492016-12-07 18:03:03 +0100955 *output++ = GSM48_LEN2PLEN(l2_plen);
Harald Weltee2d0d5f2009-12-19 21:26:54 +0100956 l2_plen++;
Harald Weltefd355a32011-03-04 13:41:31 +0100957 break;
958 default:
959 break;
Harald Weltee2d0d5f2009-12-19 21:26:54 +0100960 }
961
Max6f0e50c2017-04-12 15:30:54 +0200962 si5 = (struct gsm48_system_information_type_5 *) GSM_BTS_SI(bts, t);
Harald Weltea43f7892009-12-01 18:04:30 +0530963
964 /* l2 pseudo length, not part of msg: 18 */
965 si5->rr_protocol_discriminator = GSM48_PDISC_RR;
966 si5->skip_indicator = 0;
967 si5->system_information = GSM48_MT_RR_SYSINFO_5;
Max5fa7e362016-04-15 16:04:45 +0200968 rc = generate_bcch_chan_list(si5->bcch_frequency_list, bts, true, false, false);
Harald Weltea43f7892009-12-01 18:04:30 +0530969 if (rc < 0)
970 return rc;
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100971 list_arfcn(si5->bcch_frequency_list, 0xce,
Harald Weltee5ba92e2015-09-04 06:22:46 +0200972 "SI5 Neighbour cells in same band:");
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100973
974 /* 04.08 9.1.37: L2 Pseudo Length of 18 */
975 return l2_plen;
976}
977
Max6f0e50c2017-04-12 15:30:54 +0200978static int generate_si5bis(enum osmo_sysinfo_type t, struct gsm_bts *bts)
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100979{
980 struct gsm48_system_information_type_5bis *si5b;
Max6f0e50c2017-04-12 15:30:54 +0200981 uint8_t *output = GSM_BTS_SI(bts, t);
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100982 int rc, l2_plen = 18;
983 int n;
984
985 memset(output, GSM_MACBLOCK_PADDING, GSM_MACBLOCK_LEN);
986
987 /* ip.access nanoBTS needs l2_plen!! */
988 switch (bts->type) {
989 case GSM_BTS_TYPE_NANOBTS:
Maxf9685c12017-03-23 12:01:07 +0100990 case GSM_BTS_TYPE_OSMOBTS:
Max2440f492016-12-07 18:03:03 +0100991 *output++ = GSM48_LEN2PLEN(l2_plen);
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100992 l2_plen++;
993 break;
994 default:
995 break;
996 }
997
Max6f0e50c2017-04-12 15:30:54 +0200998 si5b = (struct gsm48_system_information_type_5bis *) GSM_BTS_SI(bts, t);
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100999
1000 /* l2 pseudo length, not part of msg: 18 */
1001 si5b->rr_protocol_discriminator = GSM48_PDISC_RR;
1002 si5b->skip_indicator = 0;
1003 si5b->system_information = GSM48_MT_RR_SYSINFO_5bis;
Max5fa7e362016-04-15 16:04:45 +02001004 rc = generate_bcch_chan_list(si5b->bcch_frequency_list, bts, true, true, false);
Andreas Eversbergc50543b2012-02-29 09:04:07 +01001005 if (rc < 0)
1006 return rc;
1007 n = list_arfcn(si5b->bcch_frequency_list, 0xce,
1008 "Neighbour cells in same band, but outside P-GSM:");
1009 if (n) {
1010 /* indicate in SI5 and SI5bis: there is an extension */
1011 struct gsm48_system_information_type_5 *si5 =
Max6f0e50c2017-04-12 15:30:54 +02001012 (struct gsm48_system_information_type_5 *) GSM_BTS_SI(bts, SYSINFO_TYPE_5);
Andreas Eversbergc50543b2012-02-29 09:04:07 +01001013 si5->bcch_frequency_list[0] |= 0x20;
1014 si5b->bcch_frequency_list[0] |= 0x20;
1015 } else
1016 bts->si_valid &= ~(1 << SYSINFO_TYPE_5bis);
1017
1018 /* 04.08 9.1.37: L2 Pseudo Length of 18 */
1019 return l2_plen;
1020}
1021
Max6f0e50c2017-04-12 15:30:54 +02001022static int generate_si5ter(enum osmo_sysinfo_type t, struct gsm_bts *bts)
Andreas Eversbergc50543b2012-02-29 09:04:07 +01001023{
1024 struct gsm48_system_information_type_5ter *si5t;
Max6f0e50c2017-04-12 15:30:54 +02001025 uint8_t *output = GSM_BTS_SI(bts, t);
Andreas Eversbergc50543b2012-02-29 09:04:07 +01001026 int rc, l2_plen = 18;
1027 int n;
1028
1029 memset(output, GSM_MACBLOCK_PADDING, GSM_MACBLOCK_LEN);
1030
1031 /* ip.access nanoBTS needs l2_plen!! */
1032 switch (bts->type) {
1033 case GSM_BTS_TYPE_NANOBTS:
Maxf9685c12017-03-23 12:01:07 +01001034 case GSM_BTS_TYPE_OSMOBTS:
Max2440f492016-12-07 18:03:03 +01001035 *output++ = GSM48_LEN2PLEN(l2_plen);
Andreas Eversbergc50543b2012-02-29 09:04:07 +01001036 l2_plen++;
1037 break;
1038 default:
1039 break;
1040 }
1041
Max6f0e50c2017-04-12 15:30:54 +02001042 si5t = (struct gsm48_system_information_type_5ter *) GSM_BTS_SI(bts, t);
Andreas Eversbergc50543b2012-02-29 09:04:07 +01001043
1044 /* l2 pseudo length, not part of msg: 18 */
1045 si5t->rr_protocol_discriminator = GSM48_PDISC_RR;
1046 si5t->skip_indicator = 0;
1047 si5t->system_information = GSM48_MT_RR_SYSINFO_5ter;
Max5fa7e362016-04-15 16:04:45 +02001048 rc = generate_bcch_chan_list(si5t->bcch_frequency_list, bts, true, false, true);
Andreas Eversbergc50543b2012-02-29 09:04:07 +01001049 if (rc < 0)
1050 return rc;
1051 n = list_arfcn(si5t->bcch_frequency_list, 0x8e,
1052 "Neighbour cells in different band:");
1053 if (!n)
1054 bts->si_valid &= ~(1 << SYSINFO_TYPE_5ter);
Harald Weltea43f7892009-12-01 18:04:30 +05301055
1056 /* 04.08 9.1.37: L2 Pseudo Length of 18 */
Harald Weltee2d0d5f2009-12-19 21:26:54 +01001057 return l2_plen;
Harald Weltea43f7892009-12-01 18:04:30 +05301058}
1059
Max6f0e50c2017-04-12 15:30:54 +02001060static int generate_si6(enum osmo_sysinfo_type t, struct gsm_bts *bts)
Harald Weltea43f7892009-12-01 18:04:30 +05301061{
Harald Weltee2d0d5f2009-12-19 21:26:54 +01001062 struct gsm48_system_information_type_6 *si6;
Max6f0e50c2017-04-12 15:30:54 +02001063 uint8_t *output = GSM_BTS_SI(bts, t);
Harald Weltee2d0d5f2009-12-19 21:26:54 +01001064 int l2_plen = 11;
Holger Hans Peter Freyther82dd9832016-05-17 23:20:03 +02001065 int rc;
Harald Weltea43f7892009-12-01 18:04:30 +05301066
Holger Hans Peter Freyther17d81e22010-01-06 07:52:55 +01001067 memset(output, GSM_MACBLOCK_PADDING, GSM_MACBLOCK_LEN);
1068
Harald Weltee2d0d5f2009-12-19 21:26:54 +01001069 /* ip.access nanoBTS needs l2_plen!! */
Harald Weltefd355a32011-03-04 13:41:31 +01001070 switch (bts->type) {
1071 case GSM_BTS_TYPE_NANOBTS:
Maxf9685c12017-03-23 12:01:07 +01001072 case GSM_BTS_TYPE_OSMOBTS:
Max2440f492016-12-07 18:03:03 +01001073 *output++ = GSM48_LEN2PLEN(l2_plen);
Harald Weltee2d0d5f2009-12-19 21:26:54 +01001074 l2_plen++;
Harald Weltefd355a32011-03-04 13:41:31 +01001075 break;
1076 default:
1077 break;
Harald Weltee2d0d5f2009-12-19 21:26:54 +01001078 }
1079
Max6f0e50c2017-04-12 15:30:54 +02001080 si6 = (struct gsm48_system_information_type_6 *) GSM_BTS_SI(bts, t);
Harald Weltea43f7892009-12-01 18:04:30 +05301081
1082 /* l2 pseudo length, not part of msg: 11 */
1083 si6->rr_protocol_discriminator = GSM48_PDISC_RR;
1084 si6->skip_indicator = 0;
1085 si6->system_information = GSM48_MT_RR_SYSINFO_6;
1086 si6->cell_identity = htons(bts->cell_identity);
Neels Hofmeyrf93970b2018-03-05 02:09:40 +01001087 gsm48_generate_lai2(&si6->lai, bts_lai(bts));
Harald Weltea43f7892009-12-01 18:04:30 +05301088 si6->cell_options = bts->si_common.cell_options;
1089 si6->ncc_permitted = bts->si_common.ncc_permitted;
Maxc08ee712016-05-11 12:45:13 +02001090 /* allow/disallow DTXu */
Maxea8e9832016-05-23 17:28:13 +02001091 gsm48_set_dtx(&si6->cell_options, bts->dtxu, bts->dtxu, false);
Harald Weltea43f7892009-12-01 18:04:30 +05301092
1093 /* SI6 Rest Octets: 10.5.2.35a: PCH / NCH info, VBS/VGCS options */
Holger Hans Peter Freyther82dd9832016-05-17 23:20:03 +02001094 rc = rest_octets_si6(si6->rest_octets, is_dcs_net(bts));
Harald Weltea43f7892009-12-01 18:04:30 +05301095
Holger Hans Peter Freyther82dd9832016-05-17 23:20:03 +02001096 return l2_plen + rc;
Harald Weltea43f7892009-12-01 18:04:30 +05301097}
1098
1099static struct gsm48_si13_info si13_default = {
1100 .cell_opts = {
Harald Welte85849182010-06-02 12:19:21 +02001101 .nmo = GPRS_NMO_II,
Harald Weltea4b16652010-05-31 12:54:23 +02001102 .t3168 = 2000,
Andreas Eversbergbecc89a2012-09-23 08:14:51 +02001103 .t3192 = 1500,
Harald Welte97a282b2010-03-14 15:37:43 +08001104 .drx_timer_max = 3,
Harald Weltea43f7892009-12-01 18:04:30 +05301105 .bs_cv_max = 15,
Max292ec582016-07-28 11:55:37 +02001106 .ctrl_ack_type_use_block = true,
Sylvain Munaut851f1202011-10-17 13:56:02 +02001107 .ext_info_present = 0,
bhargava350533c2016-07-21 11:14:34 +05301108 .supports_egprs_11bit_rach = 0,
Harald Welteda0586a2010-04-18 14:49:05 +02001109 .ext_info = {
1110 /* The values below are just guesses ! */
Harald Weltea06fea02010-04-18 15:53:40 +02001111 .egprs_supported = 0,
Harald Welteda0586a2010-04-18 14:49:05 +02001112 .use_egprs_p_ch_req = 1,
Harald Weltea4b16652010-05-31 12:54:23 +02001113 .bep_period = 5,
Harald Welteda0586a2010-04-18 14:49:05 +02001114 .pfc_supported = 0,
1115 .dtm_supported = 0,
1116 .bss_paging_coordination = 0,
1117 },
Harald Weltea43f7892009-12-01 18:04:30 +05301118 },
1119 .pwr_ctrl_pars = {
Harald Weltec15d0ac2012-10-08 21:22:08 +02001120 .alpha = 0, /* a = 0.0 */
Harald Weltea4b16652010-05-31 12:54:23 +02001121 .t_avg_w = 16,
1122 .t_avg_t = 16,
Harald Weltea43f7892009-12-01 18:04:30 +05301123 .pc_meas_chan = 0, /* downling measured on CCCH */
Harald Weltea4b16652010-05-31 12:54:23 +02001124 .n_avg_i = 8,
Harald Weltea43f7892009-12-01 18:04:30 +05301125 },
Harald Welte97a282b2010-03-14 15:37:43 +08001126 .bcch_change_mark = 1,
Harald Weltea43f7892009-12-01 18:04:30 +05301127 .si_change_field = 0,
Max72fbc952017-08-29 13:14:24 +02001128 .rac = 0, /* needs to be patched */
1129 .spgc_ccch_sup = 0,
1130 .net_ctrl_ord = 0,
1131 .prio_acc_thr = 6,
Harald Weltea43f7892009-12-01 18:04:30 +05301132};
1133
Max6f0e50c2017-04-12 15:30:54 +02001134static int generate_si13(enum osmo_sysinfo_type t, struct gsm_bts *bts)
Harald Weltea43f7892009-12-01 18:04:30 +05301135{
1136 struct gsm48_system_information_type_13 *si13 =
Max6f0e50c2017-04-12 15:30:54 +02001137 (struct gsm48_system_information_type_13 *) GSM_BTS_SI(bts, t);
Harald Weltea43f7892009-12-01 18:04:30 +05301138 int ret;
1139
1140 memset(si13, GSM_MACBLOCK_PADDING, GSM_MACBLOCK_LEN);
1141
1142 si13->header.rr_protocol_discriminator = GSM48_PDISC_RR;
1143 si13->header.skip_indicator = 0;
1144 si13->header.system_information = GSM48_MT_RR_SYSINFO_13;
1145
Max72fbc952017-08-29 13:14:24 +02001146 si13_default.rac = bts->gprs.rac;
1147 si13_default.net_ctrl_ord = bts->gprs.net_ctrl_ord;
Harald Welte97a282b2010-03-14 15:37:43 +08001148
Max292ec582016-07-28 11:55:37 +02001149 si13_default.cell_opts.ctrl_ack_type_use_block =
1150 bts->gprs.ctrl_ack_type_use_block;
1151
Holger Hans Peter Freytherb92a5382014-11-21 10:00:39 +01001152 /* Information about the other SIs */
1153 si13_default.bcch_change_mark = bts->bcch_change_mark;
bhargava350533c2016-07-21 11:14:34 +05301154 si13_default.cell_opts.supports_egprs_11bit_rach =
1155 bts->gprs.supports_egprs_11bit_rach;
Holger Hans Peter Freytherb92a5382014-11-21 10:00:39 +01001156
Harald Weltea43f7892009-12-01 18:04:30 +05301157 ret = rest_octets_si13(si13->rest_octets, &si13_default);
1158 if (ret < 0)
1159 return ret;
1160
Holger Hans Peter Freyther1c6f3942010-06-16 12:05:56 +08001161 /* length is coded in bit 2 an up */
1162 si13->header.l2_plen = 0x01;
Harald Weltea43f7892009-12-01 18:04:30 +05301163
Holger Hans Peter Freyther7ec448d2010-01-06 07:52:31 +01001164 return sizeof (*si13) + ret;
Harald Weltea43f7892009-12-01 18:04:30 +05301165}
1166
Max6f0e50c2017-04-12 15:30:54 +02001167typedef int (*gen_si_fn_t)(enum osmo_sysinfo_type t, struct gsm_bts *bts);
Harald Welte7401ae62010-06-15 16:44:12 +02001168
1169static const gen_si_fn_t gen_si_fn[_MAX_SYSINFO_TYPE] = {
1170 [SYSINFO_TYPE_1] = &generate_si1,
1171 [SYSINFO_TYPE_2] = &generate_si2,
Andreas Eversbergc50543b2012-02-29 09:04:07 +01001172 [SYSINFO_TYPE_2bis] = &generate_si2bis,
1173 [SYSINFO_TYPE_2ter] = &generate_si2ter,
Max59a1bf32016-04-15 16:04:46 +02001174 [SYSINFO_TYPE_2quater] = &generate_si2quater,
Harald Welte7401ae62010-06-15 16:44:12 +02001175 [SYSINFO_TYPE_3] = &generate_si3,
1176 [SYSINFO_TYPE_4] = &generate_si4,
1177 [SYSINFO_TYPE_5] = &generate_si5,
Andreas Eversbergc50543b2012-02-29 09:04:07 +01001178 [SYSINFO_TYPE_5bis] = &generate_si5bis,
1179 [SYSINFO_TYPE_5ter] = &generate_si5ter,
Harald Welte7401ae62010-06-15 16:44:12 +02001180 [SYSINFO_TYPE_6] = &generate_si6,
1181 [SYSINFO_TYPE_13] = &generate_si13,
1182};
1183
Harald Welte7401ae62010-06-15 16:44:12 +02001184int gsm_generate_si(struct gsm_bts *bts, enum osmo_sysinfo_type si_type)
1185{
1186 gen_si_fn_t gen_si;
1187
Harald Welte4511d892010-04-18 15:51:20 +02001188 switch (bts->gprs.mode) {
1189 case BTS_GPRS_EGPRS:
Harald Weltea06fea02010-04-18 15:53:40 +02001190 si13_default.cell_opts.ext_info_present = 1;
1191 si13_default.cell_opts.ext_info.egprs_supported = 1;
1192 /* fallthrough */
Harald Welte4511d892010-04-18 15:51:20 +02001193 case BTS_GPRS_GPRS:
1194 si_info.gprs_ind.present = 1;
1195 break;
1196 case BTS_GPRS_NONE:
1197 si_info.gprs_ind.present = 0;
1198 break;
1199 }
Harald Welte1f893292010-03-14 23:46:48 +08001200
Sylvain Munaute0b06b02010-11-28 18:17:28 +01001201 memcpy(&si_info.selection_params,
1202 &bts->si_common.cell_ro_sel_par,
1203 sizeof(struct gsm48_si_selection_params));
1204
Harald Welte7401ae62010-06-15 16:44:12 +02001205 gen_si = gen_si_fn[si_type];
1206 if (!gen_si)
Harald Weltea43f7892009-12-01 18:04:30 +05301207 return -EINVAL;
Harald Weltea43f7892009-12-01 18:04:30 +05301208
Max6f0e50c2017-04-12 15:30:54 +02001209 return gen_si(si_type, bts);
Harald Weltea43f7892009-12-01 18:04:30 +05301210}