blob: 2a3b0e2690791ce94564d12925954e35a84361eb [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;
Holger Hans Peter Freyther2c6b59c2014-08-09 09:43:53 +0200298 uint8_t ciph_ns;
Harald Welte46cb8512012-04-19 23:13:35 +0200299 uint8_t loopback;
Harald Welte704cb862012-06-16 14:57:08 +0800300 struct {
301 uint8_t active;
302 uint8_t ref;
303 /* T3105: PHYS INF retransmission */
304 struct osmo_timer_list t3105;
305 /* counts up to Ny1 */
306 unsigned int phys_info_count;
307 } ho;
Andreas Eversberg1af682a2013-02-20 16:06:20 +0100308 /* S counter for link loss */
309 int s;
Holger Hans Peter Freytherfc7a75f2013-10-25 18:58:30 +0200310 /* Kind of the release/activation. E.g. RSL or PCU */
311 int rel_act_kind;
Harald Welte6be350c2011-05-25 13:10:08 +0200312#endif
313};
314
Harald Welte6be350c2011-05-25 13:10:08 +0200315#define TS_F_PDCH_MODE 0x1000
316/* One Timeslot in a TRX */
317struct gsm_bts_trx_ts {
318 struct gsm_bts_trx *trx;
319 /* number of this timeslot at the TRX */
320 uint8_t nr;
321
322 enum gsm_phys_chan_config pchan;
323
324 unsigned int flags;
Harald Welted64c0bc2011-05-30 12:07:53 +0200325 struct gsm_abis_mo mo;
Harald Welte6be350c2011-05-25 13:10:08 +0200326 struct tlv_parsed nm_attr;
327 uint8_t nm_chan_comb;
Harald Welte135a6482011-05-30 12:09:13 +0200328 int tsc; /* -1 == use BTS TSC */
Harald Welte6be350c2011-05-25 13:10:08 +0200329
330 struct {
331 /* Parameters below are configured by VTY */
332 int enabled;
333 uint8_t maio;
334 uint8_t hsn;
335 struct bitvec arfcns;
336 uint8_t arfcns_data[1024/8];
337 /* This is the pre-computed MA for channel assignments */
338 struct bitvec ma;
339 uint8_t ma_len; /* part of ma_data that is used */
340 uint8_t ma_data[8]; /* 10.5.2.21: max 8 bytes value part */
341 } hopping;
342
343 /* To which E1 subslot are we connected */
344 struct gsm_e1_subslot e1_link;
345
346 struct gsm_lchan lchan[TS_MAX_LCHAN];
347};
348
349/* One TRX in a BTS */
350struct gsm_bts_trx {
351 /* list header in bts->trx_list */
352 struct llist_head list;
353
354 struct gsm_bts *bts;
355 /* number of this TRX in the BTS */
356 uint8_t nr;
357 /* human readable name / description */
358 char *description;
359 /* how do we talk RSL with this TRX? */
360 struct gsm_e1_subslot rsl_e1_link;
361 uint8_t rsl_tei;
362 struct e1inp_sign_link *rsl_link;
Holger Hans Peter Freythercaa98d52013-10-06 15:52:14 +0200363
Harald Welte6be350c2011-05-25 13:10:08 +0200364 /* Some BTS (specifically Ericsson RBS) have a per-TRX OML Link */
365 struct e1inp_sign_link *oml_link;
366
Harald Welted64c0bc2011-05-30 12:07:53 +0200367 struct gsm_abis_mo mo;
Harald Welte6be350c2011-05-25 13:10:08 +0200368 struct tlv_parsed nm_attr;
369 struct {
Harald Welted64c0bc2011-05-30 12:07:53 +0200370 struct gsm_abis_mo mo;
Harald Welte6be350c2011-05-25 13:10:08 +0200371 } bb_transc;
372
373 uint16_t arfcn;
374 int nominal_power; /* in dBm */
375 unsigned int max_power_red; /* in actual dB */
Holger Hans Peter Freyther9b625802014-07-30 18:20:51 +0200376
377#ifndef ROLE_BSC
Harald Welte101c5c22014-08-22 16:12:03 +0200378 struct trx_power_params power_params;
Holger Hans Peter Freyther9b625802014-07-30 18:20:51 +0200379 struct {
380 unsigned int max_initial_power; /* in dBm */
381 uint8_t step_size; /* in dB */
382 int step_interval; /* in seconds */
383 struct osmo_timer_list step_timer;
384
385 int current_power; /* in dBm */
386 } pa;
387
รlvaro Neira Ayuso1b148ec2014-04-28 13:38:47 +0200388 unsigned int power_reduce; /* in dB */
Harald Welte6be350c2011-05-25 13:10:08 +0200389
Harald Welted134cc72011-06-07 00:12:53 +0200390 struct {
391 void *l1h;
392 } role_bts;
Holger Hans Peter Freyther9b625802014-07-30 18:20:51 +0200393#endif
Harald Welted134cc72011-06-07 00:12:53 +0200394
Harald Welte6be350c2011-05-25 13:10:08 +0200395 union {
396 struct {
397 struct {
Harald Welted64c0bc2011-05-30 12:07:53 +0200398 struct gsm_abis_mo mo;
Harald Welte6be350c2011-05-25 13:10:08 +0200399 } bbsig;
400 struct {
Harald Welted64c0bc2011-05-30 12:07:53 +0200401 struct gsm_abis_mo mo;
Harald Welte6be350c2011-05-25 13:10:08 +0200402 } pa;
403 } bs11;
404 struct {
405 unsigned int test_state;
406 uint8_t test_nr;
407 struct rxlev_stats rxlev_stat;
408 } ipaccess;
409 };
410 struct gsm_bts_trx_ts ts[TRX_NR_TS];
411};
412
413#define GSM_BTS_SI(bts, i) (void *)(bts->si_buf[i])
414
415enum gsm_bts_type {
416 GSM_BTS_TYPE_UNKNOWN,
417 GSM_BTS_TYPE_BS11,
418 GSM_BTS_TYPE_NANOBTS,
419 GSM_BTS_TYPE_RBS2000,
Dieter Spaar16646022011-07-28 00:01:50 +0200420 GSM_BTS_TYPE_NOKIA_SITE,
Harald Weltef383aa12012-07-02 19:51:55 +0200421 GSM_BTS_TYPE_OSMO_SYSMO,
Harald Weltee555c2b2012-08-17 13:02:12 +0200422 _NUM_GSM_BTS_TYPE
Harald Welte6be350c2011-05-25 13:10:08 +0200423};
424
425struct vty;
426
427struct gsm_bts_model {
428 struct llist_head list;
429
430 enum gsm_bts_type type;
431 const char *name;
432
433 bool started;
434 int (*start)(struct gsm_network *net);
435 int (*oml_rcvmsg)(struct msgb *msg);
436
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200437 void (*e1line_bind_ops)(struct e1inp_line *line);
438
Harald Welte6be350c2011-05-25 13:10:08 +0200439 void (*config_write_bts)(struct vty *vty, struct gsm_bts *bts);
440 void (*config_write_trx)(struct vty *vty, struct gsm_bts_trx *trx);
441 void (*config_write_ts)(struct vty *vty, struct gsm_bts_trx_ts *ts);
442
443 struct tlv_definition nm_att_tlvdef;
444
445 struct bitvec features;
446 uint8_t _features_data[128/8];
447};
448
449enum gsm_bts_features {
450 BTS_FEAT_HSCSD,
451 BTS_FEAT_GPRS,
452 BTS_FEAT_EGPRS,
453 BTS_FEAT_ECSD,
454 BTS_FEAT_HOPPING,
Harald Welte903aaea2014-01-19 17:10:50 +0100455 BTS_FEAT_MULTI_TSC,
Harald Welte6be350c2011-05-25 13:10:08 +0200456};
457
458/*
459 * This keeps track of the paging status of one BTS. It
460 * includes a number of pending requests, a back pointer
461 * to the gsm_bts, a timer and some more state.
462 */
463struct gsm_bts_paging_state {
464 /* pending requests */
465 struct llist_head pending_requests;
466 struct gsm_bts *bts;
467
468 struct osmo_timer_list work_timer;
469 struct osmo_timer_list credit_timer;
470
471 /* free chans needed */
472 int free_chans_need;
473
474 /* load */
475 uint16_t available_slots;
476};
477
478struct gsm_envabtse {
Harald Welted64c0bc2011-05-30 12:07:53 +0200479 struct gsm_abis_mo mo;
Harald Welte6be350c2011-05-25 13:10:08 +0200480};
481
482struct gsm_bts_gprs_nsvc {
483 struct gsm_bts *bts;
484 /* data read via VTY config file, to configure the BTS
485 * via OML from BSC */
486 int id;
487 uint16_t nsvci;
488 uint16_t local_port; /* on the BTS */
489 uint16_t remote_port; /* on the SGSN */
490 uint32_t remote_ip; /* on the SGSN */
491
Harald Welted64c0bc2011-05-30 12:07:53 +0200492 struct gsm_abis_mo mo;
Harald Welte6be350c2011-05-25 13:10:08 +0200493};
494
Harald Welte019f9132012-06-28 08:43:14 +0200495enum gprs_rlc_par {
496 RLC_T3142,
497 RLC_T3169,
498 RLC_T3191,
499 RLC_T3193,
500 RLC_T3195,
501 RLC_N3101,
502 RLC_N3103,
503 RLC_N3105,
504 CV_COUNTDOWN,
505 T_DL_TBF_EXT, /* ms */
506 T_UL_TBF_EXT, /* ms */
507 _NUM_RLC_PAR
508};
509
510enum gprs_cs {
511 GPRS_CS1,
512 GPRS_CS2,
513 GPRS_CS3,
514 GPRS_CS4,
515 GPRS_MCS1,
516 GPRS_MCS2,
517 GPRS_MCS3,
518 GPRS_MCS4,
519 GPRS_MCS5,
520 GPRS_MCS6,
521 GPRS_MCS7,
522 GPRS_MCS8,
523 GPRS_MCS9,
524 _NUM_GRPS_CS
525};
526
527struct gprs_rlc_cfg {
528 uint16_t parameter[_NUM_RLC_PAR];
529 struct {
530 uint16_t repeat_time; /* ms */
531 uint8_t repeat_count;
532 } paging;
533 uint32_t cs_mask; /* bitmask of gprs_cs */
534 uint8_t initial_cs;
535 uint8_t initial_mcs;
536};
537
538
Harald Welte6be350c2011-05-25 13:10:08 +0200539enum neigh_list_manual_mode {
540 NL_MODE_AUTOMATIC = 0,
541 NL_MODE_MANUAL = 1,
542 NL_MODE_MANUAL_SI5SEP = 2, /* SI2 and SI5 have separate neighbor lists */
543};
544
Daniel Willmann47b5b3e2011-08-05 13:51:27 +0200545enum bts_loc_fix {
546 BTS_LOC_FIX_INVALID = 0,
547 BTS_LOC_FIX_2D = 1,
548 BTS_LOC_FIX_3D = 2,
549};
550
Daniel Willmann7d109832012-05-14 18:43:23 +0200551extern const struct value_string bts_loc_fix_names[];
552
Daniel Willmann47b5b3e2011-08-05 13:51:27 +0200553struct bts_location {
554 struct llist_head list;
555 time_t tstamp;
556 enum bts_loc_fix valid;
557 double lat;
558 double lon;
559 double height;
560};
561
Harald Welte6be350c2011-05-25 13:10:08 +0200562/* One BTS */
563struct gsm_bts {
564 /* list header in net->bts_list */
565 struct llist_head list;
566
Daniel Willmann47b5b3e2011-08-05 13:51:27 +0200567 /* Geographical location of the BTS */
568 struct llist_head loc_list;
569
Harald Welte6be350c2011-05-25 13:10:08 +0200570 /* number of ths BTS in network */
571 uint8_t nr;
572 /* human readable name / description */
573 char *description;
574 /* Cell Identity */
575 uint16_t cell_identity;
576 /* location area code of this BTS */
577 uint16_t location_area_code;
578 /* Training Sequence Code */
579 uint8_t tsc;
580 /* Base Station Identification Code (BSIC) */
581 uint8_t bsic;
582 /* type of BTS */
583 enum gsm_bts_type type;
584 struct gsm_bts_model *model;
585 enum gsm_band band;
586 /* maximum Tx power that the MS is permitted to use in this cell */
587 int ms_max_power;
588
589 /* how do we talk OML with this TRX? */
590 struct gsm_e1_subslot oml_e1_link;
591 uint8_t oml_tei;
592 struct e1inp_sign_link *oml_link;
593
594 /* Abis network management O&M handle */
595 struct abis_nm_h *nmh;
Harald Welted64c0bc2011-05-30 12:07:53 +0200596
597 struct gsm_abis_mo mo;
Harald Welte6be350c2011-05-25 13:10:08 +0200598
599 /* number of this BTS on given E1 link */
600 uint8_t bts_nr;
601
602 /* paging state and control */
603 struct gsm_bts_paging_state paging;
604
605 /* CCCH is on C0 */
606 struct gsm_bts_trx *c0;
607
608 struct {
Harald Welted64c0bc2011-05-30 12:07:53 +0200609 struct gsm_abis_mo mo;
Harald Welte6be350c2011-05-25 13:10:08 +0200610 } site_mgr;
611
612 /* bitmask of all SI that are present/valid in si_buf */
613 uint32_t si_valid;
614 /* buffers where we put the pre-computed SI */
615 sysinfo_buf_t si_buf[_MAX_SYSINFO_TYPE];
616
Gus Bourg1c5dd2c2011-12-02 10:18:17 +0100617 /* TimeZone hours, mins, and bts specific */
Harald Welte45f91712012-07-08 16:48:11 +0200618 struct {
619 int hr;
620 int mn;
621 int override;
Jacob Erlbeck946d1412013-09-17 13:59:29 +0200622 int dst;
Harald Welte45f91712012-07-08 16:48:11 +0200623 } tz;
Gus Bourg1c5dd2c2011-12-02 10:18:17 +0100624
Harald Welte6be350c2011-05-25 13:10:08 +0200625 /* ip.accesss Unit ID's have Site/BTS/TRX layout */
626 union {
627 struct {
628 uint16_t site_id;
629 uint16_t bts_id;
630 uint32_t flags;
Harald Welte8b291802013-03-12 13:57:05 +0100631 uint32_t rsl_ip;
Harald Welte6be350c2011-05-25 13:10:08 +0200632 } ip_access;
633 struct {
634 struct {
Harald Welted64c0bc2011-05-30 12:07:53 +0200635 struct gsm_abis_mo mo;
Harald Welte6be350c2011-05-25 13:10:08 +0200636 } cclk;
637 struct {
Harald Welted64c0bc2011-05-30 12:07:53 +0200638 struct gsm_abis_mo mo;
Harald Welte6be350c2011-05-25 13:10:08 +0200639 } rack;
640 struct gsm_envabtse envabtse[4];
641 } bs11;
642 struct {
643 struct {
Harald Welted64c0bc2011-05-30 12:07:53 +0200644 struct gsm_abis_mo mo;
Harald Welte6be350c2011-05-25 13:10:08 +0200645 struct llist_head conn_groups;
646 } is;
647 struct {
Harald Welted64c0bc2011-05-30 12:07:53 +0200648 struct gsm_abis_mo mo;
Harald Welte6be350c2011-05-25 13:10:08 +0200649 struct llist_head conn_groups;
650 } con;
651 struct {
Harald Welted64c0bc2011-05-30 12:07:53 +0200652 struct gsm_abis_mo mo;
Harald Welte6be350c2011-05-25 13:10:08 +0200653 } dp;
654 struct {
Harald Welted64c0bc2011-05-30 12:07:53 +0200655 struct gsm_abis_mo mo;
Harald Welte6be350c2011-05-25 13:10:08 +0200656 } tf;
657 } rbs2000;
658 struct {
Harald Weltec8755af2011-07-28 00:22:17 +0200659 uint8_t bts_type;
Holger Hans Peter Freyther3e603482012-03-02 14:14:33 +0100660 unsigned int configured:1,
661 skip_reset:1,
Andreas Eversberg7d8fa342013-12-05 13:25:06 +0100662 no_loc_rel_cnf:1,
Holger Hans Peter Freyther3e603482012-03-02 14:14:33 +0100663 did_reset:1,
664 wait_reset:1;
Harald Weltec8755af2011-07-28 00:22:17 +0200665 struct osmo_timer_list reset_timer;
666 } nokia;
Harald Welte6be350c2011-05-25 13:10:08 +0200667 };
668
669 /* Not entirely sure how ip.access specific this is */
670 struct {
671 enum bts_gprs_mode mode;
672 struct {
Harald Welted64c0bc2011-05-30 12:07:53 +0200673 struct gsm_abis_mo mo;
Harald Welte6be350c2011-05-25 13:10:08 +0200674 uint16_t nsei;
675 uint8_t timer[7];
676 } nse;
677 struct {
Harald Welted64c0bc2011-05-30 12:07:53 +0200678 struct gsm_abis_mo mo;
Harald Welte6be350c2011-05-25 13:10:08 +0200679 uint16_t bvci;
680 uint8_t timer[11];
Harald Welte019f9132012-06-28 08:43:14 +0200681 struct gprs_rlc_cfg rlc_cfg;
Harald Welte6be350c2011-05-25 13:10:08 +0200682 } cell;
683 struct gsm_bts_gprs_nsvc nsvc[2];
684 uint8_t rac;
Andreas Eversberg0c8f9ca2013-03-16 16:31:26 +0100685 uint8_t net_ctrl_ord;
Harald Welte6be350c2011-05-25 13:10:08 +0200686 } gprs;
687
688 /* RACH NM values */
689 int rach_b_thresh;
690 int rach_ldavg_slots;
691
692 /* transceivers */
693 int num_trx;
694 struct llist_head trx_list;
695
Jacob Erlbeck65d114f2014-01-16 11:02:14 +0100696 /* SI compatibility hacks */
697 int force_combined_si;
698
Harald Welte6be350c2011-05-25 13:10:08 +0200699#ifdef ROLE_BSC
700 /* Abis NM queue */
701 struct llist_head abis_queue;
702 int abis_nm_pend;
703
704 struct gsm_network *network;
705
706 /* should the channel allocator allocate channels from high TRX to TRX0,
707 * rather than starting from TRX0 and go upwards? */
708 int chan_alloc_reverse;
709
710 enum neigh_list_manual_mode neigh_list_manual_mode;
711 /* parameters from which we build SYSTEM INFORMATION */
712 struct {
713 struct gsm48_rach_control rach_control;
714 uint8_t ncc_permitted;
715 struct gsm48_cell_sel_par cell_sel_par;
716 struct gsm48_si_selection_params cell_ro_sel_par; /* rest octet */
717 struct gsm48_cell_options cell_options;
718 struct gsm48_control_channel_descr chan_desc;
719 struct bitvec neigh_list;
720 struct bitvec cell_alloc;
721 struct bitvec si5_neigh_list;
722 struct {
723 /* bitmask large enough for all possible ARFCN's */
724 uint8_t neigh_list[1024/8];
725 uint8_t cell_alloc[1024/8];
726 /* If the user wants a different neighbor list in SI5 than in SI2 */
727 uint8_t si5_neigh_list[1024/8];
728 } data;
729 } si_common;
730
731 /* do we use static (user-defined) system information messages? (bitmask) */
732 uint32_t si_mode_static;
Holger Hans Peter Freythere30d40d2012-07-20 10:27:31 +0200733
734 /* exclude the BTS from the global RF Lock handling */
735 int excl_from_rf_lock;
Andreas Eversberga83d5112013-12-07 18:32:28 +0100736
737 /* supported codecs beside FR */
738 struct bts_codec_conf codec;
Harald Welte6be350c2011-05-25 13:10:08 +0200739#endif /* ROLE_BSC */
Harald Welte978714d2011-06-06 18:31:20 +0200740 void *role;
Harald Welte6be350c2011-05-25 13:10:08 +0200741};
742
743
Harald Welte3300c012011-06-05 13:31:33 +0200744struct gsm_bts *gsm_bts_alloc(void *talloc_ctx);
Harald Welte1449c9f2014-08-24 09:50:10 +0200745struct gsm_bts *gsm_bts_num(struct gsm_network *net, int num);
Harald Welte6be350c2011-05-25 13:10:08 +0200746
Harald Welte1449c9f2014-08-24 09:50:10 +0200747struct gsm_bts_trx *gsm_bts_trx_alloc(struct gsm_bts *bts);
Harald Welte4f8ad532011-09-19 14:21:51 +0200748struct gsm_bts_trx *gsm_bts_trx_num(const struct gsm_bts *bts, int num);
Harald Welte6be350c2011-05-25 13:10:08 +0200749
Harald Welte4ab9d7c2012-08-17 12:42:06 +0200750
751const struct value_string gsm_pchant_names[10];
752const struct value_string gsm_pchant_descs[10];
753const struct value_string gsm_lchant_names[6];
Harald Welte6be350c2011-05-25 13:10:08 +0200754const char *gsm_pchan_name(enum gsm_phys_chan_config c);
755enum gsm_phys_chan_config gsm_pchan_parse(const char *name);
756const char *gsm_lchant_name(enum gsm_chan_t c);
757const char *gsm_chreq_name(enum gsm_chreq_reason_t c);
Harald Welte4f8ad532011-09-19 14:21:51 +0200758char *gsm_trx_name(const struct gsm_bts_trx *trx);
759char *gsm_ts_name(const struct gsm_bts_trx_ts *ts);
760char *gsm_lchan_name(const struct gsm_lchan *lchan);
Harald Welte6be350c2011-05-25 13:10:08 +0200761const char *gsm_lchans_name(enum gsm_lchan_state s);
762
Harald Welte6be350c2011-05-25 13:10:08 +0200763
Harald Welteb7849982011-06-29 16:49:03 +0200764void gsm_abis_mo_reset(struct gsm_abis_mo *mo);
765
Harald Welte978714d2011-06-06 18:31:20 +0200766struct gsm_abis_mo *
767gsm_objclass2mo(struct gsm_bts *bts, uint8_t obj_class,
Harald Welte4f8ad532011-09-19 14:21:51 +0200768 const struct abis_om_obj_inst *obj_inst);
Harald Welte978714d2011-06-06 18:31:20 +0200769
770struct gsm_nm_state *
771gsm_objclass2nmstate(struct gsm_bts *bts, uint8_t obj_class,
Harald Welte4f8ad532011-09-19 14:21:51 +0200772 const struct abis_om_obj_inst *obj_inst);
Harald Welte978714d2011-06-06 18:31:20 +0200773void *
774gsm_objclass2obj(struct gsm_bts *bts, uint8_t obj_class,
Harald Welte4f8ad532011-09-19 14:21:51 +0200775 const struct abis_om_obj_inst *obj_inst);
Harald Welte978714d2011-06-06 18:31:20 +0200776
Harald Welteb7849982011-06-29 16:49:03 +0200777/* reset the state of all MO in the BTS */
778void gsm_bts_mo_reset(struct gsm_bts *bts);
779
Harald Weltef6093a42011-06-25 10:02:33 +0200780uint8_t gsm_ts2chan_nr(const struct gsm_bts_trx_ts *ts, uint8_t lchan_nr);
781uint8_t gsm_lchan2chan_nr(const struct gsm_lchan *lchan);
782
Holger Hans Peter Freyther06c9da62011-06-09 21:48:49 +0200783/*
784 * help with parsing regexps
785 */
786int gsm_parse_reg(void *ctx, regex_t *reg, char **str,
787 int argc, const char **argv) __attribute__ ((warn_unused_result));
788
Harald Welte1fe24122014-01-19 17:18:21 +0100789static inline uint8_t gsm_ts_tsc(const struct gsm_bts_trx_ts *ts)
790{
791 if (ts->tsc != -1)
792 return ts->tsc;
793 else
794 return ts->trx->bts->tsc;
795}
Holger Hans Peter Freyther06c9da62011-06-09 21:48:49 +0200796
797
Harald Welte6be350c2011-05-25 13:10:08 +0200798#endif