blob: 2752db645e2e8f62d28a5de2be96b6610a5c6bd0 [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
7#include <openbsc/linuxlist.h>
8#include <openbsc/gsm_data.h>
9#include <openbsc/msgb.h>
10#include <openbsc/select.h>
11#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 {
67 struct llist_head sign_links;
68 } sign;
69 struct {
70 /* subchannel demuxer for frames from E1 */
71 struct subch_demux demux;
72 /* subchannel muxer for frames to E1 */
73 struct subch_mux mux;
74 } trau;
75 };
76 union {
77 struct {
78 /* mISDN driver has one fd for each ts */
79 struct bsc_fd fd;
80 } misdn;
Harald Welte5fd8a542009-02-13 02:43:36 +000081 struct {
82 /* ip.access driver has one fd for each ts */
83 struct bsc_fd fd;
84 } ipaccess;
85
Harald Welte1fa60c82009-02-09 18:13:26 +000086 } driver;
87};
88
89struct e1inp_driver {
90 struct llist_head list;
91 const char *name;
92 int (*want_write)(struct e1inp_ts *ts);
93};
94
95struct e1inp_line {
96 struct llist_head list;
97 unsigned int num;
98 const char *name;
99
100 /* array of timestlots */
101 struct e1inp_ts ts[NUM_E1_TS];
102
103 struct e1inp_driver *driver;
104 void *driver_data;
105};
106
107/* register a driver with the E1 core */
108int e1inp_driver_register(struct e1inp_driver *drv);
109
110/* register a line with the E1 core */
111int e1inp_line_register(struct e1inp_line *line);
112
113/* find a sign_link for given TEI and SAPI in a TS */
114struct e1inp_sign_link *
115e1inp_lookup_sign_link(struct e1inp_ts *ts, u_int8_t tei,
116 u_int8_t sapi);
117
118/* create a new signalling link in a E1 timeslot */
119struct e1inp_sign_link *
120e1inp_sign_link_create(struct e1inp_ts *ts, enum e1inp_sign_type type,
121 struct gsm_bts_trx *trx, u_int8_t tei,
122 u_int8_t sapi);
123
124/* configure and initialize one e1inp_ts */
125int e1inp_ts_config(struct e1inp_ts *ts, struct e1inp_line *line,
126 enum e1inp_ts_type type);
127
128/* Call from the Stack: configuration of this TS has changed */
129int e1inp_update_ts(struct e1inp_ts *ts);
130
131/* Receive a packet from the E1 driver */
132int e1inp_rx_ts(struct e1inp_ts *ts, struct msgb *msg,
133 u_int8_t tei, u_int8_t sapi);
134
135/* called by driver if it wants to transmit on a given TS */
136struct msgb *e1inp_tx_ts(struct e1inp_ts *e1i_ts,
137 struct e1inp_sign_link **sign_link);
138
139/* called by driver in case some kind of link state event */
140int e1inp_event(struct e1inp_ts *ts, int evt, u_int8_t tei, u_int8_t sapi);
141
Holger Freyther0469cf62009-03-31 12:14:16 +0000142/* Write LAPD frames to the fd. */
143void e1_set_pcap_fd(int fd);
144
Harald Welte1fa60c82009-02-09 18:13:26 +0000145/* called by TRAU muxer to obtain the destination mux entity */
146struct subch_mux *e1inp_get_mux(u_int8_t e1_nr, u_int8_t ts_nr);
147
Holger Freytherff9592f2009-03-09 16:17:14 +0000148/* e1_config.c */
Holger Freytherb5c00f52009-04-22 22:08:07 +0000149int e1_config(struct gsm_bts *bts, int cardnr, int release_l2);
Harald Welte25de9912009-04-30 15:53:07 +0000150int ia_config_connect(struct gsm_bts *bts, struct sockaddr_in *sin);
Harald Welteedb37782009-05-01 14:59:07 +0000151int ipaccess_setup(struct gsm_network *gsmnet);
Holger Freytherff9592f2009-03-09 16:17:14 +0000152
Harald Welte75727452009-05-23 05:26:29 +0000153extern struct llist_head e1inp_driver_list;
154extern struct llist_head e1inp_line_list;
Holger Freytherff9592f2009-03-09 16:17:14 +0000155
Harald Welte1fa60c82009-02-09 18:13:26 +0000156#endif /* _E1_INPUT_H */