blob: 9d543196461e38464c740be52ae0f53667e8bd99 [file] [log] [blame]
Jacob Erlbeckcdd43022014-11-10 11:21:32 +01001/* (C) 2008-2010 by Harald Welte <laforge@gnumonks.org>
2 *
3 * All Rights Reserved
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU Affero General Public License as published by
7 * the Free Software Foundation; either version 3 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU Affero General Public License for more details.
14 *
15 * You should have received a copy of the GNU Affero General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 *
18 */
19
Neels Hofmeyre78ae212016-05-14 00:46:29 +020020#include <openbsc/common_cs.h>
Neels Hofmeyr27681a32016-05-14 00:45:26 +020021#include <openbsc/osmo_bsc.h>
Neels Hofmeyra42855f2017-02-23 21:49:55 +010022#include <openbsc/bsc_msc_data.h>
Maxe6052c42016-06-30 10:25:49 +020023
Neels Hofmeyr27681a32016-05-14 00:45:26 +020024struct gsm_network *bsc_network_init(void *ctx,
Neels Hofmeyr77c8d5f2016-05-09 19:12:44 +020025 uint16_t country_code,
26 uint16_t network_code,
Neels Hofmeyr402006d2016-05-11 14:28:25 +020027 mncc_recv_cb_t mncc_recv)
Jacob Erlbeckcdd43022014-11-10 11:21:32 +010028{
29 struct gsm_network *net;
30
Neels Hofmeyre78ae212016-05-14 00:46:29 +020031 net = gsm_network_init(ctx, country_code, network_code, mncc_recv);
Jacob Erlbeckcdd43022014-11-10 11:21:32 +010032
33 net->bsc_data = talloc_zero(net, struct osmo_bsc_data);
34 if (!net->bsc_data) {
35 talloc_free(net);
36 return NULL;
37 }
38
39 /* Init back pointer */
40 net->bsc_data->auto_off_timeout = -1;
41 net->bsc_data->network = net;
42 INIT_LLIST_HEAD(&net->bsc_data->mscs);
Holger Hans Peter Freyther1ba07302015-01-27 10:27:53 +010043
Jacob Erlbeckcdd43022014-11-10 11:21:32 +010044 net->num_bts = 0;
45 net->reject_cause = GSM48_REJECT_ROAMING_NOT_ALLOWED;
46 net->T3101 = GSM_T3101_DEFAULT;
Harald Welte5d1fa892017-07-20 01:47:39 +020047 net->T3103 = GSM_T3103_DEFAULT;
Jacob Erlbeckcdd43022014-11-10 11:21:32 +010048 net->T3105 = GSM_T3105_DEFAULT;
Harald Welte5d1fa892017-07-20 01:47:39 +020049 net->T3107 = GSM_T3107_DEFAULT;
50 net->T3109 = GSM_T3109_DEFAULT;
51 net->T3111 = GSM_T3111_DEFAULT;
Jacob Erlbeckcdd43022014-11-10 11:21:32 +010052 net->T3113 = GSM_T3113_DEFAULT;
Harald Welte5d1fa892017-07-20 01:47:39 +020053 net->T3115 = GSM_T3115_DEFAULT;
54 net->T3117 = GSM_T3117_DEFAULT;
55 net->T3119 = GSM_T3119_DEFAULT;
Jacob Erlbeckcdd43022014-11-10 11:21:32 +010056 net->T3122 = GSM_T3122_DEFAULT;
Harald Welte5d1fa892017-07-20 01:47:39 +020057 net->T3141 = GSM_T3141_DEFAULT;
Jacob Erlbeckcdd43022014-11-10 11:21:32 +010058
59 /* default set of handover parameters */
60 net->handover.win_rxlev_avg = 10;
61 net->handover.win_rxqual_avg = 1;
62 net->handover.win_rxlev_avg_neigh = 10;
63 net->handover.pwr_interval = 6;
64 net->handover.pwr_hysteresis = 3;
65 net->handover.max_distance = 9999;
66
Jacob Erlbeckcdd43022014-11-10 11:21:32 +010067 INIT_LLIST_HEAD(&net->bts_list);
68
Alexander Couzens20423ea2016-07-12 15:42:02 +020069 /* init statistics */
Alexander Couzensb847a212016-08-02 11:34:11 +020070 net->bsc_ctrs = rate_ctr_group_alloc(net, &bsc_ctrg_desc, 0);
Harald Welte3ee3b852017-07-12 00:25:51 +020071 if (!net->bsc_ctrs) {
72 talloc_free(net);
73 return NULL;
74 }
Jacob Erlbeckcdd43022014-11-10 11:21:32 +010075
Jacob Erlbeckcdd43022014-11-10 11:21:32 +010076 gsm_net_update_ctype(net);
77
Jacob Erlbeckcdd43022014-11-10 11:21:32 +010078 return net;
79}
80