blob: 4b39d6ba04e1801ed84af261d2a319ceb2186042 [file] [log] [blame]
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +02001/* OpenBSC Abis input driver for DAHDI */
2
3/* (C) 2008-2011 by Harald Welte <laforge@gnumonks.org>
4 * (C) 2009 by Holger Hans Peter Freyther <zecke@selfish.org>
5 * (C) 2010 by Digium and Matthew Fredrickson <creslin@digium.com>
6 *
7 * All Rights Reserved
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 *
23 */
24
Harald Welte3bc78852011-08-24 08:32:38 +020025#include "../../config.h"
26
27#ifdef HAVE_DAHDI_USER_H
28
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +020029#include <stdio.h>
30#include <unistd.h>
31#include <stdlib.h>
32#include <errno.h>
33#include <string.h>
34#include <time.h>
35#include <sys/fcntl.h>
36#include <sys/socket.h>
37#include <sys/ioctl.h>
38#include <arpa/inet.h>
39#include <dahdi/user.h>
40
Harald Weltefe05cf52011-09-26 23:18:41 +020041#include <osmocom/core/talloc.h>
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +020042#include <osmocom/core/select.h>
43#include <osmocom/core/msgb.h>
Pablo Neira Ayuso0b9ed9a2011-07-02 17:25:19 +020044#include <osmocom/core/logging.h>
Pablo Neira Ayusoa20762a2011-07-02 19:01:58 +020045#include <osmocom/core/signal.h>
Harald Welte95e5dec2011-08-16 14:41:32 +020046#include <osmocom/core/rate_ctr.h>
Harald Weltefe05cf52011-09-26 23:18:41 +020047
48#include <osmocom/vty/vty.h>
49
Pablo Neira Ayuso0b9ed9a2011-07-02 17:25:19 +020050#include <osmocom/abis/subchan_demux.h>
51#include <osmocom/abis/e1_input.h>
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +020052
Pablo Neira Ayuso355ce692011-07-05 14:53:37 +020053#include <osmocom/abis/lapd.h>
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +020054
55#define TS1_ALLOC_SIZE 300
56
Harald Weltec2889512011-09-13 23:49:04 +010057struct span_cfg {
58 struct llist_head list;
59
60 unsigned int span_nr;
61 unsigned int chan_base;
62 unsigned int chan_num;
63};
64
65static struct span_cfg *span_cfgs[DAHDI_MAX_SPANS];
66
67static int reread_span_cfgs(void)
68{
69 struct dahdi_spaninfo si;
70 unsigned int basechan = 1;
Harald Welte494f2902011-09-26 23:06:49 +020071 int span_nr;
Harald Weltec2889512011-09-13 23:49:04 +010072 int fd;
73
74 if ((fd = open("/dev/dahdi/ctl", O_RDWR)) < 0) {
75 LOGP(DLMI, LOGL_ERROR, "Unable to open DAHDI ctl: %s\n",
76 strerror(errno));
77 return -EIO;
78 }
79
Harald Weltee2bd6852011-09-26 23:03:12 +020080 for (span_nr = 1; span_nr < DAHDI_MAX_SPANS; span_nr++) {
Harald Weltec2889512011-09-13 23:49:04 +010081 struct span_cfg *scfg;
Harald Weltee2bd6852011-09-26 23:03:12 +020082 /* our array index starts at 0, but DAHDI span at 1 */
83 int i = span_nr - 1;
Harald Weltec2889512011-09-13 23:49:04 +010084
85 /* clear any old cached information */
86 if (span_cfgs[i]) {
87 talloc_free(span_cfgs[i]);
88 span_cfgs[i] = NULL;
89 }
90
91 memset(&si, 0, sizeof(si));
Harald Weltee2bd6852011-09-26 23:03:12 +020092 si.spanno = span_nr;
Harald Weltec2889512011-09-13 23:49:04 +010093 if (ioctl(fd, DAHDI_SPANSTAT, &si))
94 continue;
95
96 /* create and link new span_cfg */
97 scfg = talloc_zero(NULL, struct span_cfg);
98 if (!scfg) {
99 close(fd);
100 return -ENOMEM;
101 }
Harald Weltee2bd6852011-09-26 23:03:12 +0200102 scfg->span_nr = span_nr;
Harald Weltec2889512011-09-13 23:49:04 +0100103 scfg->chan_num = si.totalchans;
104 scfg->chan_base = basechan;
105 span_cfgs[i] = scfg;
106
107 basechan += si.totalchans;
108 }
109
110 close(fd);
111
112 return 0;
113}
114
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200115/* Corresponds to dahdi/user.h, only PRI related events */
116static const struct value_string dahdi_evt_names[] = {
117 { DAHDI_EVENT_NONE, "NONE" },
118 { DAHDI_EVENT_ALARM, "ALARM" },
119 { DAHDI_EVENT_NOALARM, "NOALARM" },
120 { DAHDI_EVENT_ABORT, "HDLC ABORT" },
121 { DAHDI_EVENT_OVERRUN, "HDLC OVERRUN" },
122 { DAHDI_EVENT_BADFCS, "HDLC BAD FCS" },
123 { DAHDI_EVENT_REMOVED, "REMOVED" },
124 { 0, NULL }
125};
126
127static void handle_dahdi_exception(struct e1inp_ts *ts)
128{
129 int rc, evt;
Harald Welte95e5dec2011-08-16 14:41:32 +0200130 struct e1inp_line *line = ts->line;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200131 struct input_signal_data isd;
132
133 rc = ioctl(ts->driver.dahdi.fd.fd, DAHDI_GETEVENT, &evt);
134 if (rc < 0)
135 return;
136
Harald Weltecc2241b2011-07-19 16:06:06 +0200137 LOGP(DLMI, LOGL_NOTICE, "Line %u(%s) / TS %u DAHDI EVENT %s\n",
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200138 ts->line->num, ts->line->name, ts->num,
139 get_value_string(dahdi_evt_names, evt));
140
141 isd.line = ts->line;
142
143 switch (evt) {
144 case DAHDI_EVENT_ALARM:
145 /* we should notify the code that the line is gone */
Pablo Neira Ayusode668912011-08-16 17:26:23 +0200146 osmo_signal_dispatch(SS_L_INPUT, S_L_INP_LINE_ALARM, &isd);
Harald Welte95e5dec2011-08-16 14:41:32 +0200147 rate_ctr_inc(&line->rate_ctr->ctr[E1I_CTR_ALARM]);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200148 break;
149 case DAHDI_EVENT_NOALARM:
150 /* alarm has gone, we should re-start the SABM requests */
Pablo Neira Ayusode668912011-08-16 17:26:23 +0200151 osmo_signal_dispatch(SS_L_INPUT, S_L_INP_LINE_NOALARM, &isd);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200152 break;
Harald Welte95e5dec2011-08-16 14:41:32 +0200153 case DAHDI_EVENT_ABORT:
154 rate_ctr_inc(&line->rate_ctr->ctr[E1I_CTR_HDLC_ABORT]);
155 break;
156 case DAHDI_EVENT_OVERRUN:
157 rate_ctr_inc(&line->rate_ctr->ctr[E1I_CTR_HDLC_OVERR]);
158 break;
159 case DAHDI_EVENT_BADFCS:
160 rate_ctr_inc(&line->rate_ctr->ctr[E1I_CTR_HDLC_BADFCS]);
161 break;
162 case DAHDI_EVENT_REMOVED:
163 rate_ctr_inc(&line->rate_ctr->ctr[E1I_CTR_REMOVED]);
164 break;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200165 }
166}
167
168static int handle_ts1_read(struct osmo_fd *bfd)
169{
170 struct e1inp_line *line = bfd->data;
171 unsigned int ts_nr = bfd->priv_nr;
172 struct e1inp_ts *e1i_ts = &line->ts[ts_nr-1];
173 struct msgb *msg = msgb_alloc(TS1_ALLOC_SIZE, "DAHDI TS1");
Harald Weltefd44a5f2011-08-21 00:48:54 +0200174 int ret;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200175
176 if (!msg)
177 return -ENOMEM;
178
179 ret = read(bfd->fd, msg->data, TS1_ALLOC_SIZE - 16);
180 if (ret == -1)
181 handle_dahdi_exception(e1i_ts);
182 else if (ret < 0) {
183 perror("read ");
184 }
185 msgb_put(msg, ret - 2);
186 if (ret <= 3) {
187 perror("read ");
188 }
189
Harald Weltefd44a5f2011-08-21 00:48:54 +0200190 return e1inp_rx_ts_lapd(e1i_ts, msg);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200191}
192
193static int ts_want_write(struct e1inp_ts *e1i_ts)
194{
195 /* We never include the DAHDI B-Channel FD into the
196 * writeset, since it doesn't support poll() based
197 * write flow control */
198 if (e1i_ts->type == E1INP_TS_TYPE_TRAU) {
199 fprintf(stderr, "Trying to write TRAU ts\n");
200 return 0;
201 }
202
203 e1i_ts->driver.dahdi.fd.when |= BSC_FD_WRITE;
204
205 return 0;
206}
207
208static void timeout_ts1_write(void *data)
209{
210 struct e1inp_ts *e1i_ts = (struct e1inp_ts *)data;
211
212 /* trigger write of ts1, due to tx delay timer */
213 ts_want_write(e1i_ts);
214}
215
216static void dahdi_write_msg(uint8_t *data, int len, void *cbdata)
217{
218 struct osmo_fd *bfd = cbdata;
219 struct e1inp_line *line = bfd->data;
220 unsigned int ts_nr = bfd->priv_nr;
221 struct e1inp_ts *e1i_ts = &line->ts[ts_nr-1];
222 int ret;
223
224 ret = write(bfd->fd, data, len + 2);
225 if (ret == -1)
226 handle_dahdi_exception(e1i_ts);
227 else if (ret < 0)
Harald Weltecc2241b2011-07-19 16:06:06 +0200228 LOGP(DLMI, LOGL_NOTICE, "%s write failed %d\n", __func__, ret);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200229}
230
231static int handle_ts1_write(struct osmo_fd *bfd)
232{
233 struct e1inp_line *line = bfd->data;
234 unsigned int ts_nr = bfd->priv_nr;
235 struct e1inp_ts *e1i_ts = &line->ts[ts_nr-1];
236 struct e1inp_sign_link *sign_link;
237 struct msgb *msg;
238
239 bfd->when &= ~BSC_FD_WRITE;
240
241 /* get the next msg for this timeslot */
242 msg = e1inp_tx_ts(e1i_ts, &sign_link);
243 if (!msg) {
244 /* no message after tx delay timer */
245 return 0;
246 }
247
Harald Weltecc2241b2011-07-19 16:06:06 +0200248 DEBUGP(DLMI, "TX: %s\n", osmo_hexdump(msg->data, msg->len));
Harald Weltefd44a5f2011-08-21 00:48:54 +0200249 lapd_transmit(e1i_ts->lapd, sign_link->tei,
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200250 sign_link->sapi, msg->data, msg->len);
251 msgb_free(msg);
252
253 /* set tx delay timer for next event */
254 e1i_ts->sign.tx_timer.cb = timeout_ts1_write;
255 e1i_ts->sign.tx_timer.data = e1i_ts;
256 osmo_timer_schedule(&e1i_ts->sign.tx_timer, 0, 50000);
257
258 return 0;
259}
260
261
262static int invertbits = 1;
263
264static uint8_t flip_table[256];
265
266static void init_flip_bits(void)
267{
268 int i,k;
269
270 for (i = 0 ; i < 256 ; i++) {
271 uint8_t sample = 0 ;
272 for (k = 0; k<8; k++) {
273 if ( i & 1 << k ) sample |= 0x80 >> k;
274 }
275 flip_table[i] = sample;
276 }
277}
278
279static uint8_t * flip_buf_bits ( uint8_t * buf , int len)
280{
281 int i;
282 uint8_t * start = buf;
283
284 for (i = 0 ; i < len; i++) {
285 buf[i] = flip_table[(uint8_t)buf[i]];
286 }
287
288 return start;
289}
290
291#define D_BCHAN_TX_GRAN 160
292/* write to a B channel TS */
293static int handle_tsX_write(struct osmo_fd *bfd)
294{
295 struct e1inp_line *line = bfd->data;
296 unsigned int ts_nr = bfd->priv_nr;
297 struct e1inp_ts *e1i_ts = &line->ts[ts_nr-1];
298 uint8_t tx_buf[D_BCHAN_TX_GRAN];
299 struct subch_mux *mx = &e1i_ts->trau.mux;
300 int ret;
301
302 ret = subchan_mux_out(mx, tx_buf, D_BCHAN_TX_GRAN);
303
304 if (ret != D_BCHAN_TX_GRAN) {
305 fprintf(stderr, "Huh, got ret of %d\n", ret);
306 if (ret < 0)
307 return ret;
308 }
309
Harald Weltecc2241b2011-07-19 16:06:06 +0200310 DEBUGP(DLMIB, "BCHAN TX: %s\n",
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200311 osmo_hexdump(tx_buf, D_BCHAN_TX_GRAN));
312
313 if (invertbits) {
314 flip_buf_bits(tx_buf, ret);
315 }
316
317 ret = write(bfd->fd, tx_buf, ret);
318 if (ret < D_BCHAN_TX_GRAN)
319 fprintf(stderr, "send returns %d instead of %d\n", ret,
320 D_BCHAN_TX_GRAN);
321
322 return ret;
323}
324
325#define D_TSX_ALLOC_SIZE (D_BCHAN_TX_GRAN)
326/* FIXME: read from a B channel TS */
327static int handle_tsX_read(struct osmo_fd *bfd)
328{
329 struct e1inp_line *line = bfd->data;
330 unsigned int ts_nr = bfd->priv_nr;
331 struct e1inp_ts *e1i_ts = &line->ts[ts_nr-1];
332 struct msgb *msg = msgb_alloc(D_TSX_ALLOC_SIZE, "DAHDI TSx");
333 int ret;
334
335 if (!msg)
336 return -ENOMEM;
337
338 ret = read(bfd->fd, msg->data, D_TSX_ALLOC_SIZE);
339 if (ret < 0 || ret != D_TSX_ALLOC_SIZE) {
340 fprintf(stderr, "read error %d %s\n", ret, strerror(errno));
341 return ret;
342 }
343
344 if (invertbits) {
345 flip_buf_bits(msg->data, ret);
346 }
347
348 msgb_put(msg, ret);
349
350 msg->l2h = msg->data;
Harald Weltecc2241b2011-07-19 16:06:06 +0200351 DEBUGP(DLMIB, "BCHAN RX: %s\n",
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200352 osmo_hexdump(msgb_l2(msg), ret));
353 ret = e1inp_rx_ts(e1i_ts, msg, 0, 0);
354 /* physical layer indicates that data has been sent,
355 * we thus can send some more data */
356 ret = handle_tsX_write(bfd);
357 msgb_free(msg);
358
359 return ret;
360}
361
362/* callback from select.c in case one of the fd's can be read/written */
363static int dahdi_fd_cb(struct osmo_fd *bfd, unsigned int what)
364{
365 struct e1inp_line *line = bfd->data;
366 unsigned int ts_nr = bfd->priv_nr;
367 unsigned int idx = ts_nr-1;
368 struct e1inp_ts *e1i_ts = &line->ts[idx];
369 int rc = 0;
370
371 switch (e1i_ts->type) {
372 case E1INP_TS_TYPE_SIGN:
373 if (what & BSC_FD_EXCEPT)
374 handle_dahdi_exception(e1i_ts);
375 if (what & BSC_FD_READ)
376 rc = handle_ts1_read(bfd);
377 if (what & BSC_FD_WRITE)
378 rc = handle_ts1_write(bfd);
379 break;
380 case E1INP_TS_TYPE_TRAU:
381 if (what & BSC_FD_EXCEPT)
382 handle_dahdi_exception(e1i_ts);
383 if (what & BSC_FD_READ)
384 rc = handle_tsX_read(bfd);
385 if (what & BSC_FD_WRITE)
386 rc = handle_tsX_write(bfd);
387 /* We never include the DAHDI B-Channel FD into the
388 * writeset, since it doesn't support poll() based
389 * write flow control */
390 break;
391 default:
392 fprintf(stderr, "unknown E1 TS type %u\n", e1i_ts->type);
393 break;
394 }
395
396 return rc;
397}
398
Harald Weltefe05cf52011-09-26 23:18:41 +0200399static void dahdi_vty_show(struct vty *vty, struct e1inp_line *line)
400{
401 struct span_cfg *scfg;
402
403 if (line->port_nr > ARRAY_SIZE(span_cfgs))
404 return;
405
406 scfg = span_cfgs[line->port_nr];
407 if (!scfg) {
408 vty_out(vty, "DAHDI Span %u non-existant%s",
409 line->port_nr+1, VTY_NEWLINE);
410 return;
411 }
412
413 vty_out(vty, "DAHDI Span #%u, Base Nr %u, Timeslots: %u%s",
414 line->port_nr+1, scfg->chan_base, scfg->chan_num,
415 VTY_NEWLINE);
416}
417
Pablo Neira Ayuso4e862cb2011-08-19 18:43:38 +0200418static int dahdi_e1_line_update(struct e1inp_line *line);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200419
420struct e1inp_driver dahdi_driver = {
421 .name = "dahdi",
422 .want_write = ts_want_write,
423 .line_update = &dahdi_e1_line_update,
Harald Weltefe05cf52011-09-26 23:18:41 +0200424 .vty_show = &dahdi_vty_show,
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200425};
426
427void dahdi_set_bufinfo(int fd, int as_sigchan)
428{
429 struct dahdi_bufferinfo bi;
430 int x = 0;
431
432 if (ioctl(fd, DAHDI_GET_BUFINFO, &bi)) {
433 fprintf(stderr, "Error getting bufinfo\n");
434 exit(-1);
435 }
436
437 if (as_sigchan) {
438 bi.numbufs = 4;
439 bi.bufsize = 512;
440 } else {
441 bi.numbufs = 8;
442 bi.bufsize = D_BCHAN_TX_GRAN;
443 bi.txbufpolicy = DAHDI_POLICY_WHEN_FULL;
444 }
445
446 if (ioctl(fd, DAHDI_SET_BUFINFO, &bi)) {
447 fprintf(stderr, "Error setting bufinfo\n");
448 exit(-1);
449 }
450
451 if (!as_sigchan) {
452 if (ioctl(fd, DAHDI_AUDIOMODE, &x)) {
453 fprintf(stderr, "Error setting bufinfo\n");
454 exit(-1);
455 }
456 } else {
457 int one = 1;
458 ioctl(fd, DAHDI_HDLCFCSMODE, &one);
459 /* we cannot reliably check for the ioctl return value here
460 * as this command will fail if the slot _already_ was a
461 * signalling slot before :( */
462 }
463}
464
465static int dahdi_e1_setup(struct e1inp_line *line)
466{
Harald Weltec2889512011-09-13 23:49:04 +0100467 struct span_cfg *scfg;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200468 int ts, ret;
469
Harald Weltec2889512011-09-13 23:49:04 +0100470 reread_span_cfgs();
471
472 scfg = span_cfgs[line->port_nr];
Harald Welte0cf55142011-09-26 23:06:18 +0200473 if (!scfg) {
474 LOGP(DLMI, LOGL_ERROR, "Line %u(%s): DAHDI Port %u (Span %u) "
475 "doesn't exist\n", line->num, line->name, line->port_nr,
476 line->port_nr+1);
Harald Weltec2889512011-09-13 23:49:04 +0100477 return -EIO;
Harald Welte0cf55142011-09-26 23:06:18 +0200478 }
Harald Weltec2889512011-09-13 23:49:04 +0100479
480 line->num_ts = scfg->chan_num;
481
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200482 /* TS0 is CRC4, don't need any fd for it */
Harald Weltec2889512011-09-13 23:49:04 +0100483 for (ts = 1; ts <= scfg->chan_num; ts++) {
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200484 unsigned int idx = ts-1;
485 char openstr[128];
486 struct e1inp_ts *e1i_ts = &line->ts[idx];
487 struct osmo_fd *bfd = &e1i_ts->driver.dahdi.fd;
Harald Weltef3ca61c2011-08-09 11:21:23 +0200488 int dev_nr;
489
Harald Weltecfc9f1f2011-08-24 09:45:36 +0200490 /* unregister FD if it was already registered */
491 if (bfd->list.next && bfd->list.next != LLIST_POISON1)
492 osmo_fd_unregister(bfd);
493
Harald Weltef3ca61c2011-08-09 11:21:23 +0200494 /* DAHDI device names/numbers just keep incrementing
495 * even over multiple boards. So TS1 of the second
496 * board will be 32 */
Harald Weltec2889512011-09-13 23:49:04 +0100497 dev_nr = scfg->chan_base + idx;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200498
499 bfd->data = line;
500 bfd->priv_nr = ts;
501 bfd->cb = dahdi_fd_cb;
Harald Weltef3ca61c2011-08-09 11:21:23 +0200502 snprintf(openstr, sizeof(openstr), "/dev/dahdi/%d", dev_nr);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200503
504 switch (e1i_ts->type) {
505 case E1INP_TS_TYPE_NONE:
Harald Weltecfc9f1f2011-08-24 09:45:36 +0200506 /* close/release LAPD instance, if any */
507 if (e1i_ts->lapd) {
508 lapd_instance_free(e1i_ts->lapd);
509 e1i_ts->lapd = NULL;
510 }
511 if (bfd->fd) {
512 close(bfd->fd);
513 bfd->fd = 0;
514 }
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200515 continue;
516 break;
517 case E1INP_TS_TYPE_SIGN:
Harald Weltecfc9f1f2011-08-24 09:45:36 +0200518 if (!bfd->fd)
519 bfd->fd = open(openstr, O_RDWR | O_NONBLOCK);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200520 if (bfd->fd == -1) {
521 fprintf(stderr, "%s could not open %s %s\n",
522 __func__, openstr, strerror(errno));
523 exit(-1);
524 }
525 bfd->when = BSC_FD_READ | BSC_FD_EXCEPT;
526 dahdi_set_bufinfo(bfd->fd, 1);
Harald Weltecfc9f1f2011-08-24 09:45:36 +0200527 if (!e1i_ts->lapd)
528 e1i_ts->lapd = lapd_instance_alloc(1, dahdi_write_msg, bfd);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200529 break;
530 case E1INP_TS_TYPE_TRAU:
Harald Weltecfc9f1f2011-08-24 09:45:36 +0200531 /* close/release LAPD instance, if any */
532 if (e1i_ts->lapd) {
533 lapd_instance_free(e1i_ts->lapd);
534 e1i_ts->lapd = NULL;
535 }
536 if (!bfd->fd)
537 bfd->fd = open(openstr, O_RDWR | O_NONBLOCK);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200538 if (bfd->fd == -1) {
539 fprintf(stderr, "%s could not open %s %s\n",
540 __func__, openstr, strerror(errno));
541 exit(-1);
542 }
543 dahdi_set_bufinfo(bfd->fd, 0);
544 /* We never include the DAHDI B-Channel FD into the
545 * writeset, since it doesn't support poll() based
546 * write flow control */
547 bfd->when = BSC_FD_READ | BSC_FD_EXCEPT;// | BSC_FD_WRITE;
548 break;
549 }
550
551 if (bfd->fd < 0) {
552 fprintf(stderr, "%s could not open %s %s\n",
553 __func__, openstr, strerror(errno));
554 return bfd->fd;
555 }
556
557 ret = osmo_fd_register(bfd);
558 if (ret < 0) {
559 fprintf(stderr, "could not register FD: %s\n",
560 strerror(ret));
561 return ret;
562 }
563 }
564
565 return 0;
566}
567
Pablo Neira Ayuso4e862cb2011-08-19 18:43:38 +0200568static int dahdi_e1_line_update(struct e1inp_line *line)
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200569{
570 if (line->driver != &dahdi_driver)
571 return -EINVAL;
572
573 return dahdi_e1_setup(line);
574}
575
576int e1inp_dahdi_init(void)
577{
578 init_flip_bits();
579
580 /* register the driver with the core */
581 return e1inp_driver_register(&dahdi_driver);
582}
Harald Welte3bc78852011-08-24 08:32:38 +0200583
584#endif /* HAVE_DAHDI_USER_H */