blob: 365631562a0400a98ae5c5aa734e87cc64ae22fc [file] [log] [blame]
Harald Welte9af6ddf2011-01-01 15:25:50 +01001/* OpenBSC E1 Input code */
2
3/* (C) 2008-2010 by Harald Welte <laforge@gnumonks.org>
4 * All Rights Reserved
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU Affero General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU Affero General Public License for more details.
15 *
16 * You should have received a copy of the GNU Affero General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 *
19 */
20
Harald Welte1fa60c82009-02-09 18:13:26 +000021#include <string.h>
22#include <errno.h>
Maxd1f70ed2017-09-21 16:15:32 +020023#include <time.h>
Harald Welte25de9912009-04-30 15:53:07 +000024#include <netinet/in.h>
25
Neels Hofmeyrc0164792017-09-04 15:15:32 +020026#include <osmocom/bsc/gsm_data.h>
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +020027#include <osmocom/abis/e1_input.h>
28#include <osmocom/abis/trau_frame.h>
Neels Hofmeyrc0164792017-09-04 15:15:32 +020029#include <osmocom/bsc/trau_mux.h>
30#include <osmocom/bsc/misdn.h>
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +020031#include <osmocom/abis/ipaccess.h>
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010032#include <osmocom/core/talloc.h>
Neels Hofmeyrc0164792017-09-04 15:15:32 +020033#include <osmocom/bsc/debug.h>
34#include <osmocom/bsc/abis_rsl.h>
Harald Welte1fa60c82009-02-09 18:13:26 +000035
36#define SAPI_L2ML 0
37#define SAPI_OML 62
38#define SAPI_RSL 0 /* 63 ? */
39
Neels Hofmeyr57e8a1f2016-09-25 15:18:39 +020040/* The e1_reconfig_*() functions below take the configuration present in the
Harald Welte42581822009-08-08 16:12:58 +020041 * bts/trx/ts data structures and ensure the E1 configuration reflects the
42 * timeslot/subslot/TEI configuration */
Harald Welte1fa60c82009-02-09 18:13:26 +000043
Harald Welte42581822009-08-08 16:12:58 +020044int e1_reconfig_ts(struct gsm_bts_trx_ts *ts)
45{
46 struct gsm_e1_subslot *e1_link = &ts->e1_link;
47 struct e1inp_line *line;
48 struct e1inp_ts *e1_ts;
49
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +020050 DEBUGP(DLMI, "e1_reconfig_ts(%u,%u,%u)\n", ts->trx->bts->nr, ts->trx->nr, ts->nr);
Harald Welte42581822009-08-08 16:12:58 +020051
Harald Welte889f16e2011-02-05 15:41:24 +010052 if (!e1_link->e1_ts) {
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +020053 LOGP(DLINP, LOGL_ERROR, "TS (%u/%u/%u) without E1 timeslot?\n",
Harald Welte889f16e2011-02-05 15:41:24 +010054 ts->nr, ts->trx->nr, ts->trx->bts->nr);
Harald Welte42581822009-08-08 16:12:58 +020055 return 0;
Harald Welte889f16e2011-02-05 15:41:24 +010056 }
Harald Welte42581822009-08-08 16:12:58 +020057
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +020058 line = e1inp_line_find(e1_link->e1_nr);
Harald Welte889f16e2011-02-05 15:41:24 +010059 if (!line) {
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +020060 LOGP(DLINP, LOGL_ERROR, "TS (%u/%u/%u) referring to "
Harald Welte889f16e2011-02-05 15:41:24 +010061 "non-existing E1 line %u\n", ts->nr, ts->trx->nr,
62 ts->trx->bts->nr, e1_link->e1_nr);
Harald Welte42581822009-08-08 16:12:58 +020063 return -ENOMEM;
Harald Welte889f16e2011-02-05 15:41:24 +010064 }
Harald Welte42581822009-08-08 16:12:58 +020065
Neels Hofmeyr255dbfe2016-09-25 15:07:01 +020066 if (ts_is_tch(ts)) {
Harald Welte42581822009-08-08 16:12:58 +020067 e1_ts = &line->ts[e1_link->e1_ts-1];
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +020068 e1inp_ts_config_trau(e1_ts, line, subch_cb);
Harald Welte42581822009-08-08 16:12:58 +020069 subch_demux_activate(&e1_ts->trau.demux, e1_link->e1_ts_ss);
Harald Welte42581822009-08-08 16:12:58 +020070 }
71
72 return 0;
73}
74
75int e1_reconfig_trx(struct gsm_bts_trx *trx)
76{
77 struct gsm_e1_subslot *e1_link = &trx->rsl_e1_link;
78 struct e1inp_ts *sign_ts;
79 struct e1inp_line *line;
80 struct e1inp_sign_link *rsl_link;
81 int i;
82
Harald Welte889f16e2011-02-05 15:41:24 +010083 if (!e1_link->e1_ts) {
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +020084 LOGP(DLINP, LOGL_ERROR, "TRX (%u/%u) RSL link without "
Harald Welte889f16e2011-02-05 15:41:24 +010085 "timeslot?\n", trx->bts->nr, trx->nr);
Harald Welte42581822009-08-08 16:12:58 +020086 return -EINVAL;
Harald Welte889f16e2011-02-05 15:41:24 +010087 }
Harald Welte42581822009-08-08 16:12:58 +020088
89 /* RSL Link */
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +020090 line = e1inp_line_find(e1_link->e1_nr);
Harald Welte889f16e2011-02-05 15:41:24 +010091 if (!line) {
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +020092 LOGP(DLINP, LOGL_ERROR, "TRX (%u/%u) RSL link referring "
Harald Welte889f16e2011-02-05 15:41:24 +010093 "to non-existing E1 line %u\n", trx->bts->nr,
94 trx->nr, e1_link->e1_nr);
Harald Welte42581822009-08-08 16:12:58 +020095 return -ENOMEM;
Harald Welte889f16e2011-02-05 15:41:24 +010096 }
Harald Welte42581822009-08-08 16:12:58 +020097 sign_ts = &line->ts[e1_link->e1_ts-1];
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +020098 e1inp_ts_config_sign(sign_ts, line);
Harald Welte15ccc772011-02-13 19:36:18 +010099 /* Ericsson RBS have a per-TRX OML link in parallel to RSL */
Harald Weltec834b702011-02-13 15:41:09 +0100100 if (trx->bts->type == GSM_BTS_TYPE_RBS2000) {
Harald Welte15ccc772011-02-13 19:36:18 +0100101 struct e1inp_sign_link *oml_link;
102 oml_link = e1inp_sign_link_create(sign_ts, E1INP_SIGN_OML, trx,
103 trx->rsl_tei, SAPI_OML);
104 if (!oml_link) {
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200105 LOGP(DLINP, LOGL_ERROR, "TRX (%u/%u) OML link creation "
Harald Welte15ccc772011-02-13 19:36:18 +0100106 "failed\n", trx->bts->nr, trx->nr);
107 return -ENOMEM;
108 }
109 if (trx->oml_link)
110 e1inp_sign_link_destroy(trx->oml_link);
111 trx->oml_link = oml_link;
Harald Weltec834b702011-02-13 15:41:09 +0100112 }
Harald Welte42581822009-08-08 16:12:58 +0200113 rsl_link = e1inp_sign_link_create(sign_ts, E1INP_SIGN_RSL,
114 trx, trx->rsl_tei, SAPI_RSL);
Harald Welte889f16e2011-02-05 15:41:24 +0100115 if (!rsl_link) {
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200116 LOGP(DLINP, LOGL_ERROR, "TRX (%u/%u) RSL link creation "
Harald Welte889f16e2011-02-05 15:41:24 +0100117 "failed\n", trx->bts->nr, trx->nr);
Harald Welte42581822009-08-08 16:12:58 +0200118 return -ENOMEM;
Harald Welte889f16e2011-02-05 15:41:24 +0100119 }
Harald Welte42581822009-08-08 16:12:58 +0200120 if (trx->rsl_link)
121 e1inp_sign_link_destroy(trx->rsl_link);
122 trx->rsl_link = rsl_link;
123
124 for (i = 0; i < TRX_NR_TS; i++)
125 e1_reconfig_ts(&trx->ts[i]);
126
127 return 0;
128}
129
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200130/* this is the generic callback for all ISDN-based BTS. */
131static int bts_isdn_sign_link(struct msgb *msg)
132{
133 int ret = -EINVAL;
134 struct e1inp_sign_link *link = msg->dst;
135 struct gsm_bts *bts;
136
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200137 switch (link->type) {
138 case E1INP_SIGN_OML:
139 bts = link->trx->bts;
140 ret = bts->model->oml_rcvmsg(msg);
141 break;
142 case E1INP_SIGN_RSL:
143 ret = abis_rsl_rcvmsg(msg);
144 break;
145 default:
146 LOGP(DLMI, LOGL_ERROR, "unknown link type %u\n", link->type);
147 break;
148 }
149 return ret;
150}
151
152struct e1inp_line_ops bts_isdn_e1inp_line_ops = {
153 .sign_link = bts_isdn_sign_link,
154};
155
Harald Welte42581822009-08-08 16:12:58 +0200156int e1_reconfig_bts(struct gsm_bts *bts)
157{
158 struct gsm_e1_subslot *e1_link = &bts->oml_e1_link;
159 struct e1inp_ts *sign_ts;
160 struct e1inp_line *line;
161 struct e1inp_sign_link *oml_link;
162 struct gsm_bts_trx *trx;
Maxd1f70ed2017-09-21 16:15:32 +0200163 struct timespec tp;
164 int rc;
Harald Welte42581822009-08-08 16:12:58 +0200165
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200166 DEBUGP(DLMI, "e1_reconfig_bts(%u)\n", bts->nr);
Harald Welte42581822009-08-08 16:12:58 +0200167
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200168 line = e1inp_line_find(e1_link->e1_nr);
169 if (!line) {
170 LOGP(DLINP, LOGL_ERROR, "BTS %u OML link referring to "
171 "non-existing E1 line %u\n", bts->nr, e1_link->e1_nr);
172 return -ENOMEM;
173 }
174
175 if (!bts->model->e1line_bind_ops) {
176 LOGP(DLINP, LOGL_ERROR, "no callback to bind E1 line operations\n");
177 return -EINVAL;
178 }
179 if (!line->ops)
180 bts->model->e1line_bind_ops(line);
181
182 /* skip signal link initialization, this is done later for these BTS. */
183 if (bts->type == GSM_BTS_TYPE_NANOBTS ||
Maxf9685c12017-03-23 12:01:07 +0100184 bts->type == GSM_BTS_TYPE_OSMOBTS)
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200185 return e1inp_line_update(line);
186
187 /* OML link */
Harald Welte889f16e2011-02-05 15:41:24 +0100188 if (!e1_link->e1_ts) {
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200189 LOGP(DLINP, LOGL_ERROR, "BTS %u OML link without timeslot?\n",
Harald Welte889f16e2011-02-05 15:41:24 +0100190 bts->nr);
Harald Welte42581822009-08-08 16:12:58 +0200191 return -EINVAL;
Harald Welte889f16e2011-02-05 15:41:24 +0100192 }
Harald Welte42581822009-08-08 16:12:58 +0200193
Harald Welte42581822009-08-08 16:12:58 +0200194 sign_ts = &line->ts[e1_link->e1_ts-1];
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200195 e1inp_ts_config_sign(sign_ts, line);
Harald Welte42581822009-08-08 16:12:58 +0200196 oml_link = e1inp_sign_link_create(sign_ts, E1INP_SIGN_OML,
197 bts->c0, bts->oml_tei, SAPI_OML);
Harald Welte889f16e2011-02-05 15:41:24 +0100198 if (!oml_link) {
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200199 LOGP(DLINP, LOGL_ERROR, "BTS %u OML link creation failed\n",
Harald Welte889f16e2011-02-05 15:41:24 +0100200 bts->nr);
Harald Welte42581822009-08-08 16:12:58 +0200201 return -ENOMEM;
Harald Welte889f16e2011-02-05 15:41:24 +0100202 }
Harald Welte42581822009-08-08 16:12:58 +0200203 if (bts->oml_link)
204 e1inp_sign_link_destroy(bts->oml_link);
205 bts->oml_link = oml_link;
Maxd1f70ed2017-09-21 16:15:32 +0200206 rc = clock_gettime(CLOCK_MONOTONIC, &tp);
207 bts->uptime = (rc < 0) ? 0 : tp.tv_sec; /* we don't need sub-second precision for uptime */
Harald Welte42581822009-08-08 16:12:58 +0200208
209 llist_for_each_entry(trx, &bts->trx_list, list)
210 e1_reconfig_trx(trx);
211
212 /* notify E1 input something has changed */
213 return e1inp_line_update(line);
214}
215
216#if 0
Harald Welte1fa60c82009-02-09 18:13:26 +0000217/* do some compiled-in configuration for our BTS/E1 setup */
Holger Freytherb5c00f52009-04-22 22:08:07 +0000218int e1_config(struct gsm_bts *bts, int cardnr, int release_l2)
Harald Welte1fa60c82009-02-09 18:13:26 +0000219{
220 struct e1inp_line *line;
221 struct e1inp_ts *sign_ts;
222 struct e1inp_sign_link *oml_link, *rsl_link;
Harald Welte67b4c302009-07-29 16:42:16 +0200223 struct gsm_bts_trx *trx = bts->c0;
Harald Welte4e55d682009-08-04 14:13:35 +0200224 int base_ts;
225
226 switch (bts->nr) {
227 case 0:
228 /* First BTS uses E1 TS 01,02,03,04,05 */
Harald Welte63589be2009-08-06 17:38:10 +0200229 base_ts = HARDCODED_BTS0_TS - 1;
Harald Welte4e55d682009-08-04 14:13:35 +0200230 break;
231 case 1:
Harald Welte63589be2009-08-06 17:38:10 +0200232 /* Second BTS uses E1 TS 06,07,08,09,10 */
233 base_ts = HARDCODED_BTS1_TS - 1;
Harald Welte4e55d682009-08-04 14:13:35 +0200234 break;
235 case 2:
Harald Welte63589be2009-08-06 17:38:10 +0200236 /* Third BTS uses E1 TS 11,12,13,14,15 */
237 base_ts = HARDCODED_BTS2_TS - 1;
Harald Welte4e55d682009-08-04 14:13:35 +0200238 default:
239 return -EINVAL;
240 }
Harald Welte1fa60c82009-02-09 18:13:26 +0000241
Harald Welte470ec292009-06-26 20:25:23 +0200242 line = talloc_zero(tall_bsc_ctx, struct e1inp_line);
Harald Welte1fa60c82009-02-09 18:13:26 +0000243 if (!line)
244 return -ENOMEM;
Harald Welte1fa60c82009-02-09 18:13:26 +0000245
246 /* create E1 timeslots for signalling and TRAU frames */
Harald Welte4e55d682009-08-04 14:13:35 +0200247 e1inp_ts_config(&line->ts[base_ts+1-1], line, E1INP_TS_TYPE_SIGN);
248 e1inp_ts_config(&line->ts[base_ts+2-1], line, E1INP_TS_TYPE_TRAU);
249 e1inp_ts_config(&line->ts[base_ts+3-1], line, E1INP_TS_TYPE_TRAU);
Harald Welte1fa60c82009-02-09 18:13:26 +0000250
251 /* create signalling links for TS1 */
Harald Welte4e55d682009-08-04 14:13:35 +0200252 sign_ts = &line->ts[base_ts+1-1];
Harald Welte1fa60c82009-02-09 18:13:26 +0000253 oml_link = e1inp_sign_link_create(sign_ts, E1INP_SIGN_OML,
Harald Welte67b4c302009-07-29 16:42:16 +0200254 trx, TEI_OML, SAPI_OML);
Harald Welte1fa60c82009-02-09 18:13:26 +0000255 rsl_link = e1inp_sign_link_create(sign_ts, E1INP_SIGN_RSL,
Harald Welte67b4c302009-07-29 16:42:16 +0200256 trx, TEI_RSL, SAPI_RSL);
Harald Welte1fa60c82009-02-09 18:13:26 +0000257
258 /* create back-links from bts/trx */
259 bts->oml_link = oml_link;
Harald Welte67b4c302009-07-29 16:42:16 +0200260 trx->rsl_link = rsl_link;
Harald Welte1fa60c82009-02-09 18:13:26 +0000261
Harald Welte11fa29c2009-02-19 17:24:39 +0000262 /* enable subchannel demuxer on TS2 */
Harald Welte4e55d682009-08-04 14:13:35 +0200263 subch_demux_activate(&line->ts[base_ts+2-1].trau.demux, 1);
264 subch_demux_activate(&line->ts[base_ts+2-1].trau.demux, 2);
265 subch_demux_activate(&line->ts[base_ts+2-1].trau.demux, 3);
Harald Welte93d3f372009-02-18 03:27:14 +0000266
Harald Welte11fa29c2009-02-19 17:24:39 +0000267 /* enable subchannel demuxer on TS3 */
Harald Welte4e55d682009-08-04 14:13:35 +0200268 subch_demux_activate(&line->ts[base_ts+3-1].trau.demux, 0);
269 subch_demux_activate(&line->ts[base_ts+3-1].trau.demux, 1);
270 subch_demux_activate(&line->ts[base_ts+3-1].trau.demux, 2);
271 subch_demux_activate(&line->ts[base_ts+3-1].trau.demux, 3);
Harald Welte11fa29c2009-02-19 17:24:39 +0000272
Harald Welte67b4c302009-07-29 16:42:16 +0200273 trx = gsm_bts_trx_num(bts, 1);
274 if (trx) {
275 /* create E1 timeslots for TRAU frames of TRX1 */
Harald Welte4e55d682009-08-04 14:13:35 +0200276 e1inp_ts_config(&line->ts[base_ts+4-1], line, E1INP_TS_TYPE_TRAU);
277 e1inp_ts_config(&line->ts[base_ts+5-1], line, E1INP_TS_TYPE_TRAU);
Harald Welte1fa60c82009-02-09 18:13:26 +0000278
Harald Welte67b4c302009-07-29 16:42:16 +0200279 /* create RSL signalling link for TRX1 */
Harald Welte4e55d682009-08-04 14:13:35 +0200280 sign_ts = &line->ts[base_ts+1-1];
Harald Welte67b4c302009-07-29 16:42:16 +0200281 rsl_link = e1inp_sign_link_create(sign_ts, E1INP_SIGN_RSL,
282 trx, TEI_RSL+1, SAPI_RSL);
283 /* create back-links from trx */
284 trx->rsl_link = rsl_link;
285
286 /* enable subchannel demuxer on TS2 */
Harald Welte4e55d682009-08-04 14:13:35 +0200287 subch_demux_activate(&line->ts[base_ts+4-1].trau.demux, 0);
288 subch_demux_activate(&line->ts[base_ts+4-1].trau.demux, 1);
289 subch_demux_activate(&line->ts[base_ts+4-1].trau.demux, 2);
290 subch_demux_activate(&line->ts[base_ts+4-1].trau.demux, 3);
Harald Welte67b4c302009-07-29 16:42:16 +0200291
292 /* enable subchannel demuxer on TS3 */
Harald Welte4e55d682009-08-04 14:13:35 +0200293 subch_demux_activate(&line->ts[base_ts+5-1].trau.demux, 0);
294 subch_demux_activate(&line->ts[base_ts+5-1].trau.demux, 1);
295 subch_demux_activate(&line->ts[base_ts+5-1].trau.demux, 2);
296 subch_demux_activate(&line->ts[base_ts+5-1].trau.demux, 3);
Harald Welte67b4c302009-07-29 16:42:16 +0200297 }
Harald Welte1fa60c82009-02-09 18:13:26 +0000298
Holger Freytherb5c00f52009-04-22 22:08:07 +0000299 return mi_setup(cardnr, line, release_l2);
Harald Welte1fa60c82009-02-09 18:13:26 +0000300}
Harald Welte42581822009-08-08 16:12:58 +0200301#endif