blob: c142b8ae4e3a8ddec4ba99fe1ea1db1ec59b08a0 [file] [log] [blame]
Matthew Fredricksond105e202010-02-16 22:07:04 +01001/* OpenBSC Abis input driver for DAHDI */
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +01002
Harald Welteba0db5b2011-02-04 21:33:14 +01003/* (C) 2008-2011 by Harald Welte <laforge@gnumonks.org>
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +01004 * (C) 2009 by Holger Hans Peter Freyther <zecke@selfish.org>
Matthew Fredricksond105e202010-02-16 22:07:04 +01005 * (C) 2010 by Digium and Matthew Fredrickson <creslin@digium.com>
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +01006 *
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 Welteca17ef82011-02-05 15:13:27 +010025#include "../../bscconfig.h"
26
27#ifdef HAVE_DAHDI_USER_H
28
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +010029#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/types.h>
37#include <sys/socket.h>
38#include <sys/ioctl.h>
39#include <arpa/inet.h>
Matthew Fredricksoncc2bc352010-03-15 12:22:37 -050040#include <dahdi/user.h>
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +010041
Harald Welte1dd68c32011-02-05 13:58:46 +010042#include <osmocore/select.h>
43#include <osmocore/msgb.h>
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +010044#include <openbsc/debug.h>
45#include <openbsc/gsm_data.h>
46#include <openbsc/abis_nm.h>
47#include <openbsc/abis_rsl.h>
48#include <openbsc/subchan_demux.h>
49#include <openbsc/e1_input.h>
Harald Weltef338a032011-01-14 15:55:42 +010050#include <openbsc/signal.h>
Harald Welte1dd68c32011-02-05 13:58:46 +010051#include <osmocore/talloc.h>
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +010052
Matthew Fredricksonb1cb8eb2010-02-17 19:25:39 +010053#include "lapd.h"
54
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +010055#define TS1_ALLOC_SIZE 300
56
Harald Welte44f04da2011-02-13 14:19:26 +010057/* Corresponds to dahdi/user.h, only PRI related events */
58static const struct value_string dahdi_evt_names[] = {
59 { DAHDI_EVENT_NONE, "NONE" },
60 { DAHDI_EVENT_ALARM, "ALARM" },
61 { DAHDI_EVENT_NOALARM, "NOALARM" },
62 { DAHDI_EVENT_ABORT, "HDLC ABORT" },
63 { DAHDI_EVENT_OVERRUN, "HDLC OVERRUN" },
64 { DAHDI_EVENT_BADFCS, "HDLC BAD FCS" },
65 { DAHDI_EVENT_REMOVED, "REMOVED" },
66 { 0, NULL }
67};
68
69static void handle_dahdi_exception(struct e1inp_ts *ts)
70{
71 int rc, evt;
72
73 rc = ioctl(ts->driver.dahdi.fd.fd, DAHDI_GETEVENT, &evt);
74 if (rc < 0)
75 return;
76
77 LOGP(DMI, LOGL_NOTICE, "Line %u(%s) / TS %u DAHDI EVENT %s\n",
78 ts->line->num, ts->line->name, ts->num,
79 get_value_string(dahdi_evt_names, evt));
80
81 switch (evt) {
82 case DAHDI_EVENT_ALARM:
83 /* FIXME: we should notify the code that the line is gone */
84 break;
85 case DAHDI_EVENT_NOALARM:
86 /* FIXME: alarm has gone, we should re-start the SABM requests */
87 break;
88 }
89}
90
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +010091static int handle_ts1_read(struct bsc_fd *bfd)
92{
93 struct e1inp_line *line = bfd->data;
94 unsigned int ts_nr = bfd->priv_nr;
95 struct e1inp_ts *e1i_ts = &line->ts[ts_nr-1];
Matthew Fredricksonbc6649e2010-02-16 22:01:36 +010096 struct msgb *msg = msgb_alloc(TS1_ALLOC_SIZE, "DAHDI TS1");
Harald Welteba0db5b2011-02-04 21:33:14 +010097 lapd_mph_type prim;
98 unsigned int sapi, tei;
99 int ilen, ret;
Harald Welted38f1052011-02-05 19:13:00 +0100100 uint8_t *idata;
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100101
102 if (!msg)
103 return -ENOMEM;
104
Matthew Fredricksoncc2bc352010-03-15 12:22:37 -0500105 ret = read(bfd->fd, msg->data, TS1_ALLOC_SIZE - 16);
Harald Welte44f04da2011-02-13 14:19:26 +0100106 if (ret == -1)
107 handle_dahdi_exception(e1i_ts);
108 else if (ret < 0) {
Matthew Fredricksonb1cb8eb2010-02-17 19:25:39 +0100109 perror("read ");
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100110 }
Matthew Fredricksoncc2bc352010-03-15 12:22:37 -0500111 msgb_put(msg, ret - 2);
Matthew Fredricksonb1cb8eb2010-02-17 19:25:39 +0100112 if (ret <= 3) {
113 perror("read ");
114 }
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100115
Harald Welteba0db5b2011-02-04 21:33:14 +0100116 sapi = msg->data[0] >> 2;
117 tei = msg->data[1] >> 1;
Matthew Fredricksoncc2bc352010-03-15 12:22:37 -0500118
Harald Welteba0db5b2011-02-04 21:33:14 +0100119 DEBUGP(DMI, "<= len = %d, sapi(%d) tei(%d)", ret, sapi, tei);
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100120
Harald Welted38f1052011-02-05 19:13:00 +0100121 idata = lapd_receive(e1i_ts->driver.dahdi.lapd, msg->data, msg->len, &ilen, &prim);
Harald Welte1458ec62011-02-05 19:50:44 +0100122 if (!idata && prim == 0)
Harald Welted38f1052011-02-05 19:13:00 +0100123 return -EIO;
Matthew Fredricksonb1cb8eb2010-02-17 19:25:39 +0100124
Matthew Fredricksonb1cb8eb2010-02-17 19:25:39 +0100125 msgb_pull(msg, 2);
126
Harald Welteba0db5b2011-02-04 21:33:14 +0100127 DEBUGP(DMI, "prim %08x\n", prim);
Matthew Fredricksonb1cb8eb2010-02-17 19:25:39 +0100128
Harald Welteba0db5b2011-02-04 21:33:14 +0100129 switch (prim) {
130 case 0:
Matthew Fredricksonb1cb8eb2010-02-17 19:25:39 +0100131 break;
Harald Welteba0db5b2011-02-04 21:33:14 +0100132 case LAPD_MPH_ACTIVATE_IND:
133 DEBUGP(DMI, "MPH_ACTIVATE_IND: sapi(%d) tei(%d)\n", sapi, tei);
Harald Weltef338a032011-01-14 15:55:42 +0100134 ret = e1inp_event(e1i_ts, S_INP_TEI_UP, tei, sapi);
Matthew Fredricksonb1cb8eb2010-02-17 19:25:39 +0100135 break;
Harald Welteba0db5b2011-02-04 21:33:14 +0100136 case LAPD_MPH_DEACTIVATE_IND:
137 DEBUGP(DMI, "MPH_DEACTIVATE_IND: sapi(%d) tei(%d)\n", sapi, tei);
Harald Weltef338a032011-01-14 15:55:42 +0100138 ret = e1inp_event(e1i_ts, S_INP_TEI_DN, tei, sapi);
Matthew Fredricksonb1cb8eb2010-02-17 19:25:39 +0100139 break;
Harald Welteba0db5b2011-02-04 21:33:14 +0100140 case LAPD_DL_DATA_IND:
141 case LAPD_DL_UNITDATA_IND:
Harald Welte1dd68c32011-02-05 13:58:46 +0100142 if (prim == LAPD_DL_DATA_IND)
Matthew Fredricksoncc2bc352010-03-15 12:22:37 -0500143 msg->l2h = msg->data + 2;
144 else
145 msg->l2h = msg->data + 1;
146 DEBUGP(DMI, "RX: %s\n", hexdump(msgb_l2(msg), ret));
Harald Welteba0db5b2011-02-04 21:33:14 +0100147 ret = e1inp_rx_ts(e1i_ts, msg, tei, sapi);
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100148 break;
149 default:
Harald Welteba0db5b2011-02-04 21:33:14 +0100150 printf("ERROR: unknown prim\n");
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100151 break;
152 }
Harald Welteba0db5b2011-02-04 21:33:14 +0100153
Matthew Fredricksoncc2bc352010-03-15 12:22:37 -0500154 DEBUGP(DMI, "Returned ok\n");
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100155 return ret;
156}
157
158static int ts_want_write(struct e1inp_ts *e1i_ts)
159{
Harald Welteba0db5b2011-02-04 21:33:14 +0100160 /* We never include the DAHDI B-Channel FD into the
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100161 * writeset, since it doesn't support poll() based
Harald Welte62d46032011-02-05 20:25:22 +0100162 * write flow control */
Matthew Fredricksoncc2bc352010-03-15 12:22:37 -0500163 if (e1i_ts->type == E1INP_TS_TYPE_TRAU) {
164 fprintf(stderr, "Trying to write TRAU ts\n");
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100165 return 0;
Matthew Fredricksoncc2bc352010-03-15 12:22:37 -0500166 }
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100167
Harald Welted38f1052011-02-05 19:13:00 +0100168 e1i_ts->driver.dahdi.fd.when |= BSC_FD_WRITE;
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100169
170 return 0;
171}
172
173static void timeout_ts1_write(void *data)
174{
175 struct e1inp_ts *e1i_ts = (struct e1inp_ts *)data;
176
177 /* trigger write of ts1, due to tx delay timer */
178 ts_want_write(e1i_ts);
179}
180
Matthew Fredricksoncc2bc352010-03-15 12:22:37 -0500181static void dahdi_write_msg(uint8_t *data, int len, void *cbdata)
182{
183 struct bsc_fd *bfd = cbdata;
Harald Welte44f04da2011-02-13 14:19:26 +0100184 struct e1inp_line *line = bfd->data;
185 unsigned int ts_nr = bfd->priv_nr;
186 struct e1inp_ts *e1i_ts = &line->ts[ts_nr-1];
Matthew Fredricksoncc2bc352010-03-15 12:22:37 -0500187 int ret;
188
189 ret = write(bfd->fd, data, len + 2);
Harald Welte44f04da2011-02-13 14:19:26 +0100190 if (ret == -1)
191 handle_dahdi_exception(e1i_ts);
192 else if (ret < 0)
193 LOGP(DMI, LOGL_NOTICE, "%s write failed %d\n", __func__, ret);
Matthew Fredricksoncc2bc352010-03-15 12:22:37 -0500194}
195
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100196static int handle_ts1_write(struct bsc_fd *bfd)
197{
198 struct e1inp_line *line = bfd->data;
199 unsigned int ts_nr = bfd->priv_nr;
200 struct e1inp_ts *e1i_ts = &line->ts[ts_nr-1];
201 struct e1inp_sign_link *sign_link;
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100202 struct msgb *msg;
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100203
204 bfd->when &= ~BSC_FD_WRITE;
205
206 /* get the next msg for this timeslot */
207 msg = e1inp_tx_ts(e1i_ts, &sign_link);
208 if (!msg) {
209 /* no message after tx delay timer */
210 return 0;
211 }
212
Harald Weltea4898a82011-02-12 13:09:12 +0100213 DEBUGP(DMI, "TX: %s\n", hexdump(msg->data, msg->len));
Harald Welte4ee2eaf2011-02-05 20:20:50 +0100214 lapd_transmit(e1i_ts->driver.dahdi.lapd, sign_link->tei,
215 sign_link->sapi, msg->data, msg->len);
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100216 msgb_free(msg);
217
218 /* set tx delay timer for next event */
219 e1i_ts->sign.tx_timer.cb = timeout_ts1_write;
220 e1i_ts->sign.tx_timer.data = e1i_ts;
221 bsc_schedule_timer(&e1i_ts->sign.tx_timer, 0, 50000);
222
Matthew Fredricksoncc2bc352010-03-15 12:22:37 -0500223 return 0;
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100224}
225
Matthew Fredricksoncc2bc352010-03-15 12:22:37 -0500226
227static int invertbits = 1;
228
229static u_int8_t flip_table[256];
230
231static void init_flip_bits(void)
232{
233 int i,k;
234
235 for (i = 0 ; i < 256 ; i++) {
236 u_int8_t sample = 0 ;
237 for (k = 0; k<8; k++) {
238 if ( i & 1 << k ) sample |= 0x80 >> k;
239 }
240 flip_table[i] = sample;
241 }
242}
243
244static u_int8_t * flip_buf_bits ( u_int8_t * buf , int len)
245{
246 int i;
creslin287cd8b86f2010-03-26 12:57:31 -0500247 u_int8_t * start = buf;
Matthew Fredricksoncc2bc352010-03-15 12:22:37 -0500248
249 for (i = 0 ; i < len; i++) {
250 buf[i] = flip_table[(u_int8_t)buf[i]];
251 }
252
253 return start;
254}
255
creslin287cd8b86f2010-03-26 12:57:31 -0500256#define D_BCHAN_TX_GRAN 160
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100257/* write to a B channel TS */
258static int handle_tsX_write(struct bsc_fd *bfd)
259{
260 struct e1inp_line *line = bfd->data;
261 unsigned int ts_nr = bfd->priv_nr;
262 struct e1inp_ts *e1i_ts = &line->ts[ts_nr-1];
Matthew Fredricksoncc2bc352010-03-15 12:22:37 -0500263 u_int8_t tx_buf[D_BCHAN_TX_GRAN];
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100264 struct subch_mux *mx = &e1i_ts->trau.mux;
265 int ret;
266
Matthew Fredricksoncc2bc352010-03-15 12:22:37 -0500267 ret = subchan_mux_out(mx, tx_buf, D_BCHAN_TX_GRAN);
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100268
Matthew Fredricksoncc2bc352010-03-15 12:22:37 -0500269 if (ret != D_BCHAN_TX_GRAN) {
270 fprintf(stderr, "Huh, got ret of %d\n", ret);
271 if (ret < 0)
272 return ret;
273 }
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100274
275 DEBUGP(DMIB, "BCHAN TX: %s\n",
Matthew Fredricksoncc2bc352010-03-15 12:22:37 -0500276 hexdump(tx_buf, D_BCHAN_TX_GRAN));
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100277
Matthew Fredricksoncc2bc352010-03-15 12:22:37 -0500278 if (invertbits) {
279 flip_buf_bits(tx_buf, ret);
280 }
281
282 ret = write(bfd->fd, tx_buf, ret);
283 if (ret < D_BCHAN_TX_GRAN)
Harald Welte1dd68c32011-02-05 13:58:46 +0100284 fprintf(stderr, "send returns %d instead of %d\n", ret,
Matthew Fredricksoncc2bc352010-03-15 12:22:37 -0500285 D_BCHAN_TX_GRAN);
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100286
287 return ret;
288}
289
creslin287cd8b86f2010-03-26 12:57:31 -0500290#define D_TSX_ALLOC_SIZE (D_BCHAN_TX_GRAN)
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100291/* FIXME: read from a B channel TS */
292static int handle_tsX_read(struct bsc_fd *bfd)
293{
294 struct e1inp_line *line = bfd->data;
295 unsigned int ts_nr = bfd->priv_nr;
296 struct e1inp_ts *e1i_ts = &line->ts[ts_nr-1];
Matthew Fredricksoncc2bc352010-03-15 12:22:37 -0500297 struct msgb *msg = msgb_alloc(D_TSX_ALLOC_SIZE, "DAHDI TSx");
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100298 int ret;
299
300 if (!msg)
301 return -ENOMEM;
302
Matthew Fredricksoncc2bc352010-03-15 12:22:37 -0500303 ret = read(bfd->fd, msg->data, D_TSX_ALLOC_SIZE);
304 if (ret < 0 || ret != D_TSX_ALLOC_SIZE) {
305 fprintf(stderr, "read error %d %s\n", ret, strerror(errno));
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100306 return ret;
307 }
308
Matthew Fredricksoncc2bc352010-03-15 12:22:37 -0500309 if (invertbits) {
310 flip_buf_bits(msg->data, ret);
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100311 }
Matthew Fredricksoncc2bc352010-03-15 12:22:37 -0500312
313 msgb_put(msg, ret);
314
315 msg->l2h = msg->data;
316 DEBUGP(DMIB, "BCHAN RX: %s\n",
317 hexdump(msgb_l2(msg), ret));
318 ret = e1inp_rx_ts(e1i_ts, msg, 0, 0);
319 /* physical layer indicates that data has been sent,
320 * we thus can send some more data */
creslin287cd8b86f2010-03-26 12:57:31 -0500321 ret = handle_tsX_write(bfd);
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100322 msgb_free(msg);
323
324 return ret;
325}
326
327/* callback from select.c in case one of the fd's can be read/written */
328static int dahdi_fd_cb(struct bsc_fd *bfd, unsigned int what)
329{
330 struct e1inp_line *line = bfd->data;
331 unsigned int ts_nr = bfd->priv_nr;
332 unsigned int idx = ts_nr-1;
333 struct e1inp_ts *e1i_ts = &line->ts[idx];
334 int rc = 0;
335
336 switch (e1i_ts->type) {
337 case E1INP_TS_TYPE_SIGN:
Harald Welte00ee4b72011-02-13 15:41:25 +0100338 if (what & BSC_FD_EXCEPT)
339 handle_dahdi_exception(e1i_ts);
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100340 if (what & BSC_FD_READ)
341 rc = handle_ts1_read(bfd);
342 if (what & BSC_FD_WRITE)
343 rc = handle_ts1_write(bfd);
344 break;
345 case E1INP_TS_TYPE_TRAU:
Harald Welte00ee4b72011-02-13 15:41:25 +0100346 if (what & BSC_FD_EXCEPT)
347 handle_dahdi_exception(e1i_ts);
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100348 if (what & BSC_FD_READ)
349 rc = handle_tsX_read(bfd);
Matthew Fredricksoncc2bc352010-03-15 12:22:37 -0500350 if (what & BSC_FD_WRITE)
351 rc = handle_tsX_write(bfd);
Harald Welteba0db5b2011-02-04 21:33:14 +0100352 /* We never include the DAHDI B-Channel FD into the
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100353 * writeset, since it doesn't support poll() based
Harald Welte62d46032011-02-05 20:25:22 +0100354 * write flow control */
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100355 break;
356 default:
357 fprintf(stderr, "unknown E1 TS type %u\n", e1i_ts->type);
358 break;
359 }
360
361 return rc;
362}
363
Harald Welte1dd68c32011-02-05 13:58:46 +0100364static int dahdi_e1_line_update(struct e1inp_line *line);
365
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100366struct e1inp_driver dahdi_driver = {
367 .name = "DAHDI",
368 .want_write = ts_want_write,
Harald Welte1dd68c32011-02-05 13:58:46 +0100369 .line_update = &dahdi_e1_line_update,
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100370};
371
Matthew Fredricksoncc2bc352010-03-15 12:22:37 -0500372void dahdi_set_bufinfo(int fd, int as_sigchan)
373{
374 struct dahdi_bufferinfo bi;
375 int x = 0;
376
377 if (ioctl(fd, DAHDI_GET_BUFINFO, &bi)) {
378 fprintf(stderr, "Error getting bufinfo\n");
379 exit(-1);
380 }
381
382 if (as_sigchan) {
383 bi.numbufs = 4;
384 bi.bufsize = 512;
385 } else {
creslin287cd8b86f2010-03-26 12:57:31 -0500386 bi.numbufs = 8;
Matthew Fredricksoncc2bc352010-03-15 12:22:37 -0500387 bi.bufsize = D_BCHAN_TX_GRAN;
creslin287cd8b86f2010-03-26 12:57:31 -0500388 bi.txbufpolicy = DAHDI_POLICY_WHEN_FULL;
Matthew Fredricksoncc2bc352010-03-15 12:22:37 -0500389 }
390
391 if (ioctl(fd, DAHDI_SET_BUFINFO, &bi)) {
392 fprintf(stderr, "Error setting bufinfo\n");
393 exit(-1);
394 }
395
396 if (!as_sigchan) {
397 if (ioctl(fd, DAHDI_AUDIOMODE, &x)) {
398 fprintf(stderr, "Error setting bufinfo\n");
399 exit(-1);
400 }
401 }
402
403}
404
Harald Welted38f1052011-02-05 19:13:00 +0100405static int dahdi_e1_setup(struct e1inp_line *line)
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100406{
407 int ts, ret;
408
409 /* TS0 is CRC4, don't need any fd for it */
410 for (ts = 1; ts < NUM_E1_TS; ts++) {
411 unsigned int idx = ts-1;
412 char openstr[128];
413 struct e1inp_ts *e1i_ts = &line->ts[idx];
Harald Welted38f1052011-02-05 19:13:00 +0100414 struct bsc_fd *bfd = &e1i_ts->driver.dahdi.fd;
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100415
416 bfd->data = line;
417 bfd->priv_nr = ts;
418 bfd->cb = dahdi_fd_cb;
419 snprintf(openstr, sizeof(openstr), "/dev/dahdi/%d", ts);
420
421 switch (e1i_ts->type) {
422 case E1INP_TS_TYPE_NONE:
423 continue;
424 break;
425 case E1INP_TS_TYPE_SIGN:
Matthew Fredricksoncc2bc352010-03-15 12:22:37 -0500426 bfd->fd = open(openstr, O_RDWR | O_NONBLOCK);
427 if (bfd->fd == -1) {
428 fprintf(stderr, "%s could not open %s %s\n",
429 __func__, openstr, strerror(errno));
430 exit(-1);
431 }
Harald Welte00ee4b72011-02-13 15:41:25 +0100432 bfd->when = BSC_FD_READ | BSC_FD_EXCEPT;
Matthew Fredricksoncc2bc352010-03-15 12:22:37 -0500433 dahdi_set_bufinfo(bfd->fd, 1);
Harald Welte1a00d822011-02-11 18:34:51 +0100434 e1i_ts->driver.dahdi.lapd = lapd_instance_alloc(1, dahdi_write_msg, bfd);
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100435 break;
436 case E1INP_TS_TYPE_TRAU:
Matthew Fredricksoncc2bc352010-03-15 12:22:37 -0500437 bfd->fd = open(openstr, O_RDWR | O_NONBLOCK);
438 if (bfd->fd == -1) {
439 fprintf(stderr, "%s could not open %s %s\n",
440 __func__, openstr, strerror(errno));
441 exit(-1);
442 }
443 dahdi_set_bufinfo(bfd->fd, 0);
Harald Welteba0db5b2011-02-04 21:33:14 +0100444 /* We never include the DAHDI B-Channel FD into the
Harald Welte62d46032011-02-05 20:25:22 +0100445 * writeset, since it doesn't support poll() based
446 * write flow control */
Harald Welte00ee4b72011-02-13 15:41:25 +0100447 bfd->when = BSC_FD_READ | BSC_FD_EXCEPT;// | BSC_FD_WRITE;
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100448 break;
449 }
450
451 if (bfd->fd < 0) {
452 fprintf(stderr, "%s could not open %s %s\n",
453 __func__, openstr, strerror(errno));
454 return bfd->fd;
455 }
456
457 ret = bsc_register_fd(bfd);
458 if (ret < 0) {
459 fprintf(stderr, "could not register FD: %s\n",
460 strerror(ret));
461 return ret;
462 }
463 }
464
465 return 0;
466}
467
Harald Welte1dd68c32011-02-05 13:58:46 +0100468static int dahdi_e1_line_update(struct e1inp_line *line)
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100469{
Matthew Fredricksonbc6649e2010-02-16 22:01:36 +0100470 if (line->driver != &dahdi_driver)
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100471 return -EINVAL;
472
Harald Welted38f1052011-02-05 19:13:00 +0100473 return dahdi_e1_setup(line);
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100474}
475
Harald Welte1dd68c32011-02-05 13:58:46 +0100476int e1inp_dahdi_init(void)
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100477{
Harald Welted38f1052011-02-05 19:13:00 +0100478 init_flip_bits();
479
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100480 /* register the driver with the core */
Harald Welte50d369e2011-02-05 15:30:48 +0100481 return e1inp_driver_register(&dahdi_driver);
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100482}
Harald Welteca17ef82011-02-05 15:13:27 +0100483
484#endif /* HAVE_DAHDI_USER_H */