blob: 7c8cf7cac9bb8850a86f381ed5769ef917de3985 [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 Welteb8955072009-06-12 02:41:10 +080083#define LCHAN_RELEASE_TIMEOUT 10, 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 Welte4bfdfe72009-06-10 23:11:52 +0800109/* One transaction */
110struct gsm_trans {
111 /* Entry in list of all transactions */
112 struct llist_head entry;
Harald Weltea3d04382008-12-27 17:02:56 +0000113
Harald Welteaa0b29c2009-07-23 18:56:43 +0200114 /* The protocol within which we live */
115 u_int8_t protocol;
116
Harald Welte4bfdfe72009-06-10 23:11:52 +0800117 /* The current transaction ID */
118 u_int8_t transaction_id;
119
Harald Welteaa0b29c2009-07-23 18:56:43 +0200120 /* To whom we belong, unique identifier of remote MM entity */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800121 struct gsm_subscriber *subscr;
122
Harald Welteaa0b29c2009-07-23 18:56:43 +0200123 /* The LCHAN that we're currently using to transmit messages */
124 struct gsm_lchan *lchan;
125
126 /* reference from MNCC or other application */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800127 u_int32_t callref;
128
Harald Welteaa0b29c2009-07-23 18:56:43 +0200129 union {
130 struct {
Harald Welte4bfdfe72009-06-10 23:11:52 +0800131
Harald Welteaa0b29c2009-07-23 18:56:43 +0200132 /* current call state */
133 int state;
134
135 /* current timer and message queue */
136 int Tcurrent; /* current CC timer */
137 int T308_second; /* used to send release again */
138 struct timer_list timer;
139 struct gsm_mncc msg; /* stores setup/disconnect/release message */
140 } cc;
141 struct {
142 } sms;
143 };
Harald Weltea3d04382008-12-27 17:02:56 +0000144};
145
146
Harald Weltebbcc7a52009-02-14 19:45:44 +0000147/* Network Management State */
148struct gsm_nm_state {
149 u_int8_t operational;
150 u_int8_t administrative;
Harald Welte8c1d0e42009-02-15 03:38:12 +0000151 u_int8_t availability;
Harald Weltebbcc7a52009-02-14 19:45:44 +0000152};
Harald Weltebbcc7a52009-02-14 19:45:44 +0000153
Holger Freyther73487a22008-12-31 18:53:57 +0000154/*
155 * LOCATION UPDATING REQUEST state
156 *
157 * Our current operation is:
158 * - Get imei/tmsi
159 * - Accept/Reject according to global policy
160 */
161struct gsm_loc_updating_operation {
162 struct timer_list updating_timer;
163 int waiting_for_imsi : 1;
164 int waiting_for_imei : 1;
165};
166
Harald Welte8470bf22008-12-25 23:28:35 +0000167struct gsm_lchan {
168 /* The TS that we're part of */
169 struct gsm_bts_trx_ts *ts;
170 /* The logical subslot number in the TS */
171 u_int8_t nr;
Harald Welte45b407a2009-05-23 15:51:12 +0000172 /* The logical channel type */
Harald Welte8470bf22008-12-25 23:28:35 +0000173 enum gsm_chan_t type;
Harald Welte9943c5b2009-07-29 15:41:29 +0200174 /* RSL channel mode */
175 enum rsl_cmod_spd rsl_cmode;
Harald Welte45b407a2009-05-23 15:51:12 +0000176 /* If TCH, traffic channel mode */
Harald Welte9943c5b2009-07-29 15:41:29 +0200177 enum gsm48_chan_mode tch_mode;
Harald Welted4c9bf32009-02-15 16:56:18 +0000178 /* Power levels for MS and BTS */
179 u_int8_t bs_power;
180 u_int8_t ms_power;
181
Harald Welte8470bf22008-12-25 23:28:35 +0000182 /* To whom we are allocated at the moment */
183 struct gsm_subscriber *subscr;
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000184
185 /* Timer started to release the channel */
186 struct timer_list release_timer;
Harald Weltea3d04382008-12-27 17:02:56 +0000187
Holger Freyther73487a22008-12-31 18:53:57 +0000188 /*
189 * Operations that have a state and might be pending
190 */
191 struct gsm_loc_updating_operation *loc_operation;
192
Holger Freytherb7193e42008-12-29 17:44:08 +0000193 /* use count. how many users use this channel */
194 unsigned int use_count;
Harald Welte8470bf22008-12-25 23:28:35 +0000195};
196
Harald Welte85770c72009-01-18 17:47:32 +0000197struct gsm_e1_subslot {
198 /* Number of E1 link */
199 u_int8_t e1_nr;
200 /* Number of E1 TS inside E1 link */
201 u_int8_t e1_ts;
202 /* Sub-slot within the E1 TS, 0xff if full TS */
203 u_int8_t e1_ts_ss;
204};
205
Harald Welte52b1f982008-12-23 20:25:15 +0000206#define BTS_TRX_F_ACTIVATED 0x0001
207/* One Timeslot in a TRX */
208struct gsm_bts_trx_ts {
209 struct gsm_bts_trx *trx;
210 /* number of this timeslot at the TRX */
211 u_int8_t nr;
212
Harald Welte8470bf22008-12-25 23:28:35 +0000213 enum gsm_phys_chan_config pchan;
214
Harald Welte52b1f982008-12-23 20:25:15 +0000215 unsigned int flags;
Harald Weltebbcc7a52009-02-14 19:45:44 +0000216 struct gsm_nm_state nm_state;
Harald Welte93e9d172009-06-20 19:04:31 +0200217 struct tlv_parsed nm_attr;
Harald Welte8470bf22008-12-25 23:28:35 +0000218
Harald Welte85770c72009-01-18 17:47:32 +0000219 /* To which E1 subslot are we connected */
220 struct gsm_e1_subslot e1_link;
Harald Welte75099262009-02-16 21:12:08 +0000221 struct {
222 u_int32_t bound_ip;
223 u_int16_t bound_port;
Harald Welte20855542009-07-12 09:50:35 +0200224 u_int8_t rtp_payload2;
225 u_int16_t conn_id;
Harald Welte805f6442009-07-28 18:25:29 +0200226 struct rtp_socket *rtp_socket;
Harald Welte75099262009-02-16 21:12:08 +0000227 } abis_ip;
Harald Welte85770c72009-01-18 17:47:32 +0000228
Harald Welte8470bf22008-12-25 23:28:35 +0000229 struct gsm_lchan lchan[TS_MAX_LCHAN];
Harald Welte52b1f982008-12-23 20:25:15 +0000230};
231
232/* One TRX in a BTS */
233struct gsm_bts_trx {
Harald Weltee441d9c2009-06-21 16:17:15 +0200234 /* list header in bts->trx_list */
235 struct llist_head list;
236
Harald Welte52b1f982008-12-23 20:25:15 +0000237 struct gsm_bts *bts;
238 /* number of this TRX in the BTS */
239 u_int8_t nr;
Harald Welte1fa60c82009-02-09 18:13:26 +0000240 /* how do we talk RSL with this TRX? */
241 struct e1inp_sign_link *rsl_link;
Harald Weltebbcc7a52009-02-14 19:45:44 +0000242 struct gsm_nm_state nm_state;
Harald Welte93e9d172009-06-20 19:04:31 +0200243 struct tlv_parsed nm_attr;
Harald Welte8c1d0e42009-02-15 03:38:12 +0000244 struct {
245 struct gsm_nm_state nm_state;
246 } bb_transc;
Harald Welte52b1f982008-12-23 20:25:15 +0000247
248 u_int16_t arfcn;
Harald Weltefcd24452009-06-20 18:15:19 +0200249 int nominal_power; /* in dBm */
250 unsigned int max_power_red; /* in actual dB */
Harald Welte8b697c72009-06-05 19:18:45 +0000251
252 union {
253 struct {
254 struct {
255 struct gsm_nm_state nm_state;
256 } bbsig;
257 struct {
258 struct gsm_nm_state nm_state;
259 } pa;
260 } bs11;
261 };
Harald Welte85770c72009-01-18 17:47:32 +0000262 struct gsm_bts_trx_ts ts[TRX_NR_TS];
Harald Welte52b1f982008-12-23 20:25:15 +0000263};
264
Harald Welte978cb422009-01-18 17:57:27 +0000265enum gsm_bts_type {
266 GSM_BTS_TYPE_UNKNOWN,
267 GSM_BTS_TYPE_BS11,
Harald Weltebbcc7a52009-02-14 19:45:44 +0000268 GSM_BTS_TYPE_NANOBTS_900,
269 GSM_BTS_TYPE_NANOBTS_1800,
Harald Welte978cb422009-01-18 17:57:27 +0000270};
271
Holger Freytherceb59b72009-02-06 18:54:00 +0000272/**
273 * A pending paging request
274 */
275struct gsm_paging_request {
Harald Welte0932d1e2009-02-16 22:53:52 +0000276 /* list_head for list of all paging requests */
Holger Freytherceb59b72009-02-06 18:54:00 +0000277 struct llist_head entry;
Harald Welte0932d1e2009-02-16 22:53:52 +0000278 /* the subscriber which we're paging. Later gsm_paging_request
279 * should probably become a part of the gsm_subscriber struct? */
Holger Freytherceb59b72009-02-06 18:54:00 +0000280 struct gsm_subscriber *subscr;
Harald Welte0932d1e2009-02-16 22:53:52 +0000281 /* back-pointer to the BTS on which we are paging */
Holger Freytherceb59b72009-02-06 18:54:00 +0000282 struct gsm_bts *bts;
Harald Welte0932d1e2009-02-16 22:53:52 +0000283 /* what kind of channel type do we ask the MS to establish */
Holger Freytherceb59b72009-02-06 18:54:00 +0000284 int chan_type;
Harald Weltecd06bfb2009-02-10 17:33:56 +0000285
286 /* Timer 3113: how long do we try to page? */
287 struct timer_list T3113;
Harald Welte0932d1e2009-02-16 22:53:52 +0000288
289 /* callback to be called in case paging completes */
290 gsm_cbfn *cbfn;
291 void *cbfn_param;
Holger Freytherceb59b72009-02-06 18:54:00 +0000292};
Harald Weltecd06bfb2009-02-10 17:33:56 +0000293#define T3113_VALUE 60, 0
Holger Freytherceb59b72009-02-06 18:54:00 +0000294
295/*
296 * This keeps track of the paging status of one BTS. It
297 * includes a number of pending requests, a back pointer
298 * to the gsm_bts, a timer and some more state.
299 */
300struct gsm_bts_paging_state {
Holger Freytherceb59b72009-02-06 18:54:00 +0000301 /* pending requests */
302 struct llist_head pending_requests;
303 struct gsm_paging_request *last_request;
304 struct gsm_bts *bts;
305
Harald Welte75a1fa82009-02-17 01:39:41 +0000306 struct timer_list work_timer;
307
Holger Freyther392209c2009-02-10 00:06:19 +0000308 /* load */
309 u_int16_t available_slots;
Holger Freytherceb59b72009-02-06 18:54:00 +0000310};
311
Harald Welte8b697c72009-06-05 19:18:45 +0000312struct gsm_envabtse {
313 struct gsm_nm_state nm_state;
314};
315
Harald Welte52b1f982008-12-23 20:25:15 +0000316/* One BTS */
317struct gsm_bts {
Harald Weltee441d9c2009-06-21 16:17:15 +0200318 /* list header in net->bts_list */
319 struct llist_head list;
320
Harald Welte52b1f982008-12-23 20:25:15 +0000321 struct gsm_network *network;
322 /* number of ths BTS in network */
323 u_int8_t nr;
324 /* location area code of this BTS */
325 u_int8_t location_area_code;
Harald Welte02b0e092009-02-28 13:11:07 +0000326 /* Training Sequence Code */
327 u_int8_t tsc;
Harald Welte78f2f502009-05-23 16:56:52 +0000328 /* Base Station Identification Code (BSIC) */
329 u_int8_t bsic;
Harald Welte978cb422009-01-18 17:57:27 +0000330 /* type of BTS */
331 enum gsm_bts_type type;
Harald Weltefcd24452009-06-20 18:15:19 +0200332 enum gsm_band band;
Harald Welte1fa60c82009-02-09 18:13:26 +0000333 /* how do we talk OML with this TRX? */
334 struct e1inp_sign_link *oml_link;
Harald Welte52b1f982008-12-23 20:25:15 +0000335
336 /* Abis network management O&M handle */
337 struct abis_nm_h *nmh;
Harald Weltebbcc7a52009-02-14 19:45:44 +0000338 struct gsm_nm_state nm_state;
Harald Welte93e9d172009-06-20 19:04:31 +0200339 struct tlv_parsed nm_attr;
Harald Welte978cb422009-01-18 17:57:27 +0000340
Harald Welte52b1f982008-12-23 20:25:15 +0000341 /* number of this BTS on given E1 link */
342 u_int8_t bts_nr;
343
Holger Freyther1adb4ff2009-02-04 00:04:52 +0000344 struct gsm48_control_channel_descr chan_desc;
345
Holger Freytherceb59b72009-02-06 18:54:00 +0000346 /* paging state and control */
347 struct gsm_bts_paging_state paging;
348
Harald Welte52b1f982008-12-23 20:25:15 +0000349 /* CCCH is on C0 */
350 struct gsm_bts_trx *c0;
Harald Weltebbcc7a52009-02-14 19:45:44 +0000351
352 struct {
353 struct gsm_nm_state nm_state;
354 } site_mgr;
Harald Welteedb37782009-05-01 14:59:07 +0000355
356 /* ip.accesss Unit ID's have Site/BTS/TRX layout */
Harald Welte7b26bcb2009-05-28 11:39:21 +0000357 union {
358 struct {
359 u_int16_t site_id;
360 u_int16_t bts_id;
361 } ip_access;
362 struct {
363 struct {
364 struct gsm_nm_state nm_state;
365 } cclk;
366 struct {
367 struct gsm_nm_state nm_state;
368 } rack;
Harald Welte8b697c72009-06-05 19:18:45 +0000369 struct gsm_envabtse envabtse[4];
Harald Welte7b26bcb2009-05-28 11:39:21 +0000370 } bs11;
371 };
Harald Weltebbcc7a52009-02-14 19:45:44 +0000372
Harald Welte52b1f982008-12-23 20:25:15 +0000373 /* transceivers */
374 int num_trx;
Harald Weltee441d9c2009-06-21 16:17:15 +0200375 struct llist_head trx_list;
Harald Welte52b1f982008-12-23 20:25:15 +0000376};
377
Harald Welte52b1f982008-12-23 20:25:15 +0000378struct gsm_network {
379 /* global parameters */
Harald Welteb84e2f42008-12-28 23:42:04 +0000380 u_int16_t country_code;
381 u_int16_t network_code;
Harald Weltec6ba9c22008-12-30 18:01:02 +0000382 char *name_long;
383 char *name_short;
Harald Welte52b1f982008-12-23 20:25:15 +0000384
Harald Welte4bfdfe72009-06-10 23:11:52 +0800385 /* layer 4 */
386 int (*mncc_recv) (struct gsm_network *net, int msg_type, void *arg);
387 struct llist_head upqueue;
388 struct llist_head trans_list;
389
Harald Welte52b1f982008-12-23 20:25:15 +0000390 unsigned int num_bts;
Harald Weltee441d9c2009-06-21 16:17:15 +0200391 struct llist_head bts_list;
Harald Welte52b1f982008-12-23 20:25:15 +0000392};
393
Harald Welte7e310b12009-03-30 20:56:32 +0000394#define SMS_HDR_SIZE 128
395#define SMS_TEXT_SIZE 256
396struct gsm_sms {
397 u_int64_t id;
398 struct gsm_subscriber *sender;
399 struct gsm_subscriber *receiver;
400
401 unsigned char header[SMS_HDR_SIZE];
402 char text[SMS_TEXT_SIZE];
403};
404
Harald Weltee441d9c2009-06-21 16:17:15 +0200405struct gsm_network *gsm_network_init(u_int16_t country_code, u_int16_t network_code,
Harald Welte4bfdfe72009-06-10 23:11:52 +0800406 int (*mncc_recv)(struct gsm_network *, int, void *));
Harald Weltee441d9c2009-06-21 16:17:15 +0200407struct gsm_bts *gsm_bts_alloc(struct gsm_network *net, enum gsm_bts_type type,
408 u_int8_t tsc, u_int8_t bsic);
409struct gsm_bts_trx *gsm_bts_trx_alloc(struct gsm_bts *bts);
410
411struct gsm_bts *gsm_bts_num(struct gsm_network *net, int num);
412struct gsm_bts_trx *gsm_bts_trx_num(struct gsm_bts *bts, int num);
Harald Welte8470bf22008-12-25 23:28:35 +0000413
Harald Weltea72c98e2009-01-04 16:10:38 +0000414const char *gsm_pchan_name(enum gsm_phys_chan_config c);
Harald Welte65da9122009-08-07 00:32:22 +0200415enum gsm_phys_chan_config gsm_pchan_parse(const char *name);
Harald Weltea72c98e2009-01-04 16:10:38 +0000416const char *gsm_lchan_name(enum gsm_chan_t c);
417const char *gsm_chreq_name(enum gsm_chreq_reason_t c);
Harald Welte23a68632009-02-19 17:06:42 +0000418char *gsm_ts_name(struct gsm_bts_trx_ts *ts);
Harald Weltea72c98e2009-01-04 16:10:38 +0000419
Harald Weltead384642008-12-26 10:20:07 +0000420enum gsm_e1_event {
421 EVT_E1_NONE,
Harald Welte1fa60c82009-02-09 18:13:26 +0000422 EVT_E1_TEI_UP,
423 EVT_E1_TEI_DN,
Harald Weltead384642008-12-26 10:20:07 +0000424};
425
Harald Weltecd06bfb2009-02-10 17:33:56 +0000426void set_ts_e1link(struct gsm_bts_trx_ts *ts, u_int8_t e1_nr,
427 u_int8_t e1_ts, u_int8_t e1_ts_ss);
Harald Welte32201c12009-03-10 12:15:10 +0000428enum gsm_bts_type parse_btstype(char *arg);
Holger Hans Peter Freyther2dceae62009-06-12 17:39:38 +0200429const char *btstype2str(enum gsm_bts_type type);
Harald Weltebe991492009-05-23 13:56:40 +0000430struct gsm_bts *gsm_bts_by_lac(struct gsm_network *net, unsigned int lac,
431 struct gsm_bts *start_bts);
Harald Welte32201c12009-03-10 12:15:10 +0000432
Harald Weltefcd24452009-06-20 18:15:19 +0200433char *gsm_band_name(enum gsm_band band);
434enum gsm_band gsm_band_parse(int mhz);
435
Andreas Eversberg8226fa72009-06-29 15:19:38 +0200436extern void *tall_bsc_ctx;
Harald Welte2cf161b2009-06-20 22:36:41 +0200437
Harald Welte32201c12009-03-10 12:15:10 +0000438static inline int is_ipaccess_bts(struct gsm_bts *bts)
439{
440 switch (bts->type) {
441 case GSM_BTS_TYPE_NANOBTS_900:
442 case GSM_BTS_TYPE_NANOBTS_1800:
443 return 1;
444 default:
445 break;
446 }
447 return 0;
448}
449
Harald Welte52b1f982008-12-23 20:25:15 +0000450#endif