blob: a04959d87acfd579ee0cb3770d06002d01f2684c [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
Max61b0c302017-12-11 12:24:18 +0100742 /* SI2bis Rest Octets as per 3GPP TS 44.018 §10.5.2.33 */
743 rc = rest_octets_si2bis(si2b->rest_octets);
744
745 return sizeof(*si2b) + rc;
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100746}
747
Max6f0e50c2017-04-12 15:30:54 +0200748static int generate_si2ter(enum osmo_sysinfo_type t, struct gsm_bts *bts)
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100749{
750 int rc;
751 struct gsm48_system_information_type_2ter *si2t =
Max6f0e50c2017-04-12 15:30:54 +0200752 (struct gsm48_system_information_type_2ter *) GSM_BTS_SI(bts, t);
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100753 int n;
754
755 memset(si2t, GSM_MACBLOCK_PADDING, GSM_MACBLOCK_LEN);
756
Max2440f492016-12-07 18:03:03 +0100757 si2t->header.l2_plen = GSM48_LEN2PLEN(22);
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100758 si2t->header.rr_protocol_discriminator = GSM48_PDISC_RR;
759 si2t->header.skip_indicator = 0;
760 si2t->header.system_information = GSM48_MT_RR_SYSINFO_2ter;
761
Max5fa7e362016-04-15 16:04:45 +0200762 rc = generate_bcch_chan_list(si2t->ext_bcch_frequency_list, bts, false, false, true);
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100763 if (rc < 0)
764 return rc;
765 n = list_arfcn(si2t->ext_bcch_frequency_list, 0x8e,
766 "Neighbour cells in different band:");
767 if (!n)
768 bts->si_valid &= ~(1 << SYSINFO_TYPE_2ter);
769
Max4bd710d2017-12-11 12:09:34 +0100770 /* SI2ter Rest Octets as per 3GPP TS 44.018 §10.5.2.33a */
771 rc = rest_octets_si2ter(si2t->rest_octets);
772
773 return sizeof(*si2t) + rc;
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100774}
775
Maxf39d03a2017-05-12 17:00:30 +0200776/* SI2quater messages are optional - we only generate them when neighbor UARFCNs or EARFCNs are configured */
777static inline bool si2quater_not_needed(struct gsm_bts *bts)
778{
779 unsigned i = MAX_EARFCN_LIST;
780
781 if (bts->si_common.si2quater_neigh_list.arfcn)
782 for (i = 0; i < MAX_EARFCN_LIST; i++)
783 if (bts->si_common.si2quater_neigh_list.arfcn[i] != OSMO_EARFCN_INVALID)
784 break;
785
786 if (!bts->si_common.uarfcn_length && i == MAX_EARFCN_LIST) {
787 bts->si_valid &= ~(1 << SYSINFO_TYPE_2quater); /* mark SI2q as invalid if no (E|U)ARFCNs are present */
788 return true;
789 }
790
791 return false;
792}
793
Max6f0e50c2017-04-12 15:30:54 +0200794static int generate_si2quater(enum osmo_sysinfo_type t, struct gsm_bts *bts)
Max59a1bf32016-04-15 16:04:46 +0200795{
Maxf39d03a2017-05-12 17:00:30 +0200796 int rc;
Max70fdd242017-06-15 15:10:53 +0200797 struct gsm48_system_information_type_2quater *si2q;
Maxf39d03a2017-05-12 17:00:30 +0200798
799 if (si2quater_not_needed(bts)) /* generate rest_octets for SI2q only when necessary */
800 return GSM_MACBLOCK_LEN;
Max59a1bf32016-04-15 16:04:46 +0200801
Max70fdd242017-06-15 15:10:53 +0200802 bts->u_offset = 0;
803 bts->e_offset = 0;
804 bts->si2q_index = 0;
805 bts->si2q_count = si2q_num(bts) - 1;
Max59a1bf32016-04-15 16:04:46 +0200806
Max70fdd242017-06-15 15:10:53 +0200807 rc = make_si2quaters(bts, false);
Max59a1bf32016-04-15 16:04:46 +0200808 if (rc < 0)
809 return rc;
810
Max70fdd242017-06-15 15:10:53 +0200811 OSMO_ASSERT(bts->si2q_count == bts->si2q_index);
812 OSMO_ASSERT(bts->si2q_count <= SI2Q_MAX_NUM);
813
Max59a1bf32016-04-15 16:04:46 +0200814 return sizeof(*si2q) + rc;
815}
816
Harald Welte1f893292010-03-14 23:46:48 +0800817static struct gsm48_si_ro_info si_info = {
Harald Weltea43f7892009-12-01 18:04:30 +0530818 .selection_params = {
819 .present = 0,
820 },
821 .power_offset = {
822 .present = 0,
823 },
Pau Espin Pedrol91c76fd2017-11-24 12:44:07 +0100824 .si2ter_indicator = false,
825 .early_cm_ctrl = true,
Harald Weltea43f7892009-12-01 18:04:30 +0530826 .scheduling = {
827 .present = 0,
828 },
829 .gprs_ind = {
830 .si13_position = 0,
831 .ra_colour = 0,
Harald Welte97a282b2010-03-14 15:37:43 +0800832 .present = 1,
Harald Weltea43f7892009-12-01 18:04:30 +0530833 },
Pau Espin Pedrole8dda5f2017-11-23 19:06:09 +0100834 .early_cm_restrict_3g = false,
Pau Espin Pedrol91c76fd2017-11-24 12:44:07 +0100835 .si2quater_indicator = false,
Harald Weltea43f7892009-12-01 18:04:30 +0530836 .lsa_params = {
837 .present = 0,
838 },
839 .cell_id = 0, /* FIXME: doesn't the bts have this? */
840 .break_ind = 0,
841};
842
Max6f0e50c2017-04-12 15:30:54 +0200843static int generate_si3(enum osmo_sysinfo_type t, struct gsm_bts *bts)
Harald Weltea43f7892009-12-01 18:04:30 +0530844{
Holger Hans Peter Freyther7ec448d2010-01-06 07:52:31 +0100845 int rc;
Max6f0e50c2017-04-12 15:30:54 +0200846 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 +0530847
848 memset(si3, GSM_MACBLOCK_PADDING, GSM_MACBLOCK_LEN);
849
Max2440f492016-12-07 18:03:03 +0100850 si3->header.l2_plen = GSM48_LEN2PLEN(18);
Harald Weltea43f7892009-12-01 18:04:30 +0530851 si3->header.rr_protocol_discriminator = GSM48_PDISC_RR;
852 si3->header.skip_indicator = 0;
853 si3->header.system_information = GSM48_MT_RR_SYSINFO_3;
854
855 si3->cell_identity = htons(bts->cell_identity);
Harald Welteafedeab2010-03-04 10:55:40 +0100856 gsm48_generate_lai(&si3->lai, bts->network->country_code,
857 bts->network->network_code,
858 bts->location_area_code);
Harald Weltea43f7892009-12-01 18:04:30 +0530859 si3->control_channel_desc = bts->si_common.chan_desc;
860 si3->cell_options = bts->si_common.cell_options;
861 si3->cell_sel_par = bts->si_common.cell_sel_par;
862 si3->rach_control = bts->si_common.rach_control;
863
Maxc08ee712016-05-11 12:45:13 +0200864 /* allow/disallow DTXu */
865 gsm48_set_dtx(&si3->cell_options, bts->dtxu, bts->dtxu, true);
866
Max9b97b002017-06-02 10:58:26 +0200867 if (GSM_BTS_HAS_SI(bts, SYSINFO_TYPE_2ter)) {
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100868 LOGP(DRR, LOGL_INFO, "SI 2ter is included.\n");
Pau Espin Pedrol91c76fd2017-11-24 12:44:07 +0100869 si_info.si2ter_indicator = true;
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100870 } else {
Pau Espin Pedrol91c76fd2017-11-24 12:44:07 +0100871 si_info.si2ter_indicator = false;
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100872 }
Max9b97b002017-06-02 10:58:26 +0200873 if (GSM_BTS_HAS_SI(bts, SYSINFO_TYPE_2quater)) {
Max845a3a42017-05-15 12:02:29 +0200874 LOGP(DRR, LOGL_INFO, "SI 2quater is included, based on %zu EARFCNs and %zu UARFCNs.\n",
875 si2q_earfcn_count(&bts->si_common.si2quater_neigh_list), bts->si_common.uarfcn_length);
Pau Espin Pedrol91c76fd2017-11-24 12:44:07 +0100876 si_info.si2quater_indicator = true;
Maxf3f35052016-04-15 16:04:44 +0200877 } else {
Pau Espin Pedrol91c76fd2017-11-24 12:44:07 +0100878 si_info.si2quater_indicator = false;
Maxf3f35052016-04-15 16:04:44 +0200879 }
Harald Welte42def722017-01-13 00:10:32 +0100880 si_info.early_cm_ctrl = bts->early_classmark_allowed;
Pau Espin Pedrole8dda5f2017-11-23 19:06:09 +0100881 si_info.early_cm_restrict_3g = !bts->early_classmark_allowed_3g;
Harald Welte42def722017-01-13 00:10:32 +0100882
Harald Weltea43f7892009-12-01 18:04:30 +0530883 /* SI3 Rest Octets (10.5.2.34), containing
884 CBQ, CELL_RESELECT_OFFSET, TEMPORARY_OFFSET, PENALTY_TIME
885 Power Offset, 2ter Indicator, Early Classmark Sending,
886 Scheduling if and WHERE, GPRS Indicator, SI13 position */
Holger Hans Peter Freyther7ec448d2010-01-06 07:52:31 +0100887 rc = rest_octets_si3(si3->rest_octets, &si_info);
Harald Weltea43f7892009-12-01 18:04:30 +0530888
Holger Hans Peter Freyther7ec448d2010-01-06 07:52:31 +0100889 return sizeof(*si3) + rc;
Harald Weltea43f7892009-12-01 18:04:30 +0530890}
891
Max6f0e50c2017-04-12 15:30:54 +0200892static int generate_si4(enum osmo_sysinfo_type t, struct gsm_bts *bts)
Harald Weltea43f7892009-12-01 18:04:30 +0530893{
Holger Hans Peter Freyther7ec448d2010-01-06 07:52:31 +0100894 int rc;
Max6f0e50c2017-04-12 15:30:54 +0200895 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 +0100896 struct gsm_lchan *cbch_lchan;
897 uint8_t *restoct = si4->data;
Harald Weltea43f7892009-12-01 18:04:30 +0530898
899 /* length of all IEs present except SI4 rest octets and l2_plen */
900 int l2_plen = sizeof(*si4) - 1;
901
902 memset(si4, GSM_MACBLOCK_PADDING, GSM_MACBLOCK_LEN);
903
904 si4->header.rr_protocol_discriminator = GSM48_PDISC_RR;
905 si4->header.skip_indicator = 0;
906 si4->header.system_information = GSM48_MT_RR_SYSINFO_4;
907
Harald Welteafedeab2010-03-04 10:55:40 +0100908 gsm48_generate_lai(&si4->lai, bts->network->country_code,
909 bts->network->network_code,
910 bts->location_area_code);
Harald Weltea43f7892009-12-01 18:04:30 +0530911 si4->cell_sel_par = bts->si_common.cell_sel_par;
912 si4->rach_control = bts->si_common.rach_control;
913
914 /* Optional: CBCH Channel Description + CBCH Mobile Allocation */
Harald Welte142d12d2014-12-29 17:47:08 +0100915 cbch_lchan = gsm_bts_get_cbch(bts);
Harald Welte30f1f372014-12-28 15:00:45 +0100916 if (cbch_lchan) {
917 struct gsm48_chan_desc cd;
918 gsm48_lchan2chan_desc(&cd, cbch_lchan);
Daniel Willmann695675f2014-12-30 12:10:25 +0100919 tv_fixed_put(si4->data, GSM48_IE_CBCH_CHAN_DESC, 3,
Harald Welte30f1f372014-12-28 15:00:45 +0100920 (uint8_t *) &cd);
Daniel Willmann695675f2014-12-30 12:10:25 +0100921 l2_plen += 3 + 1;
922 restoct += 3 + 1;
Harald Welte30f1f372014-12-28 15:00:45 +0100923 /* we don't use hopping and thus don't need a CBCH MA */
924 }
Harald Weltea43f7892009-12-01 18:04:30 +0530925
Max2440f492016-12-07 18:03:03 +0100926 si4->header.l2_plen = GSM48_LEN2PLEN(l2_plen);
Harald Weltea43f7892009-12-01 18:04:30 +0530927
928 /* SI4 Rest Octets (10.5.2.35), containing
929 Optional Power offset, GPRS Indicator,
930 Cell Identity, LSA ID, Selection Parameter */
Max6f0e50c2017-04-12 15:30:54 +0200931 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 +0530932
Harald Welte30f1f372014-12-28 15:00:45 +0100933 return l2_plen + 1 + rc;
Harald Weltea43f7892009-12-01 18:04:30 +0530934}
935
Max6f0e50c2017-04-12 15:30:54 +0200936static int generate_si5(enum osmo_sysinfo_type t, struct gsm_bts *bts)
Harald Weltea43f7892009-12-01 18:04:30 +0530937{
Harald Weltee2d0d5f2009-12-19 21:26:54 +0100938 struct gsm48_system_information_type_5 *si5;
Max6f0e50c2017-04-12 15:30:54 +0200939 uint8_t *output = GSM_BTS_SI(bts, t);
Harald Weltee2d0d5f2009-12-19 21:26:54 +0100940 int rc, l2_plen = 18;
Harald Weltea43f7892009-12-01 18:04:30 +0530941
Holger Hans Peter Freyther17d81e22010-01-06 07:52:55 +0100942 memset(output, GSM_MACBLOCK_PADDING, GSM_MACBLOCK_LEN);
943
Harald Weltee2d0d5f2009-12-19 21:26:54 +0100944 /* ip.access nanoBTS needs l2_plen!! */
Harald Weltefd355a32011-03-04 13:41:31 +0100945 switch (bts->type) {
946 case GSM_BTS_TYPE_NANOBTS:
Maxf9685c12017-03-23 12:01:07 +0100947 case GSM_BTS_TYPE_OSMOBTS:
Max2440f492016-12-07 18:03:03 +0100948 *output++ = GSM48_LEN2PLEN(l2_plen);
Harald Weltee2d0d5f2009-12-19 21:26:54 +0100949 l2_plen++;
Harald Weltefd355a32011-03-04 13:41:31 +0100950 break;
951 default:
952 break;
Harald Weltee2d0d5f2009-12-19 21:26:54 +0100953 }
954
Max6f0e50c2017-04-12 15:30:54 +0200955 si5 = (struct gsm48_system_information_type_5 *) GSM_BTS_SI(bts, t);
Harald Weltea43f7892009-12-01 18:04:30 +0530956
957 /* l2 pseudo length, not part of msg: 18 */
958 si5->rr_protocol_discriminator = GSM48_PDISC_RR;
959 si5->skip_indicator = 0;
960 si5->system_information = GSM48_MT_RR_SYSINFO_5;
Max5fa7e362016-04-15 16:04:45 +0200961 rc = generate_bcch_chan_list(si5->bcch_frequency_list, bts, true, false, false);
Harald Weltea43f7892009-12-01 18:04:30 +0530962 if (rc < 0)
963 return rc;
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100964 list_arfcn(si5->bcch_frequency_list, 0xce,
Harald Weltee5ba92e2015-09-04 06:22:46 +0200965 "SI5 Neighbour cells in same band:");
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100966
967 /* 04.08 9.1.37: L2 Pseudo Length of 18 */
968 return l2_plen;
969}
970
Max6f0e50c2017-04-12 15:30:54 +0200971static int generate_si5bis(enum osmo_sysinfo_type t, struct gsm_bts *bts)
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100972{
973 struct gsm48_system_information_type_5bis *si5b;
Max6f0e50c2017-04-12 15:30:54 +0200974 uint8_t *output = GSM_BTS_SI(bts, t);
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100975 int rc, l2_plen = 18;
976 int n;
977
978 memset(output, GSM_MACBLOCK_PADDING, GSM_MACBLOCK_LEN);
979
980 /* ip.access nanoBTS needs l2_plen!! */
981 switch (bts->type) {
982 case GSM_BTS_TYPE_NANOBTS:
Maxf9685c12017-03-23 12:01:07 +0100983 case GSM_BTS_TYPE_OSMOBTS:
Max2440f492016-12-07 18:03:03 +0100984 *output++ = GSM48_LEN2PLEN(l2_plen);
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100985 l2_plen++;
986 break;
987 default:
988 break;
989 }
990
Max6f0e50c2017-04-12 15:30:54 +0200991 si5b = (struct gsm48_system_information_type_5bis *) GSM_BTS_SI(bts, t);
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100992
993 /* l2 pseudo length, not part of msg: 18 */
994 si5b->rr_protocol_discriminator = GSM48_PDISC_RR;
995 si5b->skip_indicator = 0;
996 si5b->system_information = GSM48_MT_RR_SYSINFO_5bis;
Max5fa7e362016-04-15 16:04:45 +0200997 rc = generate_bcch_chan_list(si5b->bcch_frequency_list, bts, true, true, false);
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100998 if (rc < 0)
999 return rc;
1000 n = list_arfcn(si5b->bcch_frequency_list, 0xce,
1001 "Neighbour cells in same band, but outside P-GSM:");
1002 if (n) {
1003 /* indicate in SI5 and SI5bis: there is an extension */
1004 struct gsm48_system_information_type_5 *si5 =
Max6f0e50c2017-04-12 15:30:54 +02001005 (struct gsm48_system_information_type_5 *) GSM_BTS_SI(bts, SYSINFO_TYPE_5);
Andreas Eversbergc50543b2012-02-29 09:04:07 +01001006 si5->bcch_frequency_list[0] |= 0x20;
1007 si5b->bcch_frequency_list[0] |= 0x20;
1008 } else
1009 bts->si_valid &= ~(1 << SYSINFO_TYPE_5bis);
1010
1011 /* 04.08 9.1.37: L2 Pseudo Length of 18 */
1012 return l2_plen;
1013}
1014
Max6f0e50c2017-04-12 15:30:54 +02001015static int generate_si5ter(enum osmo_sysinfo_type t, struct gsm_bts *bts)
Andreas Eversbergc50543b2012-02-29 09:04:07 +01001016{
1017 struct gsm48_system_information_type_5ter *si5t;
Max6f0e50c2017-04-12 15:30:54 +02001018 uint8_t *output = GSM_BTS_SI(bts, t);
Andreas Eversbergc50543b2012-02-29 09:04:07 +01001019 int rc, l2_plen = 18;
1020 int n;
1021
1022 memset(output, GSM_MACBLOCK_PADDING, GSM_MACBLOCK_LEN);
1023
1024 /* ip.access nanoBTS needs l2_plen!! */
1025 switch (bts->type) {
1026 case GSM_BTS_TYPE_NANOBTS:
Maxf9685c12017-03-23 12:01:07 +01001027 case GSM_BTS_TYPE_OSMOBTS:
Max2440f492016-12-07 18:03:03 +01001028 *output++ = GSM48_LEN2PLEN(l2_plen);
Andreas Eversbergc50543b2012-02-29 09:04:07 +01001029 l2_plen++;
1030 break;
1031 default:
1032 break;
1033 }
1034
Max6f0e50c2017-04-12 15:30:54 +02001035 si5t = (struct gsm48_system_information_type_5ter *) GSM_BTS_SI(bts, t);
Andreas Eversbergc50543b2012-02-29 09:04:07 +01001036
1037 /* l2 pseudo length, not part of msg: 18 */
1038 si5t->rr_protocol_discriminator = GSM48_PDISC_RR;
1039 si5t->skip_indicator = 0;
1040 si5t->system_information = GSM48_MT_RR_SYSINFO_5ter;
Max5fa7e362016-04-15 16:04:45 +02001041 rc = generate_bcch_chan_list(si5t->bcch_frequency_list, bts, true, false, true);
Andreas Eversbergc50543b2012-02-29 09:04:07 +01001042 if (rc < 0)
1043 return rc;
1044 n = list_arfcn(si5t->bcch_frequency_list, 0x8e,
1045 "Neighbour cells in different band:");
1046 if (!n)
1047 bts->si_valid &= ~(1 << SYSINFO_TYPE_5ter);
Harald Weltea43f7892009-12-01 18:04:30 +05301048
1049 /* 04.08 9.1.37: L2 Pseudo Length of 18 */
Harald Weltee2d0d5f2009-12-19 21:26:54 +01001050 return l2_plen;
Harald Weltea43f7892009-12-01 18:04:30 +05301051}
1052
Max6f0e50c2017-04-12 15:30:54 +02001053static int generate_si6(enum osmo_sysinfo_type t, struct gsm_bts *bts)
Harald Weltea43f7892009-12-01 18:04:30 +05301054{
Harald Weltee2d0d5f2009-12-19 21:26:54 +01001055 struct gsm48_system_information_type_6 *si6;
Max6f0e50c2017-04-12 15:30:54 +02001056 uint8_t *output = GSM_BTS_SI(bts, t);
Harald Weltee2d0d5f2009-12-19 21:26:54 +01001057 int l2_plen = 11;
Holger Hans Peter Freyther82dd9832016-05-17 23:20:03 +02001058 int rc;
Harald Weltea43f7892009-12-01 18:04:30 +05301059
Holger Hans Peter Freyther17d81e22010-01-06 07:52:55 +01001060 memset(output, GSM_MACBLOCK_PADDING, GSM_MACBLOCK_LEN);
1061
Harald Weltee2d0d5f2009-12-19 21:26:54 +01001062 /* ip.access nanoBTS needs l2_plen!! */
Harald Weltefd355a32011-03-04 13:41:31 +01001063 switch (bts->type) {
1064 case GSM_BTS_TYPE_NANOBTS:
Maxf9685c12017-03-23 12:01:07 +01001065 case GSM_BTS_TYPE_OSMOBTS:
Max2440f492016-12-07 18:03:03 +01001066 *output++ = GSM48_LEN2PLEN(l2_plen);
Harald Weltee2d0d5f2009-12-19 21:26:54 +01001067 l2_plen++;
Harald Weltefd355a32011-03-04 13:41:31 +01001068 break;
1069 default:
1070 break;
Harald Weltee2d0d5f2009-12-19 21:26:54 +01001071 }
1072
Max6f0e50c2017-04-12 15:30:54 +02001073 si6 = (struct gsm48_system_information_type_6 *) GSM_BTS_SI(bts, t);
Harald Weltea43f7892009-12-01 18:04:30 +05301074
1075 /* l2 pseudo length, not part of msg: 11 */
1076 si6->rr_protocol_discriminator = GSM48_PDISC_RR;
1077 si6->skip_indicator = 0;
1078 si6->system_information = GSM48_MT_RR_SYSINFO_6;
1079 si6->cell_identity = htons(bts->cell_identity);
Harald Welteafedeab2010-03-04 10:55:40 +01001080 gsm48_generate_lai(&si6->lai, bts->network->country_code,
1081 bts->network->network_code,
1082 bts->location_area_code);
Harald Weltea43f7892009-12-01 18:04:30 +05301083 si6->cell_options = bts->si_common.cell_options;
1084 si6->ncc_permitted = bts->si_common.ncc_permitted;
Maxc08ee712016-05-11 12:45:13 +02001085 /* allow/disallow DTXu */
Maxea8e9832016-05-23 17:28:13 +02001086 gsm48_set_dtx(&si6->cell_options, bts->dtxu, bts->dtxu, false);
Harald Weltea43f7892009-12-01 18:04:30 +05301087
1088 /* SI6 Rest Octets: 10.5.2.35a: PCH / NCH info, VBS/VGCS options */
Holger Hans Peter Freyther82dd9832016-05-17 23:20:03 +02001089 rc = rest_octets_si6(si6->rest_octets, is_dcs_net(bts));
Harald Weltea43f7892009-12-01 18:04:30 +05301090
Holger Hans Peter Freyther82dd9832016-05-17 23:20:03 +02001091 return l2_plen + rc;
Harald Weltea43f7892009-12-01 18:04:30 +05301092}
1093
1094static struct gsm48_si13_info si13_default = {
1095 .cell_opts = {
Harald Welte85849182010-06-02 12:19:21 +02001096 .nmo = GPRS_NMO_II,
Harald Weltea4b16652010-05-31 12:54:23 +02001097 .t3168 = 2000,
Andreas Eversbergbecc89a2012-09-23 08:14:51 +02001098 .t3192 = 1500,
Harald Welte97a282b2010-03-14 15:37:43 +08001099 .drx_timer_max = 3,
Harald Weltea43f7892009-12-01 18:04:30 +05301100 .bs_cv_max = 15,
Max292ec582016-07-28 11:55:37 +02001101 .ctrl_ack_type_use_block = true,
Sylvain Munaut851f1202011-10-17 13:56:02 +02001102 .ext_info_present = 0,
bhargava350533c2016-07-21 11:14:34 +05301103 .supports_egprs_11bit_rach = 0,
Harald Welteda0586a2010-04-18 14:49:05 +02001104 .ext_info = {
1105 /* The values below are just guesses ! */
Harald Weltea06fea02010-04-18 15:53:40 +02001106 .egprs_supported = 0,
Harald Welteda0586a2010-04-18 14:49:05 +02001107 .use_egprs_p_ch_req = 1,
Harald Weltea4b16652010-05-31 12:54:23 +02001108 .bep_period = 5,
Harald Welteda0586a2010-04-18 14:49:05 +02001109 .pfc_supported = 0,
1110 .dtm_supported = 0,
1111 .bss_paging_coordination = 0,
1112 },
Harald Weltea43f7892009-12-01 18:04:30 +05301113 },
1114 .pwr_ctrl_pars = {
Harald Weltec15d0ac2012-10-08 21:22:08 +02001115 .alpha = 0, /* a = 0.0 */
Harald Weltea4b16652010-05-31 12:54:23 +02001116 .t_avg_w = 16,
1117 .t_avg_t = 16,
Harald Weltea43f7892009-12-01 18:04:30 +05301118 .pc_meas_chan = 0, /* downling measured on CCCH */
Harald Weltea4b16652010-05-31 12:54:23 +02001119 .n_avg_i = 8,
Harald Weltea43f7892009-12-01 18:04:30 +05301120 },
Harald Welte97a282b2010-03-14 15:37:43 +08001121 .bcch_change_mark = 1,
Harald Weltea43f7892009-12-01 18:04:30 +05301122 .si_change_field = 0,
Max72fbc952017-08-29 13:14:24 +02001123 .rac = 0, /* needs to be patched */
1124 .spgc_ccch_sup = 0,
1125 .net_ctrl_ord = 0,
1126 .prio_acc_thr = 6,
Harald Weltea43f7892009-12-01 18:04:30 +05301127};
1128
Max6f0e50c2017-04-12 15:30:54 +02001129static int generate_si13(enum osmo_sysinfo_type t, struct gsm_bts *bts)
Harald Weltea43f7892009-12-01 18:04:30 +05301130{
1131 struct gsm48_system_information_type_13 *si13 =
Max6f0e50c2017-04-12 15:30:54 +02001132 (struct gsm48_system_information_type_13 *) GSM_BTS_SI(bts, t);
Harald Weltea43f7892009-12-01 18:04:30 +05301133 int ret;
1134
1135 memset(si13, GSM_MACBLOCK_PADDING, GSM_MACBLOCK_LEN);
1136
1137 si13->header.rr_protocol_discriminator = GSM48_PDISC_RR;
1138 si13->header.skip_indicator = 0;
1139 si13->header.system_information = GSM48_MT_RR_SYSINFO_13;
1140
Max72fbc952017-08-29 13:14:24 +02001141 si13_default.rac = bts->gprs.rac;
1142 si13_default.net_ctrl_ord = bts->gprs.net_ctrl_ord;
Harald Welte97a282b2010-03-14 15:37:43 +08001143
Max292ec582016-07-28 11:55:37 +02001144 si13_default.cell_opts.ctrl_ack_type_use_block =
1145 bts->gprs.ctrl_ack_type_use_block;
1146
Holger Hans Peter Freytherb92a5382014-11-21 10:00:39 +01001147 /* Information about the other SIs */
1148 si13_default.bcch_change_mark = bts->bcch_change_mark;
bhargava350533c2016-07-21 11:14:34 +05301149 si13_default.cell_opts.supports_egprs_11bit_rach =
1150 bts->gprs.supports_egprs_11bit_rach;
Holger Hans Peter Freytherb92a5382014-11-21 10:00:39 +01001151
Harald Weltea43f7892009-12-01 18:04:30 +05301152 ret = rest_octets_si13(si13->rest_octets, &si13_default);
1153 if (ret < 0)
1154 return ret;
1155
Holger Hans Peter Freyther1c6f3942010-06-16 12:05:56 +08001156 /* length is coded in bit 2 an up */
1157 si13->header.l2_plen = 0x01;
Harald Weltea43f7892009-12-01 18:04:30 +05301158
Holger Hans Peter Freyther7ec448d2010-01-06 07:52:31 +01001159 return sizeof (*si13) + ret;
Harald Weltea43f7892009-12-01 18:04:30 +05301160}
1161
Max6f0e50c2017-04-12 15:30:54 +02001162typedef int (*gen_si_fn_t)(enum osmo_sysinfo_type t, struct gsm_bts *bts);
Harald Welte7401ae62010-06-15 16:44:12 +02001163
1164static const gen_si_fn_t gen_si_fn[_MAX_SYSINFO_TYPE] = {
1165 [SYSINFO_TYPE_1] = &generate_si1,
1166 [SYSINFO_TYPE_2] = &generate_si2,
Andreas Eversbergc50543b2012-02-29 09:04:07 +01001167 [SYSINFO_TYPE_2bis] = &generate_si2bis,
1168 [SYSINFO_TYPE_2ter] = &generate_si2ter,
Max59a1bf32016-04-15 16:04:46 +02001169 [SYSINFO_TYPE_2quater] = &generate_si2quater,
Harald Welte7401ae62010-06-15 16:44:12 +02001170 [SYSINFO_TYPE_3] = &generate_si3,
1171 [SYSINFO_TYPE_4] = &generate_si4,
1172 [SYSINFO_TYPE_5] = &generate_si5,
Andreas Eversbergc50543b2012-02-29 09:04:07 +01001173 [SYSINFO_TYPE_5bis] = &generate_si5bis,
1174 [SYSINFO_TYPE_5ter] = &generate_si5ter,
Harald Welte7401ae62010-06-15 16:44:12 +02001175 [SYSINFO_TYPE_6] = &generate_si6,
1176 [SYSINFO_TYPE_13] = &generate_si13,
1177};
1178
Harald Welte7401ae62010-06-15 16:44:12 +02001179int gsm_generate_si(struct gsm_bts *bts, enum osmo_sysinfo_type si_type)
1180{
1181 gen_si_fn_t gen_si;
1182
Harald Welte4511d892010-04-18 15:51:20 +02001183 switch (bts->gprs.mode) {
1184 case BTS_GPRS_EGPRS:
Harald Weltea06fea02010-04-18 15:53:40 +02001185 si13_default.cell_opts.ext_info_present = 1;
1186 si13_default.cell_opts.ext_info.egprs_supported = 1;
1187 /* fallthrough */
Harald Welte4511d892010-04-18 15:51:20 +02001188 case BTS_GPRS_GPRS:
1189 si_info.gprs_ind.present = 1;
1190 break;
1191 case BTS_GPRS_NONE:
1192 si_info.gprs_ind.present = 0;
1193 break;
1194 }
Harald Welte1f893292010-03-14 23:46:48 +08001195
Sylvain Munaute0b06b02010-11-28 18:17:28 +01001196 memcpy(&si_info.selection_params,
1197 &bts->si_common.cell_ro_sel_par,
1198 sizeof(struct gsm48_si_selection_params));
1199
Harald Welte7401ae62010-06-15 16:44:12 +02001200 gen_si = gen_si_fn[si_type];
1201 if (!gen_si)
Harald Weltea43f7892009-12-01 18:04:30 +05301202 return -EINVAL;
Harald Weltea43f7892009-12-01 18:04:30 +05301203
Max6f0e50c2017-04-12 15:30:54 +02001204 return gen_si(si_type, bts);
Harald Weltea43f7892009-12-01 18:04:30 +05301205}