blob: 7b9fabf1fea5743b165e76216d15b5735c655bb1 [file] [log] [blame]
David Rowe10602db2008-10-06 21:41:46 -07001/*
2 * SpanDSP - a series of DSP components for telephony
3 *
4 * fir.h - General telephony FIR routines
5 *
6 * Written by Steve Underwood <steveu@coppice.org>
7 *
8 * Copyright (C) 2002 Steve Underwood
9 *
10 * All rights reserved.
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License version 2, as
14 * published by the Free Software Foundation.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
David Rowe10602db2008-10-06 21:41:46 -070024 */
25
David Rowe10602db2008-10-06 21:41:46 -070026#if !defined(_FIR_H_)
27#define _FIR_H_
28
29/*
30 Blackfin NOTES & IDEAS:
31
32 A simple dot product function is used to implement the filter. This performs
33 just one MAC/cycle which is inefficient but was easy to implement as a first
34 pass. The current Blackfin code also uses an unrolled form of the filter
35 history to avoid 0 length hardware loop issues. This is wasteful of
36 memory.
37
38 Ideas for improvement:
39
40 1/ Rewrite filter for dual MAC inner loop. The issue here is handling
41 history sample offsets that are 16 bit aligned - the dual MAC needs
42 32 bit aligmnent. There are some good examples in libbfdsp.
43
44 2/ Use the hardware circular buffer facility tohalve memory usage.
45
46 3/ Consider using internal memory.
47
48 Using less memory might also improve speed as cache misses will be
49 reduced. A drop in MIPs and memory approaching 50% should be
50 possible.
51
52 The foreground and background filters currenlty use a total of
53 about 10 MIPs/ch as measured with speedtest.c on a 256 TAP echo
54 can.
55*/
56
Greg Kroah-Hartman56791f02009-08-25 22:07:56 -070057/*
58 * 16 bit integer FIR descriptor. This defines the working state for a single
59 * instance of an FIR filter using 16 bit integer coefficients.
60 */
J.R. Mauroc82895b2008-10-30 19:26:59 -040061struct fir16_state_t {
David Rowe10602db2008-10-06 21:41:46 -070062 int taps;
63 int curr_pos;
64 const int16_t *coeffs;
65 int16_t *history;
J.R. Mauroc82895b2008-10-30 19:26:59 -040066};
David Rowe10602db2008-10-06 21:41:46 -070067
Greg Kroah-Hartman56791f02009-08-25 22:07:56 -070068/*
69 * 32 bit integer FIR descriptor. This defines the working state for a single
70 * instance of an FIR filter using 32 bit integer coefficients, and filtering
71 * 16 bit integer data.
72 */
J.R. Mauroc82895b2008-10-30 19:26:59 -040073struct fir32_state_t {
David Rowe10602db2008-10-06 21:41:46 -070074 int taps;
75 int curr_pos;
76 const int32_t *coeffs;
77 int16_t *history;
J.R. Mauroc82895b2008-10-30 19:26:59 -040078};
David Rowe10602db2008-10-06 21:41:46 -070079
Greg Kroah-Hartman56791f02009-08-25 22:07:56 -070080/*
81 * Floating point FIR descriptor. This defines the working state for a single
82 * instance of an FIR filter using floating point coefficients and data.
83 */
J.R. Mauroc82895b2008-10-30 19:26:59 -040084struct fir_float_state_t {
David Rowe10602db2008-10-06 21:41:46 -070085 int taps;
86 int curr_pos;
87 const float *coeffs;
88 float *history;
J.R. Mauroc82895b2008-10-30 19:26:59 -040089};
David Rowe10602db2008-10-06 21:41:46 -070090
Alexander Beregalovdc57a3e2009-03-12 03:32:45 +030091static inline const int16_t *fir16_create(struct fir16_state_t *fir,
92 const int16_t *coeffs, int taps)
David Rowe10602db2008-10-06 21:41:46 -070093{
94 fir->taps = taps;
95 fir->curr_pos = taps - 1;
96 fir->coeffs = coeffs;
Greg Kroah-Hartmanc8b39532009-08-25 22:07:13 -070097#if defined(__bfin__)
J.R. Mauro4460a862008-10-20 19:01:31 -040098 fir->history = kcalloc(2 * taps, sizeof(int16_t), GFP_KERNEL);
David Rowe10602db2008-10-06 21:41:46 -070099#else
Pekka Enbergdb2af142008-10-17 20:55:03 +0300100 fir->history = kcalloc(taps, sizeof(int16_t), GFP_KERNEL);
David Rowe10602db2008-10-06 21:41:46 -0700101#endif
102 return fir->history;
103}
David Rowe10602db2008-10-06 21:41:46 -0700104
Alexander Beregalovdc57a3e2009-03-12 03:32:45 +0300105static inline void fir16_flush(struct fir16_state_t *fir)
David Rowe10602db2008-10-06 21:41:46 -0700106{
Greg Kroah-Hartmanc8b39532009-08-25 22:07:13 -0700107#if defined(__bfin__)
J.R. Mauro4460a862008-10-20 19:01:31 -0400108 memset(fir->history, 0, 2 * fir->taps * sizeof(int16_t));
David Rowe10602db2008-10-06 21:41:46 -0700109#else
J.R. Mauro4460a862008-10-20 19:01:31 -0400110 memset(fir->history, 0, fir->taps * sizeof(int16_t));
David Rowe10602db2008-10-06 21:41:46 -0700111#endif
112}
David Rowe10602db2008-10-06 21:41:46 -0700113
Alexander Beregalovdc57a3e2009-03-12 03:32:45 +0300114static inline void fir16_free(struct fir16_state_t *fir)
David Rowe10602db2008-10-06 21:41:46 -0700115{
Pekka Enbergdb2af142008-10-17 20:55:03 +0300116 kfree(fir->history);
David Rowe10602db2008-10-06 21:41:46 -0700117}
David Rowe10602db2008-10-06 21:41:46 -0700118
Tzafrir Cohenf55ccbf2008-10-12 08:13:21 +0200119#ifdef __bfin__
David Rowe10602db2008-10-06 21:41:46 -0700120static inline int32_t dot_asm(short *x, short *y, int len)
121{
J.R. Mauro4460a862008-10-20 19:01:31 -0400122 int dot;
David Rowe10602db2008-10-06 21:41:46 -0700123
J.R. Mauro4460a862008-10-20 19:01:31 -0400124 len--;
David Rowe10602db2008-10-06 21:41:46 -0700125
J.R. Mauro4460a862008-10-20 19:01:31 -0400126 __asm__("I0 = %1;\n\t"
127 "I1 = %2;\n\t"
128 "A0 = 0;\n\t"
129 "R0.L = W[I0++] || R1.L = W[I1++];\n\t"
130 "LOOP dot%= LC0 = %3;\n\t"
131 "LOOP_BEGIN dot%=;\n\t"
132 "A0 += R0.L * R1.L (IS) || R0.L = W[I0++] || R1.L = W[I1++];\n\t"
133 "LOOP_END dot%=;\n\t"
134 "A0 += R0.L*R1.L (IS);\n\t"
135 "R0 = A0;\n\t"
136 "%0 = R0;\n\t"
Alexander Beregalovdc57a3e2009-03-12 03:32:45 +0300137 : "=&d"(dot)
138 : "a"(x), "a"(y), "a"(len)
139 : "I0", "I1", "A1", "A0", "R0", "R1"
J.R. Mauro4460a862008-10-20 19:01:31 -0400140 );
David Rowe10602db2008-10-06 21:41:46 -0700141
J.R. Mauro4460a862008-10-20 19:01:31 -0400142 return dot;
David Rowe10602db2008-10-06 21:41:46 -0700143}
144#endif
David Rowe10602db2008-10-06 21:41:46 -0700145
Alexander Beregalovdc57a3e2009-03-12 03:32:45 +0300146static inline int16_t fir16(struct fir16_state_t *fir, int16_t sample)
David Rowe10602db2008-10-06 21:41:46 -0700147{
J.R. Mauro4460a862008-10-20 19:01:31 -0400148 int32_t y;
Greg Kroah-Hartmanc8b39532009-08-25 22:07:13 -0700149#if defined(__bfin__)
J.R. Mauro4460a862008-10-20 19:01:31 -0400150 fir->history[fir->curr_pos] = sample;
151 fir->history[fir->curr_pos + fir->taps] = sample;
152 y = dot_asm((int16_t *) fir->coeffs, &fir->history[fir->curr_pos],
153 fir->taps);
David Rowe10602db2008-10-06 21:41:46 -0700154#else
J.R. Mauro4460a862008-10-20 19:01:31 -0400155 int i;
156 int offset1;
157 int offset2;
David Rowe10602db2008-10-06 21:41:46 -0700158
J.R. Mauro4460a862008-10-20 19:01:31 -0400159 fir->history[fir->curr_pos] = sample;
David Rowe10602db2008-10-06 21:41:46 -0700160
J.R. Mauro4460a862008-10-20 19:01:31 -0400161 offset2 = fir->curr_pos;
162 offset1 = fir->taps - offset2;
163 y = 0;
164 for (i = fir->taps - 1; i >= offset1; i--)
165 y += fir->coeffs[i] * fir->history[i - offset1];
166 for (; i >= 0; i--)
167 y += fir->coeffs[i] * fir->history[i + offset2];
David Rowe10602db2008-10-06 21:41:46 -0700168#endif
J.R. Mauro4460a862008-10-20 19:01:31 -0400169 if (fir->curr_pos <= 0)
170 fir->curr_pos = fir->taps;
171 fir->curr_pos--;
172 return (int16_t) (y >> 15);
David Rowe10602db2008-10-06 21:41:46 -0700173}
David Rowe10602db2008-10-06 21:41:46 -0700174
Alexander Beregalovdc57a3e2009-03-12 03:32:45 +0300175static inline const int16_t *fir32_create(struct fir32_state_t *fir,
176 const int32_t *coeffs, int taps)
David Rowe10602db2008-10-06 21:41:46 -0700177{
J.R. Mauro4460a862008-10-20 19:01:31 -0400178 fir->taps = taps;
179 fir->curr_pos = taps - 1;
180 fir->coeffs = coeffs;
181 fir->history = kcalloc(taps, sizeof(int16_t), GFP_KERNEL);
182 return fir->history;
David Rowe10602db2008-10-06 21:41:46 -0700183}
David Rowe10602db2008-10-06 21:41:46 -0700184
Alexander Beregalovdc57a3e2009-03-12 03:32:45 +0300185static inline void fir32_flush(struct fir32_state_t *fir)
David Rowe10602db2008-10-06 21:41:46 -0700186{
J.R. Mauro4460a862008-10-20 19:01:31 -0400187 memset(fir->history, 0, fir->taps * sizeof(int16_t));
David Rowe10602db2008-10-06 21:41:46 -0700188}
David Rowe10602db2008-10-06 21:41:46 -0700189
Alexander Beregalovdc57a3e2009-03-12 03:32:45 +0300190static inline void fir32_free(struct fir32_state_t *fir)
David Rowe10602db2008-10-06 21:41:46 -0700191{
J.R. Mauro4460a862008-10-20 19:01:31 -0400192 kfree(fir->history);
David Rowe10602db2008-10-06 21:41:46 -0700193}
David Rowe10602db2008-10-06 21:41:46 -0700194
Alexander Beregalovdc57a3e2009-03-12 03:32:45 +0300195static inline int16_t fir32(struct fir32_state_t *fir, int16_t sample)
David Rowe10602db2008-10-06 21:41:46 -0700196{
J.R. Mauro4460a862008-10-20 19:01:31 -0400197 int i;
198 int32_t y;
199 int offset1;
200 int offset2;
David Rowe10602db2008-10-06 21:41:46 -0700201
J.R. Mauro4460a862008-10-20 19:01:31 -0400202 fir->history[fir->curr_pos] = sample;
203 offset2 = fir->curr_pos;
204 offset1 = fir->taps - offset2;
205 y = 0;
206 for (i = fir->taps - 1; i >= offset1; i--)
207 y += fir->coeffs[i] * fir->history[i - offset1];
208 for (; i >= 0; i--)
209 y += fir->coeffs[i] * fir->history[i + offset2];
210 if (fir->curr_pos <= 0)
211 fir->curr_pos = fir->taps;
212 fir->curr_pos--;
213 return (int16_t) (y >> 15);
David Rowe10602db2008-10-06 21:41:46 -0700214}
David Rowe10602db2008-10-06 21:41:46 -0700215
David Rowe10602db2008-10-06 21:41:46 -0700216#endif