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