blob: abc30402f151e23e90dfff621e07bcd4c42047b1 [file] [log] [blame]
Harald Welte1fa60c82009-02-09 18:13:26 +00001#include <string.h>
2#include <errno.h>
3
Harald Welte25de9912009-04-30 15:53:07 +00004#include <netinet/in.h>
5
Harald Welte1fa60c82009-02-09 18:13:26 +00006#include <openbsc/gsm_data.h>
7#include <openbsc/e1_input.h>
Harald Welte45b407a2009-05-23 15:51:12 +00008#include <openbsc/trau_frame.h>
Harald Welte39a1b712009-02-10 17:17:09 +00009#include <openbsc/trau_mux.h>
Holger Freytherff9592f2009-03-09 16:17:14 +000010#include <openbsc/misdn.h>
Harald Welte2cf161b2009-06-20 22:36:41 +020011#include <openbsc/talloc.h>
Harald Welte1fa60c82009-02-09 18:13:26 +000012
13#define SAPI_L2ML 0
14#define SAPI_OML 62
15#define SAPI_RSL 0 /* 63 ? */
16
17#define TEI_L2ML 127
18#define TEI_OML 25
19#define TEI_RSL 1
20
21/* do some compiled-in configuration for our BTS/E1 setup */
Holger Freytherb5c00f52009-04-22 22:08:07 +000022int e1_config(struct gsm_bts *bts, int cardnr, int release_l2)
Harald Welte1fa60c82009-02-09 18:13:26 +000023{
24 struct e1inp_line *line;
25 struct e1inp_ts *sign_ts;
26 struct e1inp_sign_link *oml_link, *rsl_link;
27
Harald Welte2cf161b2009-06-20 22:36:41 +020028 line = talloc(tall_bsc_ctx, struct e1inp_line);
Harald Welte1fa60c82009-02-09 18:13:26 +000029 if (!line)
30 return -ENOMEM;
31 memset(line, 0, sizeof(*line));
32
33 /* create E1 timeslots for signalling and TRAU frames */
34 e1inp_ts_config(&line->ts[1-1], line, E1INP_TS_TYPE_SIGN);
35 e1inp_ts_config(&line->ts[2-1], line, E1INP_TS_TYPE_TRAU);
Harald Welted47a4be2009-04-29 16:21:34 +000036 e1inp_ts_config(&line->ts[3-1], line, E1INP_TS_TYPE_TRAU);
Harald Welte1fa60c82009-02-09 18:13:26 +000037
38 /* create signalling links for TS1 */
39 sign_ts = &line->ts[1-1];
40 oml_link = e1inp_sign_link_create(sign_ts, E1INP_SIGN_OML,
41 bts->c0, TEI_OML, SAPI_OML);
42 rsl_link = e1inp_sign_link_create(sign_ts, E1INP_SIGN_RSL,
43 bts->c0, TEI_RSL, SAPI_RSL);
44
45 /* create back-links from bts/trx */
46 bts->oml_link = oml_link;
47 bts->c0->rsl_link = rsl_link;
48
Harald Welte11fa29c2009-02-19 17:24:39 +000049 /* enable subchannel demuxer on TS2 */
50 subch_demux_activate(&line->ts[2-1].trau.demux, 1);
51 subch_demux_activate(&line->ts[2-1].trau.demux, 2);
52 subch_demux_activate(&line->ts[2-1].trau.demux, 3);
Harald Welte93d3f372009-02-18 03:27:14 +000053
Harald Welte11fa29c2009-02-19 17:24:39 +000054 /* enable subchannel demuxer on TS3 */
55 subch_demux_activate(&line->ts[3-1].trau.demux, 0);
56 subch_demux_activate(&line->ts[3-1].trau.demux, 1);
57 subch_demux_activate(&line->ts[3-1].trau.demux, 2);
58 subch_demux_activate(&line->ts[3-1].trau.demux, 3);
Harald Welte11fa29c2009-02-19 17:24:39 +000059
Harald Welte39a1b712009-02-10 17:17:09 +000060#ifdef HAVE_TRX1
61 /* create E1 timeslots for TRAU frames of TRX1 */
Harald Welte1fa60c82009-02-09 18:13:26 +000062 e1inp_ts_config(&line->ts[4-1], line, E1INP_TS_TYPE_TRAU);
63 e1inp_ts_config(&line->ts[5-1], line, E1INP_TS_TYPE_TRAU);
64
Harald Welte39a1b712009-02-10 17:17:09 +000065 /* create RSL signalling link for TRX1 */
Harald Welte1fa60c82009-02-09 18:13:26 +000066 sign_ts = &line->ts[1-1];
67 rsl_link = e1inp_sign_link_create(sign_ts, E1INP_SIGN_RSL,
68 &bts->trx[1], TEI_RSL+1, SAPI_RSL);
69 /* create back-links from trx */
70 bts->trx[1].rsl_link = rsl_link;
71#endif
72
Holger Freytherb5c00f52009-04-22 22:08:07 +000073 return mi_setup(cardnr, line, release_l2);
Harald Welte1fa60c82009-02-09 18:13:26 +000074}
Harald Welte5fd8a542009-02-13 02:43:36 +000075
Harald Welteedb37782009-05-01 14:59:07 +000076/* configure pseudo E1 line in ip.access style and connect to BTS */
77int ia_config_connect(struct gsm_bts *bts, struct sockaddr_in *sin)
Harald Welte5fd8a542009-02-13 02:43:36 +000078{
79 struct e1inp_line *line;
Harald Welte5c1e4582009-02-15 11:57:29 +000080 struct e1inp_ts *sign_ts, *rsl_ts;
Harald Welte5fd8a542009-02-13 02:43:36 +000081 struct e1inp_sign_link *oml_link, *rsl_link;
82
Harald Welte2cf161b2009-06-20 22:36:41 +020083 line = talloc(tall_bsc_ctx, struct e1inp_line);
Harald Welte5fd8a542009-02-13 02:43:36 +000084 if (!line)
Harald Welte2cf161b2009-06-20 22:36:41 +020085 return -ENOMEM;
Harald Welte5fd8a542009-02-13 02:43:36 +000086 memset(line, 0, sizeof(*line));
87
88 /* create E1 timeslots for signalling and TRAU frames */
89 e1inp_ts_config(&line->ts[1-1], line, E1INP_TS_TYPE_SIGN);
Harald Welte5c1e4582009-02-15 11:57:29 +000090 e1inp_ts_config(&line->ts[2-1], line, E1INP_TS_TYPE_SIGN);
Harald Welte5fd8a542009-02-13 02:43:36 +000091
92 /* create signalling links for TS1 */
93 sign_ts = &line->ts[1-1];
Harald Welte5c1e4582009-02-15 11:57:29 +000094 rsl_ts = &line->ts[2-1];
Harald Welte5fd8a542009-02-13 02:43:36 +000095 oml_link = e1inp_sign_link_create(sign_ts, E1INP_SIGN_OML,
96 bts->c0, 0, 0xff);
Harald Welte5c1e4582009-02-15 11:57:29 +000097 rsl_link = e1inp_sign_link_create(rsl_ts, E1INP_SIGN_RSL,
Harald Welte5fd8a542009-02-13 02:43:36 +000098 bts->c0, 0, 0);
99
100 /* create back-links from bts/trx */
101 bts->oml_link = oml_link;
102 bts->c0->rsl_link = rsl_link;
103
Harald Welte25de9912009-04-30 15:53:07 +0000104 /* default port at BTS for incoming connections is 3006 */
105 if (sin->sin_port == 0)
106 sin->sin_port = htons(3006);
107
108 return ipaccess_connect(line, sin);
109}