1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 /***************************************************************************
5 * Wed Nov 19 19:07:17 2003
6 * Copyright 2003 mjander
7 * mjander@users.sourceforge.org
8 ****************************************************************************/
13 /* The crosstalk canceler supports 5 stereo input channels. The result is
14 available at one single output route pair (stereo). */
16 #ifndef _AU88X0_CXTALK_H
17 #define _AU88X0_CXTALK_H
25 #define XT_HEADPHONE 1
30 typedef u32 xtalk_dline_t
[XTDLINE_SZ
];
31 typedef u16 xtalk_gains_t
[XTGAINS_SZ
];
32 typedef u16 xtalk_instate_t
[XTINST_SZ
];
33 typedef u16 xtalk_coefs_t
[5][5];
34 typedef u16 xtalk_state_t
[5][4];
36 static void vortex_XtalkHw_SetGains(vortex_t
* vortex
,
37 xtalk_gains_t
const gains
);
38 static void vortex_XtalkHw_SetGainsAllChan(vortex_t
* vortex
);
39 static void vortex_XtalkHw_SetSampleRate(vortex_t
* vortex
, u32 sr
);
40 static void vortex_XtalkHw_ProgramPipe(vortex_t
* vortex
);
41 static void vortex_XtalkHw_ProgramPipe(vortex_t
* vortex
);
42 static void vortex_XtalkHw_ProgramXtalkWide(vortex_t
* vortex
);
43 static void vortex_XtalkHw_ProgramXtalkNarrow(vortex_t
* vortex
);
44 static void vortex_XtalkHw_ProgramDiamondXtalk(vortex_t
* vortex
);
45 static void vortex_XtalkHw_Enable(vortex_t
* vortex
);
46 static void vortex_XtalkHw_Disable(vortex_t
* vortex
);
47 static void vortex_XtalkHw_init(vortex_t
* vortex
);
49 #endif /* _AU88X0_CXTALK_H */