2 * Author Andreas Eversberg (jolly@eversberg.eu)
3 * Based on source code structure by
4 * Karsten Keil (keil@isdn4linux.de)
6 * This file is (c) under GNU PUBLIC LICENSE
7 * For changes and modifications please read
8 * ../../../Documentation/isdn/mISDN.cert
10 * Thanks to Karsten Keil (great drivers)
11 * Cologne Chip (great chips)
14 * Real-time tone generation
16 * Real-time cross-connection and conferrence
17 * Compensate jitter due to system load and hardware fault.
18 * All features are done in kernel space and will be realized
19 * using hardware, if available and supported by chip set.
20 * Blowfish encryption/decryption
25 * The dsp module provides layer 2 for b-channels (64kbit). It provides
26 * transparent audio forwarding with special digital signal processing:
28 * - (1) generation of tones
29 * - (2) detection of dtmf tones
30 * - (3) crossconnecting and conferences (clocking)
31 * - (4) echo generation for delay test
32 * - (5) volume control
33 * - (6) disable receive data
35 * - (8) encryption/decryption
39 * ------upper layer------
43 * +-----+-------------+-----+
50 * |+---------+| +----+----+
53 * || Tones || | DTMF |
56 * |+----+----+| +----+----+
60 * +----+----+ +----+----+
63 * |TX Volume| |RX Volume|
66 * +----+----+ +----+----+
70 * +----+-------------+----+
73 * | Pipeline Processing |
76 * +----+-------------+----+
80 * +----+----+ +----+----+
83 * | Encrypt | | Decrypt |
86 * +----+----+ +----+----+
90 * ------card layer------
93 * Above you can see the logical data flow. If software is used to do the
94 * process, it is actually the real data flow. If hardware is used, data
95 * may not flow, but hardware commands to the card, to provide the data flow
98 * NOTE: The channel must be activated in order to make dsp work, even if
99 * no data flow to the upper layer is intended. Activation can be done
100 * after and before controlling the setting using PH_CONTROL requests.
102 * DTMF: Will be detected by hardware if possible. It is done before CMX
105 * Tones: Will be generated via software if endless looped audio fifos are
106 * not supported by hardware. Tones will override all data from CMX.
107 * It is not required to join a conference to use tones at any time.
109 * CMX: Is transparent when not used. When it is used, it will do
110 * crossconnections and conferences via software if not possible through
111 * hardware. If hardware capability is available, hardware is used.
113 * Echo: Is generated by CMX and is used to check performane of hard and
116 * The CMX has special functions for conferences with one, two and more
117 * members. It will allow different types of data flow. Receive and transmit
118 * data to/form upper layer may be swithed on/off individually without loosing
119 * features of CMX, Tones and DTMF.
121 * Echo Cancellation: Sometimes we like to cancel echo from the interface.
122 * Note that a VoIP call may not have echo caused by the IP phone. The echo
123 * is generated by the telephone line connected to it. Because the delay
124 * is high, it becomes an echo. RESULT: Echo Cachelation is required if
125 * both echo AND delay is applied to an interface.
126 * Remember that software CMX always generates a more or less delay.
128 * If all used features can be realized in hardware, and if transmit and/or
129 * receive data ist disabled, the card may not send/receive any data at all.
130 * Not receiving is usefull if only announcements are played. Not sending is
131 * usefull if an answering machine records audio. Not sending and receiving is
132 * usefull during most states of the call. If supported by hardware, tones
133 * will be played without cpu load. Small PBXs and NT-Mode applications will
134 * not need expensive hardware when processing calls.
139 * When data is received from upper or lower layer (card), the complete dsp
140 * module is locked by a global lock. This lock MUST lock irq, because it
141 * must lock timer events by DSP poll timer.
142 * When data is ready to be transmitted down, the data is queued and sent
143 * outside lock and timer event.
144 * PH_CONTROL must not change any settings, join or split conference members
145 * during process of data.
149 * It works quite the same as transparent, except that HDLC data is forwarded
150 * to all other conference members if no hardware bridging is possible.
151 * Send data will be writte to sendq. Sendq will be sent if confirm is received.
152 * Conference cannot join, if one member is not hdlc.
156 #include <linux/delay.h>
157 #include <linux/mISDNif.h>
158 #include <linux/mISDNdsp.h>
159 #include <linux/module.h>
160 #include <linux/vmalloc.h>
164 const char *mISDN_dsp_revision
= "2.0";
169 static int dtmfthreshold
= 100;
171 MODULE_AUTHOR("Andreas Eversberg");
172 module_param(debug
, uint
, S_IRUGO
| S_IWUSR
);
173 module_param(options
, uint
, S_IRUGO
| S_IWUSR
);
174 module_param(poll
, uint
, S_IRUGO
| S_IWUSR
);
175 module_param(dtmfthreshold
, uint
, S_IRUGO
| S_IWUSR
);
176 MODULE_LICENSE("GPL");
178 /*int spinnest = 0;*/
180 spinlock_t dsp_lock
; /* global dsp lock */
181 struct list_head dsp_ilist
;
182 struct list_head conf_ilist
;
185 int dsp_poll
, dsp_tics
;
187 /* check if rx may be turned off or must be turned on */
189 dsp_rx_off_member(struct dsp
*dsp
)
191 struct mISDN_ctrl_req cq
;
194 if (!dsp
->features_rx_off
)
198 if (!dsp
->rx_disabled
)
201 else if (dsp
->dtmf
.software
)
203 /* echo in software */
204 else if (dsp
->echo
&& dsp
->pcm_slot_tx
< 0)
206 /* bridge in software */
207 else if (dsp
->conf
) {
208 if (dsp
->conf
->software
)
212 if (rx_off
== dsp
->rx_is_off
)
216 if (dsp_debug
& DEBUG_DSP_CORE
)
217 printk(KERN_DEBUG
"%s: no peer, no rx_off\n",
221 cq
.op
= MISDN_CTRL_RX_OFF
;
223 if (dsp
->ch
.peer
->ctrl(dsp
->ch
.peer
, CONTROL_CHANNEL
, &cq
)) {
224 printk(KERN_DEBUG
"%s: 2nd CONTROL_CHANNEL failed\n",
228 dsp
->rx_is_off
= rx_off
;
229 if (dsp_debug
& DEBUG_DSP_CORE
)
230 printk(KERN_DEBUG
"%s: %s set rx_off = %d\n",
231 __func__
, dsp
->name
, rx_off
);
234 dsp_rx_off(struct dsp
*dsp
)
236 struct dsp_conf_member
*member
;
238 if (dsp_options
& DSP_OPT_NOHARDWARE
)
243 dsp_rx_off_member(dsp
);
246 /* check all members in conf */
247 list_for_each_entry(member
, &dsp
->conf
->mlist
, list
) {
248 dsp_rx_off_member(member
->dsp
);
253 dsp_control_req(struct dsp
*dsp
, struct mISDNhead
*hh
, struct sk_buff
*skb
)
255 struct sk_buff
*nskb
;
261 if (skb
->len
< sizeof(int))
262 printk(KERN_ERR
"%s: PH_CONTROL message too short\n", __func__
);
263 cont
= *((int *)skb
->data
);
264 len
= skb
->len
- sizeof(int);
265 data
= skb
->data
+ sizeof(int);
268 case DTMF_TONE_START
: /* turn on DTMF */
273 if (dsp_debug
& DEBUG_DSP_CORE
)
274 printk(KERN_DEBUG
"%s: start dtmf\n", __func__
);
275 if (len
== sizeof(int)) {
276 printk(KERN_NOTICE
"changing DTMF Threshold "
277 "to %d\n", *((int *)data
));
278 dsp
->dtmf
.treshold
= (*(int *)data
) * 10000;
281 dsp_dtmf_goertzel_init(dsp
);
283 /* check dtmf hardware */
284 dsp_dtmf_hardware(dsp
);
286 case DTMF_TONE_STOP
: /* turn off DTMF */
287 if (dsp_debug
& DEBUG_DSP_CORE
)
288 printk(KERN_DEBUG
"%s: stop dtmf\n", __func__
);
289 dsp
->dtmf
.hardware
= 0;
290 dsp
->dtmf
.software
= 0;
292 case DSP_CONF_JOIN
: /* join / update conference */
293 if (len
< sizeof(int)) {
297 if (*((u32
*)data
) == 0)
299 if (dsp_debug
& DEBUG_DSP_CORE
)
300 printk(KERN_DEBUG
"%s: join conference %d\n",
301 __func__
, *((u32
*)data
));
302 ret
= dsp_cmx_conf(dsp
, *((u32
*)data
));
303 /* dsp_cmx_hardware will also be called here */
305 if (dsp_debug
& DEBUG_DSP_CMX
)
308 case DSP_CONF_SPLIT
: /* remove from conference */
310 if (dsp_debug
& DEBUG_DSP_CORE
)
311 printk(KERN_DEBUG
"%s: release conference\n", __func__
);
312 ret
= dsp_cmx_conf(dsp
, 0);
313 /* dsp_cmx_hardware will also be called here */
314 if (dsp_debug
& DEBUG_DSP_CMX
)
318 case DSP_TONE_PATT_ON
: /* play tone */
323 if (len
< sizeof(int)) {
327 if (dsp_debug
& DEBUG_DSP_CORE
)
328 printk(KERN_DEBUG
"%s: turn tone 0x%x on\n",
329 __func__
, *((int *)skb
->data
));
330 ret
= dsp_tone(dsp
, *((int *)data
));
332 dsp_cmx_hardware(dsp
->conf
, dsp
);
338 case DSP_TONE_PATT_OFF
: /* stop tone */
343 if (dsp_debug
& DEBUG_DSP_CORE
)
344 printk(KERN_DEBUG
"%s: turn tone off\n", __func__
);
346 dsp_cmx_hardware(dsp
->conf
, dsp
);
348 /* reset tx buffers (user space data) */
353 case DSP_VOL_CHANGE_TX
: /* change volume */
358 if (len
< sizeof(int)) {
362 dsp
->tx_volume
= *((int *)data
);
363 if (dsp_debug
& DEBUG_DSP_CORE
)
364 printk(KERN_DEBUG
"%s: change tx vol to %d\n",
365 __func__
, dsp
->tx_volume
);
366 dsp_cmx_hardware(dsp
->conf
, dsp
);
367 dsp_dtmf_hardware(dsp
);
370 case DSP_VOL_CHANGE_RX
: /* change volume */
375 if (len
< sizeof(int)) {
379 dsp
->rx_volume
= *((int *)data
);
380 if (dsp_debug
& DEBUG_DSP_CORE
)
381 printk(KERN_DEBUG
"%s: change rx vol to %d\n",
382 __func__
, dsp
->tx_volume
);
383 dsp_cmx_hardware(dsp
->conf
, dsp
);
384 dsp_dtmf_hardware(dsp
);
387 case DSP_ECHO_ON
: /* enable echo */
388 dsp
->echo
= 1; /* soft echo */
389 if (dsp_debug
& DEBUG_DSP_CORE
)
390 printk(KERN_DEBUG
"%s: enable cmx-echo\n", __func__
);
391 dsp_cmx_hardware(dsp
->conf
, dsp
);
393 if (dsp_debug
& DEBUG_DSP_CMX
)
396 case DSP_ECHO_OFF
: /* disable echo */
398 if (dsp_debug
& DEBUG_DSP_CORE
)
399 printk(KERN_DEBUG
"%s: disable cmx-echo\n", __func__
);
400 dsp_cmx_hardware(dsp
->conf
, dsp
);
402 if (dsp_debug
& DEBUG_DSP_CMX
)
405 case DSP_RECEIVE_ON
: /* enable receive to user space */
406 if (dsp_debug
& DEBUG_DSP_CORE
)
407 printk(KERN_DEBUG
"%s: enable receive to user "
408 "space\n", __func__
);
409 dsp
->rx_disabled
= 0;
412 case DSP_RECEIVE_OFF
: /* disable receive to user space */
413 if (dsp_debug
& DEBUG_DSP_CORE
)
414 printk(KERN_DEBUG
"%s: disable receive to "
415 "user space\n", __func__
);
416 dsp
->rx_disabled
= 1;
419 case DSP_MIX_ON
: /* enable mixing of tx data */
424 if (dsp_debug
& DEBUG_DSP_CORE
)
425 printk(KERN_DEBUG
"%s: enable mixing of "
426 "tx-data with conf mebers\n", __func__
);
428 dsp_cmx_hardware(dsp
->conf
, dsp
);
430 if (dsp_debug
& DEBUG_DSP_CMX
)
433 case DSP_MIX_OFF
: /* disable mixing of tx data */
438 if (dsp_debug
& DEBUG_DSP_CORE
)
439 printk(KERN_DEBUG
"%s: disable mixing of "
440 "tx-data with conf mebers\n", __func__
);
442 dsp_cmx_hardware(dsp
->conf
, dsp
);
444 if (dsp_debug
& DEBUG_DSP_CMX
)
447 case DSP_TXDATA_ON
: /* enable txdata */
449 if (dsp_debug
& DEBUG_DSP_CORE
)
450 printk(KERN_DEBUG
"%s: enable tx-data\n", __func__
);
451 dsp_cmx_hardware(dsp
->conf
, dsp
);
453 if (dsp_debug
& DEBUG_DSP_CMX
)
456 case DSP_TXDATA_OFF
: /* disable txdata */
458 if (dsp_debug
& DEBUG_DSP_CORE
)
459 printk(KERN_DEBUG
"%s: disable tx-data\n", __func__
);
460 dsp_cmx_hardware(dsp
->conf
, dsp
);
462 if (dsp_debug
& DEBUG_DSP_CMX
)
465 case DSP_DELAY
: /* use delay algorithm instead of dynamic
471 if (len
< sizeof(int)) {
475 dsp
->cmx_delay
= (*((int *)data
)) << 3;
476 /* miliseconds to samples */
477 if (dsp
->cmx_delay
>= (CMX_BUFF_HALF
>>1))
478 /* clip to half of maximum usable buffer
479 (half of half buffer) */
480 dsp
->cmx_delay
= (CMX_BUFF_HALF
>>1) - 1;
481 if (dsp_debug
& DEBUG_DSP_CORE
)
482 printk(KERN_DEBUG
"%s: use delay algorithm to "
483 "compensate jitter (%d samples)\n",
484 __func__
, dsp
->cmx_delay
);
486 case DSP_JITTER
: /* use dynamic jitter algorithm instead of
493 if (dsp_debug
& DEBUG_DSP_CORE
)
494 printk(KERN_DEBUG
"%s: use jitter algorithm to "
495 "compensate jitter\n", __func__
);
497 case DSP_TX_DEJITTER
: /* use dynamic jitter algorithm for tx-buffer */
502 dsp
->tx_dejitter
= 1;
503 if (dsp_debug
& DEBUG_DSP_CORE
)
504 printk(KERN_DEBUG
"%s: use dejitter on TX "
505 "buffer\n", __func__
);
507 case DSP_TX_DEJ_OFF
: /* use tx-buffer without dejittering*/
512 dsp
->tx_dejitter
= 0;
513 if (dsp_debug
& DEBUG_DSP_CORE
)
514 printk(KERN_DEBUG
"%s: use TX buffer without "
515 "dejittering\n", __func__
);
517 case DSP_PIPELINE_CFG
:
522 if (len
> 0 && ((char *)data
)[len
- 1]) {
523 printk(KERN_DEBUG
"%s: pipeline config string "
524 "is not NULL terminated!\n", __func__
);
527 dsp
->pipeline
.inuse
= 1;
528 dsp_cmx_hardware(dsp
->conf
, dsp
);
529 ret
= dsp_pipeline_build(&dsp
->pipeline
,
530 len
> 0 ? (char *)data
: NULL
);
531 dsp_cmx_hardware(dsp
->conf
, dsp
);
535 case DSP_BF_ENABLE_KEY
: /* turn blowfish on */
540 if (len
< 4 || len
> 56) {
544 if (dsp_debug
& DEBUG_DSP_CORE
)
545 printk(KERN_DEBUG
"%s: turn blowfish on (key "
546 "not shown)\n", __func__
);
547 ret
= dsp_bf_init(dsp
, (u8
*)data
, len
);
550 cont
= DSP_BF_ACCEPT
;
552 cont
= DSP_BF_REJECT
;
553 /* send indication if it worked to set it */
554 nskb
= _alloc_mISDN_skb(PH_CONTROL_IND
, MISDN_ID_ANY
,
555 sizeof(int), &cont
, GFP_ATOMIC
);
558 if (dsp
->up
->send(dsp
->up
, nskb
))
564 dsp_cmx_hardware(dsp
->conf
, dsp
);
565 dsp_dtmf_hardware(dsp
);
569 case DSP_BF_DISABLE
: /* turn blowfish off */
574 if (dsp_debug
& DEBUG_DSP_CORE
)
575 printk(KERN_DEBUG
"%s: turn blowfish off\n", __func__
);
577 dsp_cmx_hardware(dsp
->conf
, dsp
);
578 dsp_dtmf_hardware(dsp
);
582 if (dsp_debug
& DEBUG_DSP_CORE
)
583 printk(KERN_DEBUG
"%s: ctrl req %x unhandled\n",
591 get_features(struct mISDNchannel
*ch
)
593 struct dsp
*dsp
= container_of(ch
, struct dsp
, ch
);
594 struct mISDN_ctrl_req cq
;
596 if (dsp_options
& DSP_OPT_NOHARDWARE
)
599 if (dsp_debug
& DEBUG_DSP_CORE
)
600 printk(KERN_DEBUG
"%s: no peer, no features\n",
604 memset(&cq
, 0, sizeof(cq
));
605 cq
.op
= MISDN_CTRL_GETOP
;
606 if (ch
->peer
->ctrl(ch
->peer
, CONTROL_CHANNEL
, &cq
) < 0) {
607 printk(KERN_DEBUG
"%s: CONTROL_CHANNEL failed\n",
611 if (cq
.op
& MISDN_CTRL_RX_OFF
)
612 dsp
->features_rx_off
= 1;
613 if ((cq
.op
& MISDN_CTRL_HW_FEATURES_OP
)) {
614 cq
.op
= MISDN_CTRL_HW_FEATURES
;
615 *((u_long
*)&cq
.p1
) = (u_long
)&dsp
->features
;
616 if (ch
->peer
->ctrl(ch
->peer
, CONTROL_CHANNEL
, &cq
)) {
617 printk(KERN_DEBUG
"%s: 2nd CONTROL_CHANNEL failed\n",
621 if (dsp_debug
& DEBUG_DSP_CORE
)
622 printk(KERN_DEBUG
"%s: features not supported for %s\n",
623 __func__
, dsp
->name
);
627 dsp_function(struct mISDNchannel
*ch
, struct sk_buff
*skb
)
629 struct dsp
*dsp
= container_of(ch
, struct dsp
, ch
);
630 struct mISDNhead
*hh
;
634 struct sk_buff
*nskb
;
637 hh
= mISDN_HEAD_P(skb
);
641 dsp
->data_pending
= 0;
642 /* trigger next hdlc frame, if any */
644 spin_lock_irqsave(&dsp_lock
, flags
);
646 schedule_work(&dsp
->workq
);
647 spin_unlock_irqrestore(&dsp_lock
, flags
);
656 if (dsp
->rx_is_off
) {
657 if (dsp_debug
& DEBUG_DSP_CORE
)
658 printk(KERN_DEBUG
"%s: rx-data during rx_off"
660 __func__
, dsp
->name
);
664 spin_lock_irqsave(&dsp_lock
, flags
);
665 dsp_cmx_hdlc(dsp
, skb
);
666 spin_unlock_irqrestore(&dsp_lock
, flags
);
667 if (dsp
->rx_disabled
) {
668 /* if receive is not allowed */
671 hh
->prim
= DL_DATA_IND
;
673 return dsp
->up
->send(dsp
->up
, skb
);
677 /* decrypt if enabled */
679 dsp_bf_decrypt(dsp
, skb
->data
, skb
->len
);
681 if (dsp
->pipeline
.inuse
)
682 dsp_pipeline_process_rx(&dsp
->pipeline
, skb
->data
,
684 /* change volume if requested */
686 dsp_change_volume(skb
, dsp
->rx_volume
);
688 /* check if dtmf soft decoding is turned on */
689 if (dsp
->dtmf
.software
) {
690 digits
= dsp_dtmf_goertzel_decode(dsp
, skb
->data
,
691 skb
->len
, (dsp_options
&DSP_OPT_ULAW
)?1:0);
693 if (dsp_debug
& DEBUG_DSP_DTMF
)
694 printk(KERN_DEBUG
"%s: digit"
695 "(%c) to layer %s\n",
696 __func__
, *digits
, dsp
->name
);
697 cont
= DTMF_TONE_VAL
| *digits
;
698 nskb
= _alloc_mISDN_skb(PH_CONTROL_IND
,
699 MISDN_ID_ANY
, sizeof(int), &cont
,
712 /* we need to process receive data if software */
713 spin_lock_irqsave(&dsp_lock
, flags
);
714 if (dsp
->pcm_slot_tx
< 0 && dsp
->pcm_slot_rx
< 0) {
715 /* process data from card at cmx */
716 dsp_cmx_receive(dsp
, skb
);
718 spin_unlock_irqrestore(&dsp_lock
, flags
);
720 if (dsp
->rx_disabled
) {
721 /* if receive is not allowed */
724 hh
->prim
= DL_DATA_IND
;
726 return dsp
->up
->send(dsp
->up
, skb
);
728 case (PH_CONTROL_IND
):
729 if (dsp_debug
& DEBUG_DSP_DTMFCOEFF
)
730 printk(KERN_DEBUG
"%s: PH_CONTROL INDICATION "
731 "received: %x (len %d) %s\n", __func__
,
732 hh
->id
, skb
->len
, dsp
->name
);
734 case (DTMF_HFC_COEF
): /* getting coefficients */
735 if (!dsp
->dtmf
.hardware
) {
736 if (dsp_debug
& DEBUG_DSP_DTMFCOEFF
)
737 printk(KERN_DEBUG
"%s: ignoring DTMF "
738 "coefficients from HFC\n",
742 digits
= dsp_dtmf_goertzel_decode(dsp
, skb
->data
,
746 struct sk_buff
*nskb
;
747 if (dsp_debug
& DEBUG_DSP_DTMF
)
748 printk(KERN_DEBUG
"%s: digit"
749 "(%c) to layer %s\n",
750 __func__
, *digits
, dsp
->name
);
751 k
= *digits
| DTMF_TONE_VAL
;
752 nskb
= _alloc_mISDN_skb(PH_CONTROL_IND
,
753 MISDN_ID_ANY
, sizeof(int), &k
,
766 case (HFC_VOL_CHANGE_TX
): /* change volume */
767 if (skb
->len
!= sizeof(int)) {
771 spin_lock_irqsave(&dsp_lock
, flags
);
772 dsp
->tx_volume
= *((int *)skb
->data
);
773 if (dsp_debug
& DEBUG_DSP_CORE
)
774 printk(KERN_DEBUG
"%s: change tx volume to "
775 "%d\n", __func__
, dsp
->tx_volume
);
776 dsp_cmx_hardware(dsp
->conf
, dsp
);
777 dsp_dtmf_hardware(dsp
);
779 spin_unlock_irqrestore(&dsp_lock
, flags
);
782 if (dsp_debug
& DEBUG_DSP_CORE
)
783 printk(KERN_DEBUG
"%s: ctrl ind %x unhandled "
784 "%s\n", __func__
, hh
->id
, dsp
->name
);
788 case (PH_ACTIVATE_IND
):
789 case (PH_ACTIVATE_CNF
):
790 if (dsp_debug
& DEBUG_DSP_CORE
)
791 printk(KERN_DEBUG
"%s: b_channel is now active %s\n",
792 __func__
, dsp
->name
);
793 /* bchannel now active */
794 spin_lock_irqsave(&dsp_lock
, flags
);
796 dsp
->data_pending
= 0;
798 /* rx_W and rx_R will be adjusted on first frame */
801 memset(dsp
->rx_buff
, 0, sizeof(dsp
->rx_buff
));
802 dsp_cmx_hardware(dsp
->conf
, dsp
);
803 dsp_dtmf_hardware(dsp
);
805 spin_unlock_irqrestore(&dsp_lock
, flags
);
806 if (dsp_debug
& DEBUG_DSP_CORE
)
807 printk(KERN_DEBUG
"%s: done with activation, sending "
808 "confirm to user space. %s\n", __func__
,
810 /* send activation to upper layer */
811 hh
->prim
= DL_ESTABLISH_CNF
;
813 return dsp
->up
->send(dsp
->up
, skb
);
815 case (PH_DEACTIVATE_IND
):
816 case (PH_DEACTIVATE_CNF
):
817 if (dsp_debug
& DEBUG_DSP_CORE
)
818 printk(KERN_DEBUG
"%s: b_channel is now inactive %s\n",
819 __func__
, dsp
->name
);
820 /* bchannel now inactive */
821 spin_lock_irqsave(&dsp_lock
, flags
);
823 dsp
->data_pending
= 0;
824 dsp_cmx_hardware(dsp
->conf
, dsp
);
826 spin_unlock_irqrestore(&dsp_lock
, flags
);
827 hh
->prim
= DL_RELEASE_CNF
;
829 return dsp
->up
->send(dsp
->up
, skb
);
840 spin_lock_irqsave(&dsp_lock
, flags
);
842 skb_queue_tail(&dsp
->sendq
, skb
);
843 schedule_work(&dsp
->workq
);
845 spin_unlock_irqrestore(&dsp_lock
, flags
);
848 /* send data to tx-buffer (if no tone is played) */
849 if (!dsp
->tone
.tone
) {
850 spin_lock_irqsave(&dsp_lock
, flags
);
851 dsp_cmx_transmit(dsp
, skb
);
852 spin_unlock_irqrestore(&dsp_lock
, flags
);
855 case (PH_CONTROL_REQ
):
856 spin_lock_irqsave(&dsp_lock
, flags
);
857 ret
= dsp_control_req(dsp
, hh
, skb
);
858 spin_unlock_irqrestore(&dsp_lock
, flags
);
860 case (DL_ESTABLISH_REQ
):
861 case (PH_ACTIVATE_REQ
):
862 if (dsp_debug
& DEBUG_DSP_CORE
)
863 printk(KERN_DEBUG
"%s: activating b_channel %s\n",
864 __func__
, dsp
->name
);
865 if (dsp
->dtmf
.hardware
|| dsp
->dtmf
.software
)
866 dsp_dtmf_goertzel_init(dsp
);
868 /* send ph_activate */
869 hh
->prim
= PH_ACTIVATE_REQ
;
871 return ch
->recv(ch
->peer
, skb
);
873 case (DL_RELEASE_REQ
):
874 case (PH_DEACTIVATE_REQ
):
875 if (dsp_debug
& DEBUG_DSP_CORE
)
876 printk(KERN_DEBUG
"%s: releasing b_channel %s\n",
877 __func__
, dsp
->name
);
878 spin_lock_irqsave(&dsp_lock
, flags
);
880 dsp
->tone
.hardware
= 0;
881 dsp
->tone
.software
= 0;
882 if (timer_pending(&dsp
->tone
.tl
))
883 del_timer(&dsp
->tone
.tl
);
885 dsp_cmx_conf(dsp
, 0); /* dsp_cmx_hardware will also be
887 skb_queue_purge(&dsp
->sendq
);
888 spin_unlock_irqrestore(&dsp_lock
, flags
);
889 hh
->prim
= PH_DEACTIVATE_REQ
;
891 return ch
->recv(ch
->peer
, skb
);
894 if (dsp_debug
& DEBUG_DSP_CORE
)
895 printk(KERN_DEBUG
"%s: msg %x unhandled %s\n",
896 __func__
, hh
->prim
, dsp
->name
);
905 dsp_ctrl(struct mISDNchannel
*ch
, u_int cmd
, void *arg
)
907 struct dsp
*dsp
= container_of(ch
, struct dsp
, ch
);
911 if (debug
& DEBUG_DSP_CTRL
)
912 printk(KERN_DEBUG
"%s:(%x)\n", __func__
, cmd
);
919 dsp
->ch
.peer
->ctrl(dsp
->ch
.peer
, CLOSE_CHANNEL
, NULL
);
921 /* wait until workqueue has finished,
922 * must lock here, or we may hit send-process currently
924 spin_lock_irqsave(&dsp_lock
, flags
);
926 spin_unlock_irqrestore(&dsp_lock
, flags
);
927 /* MUST not be locked, because it waits until queue is done. */
928 cancel_work_sync(&dsp
->workq
);
929 spin_lock_irqsave(&dsp_lock
, flags
);
930 if (timer_pending(&dsp
->tone
.tl
))
931 del_timer(&dsp
->tone
.tl
);
932 skb_queue_purge(&dsp
->sendq
);
933 if (dsp_debug
& DEBUG_DSP_CTRL
)
934 printk(KERN_DEBUG
"%s: releasing member %s\n",
935 __func__
, dsp
->name
);
937 dsp_cmx_conf(dsp
, 0); /* dsp_cmx_hardware will also be called
939 dsp_pipeline_destroy(&dsp
->pipeline
);
941 if (dsp_debug
& DEBUG_DSP_CTRL
)
942 printk(KERN_DEBUG
"%s: remove & destroy object %s\n",
943 __func__
, dsp
->name
);
944 list_del(&dsp
->list
);
945 spin_unlock_irqrestore(&dsp_lock
, flags
);
947 if (dsp_debug
& DEBUG_DSP_CTRL
)
948 printk(KERN_DEBUG
"%s: dsp instance released\n",
951 module_put(THIS_MODULE
);
958 dsp_send_bh(struct work_struct
*work
)
960 struct dsp
*dsp
= container_of(work
, struct dsp
, workq
);
962 struct mISDNhead
*hh
;
964 if (dsp
->hdlc
&& dsp
->data_pending
)
965 return; /* wait until data has been acknowledged */
967 /* send queued data */
968 while ((skb
= skb_dequeue(&dsp
->sendq
))) {
969 /* in locked date, we must have still data in queue */
970 if (dsp
->data_pending
) {
971 if (dsp_debug
& DEBUG_DSP_CORE
)
972 printk(KERN_DEBUG
"%s: fifo full %s, this is "
973 "no bug!\n", __func__
, dsp
->name
);
974 /* flush transparent data, if not acked */
978 hh
= mISDN_HEAD_P(skb
);
979 if (hh
->prim
== DL_DATA_REQ
) {
982 if (dsp
->up
->send(dsp
->up
, skb
))
987 /* send packet down */
989 dsp
->data_pending
= 1;
990 if (dsp
->ch
.recv(dsp
->ch
.peer
, skb
)) {
992 dsp
->data_pending
= 0;
1001 dspcreate(struct channel_req
*crq
)
1006 if (crq
->protocol
!= ISDN_P_B_L2DSP
1007 && crq
->protocol
!= ISDN_P_B_L2DSPHDLC
)
1008 return -EPROTONOSUPPORT
;
1009 ndsp
= vmalloc(sizeof(struct dsp
));
1011 printk(KERN_ERR
"%s: vmalloc struct dsp failed\n", __func__
);
1014 memset(ndsp
, 0, sizeof(struct dsp
));
1015 if (dsp_debug
& DEBUG_DSP_CTRL
)
1016 printk(KERN_DEBUG
"%s: creating new dsp instance\n", __func__
);
1018 /* default enabled */
1019 INIT_WORK(&ndsp
->workq
, (void *)dsp_send_bh
);
1020 skb_queue_head_init(&ndsp
->sendq
);
1021 ndsp
->ch
.send
= dsp_function
;
1022 ndsp
->ch
.ctrl
= dsp_ctrl
;
1024 crq
->ch
= &ndsp
->ch
;
1025 if (crq
->protocol
== ISDN_P_B_L2DSP
) {
1026 crq
->protocol
= ISDN_P_B_RAW
;
1029 crq
->protocol
= ISDN_P_B_HDLC
;
1032 if (!try_module_get(THIS_MODULE
))
1033 printk(KERN_WARNING
"%s:cannot get module\n",
1036 sprintf(ndsp
->name
, "DSP_C%x(0x%p)",
1037 ndsp
->up
->st
->dev
->id
+ 1, ndsp
);
1038 /* set frame size to start */
1039 ndsp
->features
.hfc_id
= -1; /* current PCM id */
1040 ndsp
->features
.pcm_id
= -1; /* current PCM id */
1041 ndsp
->pcm_slot_rx
= -1; /* current CPM slot */
1042 ndsp
->pcm_slot_tx
= -1;
1043 ndsp
->pcm_bank_rx
= -1;
1044 ndsp
->pcm_bank_tx
= -1;
1045 ndsp
->hfc_conf
= -1; /* current conference number */
1046 /* set tone timer */
1047 ndsp
->tone
.tl
.function
= (void *)dsp_tone_timeout
;
1048 ndsp
->tone
.tl
.data
= (long) ndsp
;
1049 init_timer(&ndsp
->tone
.tl
);
1051 if (dtmfthreshold
< 20 || dtmfthreshold
> 500)
1052 dtmfthreshold
= 200;
1053 ndsp
->dtmf
.treshold
= dtmfthreshold
*10000;
1055 /* init pipeline append to list */
1056 spin_lock_irqsave(&dsp_lock
, flags
);
1057 dsp_pipeline_init(&ndsp
->pipeline
);
1058 list_add_tail(&ndsp
->list
, &dsp_ilist
);
1059 spin_unlock_irqrestore(&dsp_lock
, flags
);
1065 static struct Bprotocol DSP
= {
1066 .Bprotocols
= (1 << (ISDN_P_B_L2DSP
& ISDN_P_B_MASK
))
1067 | (1 << (ISDN_P_B_L2DSPHDLC
& ISDN_P_B_MASK
)),
1072 static int dsp_init(void)
1077 printk(KERN_INFO
"DSP modul %s\n", mISDN_dsp_revision
);
1079 dsp_options
= options
;
1082 /* set packet size */
1085 if (dsp_poll
> MAX_POLL
) {
1086 printk(KERN_ERR
"%s: Wrong poll value (%d), use %d "
1087 "maximum.\n", __func__
, poll
, MAX_POLL
);
1092 printk(KERN_ERR
"%s: Wrong poll value (%d), use 8 "
1093 "minimum.\n", __func__
, dsp_poll
);
1097 dsp_tics
= poll
* HZ
/ 8000;
1098 if (dsp_tics
* 8000 != poll
* HZ
) {
1099 printk(KERN_INFO
"mISDN_dsp: Cannot clock every %d "
1100 "samples (0,125 ms). It is not a multiple of "
1101 "%d HZ.\n", poll
, HZ
);
1107 while (poll
<= MAX_POLL
) {
1108 tics
= poll
* HZ
/ 8000;
1109 if (tics
* 8000 == poll
* HZ
) {
1118 if (dsp_poll
== 0) {
1119 printk(KERN_INFO
"mISDN_dsp: There is no multiple of kernel "
1120 "clock that equals exactly the duration of 8-256 "
1121 "samples. (Choose kernel clock speed like 100, 250, "
1126 printk(KERN_INFO
"mISDN_dsp: DSP clocks every %d samples. This equals "
1127 "%d jiffies.\n", dsp_poll
, dsp_tics
);
1129 spin_lock_init(&dsp_lock
);
1130 INIT_LIST_HEAD(&dsp_ilist
);
1131 INIT_LIST_HEAD(&conf_ilist
);
1133 /* init conversion tables */
1134 dsp_audio_generate_law_tables();
1135 dsp_silence
= (dsp_options
&DSP_OPT_ULAW
)?0xff:0x2a;
1136 dsp_audio_law_to_s32
= (dsp_options
&DSP_OPT_ULAW
)?dsp_audio_ulaw_to_s32
:
1137 dsp_audio_alaw_to_s32
;
1138 dsp_audio_generate_s2law_table();
1139 dsp_audio_generate_seven();
1140 dsp_audio_generate_mix_table();
1141 if (dsp_options
& DSP_OPT_ULAW
)
1142 dsp_audio_generate_ulaw_samples();
1143 dsp_audio_generate_volume_changes();
1145 err
= dsp_pipeline_module_init();
1147 printk(KERN_ERR
"mISDN_dsp: Can't initialize pipeline, "
1148 "error(%d)\n", err
);
1152 err
= mISDN_register_Bprotocol(&DSP
);
1154 printk(KERN_ERR
"Can't register %s error(%d)\n", DSP
.name
, err
);
1158 /* set sample timer */
1159 dsp_spl_tl
.function
= (void *)dsp_cmx_send
;
1160 dsp_spl_tl
.data
= 0;
1161 init_timer(&dsp_spl_tl
);
1162 dsp_spl_tl
.expires
= jiffies
+ dsp_tics
;
1163 dsp_spl_jiffies
= dsp_spl_tl
.expires
;
1164 add_timer(&dsp_spl_tl
);
1170 static void dsp_cleanup(void)
1172 mISDN_unregister_Bprotocol(&DSP
);
1174 if (timer_pending(&dsp_spl_tl
))
1175 del_timer(&dsp_spl_tl
);
1177 if (!list_empty(&dsp_ilist
)) {
1178 printk(KERN_ERR
"mISDN_dsp: Audio DSP object inst list not "
1181 if (!list_empty(&conf_ilist
)) {
1182 printk(KERN_ERR
"mISDN_dsp: Conference list not empty. Not "
1183 "all memory freed.\n");
1186 dsp_pipeline_module_exit();
1189 module_init(dsp_init
);
1190 module_exit(dsp_cleanup
);