mISDN: Use kernel_{send,recv}msg instead of open coding
[safe/jmp/linux-2.6] / drivers / isdn / mISDN / dsp.h
1 /*
2  * Audio support data for ISDN4Linux.
3  *
4  * Copyright 2002/2003 by Andreas Eversberg (jolly@eversberg.eu)
5  *
6  * This software may be used and distributed according to the terms
7  * of the GNU General Public License, incorporated herein by reference.
8  *
9  */
10
11 #define DEBUG_DSP_CTRL          0x0001
12 #define DEBUG_DSP_CORE          0x0002
13 #define DEBUG_DSP_DTMF          0x0004
14 #define DEBUG_DSP_CMX           0x0010
15 #define DEBUG_DSP_TONE          0x0020
16 #define DEBUG_DSP_BLOWFISH      0x0040
17 #define DEBUG_DSP_DELAY         0x0100
18 #define DEBUG_DSP_CLOCK         0x0200
19 #define DEBUG_DSP_DTMFCOEFF     0x8000 /* heavy output */
20
21 /* options may be:
22  *
23  * bit 0 = use ulaw instead of alaw
24  * bit 1 = enable hfc hardware accelleration for all channels
25  *
26  */
27 #define DSP_OPT_ULAW            (1<<0)
28 #define DSP_OPT_NOHARDWARE      (1<<1)
29
30 #include <linux/timer.h>
31 #include <linux/workqueue.h>
32
33 #include "dsp_ecdis.h"
34
35 extern int dsp_options;
36 extern int dsp_debug;
37 extern int dsp_poll;
38 extern int dsp_tics;
39 extern spinlock_t dsp_lock;
40 extern struct work_struct dsp_workq;
41 extern u32 dsp_poll_diff; /* calculated fix-comma corrected poll value */
42
43 /***************
44  * audio stuff *
45  ***************/
46
47 extern s32 dsp_audio_alaw_to_s32[256];
48 extern s32 dsp_audio_ulaw_to_s32[256];
49 extern s32 *dsp_audio_law_to_s32;
50 extern u8 dsp_audio_s16_to_law[65536];
51 extern u8 dsp_audio_alaw_to_ulaw[256];
52 extern u8 dsp_audio_mix_law[65536];
53 extern u8 dsp_audio_seven2law[128];
54 extern u8 dsp_audio_law2seven[256];
55 extern void dsp_audio_generate_law_tables(void);
56 extern void dsp_audio_generate_s2law_table(void);
57 extern void dsp_audio_generate_seven(void);
58 extern void dsp_audio_generate_mix_table(void);
59 extern void dsp_audio_generate_ulaw_samples(void);
60 extern void dsp_audio_generate_volume_changes(void);
61 extern u8 dsp_silence;
62
63
64 /*************
65  * cmx stuff *
66  *************/
67
68 #define MAX_POLL        256     /* maximum number of send-chunks */
69
70 #define CMX_BUFF_SIZE   0x8000  /* must be 2**n (0x1000 about 1/2 second) */
71 #define CMX_BUFF_HALF   0x4000  /* CMX_BUFF_SIZE / 2 */
72 #define CMX_BUFF_MASK   0x7fff  /* CMX_BUFF_SIZE - 1 */
73
74 /* how many seconds will we check the lowest delay until the jitter buffer
75    is reduced by that delay */
76 #define MAX_SECONDS_JITTER_CHECK 5
77
78 extern struct timer_list dsp_spl_tl;
79 extern u32 dsp_spl_jiffies;
80
81 /* the structure of conferences:
82  *
83  * each conference has a unique number, given by user space.
84  * the conferences are linked in a chain.
85  * each conference has members linked in a chain.
86  * each dsplayer points to a member, each member points to a dsplayer.
87  */
88
89 /* all members within a conference (this is linked 1:1 with the dsp) */
90 struct dsp;
91 struct dsp_conf_member {
92         struct list_head        list;
93         struct dsp              *dsp;
94 };
95
96 /* the list of all conferences */
97 struct dsp_conf {
98         struct list_head        list;
99         u32                     id;
100                                 /* all cmx stacks with the same ID are
101                                  connected */
102         struct list_head        mlist;
103         int                     software; /* conf is processed by software */
104         int                     hardware; /* conf is processed by hardware */
105                                 /* note: if both unset, has only one member */
106 };
107
108
109 /**************
110  * DTMF stuff *
111  **************/
112
113 #define DSP_DTMF_NPOINTS 102
114
115 #define ECHOCAN_BUFF_SIZE 0x400 /* must be 2**n */
116 #define ECHOCAN_BUFF_MASK 0x3ff /* -1 */
117
118 struct dsp_dtmf {
119         int             treshold; /* above this is dtmf (square of) */
120         int             software; /* dtmf uses software decoding */
121         int             hardware; /* dtmf uses hardware decoding */
122         int             size; /* number of bytes in buffer */
123         signed short    buffer[DSP_DTMF_NPOINTS];
124                 /* buffers one full dtmf frame */
125         u8              lastwhat, lastdigit;
126         int             count;
127         u8              digits[16]; /* dtmf result */
128 };
129
130
131 /******************
132  * pipeline stuff *
133  ******************/
134 struct dsp_pipeline {
135         rwlock_t  lock;
136         struct list_head list;
137         int inuse;
138 };
139
140 /***************
141  * tones stuff *
142  ***************/
143
144 struct dsp_tone {
145         int             software; /* tones are generated by software */
146         int             hardware; /* tones are generated by hardware */
147         int             tone;
148         void            *pattern;
149         int             count;
150         int             index;
151         struct timer_list tl;
152 };
153
154 /***************
155  * echo stuff *
156  ***************/
157
158 struct dsp_echo {
159         int             software; /* echo is generated by software */
160         int             hardware; /* echo is generated by hardware */
161 };
162
163 /*****************
164  * general stuff *
165  *****************/
166
167 struct dsp {
168         struct list_head list;
169         struct mISDNchannel     ch;
170         struct mISDNchannel     *up;
171         unsigned char   name[64];
172         int             b_active;
173         struct dsp_echo echo;
174         int             rx_disabled; /* what the user wants */
175         int             rx_is_off; /* what the card is */
176         int             tx_mix;
177         struct dsp_tone tone;
178         struct dsp_dtmf dtmf;
179         int             tx_volume, rx_volume;
180
181         /* queue for sending frames */
182         struct work_struct      workq;
183         struct sk_buff_head     sendq;
184         int             hdlc;   /* if mode is hdlc */
185         int             data_pending;   /* currently an unconfirmed frame */
186
187         /* conference stuff */
188         u32             conf_id;
189         struct dsp_conf *conf;
190         struct dsp_conf_member
191                         *member;
192
193         /* buffer stuff */
194         int             rx_W; /* current write pos for data without timestamp */
195         int             rx_R; /* current read pos for transmit clock */
196         int             rx_init; /* if set, pointers will be adjusted first */
197         int             tx_W; /* current write pos for transmit data */
198         int             tx_R; /* current read pos for transmit clock */
199         int             rx_delay[MAX_SECONDS_JITTER_CHECK];
200         int             tx_delay[MAX_SECONDS_JITTER_CHECK];
201         u8              tx_buff[CMX_BUFF_SIZE];
202         u8              rx_buff[CMX_BUFF_SIZE];
203         int             last_tx; /* if set, we transmitted last poll interval */
204         int             cmx_delay; /* initial delay of buffers,
205                                 or 0 for dynamic jitter buffer */
206         int             tx_dejitter; /* if set, dejitter tx buffer */
207         int             tx_data; /* enables tx-data of CMX to upper layer */
208
209         /* hardware stuff */
210         struct dsp_features features;
211         int             features_rx_off; /* set if rx_off is featured */
212         int             features_fill_empty; /* set if fill_empty is featured */
213         int             pcm_slot_rx; /* current PCM slot (or -1) */
214         int             pcm_bank_rx;
215         int             pcm_slot_tx;
216         int             pcm_bank_tx;
217         int             hfc_conf; /* unique id of current conference (or -1) */
218
219         /* encryption stuff */
220         int             bf_enable;
221         u32             bf_p[18];
222         u32             bf_s[1024];
223         int             bf_crypt_pos;
224         u8              bf_data_in[9];
225         u8              bf_crypt_out[9];
226         int             bf_decrypt_in_pos;
227         int             bf_decrypt_out_pos;
228         u8              bf_crypt_inring[16];
229         u8              bf_data_out[9];
230         int             bf_sync;
231
232         struct dsp_pipeline
233                         pipeline;
234 };
235
236 /* functions */
237
238 extern void dsp_change_volume(struct sk_buff *skb, int volume);
239
240 extern struct list_head dsp_ilist;
241 extern struct list_head conf_ilist;
242 extern void dsp_cmx_debug(struct dsp *dsp);
243 extern void dsp_cmx_hardware(struct dsp_conf *conf, struct dsp *dsp);
244 extern int dsp_cmx_conf(struct dsp *dsp, u32 conf_id);
245 extern void dsp_cmx_receive(struct dsp *dsp, struct sk_buff *skb);
246 extern void dsp_cmx_hdlc(struct dsp *dsp, struct sk_buff *skb);
247 extern void dsp_cmx_send(void *arg);
248 extern void dsp_cmx_transmit(struct dsp *dsp, struct sk_buff *skb);
249 extern int dsp_cmx_del_conf_member(struct dsp *dsp);
250 extern int dsp_cmx_del_conf(struct dsp_conf *conf);
251
252 extern void dsp_dtmf_goertzel_init(struct dsp *dsp);
253 extern void dsp_dtmf_hardware(struct dsp *dsp);
254 extern u8 *dsp_dtmf_goertzel_decode(struct dsp *dsp, u8 *data, int len,
255                 int fmt);
256
257 extern int dsp_tone(struct dsp *dsp, int tone);
258 extern void dsp_tone_copy(struct dsp *dsp, u8 *data, int len);
259 extern void dsp_tone_timeout(void *arg);
260
261 extern void dsp_bf_encrypt(struct dsp *dsp, u8 *data, int len);
262 extern void dsp_bf_decrypt(struct dsp *dsp, u8 *data, int len);
263 extern int dsp_bf_init(struct dsp *dsp, const u8 *key, unsigned int keylen);
264 extern void dsp_bf_cleanup(struct dsp *dsp);
265
266 extern int  dsp_pipeline_module_init(void);
267 extern void dsp_pipeline_module_exit(void);
268 extern int  dsp_pipeline_init(struct dsp_pipeline *pipeline);
269 extern void dsp_pipeline_destroy(struct dsp_pipeline *pipeline);
270 extern int  dsp_pipeline_build(struct dsp_pipeline *pipeline, const char *cfg);
271 extern void dsp_pipeline_process_tx(struct dsp_pipeline *pipeline, u8 *data,
272                 int len);
273 extern void dsp_pipeline_process_rx(struct dsp_pipeline *pipeline, u8 *data,
274                 int len, unsigned int txlen);
275