2 * Stuff used by all variants of the driver
4 * Copyright (c) 2001 by Stefan Eilers,
5 * Hansjoerg Lipp <hjlipp@web.de>,
6 * Tilman Schmidt <tilman@imap.cc>.
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 * =====================================================================
18 /* == Handling of I4L IO =====================================================*/
21 * called by LL to transmit data on an open channel
22 * inserts the buffer data into the send queue and starts the transmission
23 * Note that this operation must not sleep!
24 * When the buffer is processed completely, gigaset_skb_sent() should be called.
26 * driverID driver ID as assigned by LL
27 * channel channel number
28 * ack if != 0 LL wants to be notified on completion via
29 * statcallb(ISDN_STAT_BSENT)
30 * skb skb containing data to send
32 * number of accepted bytes
33 * 0 if temporarily unable to accept data (out of buffer space)
34 * <0 on error (eg. -EINVAL)
36 static int writebuf_from_LL(int driverID
, int channel
, int ack
,
44 if (!(cs
= gigaset_get_cs_by_id(driverID
))) {
45 err("%s: invalid driver ID (%d)", __func__
, driverID
);
48 if (channel
< 0 || channel
>= cs
->channels
) {
49 err("%s: invalid channel ID (%d)", __func__
, channel
);
52 bcs
= &cs
->bcs
[channel
];
56 "Receiving data from LL (id: %d, ch: %d, ack: %d, sz: %d)",
57 driverID
, channel
, ack
, len
);
61 notice("%s: not ACKing empty packet", __func__
);
64 if (len
> MAX_BUF_SIZE
) {
65 err("%s: packet too large (%d bytes)", __func__
, len
);
69 skblen
= ack
? len
: 0;
70 skb
->head
[0] = skblen
& 0xff;
71 skb
->head
[1] = skblen
>> 8;
72 gig_dbg(DEBUG_MCMD
, "skb: len=%u, skblen=%u: %02x %02x",
73 len
, skblen
, (unsigned) skb
->head
[0], (unsigned) skb
->head
[1]);
75 /* pass to device-specific module */
76 return cs
->ops
->send_skb(bcs
, skb
);
79 void gigaset_skb_sent(struct bc_state
*bcs
, struct sk_buff
*skb
)
87 dev_warn(bcs
->cs
->dev
, "%s: skb->len==%d\n",
90 len
= (unsigned char) skb
->head
[0] |
91 (unsigned) (unsigned char) skb
->head
[1] << 8;
93 gig_dbg(DEBUG_MCMD
, "ACKing to LL (id: %d, ch: %d, sz: %u)",
94 bcs
->cs
->myid
, bcs
->channel
, len
);
96 response
.driver
= bcs
->cs
->myid
;
97 response
.command
= ISDN_STAT_BSENT
;
98 response
.arg
= bcs
->channel
;
99 response
.parm
.length
= len
;
100 bcs
->cs
->iif
.statcallb(&response
);
103 EXPORT_SYMBOL_GPL(gigaset_skb_sent
);
105 /* This function will be called by LL to send commands
106 * NOTE: LL ignores the returned value, for commands other than ISDN_CMD_IOCTL,
107 * so don't put too much effort into it.
109 static int command_from_LL(isdn_ctrl
*cntrl
)
111 struct cardstate
*cs
= gigaset_get_cs_by_id(cntrl
->driver
);
112 //isdn_ctrl response;
113 //unsigned long flags;
114 struct bc_state
*bcs
;
116 struct setup_parm
*sp
;
120 gigaset_debugdrivers();
123 warn("LL tried to access unknown device with nr. %d",
128 switch (cntrl
->command
) {
130 gig_dbg(DEBUG_ANY
, "ISDN_CMD_IOCTL (driver: %d, arg: %ld)",
131 cntrl
->driver
, cntrl
->arg
);
133 warn("ISDN_CMD_IOCTL is not supported.");
138 "ISDN_CMD_DIAL (driver: %d, ch: %ld, "
139 "phone: %s, ownmsn: %s, si1: %d, si2: %d)",
140 cntrl
->driver
, cntrl
->arg
,
141 cntrl
->parm
.setup
.phone
, cntrl
->parm
.setup
.eazmsn
,
142 cntrl
->parm
.setup
.si1
, cntrl
->parm
.setup
.si2
);
144 if (cntrl
->arg
>= cs
->channels
) {
145 err("ISDN_CMD_DIAL: invalid channel (%d)",
150 bcs
= cs
->bcs
+ cntrl
->arg
;
152 if (!gigaset_get_channel(bcs
)) {
153 err("ISDN_CMD_DIAL: channel not free");
157 sp
= kmalloc(sizeof *sp
, GFP_ATOMIC
);
159 gigaset_free_channel(bcs
);
160 err("ISDN_CMD_DIAL: out of memory");
163 *sp
= cntrl
->parm
.setup
;
165 spin_lock_irqsave(&cs
->lock
, flags
);
166 param
= bcs
->at_state
.seq_index
;
167 spin_unlock_irqrestore(&cs
->lock
, flags
);
169 if (!gigaset_add_event(cs
, &bcs
->at_state
, EV_DIAL
, sp
, param
,
171 //FIXME what should we do?
173 gigaset_free_channel(bcs
);
177 gig_dbg(DEBUG_CMD
, "scheduling DIAL");
178 gigaset_schedule_event(cs
);
180 case ISDN_CMD_ACCEPTD
: //FIXME
181 gig_dbg(DEBUG_ANY
, "ISDN_CMD_ACCEPTD");
183 if (cntrl
->arg
>= cs
->channels
) {
184 err("ISDN_CMD_ACCEPTD: invalid channel (%d)",
189 if (!gigaset_add_event(cs
, &cs
->bcs
[cntrl
->arg
].at_state
,
190 EV_ACCEPT
, NULL
, 0, NULL
)) {
191 //FIXME what should we do?
195 gig_dbg(DEBUG_CMD
, "scheduling ACCEPT");
196 gigaset_schedule_event(cs
);
199 case ISDN_CMD_ACCEPTB
:
200 gig_dbg(DEBUG_ANY
, "ISDN_CMD_ACCEPTB");
202 case ISDN_CMD_HANGUP
:
203 gig_dbg(DEBUG_ANY
, "ISDN_CMD_HANGUP (ch: %d)",
206 if (cntrl
->arg
>= cs
->channels
) {
207 err("ISDN_CMD_HANGUP: invalid channel (%u)",
208 (unsigned) cntrl
->arg
);
212 if (!gigaset_add_event(cs
, &cs
->bcs
[cntrl
->arg
].at_state
,
213 EV_HUP
, NULL
, 0, NULL
)) {
214 //FIXME what should we do?
218 gig_dbg(DEBUG_CMD
, "scheduling HUP");
219 gigaset_schedule_event(cs
);
222 case ISDN_CMD_CLREAZ
: /* Do not signal incoming signals */ //FIXME
223 gig_dbg(DEBUG_ANY
, "ISDN_CMD_CLREAZ");
225 case ISDN_CMD_SETEAZ
: /* Signal incoming calls for given MSN */ //FIXME
227 "ISDN_CMD_SETEAZ (id: %d, ch: %ld, number: %s)",
228 cntrl
->driver
, cntrl
->arg
, cntrl
->parm
.num
);
230 case ISDN_CMD_SETL2
: /* Set L2 to given protocol */
231 gig_dbg(DEBUG_ANY
, "ISDN_CMD_SETL2 (ch: %ld, proto: %lx)",
232 cntrl
->arg
& 0xff, (cntrl
->arg
>> 8));
234 if ((cntrl
->arg
& 0xff) >= cs
->channels
) {
235 err("ISDN_CMD_SETL2: invalid channel (%u)",
236 (unsigned) cntrl
->arg
& 0xff);
240 if (!gigaset_add_event(cs
, &cs
->bcs
[cntrl
->arg
& 0xff].at_state
,
241 EV_PROTO_L2
, NULL
, cntrl
->arg
>> 8,
243 //FIXME what should we do?
247 gig_dbg(DEBUG_CMD
, "scheduling PROTO_L2");
248 gigaset_schedule_event(cs
);
250 case ISDN_CMD_SETL3
: /* Set L3 to given protocol */
251 gig_dbg(DEBUG_ANY
, "ISDN_CMD_SETL3 (ch: %ld, proto: %lx)",
252 cntrl
->arg
& 0xff, (cntrl
->arg
>> 8));
254 if ((cntrl
->arg
& 0xff) >= cs
->channels
) {
255 err("ISDN_CMD_SETL3: invalid channel (%u)",
256 (unsigned) cntrl
->arg
& 0xff);
260 if (cntrl
->arg
>> 8 != ISDN_PROTO_L3_TRANS
) {
261 err("ISDN_CMD_SETL3: invalid protocol %lu",
267 case ISDN_CMD_PROCEED
:
268 gig_dbg(DEBUG_ANY
, "ISDN_CMD_PROCEED"); //FIXME
271 gig_dbg(DEBUG_ANY
, "ISDN_CMD_ALERT"); //FIXME
272 if (cntrl
->arg
>= cs
->channels
) {
273 err("ISDN_CMD_ALERT: invalid channel (%d)",
277 //bcs = cs->bcs + cntrl->arg;
282 gig_dbg(DEBUG_ANY
, "ISDN_CMD_REDIR"); //FIXME
284 case ISDN_CMD_PROT_IO
:
285 gig_dbg(DEBUG_ANY
, "ISDN_CMD_PROT_IO");
287 case ISDN_CMD_FAXCMD
:
288 gig_dbg(DEBUG_ANY
, "ISDN_CMD_FAXCMD");
291 gig_dbg(DEBUG_ANY
, "ISDN_CMD_GETL2");
294 gig_dbg(DEBUG_ANY
, "ISDN_CMD_GETL3");
296 case ISDN_CMD_GETEAZ
:
297 gig_dbg(DEBUG_ANY
, "ISDN_CMD_GETEAZ");
299 case ISDN_CMD_SETSIL
:
300 gig_dbg(DEBUG_ANY
, "ISDN_CMD_SETSIL");
302 case ISDN_CMD_GETSIL
:
303 gig_dbg(DEBUG_ANY
, "ISDN_CMD_GETSIL");
306 err("unknown command %d from LL", cntrl
->command
);
313 void gigaset_i4l_cmd(struct cardstate
*cs
, int cmd
)
317 command
.driver
= cs
->myid
;
318 command
.command
= cmd
;
320 cs
->iif
.statcallb(&command
);
323 void gigaset_i4l_channel_cmd(struct bc_state
*bcs
, int cmd
)
327 command
.driver
= bcs
->cs
->myid
;
328 command
.command
= cmd
;
329 command
.arg
= bcs
->channel
;
330 bcs
->cs
->iif
.statcallb(&command
);
333 int gigaset_isdn_setup_dial(struct at_state_t
*at_state
, void *data
)
335 struct bc_state
*bcs
= at_state
->bcs
;
338 size_t length
[AT_NUM
];
341 struct setup_parm
*sp
= data
;
343 switch (bcs
->proto2
) {
344 case ISDN_PROTO_L2_HDLC
:
345 proto
= 1; /* 0: Bitsynchron, 1: HDLC, 2: voice */
347 case ISDN_PROTO_L2_TRANS
:
348 proto
= 2; /* 0: Bitsynchron, 1: HDLC, 2: voice */
351 dev_err(bcs
->cs
->dev
, "%s: invalid L2 protocol: %u\n",
352 __func__
, bcs
->proto2
);
358 bc
= "9090A3"; /* 3.1 kHz audio, A-law */
361 default: /* hope the app knows what it is doing */
362 bc
= "8890"; /* unrestricted digital information */
364 //FIXME add missing si1 values from 1TR6, inspect si2, set HLC/LLC
366 length
[AT_DIAL
] = 1 + strlen(sp
->phone
) + 1 + 1;
367 l
= strlen(sp
->eazmsn
);
368 length
[AT_MSN
] = l
? 6 + l
+ 1 + 1 : 0;
369 length
[AT_BC
] = 5 + strlen(bc
) + 1 + 1;
370 length
[AT_PROTO
] = 6 + 1 + 1 + 1; /* proto: 1 character */
371 length
[AT_ISO
] = 6 + 1 + 1 + 1; /* channel: 1 character */
372 length
[AT_TYPE
] = 6 + 1 + 1 + 1; /* call type: 1 character */
375 for (i
= 0; i
< AT_NUM
; ++i
) {
376 kfree(bcs
->commands
[i
]);
377 bcs
->commands
[i
] = NULL
;
379 !(bcs
->commands
[i
] = kmalloc(length
[i
], GFP_ATOMIC
))) {
380 dev_err(bcs
->cs
->dev
, "out of memory\n");
385 /* type = 1: extern, 0: intern, 2: recall, 3: door, 4: centrex */
386 if (sp
->phone
[0] == '*' && sp
->phone
[1] == '*') {
387 /* internal call: translate ** prefix to CTP value */
388 snprintf(bcs
->commands
[AT_DIAL
], length
[AT_DIAL
],
389 "D%s\r", sp
->phone
+2);
390 strncpy(bcs
->commands
[AT_TYPE
], "^SCTP=0\r", length
[AT_TYPE
]);
392 snprintf(bcs
->commands
[AT_DIAL
], length
[AT_DIAL
],
394 strncpy(bcs
->commands
[AT_TYPE
], "^SCTP=1\r", length
[AT_TYPE
]);
397 if (bcs
->commands
[AT_MSN
])
398 snprintf(bcs
->commands
[AT_MSN
], length
[AT_MSN
],
399 "^SMSN=%s\r", sp
->eazmsn
);
400 snprintf(bcs
->commands
[AT_BC
], length
[AT_BC
],
402 snprintf(bcs
->commands
[AT_PROTO
], length
[AT_PROTO
],
403 "^SBPR=%u\r", proto
);
404 snprintf(bcs
->commands
[AT_ISO
], length
[AT_ISO
],
405 "^SISO=%u\r", (unsigned)bcs
->channel
+ 1);
410 int gigaset_isdn_setup_accept(struct at_state_t
*at_state
)
413 size_t length
[AT_NUM
];
415 struct bc_state
*bcs
= at_state
->bcs
;
417 switch (bcs
->proto2
) {
418 case ISDN_PROTO_L2_HDLC
:
419 proto
= 1; /* 0: Bitsynchron, 1: HDLC, 2: voice */
421 case ISDN_PROTO_L2_TRANS
:
422 proto
= 2; /* 0: Bitsynchron, 1: HDLC, 2: voice */
425 dev_err(at_state
->cs
->dev
, "%s: invalid protocol: %u\n",
426 __func__
, bcs
->proto2
);
430 length
[AT_DIAL
] = 0;
433 length
[AT_PROTO
] = 6 + 1 + 1 + 1; /* proto: 1 character */
434 length
[AT_ISO
] = 6 + 1 + 1 + 1; /* channel: 1 character */
435 length
[AT_TYPE
] = 0;
438 for (i
= 0; i
< AT_NUM
; ++i
) {
439 kfree(bcs
->commands
[i
]);
440 bcs
->commands
[i
] = NULL
;
442 !(bcs
->commands
[i
] = kmalloc(length
[i
], GFP_ATOMIC
))) {
443 dev_err(at_state
->cs
->dev
, "out of memory\n");
448 snprintf(bcs
->commands
[AT_PROTO
], length
[AT_PROTO
],
449 "^SBPR=%u\r", proto
);
450 snprintf(bcs
->commands
[AT_ISO
], length
[AT_ISO
],
451 "^SISO=%u\r", (unsigned) bcs
->channel
+ 1);
456 int gigaset_isdn_icall(struct at_state_t
*at_state
)
458 struct cardstate
*cs
= at_state
->cs
;
459 struct bc_state
*bcs
= at_state
->bcs
;
463 /* fill ICALL structure */
464 response
.parm
.setup
.si1
= 0; /* default: unknown */
465 response
.parm
.setup
.si2
= 0;
466 response
.parm
.setup
.screen
= 0; //FIXME how to set these?
467 response
.parm
.setup
.plan
= 0;
468 if (!at_state
->str_var
[STR_ZBC
]) {
469 /* no BC (internal call): assume speech, A-law */
470 response
.parm
.setup
.si1
= 1;
471 } else if (!strcmp(at_state
->str_var
[STR_ZBC
], "8890")) {
472 /* unrestricted digital information */
473 response
.parm
.setup
.si1
= 7;
474 } else if (!strcmp(at_state
->str_var
[STR_ZBC
], "8090A3")) {
476 response
.parm
.setup
.si1
= 1;
477 } else if (!strcmp(at_state
->str_var
[STR_ZBC
], "9090A3")) {
478 /* 3,1 kHz audio, A-law */
479 response
.parm
.setup
.si1
= 1;
480 response
.parm
.setup
.si2
= 2;
482 dev_warn(cs
->dev
, "RING ignored - unsupported BC %s\n",
483 at_state
->str_var
[STR_ZBC
]);
486 if (at_state
->str_var
[STR_NMBR
]) {
487 strncpy(response
.parm
.setup
.phone
, at_state
->str_var
[STR_NMBR
],
488 sizeof response
.parm
.setup
.phone
- 1);
489 response
.parm
.setup
.phone
[sizeof response
.parm
.setup
.phone
- 1] = 0;
491 response
.parm
.setup
.phone
[0] = 0;
492 if (at_state
->str_var
[STR_ZCPN
]) {
493 strncpy(response
.parm
.setup
.eazmsn
, at_state
->str_var
[STR_ZCPN
],
494 sizeof response
.parm
.setup
.eazmsn
- 1);
495 response
.parm
.setup
.eazmsn
[sizeof response
.parm
.setup
.eazmsn
- 1] = 0;
497 response
.parm
.setup
.eazmsn
[0] = 0;
500 dev_notice(cs
->dev
, "no channel for incoming call\n");
501 response
.command
= ISDN_STAT_ICALLW
;
502 response
.arg
= 0; //FIXME
504 gig_dbg(DEBUG_CMD
, "Sending ICALL");
505 response
.command
= ISDN_STAT_ICALL
;
506 response
.arg
= bcs
->channel
; //FIXME
508 response
.driver
= cs
->myid
;
509 retval
= cs
->iif
.statcallb(&response
);
510 gig_dbg(DEBUG_CMD
, "Response: %d", retval
);
512 case 0: /* no takers */
514 case 1: /* alerting */
515 bcs
->chstate
|= CHS_NOTIFY_LL
;
519 case 3: /* incomplete */
521 "LL requested unsupported feature: Incomplete Number\n");
523 case 4: /* proceeding */
524 /* Gigaset will send ALERTING anyway.
525 * There doesn't seem to be a way to avoid this.
528 case 5: /* deflect */
530 "LL requested unsupported feature: Call Deflection\n");
533 dev_err(cs
->dev
, "LL error %d on ICALL\n", retval
);
538 /* Set Callback function pointer */
539 int gigaset_register_to_LL(struct cardstate
*cs
, const char *isdnid
)
541 isdn_if
*iif
= &cs
->iif
;
543 gig_dbg(DEBUG_ANY
, "Register driver capabilities to LL");
545 //iif->id[sizeof(iif->id) - 1]=0;
546 //strncpy(iif->id, isdnid, sizeof(iif->id) - 1);
547 if (snprintf(iif
->id
, sizeof iif
->id
, "%s_%u", isdnid
, cs
->minor_index
)
549 return -ENOMEM
; //FIXME EINVAL/...??
551 iif
->owner
= THIS_MODULE
;
552 iif
->channels
= cs
->channels
;
553 iif
->maxbufsize
= MAX_BUF_SIZE
;
554 iif
->features
= ISDN_FEATURE_L2_TRANS
|
555 ISDN_FEATURE_L2_HDLC
|
557 ISDN_FEATURE_L2_X75I
|
559 ISDN_FEATURE_L3_TRANS
|
561 iif
->hl_hdrlen
= HW_HDR_LEN
; /* Area for storing ack */
562 iif
->command
= command_from_LL
;
563 iif
->writebuf_skb
= writebuf_from_LL
;
564 iif
->writecmd
= NULL
; /* Don't support isdnctrl */
565 iif
->readstat
= NULL
; /* Don't support isdnctrl */
566 iif
->rcvcallb_skb
= NULL
; /* Will be set by LL */
567 iif
->statcallb
= NULL
; /* Will be set by LL */
569 if (!register_isdn(iif
))
572 cs
->myid
= iif
->channels
; /* Set my device id */