blob: cc147a6e79e80451fb3e312c97294c2119beb531 [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>
16
17#include <osmocom/gsm/protocol/gsm_08_58.h>
Harald Welte3300c012011-06-05 13:31:33 +020018#include <osmocom/gsm/protocol/gsm_12_21.h>
Harald Welte6be350c2011-05-25 13:10:08 +020019
Harald Welte0eae6132011-08-24 13:52:07 +020020#include <osmocom/abis/e1_input.h>
21
Holger Hans Peter Freyther0e0a09c2012-12-20 19:03:18 +010022#ifndef ROLE_BSC
23#include <osmocom/gsm/lapdm.h>
24#endif
25
Holger Hans Peter Freyther8ec49522011-08-15 15:53:00 +020026struct osmo_bsc_data;
27
Harald Welte6be350c2011-05-25 13:10:08 +020028struct osmo_bsc_sccp_con;
29struct gsm_sms_queue;
30
31/* RRLP mode of operation */
32enum rrlp_mode {
33 RRLP_MODE_NONE,
34 RRLP_MODE_MS_BASED,
35 RRLP_MODE_MS_PREF,
36 RRLP_MODE_ASS_PREF,
37};
38
39/* Channel Request reason */
40enum gsm_chreq_reason_t {
41 GSM_CHREQ_REASON_EMERG,
42 GSM_CHREQ_REASON_PAG,
43 GSM_CHREQ_REASON_CALL,
44 GSM_CHREQ_REASON_LOCATION_UPD,
45 GSM_CHREQ_REASON_OTHER,
46};
47
48#define TRX_NR_TS 8
49#define TS_MAX_LCHAN 8
50
51#define HARDCODED_ARFCN 123
52#define HARDCODED_TSC 7
53#define HARDCODED_BSIC 0x3f /* NCC = 7 / BCC = 7 */
54
55/* for multi-drop config */
56#define HARDCODED_BTS0_TS 1
57#define HARDCODED_BTS1_TS 6
58#define HARDCODED_BTS2_TS 11
59
60/* reserved according to GSM 03.03 ยง 2.4 */
61#define GSM_RESERVED_TMSI 0xFFFFFFFF
62
63enum gsm_hooks {
64 GSM_HOOK_NM_SWLOAD,
65 GSM_HOOK_RR_PAGING,
66 GSM_HOOK_RR_SECURITY,
67};
68
69enum gsm_paging_event {
70 GSM_PAGING_SUCCEEDED,
71 GSM_PAGING_EXPIRED,
72 GSM_PAGING_OOM,
73 GSM_PAGING_BUSY,
74};
75
76enum bts_gprs_mode {
77 BTS_GPRS_NONE = 0,
78 BTS_GPRS_GPRS = 1,
79 BTS_GPRS_EGPRS = 2,
80};
81
82struct gsm_lchan;
83struct gsm_subscriber;
84struct gsm_mncc;
Harald Welte135a6bd2011-09-04 13:53:26 +020085struct osmo_rtp_socket;
Harald Welte6be350c2011-05-25 13:10:08 +020086struct rtp_socket;
87struct bsc_api;
88
89/* Network Management State */
90struct gsm_nm_state {
91 uint8_t operational;
92 uint8_t administrative;
93 uint8_t availability;
94};
95
Harald Welted64c0bc2011-05-30 12:07:53 +020096struct gsm_abis_mo {
Harald Welte3300c012011-06-05 13:31:33 +020097 uint8_t obj_class;
Holger Hans Peter Freyther49976f42013-11-05 16:06:17 +010098 uint8_t procedure_pending;
Harald Welte3300c012011-06-05 13:31:33 +020099 struct abis_om_obj_inst obj_inst;
Harald Welted64c0bc2011-05-30 12:07:53 +0200100 const char *name;
101 struct gsm_nm_state nm_state;
102 struct tlv_parsed *nm_attr;
Harald Welte32bc1162011-06-06 18:58:48 +0200103 struct gsm_bts *bts;
Harald Welted64c0bc2011-05-30 12:07:53 +0200104};
105
Harald Welte6be350c2011-05-25 13:10:08 +0200106#define MAX_A5_KEY_LEN (128/8)
107#define A38_XOR_MIN_KEY_LEN 12
108#define A38_XOR_MAX_KEY_LEN 16
109#define A38_COMP128_KEY_LEN 16
110#define RSL_ENC_ALG_A5(x) (x+1)
111
112/* is the data link established? who established it? */
113#define LCHAN_SAPI_UNUSED 0
114#define LCHAN_SAPI_MS 1
115#define LCHAN_SAPI_NET 2
Andreas Eversberg7d8fa342013-12-05 13:25:06 +0100116#define LCHAN_SAPI_REL 3
Harald Welte6be350c2011-05-25 13:10:08 +0200117
118/* state of a logical channel */
119enum gsm_lchan_state {
120 LCHAN_S_NONE, /* channel is not active */
Holger Hans Peter Freytherded02682012-01-15 00:02:17 +0100121 LCHAN_S_ACT_REQ, /* channel activation requested */
Harald Welte6be350c2011-05-25 13:10:08 +0200122 LCHAN_S_ACTIVE, /* channel is active and operational */
123 LCHAN_S_REL_REQ, /* channel release has been requested */
124 LCHAN_S_REL_ERR, /* channel is in an error state */
Holger Hans Peter Freyther638da512012-12-06 19:25:06 +0100125 LCHAN_S_BROKEN, /* channel is somehow unusable */
Harald Welte6be350c2011-05-25 13:10:08 +0200126 LCHAN_S_INACTIVE, /* channel is set inactive */
127};
128
Harald Weltec7921c92011-06-29 10:38:34 +0200129/* BTS ONLY */
130#define MAX_NUM_UL_MEAS 104
131#define LC_UL_M_F_L1_VALID (1 << 0)
132#define LC_UL_M_F_RES_VALID (1 << 1)
133
134struct bts_ul_meas {
135 /* BER in units of 0.01%: 10.000 == 100% ber, 0 == 0% ber */
136 uint16_t ber10k;
137 /* timing advance offset (in quarter bits) */
138 int16_t ta_offs_qbits;
139 /* C/I ratio in dB */
140 float c_i;
141 /* flags */
142 uint8_t is_sub:1;
143 /* RSSI in dBm * -1 */
144 uint8_t inv_rssi;
145};
Harald Weltef3b59322011-09-06 22:14:43 +0200146
Andreas Eversberga83d5112013-12-07 18:32:28 +0100147struct bts_codec_conf {
148 uint8_t hr;
149 uint8_t efr;
150 uint8_t amr;
151};
152
Harald Weltef3b59322011-09-06 22:14:43 +0200153struct amr_mode {
154 uint8_t mode;
155 uint8_t threshold;
156 uint8_t hysteresis;
157};
158struct amr_multirate_conf {
159 uint8_t gsm48_ie[2];
160 struct amr_mode mode[4];
161 uint8_t num_modes;
162};
Harald Weltec7921c92011-06-29 10:38:34 +0200163/* /BTS ONLY */
164
Harald Weltee4227982012-08-24 15:33:56 +0200165enum lchan_csd_mode {
166 LCHAN_CSD_M_NT,
167 LCHAN_CSD_M_T_1200_75,
168 LCHAN_CSD_M_T_600,
169 LCHAN_CSD_M_T_1200,
170 LCHAN_CSD_M_T_2400,
171 LCHAN_CSD_M_T_9600,
172 LCHAN_CSD_M_T_14400,
173 LCHAN_CSD_M_T_29000,
174 LCHAN_CSD_M_T_32000,
175};
176
Daniel Willmann324c8052012-12-29 12:32:30 +0100177/* State of the SAPIs in the lchan */
178enum lchan_sapi_state {
179 LCHAN_SAPI_S_NONE,
180 LCHAN_SAPI_S_REQ,
181 LCHAN_SAPI_S_ASSIGNED,
182 LCHAN_SAPI_S_REL,
183 LCHAN_SAPI_S_ERROR,
184};
185
Harald Welte6be350c2011-05-25 13:10:08 +0200186struct gsm_lchan {
187 /* The TS that we're part of */
188 struct gsm_bts_trx_ts *ts;
189 /* The logical subslot number in the TS */
190 uint8_t nr;
191 /* The logical channel type */
192 enum gsm_chan_t type;
193 /* RSL channel mode */
194 enum rsl_cmod_spd rsl_cmode;
195 /* If TCH, traffic channel mode */
196 enum gsm48_chan_mode tch_mode;
Harald Weltee4227982012-08-24 15:33:56 +0200197 enum lchan_csd_mode csd_mode;
Harald Welte6be350c2011-05-25 13:10:08 +0200198 /* State */
199 enum gsm_lchan_state state;
200 /* Power levels for MS and BTS */
201 uint8_t bs_power;
202 uint8_t ms_power;
203 /* Encryption information */
204 struct {
205 uint8_t alg_id;
206 uint8_t key_len;
207 uint8_t key[MAX_A5_KEY_LEN];
208 } encr;
209
210 /* AMR bits */
211 struct gsm48_multi_rate_conf mr_conf;
212
213 /* Established data link layer services */
214 uint8_t sapis[8];
Holger Hans Peter Freytherb9b828b2013-01-01 19:20:28 +0100215 int sacch_deact;
Holger Hans Peter Freytherdfcfe652011-12-27 20:49:53 +0100216
Harald Welte6be350c2011-05-25 13:10:08 +0200217 struct {
218 uint32_t bound_ip;
219 uint32_t connect_ip;
220 uint16_t bound_port;
221 uint16_t connect_port;
222 uint16_t conn_id;
223 uint8_t rtp_payload;
224 uint8_t rtp_payload2;
225 uint8_t speech_mode;
Harald Welte135a6bd2011-09-04 13:53:26 +0200226#ifdef ROLE_BSC
Harald Welte6be350c2011-05-25 13:10:08 +0200227 struct rtp_socket *rtp_socket;
Harald Welte135a6bd2011-09-04 13:53:26 +0200228#else
229 struct osmo_rtp_socket *rtp_socket;
230#endif
Harald Welte6be350c2011-05-25 13:10:08 +0200231 } abis_ip;
232
Harald Welte2c1ae472011-06-26 14:13:37 +0200233 uint8_t rqd_ta;
234
Harald Welte6be350c2011-05-25 13:10:08 +0200235#ifdef ROLE_BSC
236 struct osmo_timer_list T3101;
Holger Hans Peter Freytherb3489392011-12-28 16:21:05 +0100237 struct osmo_timer_list T3109;
Harald Welte6be350c2011-05-25 13:10:08 +0200238 struct osmo_timer_list T3111;
239 struct osmo_timer_list error_timer;
Harald Weltee8bd9e82011-08-10 23:26:33 +0200240 struct osmo_timer_list act_timer;
Andreas Eversberg7d8fa342013-12-05 13:25:06 +0100241 struct osmo_timer_list rel_work;
Holger Hans Peter Freyther638da512012-12-06 19:25:06 +0100242 uint8_t error_cause;
Harald Welte6be350c2011-05-25 13:10:08 +0200243
244 /* table of neighbor cell measurements */
245 struct neigh_meas_proc neigh_meas[MAX_NEIGH_MEAS];
246
247 /* cache of last measurement reports on this lchan */
248 struct gsm_meas_rep meas_rep[6];
249 int meas_rep_idx;
250
251 /* GSM Random Access data */
252 struct gsm48_req_ref *rqd_ref;
Harald Welte6be350c2011-05-25 13:10:08 +0200253
254 struct gsm_subscriber_connection *conn;
Harald Weltef6093a42011-06-25 10:02:33 +0200255#else
Daniel Willmann324c8052012-12-29 12:32:30 +0100256 /* Number of different GsmL1_Sapi_t used in osmo_bts_sysmo is 23.
257 * Currently we don't share these headers so this is a magic number. */
Holger Hans Peter Freyther30156e12013-04-05 18:41:45 +0200258 struct llist_head sapi_cmds;
Daniel Willmann324c8052012-12-29 12:32:30 +0100259 uint8_t sapis_dl[23];
260 uint8_t sapis_ul[23];
Harald Weltef6093a42011-06-25 10:02:33 +0200261 struct lapdm_channel lapdm_ch;
Harald Welte135a6bd2011-09-04 13:53:26 +0200262 struct llist_head dl_tch_queue;
Harald Welte2c1ae472011-06-26 14:13:37 +0200263 struct {
264 /* bitmask of all SI that are present/valid in si_buf */
265 uint32_t valid;
266 uint32_t last;
267 /* buffers where we put the pre-computed SI */
268 sysinfo_buf_t buf[_MAX_SYSINFO_TYPE];
269 } si;
Harald Weltec7921c92011-06-29 10:38:34 +0200270 struct {
271 uint8_t flags;
272 /* RSL measurment result number, 0 at lchan_act */
273 uint8_t res_nr;
274 /* current Tx power level of the BTS */
275 uint8_t bts_tx_pwr;
276 /* number of measurements stored in array below */
277 uint8_t num_ul_meas;
278 struct bts_ul_meas uplink[MAX_NUM_UL_MEAS];
279 /* last L1 header from the MS */
280 uint8_t l1_info[2];
281 struct {
282 uint8_t rxlev_full;
283 uint8_t rxlev_sub;
284 uint8_t rxqual_full;
285 uint8_t rxqual_sub;
286 } res;
287 } meas;
Harald Weltef3b59322011-09-06 22:14:43 +0200288 struct {
289 struct amr_multirate_conf amr_mr;
Harald Welte43290992011-09-07 12:41:38 +0200290 struct {
291 uint8_t buf[16];
292 uint8_t len;
293 } last_sid;
Holger Hans Peter Freyther922ef5d2014-07-24 21:05:32 +0200294 uint8_t last_cmr;
Harald Weltef3b59322011-09-06 22:14:43 +0200295 } tch;
Harald Welte5d52c972012-04-08 20:23:28 +0200296 /* BTS-side ciphering state (rx only, bi-directional, ...) */
297 uint8_t ciph_state;
Harald Welte46cb8512012-04-19 23:13:35 +0200298 uint8_t loopback;
Harald Welte704cb862012-06-16 14:57:08 +0800299 struct {
300 uint8_t active;
301 uint8_t ref;
302 /* T3105: PHYS INF retransmission */
303 struct osmo_timer_list t3105;
304 /* counts up to Ny1 */
305 unsigned int phys_info_count;
306 } ho;
Andreas Eversberg1af682a2013-02-20 16:06:20 +0100307 /* S counter for link loss */
308 int s;
Holger Hans Peter Freytherfc7a75f2013-10-25 18:58:30 +0200309 /* Kind of the release/activation. E.g. RSL or PCU */
310 int rel_act_kind;
Harald Welte6be350c2011-05-25 13:10:08 +0200311#endif
312};
313
Harald Welte6be350c2011-05-25 13:10:08 +0200314#define TS_F_PDCH_MODE 0x1000
315/* One Timeslot in a TRX */
316struct gsm_bts_trx_ts {
317 struct gsm_bts_trx *trx;
318 /* number of this timeslot at the TRX */
319 uint8_t nr;
320
321 enum gsm_phys_chan_config pchan;
322
323 unsigned int flags;
Harald Welted64c0bc2011-05-30 12:07:53 +0200324 struct gsm_abis_mo mo;
Harald Welte6be350c2011-05-25 13:10:08 +0200325 struct tlv_parsed nm_attr;
326 uint8_t nm_chan_comb;
Harald Welte135a6482011-05-30 12:09:13 +0200327 int tsc; /* -1 == use BTS TSC */
Harald Welte6be350c2011-05-25 13:10:08 +0200328
329 struct {
330 /* Parameters below are configured by VTY */
331 int enabled;
332 uint8_t maio;
333 uint8_t hsn;
334 struct bitvec arfcns;
335 uint8_t arfcns_data[1024/8];
336 /* This is the pre-computed MA for channel assignments */
337 struct bitvec ma;
338 uint8_t ma_len; /* part of ma_data that is used */
339 uint8_t ma_data[8]; /* 10.5.2.21: max 8 bytes value part */
340 } hopping;
341
342 /* To which E1 subslot are we connected */
343 struct gsm_e1_subslot e1_link;
344
345 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 */
รlvaro Neira Ayuso1b148ec2014-04-28 13:38:47 +0200375 unsigned int power_reduce; /* in dB */
Harald Welte6be350c2011-05-25 13:10:08 +0200376
Harald Welted134cc72011-06-07 00:12:53 +0200377 struct {
378 void *l1h;
379 } role_bts;
380
Harald Welte6be350c2011-05-25 13:10:08 +0200381 union {
382 struct {
383 struct {
Harald Welted64c0bc2011-05-30 12:07:53 +0200384 struct gsm_abis_mo mo;
Harald Welte6be350c2011-05-25 13:10:08 +0200385 } bbsig;
386 struct {
Harald Welted64c0bc2011-05-30 12:07:53 +0200387 struct gsm_abis_mo mo;
Harald Welte6be350c2011-05-25 13:10:08 +0200388 } pa;
389 } bs11;
390 struct {
391 unsigned int test_state;
392 uint8_t test_nr;
393 struct rxlev_stats rxlev_stat;
394 } ipaccess;
395 };
396 struct gsm_bts_trx_ts ts[TRX_NR_TS];
397};
398
399#define GSM_BTS_SI(bts, i) (void *)(bts->si_buf[i])
400
401enum gsm_bts_type {
402 GSM_BTS_TYPE_UNKNOWN,
403 GSM_BTS_TYPE_BS11,
404 GSM_BTS_TYPE_NANOBTS,
405 GSM_BTS_TYPE_RBS2000,
Dieter Spaar16646022011-07-28 00:01:50 +0200406 GSM_BTS_TYPE_NOKIA_SITE,
Harald Weltef383aa12012-07-02 19:51:55 +0200407 GSM_BTS_TYPE_OSMO_SYSMO,
Harald Weltee555c2b2012-08-17 13:02:12 +0200408 _NUM_GSM_BTS_TYPE
Harald Welte6be350c2011-05-25 13:10:08 +0200409};
410
411struct vty;
412
413struct gsm_bts_model {
414 struct llist_head list;
415
416 enum gsm_bts_type type;
417 const char *name;
418
419 bool started;
420 int (*start)(struct gsm_network *net);
421 int (*oml_rcvmsg)(struct msgb *msg);
422
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200423 void (*e1line_bind_ops)(struct e1inp_line *line);
424
Harald Welte6be350c2011-05-25 13:10:08 +0200425 void (*config_write_bts)(struct vty *vty, struct gsm_bts *bts);
426 void (*config_write_trx)(struct vty *vty, struct gsm_bts_trx *trx);
427 void (*config_write_ts)(struct vty *vty, struct gsm_bts_trx_ts *ts);
428
429 struct tlv_definition nm_att_tlvdef;
430
431 struct bitvec features;
432 uint8_t _features_data[128/8];
433};
434
435enum gsm_bts_features {
436 BTS_FEAT_HSCSD,
437 BTS_FEAT_GPRS,
438 BTS_FEAT_EGPRS,
439 BTS_FEAT_ECSD,
440 BTS_FEAT_HOPPING,
Harald Welte903aaea2014-01-19 17:10:50 +0100441 BTS_FEAT_MULTI_TSC,
Harald Welte6be350c2011-05-25 13:10:08 +0200442};
443
444/*
445 * This keeps track of the paging status of one BTS. It
446 * includes a number of pending requests, a back pointer
447 * to the gsm_bts, a timer and some more state.
448 */
449struct gsm_bts_paging_state {
450 /* pending requests */
451 struct llist_head pending_requests;
452 struct gsm_bts *bts;
453
454 struct osmo_timer_list work_timer;
455 struct osmo_timer_list credit_timer;
456
457 /* free chans needed */
458 int free_chans_need;
459
460 /* load */
461 uint16_t available_slots;
462};
463
464struct gsm_envabtse {
Harald Welted64c0bc2011-05-30 12:07:53 +0200465 struct gsm_abis_mo mo;
Harald Welte6be350c2011-05-25 13:10:08 +0200466};
467
468struct gsm_bts_gprs_nsvc {
469 struct gsm_bts *bts;
470 /* data read via VTY config file, to configure the BTS
471 * via OML from BSC */
472 int id;
473 uint16_t nsvci;
474 uint16_t local_port; /* on the BTS */
475 uint16_t remote_port; /* on the SGSN */
476 uint32_t remote_ip; /* on the SGSN */
477
Harald Welted64c0bc2011-05-30 12:07:53 +0200478 struct gsm_abis_mo mo;
Harald Welte6be350c2011-05-25 13:10:08 +0200479};
480
Harald Welte019f9132012-06-28 08:43:14 +0200481enum gprs_rlc_par {
482 RLC_T3142,
483 RLC_T3169,
484 RLC_T3191,
485 RLC_T3193,
486 RLC_T3195,
487 RLC_N3101,
488 RLC_N3103,
489 RLC_N3105,
490 CV_COUNTDOWN,
491 T_DL_TBF_EXT, /* ms */
492 T_UL_TBF_EXT, /* ms */
493 _NUM_RLC_PAR
494};
495
496enum gprs_cs {
497 GPRS_CS1,
498 GPRS_CS2,
499 GPRS_CS3,
500 GPRS_CS4,
501 GPRS_MCS1,
502 GPRS_MCS2,
503 GPRS_MCS3,
504 GPRS_MCS4,
505 GPRS_MCS5,
506 GPRS_MCS6,
507 GPRS_MCS7,
508 GPRS_MCS8,
509 GPRS_MCS9,
510 _NUM_GRPS_CS
511};
512
513struct gprs_rlc_cfg {
514 uint16_t parameter[_NUM_RLC_PAR];
515 struct {
516 uint16_t repeat_time; /* ms */
517 uint8_t repeat_count;
518 } paging;
519 uint32_t cs_mask; /* bitmask of gprs_cs */
520 uint8_t initial_cs;
521 uint8_t initial_mcs;
522};
523
524
Harald Welte6be350c2011-05-25 13:10:08 +0200525enum neigh_list_manual_mode {
526 NL_MODE_AUTOMATIC = 0,
527 NL_MODE_MANUAL = 1,
528 NL_MODE_MANUAL_SI5SEP = 2, /* SI2 and SI5 have separate neighbor lists */
529};
530
Daniel Willmann47b5b3e2011-08-05 13:51:27 +0200531enum bts_loc_fix {
532 BTS_LOC_FIX_INVALID = 0,
533 BTS_LOC_FIX_2D = 1,
534 BTS_LOC_FIX_3D = 2,
535};
536
Daniel Willmann7d109832012-05-14 18:43:23 +0200537extern const struct value_string bts_loc_fix_names[];
538
Daniel Willmann47b5b3e2011-08-05 13:51:27 +0200539struct bts_location {
540 struct llist_head list;
541 time_t tstamp;
542 enum bts_loc_fix valid;
543 double lat;
544 double lon;
545 double height;
546};
547
Harald Welte6be350c2011-05-25 13:10:08 +0200548/* One BTS */
549struct gsm_bts {
550 /* list header in net->bts_list */
551 struct llist_head list;
552
Daniel Willmann47b5b3e2011-08-05 13:51:27 +0200553 /* Geographical location of the BTS */
554 struct llist_head loc_list;
555
Harald Welte6be350c2011-05-25 13:10:08 +0200556 /* number of ths BTS in network */
557 uint8_t nr;
558 /* human readable name / description */
559 char *description;
560 /* Cell Identity */
561 uint16_t cell_identity;
562 /* location area code of this BTS */
563 uint16_t location_area_code;
564 /* Training Sequence Code */
565 uint8_t tsc;
566 /* Base Station Identification Code (BSIC) */
567 uint8_t bsic;
568 /* type of BTS */
569 enum gsm_bts_type type;
570 struct gsm_bts_model *model;
571 enum gsm_band band;
572 /* maximum Tx power that the MS is permitted to use in this cell */
573 int ms_max_power;
574
575 /* how do we talk OML with this TRX? */
576 struct gsm_e1_subslot oml_e1_link;
577 uint8_t oml_tei;
578 struct e1inp_sign_link *oml_link;
579
580 /* Abis network management O&M handle */
581 struct abis_nm_h *nmh;
Harald Welted64c0bc2011-05-30 12:07:53 +0200582
583 struct gsm_abis_mo mo;
Harald Welte6be350c2011-05-25 13:10:08 +0200584
585 /* number of this BTS on given E1 link */
586 uint8_t bts_nr;
587
588 /* paging state and control */
589 struct gsm_bts_paging_state paging;
590
591 /* CCCH is on C0 */
592 struct gsm_bts_trx *c0;
593
594 struct {
Harald Welted64c0bc2011-05-30 12:07:53 +0200595 struct gsm_abis_mo mo;
Harald Welte6be350c2011-05-25 13:10:08 +0200596 } site_mgr;
597
598 /* bitmask of all SI that are present/valid in si_buf */
599 uint32_t si_valid;
600 /* buffers where we put the pre-computed SI */
601 sysinfo_buf_t si_buf[_MAX_SYSINFO_TYPE];
602
Gus Bourg1c5dd2c2011-12-02 10:18:17 +0100603 /* TimeZone hours, mins, and bts specific */
Harald Welte45f91712012-07-08 16:48:11 +0200604 struct {
605 int hr;
606 int mn;
607 int override;
Jacob Erlbeck946d1412013-09-17 13:59:29 +0200608 int dst;
Harald Welte45f91712012-07-08 16:48:11 +0200609 } tz;
Gus Bourg1c5dd2c2011-12-02 10:18:17 +0100610
Harald Welte6be350c2011-05-25 13:10:08 +0200611 /* ip.accesss Unit ID's have Site/BTS/TRX layout */
612 union {
613 struct {
614 uint16_t site_id;
615 uint16_t bts_id;
616 uint32_t flags;
Harald Welte8b291802013-03-12 13:57:05 +0100617 uint32_t rsl_ip;
Harald Welte6be350c2011-05-25 13:10:08 +0200618 } ip_access;
619 struct {
620 struct {
Harald Welted64c0bc2011-05-30 12:07:53 +0200621 struct gsm_abis_mo mo;
Harald Welte6be350c2011-05-25 13:10:08 +0200622 } cclk;
623 struct {
Harald Welted64c0bc2011-05-30 12:07:53 +0200624 struct gsm_abis_mo mo;
Harald Welte6be350c2011-05-25 13:10:08 +0200625 } rack;
626 struct gsm_envabtse envabtse[4];
627 } bs11;
628 struct {
629 struct {
Harald Welted64c0bc2011-05-30 12:07:53 +0200630 struct gsm_abis_mo mo;
Harald Welte6be350c2011-05-25 13:10:08 +0200631 struct llist_head conn_groups;
632 } is;
633 struct {
Harald Welted64c0bc2011-05-30 12:07:53 +0200634 struct gsm_abis_mo mo;
Harald Welte6be350c2011-05-25 13:10:08 +0200635 struct llist_head conn_groups;
636 } con;
637 struct {
Harald Welted64c0bc2011-05-30 12:07:53 +0200638 struct gsm_abis_mo mo;
Harald Welte6be350c2011-05-25 13:10:08 +0200639 } dp;
640 struct {
Harald Welted64c0bc2011-05-30 12:07:53 +0200641 struct gsm_abis_mo mo;
Harald Welte6be350c2011-05-25 13:10:08 +0200642 } tf;
643 } rbs2000;
644 struct {
Harald Weltec8755af2011-07-28 00:22:17 +0200645 uint8_t bts_type;
Holger Hans Peter Freyther3e603482012-03-02 14:14:33 +0100646 unsigned int configured:1,
647 skip_reset:1,
Andreas Eversberg7d8fa342013-12-05 13:25:06 +0100648 no_loc_rel_cnf:1,
Holger Hans Peter Freyther3e603482012-03-02 14:14:33 +0100649 did_reset:1,
650 wait_reset:1;
Harald Weltec8755af2011-07-28 00:22:17 +0200651 struct osmo_timer_list reset_timer;
652 } nokia;
Harald Welte6be350c2011-05-25 13:10:08 +0200653 };
654
655 /* Not entirely sure how ip.access specific this is */
656 struct {
657 enum bts_gprs_mode mode;
658 struct {
Harald Welted64c0bc2011-05-30 12:07:53 +0200659 struct gsm_abis_mo mo;
Harald Welte6be350c2011-05-25 13:10:08 +0200660 uint16_t nsei;
661 uint8_t timer[7];
662 } nse;
663 struct {
Harald Welted64c0bc2011-05-30 12:07:53 +0200664 struct gsm_abis_mo mo;
Harald Welte6be350c2011-05-25 13:10:08 +0200665 uint16_t bvci;
666 uint8_t timer[11];
Harald Welte019f9132012-06-28 08:43:14 +0200667 struct gprs_rlc_cfg rlc_cfg;
Harald Welte6be350c2011-05-25 13:10:08 +0200668 } cell;
669 struct gsm_bts_gprs_nsvc nsvc[2];
670 uint8_t rac;
Andreas Eversberg0c8f9ca2013-03-16 16:31:26 +0100671 uint8_t net_ctrl_ord;
Harald Welte6be350c2011-05-25 13:10:08 +0200672 } gprs;
673
674 /* RACH NM values */
675 int rach_b_thresh;
676 int rach_ldavg_slots;
677
678 /* transceivers */
679 int num_trx;
680 struct llist_head trx_list;
681
Jacob Erlbeck65d114f2014-01-16 11:02:14 +0100682 /* SI compatibility hacks */
683 int force_combined_si;
684
Harald Welte6be350c2011-05-25 13:10:08 +0200685#ifdef ROLE_BSC
686 /* Abis NM queue */
687 struct llist_head abis_queue;
688 int abis_nm_pend;
689
690 struct gsm_network *network;
691
692 /* should the channel allocator allocate channels from high TRX to TRX0,
693 * rather than starting from TRX0 and go upwards? */
694 int chan_alloc_reverse;
695
696 enum neigh_list_manual_mode neigh_list_manual_mode;
697 /* parameters from which we build SYSTEM INFORMATION */
698 struct {
699 struct gsm48_rach_control rach_control;
700 uint8_t ncc_permitted;
701 struct gsm48_cell_sel_par cell_sel_par;
702 struct gsm48_si_selection_params cell_ro_sel_par; /* rest octet */
703 struct gsm48_cell_options cell_options;
704 struct gsm48_control_channel_descr chan_desc;
705 struct bitvec neigh_list;
706 struct bitvec cell_alloc;
707 struct bitvec si5_neigh_list;
708 struct {
709 /* bitmask large enough for all possible ARFCN's */
710 uint8_t neigh_list[1024/8];
711 uint8_t cell_alloc[1024/8];
712 /* If the user wants a different neighbor list in SI5 than in SI2 */
713 uint8_t si5_neigh_list[1024/8];
714 } data;
715 } si_common;
716
717 /* do we use static (user-defined) system information messages? (bitmask) */
718 uint32_t si_mode_static;
Holger Hans Peter Freythere30d40d2012-07-20 10:27:31 +0200719
720 /* exclude the BTS from the global RF Lock handling */
721 int excl_from_rf_lock;
Andreas Eversberga83d5112013-12-07 18:32:28 +0100722
723 /* supported codecs beside FR */
724 struct bts_codec_conf codec;
Harald Welte6be350c2011-05-25 13:10:08 +0200725#endif /* ROLE_BSC */
Harald Welte978714d2011-06-06 18:31:20 +0200726 void *role;
Harald Welte6be350c2011-05-25 13:10:08 +0200727};
728
729
Harald Welte3300c012011-06-05 13:31:33 +0200730struct gsm_bts *gsm_bts_alloc(void *talloc_ctx);
Harald Welte6be350c2011-05-25 13:10:08 +0200731struct gsm_bts_trx *gsm_bts_trx_alloc(struct gsm_bts *bts);
732
Harald Welte4f8ad532011-09-19 14:21:51 +0200733struct gsm_bts_trx *gsm_bts_trx_num(const struct gsm_bts *bts, int num);
Harald Welte6be350c2011-05-25 13:10:08 +0200734
Harald Welte4ab9d7c2012-08-17 12:42:06 +0200735
736const struct value_string gsm_pchant_names[10];
737const struct value_string gsm_pchant_descs[10];
738const struct value_string gsm_lchant_names[6];
Harald Welte6be350c2011-05-25 13:10:08 +0200739const char *gsm_pchan_name(enum gsm_phys_chan_config c);
740enum gsm_phys_chan_config gsm_pchan_parse(const char *name);
741const char *gsm_lchant_name(enum gsm_chan_t c);
742const char *gsm_chreq_name(enum gsm_chreq_reason_t c);
Harald Welte4f8ad532011-09-19 14:21:51 +0200743char *gsm_trx_name(const struct gsm_bts_trx *trx);
744char *gsm_ts_name(const struct gsm_bts_trx_ts *ts);
745char *gsm_lchan_name(const struct gsm_lchan *lchan);
Harald Welte6be350c2011-05-25 13:10:08 +0200746const char *gsm_lchans_name(enum gsm_lchan_state s);
747
Harald Welte6be350c2011-05-25 13:10:08 +0200748
Harald Welteb7849982011-06-29 16:49:03 +0200749void gsm_abis_mo_reset(struct gsm_abis_mo *mo);
750
Harald Welte978714d2011-06-06 18:31:20 +0200751struct gsm_abis_mo *
752gsm_objclass2mo(struct gsm_bts *bts, uint8_t obj_class,
Harald Welte4f8ad532011-09-19 14:21:51 +0200753 const struct abis_om_obj_inst *obj_inst);
Harald Welte978714d2011-06-06 18:31:20 +0200754
755struct gsm_nm_state *
756gsm_objclass2nmstate(struct gsm_bts *bts, uint8_t obj_class,
Harald Welte4f8ad532011-09-19 14:21:51 +0200757 const struct abis_om_obj_inst *obj_inst);
Harald Welte978714d2011-06-06 18:31:20 +0200758void *
759gsm_objclass2obj(struct gsm_bts *bts, uint8_t obj_class,
Harald Welte4f8ad532011-09-19 14:21:51 +0200760 const struct abis_om_obj_inst *obj_inst);
Harald Welte978714d2011-06-06 18:31:20 +0200761
Harald Welteb7849982011-06-29 16:49:03 +0200762/* reset the state of all MO in the BTS */
763void gsm_bts_mo_reset(struct gsm_bts *bts);
764
Harald Weltef6093a42011-06-25 10:02:33 +0200765uint8_t gsm_ts2chan_nr(const struct gsm_bts_trx_ts *ts, uint8_t lchan_nr);
766uint8_t gsm_lchan2chan_nr(const struct gsm_lchan *lchan);
767
Holger Hans Peter Freyther06c9da62011-06-09 21:48:49 +0200768/*
769 * help with parsing regexps
770 */
771int gsm_parse_reg(void *ctx, regex_t *reg, char **str,
772 int argc, const char **argv) __attribute__ ((warn_unused_result));
773
Harald Welte1fe24122014-01-19 17:18:21 +0100774static inline uint8_t gsm_ts_tsc(const struct gsm_bts_trx_ts *ts)
775{
776 if (ts->tsc != -1)
777 return ts->tsc;
778 else
779 return ts->trx->bts->tsc;
780}
Holger Hans Peter Freyther06c9da62011-06-09 21:48:49 +0200781
782
Harald Welte6be350c2011-05-25 13:10:08 +0200783#endif