blob: c1b0d49f6aabb5d8e1d468f9422990a14dd7c3d3 [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>
Harald Weltea43f7892009-12-01 18:04:30 +053042
Holger Hans Peter Freytherd4d1d5e2013-01-17 13:49:39 +010043/*
44 * DCS1800 and PCS1900 have overlapping ARFCNs. We would need to set the
45 * ARFCN_PCS flag on the 1900 ARFCNs but this would increase cell_alloc
46 * and other arrays to make sure (ARFCN_PCS + 1024)/8 ARFCNs fit into the
47 * array. DCS1800 and PCS1900 can not be used at the same time so conserve
48 * memory and do the below.
49 */
50static int band_compatible(const struct gsm_bts *bts, int arfcn)
51{
52 enum gsm_band band = gsm_arfcn2band(arfcn);
53
54 /* normal case */
55 if (band == bts->band)
56 return 1;
57 /* deal with ARFCN_PCS not set */
58 if (band == GSM_BAND_1800 && bts->band == GSM_BAND_1900)
59 return 1;
60
61 return 0;
62}
Holger Hans Peter Freytherb91a1062010-01-06 06:38:14 +010063
Holger Hans Peter Freytherf876c392013-03-06 12:02:33 +010064static int is_dcs_net(const struct gsm_bts *bts)
65{
66 if (bts->band == GSM_BAND_850)
67 return 0;
68 if (bts->band == GSM_BAND_1900)
69 return 0;
70 return 1;
71}
72
Max299a9992016-04-28 17:51:15 +020073/* 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 +020074unsigned range1024_p(unsigned n)
75{
76 switch (n) {
77 case 0: return 0;
78 case 1: return 10;
79 case 2: return 19;
80 case 3: return 28;
81 case 4: return 36;
82 case 5: return 44;
83 case 6: return 52;
84 case 7: return 60;
85 case 8: return 67;
86 case 9: return 74;
87 case 10: return 81;
88 case 11: return 88;
89 case 12: return 95;
90 case 13: return 102;
91 case 14: return 109;
92 case 15: return 116;
93 case 16: return 122;
94 default: return 0;
95 }
96}
97
98/* Return q(m) for given NR_OF_TDD_CELLS - see Table 9.1.54.1b, 3GPP TS 44.018 */
99unsigned range512_q(unsigned m)
100{
101 switch (m) {
102 case 0: return 0;
103 case 1: return 9;
104 case 2: return 17;
105 case 3: return 25;
106 case 4: return 32;
107 case 5: return 39;
108 case 6: return 46;
109 case 7: return 53;
110 case 8: return 59;
111 case 9: return 65;
112 case 10: return 71;
113 case 11: return 77;
114 case 12: return 83;
115 case 13: return 89;
116 case 14: return 95;
117 case 15: return 101;
118 case 16: return 106;
119 case 17: return 111;
120 case 18: return 116;
121 case 19: return 121;
122 case 20: return 126;
123 default: return 0;
124 }
125}
126
Max70fdd242017-06-15 15:10:53 +0200127size_t si2q_earfcn_count(const struct osmo_earfcn_si2q *e)
Max26679e02016-04-20 15:57:13 +0200128{
Max70fdd242017-06-15 15:10:53 +0200129 unsigned i, ret = 0;
Maxf39d03a2017-05-12 17:00:30 +0200130
Max70fdd242017-06-15 15:10:53 +0200131 if (!e)
132 return 0;
133
134 for (i = 0; i < e->length; i++)
135 if (e->arfcn[i] != OSMO_EARFCN_INVALID)
136 ret++;
137
138 return ret;
Max26679e02016-04-20 15:57:13 +0200139}
140
Max70fdd242017-06-15 15:10:53 +0200141/* generate SI2quater messages, return rest octets length of last generated message or negative error code */
142static int make_si2quaters(struct gsm_bts *bts, bool counting)
Max26679e02016-04-20 15:57:13 +0200143{
Max70fdd242017-06-15 15:10:53 +0200144 int rc;
145 bool memory_exceeded = true;
146 struct gsm48_system_information_type_2quater *si2q;
Maxe610e702016-12-19 13:41:48 +0100147
Max70fdd242017-06-15 15:10:53 +0200148 for (bts->si2q_index = 0; bts->si2q_index < SI2Q_MAX_NUM; bts->si2q_index++) {
149 si2q = GSM_BTS_SI2Q(bts, bts->si2q_index);
150 if (counting) { /* that's legitimate if we're called for counting purpose: */
151 if (bts->si2q_count < bts->si2q_index)
152 bts->si2q_count = bts->si2q_index;
153 } else {
154 memset(si2q, GSM_MACBLOCK_PADDING, GSM_MACBLOCK_LEN);
155
156 si2q->header.l2_plen = GSM48_LEN2PLEN(22);
157 si2q->header.rr_protocol_discriminator = GSM48_PDISC_RR;
158 si2q->header.skip_indicator = 0;
159 si2q->header.system_information = GSM48_MT_RR_SYSINFO_2quater;
160 }
161
162 rc = rest_octets_si2quater(si2q->rest_octets, bts);
163 if (rc < 0)
164 return rc;
165
166 if (bts->u_offset >= bts->si_common.uarfcn_length &&
167 bts->e_offset >= si2q_earfcn_count(&bts->si_common.si2quater_neigh_list)) {
168 memory_exceeded = false;
169 break;
Maxe610e702016-12-19 13:41:48 +0100170 }
171 }
172
Max70fdd242017-06-15 15:10:53 +0200173 if (memory_exceeded)
174 return -ENOMEM;
Maxe610e702016-12-19 13:41:48 +0100175
Max70fdd242017-06-15 15:10:53 +0200176 return rc;
Max26679e02016-04-20 15:57:13 +0200177}
178
Max70fdd242017-06-15 15:10:53 +0200179/* we generate SI2q rest octets twice to get proper estimation but it's one time cost anyway */
Maxf39d03a2017-05-12 17:00:30 +0200180uint8_t si2q_num(struct gsm_bts *bts)
Maxaafff962016-04-20 15:57:14 +0200181{
Max70fdd242017-06-15 15:10:53 +0200182 int rc = make_si2quaters(bts, true);
183 uint8_t num = bts->si2q_index + 1; /* number of SI2quater messages */
Maxf39d03a2017-05-12 17:00:30 +0200184
Max081ceba2017-09-29 14:10:24 +0200185 /* N. B: si2q_num() should NEVER be called during actual SI2q rest octets generation
Max70fdd242017-06-15 15:10:53 +0200186 we're not re-entrant because of the following code: */
187 bts->u_offset = 0;
188 bts->e_offset = 0;
Maxf39d03a2017-05-12 17:00:30 +0200189
Max70fdd242017-06-15 15:10:53 +0200190 if (rc < 0)
191 return 0xFF; /* return impossible index as an indicator of error in generating SI2quater */
Maxf39d03a2017-05-12 17:00:30 +0200192
Max70fdd242017-06-15 15:10:53 +0200193 return num;
Maxaafff962016-04-20 15:57:14 +0200194}
195
Max26679e02016-04-20 15:57:13 +0200196/* 3GPP TS 44.018, Table 9.1.54.1 - prepend diversity bit to scrambling code */
Max34be86b2016-12-16 18:45:51 +0100197static inline uint16_t encode_fdd(uint16_t scramble, bool diversity)
Max26679e02016-04-20 15:57:13 +0200198{
199 if (diversity)
200 return scramble | (1 << 9);
201 return scramble;
202}
203
Max70fdd242017-06-15 15:10:53 +0200204int bts_earfcn_add(struct gsm_bts *bts, uint16_t earfcn, uint8_t thresh_hi, uint8_t thresh_lo, uint8_t prio,
205 uint8_t qrx, uint8_t meas_bw)
206{
207 struct osmo_earfcn_si2q *e = &bts->si_common.si2quater_neigh_list;
208 int r = osmo_earfcn_add(e, earfcn, (meas_bw < EARFCN_MEAS_BW_INVALID) ? meas_bw : OSMO_EARFCN_MEAS_INVALID);
209
210 if (r < 0)
211 return r;
212
213 if (e->thresh_hi && thresh_hi != e->thresh_hi)
214 r = 1;
215
216 e->thresh_hi = thresh_hi;
217
218 if (thresh_lo != EARFCN_THRESH_LOW_INVALID) {
219 if (e->thresh_lo_valid && e->thresh_lo != thresh_lo)
220 r = EARFCN_THRESH_LOW_INVALID;
221 e->thresh_lo = thresh_lo;
222 e->thresh_lo_valid = true;
223 }
224
225 if (qrx != EARFCN_QRXLV_INVALID) {
226 if (e->qrxlm_valid && e->qrxlm != qrx)
227 r = EARFCN_QRXLV_INVALID + 1;
228 e->qrxlm = qrx;
229 e->qrxlm_valid = true;
230 }
231
232 if (prio != EARFCN_PRIO_INVALID) {
233 if (e->prio_valid && e->prio != prio)
234 r = EARFCN_PRIO_INVALID;
235 e->prio = prio;
236 e->prio_valid = true;
237 }
238
239 return r;
240}
241
Max081ceba2017-09-29 14:10:24 +0200242/* Scrambling Code as defined in 3GPP TS 25.213 is 9 bit long so number below is unreacheable upper bound */
243#define SC_BOUND 600
244
245/* Find position for a given UARFCN (take SC into consideration if it's available) in a sorted list
246 N. B: we rely on the assumption that (uarfcn, scramble) tuple is unique in the lists */
247static int uarfcn_sc_pos(const struct gsm_bts *bts, uint16_t uarfcn, uint16_t scramble)
248{
249 const uint16_t *sc = bts->si_common.data.scramble_list;
250 uint16_t i, scramble0 = encode_fdd(scramble, false), scramble1 = encode_fdd(scramble, true);
251 for (i = 0; i < bts->si_common.uarfcn_length; i++)
252 if (uarfcn == bts->si_common.data.uarfcn_list[i]) {
253 if (scramble < SC_BOUND) {
254 if (scramble0 == sc[i] || scramble1 == sc[i])
255 return i;
256 } else
257 return i;
258 }
259
260 return -1;
261}
262
Max26679e02016-04-20 15:57:13 +0200263int bts_uarfcn_del(struct gsm_bts *bts, uint16_t arfcn, uint16_t scramble)
264{
Max081ceba2017-09-29 14:10:24 +0200265 uint16_t *ual = bts->si_common.data.uarfcn_list, *scl = bts->si_common.data.scramble_list;
266 size_t len = bts->si_common.uarfcn_length;
267 int pos = uarfcn_sc_pos(bts, arfcn, scramble);
Max26679e02016-04-20 15:57:13 +0200268
Max081ceba2017-09-29 14:10:24 +0200269 if (pos < 0)
Max26679e02016-04-20 15:57:13 +0200270 return -EINVAL;
271
Max081ceba2017-09-29 14:10:24 +0200272 if (pos != len - 1) { /* move the tail if necessary */
273 memmove(ual + pos, ual + pos + 1, 2 * (len - pos + 1));
274 memmove(scl + pos, scl + pos + 1, 2 * (len - pos + 1));
275 }
276
Max26679e02016-04-20 15:57:13 +0200277 bts->si_common.uarfcn_length--;
278 return 0;
279}
280
Maxf39d03a2017-05-12 17:00:30 +0200281int bts_uarfcn_add(struct gsm_bts *bts, uint16_t arfcn, uint16_t scramble, bool diversity)
Max26679e02016-04-20 15:57:13 +0200282{
Max7d73cc72017-10-02 18:37:46 +0200283 size_t len = bts->si_common.uarfcn_length, i;
Max081ceba2017-09-29 14:10:24 +0200284 uint8_t si2q;
285 int pos = uarfcn_sc_pos(bts, arfcn, scramble);
286 uint16_t scr = diversity ? encode_fdd(scramble, true) : encode_fdd(scramble, false),
Max26679e02016-04-20 15:57:13 +0200287 *ual = bts->si_common.data.uarfcn_list,
Max081ceba2017-09-29 14:10:24 +0200288 *scl = bts->si_common.data.scramble_list;
Max26679e02016-04-20 15:57:13 +0200289
290 if (len == MAX_EARFCN_LIST)
291 return -ENOMEM;
292
Max081ceba2017-09-29 14:10:24 +0200293 if (pos >= 0)
294 return -EADDRINUSE;
Maxe610e702016-12-19 13:41:48 +0100295
Max081ceba2017-09-29 14:10:24 +0200296 /* find the suitable position for arfcn if any */
297 pos = uarfcn_sc_pos(bts, arfcn, SC_BOUND);
298 i = (pos < 0) ? len : pos;
299
Max7d73cc72017-10-02 18:37:46 +0200300 /* move the tail to make space for inserting if necessary */
301 if (i < len) {
302 memmove(ual + i + 1, ual + i, (len - i) * 2);
303 memmove(scl + i + 1, scl + i, (len - i) * 2);
Max26679e02016-04-20 15:57:13 +0200304 }
Maxe610e702016-12-19 13:41:48 +0100305
Max7d73cc72017-10-02 18:37:46 +0200306 /* insert into appropriate position */
307 ual[i] = arfcn;
308 scl[i] = scr;
Max26679e02016-04-20 15:57:13 +0200309 bts->si_common.uarfcn_length++;
Max7d73cc72017-10-02 18:37:46 +0200310 /* try to generate SI2q */
Max081ceba2017-09-29 14:10:24 +0200311 si2q = si2q_num(bts);
Maxaafff962016-04-20 15:57:14 +0200312
Max081ceba2017-09-29 14:10:24 +0200313 if (si2q <= SI2Q_MAX_NUM) {
314 bts->si2q_count = si2q - 1;
Maxaafff962016-04-20 15:57:14 +0200315 return 0;
Max70fdd242017-06-15 15:10:53 +0200316 }
Maxaafff962016-04-20 15:57:14 +0200317
Max7d73cc72017-10-02 18:37:46 +0200318 /* rollback after unsuccessful generation */
Maxaafff962016-04-20 15:57:14 +0200319 bts_uarfcn_del(bts, arfcn, scramble);
320 return -ENOSPC;
Max26679e02016-04-20 15:57:13 +0200321}
322
Max5fa7e362016-04-15 16:04:45 +0200323static inline int use_arfcn(const struct gsm_bts *bts, const bool bis, const bool ter,
324 const bool pgsm, const int arfcn)
Holger Hans Peter Freyther9e1952a2013-01-17 12:04:17 +0100325{
Jacob Erlbeck65d114f2014-01-16 11:02:14 +0100326 if (bts->force_combined_si)
327 return !bis && !ter;
Holger Hans Peter Freytherd4d1d5e2013-01-17 13:49:39 +0100328 if (!bis && !ter && band_compatible(bts, arfcn))
Holger Hans Peter Freyther9e1952a2013-01-17 12:04:17 +0100329 return 1;
Jacob Erlbeck65d114f2014-01-16 11:02:14 +0100330 /* Correct but somehow broken with either the nanoBTS or the iPhone5 */
Holger Hans Peter Freytherd4d1d5e2013-01-17 13:49:39 +0100331 if (bis && pgsm && band_compatible(bts, arfcn) && (arfcn < 1 || arfcn > 124))
Holger Hans Peter Freyther9e1952a2013-01-17 12:04:17 +0100332 return 1;
Holger Hans Peter Freytherd4d1d5e2013-01-17 13:49:39 +0100333 if (ter && !band_compatible(bts, arfcn))
Holger Hans Peter Freyther9e1952a2013-01-17 12:04:17 +0100334 return 1;
335 return 0;
336}
337
Harald Welteda760d32009-12-14 20:25:05 +0100338/* Frequency Lists as per TS 04.08 10.5.2.13 */
339
340/* 10.5.2.13.2: Bit map 0 format */
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200341static int freq_list_bm0_set_arfcn(uint8_t *chan_list, unsigned int arfcn)
Harald Weltea43f7892009-12-01 18:04:30 +0530342{
343 unsigned int byte, bit;
344
Harald Welteb1d4c8e2009-12-17 23:10:46 +0100345 if (arfcn > 124 || arfcn < 1) {
346 LOGP(DRR, LOGL_ERROR, "Bitmap 0 only supports ARFCN 1...124\n");
Harald Weltea43f7892009-12-01 18:04:30 +0530347 return -EINVAL;
Harald Welteb1d4c8e2009-12-17 23:10:46 +0100348 }
Harald Weltea43f7892009-12-01 18:04:30 +0530349
Harald Welteda760d32009-12-14 20:25:05 +0100350 /* the bitmask is from 1..124, not from 0..123 */
351 arfcn--;
352
Harald Weltea43f7892009-12-01 18:04:30 +0530353 byte = arfcn / 8;
354 bit = arfcn % 8;
355
Harald Welteda760d32009-12-14 20:25:05 +0100356 chan_list[GSM48_CELL_CHAN_DESC_SIZE-1-byte] |= (1 << bit);
Harald Weltea43f7892009-12-01 18:04:30 +0530357
358 return 0;
359}
360
Harald Welteda760d32009-12-14 20:25:05 +0100361/* 10.5.2.13.7: Variable bit map format */
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200362static int freq_list_bmrel_set_arfcn(uint8_t *chan_list, unsigned int arfcn)
Harald Weltea43f7892009-12-01 18:04:30 +0530363{
364 unsigned int byte, bit;
365 unsigned int min_arfcn;
366 unsigned int bitno;
367
368 min_arfcn = (chan_list[0] & 1) << 9;
369 min_arfcn |= chan_list[1] << 1;
370 min_arfcn |= (chan_list[2] >> 7) & 1;
371
372 /* The lower end of our bitmaks is always implicitly included */
373 if (arfcn == min_arfcn)
374 return 0;
375
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100376 if (((arfcn - min_arfcn) & 1023) > 111) {
Harald Welteb1d4c8e2009-12-17 23:10:46 +0100377 LOGP(DRR, LOGL_ERROR, "arfcn(%u) > min(%u) + 111\n", arfcn, min_arfcn);
Harald Weltea43f7892009-12-01 18:04:30 +0530378 return -EINVAL;
Harald Welte152b6262009-12-16 11:57:48 +0100379 }
Harald Weltea43f7892009-12-01 18:04:30 +0530380
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100381 bitno = (arfcn - min_arfcn) & 1023;
Harald Weltea43f7892009-12-01 18:04:30 +0530382 byte = bitno / 8;
383 bit = bitno % 8;
384
385 chan_list[2 + byte] |= 1 << (7 - bit);
386
387 return 0;
388}
389
Holger Hans Peter Freyther511f9c32012-10-13 12:38:54 +0200390/* generate a variable bitmap */
Max5fa7e362016-04-15 16:04:45 +0200391static inline int enc_freq_lst_var_bitmap(uint8_t *chan_list,
Holger Hans Peter Freyther511f9c32012-10-13 12:38:54 +0200392 struct bitvec *bv, const struct gsm_bts *bts,
Max5fa7e362016-04-15 16:04:45 +0200393 bool bis, bool ter, int min, bool pgsm)
Holger Hans Peter Freyther511f9c32012-10-13 12:38:54 +0200394{
395 int i;
396
397 /* set it to 'Variable bitmap format' */
398 chan_list[0] = 0x8e;
399
400 chan_list[0] |= (min >> 9) & 1;
401 chan_list[1] = (min >> 1);
402 chan_list[2] = (min & 1) << 7;
403
404 for (i = 0; i < bv->data_len*8; i++) {
405 /* see notes in bitvec2freq_list */
406 if (bitvec_get_bit_pos(bv, i)
Harald Weltee18f78e2015-09-04 06:21:32 +0200407 && ((!bis && !ter && band_compatible(bts,i))
408 || (bis && pgsm && band_compatible(bts,i) && (i < 1 || i > 124))
409 || (ter && !band_compatible(bts, i)))) {
Holger Hans Peter Freyther511f9c32012-10-13 12:38:54 +0200410 int rc = freq_list_bmrel_set_arfcn(chan_list, i);
411 if (rc < 0)
412 return rc;
413 }
414 }
415
416 return 0;
417}
418
Max881064e2016-12-14 14:51:40 +0100419int range_encode(enum gsm48_range r, int *arfcns, int arfcns_used, int *w,
420 int f0, uint8_t *chan_list)
421{
422 /*
423 * Manipulate the ARFCN list according to the rules in J4 depending
424 * on the selected range.
425 */
426 int rc, f0_included;
427
428 range_enc_filter_arfcns(arfcns, arfcns_used, f0, &f0_included);
429
430 rc = range_enc_arfcns(r, arfcns, arfcns_used, w, 0);
431 if (rc < 0)
432 return rc;
433
434 /* Select the range and the amount of bits needed */
435 switch (r) {
436 case ARFCN_RANGE_128:
437 return range_enc_range128(chan_list, f0, w);
438 case ARFCN_RANGE_256:
439 return range_enc_range256(chan_list, f0, w);
440 case ARFCN_RANGE_512:
441 return range_enc_range512(chan_list, f0, w);
442 case ARFCN_RANGE_1024:
443 return range_enc_range1024(chan_list, f0, f0_included, w);
444 default:
445 return -ERANGE;
446 };
447
448 return f0_included;
449}
450
Holger Hans Peter Freyther511f9c32012-10-13 12:38:54 +0200451/* generate a frequency list with the range 512 format */
Max5fa7e362016-04-15 16:04:45 +0200452static inline int enc_freq_lst_range(uint8_t *chan_list,
Holger Hans Peter Freyther511f9c32012-10-13 12:38:54 +0200453 struct bitvec *bv, const struct gsm_bts *bts,
Max5fa7e362016-04-15 16:04:45 +0200454 bool bis, bool ter, bool pgsm)
Holger Hans Peter Freyther511f9c32012-10-13 12:38:54 +0200455{
456 int arfcns[RANGE_ENC_MAX_ARFCNS];
457 int w[RANGE_ENC_MAX_ARFCNS];
Holger Hans Peter Freyther511f9c32012-10-13 12:38:54 +0200458 int arfcns_used = 0;
Max881064e2016-12-14 14:51:40 +0100459 int i, range, f0;
Holger Hans Peter Freyther511f9c32012-10-13 12:38:54 +0200460
461 /*
462 * Select ARFCNs according to the rules in bitvec2freq_list
463 */
464 for (i = 0; i < bv->data_len * 8; ++i) {
465 /* More ARFCNs than the maximum */
466 if (arfcns_used > ARRAY_SIZE(arfcns))
467 return -1;
468 /* Check if we can select it? */
Holger Hans Peter Freyther9e1952a2013-01-17 12:04:17 +0100469 if (bitvec_get_bit_pos(bv, i) && use_arfcn(bts, bis, ter, pgsm, i))
Holger Hans Peter Freyther511f9c32012-10-13 12:38:54 +0200470 arfcns[arfcns_used++] = i;
Holger Hans Peter Freyther511f9c32012-10-13 12:38:54 +0200471 }
472
473 /*
474 * Check if the given list of ARFCNs can be encoded.
475 */
476 range = range_enc_determine_range(arfcns, arfcns_used, &f0);
477 if (range == ARFCN_RANGE_INVALID)
478 return -2;
479
Holger Hans Peter Freyther511f9c32012-10-13 12:38:54 +0200480 memset(w, 0, sizeof(w));
Max881064e2016-12-14 14:51:40 +0100481 return range_encode(range, arfcns, arfcns_used, w, f0, chan_list);
Holger Hans Peter Freyther511f9c32012-10-13 12:38:54 +0200482}
483
Harald Weltea43f7892009-12-01 18:04:30 +0530484/* generate a cell channel list as per Section 10.5.2.1b of 04.08 */
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200485static int bitvec2freq_list(uint8_t *chan_list, struct bitvec *bv,
Max5fa7e362016-04-15 16:04:45 +0200486 const struct gsm_bts *bts, bool bis, bool ter)
Harald Weltea43f7892009-12-01 18:04:30 +0530487{
Max5fa7e362016-04-15 16:04:45 +0200488 int i, rc, min = -1, max = -1, arfcns = 0;
489 bool pgsm = false;
Harald Weltea43f7892009-12-01 18:04:30 +0530490 memset(chan_list, 0, 16);
491
Harald Welte29350342012-02-17 15:58:23 +0100492 if (bts->band == GSM_BAND_900
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100493 && bts->c0->arfcn >= 1 && bts->c0->arfcn <= 124)
Max5fa7e362016-04-15 16:04:45 +0200494 pgsm = true;
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100495 /* P-GSM-only handsets only support 'bit map 0 format' */
496 if (!bis && !ter && pgsm) {
Harald Weltea43f7892009-12-01 18:04:30 +0530497 chan_list[0] = 0;
Harald Welte6c40def2009-12-14 22:07:14 +0100498
499 for (i = 0; i < bv->data_len*8; i++) {
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100500 if (i >= 1 && i <= 124
501 && bitvec_get_bit_pos(bv, i)) {
Harald Welte6c40def2009-12-14 22:07:14 +0100502 rc = freq_list_bm0_set_arfcn(chan_list, i);
503 if (rc < 0)
504 return rc;
505 }
Harald Weltea43f7892009-12-01 18:04:30 +0530506 }
507 return 0;
508 }
509
Harald Welte6c40def2009-12-14 22:07:14 +0100510 for (i = 0; i < bv->data_len*8; i++) {
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100511 /* in case of SI2 or SI5 allow all neighbours in same band
512 * in case of SI*bis, allow neighbours in same band ouside pgsm
513 * in case of SI*ter, allow neighbours in different bands
514 */
Holger Hans Peter Freyther9e1952a2013-01-17 12:04:17 +0100515 if (!bitvec_get_bit_pos(bv, i))
516 continue;
517 if (!use_arfcn(bts, bis, ter, pgsm, i))
518 continue;
519 /* count the arfcns we want to carry */
520 arfcns += 1;
Holger Hans Peter Freyther511f9c32012-10-13 12:38:54 +0200521
Holger Hans Peter Freyther9e1952a2013-01-17 12:04:17 +0100522 /* 955..1023 < 0..885 */
523 if (min < 0)
524 min = i;
525 if (i >= 955 && min < 955)
526 min = i;
527 if (i >= 955 && min >= 955 && i < min)
528 min = i;
529 if (i < 955 && min < 955 && i < min)
530 min = i;
531 if (max < 0)
532 max = i;
533 if (i < 955 && max >= 955)
534 max = i;
535 if (i >= 955 && max >= 955 && i > max)
536 max = i;
537 if (i < 955 && max < 955 && i > max)
538 max = i;
Harald Weltea43f7892009-12-01 18:04:30 +0530539 }
540
Sylvain Munaut42a56522009-12-24 14:20:19 +0100541 if (max == -1) {
542 /* Empty set, use 'bit map 0 format' */
543 chan_list[0] = 0;
544 return 0;
545 }
546
Holger Hans Peter Freyther511f9c32012-10-13 12:38:54 +0200547 /* Now find the best encoding */
548 if (((max - min) & 1023) <= 111)
549 return enc_freq_lst_var_bitmap(chan_list, bv, bts, bis,
550 ter, min, pgsm);
Harald Weltea43f7892009-12-01 18:04:30 +0530551
Holger Hans Peter Freyther511f9c32012-10-13 12:38:54 +0200552 /* Attempt to do the range encoding */
553 rc = enc_freq_lst_range(chan_list, bv, bts, bis, ter, pgsm);
Max881064e2016-12-14 14:51:40 +0100554 if (rc >= 0)
Holger Hans Peter Freyther511f9c32012-10-13 12:38:54 +0200555 return 0;
Harald Weltea43f7892009-12-01 18:04:30 +0530556
Holger Hans Peter Freyther511f9c32012-10-13 12:38:54 +0200557 LOGP(DRR, LOGL_ERROR, "min_arfcn=%u, max_arfcn=%u, arfcns=%d "
558 "can not generate ARFCN list", min, max, arfcns);
559 return -EINVAL;
Harald Weltea43f7892009-12-01 18:04:30 +0530560}
561
562/* generate a cell channel list as per Section 10.5.2.1b of 04.08 */
Dieter Spaar16646022011-07-28 00:01:50 +0200563/* static*/ int generate_cell_chan_list(uint8_t *chan_list, struct gsm_bts *bts)
Harald Weltea43f7892009-12-01 18:04:30 +0530564{
Harald Weltea43f7892009-12-01 18:04:30 +0530565 struct gsm_bts_trx *trx;
Harald Welte6c40def2009-12-14 22:07:14 +0100566 struct bitvec *bv = &bts->si_common.cell_alloc;
Harald Weltea43f7892009-12-01 18:04:30 +0530567
Harald Weltea39b0f22010-06-14 22:26:10 +0200568 /* Zero-initialize the bit-vector */
Harald Weltec8794b52010-06-16 11:09:18 +0200569 memset(bv->data, 0, bv->data_len);
Harald Weltea39b0f22010-06-14 22:26:10 +0200570
Harald Welte6c40def2009-12-14 22:07:14 +0100571 /* first we generate a bitvec of all TRX ARFCN's in our BTS */
Harald Weltea39b0f22010-06-14 22:26:10 +0200572 llist_for_each_entry(trx, &bts->trx_list, list) {
573 unsigned int i, j;
574 /* Always add the TRX's ARFCN */
Harald Welte6c40def2009-12-14 22:07:14 +0100575 bitvec_set_bit_pos(bv, trx->arfcn, 1);
Harald Weltea39b0f22010-06-14 22:26:10 +0200576 for (i = 0; i < ARRAY_SIZE(trx->ts); i++) {
577 struct gsm_bts_trx_ts *ts = &trx->ts[i];
578 /* Add any ARFCNs present in hopping channels */
579 for (j = 0; j < 1024; j++) {
580 if (bitvec_get_bit_pos(&ts->hopping.arfcns, j))
581 bitvec_set_bit_pos(bv, j, 1);
582 }
583 }
584 }
Harald Weltea43f7892009-12-01 18:04:30 +0530585
Harald Welte6c40def2009-12-14 22:07:14 +0100586 /* then we generate a GSM 04.08 frequency list from the bitvec */
Max5fa7e362016-04-15 16:04:45 +0200587 return bitvec2freq_list(chan_list, bv, bts, false, false);
Harald Weltea43f7892009-12-01 18:04:30 +0530588}
589
Harald Welted6a52e92017-09-30 09:22:14 +0800590/*! generate a cell channel list as per Section 10.5.2.22 of 04.08
591 * \param[out] chan_list caller-provided output buffer
592 * \param[in] bts BTS descriptor used for input data
593 * \param[in] si5 Are we generating SI5xxx (true) or SI2xxx (false)
594 * \param[in] bis Are we generating SIXbis (true) or not (false)
595 * \param[in] ter Are we generating SIXter (true) or not (false)
596 */
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100597static int generate_bcch_chan_list(uint8_t *chan_list, struct gsm_bts *bts,
Max5fa7e362016-04-15 16:04:45 +0200598 bool si5, bool bis, bool ter)
Harald Welte6c40def2009-12-14 22:07:14 +0100599{
600 struct gsm_bts *cur_bts;
Harald Welte64c07d22011-02-15 11:43:27 +0100601 struct bitvec *bv;
Harald Welteaa70d9d2017-09-30 09:22:30 +0800602 int rc;
Harald Welte64c07d22011-02-15 11:43:27 +0100603
604 if (si5 && bts->neigh_list_manual_mode == NL_MODE_MANUAL_SI5SEP)
605 bv = &bts->si_common.si5_neigh_list;
606 else
607 bv = &bts->si_common.neigh_list;
Harald Welte6c40def2009-12-14 22:07:14 +0100608
Harald Welte32c09622011-01-11 23:44:56 +0100609 /* Generate list of neighbor cells if we are in automatic mode */
Harald Welte64c07d22011-02-15 11:43:27 +0100610 if (bts->neigh_list_manual_mode == NL_MODE_AUTOMATIC) {
Harald Welte21bbda22011-02-19 20:43:37 +0100611 /* Zero-initialize the bit-vector */
612 memset(bv->data, 0, bv->data_len);
613
Harald Welte32c09622011-01-11 23:44:56 +0100614 /* first we generate a bitvec of the BCCH ARFCN's in our BSC */
615 llist_for_each_entry(cur_bts, &bts->network->bts_list, list) {
616 if (cur_bts == bts)
617 continue;
618 bitvec_set_bit_pos(bv, cur_bts->c0->arfcn, 1);
619 }
Harald Welte6c40def2009-12-14 22:07:14 +0100620 }
621
622 /* then we generate a GSM 04.08 frequency list from the bitvec */
Harald Welteaa70d9d2017-09-30 09:22:30 +0800623 rc = bitvec2freq_list(chan_list, bv, bts, bis, ter);
624 if (rc < 0)
625 return rc;
626
627 /* Set BA-IND depending on whether we're generating SI2 or SI5.
628 * The point here is to be able to correlate whether a given MS
629 * measurement report was using the neighbor cells advertised in
630 * SI2 or in SI5, as those two could very well be different */
631 if (si5)
632 chan_list[0] |= 0x10;
633 else
634 chan_list[0] &= ~0x10;
635
636 return rc;
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100637}
638
639static int list_arfcn(uint8_t *chan_list, uint8_t mask, char *text)
640{
641 int n = 0, i;
642 struct gsm_sysinfo_freq freq[1024];
643
644 memset(freq, 0, sizeof(freq));
645 gsm48_decode_freq_list(freq, chan_list, 16, 0xce, 1);
646 for (i = 0; i < 1024; i++) {
647 if (freq[i].mask) {
648 if (!n)
649 LOGP(DRR, LOGL_INFO, "%s", text);
650 LOGPC(DRR, LOGL_INFO, " %d", i);
651 n++;
652 }
653 }
654 if (n)
655 LOGPC(DRR, LOGL_INFO, "\n");
656
657 return n;
Harald Welte6c40def2009-12-14 22:07:14 +0100658}
659
Max6f0e50c2017-04-12 15:30:54 +0200660static int generate_si1(enum osmo_sysinfo_type t, struct gsm_bts *bts)
Harald Weltea43f7892009-12-01 18:04:30 +0530661{
662 int rc;
Max6f0e50c2017-04-12 15:30:54 +0200663 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 +0530664
665 memset(si1, GSM_MACBLOCK_PADDING, GSM_MACBLOCK_LEN);
666
Max2440f492016-12-07 18:03:03 +0100667 si1->header.l2_plen = GSM48_LEN2PLEN(21);
Harald Weltea43f7892009-12-01 18:04:30 +0530668 si1->header.rr_protocol_discriminator = GSM48_PDISC_RR;
669 si1->header.skip_indicator = 0;
670 si1->header.system_information = GSM48_MT_RR_SYSINFO_1;
671
672 rc = generate_cell_chan_list(si1->cell_channel_description, bts);
673 if (rc < 0)
674 return rc;
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100675 list_arfcn(si1->cell_channel_description, 0xce, "Serving cell:");
Harald Weltea43f7892009-12-01 18:04:30 +0530676
677 si1->rach_control = bts->si_common.rach_control;
678
Holger Hans Peter Freytherf876c392013-03-06 12:02:33 +0100679 /*
680 * SI1 Rest Octets (10.5.2.32), contains NCH position and band
681 * indicator but that is not in the 04.08.
682 */
683 rc = rest_octets_si1(si1->rest_octets, NULL, is_dcs_net(bts));
Harald Welte7401ae62010-06-15 16:44:12 +0200684
Holger Hans Peter Freyther7ec448d2010-01-06 07:52:31 +0100685 return sizeof(*si1) + rc;
Harald Weltea43f7892009-12-01 18:04:30 +0530686}
687
Max6f0e50c2017-04-12 15:30:54 +0200688static int generate_si2(enum osmo_sysinfo_type t, struct gsm_bts *bts)
Harald Weltea43f7892009-12-01 18:04:30 +0530689{
690 int rc;
Max6f0e50c2017-04-12 15:30:54 +0200691 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 +0530692
693 memset(si2, GSM_MACBLOCK_PADDING, GSM_MACBLOCK_LEN);
694
Max2440f492016-12-07 18:03:03 +0100695 si2->header.l2_plen = GSM48_LEN2PLEN(22);
Harald Weltea43f7892009-12-01 18:04:30 +0530696 si2->header.rr_protocol_discriminator = GSM48_PDISC_RR;
697 si2->header.skip_indicator = 0;
698 si2->header.system_information = GSM48_MT_RR_SYSINFO_2;
699
Max5fa7e362016-04-15 16:04:45 +0200700 rc = generate_bcch_chan_list(si2->bcch_frequency_list, bts, false, false, false);
Harald Weltea43f7892009-12-01 18:04:30 +0530701 if (rc < 0)
702 return rc;
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100703 list_arfcn(si2->bcch_frequency_list, 0xce,
Harald Weltee5ba92e2015-09-04 06:22:46 +0200704 "SI2 Neighbour cells in same band:");
Harald Weltea43f7892009-12-01 18:04:30 +0530705
706 si2->ncc_permitted = bts->si_common.ncc_permitted;
707 si2->rach_control = bts->si_common.rach_control;
708
Holger Hans Peter Freyther7ec448d2010-01-06 07:52:31 +0100709 return sizeof(*si2);
Harald Weltea43f7892009-12-01 18:04:30 +0530710}
711
Max6f0e50c2017-04-12 15:30:54 +0200712static int generate_si2bis(enum osmo_sysinfo_type t, struct gsm_bts *bts)
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100713{
714 int rc;
715 struct gsm48_system_information_type_2bis *si2b =
Max6f0e50c2017-04-12 15:30:54 +0200716 (struct gsm48_system_information_type_2bis *) GSM_BTS_SI(bts, t);
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100717 int n;
718
719 memset(si2b, GSM_MACBLOCK_PADDING, GSM_MACBLOCK_LEN);
720
Max2440f492016-12-07 18:03:03 +0100721 si2b->header.l2_plen = GSM48_LEN2PLEN(22);
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100722 si2b->header.rr_protocol_discriminator = GSM48_PDISC_RR;
723 si2b->header.skip_indicator = 0;
724 si2b->header.system_information = GSM48_MT_RR_SYSINFO_2bis;
725
Max5fa7e362016-04-15 16:04:45 +0200726 rc = generate_bcch_chan_list(si2b->bcch_frequency_list, bts, false, true, false);
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100727 if (rc < 0)
728 return rc;
729 n = list_arfcn(si2b->bcch_frequency_list, 0xce,
730 "Neighbour cells in same band, but outside P-GSM:");
731 if (n) {
732 /* indicate in SI2 and SI2bis: there is an extension */
733 struct gsm48_system_information_type_2 *si2 =
Max6f0e50c2017-04-12 15:30:54 +0200734 (struct gsm48_system_information_type_2 *) GSM_BTS_SI(bts, SYSINFO_TYPE_2);
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100735 si2->bcch_frequency_list[0] |= 0x20;
736 si2b->bcch_frequency_list[0] |= 0x20;
737 } else
738 bts->si_valid &= ~(1 << SYSINFO_TYPE_2bis);
739
740 si2b->rach_control = bts->si_common.rach_control;
741
742 return sizeof(*si2b);
743}
744
Max6f0e50c2017-04-12 15:30:54 +0200745static int generate_si2ter(enum osmo_sysinfo_type t, struct gsm_bts *bts)
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100746{
747 int rc;
748 struct gsm48_system_information_type_2ter *si2t =
Max6f0e50c2017-04-12 15:30:54 +0200749 (struct gsm48_system_information_type_2ter *) GSM_BTS_SI(bts, t);
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100750 int n;
751
752 memset(si2t, GSM_MACBLOCK_PADDING, GSM_MACBLOCK_LEN);
753
Max2440f492016-12-07 18:03:03 +0100754 si2t->header.l2_plen = GSM48_LEN2PLEN(22);
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100755 si2t->header.rr_protocol_discriminator = GSM48_PDISC_RR;
756 si2t->header.skip_indicator = 0;
757 si2t->header.system_information = GSM48_MT_RR_SYSINFO_2ter;
758
Max5fa7e362016-04-15 16:04:45 +0200759 rc = generate_bcch_chan_list(si2t->ext_bcch_frequency_list, bts, false, false, true);
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100760 if (rc < 0)
761 return rc;
762 n = list_arfcn(si2t->ext_bcch_frequency_list, 0x8e,
763 "Neighbour cells in different band:");
764 if (!n)
765 bts->si_valid &= ~(1 << SYSINFO_TYPE_2ter);
766
767 return sizeof(*si2t);
768}
769
Maxf39d03a2017-05-12 17:00:30 +0200770/* SI2quater messages are optional - we only generate them when neighbor UARFCNs or EARFCNs are configured */
771static inline bool si2quater_not_needed(struct gsm_bts *bts)
772{
773 unsigned i = MAX_EARFCN_LIST;
774
775 if (bts->si_common.si2quater_neigh_list.arfcn)
776 for (i = 0; i < MAX_EARFCN_LIST; i++)
777 if (bts->si_common.si2quater_neigh_list.arfcn[i] != OSMO_EARFCN_INVALID)
778 break;
779
780 if (!bts->si_common.uarfcn_length && i == MAX_EARFCN_LIST) {
781 bts->si_valid &= ~(1 << SYSINFO_TYPE_2quater); /* mark SI2q as invalid if no (E|U)ARFCNs are present */
782 return true;
783 }
784
785 return false;
786}
787
Max6f0e50c2017-04-12 15:30:54 +0200788static int generate_si2quater(enum osmo_sysinfo_type t, struct gsm_bts *bts)
Max59a1bf32016-04-15 16:04:46 +0200789{
Maxf39d03a2017-05-12 17:00:30 +0200790 int rc;
Max70fdd242017-06-15 15:10:53 +0200791 struct gsm48_system_information_type_2quater *si2q;
Maxf39d03a2017-05-12 17:00:30 +0200792
793 if (si2quater_not_needed(bts)) /* generate rest_octets for SI2q only when necessary */
794 return GSM_MACBLOCK_LEN;
Max59a1bf32016-04-15 16:04:46 +0200795
Max70fdd242017-06-15 15:10:53 +0200796 bts->u_offset = 0;
797 bts->e_offset = 0;
798 bts->si2q_index = 0;
799 bts->si2q_count = si2q_num(bts) - 1;
Max59a1bf32016-04-15 16:04:46 +0200800
Max70fdd242017-06-15 15:10:53 +0200801 rc = make_si2quaters(bts, false);
Max59a1bf32016-04-15 16:04:46 +0200802 if (rc < 0)
803 return rc;
804
Max70fdd242017-06-15 15:10:53 +0200805 OSMO_ASSERT(bts->si2q_count == bts->si2q_index);
806 OSMO_ASSERT(bts->si2q_count <= SI2Q_MAX_NUM);
807
Max59a1bf32016-04-15 16:04:46 +0200808 return sizeof(*si2q) + rc;
809}
810
Harald Welte1f893292010-03-14 23:46:48 +0800811static struct gsm48_si_ro_info si_info = {
Harald Weltea43f7892009-12-01 18:04:30 +0530812 .selection_params = {
813 .present = 0,
814 },
815 .power_offset = {
816 .present = 0,
817 },
Pau Espin Pedrol91c76fd2017-11-24 12:44:07 +0100818 .si2ter_indicator = false,
819 .early_cm_ctrl = true,
Harald Weltea43f7892009-12-01 18:04:30 +0530820 .scheduling = {
821 .present = 0,
822 },
823 .gprs_ind = {
824 .si13_position = 0,
825 .ra_colour = 0,
Harald Welte97a282b2010-03-14 15:37:43 +0800826 .present = 1,
Harald Weltea43f7892009-12-01 18:04:30 +0530827 },
Pau Espin Pedrole8dda5f2017-11-23 19:06:09 +0100828 .early_cm_restrict_3g = false,
Pau Espin Pedrol91c76fd2017-11-24 12:44:07 +0100829 .si2quater_indicator = false,
Harald Weltea43f7892009-12-01 18:04:30 +0530830 .lsa_params = {
831 .present = 0,
832 },
833 .cell_id = 0, /* FIXME: doesn't the bts have this? */
834 .break_ind = 0,
835};
836
Max6f0e50c2017-04-12 15:30:54 +0200837static int generate_si3(enum osmo_sysinfo_type t, struct gsm_bts *bts)
Harald Weltea43f7892009-12-01 18:04:30 +0530838{
Holger Hans Peter Freyther7ec448d2010-01-06 07:52:31 +0100839 int rc;
Max6f0e50c2017-04-12 15:30:54 +0200840 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 +0530841
842 memset(si3, GSM_MACBLOCK_PADDING, GSM_MACBLOCK_LEN);
843
Max2440f492016-12-07 18:03:03 +0100844 si3->header.l2_plen = GSM48_LEN2PLEN(18);
Harald Weltea43f7892009-12-01 18:04:30 +0530845 si3->header.rr_protocol_discriminator = GSM48_PDISC_RR;
846 si3->header.skip_indicator = 0;
847 si3->header.system_information = GSM48_MT_RR_SYSINFO_3;
848
849 si3->cell_identity = htons(bts->cell_identity);
Harald Welteafedeab2010-03-04 10:55:40 +0100850 gsm48_generate_lai(&si3->lai, bts->network->country_code,
851 bts->network->network_code,
852 bts->location_area_code);
Harald Weltea43f7892009-12-01 18:04:30 +0530853 si3->control_channel_desc = bts->si_common.chan_desc;
854 si3->cell_options = bts->si_common.cell_options;
855 si3->cell_sel_par = bts->si_common.cell_sel_par;
856 si3->rach_control = bts->si_common.rach_control;
857
Maxc08ee712016-05-11 12:45:13 +0200858 /* allow/disallow DTXu */
859 gsm48_set_dtx(&si3->cell_options, bts->dtxu, bts->dtxu, true);
860
Max9b97b002017-06-02 10:58:26 +0200861 if (GSM_BTS_HAS_SI(bts, SYSINFO_TYPE_2ter)) {
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100862 LOGP(DRR, LOGL_INFO, "SI 2ter is included.\n");
Pau Espin Pedrol91c76fd2017-11-24 12:44:07 +0100863 si_info.si2ter_indicator = true;
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100864 } else {
Pau Espin Pedrol91c76fd2017-11-24 12:44:07 +0100865 si_info.si2ter_indicator = false;
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100866 }
Max9b97b002017-06-02 10:58:26 +0200867 if (GSM_BTS_HAS_SI(bts, SYSINFO_TYPE_2quater)) {
Max845a3a42017-05-15 12:02:29 +0200868 LOGP(DRR, LOGL_INFO, "SI 2quater is included, based on %zu EARFCNs and %zu UARFCNs.\n",
869 si2q_earfcn_count(&bts->si_common.si2quater_neigh_list), bts->si_common.uarfcn_length);
Pau Espin Pedrol91c76fd2017-11-24 12:44:07 +0100870 si_info.si2quater_indicator = true;
Maxf3f35052016-04-15 16:04:44 +0200871 } else {
Pau Espin Pedrol91c76fd2017-11-24 12:44:07 +0100872 si_info.si2quater_indicator = false;
Maxf3f35052016-04-15 16:04:44 +0200873 }
Harald Welte42def722017-01-13 00:10:32 +0100874 si_info.early_cm_ctrl = bts->early_classmark_allowed;
Pau Espin Pedrole8dda5f2017-11-23 19:06:09 +0100875 si_info.early_cm_restrict_3g = !bts->early_classmark_allowed_3g;
Harald Welte42def722017-01-13 00:10:32 +0100876
Harald Weltea43f7892009-12-01 18:04:30 +0530877 /* SI3 Rest Octets (10.5.2.34), containing
878 CBQ, CELL_RESELECT_OFFSET, TEMPORARY_OFFSET, PENALTY_TIME
879 Power Offset, 2ter Indicator, Early Classmark Sending,
880 Scheduling if and WHERE, GPRS Indicator, SI13 position */
Holger Hans Peter Freyther7ec448d2010-01-06 07:52:31 +0100881 rc = rest_octets_si3(si3->rest_octets, &si_info);
Harald Weltea43f7892009-12-01 18:04:30 +0530882
Holger Hans Peter Freyther7ec448d2010-01-06 07:52:31 +0100883 return sizeof(*si3) + rc;
Harald Weltea43f7892009-12-01 18:04:30 +0530884}
885
Max6f0e50c2017-04-12 15:30:54 +0200886static int generate_si4(enum osmo_sysinfo_type t, struct gsm_bts *bts)
Harald Weltea43f7892009-12-01 18:04:30 +0530887{
Holger Hans Peter Freyther7ec448d2010-01-06 07:52:31 +0100888 int rc;
Max6f0e50c2017-04-12 15:30:54 +0200889 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 +0100890 struct gsm_lchan *cbch_lchan;
891 uint8_t *restoct = si4->data;
Harald Weltea43f7892009-12-01 18:04:30 +0530892
893 /* length of all IEs present except SI4 rest octets and l2_plen */
894 int l2_plen = sizeof(*si4) - 1;
895
896 memset(si4, GSM_MACBLOCK_PADDING, GSM_MACBLOCK_LEN);
897
898 si4->header.rr_protocol_discriminator = GSM48_PDISC_RR;
899 si4->header.skip_indicator = 0;
900 si4->header.system_information = GSM48_MT_RR_SYSINFO_4;
901
Harald Welteafedeab2010-03-04 10:55:40 +0100902 gsm48_generate_lai(&si4->lai, bts->network->country_code,
903 bts->network->network_code,
904 bts->location_area_code);
Harald Weltea43f7892009-12-01 18:04:30 +0530905 si4->cell_sel_par = bts->si_common.cell_sel_par;
906 si4->rach_control = bts->si_common.rach_control;
907
908 /* Optional: CBCH Channel Description + CBCH Mobile Allocation */
Harald Welte142d12d2014-12-29 17:47:08 +0100909 cbch_lchan = gsm_bts_get_cbch(bts);
Harald Welte30f1f372014-12-28 15:00:45 +0100910 if (cbch_lchan) {
911 struct gsm48_chan_desc cd;
912 gsm48_lchan2chan_desc(&cd, cbch_lchan);
Daniel Willmann695675f2014-12-30 12:10:25 +0100913 tv_fixed_put(si4->data, GSM48_IE_CBCH_CHAN_DESC, 3,
Harald Welte30f1f372014-12-28 15:00:45 +0100914 (uint8_t *) &cd);
Daniel Willmann695675f2014-12-30 12:10:25 +0100915 l2_plen += 3 + 1;
916 restoct += 3 + 1;
Harald Welte30f1f372014-12-28 15:00:45 +0100917 /* we don't use hopping and thus don't need a CBCH MA */
918 }
Harald Weltea43f7892009-12-01 18:04:30 +0530919
Max2440f492016-12-07 18:03:03 +0100920 si4->header.l2_plen = GSM48_LEN2PLEN(l2_plen);
Harald Weltea43f7892009-12-01 18:04:30 +0530921
922 /* SI4 Rest Octets (10.5.2.35), containing
923 Optional Power offset, GPRS Indicator,
924 Cell Identity, LSA ID, Selection Parameter */
Max6f0e50c2017-04-12 15:30:54 +0200925 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 +0530926
Harald Welte30f1f372014-12-28 15:00:45 +0100927 return l2_plen + 1 + rc;
Harald Weltea43f7892009-12-01 18:04:30 +0530928}
929
Max6f0e50c2017-04-12 15:30:54 +0200930static int generate_si5(enum osmo_sysinfo_type t, struct gsm_bts *bts)
Harald Weltea43f7892009-12-01 18:04:30 +0530931{
Harald Weltee2d0d5f2009-12-19 21:26:54 +0100932 struct gsm48_system_information_type_5 *si5;
Max6f0e50c2017-04-12 15:30:54 +0200933 uint8_t *output = GSM_BTS_SI(bts, t);
Harald Weltee2d0d5f2009-12-19 21:26:54 +0100934 int rc, l2_plen = 18;
Harald Weltea43f7892009-12-01 18:04:30 +0530935
Holger Hans Peter Freyther17d81e22010-01-06 07:52:55 +0100936 memset(output, GSM_MACBLOCK_PADDING, GSM_MACBLOCK_LEN);
937
Harald Weltee2d0d5f2009-12-19 21:26:54 +0100938 /* ip.access nanoBTS needs l2_plen!! */
Harald Weltefd355a32011-03-04 13:41:31 +0100939 switch (bts->type) {
940 case GSM_BTS_TYPE_NANOBTS:
Maxf9685c12017-03-23 12:01:07 +0100941 case GSM_BTS_TYPE_OSMOBTS:
Max2440f492016-12-07 18:03:03 +0100942 *output++ = GSM48_LEN2PLEN(l2_plen);
Harald Weltee2d0d5f2009-12-19 21:26:54 +0100943 l2_plen++;
Harald Weltefd355a32011-03-04 13:41:31 +0100944 break;
945 default:
946 break;
Harald Weltee2d0d5f2009-12-19 21:26:54 +0100947 }
948
Max6f0e50c2017-04-12 15:30:54 +0200949 si5 = (struct gsm48_system_information_type_5 *) GSM_BTS_SI(bts, t);
Harald Weltea43f7892009-12-01 18:04:30 +0530950
951 /* l2 pseudo length, not part of msg: 18 */
952 si5->rr_protocol_discriminator = GSM48_PDISC_RR;
953 si5->skip_indicator = 0;
954 si5->system_information = GSM48_MT_RR_SYSINFO_5;
Max5fa7e362016-04-15 16:04:45 +0200955 rc = generate_bcch_chan_list(si5->bcch_frequency_list, bts, true, false, false);
Harald Weltea43f7892009-12-01 18:04:30 +0530956 if (rc < 0)
957 return rc;
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100958 list_arfcn(si5->bcch_frequency_list, 0xce,
Harald Weltee5ba92e2015-09-04 06:22:46 +0200959 "SI5 Neighbour cells in same band:");
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100960
961 /* 04.08 9.1.37: L2 Pseudo Length of 18 */
962 return l2_plen;
963}
964
Max6f0e50c2017-04-12 15:30:54 +0200965static int generate_si5bis(enum osmo_sysinfo_type t, struct gsm_bts *bts)
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100966{
967 struct gsm48_system_information_type_5bis *si5b;
Max6f0e50c2017-04-12 15:30:54 +0200968 uint8_t *output = GSM_BTS_SI(bts, t);
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100969 int rc, l2_plen = 18;
970 int n;
971
972 memset(output, GSM_MACBLOCK_PADDING, GSM_MACBLOCK_LEN);
973
974 /* ip.access nanoBTS needs l2_plen!! */
975 switch (bts->type) {
976 case GSM_BTS_TYPE_NANOBTS:
Maxf9685c12017-03-23 12:01:07 +0100977 case GSM_BTS_TYPE_OSMOBTS:
Max2440f492016-12-07 18:03:03 +0100978 *output++ = GSM48_LEN2PLEN(l2_plen);
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100979 l2_plen++;
980 break;
981 default:
982 break;
983 }
984
Max6f0e50c2017-04-12 15:30:54 +0200985 si5b = (struct gsm48_system_information_type_5bis *) GSM_BTS_SI(bts, t);
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100986
987 /* l2 pseudo length, not part of msg: 18 */
988 si5b->rr_protocol_discriminator = GSM48_PDISC_RR;
989 si5b->skip_indicator = 0;
990 si5b->system_information = GSM48_MT_RR_SYSINFO_5bis;
Max5fa7e362016-04-15 16:04:45 +0200991 rc = generate_bcch_chan_list(si5b->bcch_frequency_list, bts, true, true, false);
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100992 if (rc < 0)
993 return rc;
994 n = list_arfcn(si5b->bcch_frequency_list, 0xce,
995 "Neighbour cells in same band, but outside P-GSM:");
996 if (n) {
997 /* indicate in SI5 and SI5bis: there is an extension */
998 struct gsm48_system_information_type_5 *si5 =
Max6f0e50c2017-04-12 15:30:54 +0200999 (struct gsm48_system_information_type_5 *) GSM_BTS_SI(bts, SYSINFO_TYPE_5);
Andreas Eversbergc50543b2012-02-29 09:04:07 +01001000 si5->bcch_frequency_list[0] |= 0x20;
1001 si5b->bcch_frequency_list[0] |= 0x20;
1002 } else
1003 bts->si_valid &= ~(1 << SYSINFO_TYPE_5bis);
1004
1005 /* 04.08 9.1.37: L2 Pseudo Length of 18 */
1006 return l2_plen;
1007}
1008
Max6f0e50c2017-04-12 15:30:54 +02001009static int generate_si5ter(enum osmo_sysinfo_type t, struct gsm_bts *bts)
Andreas Eversbergc50543b2012-02-29 09:04:07 +01001010{
1011 struct gsm48_system_information_type_5ter *si5t;
Max6f0e50c2017-04-12 15:30:54 +02001012 uint8_t *output = GSM_BTS_SI(bts, t);
Andreas Eversbergc50543b2012-02-29 09:04:07 +01001013 int rc, l2_plen = 18;
1014 int n;
1015
1016 memset(output, GSM_MACBLOCK_PADDING, GSM_MACBLOCK_LEN);
1017
1018 /* ip.access nanoBTS needs l2_plen!! */
1019 switch (bts->type) {
1020 case GSM_BTS_TYPE_NANOBTS:
Maxf9685c12017-03-23 12:01:07 +01001021 case GSM_BTS_TYPE_OSMOBTS:
Max2440f492016-12-07 18:03:03 +01001022 *output++ = GSM48_LEN2PLEN(l2_plen);
Andreas Eversbergc50543b2012-02-29 09:04:07 +01001023 l2_plen++;
1024 break;
1025 default:
1026 break;
1027 }
1028
Max6f0e50c2017-04-12 15:30:54 +02001029 si5t = (struct gsm48_system_information_type_5ter *) GSM_BTS_SI(bts, t);
Andreas Eversbergc50543b2012-02-29 09:04:07 +01001030
1031 /* l2 pseudo length, not part of msg: 18 */
1032 si5t->rr_protocol_discriminator = GSM48_PDISC_RR;
1033 si5t->skip_indicator = 0;
1034 si5t->system_information = GSM48_MT_RR_SYSINFO_5ter;
Max5fa7e362016-04-15 16:04:45 +02001035 rc = generate_bcch_chan_list(si5t->bcch_frequency_list, bts, true, false, true);
Andreas Eversbergc50543b2012-02-29 09:04:07 +01001036 if (rc < 0)
1037 return rc;
1038 n = list_arfcn(si5t->bcch_frequency_list, 0x8e,
1039 "Neighbour cells in different band:");
1040 if (!n)
1041 bts->si_valid &= ~(1 << SYSINFO_TYPE_5ter);
Harald Weltea43f7892009-12-01 18:04:30 +05301042
1043 /* 04.08 9.1.37: L2 Pseudo Length of 18 */
Harald Weltee2d0d5f2009-12-19 21:26:54 +01001044 return l2_plen;
Harald Weltea43f7892009-12-01 18:04:30 +05301045}
1046
Max6f0e50c2017-04-12 15:30:54 +02001047static int generate_si6(enum osmo_sysinfo_type t, struct gsm_bts *bts)
Harald Weltea43f7892009-12-01 18:04:30 +05301048{
Harald Weltee2d0d5f2009-12-19 21:26:54 +01001049 struct gsm48_system_information_type_6 *si6;
Max6f0e50c2017-04-12 15:30:54 +02001050 uint8_t *output = GSM_BTS_SI(bts, t);
Harald Weltee2d0d5f2009-12-19 21:26:54 +01001051 int l2_plen = 11;
Holger Hans Peter Freyther82dd9832016-05-17 23:20:03 +02001052 int rc;
Harald Weltea43f7892009-12-01 18:04:30 +05301053
Holger Hans Peter Freyther17d81e22010-01-06 07:52:55 +01001054 memset(output, GSM_MACBLOCK_PADDING, GSM_MACBLOCK_LEN);
1055
Harald Weltee2d0d5f2009-12-19 21:26:54 +01001056 /* ip.access nanoBTS needs l2_plen!! */
Harald Weltefd355a32011-03-04 13:41:31 +01001057 switch (bts->type) {
1058 case GSM_BTS_TYPE_NANOBTS:
Maxf9685c12017-03-23 12:01:07 +01001059 case GSM_BTS_TYPE_OSMOBTS:
Max2440f492016-12-07 18:03:03 +01001060 *output++ = GSM48_LEN2PLEN(l2_plen);
Harald Weltee2d0d5f2009-12-19 21:26:54 +01001061 l2_plen++;
Harald Weltefd355a32011-03-04 13:41:31 +01001062 break;
1063 default:
1064 break;
Harald Weltee2d0d5f2009-12-19 21:26:54 +01001065 }
1066
Max6f0e50c2017-04-12 15:30:54 +02001067 si6 = (struct gsm48_system_information_type_6 *) GSM_BTS_SI(bts, t);
Harald Weltea43f7892009-12-01 18:04:30 +05301068
1069 /* l2 pseudo length, not part of msg: 11 */
1070 si6->rr_protocol_discriminator = GSM48_PDISC_RR;
1071 si6->skip_indicator = 0;
1072 si6->system_information = GSM48_MT_RR_SYSINFO_6;
1073 si6->cell_identity = htons(bts->cell_identity);
Harald Welteafedeab2010-03-04 10:55:40 +01001074 gsm48_generate_lai(&si6->lai, bts->network->country_code,
1075 bts->network->network_code,
1076 bts->location_area_code);
Harald Weltea43f7892009-12-01 18:04:30 +05301077 si6->cell_options = bts->si_common.cell_options;
1078 si6->ncc_permitted = bts->si_common.ncc_permitted;
Maxc08ee712016-05-11 12:45:13 +02001079 /* allow/disallow DTXu */
Maxea8e9832016-05-23 17:28:13 +02001080 gsm48_set_dtx(&si6->cell_options, bts->dtxu, bts->dtxu, false);
Harald Weltea43f7892009-12-01 18:04:30 +05301081
1082 /* SI6 Rest Octets: 10.5.2.35a: PCH / NCH info, VBS/VGCS options */
Holger Hans Peter Freyther82dd9832016-05-17 23:20:03 +02001083 rc = rest_octets_si6(si6->rest_octets, is_dcs_net(bts));
Harald Weltea43f7892009-12-01 18:04:30 +05301084
Holger Hans Peter Freyther82dd9832016-05-17 23:20:03 +02001085 return l2_plen + rc;
Harald Weltea43f7892009-12-01 18:04:30 +05301086}
1087
1088static struct gsm48_si13_info si13_default = {
1089 .cell_opts = {
Harald Welte85849182010-06-02 12:19:21 +02001090 .nmo = GPRS_NMO_II,
Harald Weltea4b16652010-05-31 12:54:23 +02001091 .t3168 = 2000,
Andreas Eversbergbecc89a2012-09-23 08:14:51 +02001092 .t3192 = 1500,
Harald Welte97a282b2010-03-14 15:37:43 +08001093 .drx_timer_max = 3,
Harald Weltea43f7892009-12-01 18:04:30 +05301094 .bs_cv_max = 15,
Max292ec582016-07-28 11:55:37 +02001095 .ctrl_ack_type_use_block = true,
Sylvain Munaut851f1202011-10-17 13:56:02 +02001096 .ext_info_present = 0,
bhargava350533c2016-07-21 11:14:34 +05301097 .supports_egprs_11bit_rach = 0,
Harald Welteda0586a2010-04-18 14:49:05 +02001098 .ext_info = {
1099 /* The values below are just guesses ! */
Harald Weltea06fea02010-04-18 15:53:40 +02001100 .egprs_supported = 0,
Harald Welteda0586a2010-04-18 14:49:05 +02001101 .use_egprs_p_ch_req = 1,
Harald Weltea4b16652010-05-31 12:54:23 +02001102 .bep_period = 5,
Harald Welteda0586a2010-04-18 14:49:05 +02001103 .pfc_supported = 0,
1104 .dtm_supported = 0,
1105 .bss_paging_coordination = 0,
1106 },
Harald Weltea43f7892009-12-01 18:04:30 +05301107 },
1108 .pwr_ctrl_pars = {
Harald Weltec15d0ac2012-10-08 21:22:08 +02001109 .alpha = 0, /* a = 0.0 */
Harald Weltea4b16652010-05-31 12:54:23 +02001110 .t_avg_w = 16,
1111 .t_avg_t = 16,
Harald Weltea43f7892009-12-01 18:04:30 +05301112 .pc_meas_chan = 0, /* downling measured on CCCH */
Harald Weltea4b16652010-05-31 12:54:23 +02001113 .n_avg_i = 8,
Harald Weltea43f7892009-12-01 18:04:30 +05301114 },
Harald Welte97a282b2010-03-14 15:37:43 +08001115 .bcch_change_mark = 1,
Harald Weltea43f7892009-12-01 18:04:30 +05301116 .si_change_field = 0,
Max72fbc952017-08-29 13:14:24 +02001117 .rac = 0, /* needs to be patched */
1118 .spgc_ccch_sup = 0,
1119 .net_ctrl_ord = 0,
1120 .prio_acc_thr = 6,
Harald Weltea43f7892009-12-01 18:04:30 +05301121};
1122
Max6f0e50c2017-04-12 15:30:54 +02001123static int generate_si13(enum osmo_sysinfo_type t, struct gsm_bts *bts)
Harald Weltea43f7892009-12-01 18:04:30 +05301124{
1125 struct gsm48_system_information_type_13 *si13 =
Max6f0e50c2017-04-12 15:30:54 +02001126 (struct gsm48_system_information_type_13 *) GSM_BTS_SI(bts, t);
Harald Weltea43f7892009-12-01 18:04:30 +05301127 int ret;
1128
1129 memset(si13, GSM_MACBLOCK_PADDING, GSM_MACBLOCK_LEN);
1130
1131 si13->header.rr_protocol_discriminator = GSM48_PDISC_RR;
1132 si13->header.skip_indicator = 0;
1133 si13->header.system_information = GSM48_MT_RR_SYSINFO_13;
1134
Max72fbc952017-08-29 13:14:24 +02001135 si13_default.rac = bts->gprs.rac;
1136 si13_default.net_ctrl_ord = bts->gprs.net_ctrl_ord;
Harald Welte97a282b2010-03-14 15:37:43 +08001137
Max292ec582016-07-28 11:55:37 +02001138 si13_default.cell_opts.ctrl_ack_type_use_block =
1139 bts->gprs.ctrl_ack_type_use_block;
1140
Holger Hans Peter Freytherb92a5382014-11-21 10:00:39 +01001141 /* Information about the other SIs */
1142 si13_default.bcch_change_mark = bts->bcch_change_mark;
bhargava350533c2016-07-21 11:14:34 +05301143 si13_default.cell_opts.supports_egprs_11bit_rach =
1144 bts->gprs.supports_egprs_11bit_rach;
Holger Hans Peter Freytherb92a5382014-11-21 10:00:39 +01001145
Harald Weltea43f7892009-12-01 18:04:30 +05301146 ret = rest_octets_si13(si13->rest_octets, &si13_default);
1147 if (ret < 0)
1148 return ret;
1149
Holger Hans Peter Freyther1c6f3942010-06-16 12:05:56 +08001150 /* length is coded in bit 2 an up */
1151 si13->header.l2_plen = 0x01;
Harald Weltea43f7892009-12-01 18:04:30 +05301152
Holger Hans Peter Freyther7ec448d2010-01-06 07:52:31 +01001153 return sizeof (*si13) + ret;
Harald Weltea43f7892009-12-01 18:04:30 +05301154}
1155
Max6f0e50c2017-04-12 15:30:54 +02001156typedef int (*gen_si_fn_t)(enum osmo_sysinfo_type t, struct gsm_bts *bts);
Harald Welte7401ae62010-06-15 16:44:12 +02001157
1158static const gen_si_fn_t gen_si_fn[_MAX_SYSINFO_TYPE] = {
1159 [SYSINFO_TYPE_1] = &generate_si1,
1160 [SYSINFO_TYPE_2] = &generate_si2,
Andreas Eversbergc50543b2012-02-29 09:04:07 +01001161 [SYSINFO_TYPE_2bis] = &generate_si2bis,
1162 [SYSINFO_TYPE_2ter] = &generate_si2ter,
Max59a1bf32016-04-15 16:04:46 +02001163 [SYSINFO_TYPE_2quater] = &generate_si2quater,
Harald Welte7401ae62010-06-15 16:44:12 +02001164 [SYSINFO_TYPE_3] = &generate_si3,
1165 [SYSINFO_TYPE_4] = &generate_si4,
1166 [SYSINFO_TYPE_5] = &generate_si5,
Andreas Eversbergc50543b2012-02-29 09:04:07 +01001167 [SYSINFO_TYPE_5bis] = &generate_si5bis,
1168 [SYSINFO_TYPE_5ter] = &generate_si5ter,
Harald Welte7401ae62010-06-15 16:44:12 +02001169 [SYSINFO_TYPE_6] = &generate_si6,
1170 [SYSINFO_TYPE_13] = &generate_si13,
1171};
1172
Harald Welte7401ae62010-06-15 16:44:12 +02001173int gsm_generate_si(struct gsm_bts *bts, enum osmo_sysinfo_type si_type)
1174{
1175 gen_si_fn_t gen_si;
1176
Harald Welte4511d892010-04-18 15:51:20 +02001177 switch (bts->gprs.mode) {
1178 case BTS_GPRS_EGPRS:
Harald Weltea06fea02010-04-18 15:53:40 +02001179 si13_default.cell_opts.ext_info_present = 1;
1180 si13_default.cell_opts.ext_info.egprs_supported = 1;
1181 /* fallthrough */
Harald Welte4511d892010-04-18 15:51:20 +02001182 case BTS_GPRS_GPRS:
1183 si_info.gprs_ind.present = 1;
1184 break;
1185 case BTS_GPRS_NONE:
1186 si_info.gprs_ind.present = 0;
1187 break;
1188 }
Harald Welte1f893292010-03-14 23:46:48 +08001189
Sylvain Munaute0b06b02010-11-28 18:17:28 +01001190 memcpy(&si_info.selection_params,
1191 &bts->si_common.cell_ro_sel_par,
1192 sizeof(struct gsm48_si_selection_params));
1193
Harald Welte7401ae62010-06-15 16:44:12 +02001194 gen_si = gen_si_fn[si_type];
1195 if (!gen_si)
Harald Weltea43f7892009-12-01 18:04:30 +05301196 return -EINVAL;
Harald Weltea43f7892009-12-01 18:04:30 +05301197
Max6f0e50c2017-04-12 15:30:54 +02001198 return gen_si(si_type, bts);
Harald Weltea43f7892009-12-01 18:04:30 +05301199}