Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound-2.6
[pandora-kernel.git] / drivers / isdn / gigaset / i4l.c
1 /*
2  * Stuff used by all variants of the driver
3  *
4  * Copyright (c) 2001 by Stefan Eilers,
5  *                       Hansjoerg Lipp <hjlipp@web.de>,
6  *                       Tilman Schmidt <tilman@imap.cc>.
7  *
8  * =====================================================================
9  *      This program is free software; you can redistribute it and/or
10  *      modify it under the terms of the GNU General Public License as
11  *      published by the Free Software Foundation; either version 2 of
12  *      the License, or (at your option) any later version.
13  * =====================================================================
14  */
15
16 #include "gigaset.h"
17 #include <linux/isdnif.h>
18
19 #define HW_HDR_LEN      2       /* Header size used to store ack info */
20
21 /* == Handling of I4L IO =====================================================*/
22
23 /* writebuf_from_LL
24  * called by LL to transmit data on an open channel
25  * inserts the buffer data into the send queue and starts the transmission
26  * Note that this operation must not sleep!
27  * When the buffer is processed completely, gigaset_skb_sent() should be called.
28  * parameters:
29  *      driverID        driver ID as assigned by LL
30  *      channel         channel number
31  *      ack             if != 0 LL wants to be notified on completion via
32  *                      statcallb(ISDN_STAT_BSENT)
33  *      skb             skb containing data to send
34  * return value:
35  *      number of accepted bytes
36  *      0 if temporarily unable to accept data (out of buffer space)
37  *      <0 on error (eg. -EINVAL)
38  */
39 static int writebuf_from_LL(int driverID, int channel, int ack,
40                             struct sk_buff *skb)
41 {
42         struct cardstate *cs = gigaset_get_cs_by_id(driverID);
43         struct bc_state *bcs;
44         unsigned char *ack_header;
45         unsigned len;
46
47         if (!cs) {
48                 pr_err("%s: invalid driver ID (%d)\n", __func__, driverID);
49                 return -ENODEV;
50         }
51         if (channel < 0 || channel >= cs->channels) {
52                 dev_err(cs->dev, "%s: invalid channel ID (%d)\n",
53                         __func__, channel);
54                 return -ENODEV;
55         }
56         bcs = &cs->bcs[channel];
57
58         /* can only handle linear sk_buffs */
59         if (skb_linearize(skb) < 0) {
60                 dev_err(cs->dev, "%s: skb_linearize failed\n", __func__);
61                 return -ENOMEM;
62         }
63         len = skb->len;
64
65         gig_dbg(DEBUG_LLDATA,
66                 "Receiving data from LL (id: %d, ch: %d, ack: %d, sz: %d)",
67                 driverID, channel, ack, len);
68
69         if (!len) {
70                 if (ack)
71                         dev_notice(cs->dev, "%s: not ACKing empty packet\n",
72                                    __func__);
73                 return 0;
74         }
75         if (len > MAX_BUF_SIZE) {
76                 dev_err(cs->dev, "%s: packet too large (%d bytes)\n",
77                         __func__, len);
78                 return -EINVAL;
79         }
80
81         /* set up acknowledgement header */
82         if (skb_headroom(skb) < HW_HDR_LEN) {
83                 /* should never happen */
84                 dev_err(cs->dev, "%s: insufficient skb headroom\n", __func__);
85                 return -ENOMEM;
86         }
87         skb_set_mac_header(skb, -HW_HDR_LEN);
88         skb->mac_len = HW_HDR_LEN;
89         ack_header = skb_mac_header(skb);
90         if (ack) {
91                 ack_header[0] = len & 0xff;
92                 ack_header[1] = len >> 8;
93         } else {
94                 ack_header[0] = ack_header[1] = 0;
95         }
96         gig_dbg(DEBUG_MCMD, "skb: len=%u, ack=%d: %02x %02x",
97                 len, ack, ack_header[0], ack_header[1]);
98
99         /* pass to device-specific module */
100         return cs->ops->send_skb(bcs, skb);
101 }
102
103 /**
104  * gigaset_skb_sent() - acknowledge sending an skb
105  * @bcs:        B channel descriptor structure.
106  * @skb:        sent data.
107  *
108  * Called by hardware module {bas,ser,usb}_gigaset when the data in a
109  * skb has been successfully sent, for signalling completion to the LL.
110  */
111 void gigaset_skb_sent(struct bc_state *bcs, struct sk_buff *skb)
112 {
113         isdn_if *iif = bcs->cs->iif;
114         unsigned char *ack_header = skb_mac_header(skb);
115         unsigned len;
116         isdn_ctrl response;
117
118         ++bcs->trans_up;
119
120         if (skb->len)
121                 dev_warn(bcs->cs->dev, "%s: skb->len==%d\n",
122                          __func__, skb->len);
123
124         len = ack_header[0] + ((unsigned) ack_header[1] << 8);
125         if (len) {
126                 gig_dbg(DEBUG_MCMD, "ACKing to LL (id: %d, ch: %d, sz: %u)",
127                         bcs->cs->myid, bcs->channel, len);
128
129                 response.driver = bcs->cs->myid;
130                 response.command = ISDN_STAT_BSENT;
131                 response.arg = bcs->channel;
132                 response.parm.length = len;
133                 iif->statcallb(&response);
134         }
135 }
136 EXPORT_SYMBOL_GPL(gigaset_skb_sent);
137
138 /**
139  * gigaset_skb_rcvd() - pass received skb to LL
140  * @bcs:        B channel descriptor structure.
141  * @skb:        received data.
142  *
143  * Called by hardware module {bas,ser,usb}_gigaset when user data has
144  * been successfully received, for passing to the LL.
145  * Warning: skb must not be accessed anymore!
146  */
147 void gigaset_skb_rcvd(struct bc_state *bcs, struct sk_buff *skb)
148 {
149         isdn_if *iif = bcs->cs->iif;
150
151         iif->rcvcallb_skb(bcs->cs->myid, bcs->channel, skb);
152         bcs->trans_down++;
153 }
154 EXPORT_SYMBOL_GPL(gigaset_skb_rcvd);
155
156 /**
157  * gigaset_isdn_rcv_err() - signal receive error
158  * @bcs:        B channel descriptor structure.
159  *
160  * Called by hardware module {bas,ser,usb}_gigaset when a receive error
161  * has occurred, for signalling to the LL.
162  */
163 void gigaset_isdn_rcv_err(struct bc_state *bcs)
164 {
165         isdn_if *iif = bcs->cs->iif;
166         isdn_ctrl response;
167
168         /* if currently ignoring packets, just count down */
169         if (bcs->ignore) {
170                 bcs->ignore--;
171                 return;
172         }
173
174         /* update statistics */
175         bcs->corrupted++;
176
177         /* error -> LL */
178         gig_dbg(DEBUG_CMD, "sending L1ERR");
179         response.driver = bcs->cs->myid;
180         response.command = ISDN_STAT_L1ERR;
181         response.arg = bcs->channel;
182         response.parm.errcode = ISDN_STAT_L1ERR_RECV;
183         iif->statcallb(&response);
184 }
185 EXPORT_SYMBOL_GPL(gigaset_isdn_rcv_err);
186
187 /* This function will be called by LL to send commands
188  * NOTE: LL ignores the returned value, for commands other than ISDN_CMD_IOCTL,
189  * so don't put too much effort into it.
190  */
191 static int command_from_LL(isdn_ctrl *cntrl)
192 {
193         struct cardstate *cs;
194         struct bc_state *bcs;
195         int retval = 0;
196         char **commands;
197         int ch;
198         int i;
199         size_t l;
200
201         gigaset_debugdrivers();
202
203         gig_dbg(DEBUG_CMD, "driver: %d, command: %d, arg: 0x%lx",
204                 cntrl->driver, cntrl->command, cntrl->arg);
205
206         cs = gigaset_get_cs_by_id(cntrl->driver);
207         if (cs == NULL) {
208                 pr_err("%s: invalid driver ID (%d)\n", __func__, cntrl->driver);
209                 return -ENODEV;
210         }
211         ch = cntrl->arg & 0xff;
212
213         switch (cntrl->command) {
214         case ISDN_CMD_IOCTL:
215                 dev_warn(cs->dev, "ISDN_CMD_IOCTL not supported\n");
216                 return -EINVAL;
217
218         case ISDN_CMD_DIAL:
219                 gig_dbg(DEBUG_CMD,
220                         "ISDN_CMD_DIAL (phone: %s, msn: %s, si1: %d, si2: %d)",
221                         cntrl->parm.setup.phone, cntrl->parm.setup.eazmsn,
222                         cntrl->parm.setup.si1, cntrl->parm.setup.si2);
223
224                 if (ch >= cs->channels) {
225                         dev_err(cs->dev,
226                                 "ISDN_CMD_DIAL: invalid channel (%d)\n", ch);
227                         return -EINVAL;
228                 }
229                 bcs = cs->bcs + ch;
230                 if (!gigaset_get_channel(bcs)) {
231                         dev_err(cs->dev, "ISDN_CMD_DIAL: channel not free\n");
232                         return -EBUSY;
233                 }
234
235                 commands = kzalloc(AT_NUM*(sizeof *commands), GFP_ATOMIC);
236                 if (!commands) {
237                         gigaset_free_channel(bcs);
238                         dev_err(cs->dev, "ISDN_CMD_DIAL: out of memory\n");
239                         return -ENOMEM;
240                 }
241
242                 l = 3 + strlen(cntrl->parm.setup.phone);
243                 commands[AT_DIAL] = kmalloc(l, GFP_ATOMIC);
244                 if (!commands[AT_DIAL])
245                         goto oom;
246                 if (cntrl->parm.setup.phone[0] == '*' &&
247                     cntrl->parm.setup.phone[1] == '*') {
248                         /* internal call: translate ** prefix to CTP value */
249                         commands[AT_TYPE] = kstrdup("^SCTP=0\r", GFP_ATOMIC);
250                         if (!commands[AT_TYPE])
251                                 goto oom;
252                         snprintf(commands[AT_DIAL], l,
253                                  "D%s\r", cntrl->parm.setup.phone+2);
254                 } else {
255                         commands[AT_TYPE] = kstrdup("^SCTP=1\r", GFP_ATOMIC);
256                         if (!commands[AT_TYPE])
257                                 goto oom;
258                         snprintf(commands[AT_DIAL], l,
259                                  "D%s\r", cntrl->parm.setup.phone);
260                 }
261
262                 l = strlen(cntrl->parm.setup.eazmsn);
263                 if (l) {
264                         l += 8;
265                         commands[AT_MSN] = kmalloc(l, GFP_ATOMIC);
266                         if (!commands[AT_MSN])
267                                 goto oom;
268                         snprintf(commands[AT_MSN], l, "^SMSN=%s\r",
269                                  cntrl->parm.setup.eazmsn);
270                 }
271
272                 switch (cntrl->parm.setup.si1) {
273                 case 1:         /* audio */
274                         /* BC = 9090A3: 3.1 kHz audio, A-law */
275                         commands[AT_BC] = kstrdup("^SBC=9090A3\r", GFP_ATOMIC);
276                         if (!commands[AT_BC])
277                                 goto oom;
278                         break;
279                 case 7:         /* data */
280                 default:        /* hope the app knows what it is doing */
281                         /* BC = 8890: unrestricted digital information */
282                         commands[AT_BC] = kstrdup("^SBC=8890\r", GFP_ATOMIC);
283                         if (!commands[AT_BC])
284                                 goto oom;
285                 }
286                 /* ToDo: other si1 values, inspect si2, set HLC/LLC */
287
288                 commands[AT_PROTO] = kmalloc(9, GFP_ATOMIC);
289                 if (!commands[AT_PROTO])
290                         goto oom;
291                 snprintf(commands[AT_PROTO], 9, "^SBPR=%u\r", bcs->proto2);
292
293                 commands[AT_ISO] = kmalloc(9, GFP_ATOMIC);
294                 if (!commands[AT_ISO])
295                         goto oom;
296                 snprintf(commands[AT_ISO], 9, "^SISO=%u\r",
297                          (unsigned) bcs->channel + 1);
298
299                 if (!gigaset_add_event(cs, &bcs->at_state, EV_DIAL, commands,
300                                        bcs->at_state.seq_index, NULL)) {
301                         for (i = 0; i < AT_NUM; ++i)
302                                 kfree(commands[i]);
303                         kfree(commands);
304                         gigaset_free_channel(bcs);
305                         return -ENOMEM;
306                 }
307                 gigaset_schedule_event(cs);
308                 break;
309         case ISDN_CMD_ACCEPTD:
310                 gig_dbg(DEBUG_CMD, "ISDN_CMD_ACCEPTD");
311                 if (ch >= cs->channels) {
312                         dev_err(cs->dev,
313                                 "ISDN_CMD_ACCEPTD: invalid channel (%d)\n", ch);
314                         return -EINVAL;
315                 }
316                 bcs = cs->bcs + ch;
317                 if (!gigaset_add_event(cs, &bcs->at_state,
318                                        EV_ACCEPT, NULL, 0, NULL))
319                         return -ENOMEM;
320                 gigaset_schedule_event(cs);
321
322                 break;
323         case ISDN_CMD_HANGUP:
324                 gig_dbg(DEBUG_CMD, "ISDN_CMD_HANGUP");
325                 if (ch >= cs->channels) {
326                         dev_err(cs->dev,
327                                 "ISDN_CMD_HANGUP: invalid channel (%d)\n", ch);
328                         return -EINVAL;
329                 }
330                 bcs = cs->bcs + ch;
331                 if (!gigaset_add_event(cs, &bcs->at_state,
332                                        EV_HUP, NULL, 0, NULL))
333                         return -ENOMEM;
334                 gigaset_schedule_event(cs);
335
336                 break;
337         case ISDN_CMD_CLREAZ: /* Do not signal incoming signals */
338                 dev_info(cs->dev, "ignoring ISDN_CMD_CLREAZ\n");
339                 break;
340         case ISDN_CMD_SETEAZ: /* Signal incoming calls for given MSN */
341                 dev_info(cs->dev, "ignoring ISDN_CMD_SETEAZ (%s)\n",
342                          cntrl->parm.num);
343                 break;
344         case ISDN_CMD_SETL2: /* Set L2 to given protocol */
345                 if (ch >= cs->channels) {
346                         dev_err(cs->dev,
347                                 "ISDN_CMD_SETL2: invalid channel (%d)\n", ch);
348                         return -EINVAL;
349                 }
350                 bcs = cs->bcs + ch;
351                 if (bcs->chstate & CHS_D_UP) {
352                         dev_err(cs->dev,
353                                 "ISDN_CMD_SETL2: channel active (%d)\n", ch);
354                         return -EINVAL;
355                 }
356                 switch (cntrl->arg >> 8) {
357                 case ISDN_PROTO_L2_HDLC:
358                         gig_dbg(DEBUG_CMD, "ISDN_CMD_SETL2: setting L2_HDLC");
359                         bcs->proto2 = L2_HDLC;
360                         break;
361                 case ISDN_PROTO_L2_TRANS:
362                         gig_dbg(DEBUG_CMD, "ISDN_CMD_SETL2: setting L2_VOICE");
363                         bcs->proto2 = L2_VOICE;
364                         break;
365                 default:
366                         dev_err(cs->dev,
367                                 "ISDN_CMD_SETL2: unsupported protocol (%lu)\n",
368                                 cntrl->arg >> 8);
369                         return -EINVAL;
370                 }
371                 break;
372         case ISDN_CMD_SETL3: /* Set L3 to given protocol */
373                 gig_dbg(DEBUG_CMD, "ISDN_CMD_SETL3");
374                 if (ch >= cs->channels) {
375                         dev_err(cs->dev,
376                                 "ISDN_CMD_SETL3: invalid channel (%d)\n", ch);
377                         return -EINVAL;
378                 }
379
380                 if (cntrl->arg >> 8 != ISDN_PROTO_L3_TRANS) {
381                         dev_err(cs->dev,
382                                 "ISDN_CMD_SETL3: unsupported protocol (%lu)\n",
383                                 cntrl->arg >> 8);
384                         return -EINVAL;
385                 }
386
387                 break;
388
389         default:
390                 gig_dbg(DEBUG_CMD, "unknown command %d from LL",
391                         cntrl->command);
392                 return -EINVAL;
393         }
394
395         return retval;
396
397 oom:
398         dev_err(bcs->cs->dev, "out of memory\n");
399         for (i = 0; i < AT_NUM; ++i)
400                 kfree(commands[i]);
401         return -ENOMEM;
402 }
403
404 static void gigaset_i4l_cmd(struct cardstate *cs, int cmd)
405 {
406         isdn_if *iif = cs->iif;
407         isdn_ctrl command;
408
409         command.driver = cs->myid;
410         command.command = cmd;
411         command.arg = 0;
412         iif->statcallb(&command);
413 }
414
415 static void gigaset_i4l_channel_cmd(struct bc_state *bcs, int cmd)
416 {
417         isdn_if *iif = bcs->cs->iif;
418         isdn_ctrl command;
419
420         command.driver = bcs->cs->myid;
421         command.command = cmd;
422         command.arg = bcs->channel;
423         iif->statcallb(&command);
424 }
425
426 /**
427  * gigaset_isdn_icall() - signal incoming call
428  * @at_state:   connection state structure.
429  *
430  * Called by main module to notify the LL that an incoming call has been
431  * received. @at_state contains the parameters of the call.
432  *
433  * Return value: call disposition (ICALL_*)
434  */
435 int gigaset_isdn_icall(struct at_state_t *at_state)
436 {
437         struct cardstate *cs = at_state->cs;
438         struct bc_state *bcs = at_state->bcs;
439         isdn_if *iif = cs->iif;
440         isdn_ctrl response;
441         int retval;
442
443         /* fill ICALL structure */
444         response.parm.setup.si1 = 0;    /* default: unknown */
445         response.parm.setup.si2 = 0;
446         response.parm.setup.screen = 0;
447         response.parm.setup.plan = 0;
448         if (!at_state->str_var[STR_ZBC]) {
449                 /* no BC (internal call): assume speech, A-law */
450                 response.parm.setup.si1 = 1;
451         } else if (!strcmp(at_state->str_var[STR_ZBC], "8890")) {
452                 /* unrestricted digital information */
453                 response.parm.setup.si1 = 7;
454         } else if (!strcmp(at_state->str_var[STR_ZBC], "8090A3")) {
455                 /* speech, A-law */
456                 response.parm.setup.si1 = 1;
457         } else if (!strcmp(at_state->str_var[STR_ZBC], "9090A3")) {
458                 /* 3,1 kHz audio, A-law */
459                 response.parm.setup.si1 = 1;
460                 response.parm.setup.si2 = 2;
461         } else {
462                 dev_warn(cs->dev, "RING ignored - unsupported BC %s\n",
463                      at_state->str_var[STR_ZBC]);
464                 return ICALL_IGNORE;
465         }
466         if (at_state->str_var[STR_NMBR]) {
467                 strlcpy(response.parm.setup.phone, at_state->str_var[STR_NMBR],
468                         sizeof response.parm.setup.phone);
469         } else
470                 response.parm.setup.phone[0] = 0;
471         if (at_state->str_var[STR_ZCPN]) {
472                 strlcpy(response.parm.setup.eazmsn, at_state->str_var[STR_ZCPN],
473                         sizeof response.parm.setup.eazmsn);
474         } else
475                 response.parm.setup.eazmsn[0] = 0;
476
477         if (!bcs) {
478                 dev_notice(cs->dev, "no channel for incoming call\n");
479                 response.command = ISDN_STAT_ICALLW;
480                 response.arg = 0;
481         } else {
482                 gig_dbg(DEBUG_CMD, "Sending ICALL");
483                 response.command = ISDN_STAT_ICALL;
484                 response.arg = bcs->channel;
485         }
486         response.driver = cs->myid;
487         retval = iif->statcallb(&response);
488         gig_dbg(DEBUG_CMD, "Response: %d", retval);
489         switch (retval) {
490         case 0: /* no takers */
491                 return ICALL_IGNORE;
492         case 1: /* alerting */
493                 bcs->chstate |= CHS_NOTIFY_LL;
494                 return ICALL_ACCEPT;
495         case 2: /* reject */
496                 return ICALL_REJECT;
497         case 3: /* incomplete */
498                 dev_warn(cs->dev,
499                        "LL requested unsupported feature: Incomplete Number\n");
500                 return ICALL_IGNORE;
501         case 4: /* proceeding */
502                 /* Gigaset will send ALERTING anyway.
503                  * There doesn't seem to be a way to avoid this.
504                  */
505                 return ICALL_ACCEPT;
506         case 5: /* deflect */
507                 dev_warn(cs->dev,
508                          "LL requested unsupported feature: Call Deflection\n");
509                 return ICALL_IGNORE;
510         default:
511                 dev_err(cs->dev, "LL error %d on ICALL\n", retval);
512                 return ICALL_IGNORE;
513         }
514 }
515
516 /**
517  * gigaset_isdn_connD() - signal D channel connect
518  * @bcs:        B channel descriptor structure.
519  *
520  * Called by main module to notify the LL that the D channel connection has
521  * been established.
522  */
523 void gigaset_isdn_connD(struct bc_state *bcs)
524 {
525         gig_dbg(DEBUG_CMD, "sending DCONN");
526         gigaset_i4l_channel_cmd(bcs, ISDN_STAT_DCONN);
527 }
528
529 /**
530  * gigaset_isdn_hupD() - signal D channel hangup
531  * @bcs:        B channel descriptor structure.
532  *
533  * Called by main module to notify the LL that the D channel connection has
534  * been shut down.
535  */
536 void gigaset_isdn_hupD(struct bc_state *bcs)
537 {
538         gig_dbg(DEBUG_CMD, "sending DHUP");
539         gigaset_i4l_channel_cmd(bcs, ISDN_STAT_DHUP);
540 }
541
542 /**
543  * gigaset_isdn_connB() - signal B channel connect
544  * @bcs:        B channel descriptor structure.
545  *
546  * Called by main module to notify the LL that the B channel connection has
547  * been established.
548  */
549 void gigaset_isdn_connB(struct bc_state *bcs)
550 {
551         gig_dbg(DEBUG_CMD, "sending BCONN");
552         gigaset_i4l_channel_cmd(bcs, ISDN_STAT_BCONN);
553 }
554
555 /**
556  * gigaset_isdn_hupB() - signal B channel hangup
557  * @bcs:        B channel descriptor structure.
558  *
559  * Called by main module to notify the LL that the B channel connection has
560  * been shut down.
561  */
562 void gigaset_isdn_hupB(struct bc_state *bcs)
563 {
564         gig_dbg(DEBUG_CMD, "sending BHUP");
565         gigaset_i4l_channel_cmd(bcs, ISDN_STAT_BHUP);
566 }
567
568 /**
569  * gigaset_isdn_start() - signal device availability
570  * @cs:         device descriptor structure.
571  *
572  * Called by main module to notify the LL that the device is available for
573  * use.
574  */
575 void gigaset_isdn_start(struct cardstate *cs)
576 {
577         gig_dbg(DEBUG_CMD, "sending RUN");
578         gigaset_i4l_cmd(cs, ISDN_STAT_RUN);
579 }
580
581 /**
582  * gigaset_isdn_stop() - signal device unavailability
583  * @cs:         device descriptor structure.
584  *
585  * Called by main module to notify the LL that the device is no longer
586  * available for use.
587  */
588 void gigaset_isdn_stop(struct cardstate *cs)
589 {
590         gig_dbg(DEBUG_CMD, "sending STOP");
591         gigaset_i4l_cmd(cs, ISDN_STAT_STOP);
592 }
593
594 /**
595  * gigaset_isdn_regdev() - register to LL
596  * @cs:         device descriptor structure.
597  * @isdnid:     device name.
598  *
599  * Return value: 1 for success, 0 for failure
600  */
601 int gigaset_isdn_regdev(struct cardstate *cs, const char *isdnid)
602 {
603         isdn_if *iif;
604
605         pr_info("ISDN4Linux interface\n");
606
607         iif = kmalloc(sizeof *iif, GFP_KERNEL);
608         if (!iif) {
609                 pr_err("out of memory\n");
610                 return 0;
611         }
612
613         if (snprintf(iif->id, sizeof iif->id, "%s_%u", isdnid, cs->minor_index)
614             >= sizeof iif->id) {
615                 pr_err("ID too long: %s\n", isdnid);
616                 kfree(iif);
617                 return 0;
618         }
619
620         iif->owner = THIS_MODULE;
621         iif->channels = cs->channels;
622         iif->maxbufsize = MAX_BUF_SIZE;
623         iif->features = ISDN_FEATURE_L2_TRANS |
624                 ISDN_FEATURE_L2_HDLC |
625 #ifdef GIG_X75
626                 ISDN_FEATURE_L2_X75I |
627 #endif
628                 ISDN_FEATURE_L3_TRANS |
629                 ISDN_FEATURE_P_EURO;
630         iif->hl_hdrlen = HW_HDR_LEN;            /* Area for storing ack */
631         iif->command = command_from_LL;
632         iif->writebuf_skb = writebuf_from_LL;
633         iif->writecmd = NULL;                   /* Don't support isdnctrl */
634         iif->readstat = NULL;                   /* Don't support isdnctrl */
635         iif->rcvcallb_skb = NULL;               /* Will be set by LL */
636         iif->statcallb = NULL;                  /* Will be set by LL */
637
638         if (!register_isdn(iif)) {
639                 pr_err("register_isdn failed\n");
640                 kfree(iif);
641                 return 0;
642         }
643
644         cs->iif = iif;
645         cs->myid = iif->channels;               /* Set my device id */
646         cs->hw_hdr_len = HW_HDR_LEN;
647         return 1;
648 }
649
650 /**
651  * gigaset_isdn_unregdev() - unregister device from LL
652  * @cs:         device descriptor structure.
653  */
654 void gigaset_isdn_unregdev(struct cardstate *cs)
655 {
656         gig_dbg(DEBUG_CMD, "sending UNLOAD");
657         gigaset_i4l_cmd(cs, ISDN_STAT_UNLOAD);
658         kfree(cs->iif);
659         cs->iif = NULL;
660 }
661
662 /**
663  * gigaset_isdn_regdrv() - register driver to LL
664  */
665 void gigaset_isdn_regdrv(void)
666 {
667         /* nothing to do */
668 }
669
670 /**
671  * gigaset_isdn_unregdrv() - unregister driver from LL
672  */
673 void gigaset_isdn_unregdrv(void)
674 {
675         /* nothing to do */
676 }