blob: 6f8983763cdb50fc69266bcde5f18176c89445bc [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 Weltec08e8be2011-03-04 13:53:51 +010025#include "../../../bscconfig.h"
Harald Welteca17ef82011-02-05 15:13:27 +010026
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>
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +010036#include <sys/socket.h>
37#include <sys/ioctl.h>
38#include <arpa/inet.h>
Matthew Fredricksoncc2bc352010-03-15 12:22:37 -050039#include <dahdi/user.h>
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +010040
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010041#include <osmocom/core/select.h>
42#include <osmocom/core/msgb.h>
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +010043#include <openbsc/debug.h>
44#include <openbsc/gsm_data.h>
45#include <openbsc/abis_nm.h>
46#include <openbsc/abis_rsl.h>
47#include <openbsc/subchan_demux.h>
48#include <openbsc/e1_input.h>
Harald Weltef338a032011-01-14 15:55:42 +010049#include <openbsc/signal.h>
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010050#include <osmocom/core/talloc.h>
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +010051
Matthew Fredricksonb1cb8eb2010-02-17 19:25:39 +010052#include "lapd.h"
53
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +010054#define TS1_ALLOC_SIZE 300
55
Harald Welte44f04da2011-02-13 14:19:26 +010056/* Corresponds to dahdi/user.h, only PRI related events */
57static const struct value_string dahdi_evt_names[] = {
58 { DAHDI_EVENT_NONE, "NONE" },
59 { DAHDI_EVENT_ALARM, "ALARM" },
60 { DAHDI_EVENT_NOALARM, "NOALARM" },
61 { DAHDI_EVENT_ABORT, "HDLC ABORT" },
62 { DAHDI_EVENT_OVERRUN, "HDLC OVERRUN" },
63 { DAHDI_EVENT_BADFCS, "HDLC BAD FCS" },
64 { DAHDI_EVENT_REMOVED, "REMOVED" },
65 { 0, NULL }
66};
67
68static void handle_dahdi_exception(struct e1inp_ts *ts)
69{
70 int rc, evt;
Harald Welte174a51a2011-02-13 14:26:54 +010071 struct input_signal_data isd;
Harald Welte44f04da2011-02-13 14:19:26 +010072
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
Harald Welte174a51a2011-02-13 14:26:54 +010081 isd.line = ts->line;
82
Harald Welte44f04da2011-02-13 14:19:26 +010083 switch (evt) {
84 case DAHDI_EVENT_ALARM:
Harald Welte174a51a2011-02-13 14:26:54 +010085 /* we should notify the code that the line is gone */
Pablo Neira Ayusobbc5b992011-05-06 12:12:31 +020086 osmo_signal_dispatch(SS_INPUT, S_INP_LINE_ALARM, &isd);
Harald Welte44f04da2011-02-13 14:19:26 +010087 break;
88 case DAHDI_EVENT_NOALARM:
Harald Welte174a51a2011-02-13 14:26:54 +010089 /* alarm has gone, we should re-start the SABM requests */
Pablo Neira Ayusobbc5b992011-05-06 12:12:31 +020090 osmo_signal_dispatch(SS_INPUT, S_INP_LINE_NOALARM, &isd);
Harald Welte44f04da2011-02-13 14:19:26 +010091 break;
92 }
93}
94
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +020095static int handle_ts1_read(struct osmo_fd *bfd)
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +010096{
97 struct e1inp_line *line = bfd->data;
98 unsigned int ts_nr = bfd->priv_nr;
99 struct e1inp_ts *e1i_ts = &line->ts[ts_nr-1];
Matthew Fredricksonbc6649e2010-02-16 22:01:36 +0100100 struct msgb *msg = msgb_alloc(TS1_ALLOC_SIZE, "DAHDI TS1");
Harald Welteba0db5b2011-02-04 21:33:14 +0100101 lapd_mph_type prim;
102 unsigned int sapi, tei;
103 int ilen, ret;
Harald Welted38f1052011-02-05 19:13:00 +0100104 uint8_t *idata;
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100105
106 if (!msg)
107 return -ENOMEM;
108
Matthew Fredricksoncc2bc352010-03-15 12:22:37 -0500109 ret = read(bfd->fd, msg->data, TS1_ALLOC_SIZE - 16);
Harald Welte44f04da2011-02-13 14:19:26 +0100110 if (ret == -1)
111 handle_dahdi_exception(e1i_ts);
112 else if (ret < 0) {
Matthew Fredricksonb1cb8eb2010-02-17 19:25:39 +0100113 perror("read ");
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100114 }
Matthew Fredricksoncc2bc352010-03-15 12:22:37 -0500115 msgb_put(msg, ret - 2);
Matthew Fredricksonb1cb8eb2010-02-17 19:25:39 +0100116 if (ret <= 3) {
117 perror("read ");
118 }
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100119
Harald Welteba0db5b2011-02-04 21:33:14 +0100120 sapi = msg->data[0] >> 2;
121 tei = msg->data[1] >> 1;
Matthew Fredricksoncc2bc352010-03-15 12:22:37 -0500122
Harald Welteba0db5b2011-02-04 21:33:14 +0100123 DEBUGP(DMI, "<= len = %d, sapi(%d) tei(%d)", ret, sapi, tei);
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100124
Harald Welted38f1052011-02-05 19:13:00 +0100125 idata = lapd_receive(e1i_ts->driver.dahdi.lapd, msg->data, msg->len, &ilen, &prim);
Harald Welte1458ec62011-02-05 19:50:44 +0100126 if (!idata && prim == 0)
Harald Welted38f1052011-02-05 19:13:00 +0100127 return -EIO;
Matthew Fredricksonb1cb8eb2010-02-17 19:25:39 +0100128
Matthew Fredricksonb1cb8eb2010-02-17 19:25:39 +0100129 msgb_pull(msg, 2);
130
Harald Welteba0db5b2011-02-04 21:33:14 +0100131 DEBUGP(DMI, "prim %08x\n", prim);
Matthew Fredricksonb1cb8eb2010-02-17 19:25:39 +0100132
Harald Welteba0db5b2011-02-04 21:33:14 +0100133 switch (prim) {
134 case 0:
Matthew Fredricksonb1cb8eb2010-02-17 19:25:39 +0100135 break;
Harald Welteba0db5b2011-02-04 21:33:14 +0100136 case LAPD_MPH_ACTIVATE_IND:
137 DEBUGP(DMI, "MPH_ACTIVATE_IND: sapi(%d) tei(%d)\n", sapi, tei);
Harald Weltef338a032011-01-14 15:55:42 +0100138 ret = e1inp_event(e1i_ts, S_INP_TEI_UP, tei, sapi);
Matthew Fredricksonb1cb8eb2010-02-17 19:25:39 +0100139 break;
Harald Welteba0db5b2011-02-04 21:33:14 +0100140 case LAPD_MPH_DEACTIVATE_IND:
141 DEBUGP(DMI, "MPH_DEACTIVATE_IND: sapi(%d) tei(%d)\n", sapi, tei);
Harald Weltef338a032011-01-14 15:55:42 +0100142 ret = e1inp_event(e1i_ts, S_INP_TEI_DN, tei, sapi);
Matthew Fredricksonb1cb8eb2010-02-17 19:25:39 +0100143 break;
Harald Welteba0db5b2011-02-04 21:33:14 +0100144 case LAPD_DL_DATA_IND:
145 case LAPD_DL_UNITDATA_IND:
Harald Welte1dd68c32011-02-05 13:58:46 +0100146 if (prim == LAPD_DL_DATA_IND)
Matthew Fredricksoncc2bc352010-03-15 12:22:37 -0500147 msg->l2h = msg->data + 2;
148 else
149 msg->l2h = msg->data + 1;
Pablo Neira Ayusoc0d17f22011-05-07 12:12:48 +0200150 DEBUGP(DMI, "RX: %s\n", osmo_hexdump(msgb_l2(msg), ret));
Harald Welteba0db5b2011-02-04 21:33:14 +0100151 ret = e1inp_rx_ts(e1i_ts, msg, tei, sapi);
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100152 break;
153 default:
Harald Welteba0db5b2011-02-04 21:33:14 +0100154 printf("ERROR: unknown prim\n");
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100155 break;
156 }
Harald Welteba0db5b2011-02-04 21:33:14 +0100157
Matthew Fredricksoncc2bc352010-03-15 12:22:37 -0500158 DEBUGP(DMI, "Returned ok\n");
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100159 return ret;
160}
161
162static int ts_want_write(struct e1inp_ts *e1i_ts)
163{
Harald Welteba0db5b2011-02-04 21:33:14 +0100164 /* We never include the DAHDI B-Channel FD into the
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100165 * writeset, since it doesn't support poll() based
Harald Welte62d46032011-02-05 20:25:22 +0100166 * write flow control */
Matthew Fredricksoncc2bc352010-03-15 12:22:37 -0500167 if (e1i_ts->type == E1INP_TS_TYPE_TRAU) {
168 fprintf(stderr, "Trying to write TRAU ts\n");
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100169 return 0;
Matthew Fredricksoncc2bc352010-03-15 12:22:37 -0500170 }
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100171
Harald Welted38f1052011-02-05 19:13:00 +0100172 e1i_ts->driver.dahdi.fd.when |= BSC_FD_WRITE;
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100173
174 return 0;
175}
176
177static void timeout_ts1_write(void *data)
178{
179 struct e1inp_ts *e1i_ts = (struct e1inp_ts *)data;
180
181 /* trigger write of ts1, due to tx delay timer */
182 ts_want_write(e1i_ts);
183}
184
Matthew Fredricksoncc2bc352010-03-15 12:22:37 -0500185static void dahdi_write_msg(uint8_t *data, int len, void *cbdata)
186{
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200187 struct osmo_fd *bfd = cbdata;
Harald Welte44f04da2011-02-13 14:19:26 +0100188 struct e1inp_line *line = bfd->data;
189 unsigned int ts_nr = bfd->priv_nr;
190 struct e1inp_ts *e1i_ts = &line->ts[ts_nr-1];
Matthew Fredricksoncc2bc352010-03-15 12:22:37 -0500191 int ret;
192
193 ret = write(bfd->fd, data, len + 2);
Harald Welte44f04da2011-02-13 14:19:26 +0100194 if (ret == -1)
195 handle_dahdi_exception(e1i_ts);
196 else if (ret < 0)
197 LOGP(DMI, LOGL_NOTICE, "%s write failed %d\n", __func__, ret);
Matthew Fredricksoncc2bc352010-03-15 12:22:37 -0500198}
199
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200200static int handle_ts1_write(struct osmo_fd *bfd)
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100201{
202 struct e1inp_line *line = bfd->data;
203 unsigned int ts_nr = bfd->priv_nr;
204 struct e1inp_ts *e1i_ts = &line->ts[ts_nr-1];
205 struct e1inp_sign_link *sign_link;
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100206 struct msgb *msg;
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100207
208 bfd->when &= ~BSC_FD_WRITE;
209
210 /* get the next msg for this timeslot */
211 msg = e1inp_tx_ts(e1i_ts, &sign_link);
212 if (!msg) {
213 /* no message after tx delay timer */
214 return 0;
215 }
216
Pablo Neira Ayusoc0d17f22011-05-07 12:12:48 +0200217 DEBUGP(DMI, "TX: %s\n", osmo_hexdump(msg->data, msg->len));
Harald Welte4ee2eaf2011-02-05 20:20:50 +0100218 lapd_transmit(e1i_ts->driver.dahdi.lapd, sign_link->tei,
219 sign_link->sapi, msg->data, msg->len);
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100220 msgb_free(msg);
221
222 /* set tx delay timer for next event */
223 e1i_ts->sign.tx_timer.cb = timeout_ts1_write;
224 e1i_ts->sign.tx_timer.data = e1i_ts;
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +0200225 osmo_timer_schedule(&e1i_ts->sign.tx_timer, 0, 50000);
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100226
Matthew Fredricksoncc2bc352010-03-15 12:22:37 -0500227 return 0;
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100228}
229
Matthew Fredricksoncc2bc352010-03-15 12:22:37 -0500230
231static int invertbits = 1;
232
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200233static uint8_t flip_table[256];
Matthew Fredricksoncc2bc352010-03-15 12:22:37 -0500234
235static void init_flip_bits(void)
236{
237 int i,k;
238
239 for (i = 0 ; i < 256 ; i++) {
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200240 uint8_t sample = 0 ;
Matthew Fredricksoncc2bc352010-03-15 12:22:37 -0500241 for (k = 0; k<8; k++) {
242 if ( i & 1 << k ) sample |= 0x80 >> k;
243 }
244 flip_table[i] = sample;
245 }
246}
247
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200248static uint8_t * flip_buf_bits ( uint8_t * buf , int len)
Matthew Fredricksoncc2bc352010-03-15 12:22:37 -0500249{
250 int i;
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200251 uint8_t * start = buf;
Matthew Fredricksoncc2bc352010-03-15 12:22:37 -0500252
253 for (i = 0 ; i < len; i++) {
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200254 buf[i] = flip_table[(uint8_t)buf[i]];
Matthew Fredricksoncc2bc352010-03-15 12:22:37 -0500255 }
256
257 return start;
258}
259
creslin287cd8b86f2010-03-26 12:57:31 -0500260#define D_BCHAN_TX_GRAN 160
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100261/* write to a B channel TS */
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200262static int handle_tsX_write(struct osmo_fd *bfd)
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100263{
264 struct e1inp_line *line = bfd->data;
265 unsigned int ts_nr = bfd->priv_nr;
266 struct e1inp_ts *e1i_ts = &line->ts[ts_nr-1];
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200267 uint8_t tx_buf[D_BCHAN_TX_GRAN];
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100268 struct subch_mux *mx = &e1i_ts->trau.mux;
269 int ret;
270
Matthew Fredricksoncc2bc352010-03-15 12:22:37 -0500271 ret = subchan_mux_out(mx, tx_buf, D_BCHAN_TX_GRAN);
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100272
Matthew Fredricksoncc2bc352010-03-15 12:22:37 -0500273 if (ret != D_BCHAN_TX_GRAN) {
274 fprintf(stderr, "Huh, got ret of %d\n", ret);
275 if (ret < 0)
276 return ret;
277 }
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100278
279 DEBUGP(DMIB, "BCHAN TX: %s\n",
Pablo Neira Ayusoc0d17f22011-05-07 12:12:48 +0200280 osmo_hexdump(tx_buf, D_BCHAN_TX_GRAN));
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100281
Matthew Fredricksoncc2bc352010-03-15 12:22:37 -0500282 if (invertbits) {
283 flip_buf_bits(tx_buf, ret);
284 }
285
286 ret = write(bfd->fd, tx_buf, ret);
287 if (ret < D_BCHAN_TX_GRAN)
Harald Welte1dd68c32011-02-05 13:58:46 +0100288 fprintf(stderr, "send returns %d instead of %d\n", ret,
Matthew Fredricksoncc2bc352010-03-15 12:22:37 -0500289 D_BCHAN_TX_GRAN);
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100290
291 return ret;
292}
293
creslin287cd8b86f2010-03-26 12:57:31 -0500294#define D_TSX_ALLOC_SIZE (D_BCHAN_TX_GRAN)
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100295/* FIXME: read from a B channel TS */
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200296static int handle_tsX_read(struct osmo_fd *bfd)
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100297{
298 struct e1inp_line *line = bfd->data;
299 unsigned int ts_nr = bfd->priv_nr;
300 struct e1inp_ts *e1i_ts = &line->ts[ts_nr-1];
Matthew Fredricksoncc2bc352010-03-15 12:22:37 -0500301 struct msgb *msg = msgb_alloc(D_TSX_ALLOC_SIZE, "DAHDI TSx");
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100302 int ret;
303
304 if (!msg)
305 return -ENOMEM;
306
Matthew Fredricksoncc2bc352010-03-15 12:22:37 -0500307 ret = read(bfd->fd, msg->data, D_TSX_ALLOC_SIZE);
308 if (ret < 0 || ret != D_TSX_ALLOC_SIZE) {
309 fprintf(stderr, "read error %d %s\n", ret, strerror(errno));
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100310 return ret;
311 }
312
Matthew Fredricksoncc2bc352010-03-15 12:22:37 -0500313 if (invertbits) {
314 flip_buf_bits(msg->data, ret);
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100315 }
Matthew Fredricksoncc2bc352010-03-15 12:22:37 -0500316
317 msgb_put(msg, ret);
318
319 msg->l2h = msg->data;
320 DEBUGP(DMIB, "BCHAN RX: %s\n",
Pablo Neira Ayusoc0d17f22011-05-07 12:12:48 +0200321 osmo_hexdump(msgb_l2(msg), ret));
Matthew Fredricksoncc2bc352010-03-15 12:22:37 -0500322 ret = e1inp_rx_ts(e1i_ts, msg, 0, 0);
323 /* physical layer indicates that data has been sent,
324 * we thus can send some more data */
creslin287cd8b86f2010-03-26 12:57:31 -0500325 ret = handle_tsX_write(bfd);
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100326 msgb_free(msg);
327
328 return ret;
329}
330
331/* callback from select.c in case one of the fd's can be read/written */
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200332static int dahdi_fd_cb(struct osmo_fd *bfd, unsigned int what)
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100333{
334 struct e1inp_line *line = bfd->data;
335 unsigned int ts_nr = bfd->priv_nr;
336 unsigned int idx = ts_nr-1;
337 struct e1inp_ts *e1i_ts = &line->ts[idx];
338 int rc = 0;
339
340 switch (e1i_ts->type) {
341 case E1INP_TS_TYPE_SIGN:
Harald Welte00ee4b72011-02-13 15:41:25 +0100342 if (what & BSC_FD_EXCEPT)
343 handle_dahdi_exception(e1i_ts);
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100344 if (what & BSC_FD_READ)
345 rc = handle_ts1_read(bfd);
346 if (what & BSC_FD_WRITE)
347 rc = handle_ts1_write(bfd);
348 break;
349 case E1INP_TS_TYPE_TRAU:
Harald Welte00ee4b72011-02-13 15:41:25 +0100350 if (what & BSC_FD_EXCEPT)
351 handle_dahdi_exception(e1i_ts);
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100352 if (what & BSC_FD_READ)
353 rc = handle_tsX_read(bfd);
Matthew Fredricksoncc2bc352010-03-15 12:22:37 -0500354 if (what & BSC_FD_WRITE)
355 rc = handle_tsX_write(bfd);
Harald Welteba0db5b2011-02-04 21:33:14 +0100356 /* We never include the DAHDI B-Channel FD into the
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100357 * writeset, since it doesn't support poll() based
Harald Welte62d46032011-02-05 20:25:22 +0100358 * write flow control */
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100359 break;
360 default:
361 fprintf(stderr, "unknown E1 TS type %u\n", e1i_ts->type);
362 break;
363 }
364
365 return rc;
366}
367
Harald Welte1dd68c32011-02-05 13:58:46 +0100368static int dahdi_e1_line_update(struct e1inp_line *line);
369
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100370struct e1inp_driver dahdi_driver = {
Harald Welteebec58e2011-02-14 16:31:53 +0100371 .name = "dahdi",
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100372 .want_write = ts_want_write,
Harald Welte1dd68c32011-02-05 13:58:46 +0100373 .line_update = &dahdi_e1_line_update,
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100374};
375
Matthew Fredricksoncc2bc352010-03-15 12:22:37 -0500376void dahdi_set_bufinfo(int fd, int as_sigchan)
377{
378 struct dahdi_bufferinfo bi;
379 int x = 0;
380
381 if (ioctl(fd, DAHDI_GET_BUFINFO, &bi)) {
382 fprintf(stderr, "Error getting bufinfo\n");
383 exit(-1);
384 }
385
386 if (as_sigchan) {
387 bi.numbufs = 4;
388 bi.bufsize = 512;
389 } else {
creslin287cd8b86f2010-03-26 12:57:31 -0500390 bi.numbufs = 8;
Matthew Fredricksoncc2bc352010-03-15 12:22:37 -0500391 bi.bufsize = D_BCHAN_TX_GRAN;
creslin287cd8b86f2010-03-26 12:57:31 -0500392 bi.txbufpolicy = DAHDI_POLICY_WHEN_FULL;
Matthew Fredricksoncc2bc352010-03-15 12:22:37 -0500393 }
394
395 if (ioctl(fd, DAHDI_SET_BUFINFO, &bi)) {
396 fprintf(stderr, "Error setting bufinfo\n");
397 exit(-1);
398 }
399
400 if (!as_sigchan) {
401 if (ioctl(fd, DAHDI_AUDIOMODE, &x)) {
402 fprintf(stderr, "Error setting bufinfo\n");
403 exit(-1);
404 }
Harald Weltee9252052011-02-14 16:43:35 +0100405 } else {
406 int one = 1;
407 ioctl(fd, DAHDI_HDLCFCSMODE, &one);
408 /* we cannot reliably check for the ioctl return value here
409 * as this command will fail if the slot _already_ was a
410 * signalling slot before :( */
Matthew Fredricksoncc2bc352010-03-15 12:22:37 -0500411 }
Matthew Fredricksoncc2bc352010-03-15 12:22:37 -0500412}
413
Harald Welted38f1052011-02-05 19:13:00 +0100414static int dahdi_e1_setup(struct e1inp_line *line)
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100415{
416 int ts, ret;
417
418 /* TS0 is CRC4, don't need any fd for it */
419 for (ts = 1; ts < NUM_E1_TS; ts++) {
420 unsigned int idx = ts-1;
421 char openstr[128];
422 struct e1inp_ts *e1i_ts = &line->ts[idx];
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200423 struct osmo_fd *bfd = &e1i_ts->driver.dahdi.fd;
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100424
425 bfd->data = line;
426 bfd->priv_nr = ts;
427 bfd->cb = dahdi_fd_cb;
428 snprintf(openstr, sizeof(openstr), "/dev/dahdi/%d", ts);
429
430 switch (e1i_ts->type) {
431 case E1INP_TS_TYPE_NONE:
432 continue;
433 break;
434 case E1INP_TS_TYPE_SIGN:
Matthew Fredricksoncc2bc352010-03-15 12:22:37 -0500435 bfd->fd = open(openstr, O_RDWR | O_NONBLOCK);
436 if (bfd->fd == -1) {
437 fprintf(stderr, "%s could not open %s %s\n",
438 __func__, openstr, strerror(errno));
439 exit(-1);
440 }
Harald Welte00ee4b72011-02-13 15:41:25 +0100441 bfd->when = BSC_FD_READ | BSC_FD_EXCEPT;
Matthew Fredricksoncc2bc352010-03-15 12:22:37 -0500442 dahdi_set_bufinfo(bfd->fd, 1);
Harald Welte1a00d822011-02-11 18:34:51 +0100443 e1i_ts->driver.dahdi.lapd = lapd_instance_alloc(1, dahdi_write_msg, bfd);
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100444 break;
445 case E1INP_TS_TYPE_TRAU:
Matthew Fredricksoncc2bc352010-03-15 12:22:37 -0500446 bfd->fd = open(openstr, O_RDWR | O_NONBLOCK);
447 if (bfd->fd == -1) {
448 fprintf(stderr, "%s could not open %s %s\n",
449 __func__, openstr, strerror(errno));
450 exit(-1);
451 }
452 dahdi_set_bufinfo(bfd->fd, 0);
Harald Welteba0db5b2011-02-04 21:33:14 +0100453 /* We never include the DAHDI B-Channel FD into the
Harald Welte62d46032011-02-05 20:25:22 +0100454 * writeset, since it doesn't support poll() based
455 * write flow control */
Harald Welte00ee4b72011-02-13 15:41:25 +0100456 bfd->when = BSC_FD_READ | BSC_FD_EXCEPT;// | BSC_FD_WRITE;
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100457 break;
458 }
459
460 if (bfd->fd < 0) {
461 fprintf(stderr, "%s could not open %s %s\n",
462 __func__, openstr, strerror(errno));
463 return bfd->fd;
464 }
465
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200466 ret = osmo_fd_register(bfd);
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100467 if (ret < 0) {
468 fprintf(stderr, "could not register FD: %s\n",
469 strerror(ret));
470 return ret;
471 }
472 }
473
474 return 0;
475}
476
Harald Welte1dd68c32011-02-05 13:58:46 +0100477static int dahdi_e1_line_update(struct e1inp_line *line)
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100478{
Matthew Fredricksonbc6649e2010-02-16 22:01:36 +0100479 if (line->driver != &dahdi_driver)
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100480 return -EINVAL;
481
Harald Welted38f1052011-02-05 19:13:00 +0100482 return dahdi_e1_setup(line);
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100483}
484
Harald Welte1dd68c32011-02-05 13:58:46 +0100485int e1inp_dahdi_init(void)
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100486{
Harald Welted38f1052011-02-05 19:13:00 +0100487 init_flip_bits();
488
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100489 /* register the driver with the core */
Harald Welte50d369e2011-02-05 15:30:48 +0100490 return e1inp_driver_register(&dahdi_driver);
Matthew Fredricksonb5ddc182010-02-16 21:55:50 +0100491}
Harald Welteca17ef82011-02-05 15:13:27 +0100492
493#endif /* HAVE_DAHDI_USER_H */