gigaset: fix bad assumptions about CAPI skbuffs
[safe/jmp/linux-2.6] / 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;
43         struct bc_state *bcs;
44         unsigned char *ack_header;
45         unsigned len;
46
47         if (!(cs = gigaset_get_cs_by_id(driverID))) {
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_ANY,
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
308                 gig_dbg(DEBUG_CMD, "scheduling DIAL");
309                 gigaset_schedule_event(cs);
310                 break;
311         case ISDN_CMD_ACCEPTD:
312                 if (ch >= cs->channels) {
313                         dev_err(cs->dev,
314                                 "ISDN_CMD_ACCEPTD: invalid channel (%d)\n", ch);
315                         return -EINVAL;
316                 }
317                 bcs = cs->bcs + ch;
318                 if (!gigaset_add_event(cs, &bcs->at_state,
319                                        EV_ACCEPT, NULL, 0, NULL))
320                         return -ENOMEM;
321
322                 gig_dbg(DEBUG_CMD, "scheduling ACCEPT");
323                 gigaset_schedule_event(cs);
324
325                 break;
326         case ISDN_CMD_ACCEPTB:
327                 break;
328         case ISDN_CMD_HANGUP:
329                 if (ch >= cs->channels) {
330                         dev_err(cs->dev,
331                                 "ISDN_CMD_HANGUP: invalid channel (%d)\n", ch);
332                         return -EINVAL;
333                 }
334                 bcs = cs->bcs + ch;
335                 if (!gigaset_add_event(cs, &bcs->at_state,
336                                        EV_HUP, NULL, 0, NULL))
337                         return -ENOMEM;
338
339                 gig_dbg(DEBUG_CMD, "scheduling HUP");
340                 gigaset_schedule_event(cs);
341
342                 break;
343         case ISDN_CMD_CLREAZ: /* Do not signal incoming signals */
344                 dev_info(cs->dev, "ignoring ISDN_CMD_CLREAZ\n");
345                 break;
346         case ISDN_CMD_SETEAZ: /* Signal incoming calls for given MSN */
347                 dev_info(cs->dev, "ignoring ISDN_CMD_SETEAZ (%s)\n",
348                          cntrl->parm.num);
349                 break;
350         case ISDN_CMD_SETL2: /* Set L2 to given protocol */
351                 if (ch >= cs->channels) {
352                         dev_err(cs->dev,
353                                 "ISDN_CMD_SETL2: invalid channel (%d)\n", ch);
354                         return -EINVAL;
355                 }
356                 bcs = cs->bcs + ch;
357                 if (bcs->chstate & CHS_D_UP) {
358                         dev_err(cs->dev,
359                                 "ISDN_CMD_SETL2: channel active (%d)\n", ch);
360                         return -EINVAL;
361                 }
362                 switch (cntrl->arg >> 8) {
363                 case ISDN_PROTO_L2_HDLC:
364                         gig_dbg(DEBUG_CMD, "ISDN_CMD_SETL2: setting L2_HDLC");
365                         bcs->proto2 = L2_HDLC;
366                         break;
367                 case ISDN_PROTO_L2_TRANS:
368                         gig_dbg(DEBUG_CMD, "ISDN_CMD_SETL2: setting L2_VOICE");
369                         bcs->proto2 = L2_VOICE;
370                         break;
371                 default:
372                         dev_err(cs->dev,
373                                 "ISDN_CMD_SETL2: unsupported protocol (%lu)\n",
374                                 cntrl->arg >> 8);
375                         return -EINVAL;
376                 }
377                 break;
378         case ISDN_CMD_SETL3: /* Set L3 to given protocol */
379                 if (ch >= cs->channels) {
380                         dev_err(cs->dev,
381                                 "ISDN_CMD_SETL3: invalid channel (%d)\n", ch);
382                         return -EINVAL;
383                 }
384
385                 if (cntrl->arg >> 8 != ISDN_PROTO_L3_TRANS) {
386                         dev_err(cs->dev,
387                                 "ISDN_CMD_SETL3: unsupported protocol (%lu)\n",
388                                 cntrl->arg >> 8);
389                         return -EINVAL;
390                 }
391
392                 break;
393         case ISDN_CMD_PROCEED:
394                 gig_dbg(DEBUG_ANY, "ISDN_CMD_PROCEED"); //FIXME
395                 break;
396         case ISDN_CMD_ALERT:
397                 gig_dbg(DEBUG_ANY, "ISDN_CMD_ALERT"); //FIXME
398                 if (cntrl->arg >= cs->channels) {
399                         dev_err(cs->dev,
400                                 "ISDN_CMD_ALERT: invalid channel (%d)\n",
401                                 (int) cntrl->arg);
402                         return -EINVAL;
403                 }
404                 //bcs = cs->bcs + cntrl->arg;
405                 //bcs->proto2 = -1;
406                 // FIXME
407                 break;
408         case ISDN_CMD_REDIR:
409                 gig_dbg(DEBUG_ANY, "ISDN_CMD_REDIR"); //FIXME
410                 break;
411         case ISDN_CMD_PROT_IO:
412                 gig_dbg(DEBUG_ANY, "ISDN_CMD_PROT_IO");
413                 break;
414         case ISDN_CMD_FAXCMD:
415                 gig_dbg(DEBUG_ANY, "ISDN_CMD_FAXCMD");
416                 break;
417         case ISDN_CMD_GETL2:
418                 gig_dbg(DEBUG_ANY, "ISDN_CMD_GETL2");
419                 break;
420         case ISDN_CMD_GETL3:
421                 gig_dbg(DEBUG_ANY, "ISDN_CMD_GETL3");
422                 break;
423         case ISDN_CMD_GETEAZ:
424                 gig_dbg(DEBUG_ANY, "ISDN_CMD_GETEAZ");
425                 break;
426         case ISDN_CMD_SETSIL:
427                 gig_dbg(DEBUG_ANY, "ISDN_CMD_SETSIL");
428                 break;
429         case ISDN_CMD_GETSIL:
430                 gig_dbg(DEBUG_ANY, "ISDN_CMD_GETSIL");
431                 break;
432         default:
433                 dev_err(cs->dev, "unknown command %d from LL\n",
434                         cntrl->command);
435                 return -EINVAL;
436         }
437
438         return retval;
439
440 oom:
441         dev_err(bcs->cs->dev, "out of memory\n");
442         for (i = 0; i < AT_NUM; ++i)
443                 kfree(commands[i]);
444         return -ENOMEM;
445 }
446
447 static void gigaset_i4l_cmd(struct cardstate *cs, int cmd)
448 {
449         isdn_if *iif = cs->iif;
450         isdn_ctrl command;
451
452         command.driver = cs->myid;
453         command.command = cmd;
454         command.arg = 0;
455         iif->statcallb(&command);
456 }
457
458 static void gigaset_i4l_channel_cmd(struct bc_state *bcs, int cmd)
459 {
460         isdn_if *iif = bcs->cs->iif;
461         isdn_ctrl command;
462
463         command.driver = bcs->cs->myid;
464         command.command = cmd;
465         command.arg = bcs->channel;
466         iif->statcallb(&command);
467 }
468
469 /**
470  * gigaset_isdn_icall() - signal incoming call
471  * @at_state:   connection state structure.
472  *
473  * Called by main module to notify the LL that an incoming call has been
474  * received. @at_state contains the parameters of the call.
475  *
476  * Return value: call disposition (ICALL_*)
477  */
478 int gigaset_isdn_icall(struct at_state_t *at_state)
479 {
480         struct cardstate *cs = at_state->cs;
481         struct bc_state *bcs = at_state->bcs;
482         isdn_if *iif = cs->iif;
483         isdn_ctrl response;
484         int retval;
485
486         /* fill ICALL structure */
487         response.parm.setup.si1 = 0;    /* default: unknown */
488         response.parm.setup.si2 = 0;
489         response.parm.setup.screen = 0; //FIXME how to set these?
490         response.parm.setup.plan = 0;
491         if (!at_state->str_var[STR_ZBC]) {
492                 /* no BC (internal call): assume speech, A-law */
493                 response.parm.setup.si1 = 1;
494         } else if (!strcmp(at_state->str_var[STR_ZBC], "8890")) {
495                 /* unrestricted digital information */
496                 response.parm.setup.si1 = 7;
497         } else if (!strcmp(at_state->str_var[STR_ZBC], "8090A3")) {
498                 /* speech, A-law */
499                 response.parm.setup.si1 = 1;
500         } else if (!strcmp(at_state->str_var[STR_ZBC], "9090A3")) {
501                 /* 3,1 kHz audio, A-law */
502                 response.parm.setup.si1 = 1;
503                 response.parm.setup.si2 = 2;
504         } else {
505                 dev_warn(cs->dev, "RING ignored - unsupported BC %s\n",
506                      at_state->str_var[STR_ZBC]);
507                 return ICALL_IGNORE;
508         }
509         if (at_state->str_var[STR_NMBR]) {
510                 strncpy(response.parm.setup.phone, at_state->str_var[STR_NMBR],
511                         sizeof response.parm.setup.phone - 1);
512                 response.parm.setup.phone[sizeof response.parm.setup.phone - 1] = 0;
513         } else
514                 response.parm.setup.phone[0] = 0;
515         if (at_state->str_var[STR_ZCPN]) {
516                 strncpy(response.parm.setup.eazmsn, at_state->str_var[STR_ZCPN],
517                         sizeof response.parm.setup.eazmsn - 1);
518                 response.parm.setup.eazmsn[sizeof response.parm.setup.eazmsn - 1] = 0;
519         } else
520                 response.parm.setup.eazmsn[0] = 0;
521
522         if (!bcs) {
523                 dev_notice(cs->dev, "no channel for incoming call\n");
524                 response.command = ISDN_STAT_ICALLW;
525                 response.arg = 0; //FIXME
526         } else {
527                 gig_dbg(DEBUG_CMD, "Sending ICALL");
528                 response.command = ISDN_STAT_ICALL;
529                 response.arg = bcs->channel; //FIXME
530         }
531         response.driver = cs->myid;
532         retval = iif->statcallb(&response);
533         gig_dbg(DEBUG_CMD, "Response: %d", retval);
534         switch (retval) {
535         case 0: /* no takers */
536                 return ICALL_IGNORE;
537         case 1: /* alerting */
538                 bcs->chstate |= CHS_NOTIFY_LL;
539                 return ICALL_ACCEPT;
540         case 2: /* reject */
541                 return ICALL_REJECT;
542         case 3: /* incomplete */
543                 dev_warn(cs->dev,
544                        "LL requested unsupported feature: Incomplete Number\n");
545                 return ICALL_IGNORE;
546         case 4: /* proceeding */
547                 /* Gigaset will send ALERTING anyway.
548                  * There doesn't seem to be a way to avoid this.
549                  */
550                 return ICALL_ACCEPT;
551         case 5: /* deflect */
552                 dev_warn(cs->dev,
553                          "LL requested unsupported feature: Call Deflection\n");
554                 return ICALL_IGNORE;
555         default:
556                 dev_err(cs->dev, "LL error %d on ICALL\n", retval);
557                 return ICALL_IGNORE;
558         }
559 }
560
561 /**
562  * gigaset_isdn_connD() - signal D channel connect
563  * @bcs:        B channel descriptor structure.
564  *
565  * Called by main module to notify the LL that the D channel connection has
566  * been established.
567  */
568 void gigaset_isdn_connD(struct bc_state *bcs)
569 {
570         gig_dbg(DEBUG_CMD, "sending DCONN");
571         gigaset_i4l_channel_cmd(bcs, ISDN_STAT_DCONN);
572 }
573
574 /**
575  * gigaset_isdn_hupD() - signal D channel hangup
576  * @bcs:        B channel descriptor structure.
577  *
578  * Called by main module to notify the LL that the D channel connection has
579  * been shut down.
580  */
581 void gigaset_isdn_hupD(struct bc_state *bcs)
582 {
583         gig_dbg(DEBUG_CMD, "sending DHUP");
584         gigaset_i4l_channel_cmd(bcs, ISDN_STAT_DHUP);
585 }
586
587 /**
588  * gigaset_isdn_connB() - signal B channel connect
589  * @bcs:        B channel descriptor structure.
590  *
591  * Called by main module to notify the LL that the B channel connection has
592  * been established.
593  */
594 void gigaset_isdn_connB(struct bc_state *bcs)
595 {
596         gig_dbg(DEBUG_CMD, "sending BCONN");
597         gigaset_i4l_channel_cmd(bcs, ISDN_STAT_BCONN);
598 }
599
600 /**
601  * gigaset_isdn_hupB() - signal B channel hangup
602  * @bcs:        B channel descriptor structure.
603  *
604  * Called by main module to notify the LL that the B channel connection has
605  * been shut down.
606  */
607 void gigaset_isdn_hupB(struct bc_state *bcs)
608 {
609         gig_dbg(DEBUG_CMD, "sending BHUP");
610         gigaset_i4l_channel_cmd(bcs, ISDN_STAT_BHUP);
611 }
612
613 /**
614  * gigaset_isdn_start() - signal device availability
615  * @cs:         device descriptor structure.
616  *
617  * Called by main module to notify the LL that the device is available for
618  * use.
619  */
620 void gigaset_isdn_start(struct cardstate *cs)
621 {
622         gig_dbg(DEBUG_CMD, "sending RUN");
623         gigaset_i4l_cmd(cs, ISDN_STAT_RUN);
624 }
625
626 /**
627  * gigaset_isdn_stop() - signal device unavailability
628  * @cs:         device descriptor structure.
629  *
630  * Called by main module to notify the LL that the device is no longer
631  * available for use.
632  */
633 void gigaset_isdn_stop(struct cardstate *cs)
634 {
635         gig_dbg(DEBUG_CMD, "sending STOP");
636         gigaset_i4l_cmd(cs, ISDN_STAT_STOP);
637 }
638
639 /**
640  * gigaset_isdn_register() - register to LL
641  * @cs:         device descriptor structure.
642  * @isdnid:     device name.
643  *
644  * Called by main module to register the device with the LL.
645  *
646  * Return value: 1 for success, 0 for failure
647  */
648 int gigaset_isdn_register(struct cardstate *cs, const char *isdnid)
649 {
650         isdn_if *iif;
651
652         pr_info("ISDN4Linux interface\n");
653
654         iif = kmalloc(sizeof *iif, GFP_KERNEL);
655         if (!iif) {
656                 pr_err("out of memory\n");
657                 return 0;
658         }
659
660         if (snprintf(iif->id, sizeof iif->id, "%s_%u", isdnid, cs->minor_index)
661             >= sizeof iif->id) {
662                 pr_err("ID too long: %s\n", isdnid);
663                 kfree(iif);
664                 return 0;
665         }
666
667         iif->owner = THIS_MODULE;
668         iif->channels = cs->channels;
669         iif->maxbufsize = MAX_BUF_SIZE;
670         iif->features = ISDN_FEATURE_L2_TRANS |
671                 ISDN_FEATURE_L2_HDLC |
672 #ifdef GIG_X75
673                 ISDN_FEATURE_L2_X75I |
674 #endif
675                 ISDN_FEATURE_L3_TRANS |
676                 ISDN_FEATURE_P_EURO;
677         iif->hl_hdrlen = HW_HDR_LEN;            /* Area for storing ack */
678         iif->command = command_from_LL;
679         iif->writebuf_skb = writebuf_from_LL;
680         iif->writecmd = NULL;                   /* Don't support isdnctrl */
681         iif->readstat = NULL;                   /* Don't support isdnctrl */
682         iif->rcvcallb_skb = NULL;               /* Will be set by LL */
683         iif->statcallb = NULL;                  /* Will be set by LL */
684
685         if (!register_isdn(iif)) {
686                 pr_err("register_isdn failed\n");
687                 kfree(iif);
688                 return 0;
689         }
690
691         cs->iif = iif;
692         cs->myid = iif->channels;               /* Set my device id */
693         cs->hw_hdr_len = HW_HDR_LEN;
694         return 1;
695 }
696
697 /**
698  * gigaset_isdn_unregister() - unregister from LL
699  * @cs:         device descriptor structure.
700  *
701  * Called by main module to unregister the device from the LL.
702  */
703 void gigaset_isdn_unregister(struct cardstate *cs)
704 {
705         gig_dbg(DEBUG_CMD, "sending UNLOAD");
706         gigaset_i4l_cmd(cs, ISDN_STAT_UNLOAD);
707         kfree(cs->iif);
708         cs->iif = NULL;
709 }