Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
cs46xx_dsp_spos.h
Go to the documentation of this file.
1 /*
2  * The driver for the Cirrus Logic's Sound Fusion CS46XX based soundcards
3  * Copyright (c) by Jaroslav Kysela <[email protected]>
4  *
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19  *
20  */
21 
22 #ifndef __CS46XX_DSP_SPOS_H__
23 #define __CS46XX_DSP_SPOS_H__
24 
25 #include "cs46xx_dsp_scb_types.h"
26 #include "cs46xx_dsp_task_types.h"
27 
28 #define SYMBOL_CONSTANT 0x0
29 #define SYMBOL_SAMPLE 0x1
30 #define SYMBOL_PARAMETER 0x2
31 #define SYMBOL_CODE 0x3
32 
33 #define SEGTYPE_SP_PROGRAM 0x00000001
34 #define SEGTYPE_SP_PARAMETER 0x00000002
35 #define SEGTYPE_SP_SAMPLE 0x00000003
36 #define SEGTYPE_SP_COEFFICIENT 0x00000004
37 
38 #define DSP_SPOS_UU 0x0deadul /* unused */
39 #define DSP_SPOS_DC 0x0badul /* don't care */
40 #define DSP_SPOS_DC_DC 0x0bad0badul /* don't care */
41 #define DSP_SPOS_UUUU 0xdeadc0edul /* unused */
42 #define DSP_SPOS_UUHI 0xdeadul
43 #define DSP_SPOS_UULO 0xc0edul
44 #define DSP_SPOS_DCDC 0x0badf1d0ul /* don't care */
45 #define DSP_SPOS_DCDCHI 0x0badul
46 #define DSP_SPOS_DCDCLO 0xf1d0ul
47 
48 #define DSP_MAX_TASK_NAME 60
49 #define DSP_MAX_SYMBOL_NAME 100
50 #define DSP_MAX_SCB_NAME 60
51 #define DSP_MAX_SCB_DESC 200
52 #define DSP_MAX_TASK_DESC 50
53 
54 #define DSP_MAX_PCM_CHANNELS 32
55 #define DSP_MAX_SRC_NR 14
56 
57 #define DSP_PCM_MAIN_CHANNEL 1
58 #define DSP_PCM_REAR_CHANNEL 2
59 #define DSP_PCM_CENTER_LFE_CHANNEL 3
60 #define DSP_PCM_S71_CHANNEL 4 /* surround 7.1 */
61 #define DSP_IEC958_CHANNEL 5
62 
63 #define DSP_SPDIF_STATUS_OUTPUT_ENABLED 1
64 #define DSP_SPDIF_STATUS_PLAYBACK_OPEN 2
65 #define DSP_SPDIF_STATUS_HW_ENABLED 4
66 #define DSP_SPDIF_STATUS_INPUT_CTRL_ENABLED 8
67 
72 
73  /* initialized by driver */
75  int deleted;
76 };
77 
79  int nsymbols;
80 
82 
83  /* initialized by driver */
85 };
86 
91  u32 * data;
92 };
93 
95  char * module_name;
97  int nsegments;
99 
100  /* initialized by driver */
103  int nfixups;
104 };
105 
109  int index;
111 
115 
118 
121 
123  unsigned int deleted :1;
124  unsigned int updated :1;
125  unsigned int volume_set :1;
126 };
127 
130  int size;
132  int index;
134 };
135 
137  int active;
138  int src_slot;
139  int pcm_slot;
145 
146  void * private_data;
147 };
148 
150  struct dsp_symbol_desc symbol_table; /* currently available loaded symbols in SP */
151 
152  int nmodules;
153  struct dsp_module_desc * modules; /* modules loaded into SP */
154 
156 
157  /* Main PCM playback mixer */
161 
162  /* Rear/surround PCM playback mixer */
164 
165  /* Center/LFE mixer */
167 
169  int nsrc_scb;
172 
173  /* cache this symbols */
174  struct dsp_symbol_entry * null_algorithm; /* used by PCMreaderSCB's */
175  struct dsp_symbol_entry * s16_up; /* used by SRCtaskSCB's */
176 
177  /* proc fs */
184 
185  /* SCB's descriptors */
186  int nscb;
191 
192  /* Task's descriptors */
193  int ntask;
196 
197  /* SPDIF status */
202  /* spdif channel status,
203  left right and user validity bits */
204  unsigned int spdif_csuv_default;
205  unsigned int spdif_csuv_stream;
206 
207  /* SPDIF input sample rate converter */
209  /* SPDIF input asynch. receiver */
211 
212  /* Capture record mixer SCB */
214 
215  /* CODEC input SCB */
217 
218  /* reference snooper */
220 
221  /* SPDIF output PCM reference */
223 
224  /* asynch TX task */
226 
227  /* record sources */
230 
232 };
233 
234 #endif /* __DSP_SPOS_H__ */