forked from thesofproject/sof
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsrc_hifi4.c
More file actions
556 lines (483 loc) · 15.3 KB
/
src_hifi4.c
File metadata and controls
556 lines (483 loc) · 15.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
// SPDX-License-Identifier: BSD-3-Clause
//
// Copyright(c) 2022 Intel Corporation. All rights reserved.
//
// Author: Krzysztof Frydryk <krzysztofx.frydryk@intel.com>
/* HiFi4 optimized code parts for SRC */
#include "src_config.h"
#if SRC_HIFI4
#include "src.h"
#include <sof/math/numbers.h>
#include <xtensa/config/defs.h>
#include <xtensa/tie/xt_hifi4.h>
#include <stddef.h>
#include <stdint.h>
/* sof/math/numbers.h doesn't define MIN when used with zephyr */
#ifdef __ZEPHYR__
#include <zephyr/sys/util.h>
#endif /* __ZEPHYR__ */
/* HiFi4 has
* 16x 64 bit registers in register file AE_DR
*/
#if SRC_SHORT /* 16 bit coefficients version */
static inline void fir_filter(ae_f32 *rp, const void *cp, ae_f32 *wp0,
const int taps_div_4, const int shift,
const int nch)
{
/* This function uses
* 6x 64 bit registers
* 3x integers
* 5x address pointers,
*/
ae_f64 a0;
ae_f64 a1;
ae_valign u;
ae_f16x4 coef4;
ae_f32x2 d0;
ae_f32x2 d1;
ae_f32x2 data2;
ae_f16x4 *coefp;
ae_f32x2 *dp;
ae_f32 *dp0;
ae_f32 *dp1;
int i;
int j;
ae_f32 *wp = wp0;
const int inc = nch * sizeof(int32_t);
if (nch == 2) {
/* Move data pointer back by one sample to start from right
* channel sample. Discard read value p0.
*/
dp = (ae_f32x2 *)rp;
AE_L32_XC(d0, (ae_f32 *)dp, -sizeof(ae_f32));
/* Reset coefficient pointer and clear accumulator */
coefp = (ae_f16x4 *)cp;
a0 = AE_ZERO64();
a1 = AE_ZERO64();
/* Compute FIR filter for current channel with four
* taps per every loop iteration. Four coefficients
* are loaded simultaneously. Data is read
* from interleaved buffer with stride of channels
* count.
*/
for (i = 0; i < taps_div_4; i++) {
/* Load four coefficients */
AE_LA16X4_IP(coef4, u, coefp);
/* Load two data samples from two channels */
AE_L64_XC(d0, dp, inc); /* r0, l0 */
AE_L64_XC(d1, dp, inc); /* r1, l1 */
/* Select to data2 sequential samples from a channel
* and then accumulate to a0 and a1
* data2_h * coef4_3 + data2_l * coef4_2.
* The data is 32 bits Q1.31 and coefficient 16 bits
* Q1.15. The accumulators are Q17.47.
*/
data2 = AE_SEL32_LL(d0, d1); /* l0, l1 */
AE_MULAAFD32X16_H3_L2(a0, data2, coef4);
data2 = AE_SEL32_HH(d0, d1); /* r0, r1 */
AE_MULAAFD32X16_H3_L2(a1, data2, coef4);
/* Load two data samples from two channels */
AE_L64_XC(d0, dp, inc); /* r2, l2 */
AE_L64_XC(d1, dp, inc); /* r3, l3 */
/* Accumulate
* data2_h * coef4_1 + data2_l * coef4_0.
*/
data2 = AE_SEL32_LL(d0, d1); /* l2, l3 */
AE_MULAAFD32X16_H1_L0(a0, data2, coef4);
data2 = AE_SEL32_HH(d0, d1); /* r2, r3 */
AE_MULAAFD32X16_H1_L0(a1, data2, coef4);
}
/* Scale FIR output with right shifts, round/saturate
* to Q1.31, and store 32 bit output.
*/
AE_S32_L_XP(AE_ROUND32F48SSYM(AE_SRAA64(a0, shift)), wp,
sizeof(int32_t));
AE_S32_L_XP(AE_ROUND32F48SSYM(AE_SRAA64(a1, shift)), wp,
sizeof(int32_t));
return;
}
dp1 = (ae_f32 *)rp;
for (j = 0; j < nch; j++) {
/* Copy pointer and advance to next ch with dummy load */
dp0 = dp1;
AE_L32_XC(d0, dp1, -sizeof(ae_f32));
/* Reset coefficient pointer and clear accumulator */
coefp = (ae_f16x4 *)cp;
a0 = AE_ZERO64();
/* Compute FIR filter for current channel with four
* taps per every loop iteration. Data is read from
* interleaved buffer with stride of channels count.
*/
for (i = 0; i < taps_div_4; i++) {
/* Load four coefficients */
AE_LA16X4_IP(coef4, u, coefp);
/* Load two data samples, place to high and
* low of data2.
*/
AE_L32_XC(d0, dp0, inc);
AE_L32_XC(d1, dp0, inc);
data2 = AE_SEL32_LL(d0, d1);
/* Accumulate
* data2_h * coef4_3 + data2_l* coef4_2.
* The data is 32 bits Q1.31 and coefficient 16 bits
* Q1.15. The accumulator is Q17.47.
*/
AE_MULAAFD32X16_H3_L2(a0, data2, coef4);
/* Repeat with next two samples */
AE_L32_XC(d0, dp0, inc);
AE_L32_XC(d1, dp0, inc);
data2 = AE_SEL32_LL(d0, d1);
/* Accumulate
* data2_h * coef4_1 + data2_l * coef4_0.
*/
AE_MULAAFD32X16_H1_L0(a0, data2, coef4);
}
/* Scale FIR output with right shifts, round/saturate Q17.47
* to Q1.31, and store 32 bit output. Advance write
* pointer to next sample.
*/
AE_S32_L_XP(AE_ROUND32F48SSYM(AE_SRAA64(a0, shift)), wp,
sizeof(int32_t));
}
}
#else /* 32bit coefficients version */
static inline void fir_filter(ae_f32 *rp, const void *cp, ae_f32 *wp0,
const int taps_div_4, const int shift,
const int nch)
{
/* This function uses
* 6x 64 bit registers
* 3x integers
* 5x address pointers,
*/
ae_f64 a0;
ae_f64 a1;
ae_f24x2 data2 = AE_ZERO24();
ae_f24x2 coef2 = AE_ZERO24();
ae_f24x2 d0 = AE_ZERO24();
ae_f24x2 d1 = AE_ZERO24();
ae_f24x2 *coefp;
ae_f24x2 *dp;
ae_f24 *dp1;
ae_f24 *dp0;
int i;
int j;
ae_f32 *wp = wp0;
const int inc = nch * sizeof(int32_t);
if (nch == 2) {
/* Move data pointer back by one sample to start from right
* channel sample. Discard read value p0.
*/
dp = (ae_f24x2 *)rp;
AE_L32F24_XC(d0, (ae_f24 *)dp, -sizeof(ae_f24));
/* Reset coefficient pointer and clear accumulator */
coefp = (ae_f24x2 *)cp;
a0 = AE_ZERO64();
a1 = AE_ZERO64();
/* Compute FIR filter for current channel with four
* taps per every loop iteration. Two coefficients
* are loaded simultaneously. Data is read
* from interleaved buffer with stride of channels
* count.
*/
for (i = 0; i < taps_div_4; i++) {
/* Load two coefficients. Coef2_h contains tap *coefp
* and coef2_l contains the next tap.
*/
/* TODO: Ensure coefficients are 64 bits aligned */
AE_L32X2F24_IP(coef2, coefp, sizeof(ae_f24x2));
/* Load two data samples from two channels */
AE_L32X2F24_XC(d0, dp, inc); /* r0, l0 */
AE_L32X2F24_XC(d1, dp, inc); /* r1, l1 */
/* Select to data2 two successive left channel samples
* from d0 and d1, multiply-add and accumulate to a0.
* Select to data2 two successive right channel samples
* from d0 and d1, multiply-add and accumulate to a1.
* data2_h * coef2_h + data2_l * coef2_l. The Q1.31
* data and Q1.15 coefficients are used as 24 bits as
* Q1.23 values.
*/
data2 = AE_SELP24_LL(d0, d1);
AE_MULAAFP24S_HH_LL(a0, data2, coef2);
data2 = AE_SELP24_HH(d0, d1);
AE_MULAAFP24S_HH_LL(a1, data2, coef2);
/* Repeat for next two taps */
AE_L32X2F24_IP(coef2, coefp, sizeof(ae_f24x2));
AE_L32X2F24_XC(d0, dp, inc); /* r2, l2 */
AE_L32X2F24_XC(d1, dp, inc); /* r3, l3 */
data2 = AE_SELP24_LL(d0, d1);
AE_MULAAFP24S_HH_LL(a0, data2, coef2);
data2 = AE_SELP24_HH(d0, d1);
AE_MULAAFP24S_HH_LL(a1, data2, coef2);
}
/* Scale FIR output with right shifts, round/saturate
* to Q1.31, and store 32 bit output.
*/
AE_S32_L_XP(AE_ROUND32F48SSYM(AE_SRAA64(a0, shift)), wp,
sizeof(int32_t));
AE_S32_L_XP(AE_ROUND32F48SSYM(AE_SRAA64(a1, shift)), wp,
sizeof(int32_t));
return;
}
dp1 = (ae_f24 *)rp;
for (j = 0; j < nch; j++) {
/* Copy pointer and advance to next ch with dummy load */
dp0 = dp1;
AE_L32F24_XC(data2, dp1, -sizeof(ae_f24));
/* Reset coefficient pointer and clear accumulator */
coefp = (ae_f24x2 *)cp;
a0 = AE_ZERO64();
/* Compute FIR filter for current channel with four
* taps per every loop iteration. Data is read from
* interleaved buffer with stride of channels count.
*/
for (i = 0; i < taps_div_4; i++) {
/* Load two coefficients */
coef2 = *coefp++;
/* Load two data samples, place to high and
* low of data2.
*/
AE_L32F24_XC(d0, dp0, inc);
AE_L32F24_XC(d1, dp0, inc);
data2 = AE_SELP24_LL(d0, d1);
/* Accumulate to data2_h * coef2_h +
* data2_l*coef2_l. The Q1.31 bit data is used
* as Q1.23 from MSB side bits of the 32 bit
* word. The accumulator m is Q17.47.
*/
AE_MULAAFD24_HH_LL(a0, data2, coef2);
/* Repeat the same for next two filter taps */
coef2 = *coefp++;
AE_L32F24_XC(d0, dp0, inc);
AE_L32F24_XC(d1, dp0, inc);
data2 = AE_SELP24_LL(d0, d1);
AE_MULAAFD24_HH_LL(a0, data2, coef2);
}
/* Scale FIR output with right shifts, round/saturate Q17.47
* to Q1.31, and store 32 bit output. Advance write
* pointer to next sample.
*/
AE_S32_L_XP(AE_ROUND32F48SSYM(AE_SRAA64(a0, shift)), wp,
sizeof(int32_t));
}
}
#endif /* 32bit coefficients version */
#if CONFIG_FORMAT_S24LE || CONFIG_FORMAT_S32LE
void src_polyphase_stage_cir(struct src_stage_prm *s)
{
/* This function uses
* 1x 64 bit registers
* 16x integers
* 11x address pointers,
*/
ae_int32x2 q = AE_ZERO32();
ae_f32 *rp;
ae_f32 *wp;
int i;
int n;
int m;
int n_wrap_buf;
int n_min;
struct src_state *fir = s->state;
struct src_stage *cfg = s->stage;
int32_t *fir_end = &fir->fir_delay[fir->fir_delay_size];
int32_t *out_delay_end = &fir->out_delay[fir->out_delay_size];
const void *cp; /* Can be int32_t or int16_t */
const size_t out_size = fir->out_delay_size * sizeof(int32_t);
const int nch = s->nch;
const int nch_x_odm = cfg->odm * nch;
const int blk_in_words = nch * cfg->blk_in;
const int blk_out_words = nch * cfg->num_of_subfilters;
const int sz = sizeof(int32_t);
const int n_sz = -sizeof(int32_t);
const int rewind_sz = sz * nch * (cfg->blk_in + (cfg->num_of_subfilters - 1) * cfg->idm);
const int nch_x_idm_sz = -nch * cfg->idm * sizeof(int32_t);
const int taps_div_4 = cfg->subfilter_length >> 2;
int32_t *x_rptr = (int32_t *)s->x_rptr;
int32_t *y_wptr = (int32_t *)s->y_wptr;
int32_t *x_end_addr = (int32_t *)s->x_end_addr;
int32_t *y_end_addr = (int32_t *)s->y_end_addr;
#if SRC_SHORT
const size_t subfilter_size = cfg->subfilter_length * sizeof(int16_t);
#else
const size_t subfilter_size = cfg->subfilter_length * sizeof(int32_t);
#endif
for (n = 0; n < s->times; n++) {
/* Input data to filter */
/* Setup circular buffer for FIR input data delay */
AE_SETCBEGIN0(fir->fir_delay);
AE_SETCEND0(fir_end);
for (m = blk_in_words; m > 0; m -= n_min) {
/* Number of words until circular wrap */
n_wrap_buf = x_end_addr - x_rptr;
n_min = MIN(m, n_wrap_buf);
for (i = 0; i < n_min; i++) {
/* Load 32 bits sample to accumulator,
* advance pointer, shift left with saturate.
*/
AE_L32_XP(q, (ae_int32 *)x_rptr, sz);
q = AE_SLAA32(q, s->shift);
/* Store to circular buffer, advance pointer */
AE_S32_L_XC(q, (ae_int32 *)fir->fir_wp, n_sz);
}
/* Check for wrap */
src_inc_wrap(&x_rptr, x_end_addr, s->x_size);
}
/* Do filter */
cp = cfg->coefs; /* Reset to 1st coefficient */
rp = (ae_f32 *)fir->fir_wp;
/* Do circular modification to pointer rp by amount of
* rewind to data start. Loaded value q is discarded.
*/
AE_L32_XC(q, rp, rewind_sz);
/* Reset FIR write pointer and compute all polyphase
* sub-filters.
*/
wp = (ae_f32 *)fir->out_rp;
for (i = 0; i < cfg->num_of_subfilters; i++) {
fir_filter(rp, cp, wp, taps_div_4, cfg->shift, nch);
wp += nch_x_odm;
cp = (uint8_t *)cp + subfilter_size;
src_inc_wrap((int32_t **)&wp, out_delay_end, out_size);
/* Circular advance pointer rp by number of
* channels x input delay multiplier. Loaded value q
* is discarded.
*/
AE_L32_XC(q, rp, nch_x_idm_sz);
}
/* Output */
/* Setup circular buffer for SRC out delay access */
AE_SETCBEGIN0(fir->out_delay);
AE_SETCEND0(out_delay_end);
for (m = blk_out_words; m > 0; m -= n_min) {
n_wrap_buf = y_end_addr - y_wptr;
n_min = MIN(m, n_wrap_buf);
for (i = 0; i < n_min; i++) {
/* Circular load, shift right, linear store,
* and advance read and write pointers.
*/
AE_L32_XC(q, (ae_int32 *)fir->out_rp, sz);
q = AE_SRAA32(q, s->shift);
AE_S32_L_XP(q, (ae_int32 *)y_wptr, sz);
}
/* Check wrap */
src_inc_wrap(&y_wptr, y_end_addr, s->y_size);
}
}
s->x_rptr = x_rptr;
s->y_wptr = y_wptr;
}
#endif /* CONFIG_FORMAT_S24LE || CONFIG_FORMAT_S32LE */
#if CONFIG_FORMAT_S16LE
void src_polyphase_stage_cir_s16(struct src_stage_prm *s)
{
/* This function uses
* 2x 64 bit registers
* 16x integers
* 11x address pointers,
*/
ae_int32x2 q = AE_ZERO32();
ae_int16x4 d = AE_ZERO16();
ae_f32 *rp;
ae_f32 *wp;
int i;
int n;
int m;
int n_wrap_buf;
int n_min;
struct src_state *fir = s->state;
struct src_stage *cfg = s->stage;
int32_t *fir_end = &fir->fir_delay[fir->fir_delay_size];
int32_t *out_delay_end = &fir->out_delay[fir->out_delay_size];
const void *cp; /* Can be int32_t or int16_t */
const size_t out_size = fir->out_delay_size * sizeof(int32_t);
const int nch = s->nch;
const int nch_x_odm = cfg->odm * nch;
const int blk_in_words = nch * cfg->blk_in;
const int blk_out_words = nch * cfg->num_of_subfilters;
const int sz = sizeof(int32_t);
const int n_sz = -sizeof(int32_t);
const int rewind_sz = sz * nch * (cfg->blk_in + (cfg->num_of_subfilters - 1) * cfg->idm);
const int nch_x_idm_sz = -nch * cfg->idm * sizeof(int32_t);
const int taps_div_4 = cfg->subfilter_length >> 2;
int16_t *x_rptr = (int16_t *)s->x_rptr;
int16_t *y_wptr = (int16_t *)s->y_wptr;
int16_t *x_end_addr = (int16_t *)s->x_end_addr;
int16_t *y_end_addr = (int16_t *)s->y_end_addr;
#if SRC_SHORT
const size_t subfilter_size = cfg->subfilter_length * sizeof(int16_t);
#else
const size_t subfilter_size = cfg->subfilter_length * sizeof(int32_t);
#endif
for (n = 0; n < s->times; n++) {
/* Input data */
/* Setup circular buffer for FIR input data delay */
AE_SETCBEGIN0(fir->fir_delay);
AE_SETCEND0(fir_end);
for (m = blk_in_words; m > 0; m -= n_min) {
/* Number of words without circular wrap */
n_wrap_buf = x_end_addr - x_rptr;
n_min = (m < n_wrap_buf) ? m : n_wrap_buf;
for (i = 0; i < n_min; i++) {
/* Load a 16 bits sample into d and left shift
* by 16 into q, advance read and write
* pointers.
*/
AE_L16_XP(d, (ae_int16 *)x_rptr,
sizeof(ae_int16));
q = AE_CVT32X2F16_32(d);
AE_S32_L_XC(q, (ae_int32 *)fir->fir_wp, n_sz);
}
/* Check for wrap */
src_inc_wrap_s16(&x_rptr, x_end_addr, s->x_size);
}
/* Do filter */
cp = cfg->coefs; /* Reset to 1st coefficient */
rp = (ae_f32 *)fir->fir_wp;
/* Do circular modification to pointer rp by amount of
* rewind to data start. Loaded value q is discarded.
*/
AE_L32_XC(q, rp, rewind_sz);
/* Reset FIR output write pointer and compute all polyphase
* sub-filters.
*/
wp = (ae_f32 *)fir->out_rp;
for (i = 0; i < cfg->num_of_subfilters; i++) {
fir_filter(rp, cp, wp, taps_div_4, cfg->shift, nch);
wp += nch_x_odm;
cp = (uint8_t *)cp + subfilter_size;
src_inc_wrap((int32_t **)&wp, out_delay_end, out_size);
/* Circular advance pointer rp by number of
* channels x input delay multiplier. Loaded value q
* is discarded.
*/
AE_L32_XC(q, rp, nch_x_idm_sz);
}
/* Output */
/* Setup circular buffer for SRC out delay access */
AE_SETCBEGIN0(fir->out_delay);
AE_SETCEND0(out_delay_end);
for (m = blk_out_words; m > 0; m -= n_min) {
n_wrap_buf = y_end_addr - y_wptr;
n_min = (m < n_wrap_buf) ? m : n_wrap_buf;
for (i = 0; i < n_min; i++) {
/* Circular load for 32 bit sample,
* advance read pointer.
*/
AE_L32_XC(q, (ae_int32 *)fir->out_rp, sz);
/* Store Q1.31 value as Q1.15 and
* advance write pointer.
*/
d = AE_ROUND16X4F32SSYM(q, q);
AE_S16_0_XP(d, (ae_int16 *)y_wptr,
sizeof(ae_int16));
}
/* Check wrap */
src_inc_wrap_s16(&y_wptr, y_end_addr, s->y_size);
}
}
s->x_rptr = x_rptr;
s->y_wptr = y_wptr;
}
#endif /* CONFIG_FORMAT_S16LE */
#endif