blob: d0ce16823bc97562e07731c91237be54659c50f5 [file] [log] [blame]
Harald Welte52b1f982008-12-23 20:25:15 +00001/* (C) 2008 by Harald Welte <laforge@gnumonks.org>
Harald Welte8470bf22008-12-25 23:28:35 +00002 *
Harald Welte52b1f982008-12-23 20:25:15 +00003 * 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 General Public License as published by
7 * the Free Software Foundation; either version 2 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 General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 */
20
21
22#include <stdlib.h>
Harald Welte51f38452009-02-24 22:36:40 +000023#include <stdio.h>
Harald Welte52b1f982008-12-23 20:25:15 +000024#include <string.h>
25
Harald Welte8470bf22008-12-25 23:28:35 +000026#include <openbsc/gsm_data.h>
Harald Welte52b1f982008-12-23 20:25:15 +000027
Harald Weltecd06bfb2009-02-10 17:33:56 +000028void set_ts_e1link(struct gsm_bts_trx_ts *ts, u_int8_t e1_nr,
29 u_int8_t e1_ts, u_int8_t e1_ts_ss)
30{
31 ts->e1_link.e1_nr = e1_nr;
32 ts->e1_link.e1_ts = e1_ts;
33 ts->e1_link.e1_ts_ss = e1_ts_ss;
34}
35
Harald Weltea72c98e2009-01-04 16:10:38 +000036static const char *pchan_names[] = {
37 [GSM_PCHAN_NONE] = "NONE",
38 [GSM_PCHAN_CCCH] = "CCCH",
39 [GSM_PCHAN_CCCH_SDCCH4] = "CCCH+SDCCH4",
40 [GSM_PCHAN_TCH_F] = "TCH/F",
41 [GSM_PCHAN_TCH_H] = "TCH/H",
42 [GSM_PCHAN_SDCCH8_SACCH8C] = "SDCCH8",
43 [GSM_PCHAN_UNKNOWN] = "UNKNOWN",
44};
45
46const char *gsm_pchan_name(enum gsm_phys_chan_config c)
47{
48 if (c >= ARRAY_SIZE(pchan_names))
49 return "INVALID";
50
51 return pchan_names[c];
52}
53
54static const char *lchan_names[] = {
55 [GSM_LCHAN_NONE] = "NONE",
56 [GSM_LCHAN_SDCCH] = "SDCCH",
57 [GSM_LCHAN_TCH_F] = "TCH/F",
58 [GSM_LCHAN_TCH_H] = "TCH/H",
59 [GSM_LCHAN_UNKNOWN] = "UNKNOWN",
60};
61
62const char *gsm_lchan_name(enum gsm_chan_t c)
63{
64 if (c >= ARRAY_SIZE(lchan_names))
65 return "INVALID";
66
67 return lchan_names[c];
68}
69
70static const char *chreq_names[] = {
71 [GSM_CHREQ_REASON_EMERG] = "EMERGENCY",
72 [GSM_CHREQ_REASON_PAG] = "PAGING",
73 [GSM_CHREQ_REASON_CALL] = "CALL",
74 [GSM_CHREQ_REASON_LOCATION_UPD] = "LOCATION_UPDATE",
75 [GSM_CHREQ_REASON_OTHER] = "OTHER",
76};
77
78const char *gsm_chreq_name(enum gsm_chreq_reason_t c)
79{
80 if (c >= ARRAY_SIZE(chreq_names))
81 return "INVALID";
82
83 return chreq_names[c];
84}
85
Harald Welte8c1d0e42009-02-15 03:38:12 +000086struct gsm_network *gsm_network_init(unsigned int num_bts, enum gsm_bts_type bts_type,
87 u_int16_t country_code, u_int16_t network_code)
Harald Welte52b1f982008-12-23 20:25:15 +000088{
89 int i;
90 struct gsm_network *net;
91
92 if (num_bts > GSM_MAX_BTS)
93 return NULL;
94
95 net = malloc(sizeof(*net));
96 if (!net)
97 return NULL;
98 memset(net, 0, sizeof(*net));
99
100 net->country_code = country_code;
101 net->network_code = network_code;
102 net->num_bts = num_bts;
103
104 for (i = 0; i < num_bts; i++) {
105 struct gsm_bts *bts = &net->bts[i];
106 int j;
107
108 bts->network = net;
109 bts->nr = i;
Harald Welte8c1d0e42009-02-15 03:38:12 +0000110 bts->type = bts_type;
Harald Welte52b1f982008-12-23 20:25:15 +0000111
112 for (j = 0; j < BTS_MAX_TRX; j++) {
113 struct gsm_bts_trx *trx = &bts->trx[j];
114 int k;
115
116 trx->bts = bts;
117 trx->nr = j;
118
119 for (k = 0; k < 8; k++) {
120 struct gsm_bts_trx_ts *ts = &trx->ts[k];
Harald Welte8470bf22008-12-25 23:28:35 +0000121 int l;
Harald Welte52b1f982008-12-23 20:25:15 +0000122
123 ts->trx = trx;
124 ts->nr = k;
Harald Welte8470bf22008-12-25 23:28:35 +0000125 ts->pchan = GSM_PCHAN_NONE;
126
127 for (l = 0; l < TS_MAX_LCHAN; l++) {
128 struct gsm_lchan *lchan;
129 lchan = &ts->lchan[l];
130
131 lchan->ts = ts;
132 lchan->nr = l;
133 lchan->type = GSM_LCHAN_NONE;
134 }
Harald Welte52b1f982008-12-23 20:25:15 +0000135 }
136 }
137
138 bts->num_trx = 1; /* FIXME */
Harald Weltecd06bfb2009-02-10 17:33:56 +0000139#ifdef HAVE_TRX1
140 bts->num_trx++;
141#endif
Harald Welte702d8702008-12-26 20:25:35 +0000142 bts->c0 = &bts->trx[0];
143 bts->c0->ts[0].pchan = GSM_PCHAN_CCCH_SDCCH4;
Harald Welte52b1f982008-12-23 20:25:15 +0000144 }
Harald Welte8470bf22008-12-25 23:28:35 +0000145 return net;
Harald Welte52b1f982008-12-23 20:25:15 +0000146}
Harald Welte23a68632009-02-19 17:06:42 +0000147
148static char ts2str[255];
149
150char *gsm_ts_name(struct gsm_bts_trx_ts *ts)
151{
152 snprintf(ts2str, sizeof(ts2str), "(bts=%d,trx=%d,ts=%d)",
153 ts->trx->bts->nr, ts->trx->nr, ts->nr);
154
155 return ts2str;
156}