2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License as published by
4 * the Free Software Foundation; either version 2 of the License, or
5 * (at your option) any later version.
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
12 * You should have received a copy of the GNU General Public License
13 * along with this program; if not, write to the Free Software
14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 * 2002-07 Benny Sjostrand benny@hostmobility.com
23 #include <sound/driver.h>
25 #include <linux/delay.h>
27 #include <linux/init.h>
28 #include <linux/slab.h>
29 #include <linux/vmalloc.h>
30 #include <linux/mutex.h>
32 #include <sound/core.h>
33 #include <sound/control.h>
34 #include <sound/info.h>
35 #include <sound/asoundef.h>
36 #include <sound/cs46xx.h>
38 #include "cs46xx_lib.h"
41 static int cs46xx_dsp_async_init (struct snd_cs46xx
*chip
,
42 struct dsp_scb_descriptor
* fg_entry
);
44 static enum wide_opcode wide_opcodes
[] = {
49 WIDE_TBEQ_COND_GOTO_ADDR
,
50 WIDE_TBEQ_COND_CALL_ADDR
,
51 WIDE_TBEQ_NCOND_GOTO_ADDR
,
52 WIDE_TBEQ_NCOND_CALL_ADDR
,
53 WIDE_TBEQ_COND_GOTO1_ADDR
,
54 WIDE_TBEQ_COND_CALL1_ADDR
,
55 WIDE_TBEQ_NCOND_GOTOI_ADDR
,
56 WIDE_TBEQ_NCOND_CALL1_ADDR
59 static int shadow_and_reallocate_code (struct snd_cs46xx
* chip
, u32
* data
, u32 size
,
60 u32 overlay_begin_address
)
62 unsigned int i
= 0, j
, nreallocated
= 0;
63 u32 hival
,loval
,address
;
64 u32 mop_operands
,mop_type
,wide_op
;
65 struct dsp_spos_instance
* ins
= chip
->dsp_spos_instance
;
67 snd_assert( ((size
% 2) == 0), return -EINVAL
);
73 if (ins
->code
.offset
> 0) {
74 mop_operands
= (hival
>> 6) & 0x03fff;
75 mop_type
= mop_operands
>> 10;
77 /* check for wide type instruction */
79 (mop_operands
& WIDE_LADD_INSTR_MASK
) == 0 &&
80 (mop_operands
& WIDE_INSTR_MASK
) != 0) {
81 wide_op
= loval
& 0x7f;
82 for (j
= 0;j
< ARRAY_SIZE(wide_opcodes
); ++j
) {
83 if (wide_opcodes
[j
] == wide_op
) {
84 /* need to reallocate instruction */
85 address
= (hival
& 0x00FFF) << 5;
86 address
|= loval
>> 15;
88 snd_printdd("handle_wideop[1]: %05x:%05x addr %04x\n",hival
,loval
,address
);
90 if ( !(address
& 0x8000) ) {
91 address
+= (ins
->code
.offset
/ 2) - overlay_begin_address
;
93 snd_printdd("handle_wideop[1]: ROM symbol not reallocated\n");
99 hival
|= ( (address
>> 5) & 0x00FFF);
100 loval
|= ( (address
<< 15) & 0xF8000);
102 address
= (hival
& 0x00FFF) << 5;
103 address
|= loval
>> 15;
105 snd_printdd("handle_wideop:[2] %05x:%05x addr %04x\n",hival
,loval
,address
);
107 } /* wide_opcodes[j] == wide_op */
109 } /* mod_type == 0 ... */
110 } /* ins->code.offset > 0 */
112 ins
->code
.data
[ins
->code
.size
++] = loval
;
113 ins
->code
.data
[ins
->code
.size
++] = hival
;
116 snd_printdd("dsp_spos: %d instructions reallocated\n",nreallocated
);
120 static struct dsp_segment_desc
* get_segment_desc (struct dsp_module_desc
* module
, int seg_type
)
123 for (i
= 0;i
< module
->nsegments
; ++i
) {
124 if (module
->segments
[i
].segment_type
== seg_type
) {
125 return (module
->segments
+ i
);
132 static int find_free_symbol_index (struct dsp_spos_instance
* ins
)
134 int index
= ins
->symbol_table
.nsymbols
,i
;
136 for (i
= ins
->symbol_table
.highest_frag_index
; i
< ins
->symbol_table
.nsymbols
; ++i
) {
137 if (ins
->symbol_table
.symbols
[i
].deleted
) {
146 static int add_symbols (struct snd_cs46xx
* chip
, struct dsp_module_desc
* module
)
149 struct dsp_spos_instance
* ins
= chip
->dsp_spos_instance
;
151 if (module
->symbol_table
.nsymbols
> 0) {
152 if (!strcmp(module
->symbol_table
.symbols
[0].symbol_name
, "OVERLAYBEGINADDRESS") &&
153 module
->symbol_table
.symbols
[0].symbol_type
== SYMBOL_CONSTANT
) {
154 module
->overlay_begin_address
= module
->symbol_table
.symbols
[0].address
;
158 for (i
= 0;i
< module
->symbol_table
.nsymbols
; ++i
) {
159 if (ins
->symbol_table
.nsymbols
== (DSP_MAX_SYMBOLS
- 1)) {
160 snd_printk(KERN_ERR
"dsp_spos: symbol table is full\n");
165 if (cs46xx_dsp_lookup_symbol(chip
,
166 module
->symbol_table
.symbols
[i
].symbol_name
,
167 module
->symbol_table
.symbols
[i
].symbol_type
) == NULL
) {
169 ins
->symbol_table
.symbols
[ins
->symbol_table
.nsymbols
] = module
->symbol_table
.symbols
[i
];
170 ins
->symbol_table
.symbols
[ins
->symbol_table
.nsymbols
].address
+= ((ins
->code
.offset
/ 2) - module
->overlay_begin_address
);
171 ins
->symbol_table
.symbols
[ins
->symbol_table
.nsymbols
].module
= module
;
172 ins
->symbol_table
.symbols
[ins
->symbol_table
.nsymbols
].deleted
= 0;
174 if (ins
->symbol_table
.nsymbols
> ins
->symbol_table
.highest_frag_index
)
175 ins
->symbol_table
.highest_frag_index
= ins
->symbol_table
.nsymbols
;
177 ins
->symbol_table
.nsymbols
++;
179 /* if (0) printk ("dsp_spos: symbol <%s> duplicated, probably nothing wrong with that (Cirrus?)\n",
180 module->symbol_table.symbols[i].symbol_name); */
187 static struct dsp_symbol_entry
*
188 add_symbol (struct snd_cs46xx
* chip
, char * symbol_name
, u32 address
, int type
)
190 struct dsp_spos_instance
* ins
= chip
->dsp_spos_instance
;
191 struct dsp_symbol_entry
* symbol
= NULL
;
194 if (ins
->symbol_table
.nsymbols
== (DSP_MAX_SYMBOLS
- 1)) {
195 snd_printk(KERN_ERR
"dsp_spos: symbol table is full\n");
199 if (cs46xx_dsp_lookup_symbol(chip
,
202 snd_printk(KERN_ERR
"dsp_spos: symbol <%s> duplicated\n", symbol_name
);
206 index
= find_free_symbol_index (ins
);
208 strcpy (ins
->symbol_table
.symbols
[index
].symbol_name
, symbol_name
);
209 ins
->symbol_table
.symbols
[index
].address
= address
;
210 ins
->symbol_table
.symbols
[index
].symbol_type
= type
;
211 ins
->symbol_table
.symbols
[index
].module
= NULL
;
212 ins
->symbol_table
.symbols
[index
].deleted
= 0;
213 symbol
= (ins
->symbol_table
.symbols
+ index
);
215 if (index
> ins
->symbol_table
.highest_frag_index
)
216 ins
->symbol_table
.highest_frag_index
= index
;
218 if (index
== ins
->symbol_table
.nsymbols
)
219 ins
->symbol_table
.nsymbols
++; /* no frag. in list */
224 struct dsp_spos_instance
*cs46xx_dsp_spos_create (struct snd_cs46xx
* chip
)
226 struct dsp_spos_instance
* ins
= kzalloc(sizeof(struct dsp_spos_instance
), GFP_KERNEL
);
231 /* better to use vmalloc for this big table */
232 ins
->symbol_table
.nsymbols
= 0;
233 ins
->symbol_table
.symbols
= vmalloc(sizeof(struct dsp_symbol_entry
) *
235 ins
->symbol_table
.highest_frag_index
= 0;
237 if (ins
->symbol_table
.symbols
== NULL
) {
238 cs46xx_dsp_spos_destroy(chip
);
242 ins
->code
.offset
= 0;
244 ins
->code
.data
= kmalloc(DSP_CODE_BYTE_SIZE
, GFP_KERNEL
);
246 if (ins
->code
.data
== NULL
) {
247 cs46xx_dsp_spos_destroy(chip
);
255 ins
->modules
= kmalloc(sizeof(struct dsp_module_desc
) * DSP_MAX_MODULES
, GFP_KERNEL
);
257 if (ins
->modules
== NULL
) {
258 cs46xx_dsp_spos_destroy(chip
);
262 /* default SPDIF input sample rate
264 ins
->spdif_in_sample_rate
= 48000;
266 /* maximize volume */
267 ins
->dac_volume_right
= 0x8000;
268 ins
->dac_volume_left
= 0x8000;
269 ins
->spdif_input_volume_right
= 0x8000;
270 ins
->spdif_input_volume_left
= 0x8000;
272 /* set left and right validity bits and
273 default channel status */
274 ins
->spdif_csuv_default
=
275 ins
->spdif_csuv_stream
=
276 /* byte 0 */ ((unsigned int)_wrap_all_bits( (SNDRV_PCM_DEFAULT_CON_SPDIF
& 0xff)) << 24) |
277 /* byte 1 */ ((unsigned int)_wrap_all_bits( ((SNDRV_PCM_DEFAULT_CON_SPDIF
>> 8) & 0xff)) << 16) |
278 /* byte 3 */ (unsigned int)_wrap_all_bits( (SNDRV_PCM_DEFAULT_CON_SPDIF
>> 24) & 0xff) |
279 /* left and right validity bits */ (1 << 13) | (1 << 12);
288 void cs46xx_dsp_spos_destroy (struct snd_cs46xx
* chip
)
291 struct dsp_spos_instance
* ins
= chip
->dsp_spos_instance
;
293 snd_assert(ins
!= NULL
, return);
295 mutex_lock(&chip
->spos_mutex
);
296 for (i
= 0; i
< ins
->nscb
; ++i
) {
297 if (ins
->scbs
[i
].deleted
) continue;
299 cs46xx_dsp_proc_free_scb_desc ( (ins
->scbs
+ i
) );
302 kfree(ins
->code
.data
);
303 vfree(ins
->symbol_table
.symbols
);
306 mutex_unlock(&chip
->spos_mutex
);
309 int cs46xx_dsp_load_module (struct snd_cs46xx
* chip
, struct dsp_module_desc
* module
)
311 struct dsp_spos_instance
* ins
= chip
->dsp_spos_instance
;
312 struct dsp_segment_desc
* code
= get_segment_desc (module
,SEGTYPE_SP_PROGRAM
);
313 struct dsp_segment_desc
* parameter
= get_segment_desc (module
,SEGTYPE_SP_PARAMETER
);
314 struct dsp_segment_desc
* sample
= get_segment_desc (module
,SEGTYPE_SP_SAMPLE
);
317 if (ins
->nmodules
== DSP_MAX_MODULES
- 1) {
318 snd_printk(KERN_ERR
"dsp_spos: to many modules loaded into DSP\n");
322 snd_printdd("dsp_spos: loading module %s into DSP\n", module
->module_name
);
324 if (ins
->nmodules
== 0) {
325 snd_printdd("dsp_spos: clearing parameter area\n");
326 snd_cs46xx_clear_BA1(chip
, DSP_PARAMETER_BYTE_OFFSET
, DSP_PARAMETER_BYTE_SIZE
);
329 if (parameter
== NULL
) {
330 snd_printdd("dsp_spos: module got no parameter segment\n");
332 if (ins
->nmodules
> 0) {
333 snd_printk(KERN_WARNING
"dsp_spos: WARNING current parameter data may be overwriten!\n");
336 doffset
= (parameter
->offset
* 4 + DSP_PARAMETER_BYTE_OFFSET
);
337 dsize
= parameter
->size
* 4;
339 snd_printdd("dsp_spos: downloading parameter data to chip (%08x-%08x)\n",
340 doffset
,doffset
+ dsize
);
342 if (snd_cs46xx_download (chip
, parameter
->data
, doffset
, dsize
)) {
343 snd_printk(KERN_ERR
"dsp_spos: failed to download parameter data to DSP\n");
348 if (ins
->nmodules
== 0) {
349 snd_printdd("dsp_spos: clearing sample area\n");
350 snd_cs46xx_clear_BA1(chip
, DSP_SAMPLE_BYTE_OFFSET
, DSP_SAMPLE_BYTE_SIZE
);
353 if (sample
== NULL
) {
354 snd_printdd("dsp_spos: module got no sample segment\n");
356 if (ins
->nmodules
> 0) {
357 snd_printk(KERN_WARNING
"dsp_spos: WARNING current sample data may be overwriten\n");
360 doffset
= (sample
->offset
* 4 + DSP_SAMPLE_BYTE_OFFSET
);
361 dsize
= sample
->size
* 4;
363 snd_printdd("dsp_spos: downloading sample data to chip (%08x-%08x)\n",
364 doffset
,doffset
+ dsize
);
366 if (snd_cs46xx_download (chip
,sample
->data
,doffset
,dsize
)) {
367 snd_printk(KERN_ERR
"dsp_spos: failed to sample data to DSP\n");
373 if (ins
->nmodules
== 0) {
374 snd_printdd("dsp_spos: clearing code area\n");
375 snd_cs46xx_clear_BA1(chip
, DSP_CODE_BYTE_OFFSET
, DSP_CODE_BYTE_SIZE
);
379 snd_printdd("dsp_spos: module got no code segment\n");
381 if (ins
->code
.offset
+ code
->size
> DSP_CODE_BYTE_SIZE
) {
382 snd_printk(KERN_ERR
"dsp_spos: no space available in DSP\n");
386 module
->load_address
= ins
->code
.offset
;
387 module
->overlay_begin_address
= 0x000;
389 /* if module has a code segment it must have
391 snd_assert(module
->symbol_table
.symbols
!= NULL
,return -ENOMEM
);
392 if (add_symbols(chip
,module
)) {
393 snd_printk(KERN_ERR
"dsp_spos: failed to load symbol table\n");
397 doffset
= (code
->offset
* 4 + ins
->code
.offset
* 4 + DSP_CODE_BYTE_OFFSET
);
398 dsize
= code
->size
* 4;
399 snd_printdd("dsp_spos: downloading code to chip (%08x-%08x)\n",
400 doffset
,doffset
+ dsize
);
402 module
->nfixups
= shadow_and_reallocate_code(chip
,code
->data
,code
->size
,module
->overlay_begin_address
);
404 if (snd_cs46xx_download (chip
,(ins
->code
.data
+ ins
->code
.offset
),doffset
,dsize
)) {
405 snd_printk(KERN_ERR
"dsp_spos: failed to download code to DSP\n");
409 ins
->code
.offset
+= code
->size
;
412 /* NOTE: module segments and symbol table must be
413 statically allocated. Case that module data is
414 not generated by the ospparser */
415 ins
->modules
[ins
->nmodules
] = *module
;
421 struct dsp_symbol_entry
*
422 cs46xx_dsp_lookup_symbol (struct snd_cs46xx
* chip
, char * symbol_name
, int symbol_type
)
425 struct dsp_spos_instance
* ins
= chip
->dsp_spos_instance
;
427 for ( i
= 0; i
< ins
->symbol_table
.nsymbols
; ++i
) {
429 if (ins
->symbol_table
.symbols
[i
].deleted
)
432 if (!strcmp(ins
->symbol_table
.symbols
[i
].symbol_name
,symbol_name
) &&
433 ins
->symbol_table
.symbols
[i
].symbol_type
== symbol_type
) {
434 return (ins
->symbol_table
.symbols
+ i
);
439 printk ("dsp_spos: symbol <%s> type %02x not found\n",
440 symbol_name
,symbol_type
);
447 #ifdef CONFIG_PROC_FS
448 static struct dsp_symbol_entry
*
449 cs46xx_dsp_lookup_symbol_addr (struct snd_cs46xx
* chip
, u32 address
, int symbol_type
)
452 struct dsp_spos_instance
* ins
= chip
->dsp_spos_instance
;
454 for ( i
= 0; i
< ins
->symbol_table
.nsymbols
; ++i
) {
456 if (ins
->symbol_table
.symbols
[i
].deleted
)
459 if (ins
->symbol_table
.symbols
[i
].address
== address
&&
460 ins
->symbol_table
.symbols
[i
].symbol_type
== symbol_type
) {
461 return (ins
->symbol_table
.symbols
+ i
);
470 static void cs46xx_dsp_proc_symbol_table_read (struct snd_info_entry
*entry
,
471 struct snd_info_buffer
*buffer
)
473 struct snd_cs46xx
*chip
= entry
->private_data
;
474 struct dsp_spos_instance
* ins
= chip
->dsp_spos_instance
;
477 snd_iprintf(buffer
, "SYMBOLS:\n");
478 for ( i
= 0; i
< ins
->symbol_table
.nsymbols
; ++i
) {
479 char *module_str
= "system";
481 if (ins
->symbol_table
.symbols
[i
].deleted
)
484 if (ins
->symbol_table
.symbols
[i
].module
!= NULL
) {
485 module_str
= ins
->symbol_table
.symbols
[i
].module
->module_name
;
489 snd_iprintf(buffer
, "%04X <%02X> %s [%s]\n",
490 ins
->symbol_table
.symbols
[i
].address
,
491 ins
->symbol_table
.symbols
[i
].symbol_type
,
492 ins
->symbol_table
.symbols
[i
].symbol_name
,
498 static void cs46xx_dsp_proc_modules_read (struct snd_info_entry
*entry
,
499 struct snd_info_buffer
*buffer
)
501 struct snd_cs46xx
*chip
= entry
->private_data
;
502 struct dsp_spos_instance
* ins
= chip
->dsp_spos_instance
;
505 mutex_lock(&chip
->spos_mutex
);
506 snd_iprintf(buffer
, "MODULES:\n");
507 for ( i
= 0; i
< ins
->nmodules
; ++i
) {
508 snd_iprintf(buffer
, "\n%s:\n", ins
->modules
[i
].module_name
);
509 snd_iprintf(buffer
, " %d symbols\n", ins
->modules
[i
].symbol_table
.nsymbols
);
510 snd_iprintf(buffer
, " %d fixups\n", ins
->modules
[i
].nfixups
);
512 for (j
= 0; j
< ins
->modules
[i
].nsegments
; ++ j
) {
513 struct dsp_segment_desc
* desc
= (ins
->modules
[i
].segments
+ j
);
514 snd_iprintf(buffer
, " segment %02x offset %08x size %08x\n",
515 desc
->segment_type
,desc
->offset
, desc
->size
);
518 mutex_unlock(&chip
->spos_mutex
);
521 static void cs46xx_dsp_proc_task_tree_read (struct snd_info_entry
*entry
,
522 struct snd_info_buffer
*buffer
)
524 struct snd_cs46xx
*chip
= entry
->private_data
;
525 struct dsp_spos_instance
* ins
= chip
->dsp_spos_instance
;
527 void __iomem
*dst
= chip
->region
.idx
[1].remap_addr
+ DSP_PARAMETER_BYTE_OFFSET
;
529 mutex_lock(&chip
->spos_mutex
);
530 snd_iprintf(buffer
, "TASK TREES:\n");
531 for ( i
= 0; i
< ins
->ntask
; ++i
) {
532 snd_iprintf(buffer
,"\n%04x %s:\n",ins
->tasks
[i
].address
,ins
->tasks
[i
].task_name
);
534 for (col
= 0,j
= 0;j
< ins
->tasks
[i
].size
; j
++,col
++) {
537 snd_iprintf(buffer
,"\n");
540 val
= readl(dst
+ (ins
->tasks
[i
].address
+ j
) * sizeof(u32
));
541 snd_iprintf(buffer
,"%08x ",val
);
545 snd_iprintf(buffer
,"\n");
546 mutex_unlock(&chip
->spos_mutex
);
549 static void cs46xx_dsp_proc_scb_read (struct snd_info_entry
*entry
,
550 struct snd_info_buffer
*buffer
)
552 struct snd_cs46xx
*chip
= entry
->private_data
;
553 struct dsp_spos_instance
* ins
= chip
->dsp_spos_instance
;
556 mutex_lock(&chip
->spos_mutex
);
557 snd_iprintf(buffer
, "SCB's:\n");
558 for ( i
= 0; i
< ins
->nscb
; ++i
) {
559 if (ins
->scbs
[i
].deleted
)
561 snd_iprintf(buffer
,"\n%04x %s:\n\n",ins
->scbs
[i
].address
,ins
->scbs
[i
].scb_name
);
563 if (ins
->scbs
[i
].parent_scb_ptr
!= NULL
) {
564 snd_iprintf(buffer
,"parent [%s:%04x] ",
565 ins
->scbs
[i
].parent_scb_ptr
->scb_name
,
566 ins
->scbs
[i
].parent_scb_ptr
->address
);
567 } else snd_iprintf(buffer
,"parent [none] ");
569 snd_iprintf(buffer
,"sub_list_ptr [%s:%04x]\nnext_scb_ptr [%s:%04x] task_entry [%s:%04x]\n",
570 ins
->scbs
[i
].sub_list_ptr
->scb_name
,
571 ins
->scbs
[i
].sub_list_ptr
->address
,
572 ins
->scbs
[i
].next_scb_ptr
->scb_name
,
573 ins
->scbs
[i
].next_scb_ptr
->address
,
574 ins
->scbs
[i
].task_entry
->symbol_name
,
575 ins
->scbs
[i
].task_entry
->address
);
578 snd_iprintf(buffer
,"\n");
579 mutex_unlock(&chip
->spos_mutex
);
582 static void cs46xx_dsp_proc_parameter_dump_read (struct snd_info_entry
*entry
,
583 struct snd_info_buffer
*buffer
)
585 struct snd_cs46xx
*chip
= entry
->private_data
;
586 /*struct dsp_spos_instance * ins = chip->dsp_spos_instance; */
587 unsigned int i
, col
= 0;
588 void __iomem
*dst
= chip
->region
.idx
[1].remap_addr
+ DSP_PARAMETER_BYTE_OFFSET
;
589 struct dsp_symbol_entry
* symbol
;
591 for (i
= 0;i
< DSP_PARAMETER_BYTE_SIZE
; i
+= sizeof(u32
),col
++) {
593 snd_iprintf(buffer
,"\n");
597 if ( (symbol
= cs46xx_dsp_lookup_symbol_addr (chip
,i
/ sizeof(u32
), SYMBOL_PARAMETER
)) != NULL
) {
599 snd_iprintf (buffer
,"\n%s:\n",symbol
->symbol_name
);
603 snd_iprintf(buffer
, "%04X ", i
/ (unsigned int)sizeof(u32
));
606 snd_iprintf(buffer
,"%08X ",readl(dst
+ i
));
610 static void cs46xx_dsp_proc_sample_dump_read (struct snd_info_entry
*entry
,
611 struct snd_info_buffer
*buffer
)
613 struct snd_cs46xx
*chip
= entry
->private_data
;
615 void __iomem
*dst
= chip
->region
.idx
[2].remap_addr
;
617 snd_iprintf(buffer
,"PCMREADER:\n");
618 for (i
= PCM_READER_BUF1
;i
< PCM_READER_BUF1
+ 0x30; i
+= sizeof(u32
),col
++) {
620 snd_iprintf(buffer
,"\n");
625 snd_iprintf(buffer
, "%04X ",i
);
628 snd_iprintf(buffer
,"%08X ",readl(dst
+ i
));
631 snd_iprintf(buffer
,"\nMIX_SAMPLE_BUF1:\n");
634 for (i
= MIX_SAMPLE_BUF1
;i
< MIX_SAMPLE_BUF1
+ 0x40; i
+= sizeof(u32
),col
++) {
636 snd_iprintf(buffer
,"\n");
641 snd_iprintf(buffer
, "%04X ",i
);
644 snd_iprintf(buffer
,"%08X ",readl(dst
+ i
));
647 snd_iprintf(buffer
,"\nSRC_TASK_SCB1:\n");
649 for (i
= 0x2480 ; i
< 0x2480 + 0x40 ; i
+= sizeof(u32
),col
++) {
651 snd_iprintf(buffer
,"\n");
656 snd_iprintf(buffer
, "%04X ",i
);
659 snd_iprintf(buffer
,"%08X ",readl(dst
+ i
));
663 snd_iprintf(buffer
,"\nSPDIFO_BUFFER:\n");
665 for (i
= SPDIFO_IP_OUTPUT_BUFFER1
;i
< SPDIFO_IP_OUTPUT_BUFFER1
+ 0x30; i
+= sizeof(u32
),col
++) {
667 snd_iprintf(buffer
,"\n");
672 snd_iprintf(buffer
, "%04X ",i
);
675 snd_iprintf(buffer
,"%08X ",readl(dst
+ i
));
678 snd_iprintf(buffer
,"\n...\n");
681 for (i
= SPDIFO_IP_OUTPUT_BUFFER1
+0xD0;i
< SPDIFO_IP_OUTPUT_BUFFER1
+ 0x110; i
+= sizeof(u32
),col
++) {
683 snd_iprintf(buffer
,"\n");
688 snd_iprintf(buffer
, "%04X ",i
);
691 snd_iprintf(buffer
,"%08X ",readl(dst
+ i
));
695 snd_iprintf(buffer
,"\nOUTPUT_SNOOP:\n");
697 for (i
= OUTPUT_SNOOP_BUFFER
;i
< OUTPUT_SNOOP_BUFFER
+ 0x40; i
+= sizeof(u32
),col
++) {
699 snd_iprintf(buffer
,"\n");
704 snd_iprintf(buffer
, "%04X ",i
);
707 snd_iprintf(buffer
,"%08X ",readl(dst
+ i
));
710 snd_iprintf(buffer
,"\nCODEC_INPUT_BUF1: \n");
712 for (i
= CODEC_INPUT_BUF1
;i
< CODEC_INPUT_BUF1
+ 0x40; i
+= sizeof(u32
),col
++) {
714 snd_iprintf(buffer
,"\n");
719 snd_iprintf(buffer
, "%04X ",i
);
722 snd_iprintf(buffer
,"%08X ",readl(dst
+ i
));
725 snd_iprintf(buffer
,"\nWRITE_BACK_BUF1: \n");
727 for (i
= WRITE_BACK_BUF1
;i
< WRITE_BACK_BUF1
+ 0x40; i
+= sizeof(u32
),col
++) {
729 snd_iprintf(buffer
,"\n");
734 snd_iprintf(buffer
, "%04X ",i
);
737 snd_iprintf(buffer
,"%08X ",readl(dst
+ i
));
741 snd_iprintf(buffer
,"\nSPDIFI_IP_OUTPUT_BUFFER1: \n");
743 for (i
= SPDIFI_IP_OUTPUT_BUFFER1
;i
< SPDIFI_IP_OUTPUT_BUFFER1
+ 0x80; i
+= sizeof(u32
),col
++) {
745 snd_iprintf(buffer
,"\n");
750 snd_iprintf(buffer
, "%04X ",i
);
753 snd_iprintf(buffer
,"%08X ",readl(dst
+ i
));
755 snd_iprintf(buffer
,"\n");
758 int cs46xx_dsp_proc_init (struct snd_card
*card
, struct snd_cs46xx
*chip
)
760 struct snd_info_entry
*entry
;
761 struct dsp_spos_instance
* ins
= chip
->dsp_spos_instance
;
764 ins
->snd_card
= card
;
766 if ((entry
= snd_info_create_card_entry(card
, "dsp", card
->proc_root
)) != NULL
) {
767 entry
->content
= SNDRV_INFO_CONTENT_TEXT
;
768 entry
->mode
= S_IFDIR
| S_IRUGO
| S_IXUGO
;
770 if (snd_info_register(entry
) < 0) {
771 snd_info_free_entry(entry
);
776 ins
->proc_dsp_dir
= entry
;
778 if (!ins
->proc_dsp_dir
)
781 if ((entry
= snd_info_create_card_entry(card
, "spos_symbols", ins
->proc_dsp_dir
)) != NULL
) {
782 entry
->content
= SNDRV_INFO_CONTENT_TEXT
;
783 entry
->private_data
= chip
;
784 entry
->mode
= S_IFREG
| S_IRUGO
| S_IWUSR
;
785 entry
->c
.text
.read
= cs46xx_dsp_proc_symbol_table_read
;
786 if (snd_info_register(entry
) < 0) {
787 snd_info_free_entry(entry
);
791 ins
->proc_sym_info_entry
= entry
;
793 if ((entry
= snd_info_create_card_entry(card
, "spos_modules", ins
->proc_dsp_dir
)) != NULL
) {
794 entry
->content
= SNDRV_INFO_CONTENT_TEXT
;
795 entry
->private_data
= chip
;
796 entry
->mode
= S_IFREG
| S_IRUGO
| S_IWUSR
;
797 entry
->c
.text
.read
= cs46xx_dsp_proc_modules_read
;
798 if (snd_info_register(entry
) < 0) {
799 snd_info_free_entry(entry
);
803 ins
->proc_modules_info_entry
= entry
;
805 if ((entry
= snd_info_create_card_entry(card
, "parameter", ins
->proc_dsp_dir
)) != NULL
) {
806 entry
->content
= SNDRV_INFO_CONTENT_TEXT
;
807 entry
->private_data
= chip
;
808 entry
->mode
= S_IFREG
| S_IRUGO
| S_IWUSR
;
809 entry
->c
.text
.read
= cs46xx_dsp_proc_parameter_dump_read
;
810 if (snd_info_register(entry
) < 0) {
811 snd_info_free_entry(entry
);
815 ins
->proc_parameter_dump_info_entry
= entry
;
817 if ((entry
= snd_info_create_card_entry(card
, "sample", ins
->proc_dsp_dir
)) != NULL
) {
818 entry
->content
= SNDRV_INFO_CONTENT_TEXT
;
819 entry
->private_data
= chip
;
820 entry
->mode
= S_IFREG
| S_IRUGO
| S_IWUSR
;
821 entry
->c
.text
.read
= cs46xx_dsp_proc_sample_dump_read
;
822 if (snd_info_register(entry
) < 0) {
823 snd_info_free_entry(entry
);
827 ins
->proc_sample_dump_info_entry
= entry
;
829 if ((entry
= snd_info_create_card_entry(card
, "task_tree", ins
->proc_dsp_dir
)) != NULL
) {
830 entry
->content
= SNDRV_INFO_CONTENT_TEXT
;
831 entry
->private_data
= chip
;
832 entry
->mode
= S_IFREG
| S_IRUGO
| S_IWUSR
;
833 entry
->c
.text
.read
= cs46xx_dsp_proc_task_tree_read
;
834 if (snd_info_register(entry
) < 0) {
835 snd_info_free_entry(entry
);
839 ins
->proc_task_info_entry
= entry
;
841 if ((entry
= snd_info_create_card_entry(card
, "scb_info", ins
->proc_dsp_dir
)) != NULL
) {
842 entry
->content
= SNDRV_INFO_CONTENT_TEXT
;
843 entry
->private_data
= chip
;
844 entry
->mode
= S_IFREG
| S_IRUGO
| S_IWUSR
;
845 entry
->c
.text
.read
= cs46xx_dsp_proc_scb_read
;
846 if (snd_info_register(entry
) < 0) {
847 snd_info_free_entry(entry
);
851 ins
->proc_scb_info_entry
= entry
;
853 mutex_lock(&chip
->spos_mutex
);
854 /* register/update SCB's entries on proc */
855 for (i
= 0; i
< ins
->nscb
; ++i
) {
856 if (ins
->scbs
[i
].deleted
) continue;
858 cs46xx_dsp_proc_register_scb_desc (chip
, (ins
->scbs
+ i
));
860 mutex_unlock(&chip
->spos_mutex
);
865 int cs46xx_dsp_proc_done (struct snd_cs46xx
*chip
)
867 struct dsp_spos_instance
* ins
= chip
->dsp_spos_instance
;
870 snd_info_free_entry(ins
->proc_sym_info_entry
);
871 ins
->proc_sym_info_entry
= NULL
;
873 snd_info_free_entry(ins
->proc_modules_info_entry
);
874 ins
->proc_modules_info_entry
= NULL
;
876 snd_info_free_entry(ins
->proc_parameter_dump_info_entry
);
877 ins
->proc_parameter_dump_info_entry
= NULL
;
879 snd_info_free_entry(ins
->proc_sample_dump_info_entry
);
880 ins
->proc_sample_dump_info_entry
= NULL
;
882 snd_info_free_entry(ins
->proc_scb_info_entry
);
883 ins
->proc_scb_info_entry
= NULL
;
885 snd_info_free_entry(ins
->proc_task_info_entry
);
886 ins
->proc_task_info_entry
= NULL
;
888 mutex_lock(&chip
->spos_mutex
);
889 for (i
= 0; i
< ins
->nscb
; ++i
) {
890 if (ins
->scbs
[i
].deleted
) continue;
891 cs46xx_dsp_proc_free_scb_desc ( (ins
->scbs
+ i
) );
893 mutex_unlock(&chip
->spos_mutex
);
895 snd_info_free_entry(ins
->proc_dsp_dir
);
896 ins
->proc_dsp_dir
= NULL
;
900 #endif /* CONFIG_PROC_FS */
902 static int debug_tree
;
903 static void _dsp_create_task_tree (struct snd_cs46xx
*chip
, u32
* task_data
,
906 void __iomem
*spdst
= chip
->region
.idx
[1].remap_addr
+
907 DSP_PARAMETER_BYTE_OFFSET
+ dest
* sizeof(u32
);
910 for (i
= 0; i
< size
; ++i
) {
911 if (debug_tree
) printk ("addr %p, val %08x\n",spdst
,task_data
[i
]);
912 writel(task_data
[i
],spdst
);
913 spdst
+= sizeof(u32
);
917 static int debug_scb
;
918 static void _dsp_create_scb (struct snd_cs46xx
*chip
, u32
* scb_data
, u32 dest
)
920 void __iomem
*spdst
= chip
->region
.idx
[1].remap_addr
+
921 DSP_PARAMETER_BYTE_OFFSET
+ dest
* sizeof(u32
);
924 for (i
= 0; i
< 0x10; ++i
) {
925 if (debug_scb
) printk ("addr %p, val %08x\n",spdst
,scb_data
[i
]);
926 writel(scb_data
[i
],spdst
);
927 spdst
+= sizeof(u32
);
931 static int find_free_scb_index (struct dsp_spos_instance
* ins
)
933 int index
= ins
->nscb
, i
;
935 for (i
= ins
->scb_highest_frag_index
; i
< ins
->nscb
; ++i
) {
936 if (ins
->scbs
[i
].deleted
) {
945 static struct dsp_scb_descriptor
* _map_scb (struct snd_cs46xx
*chip
, char * name
, u32 dest
)
947 struct dsp_spos_instance
* ins
= chip
->dsp_spos_instance
;
948 struct dsp_scb_descriptor
* desc
= NULL
;
951 if (ins
->nscb
== DSP_MAX_SCB_DESC
- 1) {
952 snd_printk(KERN_ERR
"dsp_spos: got no place for other SCB\n");
956 index
= find_free_scb_index (ins
);
958 strcpy(ins
->scbs
[index
].scb_name
, name
);
959 ins
->scbs
[index
].address
= dest
;
960 ins
->scbs
[index
].index
= index
;
961 ins
->scbs
[index
].proc_info
= NULL
;
962 ins
->scbs
[index
].ref_count
= 1;
963 ins
->scbs
[index
].deleted
= 0;
964 spin_lock_init(&ins
->scbs
[index
].lock
);
966 desc
= (ins
->scbs
+ index
);
967 ins
->scbs
[index
].scb_symbol
= add_symbol (chip
, name
, dest
, SYMBOL_PARAMETER
);
969 if (index
> ins
->scb_highest_frag_index
)
970 ins
->scb_highest_frag_index
= index
;
972 if (index
== ins
->nscb
)
978 static struct dsp_task_descriptor
*
979 _map_task_tree (struct snd_cs46xx
*chip
, char * name
, u32 dest
, u32 size
)
981 struct dsp_spos_instance
* ins
= chip
->dsp_spos_instance
;
982 struct dsp_task_descriptor
* desc
= NULL
;
984 if (ins
->ntask
== DSP_MAX_TASK_DESC
- 1) {
985 snd_printk(KERN_ERR
"dsp_spos: got no place for other TASK\n");
989 strcpy(ins
->tasks
[ins
->ntask
].task_name
,name
);
990 ins
->tasks
[ins
->ntask
].address
= dest
;
991 ins
->tasks
[ins
->ntask
].size
= size
;
993 /* quick find in list */
994 ins
->tasks
[ins
->ntask
].index
= ins
->ntask
;
995 desc
= (ins
->tasks
+ ins
->ntask
);
998 add_symbol (chip
,name
,dest
,SYMBOL_PARAMETER
);
1002 struct dsp_scb_descriptor
*
1003 cs46xx_dsp_create_scb (struct snd_cs46xx
*chip
, char * name
, u32
* scb_data
, u32 dest
)
1005 struct dsp_scb_descriptor
* desc
;
1007 desc
= _map_scb (chip
,name
,dest
);
1009 _dsp_create_scb(chip
,scb_data
,dest
);
1011 snd_printk(KERN_ERR
"dsp_spos: failed to map SCB\n");
1018 static struct dsp_task_descriptor
*
1019 cs46xx_dsp_create_task_tree (struct snd_cs46xx
*chip
, char * name
, u32
* task_data
,
1022 struct dsp_task_descriptor
* desc
;
1024 desc
= _map_task_tree (chip
,name
,dest
,size
);
1026 _dsp_create_task_tree(chip
,task_data
,dest
,size
);
1028 snd_printk(KERN_ERR
"dsp_spos: failed to map TASK\n");
1034 int cs46xx_dsp_scb_and_task_init (struct snd_cs46xx
*chip
)
1036 struct dsp_spos_instance
* ins
= chip
->dsp_spos_instance
;
1037 struct dsp_symbol_entry
* fg_task_tree_header_code
;
1038 struct dsp_symbol_entry
* task_tree_header_code
;
1039 struct dsp_symbol_entry
* task_tree_thread
;
1040 struct dsp_symbol_entry
* null_algorithm
;
1041 struct dsp_symbol_entry
* magic_snoop_task
;
1043 struct dsp_scb_descriptor
* timing_master_scb
;
1044 struct dsp_scb_descriptor
* codec_out_scb
;
1045 struct dsp_scb_descriptor
* codec_in_scb
;
1046 struct dsp_scb_descriptor
* src_task_scb
;
1047 struct dsp_scb_descriptor
* master_mix_scb
;
1048 struct dsp_scb_descriptor
* rear_mix_scb
;
1049 struct dsp_scb_descriptor
* record_mix_scb
;
1050 struct dsp_scb_descriptor
* write_back_scb
;
1051 struct dsp_scb_descriptor
* vari_decimate_scb
;
1052 struct dsp_scb_descriptor
* rear_codec_out_scb
;
1053 struct dsp_scb_descriptor
* clfe_codec_out_scb
;
1054 struct dsp_scb_descriptor
* magic_snoop_scb
;
1056 int fifo_addr
, fifo_span
, valid_slots
;
1058 static struct dsp_spos_control_block sposcb
= {
1059 /* 0 */ HFG_TREE_SCB
,HFG_STACK
,
1060 /* 1 */ SPOSCB_ADDR
,BG_TREE_SCB_ADDR
,
1061 /* 2 */ DSP_SPOS_DC
,0,
1062 /* 3 */ DSP_SPOS_DC
,DSP_SPOS_DC
,
1064 /* 5 */ DSP_SPOS_UU
,0,
1065 /* 6 */ FG_TASK_HEADER_ADDR
,0,
1067 /* 8 */ DSP_SPOS_UU
,DSP_SPOS_DC
,
1069 /* A */ 0,HFG_FIRST_EXECUTE_MODE
,
1070 /* B */ DSP_SPOS_UU
,DSP_SPOS_UU
,
1071 /* C */ DSP_SPOS_DC_DC
,
1072 /* D */ DSP_SPOS_DC_DC
,
1073 /* E */ DSP_SPOS_DC_DC
,
1074 /* F */ DSP_SPOS_DC_DC
1077 cs46xx_dsp_create_task_tree(chip
, "sposCB", (u32
*)&sposcb
, SPOSCB_ADDR
, 0x10);
1079 null_algorithm
= cs46xx_dsp_lookup_symbol(chip
, "NULLALGORITHM", SYMBOL_CODE
);
1080 if (null_algorithm
== NULL
) {
1081 snd_printk(KERN_ERR
"dsp_spos: symbol NULLALGORITHM not found\n");
1085 fg_task_tree_header_code
= cs46xx_dsp_lookup_symbol(chip
, "FGTASKTREEHEADERCODE", SYMBOL_CODE
);
1086 if (fg_task_tree_header_code
== NULL
) {
1087 snd_printk(KERN_ERR
"dsp_spos: symbol FGTASKTREEHEADERCODE not found\n");
1091 task_tree_header_code
= cs46xx_dsp_lookup_symbol(chip
, "TASKTREEHEADERCODE", SYMBOL_CODE
);
1092 if (task_tree_header_code
== NULL
) {
1093 snd_printk(KERN_ERR
"dsp_spos: symbol TASKTREEHEADERCODE not found\n");
1097 task_tree_thread
= cs46xx_dsp_lookup_symbol(chip
, "TASKTREETHREAD", SYMBOL_CODE
);
1098 if (task_tree_thread
== NULL
) {
1099 snd_printk(KERN_ERR
"dsp_spos: symbol TASKTREETHREAD not found\n");
1103 magic_snoop_task
= cs46xx_dsp_lookup_symbol(chip
, "MAGICSNOOPTASK", SYMBOL_CODE
);
1104 if (magic_snoop_task
== NULL
) {
1105 snd_printk(KERN_ERR
"dsp_spos: symbol MAGICSNOOPTASK not found\n");
1110 /* create the null SCB */
1111 static struct dsp_generic_scb null_scb
= {
1114 NULL_SCB_ADDR
, NULL_SCB_ADDR
,
1122 null_scb
.entry_point
= null_algorithm
->address
;
1123 ins
->the_null_scb
= cs46xx_dsp_create_scb(chip
, "nullSCB", (u32
*)&null_scb
, NULL_SCB_ADDR
);
1124 ins
->the_null_scb
->task_entry
= null_algorithm
;
1125 ins
->the_null_scb
->sub_list_ptr
= ins
->the_null_scb
;
1126 ins
->the_null_scb
->next_scb_ptr
= ins
->the_null_scb
;
1127 ins
->the_null_scb
->parent_scb_ptr
= NULL
;
1128 cs46xx_dsp_proc_register_scb_desc (chip
,ins
->the_null_scb
);
1132 /* setup foreground task tree */
1133 static struct dsp_task_tree_control_block fg_task_tree_hdr
= {
1134 { FG_TASK_HEADER_ADDR
| (DSP_SPOS_DC
<< 0x10),
1138 DSP_SPOS_DC
, DSP_SPOS_DC
,
1142 DSP_SPOS_DC
,DSP_SPOS_DC
},
1145 BG_TREE_SCB_ADDR
,TIMINGMASTER_SCB_ADDR
,
1147 FG_TASK_HEADER_ADDR
+ TCBData
,
1153 2,SPOSCB_ADDR
+ HFGFlags
,
1155 FG_TASK_HEADER_ADDR
+ TCBContextBlk
,FG_STACK
1160 DSP_SPOS_DC
,DSP_SPOS_DC
,
1161 DSP_SPOS_DC
,DSP_SPOS_DC
,
1162 DSP_SPOS_DC
,DSP_SPOS_DC
,
1163 DSP_SPOS_DC
,DSP_SPOS_DC
,
1196 FG_INTERVAL_TIMER_PERIOD
,DSP_SPOS_UU
,
1201 fg_task_tree_hdr
.links
.entry_point
= fg_task_tree_header_code
->address
;
1202 fg_task_tree_hdr
.context_blk
.stack0
= task_tree_thread
->address
;
1203 cs46xx_dsp_create_task_tree(chip
,"FGtaskTreeHdr",(u32
*)&fg_task_tree_hdr
,FG_TASK_HEADER_ADDR
,0x35);
1208 /* setup foreground task tree */
1209 static struct dsp_task_tree_control_block bg_task_tree_hdr
= {
1213 DSP_SPOS_DC
, DSP_SPOS_DC
,
1214 DSP_SPOS_DC
, DSP_SPOS_DC
,
1218 DSP_SPOS_DC
,DSP_SPOS_DC
},
1221 NULL_SCB_ADDR
,NULL_SCB_ADDR
, /* Set up the background to do nothing */
1223 BG_TREE_SCB_ADDR
+ TCBData
,
1229 0,SPOSCB_ADDR
+ HFGFlags
,
1231 BG_TREE_SCB_ADDR
+ TCBContextBlk
,BG_STACK
1236 DSP_SPOS_DC
,DSP_SPOS_DC
,
1237 DSP_SPOS_DC
,DSP_SPOS_DC
,
1238 DSP_SPOS_DC
,DSP_SPOS_DC
,
1239 DSP_SPOS_DC
,DSP_SPOS_DC
,
1272 BG_INTERVAL_TIMER_PERIOD
,DSP_SPOS_UU
,
1277 bg_task_tree_hdr
.links
.entry_point
= task_tree_header_code
->address
;
1278 bg_task_tree_hdr
.context_blk
.stack0
= task_tree_thread
->address
;
1279 cs46xx_dsp_create_task_tree(chip
,"BGtaskTreeHdr",(u32
*)&bg_task_tree_hdr
,BG_TREE_SCB_ADDR
,0x35);
1282 /* create timing master SCB */
1283 timing_master_scb
= cs46xx_dsp_create_timing_master_scb(chip
);
1285 /* create the CODEC output task */
1286 codec_out_scb
= cs46xx_dsp_create_codec_out_scb(chip
,"CodecOutSCB_I",0x0010,0x0000,
1288 CODECOUT_SCB_ADDR
,timing_master_scb
,
1289 SCB_ON_PARENT_SUBLIST_SCB
);
1291 if (!codec_out_scb
) goto _fail_end
;
1292 /* create the master mix SCB */
1293 master_mix_scb
= cs46xx_dsp_create_mix_only_scb(chip
,"MasterMixSCB",
1294 MIX_SAMPLE_BUF1
,MASTERMIX_SCB_ADDR
,
1296 SCB_ON_PARENT_SUBLIST_SCB
);
1297 ins
->master_mix_scb
= master_mix_scb
;
1299 if (!master_mix_scb
) goto _fail_end
;
1301 /* create codec in */
1302 codec_in_scb
= cs46xx_dsp_create_codec_in_scb(chip
,"CodecInSCB",0x0010,0x00A0,
1304 CODECIN_SCB_ADDR
,codec_out_scb
,
1305 SCB_ON_PARENT_NEXT_SCB
);
1306 if (!codec_in_scb
) goto _fail_end
;
1307 ins
->codec_in_scb
= codec_in_scb
;
1309 /* create write back scb */
1310 write_back_scb
= cs46xx_dsp_create_mix_to_ostream_scb(chip
,"WriteBackSCB",
1311 WRITE_BACK_BUF1
,WRITE_BACK_SPB
,
1314 SCB_ON_PARENT_NEXT_SCB
);
1315 if (!write_back_scb
) goto _fail_end
;
1318 static struct dsp_mix2_ostream_spb mix2_ostream_spb
= {
1323 /* dirty hack ... */
1324 _dsp_create_task_tree (chip
,(u32
*)&mix2_ostream_spb
,WRITE_BACK_SPB
,2);
1327 /* input sample converter */
1328 vari_decimate_scb
= cs46xx_dsp_create_vari_decimate_scb(chip
,"VariDecimateSCB",
1331 VARIDECIMATE_SCB_ADDR
,
1333 SCB_ON_PARENT_SUBLIST_SCB
);
1334 if (!vari_decimate_scb
) goto _fail_end
;
1336 /* create the record mixer SCB */
1337 record_mix_scb
= cs46xx_dsp_create_mix_only_scb(chip
,"RecordMixerSCB",
1339 RECORD_MIXER_SCB_ADDR
,
1341 SCB_ON_PARENT_SUBLIST_SCB
);
1342 ins
->record_mixer_scb
= record_mix_scb
;
1344 if (!record_mix_scb
) goto _fail_end
;
1346 valid_slots
= snd_cs46xx_peekBA0(chip
, BA0_ACOSV
);
1348 snd_assert (chip
->nr_ac97_codecs
== 1 || chip
->nr_ac97_codecs
== 2);
1350 if (chip
->nr_ac97_codecs
== 1) {
1351 /* output on slot 5 and 11
1356 /* enable slot 5 and 11 */
1357 valid_slots
|= ACOSV_SLV5
| ACOSV_SLV11
;
1359 /* output on slot 7 and 8
1360 on secondary CODEC */
1364 /* enable slot 7 and 8 */
1365 valid_slots
|= ACOSV_SLV7
| ACOSV_SLV8
;
1367 /* create CODEC tasklet for rear speakers output*/
1368 rear_codec_out_scb
= cs46xx_dsp_create_codec_out_scb(chip
,"CodecOutSCB_Rear",fifo_span
,fifo_addr
,
1369 REAR_MIXER_SCB_ADDR
,
1370 REAR_CODECOUT_SCB_ADDR
,codec_in_scb
,
1371 SCB_ON_PARENT_NEXT_SCB
);
1372 if (!rear_codec_out_scb
) goto _fail_end
;
1375 /* create the rear PCM channel mixer SCB */
1376 rear_mix_scb
= cs46xx_dsp_create_mix_only_scb(chip
,"RearMixerSCB",
1378 REAR_MIXER_SCB_ADDR
,
1380 SCB_ON_PARENT_SUBLIST_SCB
);
1381 ins
->rear_mix_scb
= rear_mix_scb
;
1382 if (!rear_mix_scb
) goto _fail_end
;
1384 if (chip
->nr_ac97_codecs
== 2) {
1385 /* create CODEC tasklet for rear Center/LFE output
1386 slot 6 and 9 on seconadry CODEC */
1387 clfe_codec_out_scb
= cs46xx_dsp_create_codec_out_scb(chip
,"CodecOutSCB_CLFE",0x0030,0x0030,
1388 CLFE_MIXER_SCB_ADDR
,
1389 CLFE_CODEC_SCB_ADDR
,
1391 SCB_ON_PARENT_NEXT_SCB
);
1392 if (!clfe_codec_out_scb
) goto _fail_end
;
1395 /* create the rear PCM channel mixer SCB */
1396 ins
->center_lfe_mix_scb
= cs46xx_dsp_create_mix_only_scb(chip
,"CLFEMixerSCB",
1398 CLFE_MIXER_SCB_ADDR
,
1400 SCB_ON_PARENT_SUBLIST_SCB
);
1401 if (!ins
->center_lfe_mix_scb
) goto _fail_end
;
1403 /* enable slot 6 and 9 */
1404 valid_slots
|= ACOSV_SLV6
| ACOSV_SLV9
;
1406 clfe_codec_out_scb
= rear_codec_out_scb
;
1407 ins
->center_lfe_mix_scb
= rear_mix_scb
;
1410 /* enable slots depending on CODEC configuration */
1411 snd_cs46xx_pokeBA0(chip
, BA0_ACOSV
, valid_slots
);
1413 /* the magic snooper */
1414 magic_snoop_scb
= cs46xx_dsp_create_magic_snoop_scb (chip
,"MagicSnoopSCB_I",OUTPUTSNOOP_SCB_ADDR
,
1415 OUTPUT_SNOOP_BUFFER
,
1418 SCB_ON_PARENT_NEXT_SCB
);
1421 if (!magic_snoop_scb
) goto _fail_end
;
1422 ins
->ref_snoop_scb
= magic_snoop_scb
;
1425 if (!cs46xx_dsp_create_spio_write_scb(chip
,"SPIOWriteSCB",SPIOWRITE_SCB_ADDR
,
1427 SCB_ON_PARENT_NEXT_SCB
))
1430 /* SPDIF input sampel rate converter */
1431 src_task_scb
= cs46xx_dsp_create_src_task_scb(chip
,"SrcTaskSCB_SPDIFI",
1432 ins
->spdif_in_sample_rate
,
1434 SRC_DELAY_BUF1
,SRCTASK_SCB_ADDR
,
1436 SCB_ON_PARENT_SUBLIST_SCB
,1);
1438 if (!src_task_scb
) goto _fail_end
;
1439 cs46xx_src_unlink(chip
,src_task_scb
);
1441 /* NOTE: when we now how to detect the SPDIF input
1442 sample rate we will use this SRC to adjust it */
1443 ins
->spdif_in_src
= src_task_scb
;
1445 cs46xx_dsp_async_init(chip
,timing_master_scb
);
1449 snd_printk(KERN_ERR
"dsp_spos: failed to setup SCB's in DSP\n");
1453 static int cs46xx_dsp_async_init (struct snd_cs46xx
*chip
,
1454 struct dsp_scb_descriptor
* fg_entry
)
1456 struct dsp_spos_instance
* ins
= chip
->dsp_spos_instance
;
1457 struct dsp_symbol_entry
* s16_async_codec_input_task
;
1458 struct dsp_symbol_entry
* spdifo_task
;
1459 struct dsp_symbol_entry
* spdifi_task
;
1460 struct dsp_scb_descriptor
* spdifi_scb_desc
, * spdifo_scb_desc
, * async_codec_scb_desc
;
1462 s16_async_codec_input_task
= cs46xx_dsp_lookup_symbol(chip
, "S16_ASYNCCODECINPUTTASK", SYMBOL_CODE
);
1463 if (s16_async_codec_input_task
== NULL
) {
1464 snd_printk(KERN_ERR
"dsp_spos: symbol S16_ASYNCCODECINPUTTASK not found\n");
1467 spdifo_task
= cs46xx_dsp_lookup_symbol(chip
, "SPDIFOTASK", SYMBOL_CODE
);
1468 if (spdifo_task
== NULL
) {
1469 snd_printk(KERN_ERR
"dsp_spos: symbol SPDIFOTASK not found\n");
1473 spdifi_task
= cs46xx_dsp_lookup_symbol(chip
, "SPDIFITASK", SYMBOL_CODE
);
1474 if (spdifi_task
== NULL
) {
1475 snd_printk(KERN_ERR
"dsp_spos: symbol SPDIFITASK not found\n");
1481 struct dsp_spdifoscb spdifo_scb
= {
1482 /* 0 */ DSP_SPOS_UUUU
,
1489 /* NOTE: the SPDIF output task read samples in mono
1490 format, the AsynchFGTxSCB task writes to buffer
1493 /* 5 */ RSCONFIG_SAMPLE_16MONO
+ RSCONFIG_MODULO_256
,
1494 /* 6 */ ( SPDIFO_IP_OUTPUT_BUFFER1
<< 0x10 ) | 0xFFFC,
1497 /* 9 */ FG_TASK_HEADER_ADDR
, NULL_SCB_ADDR
,
1498 /* A */ spdifo_task
->address
,
1499 SPDIFO_SCB_INST
+ SPDIFOFIFOPointer
,
1501 /* B */ 0x0040, /*DSP_SPOS_UUUU,*/
1502 /* C */ 0x20ff, /*DSP_SPOS_UUUU,*/
1504 /* D */ 0x804c,0, /* SPDIFOFIFOPointer:SPDIFOStatRegAddr; */
1505 /* E */ 0x0108,0x0001, /* SPDIFOStMoFormat:SPDIFOFIFOBaseAddr; */
1506 /* F */ DSP_SPOS_UUUU
/* SPDIFOFree; */
1510 struct dsp_spdifiscb spdifi_scb
= {
1511 /* 0 */ DSP_SPOS_UULO
,DSP_SPOS_UUHI
,
1514 /* 3 */ 1,4000, /* SPDIFICountLimit SPDIFICount */
1515 /* 4 */ DSP_SPOS_UUUU
, /* SPDIFIStatusData */
1516 /* 5 */ 0,DSP_SPOS_UUHI
, /* StatusData, Free4 */
1517 /* 6 */ DSP_SPOS_UUUU
, /* Free3 */
1518 /* 7 */ DSP_SPOS_UU
,DSP_SPOS_DC
, /* Free2 BitCount*/
1519 /* 8 */ DSP_SPOS_UUUU
, /* TempStatus */
1520 /* 9 */ SPDIFO_SCB_INST
, NULL_SCB_ADDR
,
1521 /* A */ spdifi_task
->address
,
1522 SPDIFI_SCB_INST
+ SPDIFIFIFOPointer
,
1523 /* NOTE: The SPDIF input task write the sample in mono
1524 format from the HW FIFO, the AsynchFGRxSCB task reads
1527 /* B */ RSCONFIG_SAMPLE_16MONO
+ RSCONFIG_MODULO_128
,
1528 /* C */ (SPDIFI_IP_OUTPUT_BUFFER1
<< 0x10) | 0xFFFC,
1530 /* E */ 0x01f0,0x0001,
1531 /* F */ DSP_SPOS_UUUU
/* SPDIN_STATUS monitor */
1535 struct dsp_async_codec_input_scb async_codec_input_scb
= {
1536 /* 0 */ DSP_SPOS_UUUU
,
1540 /* 4 */ 0x0118,0x0001,
1541 /* 5 */ RSCONFIG_SAMPLE_16MONO
+ RSCONFIG_MODULO_64
,
1542 /* 6 */ (ASYNC_IP_OUTPUT_BUFFER1
<< 0x10) | 0xFFFC,
1543 /* 7 */ DSP_SPOS_UU
,0x3,
1544 /* 8 */ DSP_SPOS_UUUU
,
1545 /* 9 */ SPDIFI_SCB_INST
,NULL_SCB_ADDR
,
1546 /* A */ s16_async_codec_input_task
->address
,
1547 HFG_TREE_SCB
+ AsyncCIOFIFOPointer
,
1549 /* B */ RSCONFIG_SAMPLE_16STEREO
+ RSCONFIG_MODULO_64
,
1550 /* C */ (ASYNC_IP_OUTPUT_BUFFER1
<< 0x10), /*(ASYNC_IP_OUTPUT_BUFFER1 << 0x10) | 0xFFFC,*/
1552 #ifdef UseASER1Input
1553 /* short AsyncCIFIFOPointer:AsyncCIStatRegAddr;
1554 Init. 0000:8042: for ASER1
1555 0000:8044: for ASER2 */
1558 /* short AsyncCIStMoFormat:AsyncCIFIFOBaseAddr;
1559 Init 1 stero:8050 ASER1
1560 Init 0 mono:8070 ASER2
1561 Init 1 Stereo : 0100 ASER1 (Set by script) */
1562 /* E */ 0x0100,0x0001,
1566 #ifdef UseASER2Input
1567 /* short AsyncCIFIFOPointer:AsyncCIStatRegAddr;
1568 Init. 0000:8042: for ASER1
1569 0000:8044: for ASER2 */
1572 /* short AsyncCIStMoFormat:AsyncCIFIFOBaseAddr;
1573 Init 1 stero:8050 ASER1
1574 Init 0 mono:8070 ASER2
1575 Init 1 Stereo : 0100 ASER1 (Set by script) */
1576 /* E */ 0x0110,0x0001,
1580 /* short AsyncCIOutputBufModulo:AsyncCIFree;
1581 AsyncCIOutputBufModulo: The modulo size for
1582 the output buffer of this task */
1583 /* F */ 0, /* DSP_SPOS_UUUU */
1586 spdifo_scb_desc
= cs46xx_dsp_create_scb(chip
,"SPDIFOSCB",(u32
*)&spdifo_scb
,SPDIFO_SCB_INST
);
1588 snd_assert(spdifo_scb_desc
, return -EIO
);
1589 spdifi_scb_desc
= cs46xx_dsp_create_scb(chip
,"SPDIFISCB",(u32
*)&spdifi_scb
,SPDIFI_SCB_INST
);
1590 snd_assert(spdifi_scb_desc
, return -EIO
);
1591 async_codec_scb_desc
= cs46xx_dsp_create_scb(chip
,"AsynCodecInputSCB",(u32
*)&async_codec_input_scb
, HFG_TREE_SCB
);
1592 snd_assert(async_codec_scb_desc
, return -EIO
);
1594 async_codec_scb_desc
->parent_scb_ptr
= NULL
;
1595 async_codec_scb_desc
->next_scb_ptr
= spdifi_scb_desc
;
1596 async_codec_scb_desc
->sub_list_ptr
= ins
->the_null_scb
;
1597 async_codec_scb_desc
->task_entry
= s16_async_codec_input_task
;
1599 spdifi_scb_desc
->parent_scb_ptr
= async_codec_scb_desc
;
1600 spdifi_scb_desc
->next_scb_ptr
= spdifo_scb_desc
;
1601 spdifi_scb_desc
->sub_list_ptr
= ins
->the_null_scb
;
1602 spdifi_scb_desc
->task_entry
= spdifi_task
;
1604 spdifo_scb_desc
->parent_scb_ptr
= spdifi_scb_desc
;
1605 spdifo_scb_desc
->next_scb_ptr
= fg_entry
;
1606 spdifo_scb_desc
->sub_list_ptr
= ins
->the_null_scb
;
1607 spdifo_scb_desc
->task_entry
= spdifo_task
;
1609 /* this one is faked, as the parnet of SPDIFO task
1610 is the FG task tree */
1611 fg_entry
->parent_scb_ptr
= spdifo_scb_desc
;
1614 cs46xx_dsp_proc_register_scb_desc (chip
,spdifo_scb_desc
);
1615 cs46xx_dsp_proc_register_scb_desc (chip
,spdifi_scb_desc
);
1616 cs46xx_dsp_proc_register_scb_desc (chip
,async_codec_scb_desc
);
1618 /* Async MASTER ENABLE, affects both SPDIF input and output */
1619 snd_cs46xx_pokeBA0(chip
, BA0_ASER_MASTER
, 0x1 );
1626 static void cs46xx_dsp_disable_spdif_hw (struct snd_cs46xx
*chip
)
1628 struct dsp_spos_instance
* ins
= chip
->dsp_spos_instance
;
1630 /* set SPDIF output FIFO slot */
1631 snd_cs46xx_pokeBA0(chip
, BA0_ASER_FADDR
, 0);
1633 /* SPDIF output MASTER ENABLE */
1634 cs46xx_poke_via_dsp (chip
,SP_SPDOUT_CONTROL
, 0);
1636 /* right and left validate bit */
1637 /*cs46xx_poke_via_dsp (chip,SP_SPDOUT_CSUV, ins->spdif_csuv_default);*/
1638 cs46xx_poke_via_dsp (chip
,SP_SPDOUT_CSUV
, 0x0);
1640 /* clear fifo pointer */
1641 cs46xx_poke_via_dsp (chip
,SP_SPDIN_FIFOPTR
, 0x0);
1644 ins
->spdif_status_out
&= ~DSP_SPDIF_STATUS_HW_ENABLED
;
1647 int cs46xx_dsp_enable_spdif_hw (struct snd_cs46xx
*chip
)
1649 struct dsp_spos_instance
* ins
= chip
->dsp_spos_instance
;
1651 /* if hw-ctrl already enabled, turn off to reset logic ... */
1652 cs46xx_dsp_disable_spdif_hw (chip
);
1655 /* set SPDIF output FIFO slot */
1656 snd_cs46xx_pokeBA0(chip
, BA0_ASER_FADDR
, ( 0x8000 | ((SP_SPDOUT_FIFO
>> 4) << 4) ));
1658 /* SPDIF output MASTER ENABLE */
1659 cs46xx_poke_via_dsp (chip
,SP_SPDOUT_CONTROL
, 0x80000000);
1661 /* right and left validate bit */
1662 cs46xx_poke_via_dsp (chip
,SP_SPDOUT_CSUV
, ins
->spdif_csuv_default
);
1665 ins
->spdif_status_out
|= DSP_SPDIF_STATUS_HW_ENABLED
;
1670 int cs46xx_dsp_enable_spdif_in (struct snd_cs46xx
*chip
)
1672 struct dsp_spos_instance
* ins
= chip
->dsp_spos_instance
;
1674 /* turn on amplifier */
1675 chip
->active_ctrl(chip
, 1);
1676 chip
->amplifier_ctrl(chip
, 1);
1678 snd_assert (ins
->asynch_rx_scb
== NULL
,return -EINVAL
);
1679 snd_assert (ins
->spdif_in_src
!= NULL
,return -EINVAL
);
1681 mutex_lock(&chip
->spos_mutex
);
1683 if ( ! (ins
->spdif_status_out
& DSP_SPDIF_STATUS_INPUT_CTRL_ENABLED
) ) {
1684 /* time countdown enable */
1685 cs46xx_poke_via_dsp (chip
,SP_ASER_COUNTDOWN
, 0x80000005);
1686 /* NOTE: 80000005 value is just magic. With all values
1687 that I've tested this one seem to give the best result.
1688 Got no explication why. (Benny) */
1690 /* SPDIF input MASTER ENABLE */
1691 cs46xx_poke_via_dsp (chip
,SP_SPDIN_CONTROL
, 0x800003ff);
1693 ins
->spdif_status_out
|= DSP_SPDIF_STATUS_INPUT_CTRL_ENABLED
;
1696 /* create and start the asynchronous receiver SCB */
1697 ins
->asynch_rx_scb
= cs46xx_dsp_create_asynch_fg_rx_scb(chip
,"AsynchFGRxSCB",
1700 SPDIFI_IP_OUTPUT_BUFFER1
,
1702 SCB_ON_PARENT_SUBLIST_SCB
);
1704 spin_lock_irq(&chip
->reg_lock
);
1706 /* reset SPDIF input sample buffer pointer */
1707 /*snd_cs46xx_poke (chip, (SPDIFI_SCB_INST + 0x0c) << 2,
1708 (SPDIFI_IP_OUTPUT_BUFFER1 << 0x10) | 0xFFFC);*/
1710 /* reset FIFO ptr */
1711 /*cs46xx_poke_via_dsp (chip,SP_SPDIN_FIFOPTR, 0x0);*/
1712 cs46xx_src_link(chip
,ins
->spdif_in_src
);
1714 /* unmute SRC volume */
1715 cs46xx_dsp_scb_set_volume (chip
,ins
->spdif_in_src
,0x7fff,0x7fff);
1717 spin_unlock_irq(&chip
->reg_lock
);
1719 /* set SPDIF input sample rate and unmute
1720 NOTE: only 48khz support for SPDIF input this time */
1721 /* cs46xx_dsp_set_src_sample_rate(chip,ins->spdif_in_src,48000); */
1724 ins
->spdif_status_in
= 1;
1725 mutex_unlock(&chip
->spos_mutex
);
1730 int cs46xx_dsp_disable_spdif_in (struct snd_cs46xx
*chip
)
1732 struct dsp_spos_instance
* ins
= chip
->dsp_spos_instance
;
1734 snd_assert (ins
->asynch_rx_scb
!= NULL
, return -EINVAL
);
1735 snd_assert (ins
->spdif_in_src
!= NULL
,return -EINVAL
);
1737 mutex_lock(&chip
->spos_mutex
);
1739 /* Remove the asynchronous receiver SCB */
1740 cs46xx_dsp_remove_scb (chip
,ins
->asynch_rx_scb
);
1741 ins
->asynch_rx_scb
= NULL
;
1743 cs46xx_src_unlink(chip
,ins
->spdif_in_src
);
1746 ins
->spdif_status_in
= 0;
1747 mutex_unlock(&chip
->spos_mutex
);
1749 /* restore amplifier */
1750 chip
->active_ctrl(chip
, -1);
1751 chip
->amplifier_ctrl(chip
, -1);
1756 int cs46xx_dsp_enable_pcm_capture (struct snd_cs46xx
*chip
)
1758 struct dsp_spos_instance
* ins
= chip
->dsp_spos_instance
;
1760 snd_assert (ins
->pcm_input
== NULL
,return -EINVAL
);
1761 snd_assert (ins
->ref_snoop_scb
!= NULL
,return -EINVAL
);
1763 mutex_lock(&chip
->spos_mutex
);
1764 ins
->pcm_input
= cs46xx_add_record_source(chip
,ins
->ref_snoop_scb
,PCMSERIALIN_PCM_SCB_ADDR
,
1765 "PCMSerialInput_Wave");
1766 mutex_unlock(&chip
->spos_mutex
);
1771 int cs46xx_dsp_disable_pcm_capture (struct snd_cs46xx
*chip
)
1773 struct dsp_spos_instance
* ins
= chip
->dsp_spos_instance
;
1775 snd_assert (ins
->pcm_input
!= NULL
,return -EINVAL
);
1777 mutex_lock(&chip
->spos_mutex
);
1778 cs46xx_dsp_remove_scb (chip
,ins
->pcm_input
);
1779 ins
->pcm_input
= NULL
;
1780 mutex_unlock(&chip
->spos_mutex
);
1785 int cs46xx_dsp_enable_adc_capture (struct snd_cs46xx
*chip
)
1787 struct dsp_spos_instance
* ins
= chip
->dsp_spos_instance
;
1789 snd_assert (ins
->adc_input
== NULL
,return -EINVAL
);
1790 snd_assert (ins
->codec_in_scb
!= NULL
,return -EINVAL
);
1792 mutex_lock(&chip
->spos_mutex
);
1793 ins
->adc_input
= cs46xx_add_record_source(chip
,ins
->codec_in_scb
,PCMSERIALIN_SCB_ADDR
,
1794 "PCMSerialInput_ADC");
1795 mutex_unlock(&chip
->spos_mutex
);
1800 int cs46xx_dsp_disable_adc_capture (struct snd_cs46xx
*chip
)
1802 struct dsp_spos_instance
* ins
= chip
->dsp_spos_instance
;
1804 snd_assert (ins
->adc_input
!= NULL
,return -EINVAL
);
1806 mutex_lock(&chip
->spos_mutex
);
1807 cs46xx_dsp_remove_scb (chip
,ins
->adc_input
);
1808 ins
->adc_input
= NULL
;
1809 mutex_unlock(&chip
->spos_mutex
);
1814 int cs46xx_poke_via_dsp (struct snd_cs46xx
*chip
, u32 address
, u32 data
)
1819 /* santiy check the parameters. (These numbers are not 100% correct. They are
1820 a rough guess from looking at the controller spec.) */
1821 if (address
< 0x8000 || address
>= 0x9000)
1824 /* initialize the SP_IO_WRITE SCB with the data. */
1825 temp
= ( address
<< 16 ) | ( address
& 0x0000FFFF); /* offset 0 <-- address2 : address1 */
1827 snd_cs46xx_poke(chip
,( SPIOWRITE_SCB_ADDR
<< 2), temp
);
1828 snd_cs46xx_poke(chip
,((SPIOWRITE_SCB_ADDR
+ 1) << 2), data
); /* offset 1 <-- data1 */
1829 snd_cs46xx_poke(chip
,((SPIOWRITE_SCB_ADDR
+ 2) << 2), data
); /* offset 1 <-- data2 */
1831 /* Poke this location to tell the task to start */
1832 snd_cs46xx_poke(chip
,((SPIOWRITE_SCB_ADDR
+ 6) << 2), SPIOWRITE_SCB_ADDR
<< 0x10);
1834 /* Verify that the task ran */
1835 for (i
=0; i
<25; i
++) {
1838 temp
= snd_cs46xx_peek(chip
,((SPIOWRITE_SCB_ADDR
+ 6) << 2));
1839 if (temp
== 0x00000000)
1844 snd_printk(KERN_ERR
"dsp_spos: SPIOWriteTask not responding\n");
1851 int cs46xx_dsp_set_dac_volume (struct snd_cs46xx
* chip
, u16 left
, u16 right
)
1853 struct dsp_spos_instance
* ins
= chip
->dsp_spos_instance
;
1854 struct dsp_scb_descriptor
* scb
;
1856 mutex_lock(&chip
->spos_mutex
);
1859 scb
= ins
->master_mix_scb
->sub_list_ptr
;
1860 while (scb
!= ins
->the_null_scb
) {
1861 cs46xx_dsp_scb_set_volume (chip
,scb
,left
,right
);
1862 scb
= scb
->next_scb_ptr
;
1866 scb
= ins
->rear_mix_scb
->sub_list_ptr
;
1867 while (scb
!= ins
->the_null_scb
) {
1868 cs46xx_dsp_scb_set_volume (chip
,scb
,left
,right
);
1869 scb
= scb
->next_scb_ptr
;
1872 ins
->dac_volume_left
= left
;
1873 ins
->dac_volume_right
= right
;
1875 mutex_unlock(&chip
->spos_mutex
);
1880 int cs46xx_dsp_set_iec958_volume (struct snd_cs46xx
* chip
, u16 left
, u16 right
)
1882 struct dsp_spos_instance
* ins
= chip
->dsp_spos_instance
;
1884 mutex_lock(&chip
->spos_mutex
);
1886 if (ins
->asynch_rx_scb
!= NULL
)
1887 cs46xx_dsp_scb_set_volume (chip
,ins
->asynch_rx_scb
,
1890 ins
->spdif_input_volume_left
= left
;
1891 ins
->spdif_input_volume_right
= right
;
1893 mutex_unlock(&chip
->spos_mutex
);