blob: 1ceb105df4a7255092630606624802e83c5284d9 [file] [log] [blame]
Harald Welte52b1f982008-12-23 20:25:15 +00001#ifndef _GSM_DATA_H
2#define _GSM_DATA_H
3
4#include <sys/types.h>
5
Harald Weltefcd24452009-06-20 18:15:19 +02006enum gsm_band {
7 GSM_BAND_400,
8 GSM_BAND_850,
9 GSM_BAND_900,
10 GSM_BAND_1800,
11 GSM_BAND_1900,
12};
13
Harald Welte4bfdfe72009-06-10 23:11:52 +080014enum gsm_phys_chan_config {
15 GSM_PCHAN_NONE,
16 GSM_PCHAN_CCCH,
17 GSM_PCHAN_CCCH_SDCCH4,
18 GSM_PCHAN_TCH_F,
19 GSM_PCHAN_TCH_H,
20 GSM_PCHAN_SDCCH8_SACCH8C,
21 GSM_PCHAN_UNKNOWN,
22};
23
24enum gsm_chan_t {
25 GSM_LCHAN_NONE,
26 GSM_LCHAN_SDCCH,
27 GSM_LCHAN_TCH_F,
28 GSM_LCHAN_TCH_H,
29 GSM_LCHAN_UNKNOWN,
30};
31
32
33/* Channel Request reason */
34enum gsm_chreq_reason_t {
35 GSM_CHREQ_REASON_EMERG,
36 GSM_CHREQ_REASON_PAG,
37 GSM_CHREQ_REASON_CALL,
38 GSM_CHREQ_REASON_LOCATION_UPD,
39 GSM_CHREQ_REASON_OTHER,
40};
41
Harald Welte255539c2008-12-28 02:26:27 +000042#include <openbsc/timer.h>
Holger Freyther1adb4ff2009-02-04 00:04:52 +000043#include <openbsc/gsm_04_08.h>
Harald Welte9943c5b2009-07-29 15:41:29 +020044#include <openbsc/abis_rsl.h>
Harald Welte4bfdfe72009-06-10 23:11:52 +080045#include <openbsc/mncc.h>
Harald Welte93e9d172009-06-20 19:04:31 +020046#include <openbsc/tlv.h>
Harald Welte255539c2008-12-28 02:26:27 +000047
Harald Welte8470bf22008-12-25 23:28:35 +000048#define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
49
Harald Welte85770c72009-01-18 17:47:32 +000050#define TRX_NR_TS 8
Harald Welte8470bf22008-12-25 23:28:35 +000051#define TS_MAX_LCHAN 8
Harald Welte52b1f982008-12-23 20:25:15 +000052
53#define HARDCODED_ARFCN 123
Harald Welte02b0e092009-02-28 13:11:07 +000054#define HARDCODED_TSC 7
Harald Welte78f2f502009-05-23 16:56:52 +000055#define HARDCODED_BSIC 0x3f /* NCC = 7 / BCC = 7 */
Harald Welte52b1f982008-12-23 20:25:15 +000056
Harald Welte63589be2009-08-06 17:38:10 +020057/* for multi-drop config */
58#define HARDCODED_BTS0_TS 1
59#define HARDCODED_BTS1_TS 6
60#define HARDCODED_BTS2_TS 11
61
Harald Welte8e1e3ee2009-02-01 13:32:45 +000062enum gsm_hooks {
63 GSM_HOOK_NM_SWLOAD,
Harald Welte0932d1e2009-02-16 22:53:52 +000064 GSM_HOOK_RR_PAGING,
65};
66
67enum gsm_paging_event {
68 GSM_PAGING_SUCCEEDED,
69 GSM_PAGING_EXPIRED,
Holger Freyther85a7b362009-04-18 13:48:55 +020070 GSM_PAGING_OOM,
Harald Welte8e1e3ee2009-02-01 13:32:45 +000071};
72
73struct msgb;
74typedef int gsm_cbfn(unsigned int hooknum,
75 unsigned int event,
76 struct msgb *msg,
77 void *data, void *param);
78
Holger Freytherc6ea9db2008-12-30 19:18:21 +000079/*
80 * Use the channel. As side effect the lchannel recycle timer
81 * will be started.
82 */
Harald Welteb9c758b2009-07-05 14:02:46 +020083#define LCHAN_RELEASE_TIMEOUT 20, 0
Holger Freytherc6ea9db2008-12-30 19:18:21 +000084#define use_lchan(lchan) \
85 do { lchan->use_count++; \
Holger Freyther4f584c32009-06-02 02:55:07 +000086 DEBUGP(DCC, "lchan (bts=%d,trx=%d,ts=%d,ch=%d) increases usage to: %d\n", \
87 lchan->ts->trx->bts->nr, lchan->ts->trx->nr, lchan->ts->nr, \
88 lchan->nr, lchan->use_count); \
Harald Welteff117a82009-05-23 05:22:08 +000089 bsc_schedule_timer(&lchan->release_timer, LCHAN_RELEASE_TIMEOUT); } while(0);
Holger Freytherc6ea9db2008-12-30 19:18:21 +000090
91#define put_lchan(lchan) \
Holger Freyther4f584c32009-06-02 02:55:07 +000092 do { lchan->use_count--; \
93 DEBUGP(DCC, "lchan (bts=%d,trx=%d,ts=%d,ch=%d) decreases usage to: %d\n", \
94 lchan->ts->trx->bts->nr, lchan->ts->trx->nr, lchan->ts->nr, \
95 lchan->nr, lchan->use_count); \
96 } while(0);
97
Holger Freytherc6ea9db2008-12-30 19:18:21 +000098
Harald Welte52b1f982008-12-23 20:25:15 +000099/* communications link with a BTS */
100struct gsm_bts_link {
101 struct gsm_bts *bts;
102};
103
Harald Welte49f48b82009-02-17 15:29:33 +0000104struct gsm_lchan;
105struct gsm_subscriber;
Harald Welte4bfdfe72009-06-10 23:11:52 +0800106struct gsm_mncc;
Harald Welte805f6442009-07-28 18:25:29 +0200107struct rtp_socket;
Harald Welte49f48b82009-02-17 15:29:33 +0000108
Harald Weltebbcc7a52009-02-14 19:45:44 +0000109/* Network Management State */
110struct gsm_nm_state {
111 u_int8_t operational;
112 u_int8_t administrative;
Harald Welte8c1d0e42009-02-15 03:38:12 +0000113 u_int8_t availability;
Harald Weltebbcc7a52009-02-14 19:45:44 +0000114};
Harald Weltebbcc7a52009-02-14 19:45:44 +0000115
Holger Freyther73487a22008-12-31 18:53:57 +0000116/*
117 * LOCATION UPDATING REQUEST state
118 *
119 * Our current operation is:
120 * - Get imei/tmsi
121 * - Accept/Reject according to global policy
122 */
123struct gsm_loc_updating_operation {
124 struct timer_list updating_timer;
125 int waiting_for_imsi : 1;
126 int waiting_for_imei : 1;
127};
128
Harald Welte08d91a52009-08-30 15:37:11 +0900129#define MAX_A5_KEY_LEN (128/8)
130#define RSL_ENC_ALG_A5(x) (x+1)
131
Harald Welte8470bf22008-12-25 23:28:35 +0000132struct gsm_lchan {
133 /* The TS that we're part of */
134 struct gsm_bts_trx_ts *ts;
135 /* The logical subslot number in the TS */
136 u_int8_t nr;
Harald Welte45b407a2009-05-23 15:51:12 +0000137 /* The logical channel type */
Harald Welte8470bf22008-12-25 23:28:35 +0000138 enum gsm_chan_t type;
Harald Welte9943c5b2009-07-29 15:41:29 +0200139 /* RSL channel mode */
140 enum rsl_cmod_spd rsl_cmode;
Harald Welte45b407a2009-05-23 15:51:12 +0000141 /* If TCH, traffic channel mode */
Harald Welte9943c5b2009-07-29 15:41:29 +0200142 enum gsm48_chan_mode tch_mode;
Harald Welted4c9bf32009-02-15 16:56:18 +0000143 /* Power levels for MS and BTS */
144 u_int8_t bs_power;
145 u_int8_t ms_power;
Harald Welte08d91a52009-08-30 15:37:11 +0900146 /* Encryption information */
147 struct {
148 u_int8_t alg_id;
149 u_int8_t key_len;
150 u_int8_t key[MAX_A5_KEY_LEN];
151 } encr;
Harald Welted4c9bf32009-02-15 16:56:18 +0000152
Harald Welte8470bf22008-12-25 23:28:35 +0000153 /* To whom we are allocated at the moment */
154 struct gsm_subscriber *subscr;
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000155
156 /* Timer started to release the channel */
157 struct timer_list release_timer;
Harald Weltea3d04382008-12-27 17:02:56 +0000158
Harald Welteb7e81162009-08-10 00:26:10 +0200159 struct timer_list T3101;
160
Holger Freyther73487a22008-12-31 18:53:57 +0000161 /*
162 * Operations that have a state and might be pending
163 */
164 struct gsm_loc_updating_operation *loc_operation;
165
Holger Freytherb7193e42008-12-29 17:44:08 +0000166 /* use count. how many users use this channel */
167 unsigned int use_count;
Harald Welte8470bf22008-12-25 23:28:35 +0000168};
169
Harald Welte85770c72009-01-18 17:47:32 +0000170struct gsm_e1_subslot {
171 /* Number of E1 link */
172 u_int8_t e1_nr;
173 /* Number of E1 TS inside E1 link */
174 u_int8_t e1_ts;
175 /* Sub-slot within the E1 TS, 0xff if full TS */
176 u_int8_t e1_ts_ss;
177};
178
Harald Welte52b1f982008-12-23 20:25:15 +0000179#define BTS_TRX_F_ACTIVATED 0x0001
180/* One Timeslot in a TRX */
181struct gsm_bts_trx_ts {
182 struct gsm_bts_trx *trx;
183 /* number of this timeslot at the TRX */
184 u_int8_t nr;
185
Harald Welte8470bf22008-12-25 23:28:35 +0000186 enum gsm_phys_chan_config pchan;
187
Harald Welte52b1f982008-12-23 20:25:15 +0000188 unsigned int flags;
Harald Weltebbcc7a52009-02-14 19:45:44 +0000189 struct gsm_nm_state nm_state;
Harald Welte93e9d172009-06-20 19:04:31 +0200190 struct tlv_parsed nm_attr;
Harald Welte39c7deb2009-08-09 21:49:48 +0200191 u_int8_t nm_chan_comb;
Harald Welte8470bf22008-12-25 23:28:35 +0000192
Harald Welte85770c72009-01-18 17:47:32 +0000193 /* To which E1 subslot are we connected */
194 struct gsm_e1_subslot e1_link;
Harald Welte75099262009-02-16 21:12:08 +0000195 struct {
196 u_int32_t bound_ip;
197 u_int16_t bound_port;
Harald Welte20855542009-07-12 09:50:35 +0200198 u_int8_t rtp_payload2;
199 u_int16_t conn_id;
Harald Welte805f6442009-07-28 18:25:29 +0200200 struct rtp_socket *rtp_socket;
Harald Welte75099262009-02-16 21:12:08 +0000201 } abis_ip;
Harald Welte85770c72009-01-18 17:47:32 +0000202
Harald Welte8470bf22008-12-25 23:28:35 +0000203 struct gsm_lchan lchan[TS_MAX_LCHAN];
Harald Welte52b1f982008-12-23 20:25:15 +0000204};
205
206/* One TRX in a BTS */
207struct gsm_bts_trx {
Harald Weltee441d9c2009-06-21 16:17:15 +0200208 /* list header in bts->trx_list */
209 struct llist_head list;
210
Harald Welte52b1f982008-12-23 20:25:15 +0000211 struct gsm_bts *bts;
212 /* number of this TRX in the BTS */
213 u_int8_t nr;
Harald Welte1fa60c82009-02-09 18:13:26 +0000214 /* how do we talk RSL with this TRX? */
Harald Welte42581822009-08-08 16:12:58 +0200215 struct gsm_e1_subslot rsl_e1_link;
216 u_int8_t rsl_tei;
Harald Welte1fa60c82009-02-09 18:13:26 +0000217 struct e1inp_sign_link *rsl_link;
Harald Welte42581822009-08-08 16:12:58 +0200218
Harald Weltebbcc7a52009-02-14 19:45:44 +0000219 struct gsm_nm_state nm_state;
Harald Welte93e9d172009-06-20 19:04:31 +0200220 struct tlv_parsed nm_attr;
Harald Welte8c1d0e42009-02-15 03:38:12 +0000221 struct {
222 struct gsm_nm_state nm_state;
223 } bb_transc;
Harald Welte52b1f982008-12-23 20:25:15 +0000224
225 u_int16_t arfcn;
Harald Weltefcd24452009-06-20 18:15:19 +0200226 int nominal_power; /* in dBm */
227 unsigned int max_power_red; /* in actual dB */
Harald Welte8b697c72009-06-05 19:18:45 +0000228
229 union {
230 struct {
231 struct {
232 struct gsm_nm_state nm_state;
233 } bbsig;
234 struct {
235 struct gsm_nm_state nm_state;
236 } pa;
237 } bs11;
238 };
Harald Welte85770c72009-01-18 17:47:32 +0000239 struct gsm_bts_trx_ts ts[TRX_NR_TS];
Harald Welte52b1f982008-12-23 20:25:15 +0000240};
241
Harald Welte978cb422009-01-18 17:57:27 +0000242enum gsm_bts_type {
243 GSM_BTS_TYPE_UNKNOWN,
244 GSM_BTS_TYPE_BS11,
Harald Weltebbcc7a52009-02-14 19:45:44 +0000245 GSM_BTS_TYPE_NANOBTS_900,
246 GSM_BTS_TYPE_NANOBTS_1800,
Harald Welte978cb422009-01-18 17:57:27 +0000247};
248
Holger Freytherceb59b72009-02-06 18:54:00 +0000249/**
250 * A pending paging request
251 */
252struct gsm_paging_request {
Harald Welte0932d1e2009-02-16 22:53:52 +0000253 /* list_head for list of all paging requests */
Holger Freytherceb59b72009-02-06 18:54:00 +0000254 struct llist_head entry;
Harald Welte0932d1e2009-02-16 22:53:52 +0000255 /* the subscriber which we're paging. Later gsm_paging_request
256 * should probably become a part of the gsm_subscriber struct? */
Holger Freytherceb59b72009-02-06 18:54:00 +0000257 struct gsm_subscriber *subscr;
Harald Welte0932d1e2009-02-16 22:53:52 +0000258 /* back-pointer to the BTS on which we are paging */
Holger Freytherceb59b72009-02-06 18:54:00 +0000259 struct gsm_bts *bts;
Harald Welte0932d1e2009-02-16 22:53:52 +0000260 /* what kind of channel type do we ask the MS to establish */
Holger Freytherceb59b72009-02-06 18:54:00 +0000261 int chan_type;
Harald Weltecd06bfb2009-02-10 17:33:56 +0000262
263 /* Timer 3113: how long do we try to page? */
264 struct timer_list T3113;
Harald Welte0932d1e2009-02-16 22:53:52 +0000265
266 /* callback to be called in case paging completes */
267 gsm_cbfn *cbfn;
268 void *cbfn_param;
Holger Freytherceb59b72009-02-06 18:54:00 +0000269};
Harald Weltecd06bfb2009-02-10 17:33:56 +0000270#define T3113_VALUE 60, 0
Holger Freytherceb59b72009-02-06 18:54:00 +0000271
272/*
273 * This keeps track of the paging status of one BTS. It
274 * includes a number of pending requests, a back pointer
275 * to the gsm_bts, a timer and some more state.
276 */
277struct gsm_bts_paging_state {
Holger Freytherceb59b72009-02-06 18:54:00 +0000278 /* pending requests */
279 struct llist_head pending_requests;
280 struct gsm_paging_request *last_request;
281 struct gsm_bts *bts;
282
Harald Welte75a1fa82009-02-17 01:39:41 +0000283 struct timer_list work_timer;
284
Holger Freyther392209c2009-02-10 00:06:19 +0000285 /* load */
286 u_int16_t available_slots;
Holger Freytherceb59b72009-02-06 18:54:00 +0000287};
288
Harald Welte8b697c72009-06-05 19:18:45 +0000289struct gsm_envabtse {
290 struct gsm_nm_state nm_state;
291};
292
Harald Welte52b1f982008-12-23 20:25:15 +0000293/* One BTS */
294struct gsm_bts {
Harald Weltee441d9c2009-06-21 16:17:15 +0200295 /* list header in net->bts_list */
296 struct llist_head list;
297
Harald Welte52b1f982008-12-23 20:25:15 +0000298 struct gsm_network *network;
299 /* number of ths BTS in network */
300 u_int8_t nr;
301 /* location area code of this BTS */
302 u_int8_t location_area_code;
Harald Welte02b0e092009-02-28 13:11:07 +0000303 /* Training Sequence Code */
304 u_int8_t tsc;
Harald Welte78f2f502009-05-23 16:56:52 +0000305 /* Base Station Identification Code (BSIC) */
306 u_int8_t bsic;
Harald Welte978cb422009-01-18 17:57:27 +0000307 /* type of BTS */
308 enum gsm_bts_type type;
Harald Weltefcd24452009-06-20 18:15:19 +0200309 enum gsm_band band;
Harald Weltefc0d9522009-08-10 13:46:55 +0200310 /* should the channel allocator allocate channels from high TRX to TRX0,
311 * rather than starting from TRX0 and go upwards? */
312 int chan_alloc_reverse;
Harald Welte (local)5dececf2009-08-12 13:28:23 +0200313 int cell_barred;
Harald Welte (local)0e451d02009-08-13 10:14:26 +0200314 /* maximum Tx power that the MS is permitted to use in this cell */
315 int ms_max_power;
Harald Weltefc0d9522009-08-10 13:46:55 +0200316
Harald Welte1fa60c82009-02-09 18:13:26 +0000317 /* how do we talk OML with this TRX? */
Harald Welte42581822009-08-08 16:12:58 +0200318 struct gsm_e1_subslot oml_e1_link;
319 u_int8_t oml_tei;
Harald Welte1fa60c82009-02-09 18:13:26 +0000320 struct e1inp_sign_link *oml_link;
Harald Welte52b1f982008-12-23 20:25:15 +0000321
322 /* Abis network management O&M handle */
323 struct abis_nm_h *nmh;
Harald Weltebbcc7a52009-02-14 19:45:44 +0000324 struct gsm_nm_state nm_state;
Harald Welte93e9d172009-06-20 19:04:31 +0200325 struct tlv_parsed nm_attr;
Harald Welte978cb422009-01-18 17:57:27 +0000326
Harald Welte52b1f982008-12-23 20:25:15 +0000327 /* number of this BTS on given E1 link */
328 u_int8_t bts_nr;
329
Holger Freyther1adb4ff2009-02-04 00:04:52 +0000330 struct gsm48_control_channel_descr chan_desc;
331
Holger Freytherceb59b72009-02-06 18:54:00 +0000332 /* paging state and control */
333 struct gsm_bts_paging_state paging;
334
Harald Welte52b1f982008-12-23 20:25:15 +0000335 /* CCCH is on C0 */
336 struct gsm_bts_trx *c0;
Harald Weltebbcc7a52009-02-14 19:45:44 +0000337
338 struct {
339 struct gsm_nm_state nm_state;
340 } site_mgr;
Harald Welteedb37782009-05-01 14:59:07 +0000341
342 /* ip.accesss Unit ID's have Site/BTS/TRX layout */
Harald Welte7b26bcb2009-05-28 11:39:21 +0000343 union {
344 struct {
345 u_int16_t site_id;
346 u_int16_t bts_id;
347 } ip_access;
348 struct {
349 struct {
350 struct gsm_nm_state nm_state;
351 } cclk;
352 struct {
353 struct gsm_nm_state nm_state;
354 } rack;
Harald Welte8b697c72009-06-05 19:18:45 +0000355 struct gsm_envabtse envabtse[4];
Harald Welte7b26bcb2009-05-28 11:39:21 +0000356 } bs11;
357 };
Harald Weltebbcc7a52009-02-14 19:45:44 +0000358
Harald Welte52b1f982008-12-23 20:25:15 +0000359 /* transceivers */
360 int num_trx;
Harald Weltee441d9c2009-06-21 16:17:15 +0200361 struct llist_head trx_list;
Harald Welte52b1f982008-12-23 20:25:15 +0000362};
363
Harald Welte (local)69de3972009-08-12 14:42:23 +0200364enum gsm_auth_policy {
365 GSM_AUTH_POLICY_CLOSED, /* only subscribers authorized in DB */
366 GSM_AUTH_POLICY_ACCEPT_ALL, /* accept everyone, even if not authorized in DB */
367 GSM_AUTH_POLICY_TOKEN, /* accept first, send token per sms, then revoke authorization */
368};
369
Harald Welte52b1f982008-12-23 20:25:15 +0000370struct gsm_network {
371 /* global parameters */
Harald Welteb84e2f42008-12-28 23:42:04 +0000372 u_int16_t country_code;
373 u_int16_t network_code;
Harald Weltec6ba9c22008-12-30 18:01:02 +0000374 char *name_long;
375 char *name_short;
Harald Welte (local)69de3972009-08-12 14:42:23 +0200376 enum gsm_auth_policy auth_policy;
Harald Welte4381cfe2009-08-30 15:47:06 +0900377 int a5_encryption;
Harald Welte52b1f982008-12-23 20:25:15 +0000378
Harald Welte4bfdfe72009-06-10 23:11:52 +0800379 /* layer 4 */
380 int (*mncc_recv) (struct gsm_network *net, int msg_type, void *arg);
381 struct llist_head upqueue;
382 struct llist_head trans_list;
383
Harald Welte52b1f982008-12-23 20:25:15 +0000384 unsigned int num_bts;
Harald Weltee441d9c2009-06-21 16:17:15 +0200385 struct llist_head bts_list;
Harald Welte52b1f982008-12-23 20:25:15 +0000386};
387
Harald Welte7e310b12009-03-30 20:56:32 +0000388#define SMS_HDR_SIZE 128
389#define SMS_TEXT_SIZE 256
390struct gsm_sms {
391 u_int64_t id;
392 struct gsm_subscriber *sender;
393 struct gsm_subscriber *receiver;
394
Harald Welteb9c758b2009-07-05 14:02:46 +0200395 unsigned long validity_minutes;
Harald Welte76042182009-08-08 16:03:15 +0200396 u_int8_t reply_path_req;
397 u_int8_t status_rep_req;
398 u_int8_t ud_hdr_ind;
399 u_int8_t protocol_id;
400 u_int8_t data_coding_scheme;
401 u_int8_t msg_ref;
402 char dest_addr[20+1]; /* DA LV is 12 bytes max, i.e. 10 bytes
403 * BCD == 20 bytes string */
404 u_int8_t user_data_len;
405 u_int8_t user_data[SMS_TEXT_SIZE];
Harald Weltef3efc592009-07-27 20:11:35 +0200406
Harald Welte7e310b12009-03-30 20:56:32 +0000407 char text[SMS_TEXT_SIZE];
408};
409
Harald Weltee441d9c2009-06-21 16:17:15 +0200410struct gsm_network *gsm_network_init(u_int16_t country_code, u_int16_t network_code,
Harald Welte4bfdfe72009-06-10 23:11:52 +0800411 int (*mncc_recv)(struct gsm_network *, int, void *));
Harald Weltee441d9c2009-06-21 16:17:15 +0200412struct gsm_bts *gsm_bts_alloc(struct gsm_network *net, enum gsm_bts_type type,
413 u_int8_t tsc, u_int8_t bsic);
414struct gsm_bts_trx *gsm_bts_trx_alloc(struct gsm_bts *bts);
415
416struct gsm_bts *gsm_bts_num(struct gsm_network *net, int num);
417struct gsm_bts_trx *gsm_bts_trx_num(struct gsm_bts *bts, int num);
Harald Welte8470bf22008-12-25 23:28:35 +0000418
Harald Weltea72c98e2009-01-04 16:10:38 +0000419const char *gsm_pchan_name(enum gsm_phys_chan_config c);
Harald Welte65da9122009-08-07 00:32:22 +0200420enum gsm_phys_chan_config gsm_pchan_parse(const char *name);
Harald Weltea72c98e2009-01-04 16:10:38 +0000421const char *gsm_lchan_name(enum gsm_chan_t c);
422const char *gsm_chreq_name(enum gsm_chreq_reason_t c);
Harald Welte23a68632009-02-19 17:06:42 +0000423char *gsm_ts_name(struct gsm_bts_trx_ts *ts);
Harald Weltea72c98e2009-01-04 16:10:38 +0000424
Harald Weltead384642008-12-26 10:20:07 +0000425enum gsm_e1_event {
426 EVT_E1_NONE,
Harald Welte1fa60c82009-02-09 18:13:26 +0000427 EVT_E1_TEI_UP,
428 EVT_E1_TEI_DN,
Harald Weltead384642008-12-26 10:20:07 +0000429};
430
Harald Weltecd06bfb2009-02-10 17:33:56 +0000431void set_ts_e1link(struct gsm_bts_trx_ts *ts, u_int8_t e1_nr,
432 u_int8_t e1_ts, u_int8_t e1_ts_ss);
Harald Welte1d014a52009-08-08 15:38:29 +0200433enum gsm_bts_type parse_btstype(const char *arg);
Holger Hans Peter Freyther2dceae62009-06-12 17:39:38 +0200434const char *btstype2str(enum gsm_bts_type type);
Harald Weltebe991492009-05-23 13:56:40 +0000435struct gsm_bts *gsm_bts_by_lac(struct gsm_network *net, unsigned int lac,
436 struct gsm_bts *start_bts);
Harald Welte32201c12009-03-10 12:15:10 +0000437
Harald Weltefcd24452009-06-20 18:15:19 +0200438char *gsm_band_name(enum gsm_band band);
Harald Welte42581822009-08-08 16:12:58 +0200439enum gsm_band gsm_band_parse(const char *mhz);
Harald Weltefcd24452009-06-20 18:15:19 +0200440
Andreas Eversberg8226fa72009-06-29 15:19:38 +0200441extern void *tall_bsc_ctx;
Harald Welte2cf161b2009-06-20 22:36:41 +0200442
Harald Welte32201c12009-03-10 12:15:10 +0000443static inline int is_ipaccess_bts(struct gsm_bts *bts)
444{
445 switch (bts->type) {
446 case GSM_BTS_TYPE_NANOBTS_900:
447 case GSM_BTS_TYPE_NANOBTS_1800:
448 return 1;
449 default:
450 break;
451 }
452 return 0;
453}
454
Harald Welte5b570672009-08-10 10:08:01 +0200455static inline int is_siemens_bts(struct gsm_bts *bts)
456{
457 switch (bts->type) {
458 case GSM_BTS_TYPE_BS11:
459 return 1;
460 default:
461 break;
462 }
463
464 return 0;
465}
466
Harald Welte (local)69de3972009-08-12 14:42:23 +0200467
468enum gsm_auth_policy gsm_auth_policy_parse(const char *arg);
469const char *gsm_auth_policy_name(enum gsm_auth_policy policy);
470
Harald Welte52b1f982008-12-23 20:25:15 +0000471#endif