blob: 9bbcabd9d3331fc1b57c2a7f7aa9c36cce09647a [file] [log] [blame]
Harald Welte6be350c2011-05-25 13:10:08 +02001#ifndef _GSM_DATA_SHAREDH
2#define _GSM_DATA_SHAREDH
3
Holger Hans Peter Freyther06c9da62011-06-09 21:48:49 +02004#include <regex.h>
Harald Welte6be350c2011-05-25 13:10:08 +02005#include <stdbool.h>
6#include <stdint.h>
7
8#include <osmocom/core/timer.h>
9#include <osmocom/core/bitvec.h>
10#include <osmocom/core/statistics.h>
11#include <osmocom/core/utils.h>
12#include <osmocom/gsm/gsm_utils.h>
13#include <osmocom/gsm/tlv.h>
14#include <osmocom/gsm/rxlev_stat.h>
15#include <osmocom/gsm/sysinfo.h>
Harald Welte7ff4f0e2013-03-07 18:38:09 +000016#include <osmocom/gsm/meas_rep.h>
Maxc08ee712016-05-11 12:45:13 +020017#include <osmocom/gsm/protocol/gsm_04_08.h>
Harald Welte6be350c2011-05-25 13:10:08 +020018#include <osmocom/gsm/protocol/gsm_08_58.h>
Harald Welte3300c012011-06-05 13:31:33 +020019#include <osmocom/gsm/protocol/gsm_12_21.h>
Harald Welte6be350c2011-05-25 13:10:08 +020020
Harald Welte0eae6132011-08-24 13:52:07 +020021#include <osmocom/abis/e1_input.h>
Neels Hofmeyrc0164792017-09-04 15:15:32 +020022#include <osmocom/bsc/common_cs.h>
23#include <osmocom/bsc/meas_rep.h>
Neels Hofmeyrf0ea05e2017-11-27 22:30:47 +010024#include <osmocom/bsc/rest_octets.h>
Neels Hofmeyrac1f1432016-05-10 13:30:17 +020025
Max70fdd242017-06-15 15:10:53 +020026/* 16 is the max. number of SI2quater messages according to 3GPP TS 44.018 Table 10.5.2.33b.1:
27 4-bit index is used (2#1111 = 10#15) */
Max9b97b002017-06-02 10:58:26 +020028#define SI2Q_MAX_NUM 16
29/* length in bits (for single SI2quater message) */
30#define SI2Q_MAX_LEN 160
31#define SI2Q_MIN_LEN 18
32
Holger Hans Peter Freyther8ec49522011-08-15 15:53:00 +020033struct osmo_bsc_data;
34
Harald Welte6be350c2011-05-25 13:10:08 +020035struct osmo_bsc_sccp_con;
Harald Welte6be350c2011-05-25 13:10:08 +020036
37/* RRLP mode of operation */
38enum rrlp_mode {
39 RRLP_MODE_NONE,
40 RRLP_MODE_MS_BASED,
41 RRLP_MODE_MS_PREF,
42 RRLP_MODE_ASS_PREF,
43};
44
45/* Channel Request reason */
46enum gsm_chreq_reason_t {
47 GSM_CHREQ_REASON_EMERG,
48 GSM_CHREQ_REASON_PAG,
49 GSM_CHREQ_REASON_CALL,
50 GSM_CHREQ_REASON_LOCATION_UPD,
51 GSM_CHREQ_REASON_OTHER,
Alexander Couzens11368112016-11-28 23:26:50 +010052 GSM_CHREQ_REASON_PDCH,
Harald Welte6be350c2011-05-25 13:10:08 +020053};
54
Max582e4f62016-10-18 16:19:33 +020055/* lchans 0..3 are SDCCH in combined channel configuration,
56 use 4 as magic number for BCCH hack - see osmo-bts-../oml.c:opstart_compl() */
57#define CCCH_LCHAN 4
58
Harald Welte6be350c2011-05-25 13:10:08 +020059#define TRX_NR_TS 8
60#define TS_MAX_LCHAN 8
61
62#define HARDCODED_ARFCN 123
Harald Welte6be350c2011-05-25 13:10:08 +020063#define HARDCODED_BSIC 0x3f /* NCC = 7 / BCC = 7 */
64
65/* for multi-drop config */
66#define HARDCODED_BTS0_TS 1
67#define HARDCODED_BTS1_TS 6
68#define HARDCODED_BTS2_TS 11
69
Maxf9685c12017-03-23 12:01:07 +010070#define MAX_VERSION_LENGTH 64
71
Max7b62d542017-05-09 15:19:15 +020072#define MAX_BTS_FEATURES 128
73
Harald Welte6be350c2011-05-25 13:10:08 +020074enum gsm_hooks {
75 GSM_HOOK_NM_SWLOAD,
76 GSM_HOOK_RR_PAGING,
77 GSM_HOOK_RR_SECURITY,
78};
79
80enum gsm_paging_event {
81 GSM_PAGING_SUCCEEDED,
82 GSM_PAGING_EXPIRED,
83 GSM_PAGING_OOM,
84 GSM_PAGING_BUSY,
85};
86
87enum bts_gprs_mode {
88 BTS_GPRS_NONE = 0,
89 BTS_GPRS_GPRS = 1,
90 BTS_GPRS_EGPRS = 2,
91};
92
93struct gsm_lchan;
Harald Welte6be350c2011-05-25 13:10:08 +020094struct gsm_mncc;
Harald Welte135a6bd2011-09-04 13:53:26 +020095struct osmo_rtp_socket;
Harald Welte6be350c2011-05-25 13:10:08 +020096struct rtp_socket;
97struct bsc_api;
98
99/* Network Management State */
100struct gsm_nm_state {
101 uint8_t operational;
102 uint8_t administrative;
103 uint8_t availability;
104};
105
Harald Welted64c0bc2011-05-30 12:07:53 +0200106struct gsm_abis_mo {
Harald Welte3300c012011-06-05 13:31:33 +0200107 uint8_t obj_class;
Holger Hans Peter Freyther49976f42013-11-05 16:06:17 +0100108 uint8_t procedure_pending;
Harald Welte3300c012011-06-05 13:31:33 +0200109 struct abis_om_obj_inst obj_inst;
Harald Welted64c0bc2011-05-30 12:07:53 +0200110 const char *name;
111 struct gsm_nm_state nm_state;
112 struct tlv_parsed *nm_attr;
Harald Welte32bc1162011-06-06 18:58:48 +0200113 struct gsm_bts *bts;
Harald Welted64c0bc2011-05-30 12:07:53 +0200114};
115
Harald Welte591e1d72016-07-09 22:20:57 +0200116/* Ericsson OM2000 Managed Object */
117struct abis_om2k_mo {
118 uint8_t class;
119 uint8_t bts;
120 uint8_t assoc_so;
121 uint8_t inst;
122} __attribute__ ((packed));
123
124struct om2k_mo {
125 struct abis_om2k_mo addr;
126 struct osmo_fsm_inst *fsm;
127};
128
Harald Welte6be350c2011-05-25 13:10:08 +0200129#define A38_XOR_MIN_KEY_LEN 12
130#define A38_XOR_MAX_KEY_LEN 16
131#define A38_COMP128_KEY_LEN 16
132#define RSL_ENC_ALG_A5(x) (x+1)
Max27c3e762016-04-20 15:57:12 +0200133#define MAX_EARFCN_LIST 32
Harald Welte6be350c2011-05-25 13:10:08 +0200134
135/* is the data link established? who established it? */
136#define LCHAN_SAPI_UNUSED 0
137#define LCHAN_SAPI_MS 1
138#define LCHAN_SAPI_NET 2
Andreas Eversberg7d8fa342013-12-05 13:25:06 +0100139#define LCHAN_SAPI_REL 3
Harald Welte6be350c2011-05-25 13:10:08 +0200140
141/* state of a logical channel */
142enum gsm_lchan_state {
143 LCHAN_S_NONE, /* channel is not active */
Holger Hans Peter Freytherded02682012-01-15 00:02:17 +0100144 LCHAN_S_ACT_REQ, /* channel activation requested */
Harald Welte6be350c2011-05-25 13:10:08 +0200145 LCHAN_S_ACTIVE, /* channel is active and operational */
146 LCHAN_S_REL_REQ, /* channel release has been requested */
147 LCHAN_S_REL_ERR, /* channel is in an error state */
Holger Hans Peter Freyther638da512012-12-06 19:25:06 +0100148 LCHAN_S_BROKEN, /* channel is somehow unusable */
Harald Welte6be350c2011-05-25 13:10:08 +0200149 LCHAN_S_INACTIVE, /* channel is set inactive */
150};
151
Harald Weltec7921c92011-06-29 10:38:34 +0200152/* BTS ONLY */
153#define MAX_NUM_UL_MEAS 104
154#define LC_UL_M_F_L1_VALID (1 << 0)
155#define LC_UL_M_F_RES_VALID (1 << 1)
156
157struct bts_ul_meas {
158 /* BER in units of 0.01%: 10.000 == 100% ber, 0 == 0% ber */
159 uint16_t ber10k;
160 /* timing advance offset (in quarter bits) */
161 int16_t ta_offs_qbits;
162 /* C/I ratio in dB */
163 float c_i;
164 /* flags */
165 uint8_t is_sub:1;
166 /* RSSI in dBm * -1 */
167 uint8_t inv_rssi;
168};
Harald Weltef3b59322011-09-06 22:14:43 +0200169
Andreas Eversberga83d5112013-12-07 18:32:28 +0100170struct bts_codec_conf {
171 uint8_t hr;
172 uint8_t efr;
173 uint8_t amr;
174};
175
Harald Weltef3b59322011-09-06 22:14:43 +0200176struct amr_mode {
177 uint8_t mode;
Holger Hans Peter Freyther615ed462015-09-24 11:30:58 +0200178 uint8_t threshold;
179 uint8_t hysteresis;
Harald Weltef3b59322011-09-06 22:14:43 +0200180};
Holger Hans Peter Freyther615ed462015-09-24 11:30:58 +0200181
Harald Weltef3b59322011-09-06 22:14:43 +0200182struct amr_multirate_conf {
183 uint8_t gsm48_ie[2];
Holger Hans Peter Freyther615ed462015-09-24 11:30:58 +0200184 struct amr_mode ms_mode[4];
185 struct amr_mode bts_mode[4];
Harald Weltef3b59322011-09-06 22:14:43 +0200186 uint8_t num_modes;
187};
Harald Weltec7921c92011-06-29 10:38:34 +0200188/* /BTS ONLY */
189
Harald Weltee4227982012-08-24 15:33:56 +0200190enum lchan_csd_mode {
191 LCHAN_CSD_M_NT,
192 LCHAN_CSD_M_T_1200_75,
193 LCHAN_CSD_M_T_600,
194 LCHAN_CSD_M_T_1200,
195 LCHAN_CSD_M_T_2400,
196 LCHAN_CSD_M_T_9600,
197 LCHAN_CSD_M_T_14400,
198 LCHAN_CSD_M_T_29000,
199 LCHAN_CSD_M_T_32000,
200};
201
Daniel Willmann324c8052012-12-29 12:32:30 +0100202/* State of the SAPIs in the lchan */
203enum lchan_sapi_state {
204 LCHAN_SAPI_S_NONE,
205 LCHAN_SAPI_S_REQ,
206 LCHAN_SAPI_S_ASSIGNED,
207 LCHAN_SAPI_S_REL,
208 LCHAN_SAPI_S_ERROR,
209};
210
Harald Welte6be350c2011-05-25 13:10:08 +0200211struct gsm_lchan {
212 /* The TS that we're part of */
213 struct gsm_bts_trx_ts *ts;
214 /* The logical subslot number in the TS */
215 uint8_t nr;
216 /* The logical channel type */
217 enum gsm_chan_t type;
218 /* RSL channel mode */
219 enum rsl_cmod_spd rsl_cmode;
220 /* If TCH, traffic channel mode */
221 enum gsm48_chan_mode tch_mode;
Harald Weltee4227982012-08-24 15:33:56 +0200222 enum lchan_csd_mode csd_mode;
Harald Welte6be350c2011-05-25 13:10:08 +0200223 /* State */
224 enum gsm_lchan_state state;
Holger Hans Peter Freyther454140e2014-12-28 12:08:28 +0100225 const char *broken_reason;
Harald Welte6be350c2011-05-25 13:10:08 +0200226 /* Power levels for MS and BTS */
227 uint8_t bs_power;
228 uint8_t ms_power;
229 /* Encryption information */
Neels Hofmeyrac1f1432016-05-10 13:30:17 +0200230 struct gsm_encr encr;
Harald Welte6be350c2011-05-25 13:10:08 +0200231
232 /* AMR bits */
Andreas Eversberg73266522014-01-19 11:47:44 +0100233 uint8_t mr_ms_lv[7];
234 uint8_t mr_bts_lv[7];
Harald Welte6be350c2011-05-25 13:10:08 +0200235
236 /* Established data link layer services */
237 uint8_t sapis[8];
Holger Hans Peter Freytherb9b828b2013-01-01 19:20:28 +0100238 int sacch_deact;
Holger Hans Peter Freytherdfcfe652011-12-27 20:49:53 +0100239
Harald Welte6be350c2011-05-25 13:10:08 +0200240 struct {
241 uint32_t bound_ip;
242 uint32_t connect_ip;
243 uint16_t bound_port;
244 uint16_t connect_port;
245 uint16_t conn_id;
246 uint8_t rtp_payload;
247 uint8_t rtp_payload2;
248 uint8_t speech_mode;
249 struct rtp_socket *rtp_socket;
Philipp Maier39f62bb2017-04-09 12:32:51 +0200250
251 /* info we need to postpone the AoIP
252 * assignment completed message */
253 struct {
254 uint8_t rr_cause;
255 uint8_t chosen_channel;
256 uint8_t encr_alg_id;
257 uint8_t speech_mode;
258 bool valid;
259 } ass_compl;
Harald Welte6be350c2011-05-25 13:10:08 +0200260 } abis_ip;
261
Harald Welte2c1ae472011-06-26 14:13:37 +0200262 uint8_t rqd_ta;
263
Harald Weltec696cc22015-12-05 16:19:21 +0100264 char *name;
265
Harald Welte6be350c2011-05-25 13:10:08 +0200266 struct osmo_timer_list T3101;
Holger Hans Peter Freytherb3489392011-12-28 16:21:05 +0100267 struct osmo_timer_list T3109;
Harald Welte6be350c2011-05-25 13:10:08 +0200268 struct osmo_timer_list T3111;
269 struct osmo_timer_list error_timer;
Harald Weltee8bd9e82011-08-10 23:26:33 +0200270 struct osmo_timer_list act_timer;
Andreas Eversberg7d8fa342013-12-05 13:25:06 +0100271 struct osmo_timer_list rel_work;
Holger Hans Peter Freyther638da512012-12-06 19:25:06 +0100272 uint8_t error_cause;
Harald Welte6be350c2011-05-25 13:10:08 +0200273
274 /* table of neighbor cell measurements */
275 struct neigh_meas_proc neigh_meas[MAX_NEIGH_MEAS];
276
277 /* cache of last measurement reports on this lchan */
278 struct gsm_meas_rep meas_rep[6];
279 int meas_rep_idx;
280
281 /* GSM Random Access data */
282 struct gsm48_req_ref *rqd_ref;
Harald Welte6be350c2011-05-25 13:10:08 +0200283
284 struct gsm_subscriber_connection *conn;
Andreas Eversberg9df268e2013-10-11 13:32:30 +0200285
286 struct {
287 /* channel activation type and handover ref */
288 uint8_t act_type;
289 uint8_t ho_ref;
Neels Hofmeyrb91e6002016-07-23 19:45:15 +0200290 struct gsm48_req_ref *rqd_ref;
291 uint8_t rqd_ta;
Neels Hofmeyr6e999b72016-07-23 21:00:51 +0200292 } dyn;
Harald Welte6be350c2011-05-25 13:10:08 +0200293};
294
Neels Hofmeyr2ebacce2016-06-14 14:08:35 +0200295enum {
296 TS_F_PDCH_ACTIVE = 0x1000,
297 TS_F_PDCH_ACT_PENDING = 0x2000,
298 TS_F_PDCH_DEACT_PENDING = 0x4000,
299 TS_F_PDCH_PENDING_MASK = 0x6000 /*<
300 TS_F_PDCH_ACT_PENDING | TS_F_PDCH_DEACT_PENDING */
301} gsm_bts_trx_ts_flags;
302
Harald Welte6be350c2011-05-25 13:10:08 +0200303/* One Timeslot in a TRX */
304struct gsm_bts_trx_ts {
305 struct gsm_bts_trx *trx;
306 /* number of this timeslot at the TRX */
307 uint8_t nr;
308
309 enum gsm_phys_chan_config pchan;
310
Neels Hofmeyrc1658762016-07-23 16:14:06 +0200311 struct {
312 enum gsm_phys_chan_config pchan_is;
313 enum gsm_phys_chan_config pchan_want;
314 struct msgb *pending_chan_activ;
315 } dyn;
316
Harald Welte6be350c2011-05-25 13:10:08 +0200317 unsigned int flags;
Harald Welted64c0bc2011-05-30 12:07:53 +0200318 struct gsm_abis_mo mo;
Harald Welte6be350c2011-05-25 13:10:08 +0200319 struct tlv_parsed nm_attr;
320 uint8_t nm_chan_comb;
Harald Welte135a6482011-05-30 12:09:13 +0200321 int tsc; /* -1 == use BTS TSC */
Harald Welte6be350c2011-05-25 13:10:08 +0200322
323 struct {
324 /* Parameters below are configured by VTY */
325 int enabled;
326 uint8_t maio;
327 uint8_t hsn;
328 struct bitvec arfcns;
329 uint8_t arfcns_data[1024/8];
330 /* This is the pre-computed MA for channel assignments */
331 struct bitvec ma;
332 uint8_t ma_len; /* part of ma_data that is used */
333 uint8_t ma_data[8]; /* 10.5.2.21: max 8 bytes value part */
334 } hopping;
335
336 /* To which E1 subslot are we connected */
337 struct gsm_e1_subslot e1_link;
338
Harald Welte591e1d72016-07-09 22:20:57 +0200339 union {
340 struct {
341 struct om2k_mo om2k_mo;
342 } rbs2000;
343 };
344
Harald Welte6be350c2011-05-25 13:10:08 +0200345 struct gsm_lchan lchan[TS_MAX_LCHAN];
346};
347
348/* One TRX in a BTS */
349struct gsm_bts_trx {
350 /* list header in bts->trx_list */
351 struct llist_head list;
352
353 struct gsm_bts *bts;
354 /* number of this TRX in the BTS */
355 uint8_t nr;
356 /* human readable name / description */
357 char *description;
358 /* how do we talk RSL with this TRX? */
359 struct gsm_e1_subslot rsl_e1_link;
360 uint8_t rsl_tei;
361 struct e1inp_sign_link *rsl_link;
Holger Hans Peter Freythercaa98d52013-10-06 15:52:14 +0200362
Harald Welte6be350c2011-05-25 13:10:08 +0200363 /* Some BTS (specifically Ericsson RBS) have a per-TRX OML Link */
364 struct e1inp_sign_link *oml_link;
365
Harald Welted64c0bc2011-05-30 12:07:53 +0200366 struct gsm_abis_mo mo;
Harald Welte6be350c2011-05-25 13:10:08 +0200367 struct tlv_parsed nm_attr;
368 struct {
Harald Welted64c0bc2011-05-30 12:07:53 +0200369 struct gsm_abis_mo mo;
Harald Welte6be350c2011-05-25 13:10:08 +0200370 } bb_transc;
371
372 uint16_t arfcn;
373 int nominal_power; /* in dBm */
374 unsigned int max_power_red; /* in actual dB */
Holger Hans Peter Freyther9b625802014-07-30 18:20:51 +0200375
Harald Welte6be350c2011-05-25 13:10:08 +0200376 union {
377 struct {
378 struct {
Harald Welted64c0bc2011-05-30 12:07:53 +0200379 struct gsm_abis_mo mo;
Harald Welte6be350c2011-05-25 13:10:08 +0200380 } bbsig;
381 struct {
Harald Welted64c0bc2011-05-30 12:07:53 +0200382 struct gsm_abis_mo mo;
Harald Welte6be350c2011-05-25 13:10:08 +0200383 } pa;
384 } bs11;
385 struct {
386 unsigned int test_state;
387 uint8_t test_nr;
388 struct rxlev_stats rxlev_stat;
389 } ipaccess;
Harald Welte591e1d72016-07-09 22:20:57 +0200390 struct {
391 struct {
392 struct om2k_mo om2k_mo;
393 } trxc;
394 struct {
395 struct om2k_mo om2k_mo;
396 } rx;
397 struct {
398 struct om2k_mo om2k_mo;
399 } tx;
400 } rbs2000;
Harald Welte6be350c2011-05-25 13:10:08 +0200401 };
402 struct gsm_bts_trx_ts ts[TRX_NR_TS];
403};
404
Max70fdd242017-06-15 15:10:53 +0200405#define GSM_BTS_SI2Q(bts, i) (struct gsm48_system_information_type_2quater *)((bts)->si_buf[SYSINFO_TYPE_2quater][i])
Max9b97b002017-06-02 10:58:26 +0200406#define GSM_BTS_HAS_SI(bts, i) ((bts)->si_valid & (1 << i))
Max70fdd242017-06-15 15:10:53 +0200407#define GSM_BTS_SI(bts, i) (void *)((bts)->si_buf[i][0])
408#define GSM_LCHAN_SI(lchan, i) (void *)((lchan)->si.buf[i][0])
Harald Welte6be350c2011-05-25 13:10:08 +0200409
410enum gsm_bts_type {
411 GSM_BTS_TYPE_UNKNOWN,
412 GSM_BTS_TYPE_BS11,
413 GSM_BTS_TYPE_NANOBTS,
414 GSM_BTS_TYPE_RBS2000,
Dieter Spaar16646022011-07-28 00:01:50 +0200415 GSM_BTS_TYPE_NOKIA_SITE,
Maxf9685c12017-03-23 12:01:07 +0100416 GSM_BTS_TYPE_OSMOBTS,
Harald Weltee555c2b2012-08-17 13:02:12 +0200417 _NUM_GSM_BTS_TYPE
Harald Welte6be350c2011-05-25 13:10:08 +0200418};
419
Maxf9685c12017-03-23 12:01:07 +0100420enum gsm_bts_type_variant {
421 BTS_UNKNOWN,
422 BTS_OSMO_LITECELL15,
423 BTS_OSMO_OCTPHY,
424 BTS_OSMO_SYSMO,
425 BTS_OSMO_TRX,
426 _NUM_BTS_VARIANT
427};
428
Max7507aef2017-04-10 13:59:14 +0200429/* Used by OML layer for BTS Attribute reporting */
430enum bts_attribute {
431 BTS_TYPE_VARIANT,
432 BTS_SUB_MODEL,
Max33e13572017-05-29 11:48:29 +0200433 TRX_PHY_VERSION,
Max7507aef2017-04-10 13:59:14 +0200434};
435
Harald Welte6be350c2011-05-25 13:10:08 +0200436struct vty;
437
438struct gsm_bts_model {
439 struct llist_head list;
440
441 enum gsm_bts_type type;
Maxf9685c12017-03-23 12:01:07 +0100442 enum gsm_bts_type_variant variant;
Harald Welte6be350c2011-05-25 13:10:08 +0200443 const char *name;
444
445 bool started;
446 int (*start)(struct gsm_network *net);
447 int (*oml_rcvmsg)(struct msgb *msg);
Max3d049d22017-10-09 17:12:53 +0200448 char * (*oml_status)(const struct gsm_bts *bts);
Harald Welte6be350c2011-05-25 13:10:08 +0200449
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200450 void (*e1line_bind_ops)(struct e1inp_line *line);
451
Harald Welte6be350c2011-05-25 13:10:08 +0200452 void (*config_write_bts)(struct vty *vty, struct gsm_bts *bts);
453 void (*config_write_trx)(struct vty *vty, struct gsm_bts_trx *trx);
454 void (*config_write_ts)(struct vty *vty, struct gsm_bts_trx_ts *ts);
455
456 struct tlv_definition nm_att_tlvdef;
457
Maxaef68382017-05-31 12:15:54 +0200458 /* features of a given BTS model set via gsm_bts_model_register() locally */
Harald Welte6be350c2011-05-25 13:10:08 +0200459 struct bitvec features;
Max7b62d542017-05-09 15:19:15 +0200460 uint8_t _features_data[MAX_BTS_FEATURES/8];
Harald Welte6be350c2011-05-25 13:10:08 +0200461};
462
Maxaef68382017-05-31 12:15:54 +0200463/* N. B: always add new features to the end of the list (right before _NUM_BTS_FEAT) to avoid breaking compatibility
464 with BTS compiled against earlier version of this header */
Harald Welte6be350c2011-05-25 13:10:08 +0200465enum gsm_bts_features {
466 BTS_FEAT_HSCSD,
467 BTS_FEAT_GPRS,
468 BTS_FEAT_EGPRS,
469 BTS_FEAT_ECSD,
470 BTS_FEAT_HOPPING,
Harald Welte903aaea2014-01-19 17:10:50 +0100471 BTS_FEAT_MULTI_TSC,
Max1ebf23b2017-05-10 12:21:17 +0200472 BTS_FEAT_OML_ALERTS,
473 BTS_FEAT_AGCH_PCH_PROP,
474 BTS_FEAT_CBCH,
Maxaef68382017-05-31 12:15:54 +0200475 _NUM_BTS_FEAT
Harald Welte6be350c2011-05-25 13:10:08 +0200476};
477
Maxaef68382017-05-31 12:15:54 +0200478extern const struct value_string gsm_bts_features_descs[];
479
Harald Welte6be350c2011-05-25 13:10:08 +0200480/*
481 * This keeps track of the paging status of one BTS. It
482 * includes a number of pending requests, a back pointer
483 * to the gsm_bts, a timer and some more state.
484 */
485struct gsm_bts_paging_state {
486 /* pending requests */
487 struct llist_head pending_requests;
488 struct gsm_bts *bts;
489
490 struct osmo_timer_list work_timer;
491 struct osmo_timer_list credit_timer;
492
493 /* free chans needed */
494 int free_chans_need;
495
496 /* load */
497 uint16_t available_slots;
498};
499
500struct gsm_envabtse {
Harald Welted64c0bc2011-05-30 12:07:53 +0200501 struct gsm_abis_mo mo;
Harald Welte6be350c2011-05-25 13:10:08 +0200502};
503
504struct gsm_bts_gprs_nsvc {
505 struct gsm_bts *bts;
506 /* data read via VTY config file, to configure the BTS
507 * via OML from BSC */
508 int id;
509 uint16_t nsvci;
510 uint16_t local_port; /* on the BTS */
511 uint16_t remote_port; /* on the SGSN */
512 uint32_t remote_ip; /* on the SGSN */
513
Harald Welted64c0bc2011-05-30 12:07:53 +0200514 struct gsm_abis_mo mo;
Harald Welte6be350c2011-05-25 13:10:08 +0200515};
516
Harald Welte019f9132012-06-28 08:43:14 +0200517enum gprs_rlc_par {
518 RLC_T3142,
519 RLC_T3169,
520 RLC_T3191,
521 RLC_T3193,
522 RLC_T3195,
523 RLC_N3101,
524 RLC_N3103,
525 RLC_N3105,
526 CV_COUNTDOWN,
527 T_DL_TBF_EXT, /* ms */
528 T_UL_TBF_EXT, /* ms */
529 _NUM_RLC_PAR
530};
531
532enum gprs_cs {
533 GPRS_CS1,
534 GPRS_CS2,
535 GPRS_CS3,
536 GPRS_CS4,
537 GPRS_MCS1,
538 GPRS_MCS2,
539 GPRS_MCS3,
540 GPRS_MCS4,
541 GPRS_MCS5,
542 GPRS_MCS6,
543 GPRS_MCS7,
544 GPRS_MCS8,
545 GPRS_MCS9,
546 _NUM_GRPS_CS
547};
548
549struct gprs_rlc_cfg {
550 uint16_t parameter[_NUM_RLC_PAR];
551 struct {
552 uint16_t repeat_time; /* ms */
553 uint8_t repeat_count;
554 } paging;
555 uint32_t cs_mask; /* bitmask of gprs_cs */
556 uint8_t initial_cs;
557 uint8_t initial_mcs;
558};
559
560
Harald Welte6be350c2011-05-25 13:10:08 +0200561enum neigh_list_manual_mode {
562 NL_MODE_AUTOMATIC = 0,
563 NL_MODE_MANUAL = 1,
564 NL_MODE_MANUAL_SI5SEP = 2, /* SI2 and SI5 have separate neighbor lists */
565};
566
Daniel Willmann47b5b3e2011-08-05 13:51:27 +0200567enum bts_loc_fix {
568 BTS_LOC_FIX_INVALID = 0,
569 BTS_LOC_FIX_2D = 1,
570 BTS_LOC_FIX_3D = 2,
571};
572
Daniel Willmann7d109832012-05-14 18:43:23 +0200573extern const struct value_string bts_loc_fix_names[];
574
Daniel Willmann47b5b3e2011-08-05 13:51:27 +0200575struct bts_location {
576 struct llist_head list;
577 time_t tstamp;
578 enum bts_loc_fix valid;
579 double lat;
580 double lon;
581 double height;
582};
583
Harald Welte6be350c2011-05-25 13:10:08 +0200584/* One BTS */
585struct gsm_bts {
586 /* list header in net->bts_list */
587 struct llist_head list;
588
Daniel Willmann47b5b3e2011-08-05 13:51:27 +0200589 /* Geographical location of the BTS */
590 struct llist_head loc_list;
591
Harald Welte6be350c2011-05-25 13:10:08 +0200592 /* number of ths BTS in network */
593 uint8_t nr;
594 /* human readable name / description */
595 char *description;
596 /* Cell Identity */
597 uint16_t cell_identity;
598 /* location area code of this BTS */
599 uint16_t location_area_code;
Harald Weltea2bbc5e2015-11-20 10:43:31 +0100600 /* Base Station Identification Code (BSIC), lower 3 bits is BCC,
601 * which is used as TSC for the CCCH */
Harald Welte6be350c2011-05-25 13:10:08 +0200602 uint8_t bsic;
603 /* type of BTS */
604 enum gsm_bts_type type;
Max6d8e5192017-04-11 18:23:47 +0200605 enum gsm_bts_type_variant variant;
Harald Welte6be350c2011-05-25 13:10:08 +0200606 struct gsm_bts_model *model;
607 enum gsm_band band;
Maxf9685c12017-03-23 12:01:07 +0100608 char version[MAX_VERSION_LENGTH];
Max1ebf23b2017-05-10 12:21:17 +0200609 char sub_model[MAX_VERSION_LENGTH];
Maxf9685c12017-03-23 12:01:07 +0100610
Maxaef68382017-05-31 12:15:54 +0200611 /* features of a given BTS set/reported via OML */
612 struct bitvec features;
613 uint8_t _features_data[MAX_BTS_FEATURES/8];
614
Maxf9685c12017-03-23 12:01:07 +0100615 /* Connected PCU version (if any) */
616 char pcu_version[MAX_VERSION_LENGTH];
617
Harald Welte6be350c2011-05-25 13:10:08 +0200618 /* maximum Tx power that the MS is permitted to use in this cell */
619 int ms_max_power;
620
621 /* how do we talk OML with this TRX? */
622 struct gsm_e1_subslot oml_e1_link;
623 uint8_t oml_tei;
624 struct e1inp_sign_link *oml_link;
Maxd1f70ed2017-09-21 16:15:32 +0200625 /* when OML link was established */
626 time_t uptime;
Harald Welte6be350c2011-05-25 13:10:08 +0200627
628 /* Abis network management O&M handle */
629 struct abis_nm_h *nmh;
Harald Welted64c0bc2011-05-30 12:07:53 +0200630
631 struct gsm_abis_mo mo;
Harald Welte6be350c2011-05-25 13:10:08 +0200632
633 /* number of this BTS on given E1 link */
634 uint8_t bts_nr;
635
Maxc08ee712016-05-11 12:45:13 +0200636 /* DTX features of this BTS */
637 enum gsm48_dtx_mode dtxu;
638 bool dtxd;
639
Harald Welte6be350c2011-05-25 13:10:08 +0200640 /* paging state and control */
641 struct gsm_bts_paging_state paging;
642
643 /* CCCH is on C0 */
644 struct gsm_bts_trx *c0;
645
646 struct {
Harald Welted64c0bc2011-05-30 12:07:53 +0200647 struct gsm_abis_mo mo;
Harald Welte6be350c2011-05-25 13:10:08 +0200648 } site_mgr;
649
650 /* bitmask of all SI that are present/valid in si_buf */
651 uint32_t si_valid;
Max6f0e50c2017-04-12 15:30:54 +0200652 /* 3GPP TS 44.018 Table 10.5.2.33b.1 INDEX and COUNT for SI2quater */
Maxf39d03a2017-05-12 17:00:30 +0200653 uint8_t si2q_index; /* distinguish individual SI2quater messages */
654 uint8_t si2q_count; /* si2q_index for the last (highest indexed) individual SI2quater message */
Harald Welte6be350c2011-05-25 13:10:08 +0200655 /* buffers where we put the pre-computed SI */
Max70fdd242017-06-15 15:10:53 +0200656 sysinfo_buf_t si_buf[_MAX_SYSINFO_TYPE][SI2Q_MAX_NUM];
Maxf39d03a2017-05-12 17:00:30 +0200657 /* offsets used while generating SI2quater */
658 size_t e_offset;
659 size_t u_offset;
Harald Welte6be350c2011-05-25 13:10:08 +0200660
661 /* ip.accesss Unit ID's have Site/BTS/TRX layout */
662 union {
663 struct {
664 uint16_t site_id;
665 uint16_t bts_id;
666 uint32_t flags;
Harald Welte8b291802013-03-12 13:57:05 +0100667 uint32_t rsl_ip;
Harald Welte6be350c2011-05-25 13:10:08 +0200668 } ip_access;
669 struct {
670 struct {
Harald Welted64c0bc2011-05-30 12:07:53 +0200671 struct gsm_abis_mo mo;
Harald Welte6be350c2011-05-25 13:10:08 +0200672 } cclk;
673 struct {
Harald Welted64c0bc2011-05-30 12:07:53 +0200674 struct gsm_abis_mo mo;
Harald Welte6be350c2011-05-25 13:10:08 +0200675 } rack;
676 struct gsm_envabtse envabtse[4];
677 } bs11;
678 struct {
679 struct {
Harald Welte591e1d72016-07-09 22:20:57 +0200680 struct om2k_mo om2k_mo;
681 struct gsm_abis_mo mo;
682 struct llist_head conn_groups;
683 } cf;
684 struct {
685 struct om2k_mo om2k_mo;
Harald Welted64c0bc2011-05-30 12:07:53 +0200686 struct gsm_abis_mo mo;
Harald Welte6be350c2011-05-25 13:10:08 +0200687 struct llist_head conn_groups;
688 } is;
689 struct {
Harald Welte591e1d72016-07-09 22:20:57 +0200690 struct om2k_mo om2k_mo;
Harald Welted64c0bc2011-05-30 12:07:53 +0200691 struct gsm_abis_mo mo;
Harald Welte6be350c2011-05-25 13:10:08 +0200692 struct llist_head conn_groups;
693 } con;
694 struct {
Harald Welte591e1d72016-07-09 22:20:57 +0200695 struct om2k_mo om2k_mo;
Harald Welted64c0bc2011-05-30 12:07:53 +0200696 struct gsm_abis_mo mo;
Harald Welte6be350c2011-05-25 13:10:08 +0200697 } dp;
698 struct {
Harald Welte591e1d72016-07-09 22:20:57 +0200699 struct om2k_mo om2k_mo;
Harald Welted64c0bc2011-05-30 12:07:53 +0200700 struct gsm_abis_mo mo;
Harald Welte6be350c2011-05-25 13:10:08 +0200701 } tf;
Harald Weltece492582016-11-15 22:59:24 +0100702 uint32_t use_superchannel:1;
Harald Welte6be350c2011-05-25 13:10:08 +0200703 } rbs2000;
704 struct {
Harald Weltec8755af2011-07-28 00:22:17 +0200705 uint8_t bts_type;
Holger Hans Peter Freyther3e603482012-03-02 14:14:33 +0100706 unsigned int configured:1,
707 skip_reset:1,
Andreas Eversberg7d8fa342013-12-05 13:25:06 +0100708 no_loc_rel_cnf:1,
Sipos Csaba56e17662015-02-07 13:27:36 +0100709 bts_reset_timer_cnf,
Holger Hans Peter Freyther3e603482012-03-02 14:14:33 +0100710 did_reset:1,
711 wait_reset:1;
Harald Weltec8755af2011-07-28 00:22:17 +0200712 struct osmo_timer_list reset_timer;
713 } nokia;
Harald Welte6be350c2011-05-25 13:10:08 +0200714 };
715
716 /* Not entirely sure how ip.access specific this is */
717 struct {
bhargava350533c2016-07-21 11:14:34 +0530718 uint8_t supports_egprs_11bit_rach;
Harald Welte6be350c2011-05-25 13:10:08 +0200719 enum bts_gprs_mode mode;
720 struct {
Harald Welted64c0bc2011-05-30 12:07:53 +0200721 struct gsm_abis_mo mo;
Harald Welte6be350c2011-05-25 13:10:08 +0200722 uint16_t nsei;
723 uint8_t timer[7];
724 } nse;
725 struct {
Harald Welted64c0bc2011-05-30 12:07:53 +0200726 struct gsm_abis_mo mo;
Harald Welte6be350c2011-05-25 13:10:08 +0200727 uint16_t bvci;
728 uint8_t timer[11];
Harald Welte019f9132012-06-28 08:43:14 +0200729 struct gprs_rlc_cfg rlc_cfg;
Harald Welte6be350c2011-05-25 13:10:08 +0200730 } cell;
731 struct gsm_bts_gprs_nsvc nsvc[2];
732 uint8_t rac;
Andreas Eversberg0c8f9ca2013-03-16 16:31:26 +0100733 uint8_t net_ctrl_ord;
Max292ec582016-07-28 11:55:37 +0200734 bool ctrl_ack_type_use_block;
Harald Welte6be350c2011-05-25 13:10:08 +0200735 } gprs;
736
737 /* RACH NM values */
738 int rach_b_thresh;
739 int rach_ldavg_slots;
740
741 /* transceivers */
742 int num_trx;
743 struct llist_head trx_list;
744
Holger Hans Peter Freytherb92a5382014-11-21 10:00:39 +0100745 /* SI related items */
Jacob Erlbeck65d114f2014-01-16 11:02:14 +0100746 int force_combined_si;
Holger Hans Peter Freytherb92a5382014-11-21 10:00:39 +0100747 int bcch_change_mark;
Jacob Erlbeck65d114f2014-01-16 11:02:14 +0100748
Harald Welte6be350c2011-05-25 13:10:08 +0200749 /* Abis NM queue */
750 struct llist_head abis_queue;
751 int abis_nm_pend;
752
753 struct gsm_network *network;
754
755 /* should the channel allocator allocate channels from high TRX to TRX0,
756 * rather than starting from TRX0 and go upwards? */
757 int chan_alloc_reverse;
758
759 enum neigh_list_manual_mode neigh_list_manual_mode;
760 /* parameters from which we build SYSTEM INFORMATION */
761 struct {
762 struct gsm48_rach_control rach_control;
763 uint8_t ncc_permitted;
764 struct gsm48_cell_sel_par cell_sel_par;
765 struct gsm48_si_selection_params cell_ro_sel_par; /* rest octet */
766 struct gsm48_cell_options cell_options;
767 struct gsm48_control_channel_descr chan_desc;
768 struct bitvec neigh_list;
769 struct bitvec cell_alloc;
770 struct bitvec si5_neigh_list;
Max59a1bf32016-04-15 16:04:46 +0200771 struct osmo_earfcn_si2q si2quater_neigh_list;
Max26679e02016-04-20 15:57:13 +0200772 size_t uarfcn_length; /* index for uarfcn and scramble lists */
Harald Welte6be350c2011-05-25 13:10:08 +0200773 struct {
774 /* bitmask large enough for all possible ARFCN's */
775 uint8_t neigh_list[1024/8];
776 uint8_t cell_alloc[1024/8];
777 /* If the user wants a different neighbor list in SI5 than in SI2 */
778 uint8_t si5_neigh_list[1024/8];
Max59a1bf32016-04-15 16:04:46 +0200779 uint8_t meas_bw_list[MAX_EARFCN_LIST];
780 uint16_t earfcn_list[MAX_EARFCN_LIST];
Max26679e02016-04-20 15:57:13 +0200781 uint16_t uarfcn_list[MAX_EARFCN_LIST];
782 uint16_t scramble_list[MAX_EARFCN_LIST];
Harald Welte6be350c2011-05-25 13:10:08 +0200783 } data;
784 } si_common;
Harald Welte42def722017-01-13 00:10:32 +0100785 bool early_classmark_allowed;
Pau Espin Pedrole8dda5f2017-11-23 19:06:09 +0100786 bool early_classmark_allowed_3g;
Harald Welte2f8b9d22017-06-18 11:12:13 +0300787 /* for testing only: Have an infinitely long radio link timeout */
788 bool infinite_radio_link_timeout;
Harald Welte6be350c2011-05-25 13:10:08 +0200789
790 /* do we use static (user-defined) system information messages? (bitmask) */
791 uint32_t si_mode_static;
Holger Hans Peter Freythere30d40d2012-07-20 10:27:31 +0200792
793 /* exclude the BTS from the global RF Lock handling */
794 int excl_from_rf_lock;
Andreas Eversberga83d5112013-12-07 18:32:28 +0100795
796 /* supported codecs beside FR */
797 struct bts_codec_conf codec;
Holger Hans Peter Freytherc22930e2014-12-17 14:46:17 +0100798
799 /* BTS dependencies bit field */
800 uint32_t depends_on[256/(8*4)];
Andreas Eversberg73266522014-01-19 11:47:44 +0100801
802 /* full and half rate multirate config */
803 struct amr_multirate_conf mr_full;
804 struct amr_multirate_conf mr_half;
805
Philipp Maierb4999b62016-10-26 15:19:41 +0200806 /* PCU socket state */
Harald Welte8254cf72017-05-29 13:42:19 +0200807 char *pcu_sock_path;
Philipp Maierb4999b62016-10-26 15:19:41 +0200808 struct pcu_sock_state *pcu_state;
Harald Welted82101e2017-12-09 23:07:38 +0100809
810 struct rate_ctr_group *bts_ctrs;
Harald Welte6be350c2011-05-25 13:10:08 +0200811};
812
813
Neels Hofmeyr9c6d0112017-11-28 00:13:08 +0100814struct gsm_bts *gsm_bts_alloc(struct gsm_network *net, uint8_t bts_num);
Harald Welte1449c9f2014-08-24 09:50:10 +0200815struct gsm_bts *gsm_bts_num(struct gsm_network *net, int num);
Harald Welte6be350c2011-05-25 13:10:08 +0200816
Harald Welte1449c9f2014-08-24 09:50:10 +0200817struct gsm_bts_trx *gsm_bts_trx_alloc(struct gsm_bts *bts);
Harald Welte4f8ad532011-09-19 14:21:51 +0200818struct gsm_bts_trx *gsm_bts_trx_num(const struct gsm_bts *bts, int num);
Harald Welte6be350c2011-05-25 13:10:08 +0200819
Max7507aef2017-04-10 13:59:14 +0200820enum gsm_bts_type str2btstype(const char *arg);
821const char *btstype2str(enum gsm_bts_type type);
822
823enum bts_attribute str2btsattr(const char *s);
824const char *btsatttr2str(enum bts_attribute v);
825
826enum gsm_bts_type_variant str2btsvariant(const char *arg);
827const char *btsvariant2str(enum gsm_bts_type_variant v);
Harald Welte4ab9d7c2012-08-17 12:42:06 +0200828
Philipp Maier6f483d32017-02-24 15:18:08 +0100829extern const struct value_string gsm_chreq_descs[];
Neels Hofmeyr17a6bab2016-07-23 16:14:06 +0200830const struct value_string gsm_pchant_names[13];
831const struct value_string gsm_pchant_descs[13];
Harald Welte6be350c2011-05-25 13:10:08 +0200832const char *gsm_pchan_name(enum gsm_phys_chan_config c);
833enum gsm_phys_chan_config gsm_pchan_parse(const char *name);
834const char *gsm_lchant_name(enum gsm_chan_t c);
835const char *gsm_chreq_name(enum gsm_chreq_reason_t c);
Harald Welte4f8ad532011-09-19 14:21:51 +0200836char *gsm_trx_name(const struct gsm_bts_trx *trx);
837char *gsm_ts_name(const struct gsm_bts_trx_ts *ts);
Neels Hofmeyr34b8b5b2016-07-16 23:59:32 +0200838char *gsm_ts_and_pchan_name(const struct gsm_bts_trx_ts *ts);
Harald Weltec696cc22015-12-05 16:19:21 +0100839char *gsm_lchan_name_compute(const struct gsm_lchan *lchan);
Harald Welte6be350c2011-05-25 13:10:08 +0200840const char *gsm_lchans_name(enum gsm_lchan_state s);
841
Harald Weltec696cc22015-12-05 16:19:21 +0100842static inline char *gsm_lchan_name(const struct gsm_lchan *lchan)
843{
844 return lchan->name;
845}
Harald Welte6be350c2011-05-25 13:10:08 +0200846
Maxaef68382017-05-31 12:15:54 +0200847static inline int gsm_bts_set_feature(struct gsm_bts *bts, enum gsm_bts_features feat)
848{
849 OSMO_ASSERT(_NUM_BTS_FEAT < MAX_BTS_FEATURES);
850 return bitvec_set_bit_pos(&bts->features, feat, 1);
851}
852
853static inline bool gsm_bts_has_feature(const struct gsm_bts *bts, enum gsm_bts_features feat)
854{
855 OSMO_ASSERT(_NUM_BTS_FEAT < MAX_BTS_FEATURES);
856 return bitvec_get_bit_pos(&bts->features, feat);
857}
858
Harald Welteb7849982011-06-29 16:49:03 +0200859void gsm_abis_mo_reset(struct gsm_abis_mo *mo);
860
Harald Welte978714d2011-06-06 18:31:20 +0200861struct gsm_nm_state *
862gsm_objclass2nmstate(struct gsm_bts *bts, uint8_t obj_class,
Harald Welte4f8ad532011-09-19 14:21:51 +0200863 const struct abis_om_obj_inst *obj_inst);
Harald Welte978714d2011-06-06 18:31:20 +0200864void *
865gsm_objclass2obj(struct gsm_bts *bts, uint8_t obj_class,
Harald Welte4f8ad532011-09-19 14:21:51 +0200866 const struct abis_om_obj_inst *obj_inst);
Harald Welte978714d2011-06-06 18:31:20 +0200867
Harald Welteb7849982011-06-29 16:49:03 +0200868/* reset the state of all MO in the BTS */
869void gsm_bts_mo_reset(struct gsm_bts *bts);
870
Neels Hofmeyrd3841102016-07-18 23:43:44 +0200871uint8_t gsm_pchan2chan_nr(enum gsm_phys_chan_config pchan,
872 uint8_t ts_nr, uint8_t lchan_nr);
Harald Weltef6093a42011-06-25 10:02:33 +0200873uint8_t gsm_lchan2chan_nr(const struct gsm_lchan *lchan);
Neels Hofmeyrd3841102016-07-18 23:43:44 +0200874uint8_t gsm_lchan_as_pchan2chan_nr(const struct gsm_lchan *lchan,
875 enum gsm_phys_chan_config as_pchan);
Harald Weltef6093a42011-06-25 10:02:33 +0200876
Harald Welte142d12d2014-12-29 17:47:08 +0100877/* return the gsm_lchan for the CBCH (if it exists at all) */
878struct gsm_lchan *gsm_bts_get_cbch(struct gsm_bts *bts);
879
Holger Hans Peter Freyther06c9da62011-06-09 21:48:49 +0200880/*
881 * help with parsing regexps
882 */
883int gsm_parse_reg(void *ctx, regex_t *reg, char **str,
884 int argc, const char **argv) __attribute__ ((warn_unused_result));
885
Harald Welte1fe24122014-01-19 17:18:21 +0100886static inline uint8_t gsm_ts_tsc(const struct gsm_bts_trx_ts *ts)
887{
888 if (ts->tsc != -1)
889 return ts->tsc;
890 else
Harald Weltea2bbc5e2015-11-20 10:43:31 +0100891 return ts->trx->bts->bsic & 7;
Harald Welte1fe24122014-01-19 17:18:21 +0100892}
Holger Hans Peter Freyther06c9da62011-06-09 21:48:49 +0200893
Neels Hofmeyr74585722016-07-23 17:38:22 +0200894struct gsm_lchan *rsl_lchan_lookup(struct gsm_bts_trx *trx, uint8_t chan_nr,
895 int *rc);
Holger Hans Peter Freyther06c9da62011-06-09 21:48:49 +0200896
Neels Hofmeyrec16c162016-10-17 01:03:53 +0200897enum gsm_phys_chan_config ts_pchan(struct gsm_bts_trx_ts *ts);
Neels Hofmeyr76a0ad72016-07-29 18:12:06 +0200898uint8_t ts_subslots(struct gsm_bts_trx_ts *ts);
Neels Hofmeyr255dbfe2016-09-25 15:07:01 +0200899bool ts_is_tch(struct gsm_bts_trx_ts *ts);
Neels Hofmeyr76a0ad72016-07-29 18:12:06 +0200900
Harald Welte6be350c2011-05-25 13:10:08 +0200901#endif