blob: 40ceedf5a836dc573df00d55214de093d2f82cef [file] [log] [blame]
Harald Welte1fa60c82009-02-09 18:13:26 +00001#ifndef _E1_INPUT_H
2#define _E1_INPUT_H
3
4#include <stdlib.h>
Harald Welte25de9912009-04-30 15:53:07 +00005#include <netinet/in.h>
Harald Welte1fa60c82009-02-09 18:13:26 +00006
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +01007#include <osmocom/core/linuxlist.h>
Harald Welte1fa60c82009-02-09 18:13:26 +00008#include <openbsc/gsm_data.h>
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +01009#include <osmocom/core/msgb.h>
10#include <osmocom/core/select.h>
Harald Welte1fa60c82009-02-09 18:13:26 +000011#include <openbsc/subchan_demux.h>
12
13#define NUM_E1_TS 32
14
15enum e1inp_sign_type {
16 E1INP_SIGN_NONE,
17 E1INP_SIGN_OML,
18 E1INP_SIGN_RSL,
19};
Harald Welted256d4f2009-03-10 19:44:48 +000020const char *e1inp_signtype_name(enum e1inp_sign_type tp);
Harald Welte1fa60c82009-02-09 18:13:26 +000021
22struct e1inp_ts;
23
24struct e1inp_sign_link {
25 /* list of signalling links */
26 struct llist_head list;
27
28 /* to which timeslot do we belong? */
29 struct e1inp_ts *ts;
30
31 enum e1inp_sign_type type;
32
33 /* trx for msg->trx of received msgs */
34 struct gsm_bts_trx *trx;
35
36 /* msgb queue of to-be-transmitted msgs */
37 struct llist_head tx_list;
38
39 /* SAPI and TEI on the E1 TS */
40 u_int8_t sapi;
41 u_int8_t tei;
42
43 union {
44 struct {
45 u_int8_t channel;
46 } misdn;
47 } driver;
48};
49
50enum e1inp_ts_type {
51 E1INP_TS_TYPE_NONE,
52 E1INP_TS_TYPE_SIGN,
53 E1INP_TS_TYPE_TRAU,
54};
Harald Welted256d4f2009-03-10 19:44:48 +000055const char *e1inp_tstype_name(enum e1inp_ts_type tp);
Harald Welte1fa60c82009-02-09 18:13:26 +000056
57/* A timeslot in the E1 interface */
58struct e1inp_ts {
59 enum e1inp_ts_type type;
60 int num;
61
62 /* to which line do we belong ? */
63 struct e1inp_line *line;
64
65 union {
66 struct {
Harald Weltef55b49f2009-05-23 06:20:41 +000067 /* list of all signalling links on this TS */
Harald Welte1fa60c82009-02-09 18:13:26 +000068 struct llist_head sign_links;
Holger Hans Peter Freytherd85642a2010-04-26 16:02:04 +080069 /* delay for the queue */
70 int delay;
Harald Weltef55b49f2009-05-23 06:20:41 +000071 /* timer when to dequeue next frame */
72 struct timer_list tx_timer;
Harald Welte1fa60c82009-02-09 18:13:26 +000073 } sign;
74 struct {
75 /* subchannel demuxer for frames from E1 */
76 struct subch_demux demux;
77 /* subchannel muxer for frames to E1 */
78 struct subch_mux mux;
79 } trau;
80 };
81 union {
82 struct {
83 /* mISDN driver has one fd for each ts */
84 struct bsc_fd fd;
85 } misdn;
Harald Welte5fd8a542009-02-13 02:43:36 +000086 struct {
87 /* ip.access driver has one fd for each ts */
88 struct bsc_fd fd;
89 } ipaccess;
Harald Welted38f1052011-02-05 19:13:00 +010090 struct {
91 /* DAHDI driver has one fd for each ts */
92 struct bsc_fd fd;
93 struct lapd_instance *lapd;
94 } dahdi;
Harald Welte1fa60c82009-02-09 18:13:26 +000095 } driver;
96};
97
98struct e1inp_driver {
99 struct llist_head list;
100 const char *name;
101 int (*want_write)(struct e1inp_ts *ts);
Harald Welte54552432011-02-05 12:26:55 +0100102 int (*line_update)(struct e1inp_line *line);
Holger Hans Peter Freytherd85642a2010-04-26 16:02:04 +0800103 int default_delay;
Harald Welte1fa60c82009-02-09 18:13:26 +0000104};
105
106struct e1inp_line {
107 struct llist_head list;
108 unsigned int num;
109 const char *name;
110
111 /* array of timestlots */
112 struct e1inp_ts ts[NUM_E1_TS];
113
114 struct e1inp_driver *driver;
115 void *driver_data;
116};
117
118/* register a driver with the E1 core */
119int e1inp_driver_register(struct e1inp_driver *drv);
120
Harald Welte3016d9f2011-02-05 13:54:41 +0100121/* fine a previously registered driver */
122struct e1inp_driver *e1inp_driver_find(const char *name);
123
Harald Welte1fa60c82009-02-09 18:13:26 +0000124/* register a line with the E1 core */
125int e1inp_line_register(struct e1inp_line *line);
126
Harald Welte3016d9f2011-02-05 13:54:41 +0100127/* get a line by its ID */
128struct e1inp_line *e1inp_line_get(u_int8_t e1_nr);
129
130/* create a line in the E1 input core */
131struct e1inp_line *e1inp_line_create(u_int8_t e1_nr, const char *driver_name);
Harald Welte42581822009-08-08 16:12:58 +0200132
Harald Welte1fa60c82009-02-09 18:13:26 +0000133/* find a sign_link for given TEI and SAPI in a TS */
134struct e1inp_sign_link *
135e1inp_lookup_sign_link(struct e1inp_ts *ts, u_int8_t tei,
136 u_int8_t sapi);
137
138/* create a new signalling link in a E1 timeslot */
139struct e1inp_sign_link *
140e1inp_sign_link_create(struct e1inp_ts *ts, enum e1inp_sign_type type,
141 struct gsm_bts_trx *trx, u_int8_t tei,
142 u_int8_t sapi);
143
144/* configure and initialize one e1inp_ts */
145int e1inp_ts_config(struct e1inp_ts *ts, struct e1inp_line *line,
146 enum e1inp_ts_type type);
147
148/* Call from the Stack: configuration of this TS has changed */
149int e1inp_update_ts(struct e1inp_ts *ts);
150
151/* Receive a packet from the E1 driver */
152int e1inp_rx_ts(struct e1inp_ts *ts, struct msgb *msg,
153 u_int8_t tei, u_int8_t sapi);
154
155/* called by driver if it wants to transmit on a given TS */
156struct msgb *e1inp_tx_ts(struct e1inp_ts *e1i_ts,
157 struct e1inp_sign_link **sign_link);
158
159/* called by driver in case some kind of link state event */
160int e1inp_event(struct e1inp_ts *ts, int evt, u_int8_t tei, u_int8_t sapi);
161
Holger Freyther0469cf62009-03-31 12:14:16 +0000162/* Write LAPD frames to the fd. */
163void e1_set_pcap_fd(int fd);
164
Harald Welte1fa60c82009-02-09 18:13:26 +0000165/* called by TRAU muxer to obtain the destination mux entity */
166struct subch_mux *e1inp_get_mux(u_int8_t e1_nr, u_int8_t ts_nr);
167
Holger Hans Peter Freyther34e97492009-08-10 07:54:02 +0200168void e1inp_sign_link_destroy(struct e1inp_sign_link *link);
169int e1inp_line_update(struct e1inp_line *line);
Harald Welte42581822009-08-08 16:12:58 +0200170
Holger Freytherff9592f2009-03-09 16:17:14 +0000171/* e1_config.c */
Harald Welte42581822009-08-08 16:12:58 +0200172int e1_reconfig_ts(struct gsm_bts_trx_ts *ts);
173int e1_reconfig_trx(struct gsm_bts_trx *trx);
174int e1_reconfig_bts(struct gsm_bts *bts);
175
Harald Welte25de9912009-04-30 15:53:07 +0000176int ia_config_connect(struct gsm_bts *bts, struct sockaddr_in *sin);
Harald Welteedb37782009-05-01 14:59:07 +0000177int ipaccess_setup(struct gsm_network *gsmnet);
Holger Freytherff9592f2009-03-09 16:17:14 +0000178
Harald Welte75727452009-05-23 05:26:29 +0000179extern struct llist_head e1inp_driver_list;
180extern struct llist_head e1inp_line_list;
Holger Freytherff9592f2009-03-09 16:17:14 +0000181
Harald Welte3016d9f2011-02-05 13:54:41 +0100182int e1inp_vty_init(void);
183void e1inp_init(void);
184
Harald Welted88a3872011-02-14 15:26:13 +0100185int _abis_nm_sendmsg(struct msgb *msg, int to_trx_oml);
186
Harald Welte1fa60c82009-02-09 18:13:26 +0000187#endif /* _E1_INPUT_H */