Loading...
1/*
2 * Copyright (c) by Jaroslav Kysela <perex@perex.cz>
3 * Abramo Bagnara <abramo@alsa-project.org>
4 * Cirrus Logic, Inc.
5 * Routines for control of Cirrus Logic CS461x chips
6 *
7 * KNOWN BUGS:
8 * - Sometimes the SPDIF input DSP tasks get's unsynchronized
9 * and the SPDIF get somewhat "distorcionated", or/and left right channel
10 * are swapped. To get around this problem when it happens, mute and unmute
11 * the SPDIF input mixer control.
12 * - On the Hercules Game Theater XP the amplifier are sometimes turned
13 * off on inadecuate moments which causes distorcions on sound.
14 *
15 * TODO:
16 * - Secondary CODEC on some soundcards
17 * - SPDIF input support for other sample rates then 48khz
18 * - Posibility to mix the SPDIF output with analog sources.
19 * - PCM channels for Center and LFE on secondary codec
20 *
21 * NOTE: with CONFIG_SND_CS46XX_NEW_DSP unset uses old DSP image (which
22 * is default configuration), no SPDIF, no secondary codec, no
23 * multi channel PCM. But known to work.
24 *
25 * FINALLY: A credit to the developers Tom and Jordan
26 * at Cirrus for have helping me out with the DSP, however we
27 * still don't have sufficient documentation and technical
28 * references to be able to implement all fancy feutures
29 * supported by the cs46xx DSP's.
30 * Benny <benny@hostmobility.com>
31 *
32 * This program is free software; you can redistribute it and/or modify
33 * it under the terms of the GNU General Public License as published by
34 * the Free Software Foundation; either version 2 of the License, or
35 * (at your option) any later version.
36 *
37 * This program is distributed in the hope that it will be useful,
38 * but WITHOUT ANY WARRANTY; without even the implied warranty of
39 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
40 * GNU General Public License for more details.
41 *
42 * You should have received a copy of the GNU General Public License
43 * along with this program; if not, write to the Free Software
44 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
45 *
46 */
47
48#include <linux/delay.h>
49#include <linux/pci.h>
50#include <linux/pm.h>
51#include <linux/init.h>
52#include <linux/interrupt.h>
53#include <linux/slab.h>
54#include <linux/gameport.h>
55#include <linux/mutex.h>
56#include <linux/export.h>
57#include <linux/module.h>
58#include <linux/firmware.h>
59#include <linux/vmalloc.h>
60
61#include <sound/core.h>
62#include <sound/control.h>
63#include <sound/info.h>
64#include <sound/pcm.h>
65#include <sound/pcm_params.h>
66#include "cs46xx.h"
67
68#include <asm/io.h>
69
70#include "cs46xx_lib.h"
71#include "dsp_spos.h"
72
73static void amp_voyetra(struct snd_cs46xx *chip, int change);
74
75#ifdef CONFIG_SND_CS46XX_NEW_DSP
76static struct snd_pcm_ops snd_cs46xx_playback_rear_ops;
77static struct snd_pcm_ops snd_cs46xx_playback_indirect_rear_ops;
78static struct snd_pcm_ops snd_cs46xx_playback_clfe_ops;
79static struct snd_pcm_ops snd_cs46xx_playback_indirect_clfe_ops;
80static struct snd_pcm_ops snd_cs46xx_playback_iec958_ops;
81static struct snd_pcm_ops snd_cs46xx_playback_indirect_iec958_ops;
82#endif
83
84static struct snd_pcm_ops snd_cs46xx_playback_ops;
85static struct snd_pcm_ops snd_cs46xx_playback_indirect_ops;
86static struct snd_pcm_ops snd_cs46xx_capture_ops;
87static struct snd_pcm_ops snd_cs46xx_capture_indirect_ops;
88
89static unsigned short snd_cs46xx_codec_read(struct snd_cs46xx *chip,
90 unsigned short reg,
91 int codec_index)
92{
93 int count;
94 unsigned short result,tmp;
95 u32 offset = 0;
96
97 if (snd_BUG_ON(codec_index != CS46XX_PRIMARY_CODEC_INDEX &&
98 codec_index != CS46XX_SECONDARY_CODEC_INDEX))
99 return 0xffff;
100
101 chip->active_ctrl(chip, 1);
102
103 if (codec_index == CS46XX_SECONDARY_CODEC_INDEX)
104 offset = CS46XX_SECONDARY_CODEC_OFFSET;
105
106 /*
107 * 1. Write ACCAD = Command Address Register = 46Ch for AC97 register address
108 * 2. Write ACCDA = Command Data Register = 470h for data to write to AC97
109 * 3. Write ACCTL = Control Register = 460h for initiating the write7---55
110 * 4. Read ACCTL = 460h, DCV should be reset by now and 460h = 17h
111 * 5. if DCV not cleared, break and return error
112 * 6. Read ACSTS = Status Register = 464h, check VSTS bit
113 */
114
115 snd_cs46xx_peekBA0(chip, BA0_ACSDA + offset);
116
117 tmp = snd_cs46xx_peekBA0(chip, BA0_ACCTL);
118 if ((tmp & ACCTL_VFRM) == 0) {
119 dev_warn(chip->card->dev, "ACCTL_VFRM not set 0x%x\n", tmp);
120 snd_cs46xx_pokeBA0(chip, BA0_ACCTL, (tmp & (~ACCTL_ESYN)) | ACCTL_VFRM );
121 msleep(50);
122 tmp = snd_cs46xx_peekBA0(chip, BA0_ACCTL + offset);
123 snd_cs46xx_pokeBA0(chip, BA0_ACCTL, tmp | ACCTL_ESYN | ACCTL_VFRM );
124
125 }
126
127 /*
128 * Setup the AC97 control registers on the CS461x to send the
129 * appropriate command to the AC97 to perform the read.
130 * ACCAD = Command Address Register = 46Ch
131 * ACCDA = Command Data Register = 470h
132 * ACCTL = Control Register = 460h
133 * set DCV - will clear when process completed
134 * set CRW - Read command
135 * set VFRM - valid frame enabled
136 * set ESYN - ASYNC generation enabled
137 * set RSTN - ARST# inactive, AC97 codec not reset
138 */
139
140 snd_cs46xx_pokeBA0(chip, BA0_ACCAD, reg);
141 snd_cs46xx_pokeBA0(chip, BA0_ACCDA, 0);
142 if (codec_index == CS46XX_PRIMARY_CODEC_INDEX) {
143 snd_cs46xx_pokeBA0(chip, BA0_ACCTL,/* clear ACCTL_DCV */ ACCTL_CRW |
144 ACCTL_VFRM | ACCTL_ESYN |
145 ACCTL_RSTN);
146 snd_cs46xx_pokeBA0(chip, BA0_ACCTL, ACCTL_DCV | ACCTL_CRW |
147 ACCTL_VFRM | ACCTL_ESYN |
148 ACCTL_RSTN);
149 } else {
150 snd_cs46xx_pokeBA0(chip, BA0_ACCTL, ACCTL_DCV | ACCTL_TC |
151 ACCTL_CRW | ACCTL_VFRM | ACCTL_ESYN |
152 ACCTL_RSTN);
153 }
154
155 /*
156 * Wait for the read to occur.
157 */
158 for (count = 0; count < 1000; count++) {
159 /*
160 * First, we want to wait for a short time.
161 */
162 udelay(10);
163 /*
164 * Now, check to see if the read has completed.
165 * ACCTL = 460h, DCV should be reset by now and 460h = 17h
166 */
167 if (!(snd_cs46xx_peekBA0(chip, BA0_ACCTL) & ACCTL_DCV))
168 goto ok1;
169 }
170
171 dev_err(chip->card->dev,
172 "AC'97 read problem (ACCTL_DCV), reg = 0x%x\n", reg);
173 result = 0xffff;
174 goto end;
175
176 ok1:
177 /*
178 * Wait for the valid status bit to go active.
179 */
180 for (count = 0; count < 100; count++) {
181 /*
182 * Read the AC97 status register.
183 * ACSTS = Status Register = 464h
184 * VSTS - Valid Status
185 */
186 if (snd_cs46xx_peekBA0(chip, BA0_ACSTS + offset) & ACSTS_VSTS)
187 goto ok2;
188 udelay(10);
189 }
190
191 dev_err(chip->card->dev,
192 "AC'97 read problem (ACSTS_VSTS), codec_index %d, reg = 0x%x\n",
193 codec_index, reg);
194 result = 0xffff;
195 goto end;
196
197 ok2:
198 /*
199 * Read the data returned from the AC97 register.
200 * ACSDA = Status Data Register = 474h
201 */
202#if 0
203 dev_dbg(chip->card->dev,
204 "e) reg = 0x%x, val = 0x%x, BA0_ACCAD = 0x%x\n", reg,
205 snd_cs46xx_peekBA0(chip, BA0_ACSDA),
206 snd_cs46xx_peekBA0(chip, BA0_ACCAD));
207#endif
208
209 //snd_cs46xx_peekBA0(chip, BA0_ACCAD);
210 result = snd_cs46xx_peekBA0(chip, BA0_ACSDA + offset);
211 end:
212 chip->active_ctrl(chip, -1);
213 return result;
214}
215
216static unsigned short snd_cs46xx_ac97_read(struct snd_ac97 * ac97,
217 unsigned short reg)
218{
219 struct snd_cs46xx *chip = ac97->private_data;
220 unsigned short val;
221 int codec_index = ac97->num;
222
223 if (snd_BUG_ON(codec_index != CS46XX_PRIMARY_CODEC_INDEX &&
224 codec_index != CS46XX_SECONDARY_CODEC_INDEX))
225 return 0xffff;
226
227 val = snd_cs46xx_codec_read(chip, reg, codec_index);
228
229 return val;
230}
231
232
233static void snd_cs46xx_codec_write(struct snd_cs46xx *chip,
234 unsigned short reg,
235 unsigned short val,
236 int codec_index)
237{
238 int count;
239
240 if (snd_BUG_ON(codec_index != CS46XX_PRIMARY_CODEC_INDEX &&
241 codec_index != CS46XX_SECONDARY_CODEC_INDEX))
242 return;
243
244 chip->active_ctrl(chip, 1);
245
246 /*
247 * 1. Write ACCAD = Command Address Register = 46Ch for AC97 register address
248 * 2. Write ACCDA = Command Data Register = 470h for data to write to AC97
249 * 3. Write ACCTL = Control Register = 460h for initiating the write
250 * 4. Read ACCTL = 460h, DCV should be reset by now and 460h = 07h
251 * 5. if DCV not cleared, break and return error
252 */
253
254 /*
255 * Setup the AC97 control registers on the CS461x to send the
256 * appropriate command to the AC97 to perform the read.
257 * ACCAD = Command Address Register = 46Ch
258 * ACCDA = Command Data Register = 470h
259 * ACCTL = Control Register = 460h
260 * set DCV - will clear when process completed
261 * reset CRW - Write command
262 * set VFRM - valid frame enabled
263 * set ESYN - ASYNC generation enabled
264 * set RSTN - ARST# inactive, AC97 codec not reset
265 */
266 snd_cs46xx_pokeBA0(chip, BA0_ACCAD , reg);
267 snd_cs46xx_pokeBA0(chip, BA0_ACCDA , val);
268 snd_cs46xx_peekBA0(chip, BA0_ACCTL);
269
270 if (codec_index == CS46XX_PRIMARY_CODEC_INDEX) {
271 snd_cs46xx_pokeBA0(chip, BA0_ACCTL, /* clear ACCTL_DCV */ ACCTL_VFRM |
272 ACCTL_ESYN | ACCTL_RSTN);
273 snd_cs46xx_pokeBA0(chip, BA0_ACCTL, ACCTL_DCV | ACCTL_VFRM |
274 ACCTL_ESYN | ACCTL_RSTN);
275 } else {
276 snd_cs46xx_pokeBA0(chip, BA0_ACCTL, ACCTL_DCV | ACCTL_TC |
277 ACCTL_VFRM | ACCTL_ESYN | ACCTL_RSTN);
278 }
279
280 for (count = 0; count < 4000; count++) {
281 /*
282 * First, we want to wait for a short time.
283 */
284 udelay(10);
285 /*
286 * Now, check to see if the write has completed.
287 * ACCTL = 460h, DCV should be reset by now and 460h = 07h
288 */
289 if (!(snd_cs46xx_peekBA0(chip, BA0_ACCTL) & ACCTL_DCV)) {
290 goto end;
291 }
292 }
293 dev_err(chip->card->dev,
294 "AC'97 write problem, codec_index = %d, reg = 0x%x, val = 0x%x\n",
295 codec_index, reg, val);
296 end:
297 chip->active_ctrl(chip, -1);
298}
299
300static void snd_cs46xx_ac97_write(struct snd_ac97 *ac97,
301 unsigned short reg,
302 unsigned short val)
303{
304 struct snd_cs46xx *chip = ac97->private_data;
305 int codec_index = ac97->num;
306
307 if (snd_BUG_ON(codec_index != CS46XX_PRIMARY_CODEC_INDEX &&
308 codec_index != CS46XX_SECONDARY_CODEC_INDEX))
309 return;
310
311 snd_cs46xx_codec_write(chip, reg, val, codec_index);
312}
313
314
315/*
316 * Chip initialization
317 */
318
319int snd_cs46xx_download(struct snd_cs46xx *chip,
320 u32 *src,
321 unsigned long offset,
322 unsigned long len)
323{
324 void __iomem *dst;
325 unsigned int bank = offset >> 16;
326 offset = offset & 0xffff;
327
328 if (snd_BUG_ON((offset & 3) || (len & 3)))
329 return -EINVAL;
330 dst = chip->region.idx[bank+1].remap_addr + offset;
331 len /= sizeof(u32);
332
333 /* writel already converts 32-bit value to right endianess */
334 while (len-- > 0) {
335 writel(*src++, dst);
336 dst += sizeof(u32);
337 }
338 return 0;
339}
340
341static inline void memcpy_le32(void *dst, const void *src, unsigned int len)
342{
343#ifdef __LITTLE_ENDIAN
344 memcpy(dst, src, len);
345#else
346 u32 *_dst = dst;
347 const __le32 *_src = src;
348 len /= 4;
349 while (len-- > 0)
350 *_dst++ = le32_to_cpu(*_src++);
351#endif
352}
353
354#ifdef CONFIG_SND_CS46XX_NEW_DSP
355
356static const char *module_names[CS46XX_DSP_MODULES] = {
357 "cwc4630", "cwcasync", "cwcsnoop", "cwcbinhack", "cwcdma"
358};
359
360MODULE_FIRMWARE("cs46xx/cwc4630");
361MODULE_FIRMWARE("cs46xx/cwcasync");
362MODULE_FIRMWARE("cs46xx/cwcsnoop");
363MODULE_FIRMWARE("cs46xx/cwcbinhack");
364MODULE_FIRMWARE("cs46xx/cwcdma");
365
366static void free_module_desc(struct dsp_module_desc *module)
367{
368 if (!module)
369 return;
370 kfree(module->module_name);
371 kfree(module->symbol_table.symbols);
372 if (module->segments) {
373 int i;
374 for (i = 0; i < module->nsegments; i++)
375 kfree(module->segments[i].data);
376 kfree(module->segments);
377 }
378 kfree(module);
379}
380
381/* firmware binary format:
382 * le32 nsymbols;
383 * struct {
384 * le32 address;
385 * char symbol_name[DSP_MAX_SYMBOL_NAME];
386 * le32 symbol_type;
387 * } symbols[nsymbols];
388 * le32 nsegments;
389 * struct {
390 * le32 segment_type;
391 * le32 offset;
392 * le32 size;
393 * le32 data[size];
394 * } segments[nsegments];
395 */
396
397static int load_firmware(struct snd_cs46xx *chip,
398 struct dsp_module_desc **module_ret,
399 const char *fw_name)
400{
401 int i, err;
402 unsigned int nums, fwlen, fwsize;
403 const __le32 *fwdat;
404 struct dsp_module_desc *module = NULL;
405 const struct firmware *fw;
406 char fw_path[32];
407
408 sprintf(fw_path, "cs46xx/%s", fw_name);
409 err = request_firmware(&fw, fw_path, &chip->pci->dev);
410 if (err < 0)
411 return err;
412 fwsize = fw->size / 4;
413 if (fwsize < 2) {
414 err = -EINVAL;
415 goto error;
416 }
417
418 err = -ENOMEM;
419 module = kzalloc(sizeof(*module), GFP_KERNEL);
420 if (!module)
421 goto error;
422 module->module_name = kstrdup(fw_name, GFP_KERNEL);
423 if (!module->module_name)
424 goto error;
425
426 fwlen = 0;
427 fwdat = (const __le32 *)fw->data;
428 nums = module->symbol_table.nsymbols = le32_to_cpu(fwdat[fwlen++]);
429 if (nums >= 40)
430 goto error_inval;
431 module->symbol_table.symbols =
432 kcalloc(nums, sizeof(struct dsp_symbol_entry), GFP_KERNEL);
433 if (!module->symbol_table.symbols)
434 goto error;
435 for (i = 0; i < nums; i++) {
436 struct dsp_symbol_entry *entry =
437 &module->symbol_table.symbols[i];
438 if (fwlen + 2 + DSP_MAX_SYMBOL_NAME / 4 > fwsize)
439 goto error_inval;
440 entry->address = le32_to_cpu(fwdat[fwlen++]);
441 memcpy(entry->symbol_name, &fwdat[fwlen], DSP_MAX_SYMBOL_NAME - 1);
442 fwlen += DSP_MAX_SYMBOL_NAME / 4;
443 entry->symbol_type = le32_to_cpu(fwdat[fwlen++]);
444 }
445
446 if (fwlen >= fwsize)
447 goto error_inval;
448 nums = module->nsegments = le32_to_cpu(fwdat[fwlen++]);
449 if (nums > 10)
450 goto error_inval;
451 module->segments =
452 kcalloc(nums, sizeof(struct dsp_segment_desc), GFP_KERNEL);
453 if (!module->segments)
454 goto error;
455 for (i = 0; i < nums; i++) {
456 struct dsp_segment_desc *entry = &module->segments[i];
457 if (fwlen + 3 > fwsize)
458 goto error_inval;
459 entry->segment_type = le32_to_cpu(fwdat[fwlen++]);
460 entry->offset = le32_to_cpu(fwdat[fwlen++]);
461 entry->size = le32_to_cpu(fwdat[fwlen++]);
462 if (fwlen + entry->size > fwsize)
463 goto error_inval;
464 entry->data = kmalloc(entry->size * 4, GFP_KERNEL);
465 if (!entry->data)
466 goto error;
467 memcpy_le32(entry->data, &fwdat[fwlen], entry->size * 4);
468 fwlen += entry->size;
469 }
470
471 *module_ret = module;
472 release_firmware(fw);
473 return 0;
474
475 error_inval:
476 err = -EINVAL;
477 error:
478 free_module_desc(module);
479 release_firmware(fw);
480 return err;
481}
482
483int snd_cs46xx_clear_BA1(struct snd_cs46xx *chip,
484 unsigned long offset,
485 unsigned long len)
486{
487 void __iomem *dst;
488 unsigned int bank = offset >> 16;
489 offset = offset & 0xffff;
490
491 if (snd_BUG_ON((offset & 3) || (len & 3)))
492 return -EINVAL;
493 dst = chip->region.idx[bank+1].remap_addr + offset;
494 len /= sizeof(u32);
495
496 /* writel already converts 32-bit value to right endianess */
497 while (len-- > 0) {
498 writel(0, dst);
499 dst += sizeof(u32);
500 }
501 return 0;
502}
503
504#else /* old DSP image */
505
506struct ba1_struct {
507 struct {
508 u32 offset;
509 u32 size;
510 } memory[BA1_MEMORY_COUNT];
511 u32 map[BA1_DWORD_SIZE];
512};
513
514MODULE_FIRMWARE("cs46xx/ba1");
515
516static int load_firmware(struct snd_cs46xx *chip)
517{
518 const struct firmware *fw;
519 int i, size, err;
520
521 err = request_firmware(&fw, "cs46xx/ba1", &chip->pci->dev);
522 if (err < 0)
523 return err;
524 if (fw->size != sizeof(*chip->ba1)) {
525 err = -EINVAL;
526 goto error;
527 }
528
529 chip->ba1 = vmalloc(sizeof(*chip->ba1));
530 if (!chip->ba1) {
531 err = -ENOMEM;
532 goto error;
533 }
534
535 memcpy_le32(chip->ba1, fw->data, sizeof(*chip->ba1));
536
537 /* sanity check */
538 size = 0;
539 for (i = 0; i < BA1_MEMORY_COUNT; i++)
540 size += chip->ba1->memory[i].size;
541 if (size > BA1_DWORD_SIZE * 4)
542 err = -EINVAL;
543
544 error:
545 release_firmware(fw);
546 return err;
547}
548
549int snd_cs46xx_download_image(struct snd_cs46xx *chip)
550{
551 int idx, err;
552 unsigned int offset = 0;
553 struct ba1_struct *ba1 = chip->ba1;
554
555 for (idx = 0; idx < BA1_MEMORY_COUNT; idx++) {
556 err = snd_cs46xx_download(chip,
557 &ba1->map[offset],
558 ba1->memory[idx].offset,
559 ba1->memory[idx].size);
560 if (err < 0)
561 return err;
562 offset += ba1->memory[idx].size >> 2;
563 }
564 return 0;
565}
566#endif /* CONFIG_SND_CS46XX_NEW_DSP */
567
568/*
569 * Chip reset
570 */
571
572static void snd_cs46xx_reset(struct snd_cs46xx *chip)
573{
574 int idx;
575
576 /*
577 * Write the reset bit of the SP control register.
578 */
579 snd_cs46xx_poke(chip, BA1_SPCR, SPCR_RSTSP);
580
581 /*
582 * Write the control register.
583 */
584 snd_cs46xx_poke(chip, BA1_SPCR, SPCR_DRQEN);
585
586 /*
587 * Clear the trap registers.
588 */
589 for (idx = 0; idx < 8; idx++) {
590 snd_cs46xx_poke(chip, BA1_DREG, DREG_REGID_TRAP_SELECT + idx);
591 snd_cs46xx_poke(chip, BA1_TWPR, 0xFFFF);
592 }
593 snd_cs46xx_poke(chip, BA1_DREG, 0);
594
595 /*
596 * Set the frame timer to reflect the number of cycles per frame.
597 */
598 snd_cs46xx_poke(chip, BA1_FRMT, 0xadf);
599}
600
601static int cs46xx_wait_for_fifo(struct snd_cs46xx * chip,int retry_timeout)
602{
603 u32 i, status = 0;
604 /*
605 * Make sure the previous FIFO write operation has completed.
606 */
607 for(i = 0; i < 50; i++){
608 status = snd_cs46xx_peekBA0(chip, BA0_SERBST);
609
610 if( !(status & SERBST_WBSY) )
611 break;
612
613 mdelay(retry_timeout);
614 }
615
616 if(status & SERBST_WBSY) {
617 dev_err(chip->card->dev,
618 "failure waiting for FIFO command to complete\n");
619 return -EINVAL;
620 }
621
622 return 0;
623}
624
625static void snd_cs46xx_clear_serial_FIFOs(struct snd_cs46xx *chip)
626{
627 int idx, powerdown = 0;
628 unsigned int tmp;
629
630 /*
631 * See if the devices are powered down. If so, we must power them up first
632 * or they will not respond.
633 */
634 tmp = snd_cs46xx_peekBA0(chip, BA0_CLKCR1);
635 if (!(tmp & CLKCR1_SWCE)) {
636 snd_cs46xx_pokeBA0(chip, BA0_CLKCR1, tmp | CLKCR1_SWCE);
637 powerdown = 1;
638 }
639
640 /*
641 * We want to clear out the serial port FIFOs so we don't end up playing
642 * whatever random garbage happens to be in them. We fill the sample FIFOS
643 * with zero (silence).
644 */
645 snd_cs46xx_pokeBA0(chip, BA0_SERBWP, 0);
646
647 /*
648 * Fill all 256 sample FIFO locations.
649 */
650 for (idx = 0; idx < 0xFF; idx++) {
651 /*
652 * Make sure the previous FIFO write operation has completed.
653 */
654 if (cs46xx_wait_for_fifo(chip,1)) {
655 dev_dbg(chip->card->dev,
656 "failed waiting for FIFO at addr (%02X)\n",
657 idx);
658
659 if (powerdown)
660 snd_cs46xx_pokeBA0(chip, BA0_CLKCR1, tmp);
661
662 break;
663 }
664 /*
665 * Write the serial port FIFO index.
666 */
667 snd_cs46xx_pokeBA0(chip, BA0_SERBAD, idx);
668 /*
669 * Tell the serial port to load the new value into the FIFO location.
670 */
671 snd_cs46xx_pokeBA0(chip, BA0_SERBCM, SERBCM_WRC);
672 }
673 /*
674 * Now, if we powered up the devices, then power them back down again.
675 * This is kinda ugly, but should never happen.
676 */
677 if (powerdown)
678 snd_cs46xx_pokeBA0(chip, BA0_CLKCR1, tmp);
679}
680
681static void snd_cs46xx_proc_start(struct snd_cs46xx *chip)
682{
683 int cnt;
684
685 /*
686 * Set the frame timer to reflect the number of cycles per frame.
687 */
688 snd_cs46xx_poke(chip, BA1_FRMT, 0xadf);
689 /*
690 * Turn on the run, run at frame, and DMA enable bits in the local copy of
691 * the SP control register.
692 */
693 snd_cs46xx_poke(chip, BA1_SPCR, SPCR_RUN | SPCR_RUNFR | SPCR_DRQEN);
694 /*
695 * Wait until the run at frame bit resets itself in the SP control
696 * register.
697 */
698 for (cnt = 0; cnt < 25; cnt++) {
699 udelay(50);
700 if (!(snd_cs46xx_peek(chip, BA1_SPCR) & SPCR_RUNFR))
701 break;
702 }
703
704 if (snd_cs46xx_peek(chip, BA1_SPCR) & SPCR_RUNFR)
705 dev_err(chip->card->dev, "SPCR_RUNFR never reset\n");
706}
707
708static void snd_cs46xx_proc_stop(struct snd_cs46xx *chip)
709{
710 /*
711 * Turn off the run, run at frame, and DMA enable bits in the local copy of
712 * the SP control register.
713 */
714 snd_cs46xx_poke(chip, BA1_SPCR, 0);
715}
716
717/*
718 * Sample rate routines
719 */
720
721#define GOF_PER_SEC 200
722
723static void snd_cs46xx_set_play_sample_rate(struct snd_cs46xx *chip, unsigned int rate)
724{
725 unsigned long flags;
726 unsigned int tmp1, tmp2;
727 unsigned int phiIncr;
728 unsigned int correctionPerGOF, correctionPerSec;
729
730 /*
731 * Compute the values used to drive the actual sample rate conversion.
732 * The following formulas are being computed, using inline assembly
733 * since we need to use 64 bit arithmetic to compute the values:
734 *
735 * phiIncr = floor((Fs,in * 2^26) / Fs,out)
736 * correctionPerGOF = floor((Fs,in * 2^26 - Fs,out * phiIncr) /
737 * GOF_PER_SEC)
738 * ulCorrectionPerSec = Fs,in * 2^26 - Fs,out * phiIncr -M
739 * GOF_PER_SEC * correctionPerGOF
740 *
741 * i.e.
742 *
743 * phiIncr:other = dividend:remainder((Fs,in * 2^26) / Fs,out)
744 * correctionPerGOF:correctionPerSec =
745 * dividend:remainder(ulOther / GOF_PER_SEC)
746 */
747 tmp1 = rate << 16;
748 phiIncr = tmp1 / 48000;
749 tmp1 -= phiIncr * 48000;
750 tmp1 <<= 10;
751 phiIncr <<= 10;
752 tmp2 = tmp1 / 48000;
753 phiIncr += tmp2;
754 tmp1 -= tmp2 * 48000;
755 correctionPerGOF = tmp1 / GOF_PER_SEC;
756 tmp1 -= correctionPerGOF * GOF_PER_SEC;
757 correctionPerSec = tmp1;
758
759 /*
760 * Fill in the SampleRateConverter control block.
761 */
762 spin_lock_irqsave(&chip->reg_lock, flags);
763 snd_cs46xx_poke(chip, BA1_PSRC,
764 ((correctionPerSec << 16) & 0xFFFF0000) | (correctionPerGOF & 0xFFFF));
765 snd_cs46xx_poke(chip, BA1_PPI, phiIncr);
766 spin_unlock_irqrestore(&chip->reg_lock, flags);
767}
768
769static void snd_cs46xx_set_capture_sample_rate(struct snd_cs46xx *chip, unsigned int rate)
770{
771 unsigned long flags;
772 unsigned int phiIncr, coeffIncr, tmp1, tmp2;
773 unsigned int correctionPerGOF, correctionPerSec, initialDelay;
774 unsigned int frameGroupLength, cnt;
775
776 /*
777 * We can only decimate by up to a factor of 1/9th the hardware rate.
778 * Correct the value if an attempt is made to stray outside that limit.
779 */
780 if ((rate * 9) < 48000)
781 rate = 48000 / 9;
782
783 /*
784 * We can not capture at at rate greater than the Input Rate (48000).
785 * Return an error if an attempt is made to stray outside that limit.
786 */
787 if (rate > 48000)
788 rate = 48000;
789
790 /*
791 * Compute the values used to drive the actual sample rate conversion.
792 * The following formulas are being computed, using inline assembly
793 * since we need to use 64 bit arithmetic to compute the values:
794 *
795 * coeffIncr = -floor((Fs,out * 2^23) / Fs,in)
796 * phiIncr = floor((Fs,in * 2^26) / Fs,out)
797 * correctionPerGOF = floor((Fs,in * 2^26 - Fs,out * phiIncr) /
798 * GOF_PER_SEC)
799 * correctionPerSec = Fs,in * 2^26 - Fs,out * phiIncr -
800 * GOF_PER_SEC * correctionPerGOF
801 * initialDelay = ceil((24 * Fs,in) / Fs,out)
802 *
803 * i.e.
804 *
805 * coeffIncr = neg(dividend((Fs,out * 2^23) / Fs,in))
806 * phiIncr:ulOther = dividend:remainder((Fs,in * 2^26) / Fs,out)
807 * correctionPerGOF:correctionPerSec =
808 * dividend:remainder(ulOther / GOF_PER_SEC)
809 * initialDelay = dividend(((24 * Fs,in) + Fs,out - 1) / Fs,out)
810 */
811
812 tmp1 = rate << 16;
813 coeffIncr = tmp1 / 48000;
814 tmp1 -= coeffIncr * 48000;
815 tmp1 <<= 7;
816 coeffIncr <<= 7;
817 coeffIncr += tmp1 / 48000;
818 coeffIncr ^= 0xFFFFFFFF;
819 coeffIncr++;
820 tmp1 = 48000 << 16;
821 phiIncr = tmp1 / rate;
822 tmp1 -= phiIncr * rate;
823 tmp1 <<= 10;
824 phiIncr <<= 10;
825 tmp2 = tmp1 / rate;
826 phiIncr += tmp2;
827 tmp1 -= tmp2 * rate;
828 correctionPerGOF = tmp1 / GOF_PER_SEC;
829 tmp1 -= correctionPerGOF * GOF_PER_SEC;
830 correctionPerSec = tmp1;
831 initialDelay = ((48000 * 24) + rate - 1) / rate;
832
833 /*
834 * Fill in the VariDecimate control block.
835 */
836 spin_lock_irqsave(&chip->reg_lock, flags);
837 snd_cs46xx_poke(chip, BA1_CSRC,
838 ((correctionPerSec << 16) & 0xFFFF0000) | (correctionPerGOF & 0xFFFF));
839 snd_cs46xx_poke(chip, BA1_CCI, coeffIncr);
840 snd_cs46xx_poke(chip, BA1_CD,
841 (((BA1_VARIDEC_BUF_1 + (initialDelay << 2)) << 16) & 0xFFFF0000) | 0x80);
842 snd_cs46xx_poke(chip, BA1_CPI, phiIncr);
843 spin_unlock_irqrestore(&chip->reg_lock, flags);
844
845 /*
846 * Figure out the frame group length for the write back task. Basically,
847 * this is just the factors of 24000 (2^6*3*5^3) that are not present in
848 * the output sample rate.
849 */
850 frameGroupLength = 1;
851 for (cnt = 2; cnt <= 64; cnt *= 2) {
852 if (((rate / cnt) * cnt) != rate)
853 frameGroupLength *= 2;
854 }
855 if (((rate / 3) * 3) != rate) {
856 frameGroupLength *= 3;
857 }
858 for (cnt = 5; cnt <= 125; cnt *= 5) {
859 if (((rate / cnt) * cnt) != rate)
860 frameGroupLength *= 5;
861 }
862
863 /*
864 * Fill in the WriteBack control block.
865 */
866 spin_lock_irqsave(&chip->reg_lock, flags);
867 snd_cs46xx_poke(chip, BA1_CFG1, frameGroupLength);
868 snd_cs46xx_poke(chip, BA1_CFG2, (0x00800000 | frameGroupLength));
869 snd_cs46xx_poke(chip, BA1_CCST, 0x0000FFFF);
870 snd_cs46xx_poke(chip, BA1_CSPB, ((65536 * rate) / 24000));
871 snd_cs46xx_poke(chip, (BA1_CSPB + 4), 0x0000FFFF);
872 spin_unlock_irqrestore(&chip->reg_lock, flags);
873}
874
875/*
876 * PCM part
877 */
878
879static void snd_cs46xx_pb_trans_copy(struct snd_pcm_substream *substream,
880 struct snd_pcm_indirect *rec, size_t bytes)
881{
882 struct snd_pcm_runtime *runtime = substream->runtime;
883 struct snd_cs46xx_pcm * cpcm = runtime->private_data;
884 memcpy(cpcm->hw_buf.area + rec->hw_data, runtime->dma_area + rec->sw_data, bytes);
885}
886
887static int snd_cs46xx_playback_transfer(struct snd_pcm_substream *substream)
888{
889 struct snd_pcm_runtime *runtime = substream->runtime;
890 struct snd_cs46xx_pcm * cpcm = runtime->private_data;
891 snd_pcm_indirect_playback_transfer(substream, &cpcm->pcm_rec, snd_cs46xx_pb_trans_copy);
892 return 0;
893}
894
895static void snd_cs46xx_cp_trans_copy(struct snd_pcm_substream *substream,
896 struct snd_pcm_indirect *rec, size_t bytes)
897{
898 struct snd_cs46xx *chip = snd_pcm_substream_chip(substream);
899 struct snd_pcm_runtime *runtime = substream->runtime;
900 memcpy(runtime->dma_area + rec->sw_data,
901 chip->capt.hw_buf.area + rec->hw_data, bytes);
902}
903
904static int snd_cs46xx_capture_transfer(struct snd_pcm_substream *substream)
905{
906 struct snd_cs46xx *chip = snd_pcm_substream_chip(substream);
907 snd_pcm_indirect_capture_transfer(substream, &chip->capt.pcm_rec, snd_cs46xx_cp_trans_copy);
908 return 0;
909}
910
911static snd_pcm_uframes_t snd_cs46xx_playback_direct_pointer(struct snd_pcm_substream *substream)
912{
913 struct snd_cs46xx *chip = snd_pcm_substream_chip(substream);
914 size_t ptr;
915 struct snd_cs46xx_pcm *cpcm = substream->runtime->private_data;
916
917 if (snd_BUG_ON(!cpcm->pcm_channel))
918 return -ENXIO;
919
920#ifdef CONFIG_SND_CS46XX_NEW_DSP
921 ptr = snd_cs46xx_peek(chip, (cpcm->pcm_channel->pcm_reader_scb->address + 2) << 2);
922#else
923 ptr = snd_cs46xx_peek(chip, BA1_PBA);
924#endif
925 ptr -= cpcm->hw_buf.addr;
926 return ptr >> cpcm->shift;
927}
928
929static snd_pcm_uframes_t snd_cs46xx_playback_indirect_pointer(struct snd_pcm_substream *substream)
930{
931 struct snd_cs46xx *chip = snd_pcm_substream_chip(substream);
932 size_t ptr;
933 struct snd_cs46xx_pcm *cpcm = substream->runtime->private_data;
934
935#ifdef CONFIG_SND_CS46XX_NEW_DSP
936 if (snd_BUG_ON(!cpcm->pcm_channel))
937 return -ENXIO;
938 ptr = snd_cs46xx_peek(chip, (cpcm->pcm_channel->pcm_reader_scb->address + 2) << 2);
939#else
940 ptr = snd_cs46xx_peek(chip, BA1_PBA);
941#endif
942 ptr -= cpcm->hw_buf.addr;
943 return snd_pcm_indirect_playback_pointer(substream, &cpcm->pcm_rec, ptr);
944}
945
946static snd_pcm_uframes_t snd_cs46xx_capture_direct_pointer(struct snd_pcm_substream *substream)
947{
948 struct snd_cs46xx *chip = snd_pcm_substream_chip(substream);
949 size_t ptr = snd_cs46xx_peek(chip, BA1_CBA) - chip->capt.hw_buf.addr;
950 return ptr >> chip->capt.shift;
951}
952
953static snd_pcm_uframes_t snd_cs46xx_capture_indirect_pointer(struct snd_pcm_substream *substream)
954{
955 struct snd_cs46xx *chip = snd_pcm_substream_chip(substream);
956 size_t ptr = snd_cs46xx_peek(chip, BA1_CBA) - chip->capt.hw_buf.addr;
957 return snd_pcm_indirect_capture_pointer(substream, &chip->capt.pcm_rec, ptr);
958}
959
960static int snd_cs46xx_playback_trigger(struct snd_pcm_substream *substream,
961 int cmd)
962{
963 struct snd_cs46xx *chip = snd_pcm_substream_chip(substream);
964 /*struct snd_pcm_runtime *runtime = substream->runtime;*/
965 int result = 0;
966
967#ifdef CONFIG_SND_CS46XX_NEW_DSP
968 struct snd_cs46xx_pcm *cpcm = substream->runtime->private_data;
969 if (! cpcm->pcm_channel) {
970 return -ENXIO;
971 }
972#endif
973 switch (cmd) {
974 case SNDRV_PCM_TRIGGER_START:
975 case SNDRV_PCM_TRIGGER_RESUME:
976#ifdef CONFIG_SND_CS46XX_NEW_DSP
977 /* magic value to unmute PCM stream playback volume */
978 snd_cs46xx_poke(chip, (cpcm->pcm_channel->pcm_reader_scb->address +
979 SCBVolumeCtrl) << 2, 0x80008000);
980
981 if (cpcm->pcm_channel->unlinked)
982 cs46xx_dsp_pcm_link(chip,cpcm->pcm_channel);
983
984 if (substream->runtime->periods != CS46XX_FRAGS)
985 snd_cs46xx_playback_transfer(substream);
986#else
987 spin_lock(&chip->reg_lock);
988 if (substream->runtime->periods != CS46XX_FRAGS)
989 snd_cs46xx_playback_transfer(substream);
990 { unsigned int tmp;
991 tmp = snd_cs46xx_peek(chip, BA1_PCTL);
992 tmp &= 0x0000ffff;
993 snd_cs46xx_poke(chip, BA1_PCTL, chip->play_ctl | tmp);
994 }
995 spin_unlock(&chip->reg_lock);
996#endif
997 break;
998 case SNDRV_PCM_TRIGGER_STOP:
999 case SNDRV_PCM_TRIGGER_SUSPEND:
1000#ifdef CONFIG_SND_CS46XX_NEW_DSP
1001 /* magic mute channel */
1002 snd_cs46xx_poke(chip, (cpcm->pcm_channel->pcm_reader_scb->address +
1003 SCBVolumeCtrl) << 2, 0xffffffff);
1004
1005 if (!cpcm->pcm_channel->unlinked)
1006 cs46xx_dsp_pcm_unlink(chip,cpcm->pcm_channel);
1007#else
1008 spin_lock(&chip->reg_lock);
1009 { unsigned int tmp;
1010 tmp = snd_cs46xx_peek(chip, BA1_PCTL);
1011 tmp &= 0x0000ffff;
1012 snd_cs46xx_poke(chip, BA1_PCTL, tmp);
1013 }
1014 spin_unlock(&chip->reg_lock);
1015#endif
1016 break;
1017 default:
1018 result = -EINVAL;
1019 break;
1020 }
1021
1022 return result;
1023}
1024
1025static int snd_cs46xx_capture_trigger(struct snd_pcm_substream *substream,
1026 int cmd)
1027{
1028 struct snd_cs46xx *chip = snd_pcm_substream_chip(substream);
1029 unsigned int tmp;
1030 int result = 0;
1031
1032 spin_lock(&chip->reg_lock);
1033 switch (cmd) {
1034 case SNDRV_PCM_TRIGGER_START:
1035 case SNDRV_PCM_TRIGGER_RESUME:
1036 tmp = snd_cs46xx_peek(chip, BA1_CCTL);
1037 tmp &= 0xffff0000;
1038 snd_cs46xx_poke(chip, BA1_CCTL, chip->capt.ctl | tmp);
1039 break;
1040 case SNDRV_PCM_TRIGGER_STOP:
1041 case SNDRV_PCM_TRIGGER_SUSPEND:
1042 tmp = snd_cs46xx_peek(chip, BA1_CCTL);
1043 tmp &= 0xffff0000;
1044 snd_cs46xx_poke(chip, BA1_CCTL, tmp);
1045 break;
1046 default:
1047 result = -EINVAL;
1048 break;
1049 }
1050 spin_unlock(&chip->reg_lock);
1051
1052 return result;
1053}
1054
1055#ifdef CONFIG_SND_CS46XX_NEW_DSP
1056static int _cs46xx_adjust_sample_rate (struct snd_cs46xx *chip, struct snd_cs46xx_pcm *cpcm,
1057 int sample_rate)
1058{
1059
1060 /* If PCMReaderSCB and SrcTaskSCB not created yet ... */
1061 if ( cpcm->pcm_channel == NULL) {
1062 cpcm->pcm_channel = cs46xx_dsp_create_pcm_channel (chip, sample_rate,
1063 cpcm, cpcm->hw_buf.addr,cpcm->pcm_channel_id);
1064 if (cpcm->pcm_channel == NULL) {
1065 dev_err(chip->card->dev,
1066 "failed to create virtual PCM channel\n");
1067 return -ENOMEM;
1068 }
1069 cpcm->pcm_channel->sample_rate = sample_rate;
1070 } else
1071 /* if sample rate is changed */
1072 if ((int)cpcm->pcm_channel->sample_rate != sample_rate) {
1073 int unlinked = cpcm->pcm_channel->unlinked;
1074 cs46xx_dsp_destroy_pcm_channel (chip,cpcm->pcm_channel);
1075
1076 if ( (cpcm->pcm_channel = cs46xx_dsp_create_pcm_channel (chip, sample_rate, cpcm,
1077 cpcm->hw_buf.addr,
1078 cpcm->pcm_channel_id)) == NULL) {
1079 dev_err(chip->card->dev,
1080 "failed to re-create virtual PCM channel\n");
1081 return -ENOMEM;
1082 }
1083
1084 if (!unlinked) cs46xx_dsp_pcm_link (chip,cpcm->pcm_channel);
1085 cpcm->pcm_channel->sample_rate = sample_rate;
1086 }
1087
1088 return 0;
1089}
1090#endif
1091
1092
1093static int snd_cs46xx_playback_hw_params(struct snd_pcm_substream *substream,
1094 struct snd_pcm_hw_params *hw_params)
1095{
1096 struct snd_pcm_runtime *runtime = substream->runtime;
1097 struct snd_cs46xx_pcm *cpcm;
1098 int err;
1099#ifdef CONFIG_SND_CS46XX_NEW_DSP
1100 struct snd_cs46xx *chip = snd_pcm_substream_chip(substream);
1101 int sample_rate = params_rate(hw_params);
1102 int period_size = params_period_bytes(hw_params);
1103#endif
1104 cpcm = runtime->private_data;
1105
1106#ifdef CONFIG_SND_CS46XX_NEW_DSP
1107 if (snd_BUG_ON(!sample_rate))
1108 return -ENXIO;
1109
1110 mutex_lock(&chip->spos_mutex);
1111
1112 if (_cs46xx_adjust_sample_rate (chip,cpcm,sample_rate)) {
1113 mutex_unlock(&chip->spos_mutex);
1114 return -ENXIO;
1115 }
1116
1117 snd_BUG_ON(!cpcm->pcm_channel);
1118 if (!cpcm->pcm_channel) {
1119 mutex_unlock(&chip->spos_mutex);
1120 return -ENXIO;
1121 }
1122
1123
1124 if (cs46xx_dsp_pcm_channel_set_period (chip,cpcm->pcm_channel,period_size)) {
1125 mutex_unlock(&chip->spos_mutex);
1126 return -EINVAL;
1127 }
1128
1129 dev_dbg(chip->card->dev,
1130 "period_size (%d), periods (%d) buffer_size(%d)\n",
1131 period_size, params_periods(hw_params),
1132 params_buffer_bytes(hw_params));
1133#endif
1134
1135 if (params_periods(hw_params) == CS46XX_FRAGS) {
1136 if (runtime->dma_area != cpcm->hw_buf.area)
1137 snd_pcm_lib_free_pages(substream);
1138 runtime->dma_area = cpcm->hw_buf.area;
1139 runtime->dma_addr = cpcm->hw_buf.addr;
1140 runtime->dma_bytes = cpcm->hw_buf.bytes;
1141
1142
1143#ifdef CONFIG_SND_CS46XX_NEW_DSP
1144 if (cpcm->pcm_channel_id == DSP_PCM_MAIN_CHANNEL) {
1145 substream->ops = &snd_cs46xx_playback_ops;
1146 } else if (cpcm->pcm_channel_id == DSP_PCM_REAR_CHANNEL) {
1147 substream->ops = &snd_cs46xx_playback_rear_ops;
1148 } else if (cpcm->pcm_channel_id == DSP_PCM_CENTER_LFE_CHANNEL) {
1149 substream->ops = &snd_cs46xx_playback_clfe_ops;
1150 } else if (cpcm->pcm_channel_id == DSP_IEC958_CHANNEL) {
1151 substream->ops = &snd_cs46xx_playback_iec958_ops;
1152 } else {
1153 snd_BUG();
1154 }
1155#else
1156 substream->ops = &snd_cs46xx_playback_ops;
1157#endif
1158
1159 } else {
1160 if (runtime->dma_area == cpcm->hw_buf.area) {
1161 runtime->dma_area = NULL;
1162 runtime->dma_addr = 0;
1163 runtime->dma_bytes = 0;
1164 }
1165 if ((err = snd_pcm_lib_malloc_pages(substream, params_buffer_bytes(hw_params))) < 0) {
1166#ifdef CONFIG_SND_CS46XX_NEW_DSP
1167 mutex_unlock(&chip->spos_mutex);
1168#endif
1169 return err;
1170 }
1171
1172#ifdef CONFIG_SND_CS46XX_NEW_DSP
1173 if (cpcm->pcm_channel_id == DSP_PCM_MAIN_CHANNEL) {
1174 substream->ops = &snd_cs46xx_playback_indirect_ops;
1175 } else if (cpcm->pcm_channel_id == DSP_PCM_REAR_CHANNEL) {
1176 substream->ops = &snd_cs46xx_playback_indirect_rear_ops;
1177 } else if (cpcm->pcm_channel_id == DSP_PCM_CENTER_LFE_CHANNEL) {
1178 substream->ops = &snd_cs46xx_playback_indirect_clfe_ops;
1179 } else if (cpcm->pcm_channel_id == DSP_IEC958_CHANNEL) {
1180 substream->ops = &snd_cs46xx_playback_indirect_iec958_ops;
1181 } else {
1182 snd_BUG();
1183 }
1184#else
1185 substream->ops = &snd_cs46xx_playback_indirect_ops;
1186#endif
1187
1188 }
1189
1190#ifdef CONFIG_SND_CS46XX_NEW_DSP
1191 mutex_unlock(&chip->spos_mutex);
1192#endif
1193
1194 return 0;
1195}
1196
1197static int snd_cs46xx_playback_hw_free(struct snd_pcm_substream *substream)
1198{
1199 /*struct snd_cs46xx *chip = snd_pcm_substream_chip(substream);*/
1200 struct snd_pcm_runtime *runtime = substream->runtime;
1201 struct snd_cs46xx_pcm *cpcm;
1202
1203 cpcm = runtime->private_data;
1204
1205 /* if play_back open fails, then this function
1206 is called and cpcm can actually be NULL here */
1207 if (!cpcm) return -ENXIO;
1208
1209 if (runtime->dma_area != cpcm->hw_buf.area)
1210 snd_pcm_lib_free_pages(substream);
1211
1212 runtime->dma_area = NULL;
1213 runtime->dma_addr = 0;
1214 runtime->dma_bytes = 0;
1215
1216 return 0;
1217}
1218
1219static int snd_cs46xx_playback_prepare(struct snd_pcm_substream *substream)
1220{
1221 unsigned int tmp;
1222 unsigned int pfie;
1223 struct snd_cs46xx *chip = snd_pcm_substream_chip(substream);
1224 struct snd_pcm_runtime *runtime = substream->runtime;
1225 struct snd_cs46xx_pcm *cpcm;
1226
1227 cpcm = runtime->private_data;
1228
1229#ifdef CONFIG_SND_CS46XX_NEW_DSP
1230 if (snd_BUG_ON(!cpcm->pcm_channel))
1231 return -ENXIO;
1232
1233 pfie = snd_cs46xx_peek(chip, (cpcm->pcm_channel->pcm_reader_scb->address + 1) << 2 );
1234 pfie &= ~0x0000f03f;
1235#else
1236 /* old dsp */
1237 pfie = snd_cs46xx_peek(chip, BA1_PFIE);
1238 pfie &= ~0x0000f03f;
1239#endif
1240
1241 cpcm->shift = 2;
1242 /* if to convert from stereo to mono */
1243 if (runtime->channels == 1) {
1244 cpcm->shift--;
1245 pfie |= 0x00002000;
1246 }
1247 /* if to convert from 8 bit to 16 bit */
1248 if (snd_pcm_format_width(runtime->format) == 8) {
1249 cpcm->shift--;
1250 pfie |= 0x00001000;
1251 }
1252 /* if to convert to unsigned */
1253 if (snd_pcm_format_unsigned(runtime->format))
1254 pfie |= 0x00008000;
1255
1256 /* Never convert byte order when sample stream is 8 bit */
1257 if (snd_pcm_format_width(runtime->format) != 8) {
1258 /* convert from big endian to little endian */
1259 if (snd_pcm_format_big_endian(runtime->format))
1260 pfie |= 0x00004000;
1261 }
1262
1263 memset(&cpcm->pcm_rec, 0, sizeof(cpcm->pcm_rec));
1264 cpcm->pcm_rec.sw_buffer_size = snd_pcm_lib_buffer_bytes(substream);
1265 cpcm->pcm_rec.hw_buffer_size = runtime->period_size * CS46XX_FRAGS << cpcm->shift;
1266
1267#ifdef CONFIG_SND_CS46XX_NEW_DSP
1268
1269 tmp = snd_cs46xx_peek(chip, (cpcm->pcm_channel->pcm_reader_scb->address) << 2);
1270 tmp &= ~0x000003ff;
1271 tmp |= (4 << cpcm->shift) - 1;
1272 /* playback transaction count register */
1273 snd_cs46xx_poke(chip, (cpcm->pcm_channel->pcm_reader_scb->address) << 2, tmp);
1274
1275 /* playback format && interrupt enable */
1276 snd_cs46xx_poke(chip, (cpcm->pcm_channel->pcm_reader_scb->address + 1) << 2, pfie | cpcm->pcm_channel->pcm_slot);
1277#else
1278 snd_cs46xx_poke(chip, BA1_PBA, cpcm->hw_buf.addr);
1279 tmp = snd_cs46xx_peek(chip, BA1_PDTC);
1280 tmp &= ~0x000003ff;
1281 tmp |= (4 << cpcm->shift) - 1;
1282 snd_cs46xx_poke(chip, BA1_PDTC, tmp);
1283 snd_cs46xx_poke(chip, BA1_PFIE, pfie);
1284 snd_cs46xx_set_play_sample_rate(chip, runtime->rate);
1285#endif
1286
1287 return 0;
1288}
1289
1290static int snd_cs46xx_capture_hw_params(struct snd_pcm_substream *substream,
1291 struct snd_pcm_hw_params *hw_params)
1292{
1293 struct snd_cs46xx *chip = snd_pcm_substream_chip(substream);
1294 struct snd_pcm_runtime *runtime = substream->runtime;
1295 int err;
1296
1297#ifdef CONFIG_SND_CS46XX_NEW_DSP
1298 cs46xx_dsp_pcm_ostream_set_period (chip, params_period_bytes(hw_params));
1299#endif
1300 if (runtime->periods == CS46XX_FRAGS) {
1301 if (runtime->dma_area != chip->capt.hw_buf.area)
1302 snd_pcm_lib_free_pages(substream);
1303 runtime->dma_area = chip->capt.hw_buf.area;
1304 runtime->dma_addr = chip->capt.hw_buf.addr;
1305 runtime->dma_bytes = chip->capt.hw_buf.bytes;
1306 substream->ops = &snd_cs46xx_capture_ops;
1307 } else {
1308 if (runtime->dma_area == chip->capt.hw_buf.area) {
1309 runtime->dma_area = NULL;
1310 runtime->dma_addr = 0;
1311 runtime->dma_bytes = 0;
1312 }
1313 if ((err = snd_pcm_lib_malloc_pages(substream, params_buffer_bytes(hw_params))) < 0)
1314 return err;
1315 substream->ops = &snd_cs46xx_capture_indirect_ops;
1316 }
1317
1318 return 0;
1319}
1320
1321static int snd_cs46xx_capture_hw_free(struct snd_pcm_substream *substream)
1322{
1323 struct snd_cs46xx *chip = snd_pcm_substream_chip(substream);
1324 struct snd_pcm_runtime *runtime = substream->runtime;
1325
1326 if (runtime->dma_area != chip->capt.hw_buf.area)
1327 snd_pcm_lib_free_pages(substream);
1328 runtime->dma_area = NULL;
1329 runtime->dma_addr = 0;
1330 runtime->dma_bytes = 0;
1331
1332 return 0;
1333}
1334
1335static int snd_cs46xx_capture_prepare(struct snd_pcm_substream *substream)
1336{
1337 struct snd_cs46xx *chip = snd_pcm_substream_chip(substream);
1338 struct snd_pcm_runtime *runtime = substream->runtime;
1339
1340 snd_cs46xx_poke(chip, BA1_CBA, chip->capt.hw_buf.addr);
1341 chip->capt.shift = 2;
1342 memset(&chip->capt.pcm_rec, 0, sizeof(chip->capt.pcm_rec));
1343 chip->capt.pcm_rec.sw_buffer_size = snd_pcm_lib_buffer_bytes(substream);
1344 chip->capt.pcm_rec.hw_buffer_size = runtime->period_size * CS46XX_FRAGS << 2;
1345 snd_cs46xx_set_capture_sample_rate(chip, runtime->rate);
1346
1347 return 0;
1348}
1349
1350static irqreturn_t snd_cs46xx_interrupt(int irq, void *dev_id)
1351{
1352 struct snd_cs46xx *chip = dev_id;
1353 u32 status1;
1354#ifdef CONFIG_SND_CS46XX_NEW_DSP
1355 struct dsp_spos_instance * ins = chip->dsp_spos_instance;
1356 u32 status2;
1357 int i;
1358 struct snd_cs46xx_pcm *cpcm = NULL;
1359#endif
1360
1361 /*
1362 * Read the Interrupt Status Register to clear the interrupt
1363 */
1364 status1 = snd_cs46xx_peekBA0(chip, BA0_HISR);
1365 if ((status1 & 0x7fffffff) == 0) {
1366 snd_cs46xx_pokeBA0(chip, BA0_HICR, HICR_CHGM | HICR_IEV);
1367 return IRQ_NONE;
1368 }
1369
1370#ifdef CONFIG_SND_CS46XX_NEW_DSP
1371 status2 = snd_cs46xx_peekBA0(chip, BA0_HSR0);
1372
1373 for (i = 0; i < DSP_MAX_PCM_CHANNELS; ++i) {
1374 if (i <= 15) {
1375 if ( status1 & (1 << i) ) {
1376 if (i == CS46XX_DSP_CAPTURE_CHANNEL) {
1377 if (chip->capt.substream)
1378 snd_pcm_period_elapsed(chip->capt.substream);
1379 } else {
1380 if (ins->pcm_channels[i].active &&
1381 ins->pcm_channels[i].private_data &&
1382 !ins->pcm_channels[i].unlinked) {
1383 cpcm = ins->pcm_channels[i].private_data;
1384 snd_pcm_period_elapsed(cpcm->substream);
1385 }
1386 }
1387 }
1388 } else {
1389 if ( status2 & (1 << (i - 16))) {
1390 if (ins->pcm_channels[i].active &&
1391 ins->pcm_channels[i].private_data &&
1392 !ins->pcm_channels[i].unlinked) {
1393 cpcm = ins->pcm_channels[i].private_data;
1394 snd_pcm_period_elapsed(cpcm->substream);
1395 }
1396 }
1397 }
1398 }
1399
1400#else
1401 /* old dsp */
1402 if ((status1 & HISR_VC0) && chip->playback_pcm) {
1403 if (chip->playback_pcm->substream)
1404 snd_pcm_period_elapsed(chip->playback_pcm->substream);
1405 }
1406 if ((status1 & HISR_VC1) && chip->pcm) {
1407 if (chip->capt.substream)
1408 snd_pcm_period_elapsed(chip->capt.substream);
1409 }
1410#endif
1411
1412 if ((status1 & HISR_MIDI) && chip->rmidi) {
1413 unsigned char c;
1414
1415 spin_lock(&chip->reg_lock);
1416 while ((snd_cs46xx_peekBA0(chip, BA0_MIDSR) & MIDSR_RBE) == 0) {
1417 c = snd_cs46xx_peekBA0(chip, BA0_MIDRP);
1418 if ((chip->midcr & MIDCR_RIE) == 0)
1419 continue;
1420 snd_rawmidi_receive(chip->midi_input, &c, 1);
1421 }
1422 while ((snd_cs46xx_peekBA0(chip, BA0_MIDSR) & MIDSR_TBF) == 0) {
1423 if ((chip->midcr & MIDCR_TIE) == 0)
1424 break;
1425 if (snd_rawmidi_transmit(chip->midi_output, &c, 1) != 1) {
1426 chip->midcr &= ~MIDCR_TIE;
1427 snd_cs46xx_pokeBA0(chip, BA0_MIDCR, chip->midcr);
1428 break;
1429 }
1430 snd_cs46xx_pokeBA0(chip, BA0_MIDWP, c);
1431 }
1432 spin_unlock(&chip->reg_lock);
1433 }
1434 /*
1435 * EOI to the PCI part....reenables interrupts
1436 */
1437 snd_cs46xx_pokeBA0(chip, BA0_HICR, HICR_CHGM | HICR_IEV);
1438
1439 return IRQ_HANDLED;
1440}
1441
1442static struct snd_pcm_hardware snd_cs46xx_playback =
1443{
1444 .info = (SNDRV_PCM_INFO_MMAP |
1445 SNDRV_PCM_INFO_INTERLEAVED |
1446 SNDRV_PCM_INFO_BLOCK_TRANSFER /*|*/
1447 /*SNDRV_PCM_INFO_RESUME*/),
1448 .formats = (SNDRV_PCM_FMTBIT_S8 | SNDRV_PCM_FMTBIT_U8 |
1449 SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S16_BE |
1450 SNDRV_PCM_FMTBIT_U16_LE | SNDRV_PCM_FMTBIT_U16_BE),
1451 .rates = SNDRV_PCM_RATE_CONTINUOUS | SNDRV_PCM_RATE_8000_48000,
1452 .rate_min = 5500,
1453 .rate_max = 48000,
1454 .channels_min = 1,
1455 .channels_max = 2,
1456 .buffer_bytes_max = (256 * 1024),
1457 .period_bytes_min = CS46XX_MIN_PERIOD_SIZE,
1458 .period_bytes_max = CS46XX_MAX_PERIOD_SIZE,
1459 .periods_min = CS46XX_FRAGS,
1460 .periods_max = 1024,
1461 .fifo_size = 0,
1462};
1463
1464static struct snd_pcm_hardware snd_cs46xx_capture =
1465{
1466 .info = (SNDRV_PCM_INFO_MMAP |
1467 SNDRV_PCM_INFO_INTERLEAVED |
1468 SNDRV_PCM_INFO_BLOCK_TRANSFER /*|*/
1469 /*SNDRV_PCM_INFO_RESUME*/),
1470 .formats = SNDRV_PCM_FMTBIT_S16_LE,
1471 .rates = SNDRV_PCM_RATE_CONTINUOUS | SNDRV_PCM_RATE_8000_48000,
1472 .rate_min = 5500,
1473 .rate_max = 48000,
1474 .channels_min = 2,
1475 .channels_max = 2,
1476 .buffer_bytes_max = (256 * 1024),
1477 .period_bytes_min = CS46XX_MIN_PERIOD_SIZE,
1478 .period_bytes_max = CS46XX_MAX_PERIOD_SIZE,
1479 .periods_min = CS46XX_FRAGS,
1480 .periods_max = 1024,
1481 .fifo_size = 0,
1482};
1483
1484#ifdef CONFIG_SND_CS46XX_NEW_DSP
1485
1486static unsigned int period_sizes[] = { 32, 64, 128, 256, 512, 1024, 2048 };
1487
1488static struct snd_pcm_hw_constraint_list hw_constraints_period_sizes = {
1489 .count = ARRAY_SIZE(period_sizes),
1490 .list = period_sizes,
1491 .mask = 0
1492};
1493
1494#endif
1495
1496static void snd_cs46xx_pcm_free_substream(struct snd_pcm_runtime *runtime)
1497{
1498 kfree(runtime->private_data);
1499}
1500
1501static int _cs46xx_playback_open_channel (struct snd_pcm_substream *substream,int pcm_channel_id)
1502{
1503 struct snd_cs46xx *chip = snd_pcm_substream_chip(substream);
1504 struct snd_cs46xx_pcm * cpcm;
1505 struct snd_pcm_runtime *runtime = substream->runtime;
1506
1507 cpcm = kzalloc(sizeof(*cpcm), GFP_KERNEL);
1508 if (cpcm == NULL)
1509 return -ENOMEM;
1510 if (snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV, snd_dma_pci_data(chip->pci),
1511 PAGE_SIZE, &cpcm->hw_buf) < 0) {
1512 kfree(cpcm);
1513 return -ENOMEM;
1514 }
1515
1516 runtime->hw = snd_cs46xx_playback;
1517 runtime->private_data = cpcm;
1518 runtime->private_free = snd_cs46xx_pcm_free_substream;
1519
1520 cpcm->substream = substream;
1521#ifdef CONFIG_SND_CS46XX_NEW_DSP
1522 mutex_lock(&chip->spos_mutex);
1523 cpcm->pcm_channel = NULL;
1524 cpcm->pcm_channel_id = pcm_channel_id;
1525
1526
1527 snd_pcm_hw_constraint_list(runtime, 0,
1528 SNDRV_PCM_HW_PARAM_PERIOD_BYTES,
1529 &hw_constraints_period_sizes);
1530
1531 mutex_unlock(&chip->spos_mutex);
1532#else
1533 chip->playback_pcm = cpcm; /* HACK */
1534#endif
1535
1536 if (chip->accept_valid)
1537 substream->runtime->hw.info |= SNDRV_PCM_INFO_MMAP_VALID;
1538 chip->active_ctrl(chip, 1);
1539
1540 return 0;
1541}
1542
1543static int snd_cs46xx_playback_open(struct snd_pcm_substream *substream)
1544{
1545 dev_dbg(substream->pcm->card->dev, "open front channel\n");
1546 return _cs46xx_playback_open_channel(substream,DSP_PCM_MAIN_CHANNEL);
1547}
1548
1549#ifdef CONFIG_SND_CS46XX_NEW_DSP
1550static int snd_cs46xx_playback_open_rear(struct snd_pcm_substream *substream)
1551{
1552 dev_dbg(substream->pcm->card->dev, "open rear channel\n");
1553 return _cs46xx_playback_open_channel(substream,DSP_PCM_REAR_CHANNEL);
1554}
1555
1556static int snd_cs46xx_playback_open_clfe(struct snd_pcm_substream *substream)
1557{
1558 dev_dbg(substream->pcm->card->dev, "open center - LFE channel\n");
1559 return _cs46xx_playback_open_channel(substream,DSP_PCM_CENTER_LFE_CHANNEL);
1560}
1561
1562static int snd_cs46xx_playback_open_iec958(struct snd_pcm_substream *substream)
1563{
1564 struct snd_cs46xx *chip = snd_pcm_substream_chip(substream);
1565
1566 dev_dbg(chip->card->dev, "open raw iec958 channel\n");
1567
1568 mutex_lock(&chip->spos_mutex);
1569 cs46xx_iec958_pre_open (chip);
1570 mutex_unlock(&chip->spos_mutex);
1571
1572 return _cs46xx_playback_open_channel(substream,DSP_IEC958_CHANNEL);
1573}
1574
1575static int snd_cs46xx_playback_close(struct snd_pcm_substream *substream);
1576
1577static int snd_cs46xx_playback_close_iec958(struct snd_pcm_substream *substream)
1578{
1579 int err;
1580 struct snd_cs46xx *chip = snd_pcm_substream_chip(substream);
1581
1582 dev_dbg(chip->card->dev, "close raw iec958 channel\n");
1583
1584 err = snd_cs46xx_playback_close(substream);
1585
1586 mutex_lock(&chip->spos_mutex);
1587 cs46xx_iec958_post_close (chip);
1588 mutex_unlock(&chip->spos_mutex);
1589
1590 return err;
1591}
1592#endif
1593
1594static int snd_cs46xx_capture_open(struct snd_pcm_substream *substream)
1595{
1596 struct snd_cs46xx *chip = snd_pcm_substream_chip(substream);
1597
1598 if (snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV, snd_dma_pci_data(chip->pci),
1599 PAGE_SIZE, &chip->capt.hw_buf) < 0)
1600 return -ENOMEM;
1601 chip->capt.substream = substream;
1602 substream->runtime->hw = snd_cs46xx_capture;
1603
1604 if (chip->accept_valid)
1605 substream->runtime->hw.info |= SNDRV_PCM_INFO_MMAP_VALID;
1606
1607 chip->active_ctrl(chip, 1);
1608
1609#ifdef CONFIG_SND_CS46XX_NEW_DSP
1610 snd_pcm_hw_constraint_list(substream->runtime, 0,
1611 SNDRV_PCM_HW_PARAM_PERIOD_BYTES,
1612 &hw_constraints_period_sizes);
1613#endif
1614 return 0;
1615}
1616
1617static int snd_cs46xx_playback_close(struct snd_pcm_substream *substream)
1618{
1619 struct snd_cs46xx *chip = snd_pcm_substream_chip(substream);
1620 struct snd_pcm_runtime *runtime = substream->runtime;
1621 struct snd_cs46xx_pcm * cpcm;
1622
1623 cpcm = runtime->private_data;
1624
1625 /* when playback_open fails, then cpcm can be NULL */
1626 if (!cpcm) return -ENXIO;
1627
1628#ifdef CONFIG_SND_CS46XX_NEW_DSP
1629 mutex_lock(&chip->spos_mutex);
1630 if (cpcm->pcm_channel) {
1631 cs46xx_dsp_destroy_pcm_channel(chip,cpcm->pcm_channel);
1632 cpcm->pcm_channel = NULL;
1633 }
1634 mutex_unlock(&chip->spos_mutex);
1635#else
1636 chip->playback_pcm = NULL;
1637#endif
1638
1639 cpcm->substream = NULL;
1640 snd_dma_free_pages(&cpcm->hw_buf);
1641 chip->active_ctrl(chip, -1);
1642
1643 return 0;
1644}
1645
1646static int snd_cs46xx_capture_close(struct snd_pcm_substream *substream)
1647{
1648 struct snd_cs46xx *chip = snd_pcm_substream_chip(substream);
1649
1650 chip->capt.substream = NULL;
1651 snd_dma_free_pages(&chip->capt.hw_buf);
1652 chip->active_ctrl(chip, -1);
1653
1654 return 0;
1655}
1656
1657#ifdef CONFIG_SND_CS46XX_NEW_DSP
1658static struct snd_pcm_ops snd_cs46xx_playback_rear_ops = {
1659 .open = snd_cs46xx_playback_open_rear,
1660 .close = snd_cs46xx_playback_close,
1661 .ioctl = snd_pcm_lib_ioctl,
1662 .hw_params = snd_cs46xx_playback_hw_params,
1663 .hw_free = snd_cs46xx_playback_hw_free,
1664 .prepare = snd_cs46xx_playback_prepare,
1665 .trigger = snd_cs46xx_playback_trigger,
1666 .pointer = snd_cs46xx_playback_direct_pointer,
1667};
1668
1669static struct snd_pcm_ops snd_cs46xx_playback_indirect_rear_ops = {
1670 .open = snd_cs46xx_playback_open_rear,
1671 .close = snd_cs46xx_playback_close,
1672 .ioctl = snd_pcm_lib_ioctl,
1673 .hw_params = snd_cs46xx_playback_hw_params,
1674 .hw_free = snd_cs46xx_playback_hw_free,
1675 .prepare = snd_cs46xx_playback_prepare,
1676 .trigger = snd_cs46xx_playback_trigger,
1677 .pointer = snd_cs46xx_playback_indirect_pointer,
1678 .ack = snd_cs46xx_playback_transfer,
1679};
1680
1681static struct snd_pcm_ops snd_cs46xx_playback_clfe_ops = {
1682 .open = snd_cs46xx_playback_open_clfe,
1683 .close = snd_cs46xx_playback_close,
1684 .ioctl = snd_pcm_lib_ioctl,
1685 .hw_params = snd_cs46xx_playback_hw_params,
1686 .hw_free = snd_cs46xx_playback_hw_free,
1687 .prepare = snd_cs46xx_playback_prepare,
1688 .trigger = snd_cs46xx_playback_trigger,
1689 .pointer = snd_cs46xx_playback_direct_pointer,
1690};
1691
1692static struct snd_pcm_ops snd_cs46xx_playback_indirect_clfe_ops = {
1693 .open = snd_cs46xx_playback_open_clfe,
1694 .close = snd_cs46xx_playback_close,
1695 .ioctl = snd_pcm_lib_ioctl,
1696 .hw_params = snd_cs46xx_playback_hw_params,
1697 .hw_free = snd_cs46xx_playback_hw_free,
1698 .prepare = snd_cs46xx_playback_prepare,
1699 .trigger = snd_cs46xx_playback_trigger,
1700 .pointer = snd_cs46xx_playback_indirect_pointer,
1701 .ack = snd_cs46xx_playback_transfer,
1702};
1703
1704static struct snd_pcm_ops snd_cs46xx_playback_iec958_ops = {
1705 .open = snd_cs46xx_playback_open_iec958,
1706 .close = snd_cs46xx_playback_close_iec958,
1707 .ioctl = snd_pcm_lib_ioctl,
1708 .hw_params = snd_cs46xx_playback_hw_params,
1709 .hw_free = snd_cs46xx_playback_hw_free,
1710 .prepare = snd_cs46xx_playback_prepare,
1711 .trigger = snd_cs46xx_playback_trigger,
1712 .pointer = snd_cs46xx_playback_direct_pointer,
1713};
1714
1715static struct snd_pcm_ops snd_cs46xx_playback_indirect_iec958_ops = {
1716 .open = snd_cs46xx_playback_open_iec958,
1717 .close = snd_cs46xx_playback_close_iec958,
1718 .ioctl = snd_pcm_lib_ioctl,
1719 .hw_params = snd_cs46xx_playback_hw_params,
1720 .hw_free = snd_cs46xx_playback_hw_free,
1721 .prepare = snd_cs46xx_playback_prepare,
1722 .trigger = snd_cs46xx_playback_trigger,
1723 .pointer = snd_cs46xx_playback_indirect_pointer,
1724 .ack = snd_cs46xx_playback_transfer,
1725};
1726
1727#endif
1728
1729static struct snd_pcm_ops snd_cs46xx_playback_ops = {
1730 .open = snd_cs46xx_playback_open,
1731 .close = snd_cs46xx_playback_close,
1732 .ioctl = snd_pcm_lib_ioctl,
1733 .hw_params = snd_cs46xx_playback_hw_params,
1734 .hw_free = snd_cs46xx_playback_hw_free,
1735 .prepare = snd_cs46xx_playback_prepare,
1736 .trigger = snd_cs46xx_playback_trigger,
1737 .pointer = snd_cs46xx_playback_direct_pointer,
1738};
1739
1740static struct snd_pcm_ops snd_cs46xx_playback_indirect_ops = {
1741 .open = snd_cs46xx_playback_open,
1742 .close = snd_cs46xx_playback_close,
1743 .ioctl = snd_pcm_lib_ioctl,
1744 .hw_params = snd_cs46xx_playback_hw_params,
1745 .hw_free = snd_cs46xx_playback_hw_free,
1746 .prepare = snd_cs46xx_playback_prepare,
1747 .trigger = snd_cs46xx_playback_trigger,
1748 .pointer = snd_cs46xx_playback_indirect_pointer,
1749 .ack = snd_cs46xx_playback_transfer,
1750};
1751
1752static struct snd_pcm_ops snd_cs46xx_capture_ops = {
1753 .open = snd_cs46xx_capture_open,
1754 .close = snd_cs46xx_capture_close,
1755 .ioctl = snd_pcm_lib_ioctl,
1756 .hw_params = snd_cs46xx_capture_hw_params,
1757 .hw_free = snd_cs46xx_capture_hw_free,
1758 .prepare = snd_cs46xx_capture_prepare,
1759 .trigger = snd_cs46xx_capture_trigger,
1760 .pointer = snd_cs46xx_capture_direct_pointer,
1761};
1762
1763static struct snd_pcm_ops snd_cs46xx_capture_indirect_ops = {
1764 .open = snd_cs46xx_capture_open,
1765 .close = snd_cs46xx_capture_close,
1766 .ioctl = snd_pcm_lib_ioctl,
1767 .hw_params = snd_cs46xx_capture_hw_params,
1768 .hw_free = snd_cs46xx_capture_hw_free,
1769 .prepare = snd_cs46xx_capture_prepare,
1770 .trigger = snd_cs46xx_capture_trigger,
1771 .pointer = snd_cs46xx_capture_indirect_pointer,
1772 .ack = snd_cs46xx_capture_transfer,
1773};
1774
1775#ifdef CONFIG_SND_CS46XX_NEW_DSP
1776#define MAX_PLAYBACK_CHANNELS (DSP_MAX_PCM_CHANNELS - 1)
1777#else
1778#define MAX_PLAYBACK_CHANNELS 1
1779#endif
1780
1781int snd_cs46xx_pcm(struct snd_cs46xx *chip, int device, struct snd_pcm **rpcm)
1782{
1783 struct snd_pcm *pcm;
1784 int err;
1785
1786 if (rpcm)
1787 *rpcm = NULL;
1788 if ((err = snd_pcm_new(chip->card, "CS46xx", device, MAX_PLAYBACK_CHANNELS, 1, &pcm)) < 0)
1789 return err;
1790
1791 pcm->private_data = chip;
1792
1793 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_cs46xx_playback_ops);
1794 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_cs46xx_capture_ops);
1795
1796 /* global setup */
1797 pcm->info_flags = 0;
1798 strcpy(pcm->name, "CS46xx");
1799 chip->pcm = pcm;
1800
1801 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
1802 snd_dma_pci_data(chip->pci), 64*1024, 256*1024);
1803
1804 if (rpcm)
1805 *rpcm = pcm;
1806
1807 return 0;
1808}
1809
1810
1811#ifdef CONFIG_SND_CS46XX_NEW_DSP
1812int snd_cs46xx_pcm_rear(struct snd_cs46xx *chip, int device,
1813 struct snd_pcm **rpcm)
1814{
1815 struct snd_pcm *pcm;
1816 int err;
1817
1818 if (rpcm)
1819 *rpcm = NULL;
1820
1821 if ((err = snd_pcm_new(chip->card, "CS46xx - Rear", device, MAX_PLAYBACK_CHANNELS, 0, &pcm)) < 0)
1822 return err;
1823
1824 pcm->private_data = chip;
1825
1826 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_cs46xx_playback_rear_ops);
1827
1828 /* global setup */
1829 pcm->info_flags = 0;
1830 strcpy(pcm->name, "CS46xx - Rear");
1831 chip->pcm_rear = pcm;
1832
1833 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
1834 snd_dma_pci_data(chip->pci), 64*1024, 256*1024);
1835
1836 if (rpcm)
1837 *rpcm = pcm;
1838
1839 return 0;
1840}
1841
1842int snd_cs46xx_pcm_center_lfe(struct snd_cs46xx *chip, int device,
1843 struct snd_pcm **rpcm)
1844{
1845 struct snd_pcm *pcm;
1846 int err;
1847
1848 if (rpcm)
1849 *rpcm = NULL;
1850
1851 if ((err = snd_pcm_new(chip->card, "CS46xx - Center LFE", device, MAX_PLAYBACK_CHANNELS, 0, &pcm)) < 0)
1852 return err;
1853
1854 pcm->private_data = chip;
1855
1856 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_cs46xx_playback_clfe_ops);
1857
1858 /* global setup */
1859 pcm->info_flags = 0;
1860 strcpy(pcm->name, "CS46xx - Center LFE");
1861 chip->pcm_center_lfe = pcm;
1862
1863 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
1864 snd_dma_pci_data(chip->pci), 64*1024, 256*1024);
1865
1866 if (rpcm)
1867 *rpcm = pcm;
1868
1869 return 0;
1870}
1871
1872int snd_cs46xx_pcm_iec958(struct snd_cs46xx *chip, int device,
1873 struct snd_pcm **rpcm)
1874{
1875 struct snd_pcm *pcm;
1876 int err;
1877
1878 if (rpcm)
1879 *rpcm = NULL;
1880
1881 if ((err = snd_pcm_new(chip->card, "CS46xx - IEC958", device, 1, 0, &pcm)) < 0)
1882 return err;
1883
1884 pcm->private_data = chip;
1885
1886 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_cs46xx_playback_iec958_ops);
1887
1888 /* global setup */
1889 pcm->info_flags = 0;
1890 strcpy(pcm->name, "CS46xx - IEC958");
1891 chip->pcm_rear = pcm;
1892
1893 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
1894 snd_dma_pci_data(chip->pci), 64*1024, 256*1024);
1895
1896 if (rpcm)
1897 *rpcm = pcm;
1898
1899 return 0;
1900}
1901#endif
1902
1903/*
1904 * Mixer routines
1905 */
1906static void snd_cs46xx_mixer_free_ac97_bus(struct snd_ac97_bus *bus)
1907{
1908 struct snd_cs46xx *chip = bus->private_data;
1909
1910 chip->ac97_bus = NULL;
1911}
1912
1913static void snd_cs46xx_mixer_free_ac97(struct snd_ac97 *ac97)
1914{
1915 struct snd_cs46xx *chip = ac97->private_data;
1916
1917 if (snd_BUG_ON(ac97 != chip->ac97[CS46XX_PRIMARY_CODEC_INDEX] &&
1918 ac97 != chip->ac97[CS46XX_SECONDARY_CODEC_INDEX]))
1919 return;
1920
1921 if (ac97 == chip->ac97[CS46XX_PRIMARY_CODEC_INDEX]) {
1922 chip->ac97[CS46XX_PRIMARY_CODEC_INDEX] = NULL;
1923 chip->eapd_switch = NULL;
1924 }
1925 else
1926 chip->ac97[CS46XX_SECONDARY_CODEC_INDEX] = NULL;
1927}
1928
1929static int snd_cs46xx_vol_info(struct snd_kcontrol *kcontrol,
1930 struct snd_ctl_elem_info *uinfo)
1931{
1932 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
1933 uinfo->count = 2;
1934 uinfo->value.integer.min = 0;
1935 uinfo->value.integer.max = 0x7fff;
1936 return 0;
1937}
1938
1939static int snd_cs46xx_vol_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1940{
1941 struct snd_cs46xx *chip = snd_kcontrol_chip(kcontrol);
1942 int reg = kcontrol->private_value;
1943 unsigned int val = snd_cs46xx_peek(chip, reg);
1944 ucontrol->value.integer.value[0] = 0xffff - (val >> 16);
1945 ucontrol->value.integer.value[1] = 0xffff - (val & 0xffff);
1946 return 0;
1947}
1948
1949static int snd_cs46xx_vol_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1950{
1951 struct snd_cs46xx *chip = snd_kcontrol_chip(kcontrol);
1952 int reg = kcontrol->private_value;
1953 unsigned int val = ((0xffff - ucontrol->value.integer.value[0]) << 16 |
1954 (0xffff - ucontrol->value.integer.value[1]));
1955 unsigned int old = snd_cs46xx_peek(chip, reg);
1956 int change = (old != val);
1957
1958 if (change) {
1959 snd_cs46xx_poke(chip, reg, val);
1960 }
1961
1962 return change;
1963}
1964
1965#ifdef CONFIG_SND_CS46XX_NEW_DSP
1966
1967static int snd_cs46xx_vol_dac_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1968{
1969 struct snd_cs46xx *chip = snd_kcontrol_chip(kcontrol);
1970
1971 ucontrol->value.integer.value[0] = chip->dsp_spos_instance->dac_volume_left;
1972 ucontrol->value.integer.value[1] = chip->dsp_spos_instance->dac_volume_right;
1973
1974 return 0;
1975}
1976
1977static int snd_cs46xx_vol_dac_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1978{
1979 struct snd_cs46xx *chip = snd_kcontrol_chip(kcontrol);
1980 int change = 0;
1981
1982 if (chip->dsp_spos_instance->dac_volume_right != ucontrol->value.integer.value[0] ||
1983 chip->dsp_spos_instance->dac_volume_left != ucontrol->value.integer.value[1]) {
1984 cs46xx_dsp_set_dac_volume(chip,
1985 ucontrol->value.integer.value[0],
1986 ucontrol->value.integer.value[1]);
1987 change = 1;
1988 }
1989
1990 return change;
1991}
1992
1993#if 0
1994static int snd_cs46xx_vol_iec958_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1995{
1996 struct snd_cs46xx *chip = snd_kcontrol_chip(kcontrol);
1997
1998 ucontrol->value.integer.value[0] = chip->dsp_spos_instance->spdif_input_volume_left;
1999 ucontrol->value.integer.value[1] = chip->dsp_spos_instance->spdif_input_volume_right;
2000 return 0;
2001}
2002
2003static int snd_cs46xx_vol_iec958_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
2004{
2005 struct snd_cs46xx *chip = snd_kcontrol_chip(kcontrol);
2006 int change = 0;
2007
2008 if (chip->dsp_spos_instance->spdif_input_volume_left != ucontrol->value.integer.value[0] ||
2009 chip->dsp_spos_instance->spdif_input_volume_right!= ucontrol->value.integer.value[1]) {
2010 cs46xx_dsp_set_iec958_volume (chip,
2011 ucontrol->value.integer.value[0],
2012 ucontrol->value.integer.value[1]);
2013 change = 1;
2014 }
2015
2016 return change;
2017}
2018#endif
2019
2020#define snd_mixer_boolean_info snd_ctl_boolean_mono_info
2021
2022static int snd_cs46xx_iec958_get(struct snd_kcontrol *kcontrol,
2023 struct snd_ctl_elem_value *ucontrol)
2024{
2025 struct snd_cs46xx *chip = snd_kcontrol_chip(kcontrol);
2026 int reg = kcontrol->private_value;
2027
2028 if (reg == CS46XX_MIXER_SPDIF_OUTPUT_ELEMENT)
2029 ucontrol->value.integer.value[0] = (chip->dsp_spos_instance->spdif_status_out & DSP_SPDIF_STATUS_OUTPUT_ENABLED);
2030 else
2031 ucontrol->value.integer.value[0] = chip->dsp_spos_instance->spdif_status_in;
2032
2033 return 0;
2034}
2035
2036static int snd_cs46xx_iec958_put(struct snd_kcontrol *kcontrol,
2037 struct snd_ctl_elem_value *ucontrol)
2038{
2039 struct snd_cs46xx *chip = snd_kcontrol_chip(kcontrol);
2040 int change, res;
2041
2042 switch (kcontrol->private_value) {
2043 case CS46XX_MIXER_SPDIF_OUTPUT_ELEMENT:
2044 mutex_lock(&chip->spos_mutex);
2045 change = (chip->dsp_spos_instance->spdif_status_out & DSP_SPDIF_STATUS_OUTPUT_ENABLED);
2046 if (ucontrol->value.integer.value[0] && !change)
2047 cs46xx_dsp_enable_spdif_out(chip);
2048 else if (change && !ucontrol->value.integer.value[0])
2049 cs46xx_dsp_disable_spdif_out(chip);
2050
2051 res = (change != (chip->dsp_spos_instance->spdif_status_out & DSP_SPDIF_STATUS_OUTPUT_ENABLED));
2052 mutex_unlock(&chip->spos_mutex);
2053 break;
2054 case CS46XX_MIXER_SPDIF_INPUT_ELEMENT:
2055 change = chip->dsp_spos_instance->spdif_status_in;
2056 if (ucontrol->value.integer.value[0] && !change) {
2057 cs46xx_dsp_enable_spdif_in(chip);
2058 /* restore volume */
2059 }
2060 else if (change && !ucontrol->value.integer.value[0])
2061 cs46xx_dsp_disable_spdif_in(chip);
2062
2063 res = (change != chip->dsp_spos_instance->spdif_status_in);
2064 break;
2065 default:
2066 res = -EINVAL;
2067 snd_BUG(); /* should never happen ... */
2068 }
2069
2070 return res;
2071}
2072
2073static int snd_cs46xx_adc_capture_get(struct snd_kcontrol *kcontrol,
2074 struct snd_ctl_elem_value *ucontrol)
2075{
2076 struct snd_cs46xx *chip = snd_kcontrol_chip(kcontrol);
2077 struct dsp_spos_instance * ins = chip->dsp_spos_instance;
2078
2079 if (ins->adc_input != NULL)
2080 ucontrol->value.integer.value[0] = 1;
2081 else
2082 ucontrol->value.integer.value[0] = 0;
2083
2084 return 0;
2085}
2086
2087static int snd_cs46xx_adc_capture_put(struct snd_kcontrol *kcontrol,
2088 struct snd_ctl_elem_value *ucontrol)
2089{
2090 struct snd_cs46xx *chip = snd_kcontrol_chip(kcontrol);
2091 struct dsp_spos_instance * ins = chip->dsp_spos_instance;
2092 int change = 0;
2093
2094 if (ucontrol->value.integer.value[0] && !ins->adc_input) {
2095 cs46xx_dsp_enable_adc_capture(chip);
2096 change = 1;
2097 } else if (!ucontrol->value.integer.value[0] && ins->adc_input) {
2098 cs46xx_dsp_disable_adc_capture(chip);
2099 change = 1;
2100 }
2101 return change;
2102}
2103
2104static int snd_cs46xx_pcm_capture_get(struct snd_kcontrol *kcontrol,
2105 struct snd_ctl_elem_value *ucontrol)
2106{
2107 struct snd_cs46xx *chip = snd_kcontrol_chip(kcontrol);
2108 struct dsp_spos_instance * ins = chip->dsp_spos_instance;
2109
2110 if (ins->pcm_input != NULL)
2111 ucontrol->value.integer.value[0] = 1;
2112 else
2113 ucontrol->value.integer.value[0] = 0;
2114
2115 return 0;
2116}
2117
2118
2119static int snd_cs46xx_pcm_capture_put(struct snd_kcontrol *kcontrol,
2120 struct snd_ctl_elem_value *ucontrol)
2121{
2122 struct snd_cs46xx *chip = snd_kcontrol_chip(kcontrol);
2123 struct dsp_spos_instance * ins = chip->dsp_spos_instance;
2124 int change = 0;
2125
2126 if (ucontrol->value.integer.value[0] && !ins->pcm_input) {
2127 cs46xx_dsp_enable_pcm_capture(chip);
2128 change = 1;
2129 } else if (!ucontrol->value.integer.value[0] && ins->pcm_input) {
2130 cs46xx_dsp_disable_pcm_capture(chip);
2131 change = 1;
2132 }
2133
2134 return change;
2135}
2136
2137static int snd_herc_spdif_select_get(struct snd_kcontrol *kcontrol,
2138 struct snd_ctl_elem_value *ucontrol)
2139{
2140 struct snd_cs46xx *chip = snd_kcontrol_chip(kcontrol);
2141
2142 int val1 = snd_cs46xx_peekBA0(chip, BA0_EGPIODR);
2143
2144 if (val1 & EGPIODR_GPOE0)
2145 ucontrol->value.integer.value[0] = 1;
2146 else
2147 ucontrol->value.integer.value[0] = 0;
2148
2149 return 0;
2150}
2151
2152/*
2153 * Game Theatre XP card - EGPIO[0] is used to select SPDIF input optical or coaxial.
2154 */
2155static int snd_herc_spdif_select_put(struct snd_kcontrol *kcontrol,
2156 struct snd_ctl_elem_value *ucontrol)
2157{
2158 struct snd_cs46xx *chip = snd_kcontrol_chip(kcontrol);
2159 int val1 = snd_cs46xx_peekBA0(chip, BA0_EGPIODR);
2160 int val2 = snd_cs46xx_peekBA0(chip, BA0_EGPIOPTR);
2161
2162 if (ucontrol->value.integer.value[0]) {
2163 /* optical is default */
2164 snd_cs46xx_pokeBA0(chip, BA0_EGPIODR,
2165 EGPIODR_GPOE0 | val1); /* enable EGPIO0 output */
2166 snd_cs46xx_pokeBA0(chip, BA0_EGPIOPTR,
2167 EGPIOPTR_GPPT0 | val2); /* open-drain on output */
2168 } else {
2169 /* coaxial */
2170 snd_cs46xx_pokeBA0(chip, BA0_EGPIODR, val1 & ~EGPIODR_GPOE0); /* disable */
2171 snd_cs46xx_pokeBA0(chip, BA0_EGPIOPTR, val2 & ~EGPIOPTR_GPPT0); /* disable */
2172 }
2173
2174 /* checking diff from the EGPIO direction register
2175 should be enough */
2176 return (val1 != (int)snd_cs46xx_peekBA0(chip, BA0_EGPIODR));
2177}
2178
2179
2180static int snd_cs46xx_spdif_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
2181{
2182 uinfo->type = SNDRV_CTL_ELEM_TYPE_IEC958;
2183 uinfo->count = 1;
2184 return 0;
2185}
2186
2187static int snd_cs46xx_spdif_default_get(struct snd_kcontrol *kcontrol,
2188 struct snd_ctl_elem_value *ucontrol)
2189{
2190 struct snd_cs46xx *chip = snd_kcontrol_chip(kcontrol);
2191 struct dsp_spos_instance * ins = chip->dsp_spos_instance;
2192
2193 mutex_lock(&chip->spos_mutex);
2194 ucontrol->value.iec958.status[0] = _wrap_all_bits((ins->spdif_csuv_default >> 24) & 0xff);
2195 ucontrol->value.iec958.status[1] = _wrap_all_bits((ins->spdif_csuv_default >> 16) & 0xff);
2196 ucontrol->value.iec958.status[2] = 0;
2197 ucontrol->value.iec958.status[3] = _wrap_all_bits((ins->spdif_csuv_default) & 0xff);
2198 mutex_unlock(&chip->spos_mutex);
2199
2200 return 0;
2201}
2202
2203static int snd_cs46xx_spdif_default_put(struct snd_kcontrol *kcontrol,
2204 struct snd_ctl_elem_value *ucontrol)
2205{
2206 struct snd_cs46xx * chip = snd_kcontrol_chip(kcontrol);
2207 struct dsp_spos_instance * ins = chip->dsp_spos_instance;
2208 unsigned int val;
2209 int change;
2210
2211 mutex_lock(&chip->spos_mutex);
2212 val = ((unsigned int)_wrap_all_bits(ucontrol->value.iec958.status[0]) << 24) |
2213 ((unsigned int)_wrap_all_bits(ucontrol->value.iec958.status[2]) << 16) |
2214 ((unsigned int)_wrap_all_bits(ucontrol->value.iec958.status[3])) |
2215 /* left and right validity bit */
2216 (1 << 13) | (1 << 12);
2217
2218
2219 change = (unsigned int)ins->spdif_csuv_default != val;
2220 ins->spdif_csuv_default = val;
2221
2222 if ( !(ins->spdif_status_out & DSP_SPDIF_STATUS_PLAYBACK_OPEN) )
2223 cs46xx_poke_via_dsp (chip,SP_SPDOUT_CSUV,val);
2224
2225 mutex_unlock(&chip->spos_mutex);
2226
2227 return change;
2228}
2229
2230static int snd_cs46xx_spdif_mask_get(struct snd_kcontrol *kcontrol,
2231 struct snd_ctl_elem_value *ucontrol)
2232{
2233 ucontrol->value.iec958.status[0] = 0xff;
2234 ucontrol->value.iec958.status[1] = 0xff;
2235 ucontrol->value.iec958.status[2] = 0x00;
2236 ucontrol->value.iec958.status[3] = 0xff;
2237 return 0;
2238}
2239
2240static int snd_cs46xx_spdif_stream_get(struct snd_kcontrol *kcontrol,
2241 struct snd_ctl_elem_value *ucontrol)
2242{
2243 struct snd_cs46xx *chip = snd_kcontrol_chip(kcontrol);
2244 struct dsp_spos_instance * ins = chip->dsp_spos_instance;
2245
2246 mutex_lock(&chip->spos_mutex);
2247 ucontrol->value.iec958.status[0] = _wrap_all_bits((ins->spdif_csuv_stream >> 24) & 0xff);
2248 ucontrol->value.iec958.status[1] = _wrap_all_bits((ins->spdif_csuv_stream >> 16) & 0xff);
2249 ucontrol->value.iec958.status[2] = 0;
2250 ucontrol->value.iec958.status[3] = _wrap_all_bits((ins->spdif_csuv_stream) & 0xff);
2251 mutex_unlock(&chip->spos_mutex);
2252
2253 return 0;
2254}
2255
2256static int snd_cs46xx_spdif_stream_put(struct snd_kcontrol *kcontrol,
2257 struct snd_ctl_elem_value *ucontrol)
2258{
2259 struct snd_cs46xx * chip = snd_kcontrol_chip(kcontrol);
2260 struct dsp_spos_instance * ins = chip->dsp_spos_instance;
2261 unsigned int val;
2262 int change;
2263
2264 mutex_lock(&chip->spos_mutex);
2265 val = ((unsigned int)_wrap_all_bits(ucontrol->value.iec958.status[0]) << 24) |
2266 ((unsigned int)_wrap_all_bits(ucontrol->value.iec958.status[1]) << 16) |
2267 ((unsigned int)_wrap_all_bits(ucontrol->value.iec958.status[3])) |
2268 /* left and right validity bit */
2269 (1 << 13) | (1 << 12);
2270
2271
2272 change = ins->spdif_csuv_stream != val;
2273 ins->spdif_csuv_stream = val;
2274
2275 if ( ins->spdif_status_out & DSP_SPDIF_STATUS_PLAYBACK_OPEN )
2276 cs46xx_poke_via_dsp (chip,SP_SPDOUT_CSUV,val);
2277
2278 mutex_unlock(&chip->spos_mutex);
2279
2280 return change;
2281}
2282
2283#endif /* CONFIG_SND_CS46XX_NEW_DSP */
2284
2285
2286static struct snd_kcontrol_new snd_cs46xx_controls[] = {
2287{
2288 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2289 .name = "DAC Volume",
2290 .info = snd_cs46xx_vol_info,
2291#ifndef CONFIG_SND_CS46XX_NEW_DSP
2292 .get = snd_cs46xx_vol_get,
2293 .put = snd_cs46xx_vol_put,
2294 .private_value = BA1_PVOL,
2295#else
2296 .get = snd_cs46xx_vol_dac_get,
2297 .put = snd_cs46xx_vol_dac_put,
2298#endif
2299},
2300
2301{
2302 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2303 .name = "ADC Volume",
2304 .info = snd_cs46xx_vol_info,
2305 .get = snd_cs46xx_vol_get,
2306 .put = snd_cs46xx_vol_put,
2307#ifndef CONFIG_SND_CS46XX_NEW_DSP
2308 .private_value = BA1_CVOL,
2309#else
2310 .private_value = (VARIDECIMATE_SCB_ADDR + 0xE) << 2,
2311#endif
2312},
2313#ifdef CONFIG_SND_CS46XX_NEW_DSP
2314{
2315 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2316 .name = "ADC Capture Switch",
2317 .info = snd_mixer_boolean_info,
2318 .get = snd_cs46xx_adc_capture_get,
2319 .put = snd_cs46xx_adc_capture_put
2320},
2321{
2322 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2323 .name = "DAC Capture Switch",
2324 .info = snd_mixer_boolean_info,
2325 .get = snd_cs46xx_pcm_capture_get,
2326 .put = snd_cs46xx_pcm_capture_put
2327},
2328{
2329 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2330 .name = SNDRV_CTL_NAME_IEC958("Output ",NONE,SWITCH),
2331 .info = snd_mixer_boolean_info,
2332 .get = snd_cs46xx_iec958_get,
2333 .put = snd_cs46xx_iec958_put,
2334 .private_value = CS46XX_MIXER_SPDIF_OUTPUT_ELEMENT,
2335},
2336{
2337 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2338 .name = SNDRV_CTL_NAME_IEC958("Input ",NONE,SWITCH),
2339 .info = snd_mixer_boolean_info,
2340 .get = snd_cs46xx_iec958_get,
2341 .put = snd_cs46xx_iec958_put,
2342 .private_value = CS46XX_MIXER_SPDIF_INPUT_ELEMENT,
2343},
2344#if 0
2345/* Input IEC958 volume does not work for the moment. (Benny) */
2346{
2347 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2348 .name = SNDRV_CTL_NAME_IEC958("Input ",NONE,VOLUME),
2349 .info = snd_cs46xx_vol_info,
2350 .get = snd_cs46xx_vol_iec958_get,
2351 .put = snd_cs46xx_vol_iec958_put,
2352 .private_value = (ASYNCRX_SCB_ADDR + 0xE) << 2,
2353},
2354#endif
2355{
2356 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
2357 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,DEFAULT),
2358 .info = snd_cs46xx_spdif_info,
2359 .get = snd_cs46xx_spdif_default_get,
2360 .put = snd_cs46xx_spdif_default_put,
2361},
2362{
2363 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
2364 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,MASK),
2365 .info = snd_cs46xx_spdif_info,
2366 .get = snd_cs46xx_spdif_mask_get,
2367 .access = SNDRV_CTL_ELEM_ACCESS_READ
2368},
2369{
2370 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
2371 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,PCM_STREAM),
2372 .info = snd_cs46xx_spdif_info,
2373 .get = snd_cs46xx_spdif_stream_get,
2374 .put = snd_cs46xx_spdif_stream_put
2375},
2376
2377#endif
2378};
2379
2380#ifdef CONFIG_SND_CS46XX_NEW_DSP
2381/* set primary cs4294 codec into Extended Audio Mode */
2382static int snd_cs46xx_front_dup_get(struct snd_kcontrol *kcontrol,
2383 struct snd_ctl_elem_value *ucontrol)
2384{
2385 struct snd_cs46xx *chip = snd_kcontrol_chip(kcontrol);
2386 unsigned short val;
2387 val = snd_ac97_read(chip->ac97[CS46XX_PRIMARY_CODEC_INDEX], AC97_CSR_ACMODE);
2388 ucontrol->value.integer.value[0] = (val & 0x200) ? 0 : 1;
2389 return 0;
2390}
2391
2392static int snd_cs46xx_front_dup_put(struct snd_kcontrol *kcontrol,
2393 struct snd_ctl_elem_value *ucontrol)
2394{
2395 struct snd_cs46xx *chip = snd_kcontrol_chip(kcontrol);
2396 return snd_ac97_update_bits(chip->ac97[CS46XX_PRIMARY_CODEC_INDEX],
2397 AC97_CSR_ACMODE, 0x200,
2398 ucontrol->value.integer.value[0] ? 0 : 0x200);
2399}
2400
2401static struct snd_kcontrol_new snd_cs46xx_front_dup_ctl = {
2402 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2403 .name = "Duplicate Front",
2404 .info = snd_mixer_boolean_info,
2405 .get = snd_cs46xx_front_dup_get,
2406 .put = snd_cs46xx_front_dup_put,
2407};
2408#endif
2409
2410#ifdef CONFIG_SND_CS46XX_NEW_DSP
2411/* Only available on the Hercules Game Theater XP soundcard */
2412static struct snd_kcontrol_new snd_hercules_controls[] = {
2413{
2414 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2415 .name = "Optical/Coaxial SPDIF Input Switch",
2416 .info = snd_mixer_boolean_info,
2417 .get = snd_herc_spdif_select_get,
2418 .put = snd_herc_spdif_select_put,
2419},
2420};
2421
2422
2423static void snd_cs46xx_codec_reset (struct snd_ac97 * ac97)
2424{
2425 unsigned long end_time;
2426 int err;
2427
2428 /* reset to defaults */
2429 snd_ac97_write(ac97, AC97_RESET, 0);
2430
2431 /* set the desired CODEC mode */
2432 if (ac97->num == CS46XX_PRIMARY_CODEC_INDEX) {
2433 dev_dbg(ac97->bus->card->dev, "CODEC1 mode %04x\n", 0x0);
2434 snd_cs46xx_ac97_write(ac97, AC97_CSR_ACMODE, 0x0);
2435 } else if (ac97->num == CS46XX_SECONDARY_CODEC_INDEX) {
2436 dev_dbg(ac97->bus->card->dev, "CODEC2 mode %04x\n", 0x3);
2437 snd_cs46xx_ac97_write(ac97, AC97_CSR_ACMODE, 0x3);
2438 } else {
2439 snd_BUG(); /* should never happen ... */
2440 }
2441
2442 udelay(50);
2443
2444 /* it's necessary to wait awhile until registers are accessible after RESET */
2445 /* because the PCM or MASTER volume registers can be modified, */
2446 /* the REC_GAIN register is used for tests */
2447 end_time = jiffies + HZ;
2448 do {
2449 unsigned short ext_mid;
2450
2451 /* use preliminary reads to settle the communication */
2452 snd_ac97_read(ac97, AC97_RESET);
2453 snd_ac97_read(ac97, AC97_VENDOR_ID1);
2454 snd_ac97_read(ac97, AC97_VENDOR_ID2);
2455 /* modem? */
2456 ext_mid = snd_ac97_read(ac97, AC97_EXTENDED_MID);
2457 if (ext_mid != 0xffff && (ext_mid & 1) != 0)
2458 return;
2459
2460 /* test if we can write to the record gain volume register */
2461 snd_ac97_write(ac97, AC97_REC_GAIN, 0x8a05);
2462 if ((err = snd_ac97_read(ac97, AC97_REC_GAIN)) == 0x8a05)
2463 return;
2464
2465 msleep(10);
2466 } while (time_after_eq(end_time, jiffies));
2467
2468 dev_err(ac97->bus->card->dev,
2469 "CS46xx secondary codec doesn't respond!\n");
2470}
2471#endif
2472
2473static int cs46xx_detect_codec(struct snd_cs46xx *chip, int codec)
2474{
2475 int idx, err;
2476 struct snd_ac97_template ac97;
2477
2478 memset(&ac97, 0, sizeof(ac97));
2479 ac97.private_data = chip;
2480 ac97.private_free = snd_cs46xx_mixer_free_ac97;
2481 ac97.num = codec;
2482 if (chip->amplifier_ctrl == amp_voyetra)
2483 ac97.scaps = AC97_SCAP_INV_EAPD;
2484
2485 if (codec == CS46XX_SECONDARY_CODEC_INDEX) {
2486 snd_cs46xx_codec_write(chip, AC97_RESET, 0, codec);
2487 udelay(10);
2488 if (snd_cs46xx_codec_read(chip, AC97_RESET, codec) & 0x8000) {
2489 dev_dbg(chip->card->dev,
2490 "seconadry codec not present\n");
2491 return -ENXIO;
2492 }
2493 }
2494
2495 snd_cs46xx_codec_write(chip, AC97_MASTER, 0x8000, codec);
2496 for (idx = 0; idx < 100; ++idx) {
2497 if (snd_cs46xx_codec_read(chip, AC97_MASTER, codec) == 0x8000) {
2498 err = snd_ac97_mixer(chip->ac97_bus, &ac97, &chip->ac97[codec]);
2499 return err;
2500 }
2501 msleep(10);
2502 }
2503 dev_dbg(chip->card->dev, "codec %d detection timeout\n", codec);
2504 return -ENXIO;
2505}
2506
2507int snd_cs46xx_mixer(struct snd_cs46xx *chip, int spdif_device)
2508{
2509 struct snd_card *card = chip->card;
2510 struct snd_ctl_elem_id id;
2511 int err;
2512 unsigned int idx;
2513 static struct snd_ac97_bus_ops ops = {
2514#ifdef CONFIG_SND_CS46XX_NEW_DSP
2515 .reset = snd_cs46xx_codec_reset,
2516#endif
2517 .write = snd_cs46xx_ac97_write,
2518 .read = snd_cs46xx_ac97_read,
2519 };
2520
2521 /* detect primary codec */
2522 chip->nr_ac97_codecs = 0;
2523 dev_dbg(chip->card->dev, "detecting primary codec\n");
2524 if ((err = snd_ac97_bus(card, 0, &ops, chip, &chip->ac97_bus)) < 0)
2525 return err;
2526 chip->ac97_bus->private_free = snd_cs46xx_mixer_free_ac97_bus;
2527
2528 if (cs46xx_detect_codec(chip, CS46XX_PRIMARY_CODEC_INDEX) < 0)
2529 return -ENXIO;
2530 chip->nr_ac97_codecs = 1;
2531
2532#ifdef CONFIG_SND_CS46XX_NEW_DSP
2533 dev_dbg(chip->card->dev, "detecting seconadry codec\n");
2534 /* try detect a secondary codec */
2535 if (! cs46xx_detect_codec(chip, CS46XX_SECONDARY_CODEC_INDEX))
2536 chip->nr_ac97_codecs = 2;
2537#endif /* CONFIG_SND_CS46XX_NEW_DSP */
2538
2539 /* add cs4630 mixer controls */
2540 for (idx = 0; idx < ARRAY_SIZE(snd_cs46xx_controls); idx++) {
2541 struct snd_kcontrol *kctl;
2542 kctl = snd_ctl_new1(&snd_cs46xx_controls[idx], chip);
2543 if (kctl && kctl->id.iface == SNDRV_CTL_ELEM_IFACE_PCM)
2544 kctl->id.device = spdif_device;
2545 if ((err = snd_ctl_add(card, kctl)) < 0)
2546 return err;
2547 }
2548
2549 /* get EAPD mixer switch (for voyetra hack) */
2550 memset(&id, 0, sizeof(id));
2551 id.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
2552 strcpy(id.name, "External Amplifier");
2553 chip->eapd_switch = snd_ctl_find_id(chip->card, &id);
2554
2555#ifdef CONFIG_SND_CS46XX_NEW_DSP
2556 if (chip->nr_ac97_codecs == 1) {
2557 unsigned int id2 = chip->ac97[CS46XX_PRIMARY_CODEC_INDEX]->id & 0xffff;
2558 if (id2 == 0x592b || id2 == 0x592d) {
2559 err = snd_ctl_add(card, snd_ctl_new1(&snd_cs46xx_front_dup_ctl, chip));
2560 if (err < 0)
2561 return err;
2562 snd_ac97_write_cache(chip->ac97[CS46XX_PRIMARY_CODEC_INDEX],
2563 AC97_CSR_ACMODE, 0x200);
2564 }
2565 }
2566 /* do soundcard specific mixer setup */
2567 if (chip->mixer_init) {
2568 dev_dbg(chip->card->dev, "calling chip->mixer_init(chip);\n");
2569 chip->mixer_init(chip);
2570 }
2571#endif
2572
2573 /* turn on amplifier */
2574 chip->amplifier_ctrl(chip, 1);
2575
2576 return 0;
2577}
2578
2579/*
2580 * RawMIDI interface
2581 */
2582
2583static void snd_cs46xx_midi_reset(struct snd_cs46xx *chip)
2584{
2585 snd_cs46xx_pokeBA0(chip, BA0_MIDCR, MIDCR_MRST);
2586 udelay(100);
2587 snd_cs46xx_pokeBA0(chip, BA0_MIDCR, chip->midcr);
2588}
2589
2590static int snd_cs46xx_midi_input_open(struct snd_rawmidi_substream *substream)
2591{
2592 struct snd_cs46xx *chip = substream->rmidi->private_data;
2593
2594 chip->active_ctrl(chip, 1);
2595 spin_lock_irq(&chip->reg_lock);
2596 chip->uartm |= CS46XX_MODE_INPUT;
2597 chip->midcr |= MIDCR_RXE;
2598 chip->midi_input = substream;
2599 if (!(chip->uartm & CS46XX_MODE_OUTPUT)) {
2600 snd_cs46xx_midi_reset(chip);
2601 } else {
2602 snd_cs46xx_pokeBA0(chip, BA0_MIDCR, chip->midcr);
2603 }
2604 spin_unlock_irq(&chip->reg_lock);
2605 return 0;
2606}
2607
2608static int snd_cs46xx_midi_input_close(struct snd_rawmidi_substream *substream)
2609{
2610 struct snd_cs46xx *chip = substream->rmidi->private_data;
2611
2612 spin_lock_irq(&chip->reg_lock);
2613 chip->midcr &= ~(MIDCR_RXE | MIDCR_RIE);
2614 chip->midi_input = NULL;
2615 if (!(chip->uartm & CS46XX_MODE_OUTPUT)) {
2616 snd_cs46xx_midi_reset(chip);
2617 } else {
2618 snd_cs46xx_pokeBA0(chip, BA0_MIDCR, chip->midcr);
2619 }
2620 chip->uartm &= ~CS46XX_MODE_INPUT;
2621 spin_unlock_irq(&chip->reg_lock);
2622 chip->active_ctrl(chip, -1);
2623 return 0;
2624}
2625
2626static int snd_cs46xx_midi_output_open(struct snd_rawmidi_substream *substream)
2627{
2628 struct snd_cs46xx *chip = substream->rmidi->private_data;
2629
2630 chip->active_ctrl(chip, 1);
2631
2632 spin_lock_irq(&chip->reg_lock);
2633 chip->uartm |= CS46XX_MODE_OUTPUT;
2634 chip->midcr |= MIDCR_TXE;
2635 chip->midi_output = substream;
2636 if (!(chip->uartm & CS46XX_MODE_INPUT)) {
2637 snd_cs46xx_midi_reset(chip);
2638 } else {
2639 snd_cs46xx_pokeBA0(chip, BA0_MIDCR, chip->midcr);
2640 }
2641 spin_unlock_irq(&chip->reg_lock);
2642 return 0;
2643}
2644
2645static int snd_cs46xx_midi_output_close(struct snd_rawmidi_substream *substream)
2646{
2647 struct snd_cs46xx *chip = substream->rmidi->private_data;
2648
2649 spin_lock_irq(&chip->reg_lock);
2650 chip->midcr &= ~(MIDCR_TXE | MIDCR_TIE);
2651 chip->midi_output = NULL;
2652 if (!(chip->uartm & CS46XX_MODE_INPUT)) {
2653 snd_cs46xx_midi_reset(chip);
2654 } else {
2655 snd_cs46xx_pokeBA0(chip, BA0_MIDCR, chip->midcr);
2656 }
2657 chip->uartm &= ~CS46XX_MODE_OUTPUT;
2658 spin_unlock_irq(&chip->reg_lock);
2659 chip->active_ctrl(chip, -1);
2660 return 0;
2661}
2662
2663static void snd_cs46xx_midi_input_trigger(struct snd_rawmidi_substream *substream, int up)
2664{
2665 unsigned long flags;
2666 struct snd_cs46xx *chip = substream->rmidi->private_data;
2667
2668 spin_lock_irqsave(&chip->reg_lock, flags);
2669 if (up) {
2670 if ((chip->midcr & MIDCR_RIE) == 0) {
2671 chip->midcr |= MIDCR_RIE;
2672 snd_cs46xx_pokeBA0(chip, BA0_MIDCR, chip->midcr);
2673 }
2674 } else {
2675 if (chip->midcr & MIDCR_RIE) {
2676 chip->midcr &= ~MIDCR_RIE;
2677 snd_cs46xx_pokeBA0(chip, BA0_MIDCR, chip->midcr);
2678 }
2679 }
2680 spin_unlock_irqrestore(&chip->reg_lock, flags);
2681}
2682
2683static void snd_cs46xx_midi_output_trigger(struct snd_rawmidi_substream *substream, int up)
2684{
2685 unsigned long flags;
2686 struct snd_cs46xx *chip = substream->rmidi->private_data;
2687 unsigned char byte;
2688
2689 spin_lock_irqsave(&chip->reg_lock, flags);
2690 if (up) {
2691 if ((chip->midcr & MIDCR_TIE) == 0) {
2692 chip->midcr |= MIDCR_TIE;
2693 /* fill UART FIFO buffer at first, and turn Tx interrupts only if necessary */
2694 while ((chip->midcr & MIDCR_TIE) &&
2695 (snd_cs46xx_peekBA0(chip, BA0_MIDSR) & MIDSR_TBF) == 0) {
2696 if (snd_rawmidi_transmit(substream, &byte, 1) != 1) {
2697 chip->midcr &= ~MIDCR_TIE;
2698 } else {
2699 snd_cs46xx_pokeBA0(chip, BA0_MIDWP, byte);
2700 }
2701 }
2702 snd_cs46xx_pokeBA0(chip, BA0_MIDCR, chip->midcr);
2703 }
2704 } else {
2705 if (chip->midcr & MIDCR_TIE) {
2706 chip->midcr &= ~MIDCR_TIE;
2707 snd_cs46xx_pokeBA0(chip, BA0_MIDCR, chip->midcr);
2708 }
2709 }
2710 spin_unlock_irqrestore(&chip->reg_lock, flags);
2711}
2712
2713static struct snd_rawmidi_ops snd_cs46xx_midi_output =
2714{
2715 .open = snd_cs46xx_midi_output_open,
2716 .close = snd_cs46xx_midi_output_close,
2717 .trigger = snd_cs46xx_midi_output_trigger,
2718};
2719
2720static struct snd_rawmidi_ops snd_cs46xx_midi_input =
2721{
2722 .open = snd_cs46xx_midi_input_open,
2723 .close = snd_cs46xx_midi_input_close,
2724 .trigger = snd_cs46xx_midi_input_trigger,
2725};
2726
2727int snd_cs46xx_midi(struct snd_cs46xx *chip, int device, struct snd_rawmidi **rrawmidi)
2728{
2729 struct snd_rawmidi *rmidi;
2730 int err;
2731
2732 if (rrawmidi)
2733 *rrawmidi = NULL;
2734 if ((err = snd_rawmidi_new(chip->card, "CS46XX", device, 1, 1, &rmidi)) < 0)
2735 return err;
2736 strcpy(rmidi->name, "CS46XX");
2737 snd_rawmidi_set_ops(rmidi, SNDRV_RAWMIDI_STREAM_OUTPUT, &snd_cs46xx_midi_output);
2738 snd_rawmidi_set_ops(rmidi, SNDRV_RAWMIDI_STREAM_INPUT, &snd_cs46xx_midi_input);
2739 rmidi->info_flags |= SNDRV_RAWMIDI_INFO_OUTPUT | SNDRV_RAWMIDI_INFO_INPUT | SNDRV_RAWMIDI_INFO_DUPLEX;
2740 rmidi->private_data = chip;
2741 chip->rmidi = rmidi;
2742 if (rrawmidi)
2743 *rrawmidi = NULL;
2744 return 0;
2745}
2746
2747
2748/*
2749 * gameport interface
2750 */
2751
2752#if defined(CONFIG_GAMEPORT) || (defined(MODULE) && defined(CONFIG_GAMEPORT_MODULE))
2753
2754static void snd_cs46xx_gameport_trigger(struct gameport *gameport)
2755{
2756 struct snd_cs46xx *chip = gameport_get_port_data(gameport);
2757
2758 if (snd_BUG_ON(!chip))
2759 return;
2760 snd_cs46xx_pokeBA0(chip, BA0_JSPT, 0xFF); //outb(gameport->io, 0xFF);
2761}
2762
2763static unsigned char snd_cs46xx_gameport_read(struct gameport *gameport)
2764{
2765 struct snd_cs46xx *chip = gameport_get_port_data(gameport);
2766
2767 if (snd_BUG_ON(!chip))
2768 return 0;
2769 return snd_cs46xx_peekBA0(chip, BA0_JSPT); //inb(gameport->io);
2770}
2771
2772static int snd_cs46xx_gameport_cooked_read(struct gameport *gameport, int *axes, int *buttons)
2773{
2774 struct snd_cs46xx *chip = gameport_get_port_data(gameport);
2775 unsigned js1, js2, jst;
2776
2777 if (snd_BUG_ON(!chip))
2778 return 0;
2779
2780 js1 = snd_cs46xx_peekBA0(chip, BA0_JSC1);
2781 js2 = snd_cs46xx_peekBA0(chip, BA0_JSC2);
2782 jst = snd_cs46xx_peekBA0(chip, BA0_JSPT);
2783
2784 *buttons = (~jst >> 4) & 0x0F;
2785
2786 axes[0] = ((js1 & JSC1_Y1V_MASK) >> JSC1_Y1V_SHIFT) & 0xFFFF;
2787 axes[1] = ((js1 & JSC1_X1V_MASK) >> JSC1_X1V_SHIFT) & 0xFFFF;
2788 axes[2] = ((js2 & JSC2_Y2V_MASK) >> JSC2_Y2V_SHIFT) & 0xFFFF;
2789 axes[3] = ((js2 & JSC2_X2V_MASK) >> JSC2_X2V_SHIFT) & 0xFFFF;
2790
2791 for(jst=0;jst<4;++jst)
2792 if(axes[jst]==0xFFFF) axes[jst] = -1;
2793 return 0;
2794}
2795
2796static int snd_cs46xx_gameport_open(struct gameport *gameport, int mode)
2797{
2798 switch (mode) {
2799 case GAMEPORT_MODE_COOKED:
2800 return 0;
2801 case GAMEPORT_MODE_RAW:
2802 return 0;
2803 default:
2804 return -1;
2805 }
2806 return 0;
2807}
2808
2809int snd_cs46xx_gameport(struct snd_cs46xx *chip)
2810{
2811 struct gameport *gp;
2812
2813 chip->gameport = gp = gameport_allocate_port();
2814 if (!gp) {
2815 dev_err(chip->card->dev,
2816 "cannot allocate memory for gameport\n");
2817 return -ENOMEM;
2818 }
2819
2820 gameport_set_name(gp, "CS46xx Gameport");
2821 gameport_set_phys(gp, "pci%s/gameport0", pci_name(chip->pci));
2822 gameport_set_dev_parent(gp, &chip->pci->dev);
2823 gameport_set_port_data(gp, chip);
2824
2825 gp->open = snd_cs46xx_gameport_open;
2826 gp->read = snd_cs46xx_gameport_read;
2827 gp->trigger = snd_cs46xx_gameport_trigger;
2828 gp->cooked_read = snd_cs46xx_gameport_cooked_read;
2829
2830 snd_cs46xx_pokeBA0(chip, BA0_JSIO, 0xFF); // ?
2831 snd_cs46xx_pokeBA0(chip, BA0_JSCTL, JSCTL_SP_MEDIUM_SLOW);
2832
2833 gameport_register_port(gp);
2834
2835 return 0;
2836}
2837
2838static inline void snd_cs46xx_remove_gameport(struct snd_cs46xx *chip)
2839{
2840 if (chip->gameport) {
2841 gameport_unregister_port(chip->gameport);
2842 chip->gameport = NULL;
2843 }
2844}
2845#else
2846int snd_cs46xx_gameport(struct snd_cs46xx *chip) { return -ENOSYS; }
2847static inline void snd_cs46xx_remove_gameport(struct snd_cs46xx *chip) { }
2848#endif /* CONFIG_GAMEPORT */
2849
2850#ifdef CONFIG_PROC_FS
2851/*
2852 * proc interface
2853 */
2854
2855static ssize_t snd_cs46xx_io_read(struct snd_info_entry *entry,
2856 void *file_private_data,
2857 struct file *file, char __user *buf,
2858 size_t count, loff_t pos)
2859{
2860 struct snd_cs46xx_region *region = entry->private_data;
2861
2862 if (copy_to_user_fromio(buf, region->remap_addr + pos, count))
2863 return -EFAULT;
2864 return count;
2865}
2866
2867static struct snd_info_entry_ops snd_cs46xx_proc_io_ops = {
2868 .read = snd_cs46xx_io_read,
2869};
2870
2871static int snd_cs46xx_proc_init(struct snd_card *card, struct snd_cs46xx *chip)
2872{
2873 struct snd_info_entry *entry;
2874 int idx;
2875
2876 for (idx = 0; idx < 5; idx++) {
2877 struct snd_cs46xx_region *region = &chip->region.idx[idx];
2878 if (! snd_card_proc_new(card, region->name, &entry)) {
2879 entry->content = SNDRV_INFO_CONTENT_DATA;
2880 entry->private_data = chip;
2881 entry->c.ops = &snd_cs46xx_proc_io_ops;
2882 entry->size = region->size;
2883 entry->mode = S_IFREG | S_IRUSR;
2884 }
2885 }
2886#ifdef CONFIG_SND_CS46XX_NEW_DSP
2887 cs46xx_dsp_proc_init(card, chip);
2888#endif
2889 return 0;
2890}
2891
2892static int snd_cs46xx_proc_done(struct snd_cs46xx *chip)
2893{
2894#ifdef CONFIG_SND_CS46XX_NEW_DSP
2895 cs46xx_dsp_proc_done(chip);
2896#endif
2897 return 0;
2898}
2899#else /* !CONFIG_PROC_FS */
2900#define snd_cs46xx_proc_init(card, chip)
2901#define snd_cs46xx_proc_done(chip)
2902#endif
2903
2904/*
2905 * stop the h/w
2906 */
2907static void snd_cs46xx_hw_stop(struct snd_cs46xx *chip)
2908{
2909 unsigned int tmp;
2910
2911 tmp = snd_cs46xx_peek(chip, BA1_PFIE);
2912 tmp &= ~0x0000f03f;
2913 tmp |= 0x00000010;
2914 snd_cs46xx_poke(chip, BA1_PFIE, tmp); /* playback interrupt disable */
2915
2916 tmp = snd_cs46xx_peek(chip, BA1_CIE);
2917 tmp &= ~0x0000003f;
2918 tmp |= 0x00000011;
2919 snd_cs46xx_poke(chip, BA1_CIE, tmp); /* capture interrupt disable */
2920
2921 /*
2922 * Stop playback DMA.
2923 */
2924 tmp = snd_cs46xx_peek(chip, BA1_PCTL);
2925 snd_cs46xx_poke(chip, BA1_PCTL, tmp & 0x0000ffff);
2926
2927 /*
2928 * Stop capture DMA.
2929 */
2930 tmp = snd_cs46xx_peek(chip, BA1_CCTL);
2931 snd_cs46xx_poke(chip, BA1_CCTL, tmp & 0xffff0000);
2932
2933 /*
2934 * Reset the processor.
2935 */
2936 snd_cs46xx_reset(chip);
2937
2938 snd_cs46xx_proc_stop(chip);
2939
2940 /*
2941 * Power down the PLL.
2942 */
2943 snd_cs46xx_pokeBA0(chip, BA0_CLKCR1, 0);
2944
2945 /*
2946 * Turn off the Processor by turning off the software clock enable flag in
2947 * the clock control register.
2948 */
2949 tmp = snd_cs46xx_peekBA0(chip, BA0_CLKCR1) & ~CLKCR1_SWCE;
2950 snd_cs46xx_pokeBA0(chip, BA0_CLKCR1, tmp);
2951}
2952
2953
2954static int snd_cs46xx_free(struct snd_cs46xx *chip)
2955{
2956 int idx;
2957
2958 if (snd_BUG_ON(!chip))
2959 return -EINVAL;
2960
2961 if (chip->active_ctrl)
2962 chip->active_ctrl(chip, 1);
2963
2964 snd_cs46xx_remove_gameport(chip);
2965
2966 if (chip->amplifier_ctrl)
2967 chip->amplifier_ctrl(chip, -chip->amplifier); /* force to off */
2968
2969 snd_cs46xx_proc_done(chip);
2970
2971 if (chip->region.idx[0].resource)
2972 snd_cs46xx_hw_stop(chip);
2973
2974 if (chip->irq >= 0)
2975 free_irq(chip->irq, chip);
2976
2977 if (chip->active_ctrl)
2978 chip->active_ctrl(chip, -chip->amplifier);
2979
2980 for (idx = 0; idx < 5; idx++) {
2981 struct snd_cs46xx_region *region = &chip->region.idx[idx];
2982 if (region->remap_addr)
2983 iounmap(region->remap_addr);
2984 release_and_free_resource(region->resource);
2985 }
2986
2987#ifdef CONFIG_SND_CS46XX_NEW_DSP
2988 if (chip->dsp_spos_instance) {
2989 cs46xx_dsp_spos_destroy(chip);
2990 chip->dsp_spos_instance = NULL;
2991 }
2992 for (idx = 0; idx < CS46XX_DSP_MODULES; idx++)
2993 free_module_desc(chip->modules[idx]);
2994#else
2995 vfree(chip->ba1);
2996#endif
2997
2998#ifdef CONFIG_PM_SLEEP
2999 kfree(chip->saved_regs);
3000#endif
3001
3002 pci_disable_device(chip->pci);
3003 kfree(chip);
3004 return 0;
3005}
3006
3007static int snd_cs46xx_dev_free(struct snd_device *device)
3008{
3009 struct snd_cs46xx *chip = device->device_data;
3010 return snd_cs46xx_free(chip);
3011}
3012
3013/*
3014 * initialize chip
3015 */
3016static int snd_cs46xx_chip_init(struct snd_cs46xx *chip)
3017{
3018 int timeout;
3019
3020 /*
3021 * First, blast the clock control register to zero so that the PLL starts
3022 * out in a known state, and blast the master serial port control register
3023 * to zero so that the serial ports also start out in a known state.
3024 */
3025 snd_cs46xx_pokeBA0(chip, BA0_CLKCR1, 0);
3026 snd_cs46xx_pokeBA0(chip, BA0_SERMC1, 0);
3027
3028 /*
3029 * If we are in AC97 mode, then we must set the part to a host controlled
3030 * AC-link. Otherwise, we won't be able to bring up the link.
3031 */
3032#ifdef CONFIG_SND_CS46XX_NEW_DSP
3033 snd_cs46xx_pokeBA0(chip, BA0_SERACC, SERACC_HSP | SERACC_CHIP_TYPE_2_0 |
3034 SERACC_TWO_CODECS); /* 2.00 dual codecs */
3035 /* snd_cs46xx_pokeBA0(chip, BA0_SERACC, SERACC_HSP | SERACC_CHIP_TYPE_2_0); */ /* 2.00 codec */
3036#else
3037 snd_cs46xx_pokeBA0(chip, BA0_SERACC, SERACC_HSP | SERACC_CHIP_TYPE_1_03); /* 1.03 codec */
3038#endif
3039
3040 /*
3041 * Drive the ARST# pin low for a minimum of 1uS (as defined in the AC97
3042 * spec) and then drive it high. This is done for non AC97 modes since
3043 * there might be logic external to the CS461x that uses the ARST# line
3044 * for a reset.
3045 */
3046 snd_cs46xx_pokeBA0(chip, BA0_ACCTL, 0);
3047#ifdef CONFIG_SND_CS46XX_NEW_DSP
3048 snd_cs46xx_pokeBA0(chip, BA0_ACCTL2, 0);
3049#endif
3050 udelay(50);
3051 snd_cs46xx_pokeBA0(chip, BA0_ACCTL, ACCTL_RSTN);
3052#ifdef CONFIG_SND_CS46XX_NEW_DSP
3053 snd_cs46xx_pokeBA0(chip, BA0_ACCTL2, ACCTL_RSTN);
3054#endif
3055
3056 /*
3057 * The first thing we do here is to enable sync generation. As soon
3058 * as we start receiving bit clock, we'll start producing the SYNC
3059 * signal.
3060 */
3061 snd_cs46xx_pokeBA0(chip, BA0_ACCTL, ACCTL_ESYN | ACCTL_RSTN);
3062#ifdef CONFIG_SND_CS46XX_NEW_DSP
3063 snd_cs46xx_pokeBA0(chip, BA0_ACCTL2, ACCTL_ESYN | ACCTL_RSTN);
3064#endif
3065
3066 /*
3067 * Now wait for a short while to allow the AC97 part to start
3068 * generating bit clock (so we don't try to start the PLL without an
3069 * input clock).
3070 */
3071 mdelay(10);
3072
3073 /*
3074 * Set the serial port timing configuration, so that
3075 * the clock control circuit gets its clock from the correct place.
3076 */
3077 snd_cs46xx_pokeBA0(chip, BA0_SERMC1, SERMC1_PTC_AC97);
3078
3079 /*
3080 * Write the selected clock control setup to the hardware. Do not turn on
3081 * SWCE yet (if requested), so that the devices clocked by the output of
3082 * PLL are not clocked until the PLL is stable.
3083 */
3084 snd_cs46xx_pokeBA0(chip, BA0_PLLCC, PLLCC_LPF_1050_2780_KHZ | PLLCC_CDR_73_104_MHZ);
3085 snd_cs46xx_pokeBA0(chip, BA0_PLLM, 0x3a);
3086 snd_cs46xx_pokeBA0(chip, BA0_CLKCR2, CLKCR2_PDIVS_8);
3087
3088 /*
3089 * Power up the PLL.
3090 */
3091 snd_cs46xx_pokeBA0(chip, BA0_CLKCR1, CLKCR1_PLLP);
3092
3093 /*
3094 * Wait until the PLL has stabilized.
3095 */
3096 msleep(100);
3097
3098 /*
3099 * Turn on clocking of the core so that we can setup the serial ports.
3100 */
3101 snd_cs46xx_pokeBA0(chip, BA0_CLKCR1, CLKCR1_PLLP | CLKCR1_SWCE);
3102
3103 /*
3104 * Enable FIFO Host Bypass
3105 */
3106 snd_cs46xx_pokeBA0(chip, BA0_SERBCF, SERBCF_HBP);
3107
3108 /*
3109 * Fill the serial port FIFOs with silence.
3110 */
3111 snd_cs46xx_clear_serial_FIFOs(chip);
3112
3113 /*
3114 * Set the serial port FIFO pointer to the first sample in the FIFO.
3115 */
3116 /* snd_cs46xx_pokeBA0(chip, BA0_SERBSP, 0); */
3117
3118 /*
3119 * Write the serial port configuration to the part. The master
3120 * enable bit is not set until all other values have been written.
3121 */
3122 snd_cs46xx_pokeBA0(chip, BA0_SERC1, SERC1_SO1F_AC97 | SERC1_SO1EN);
3123 snd_cs46xx_pokeBA0(chip, BA0_SERC2, SERC2_SI1F_AC97 | SERC1_SO1EN);
3124 snd_cs46xx_pokeBA0(chip, BA0_SERMC1, SERMC1_PTC_AC97 | SERMC1_MSPE);
3125
3126
3127#ifdef CONFIG_SND_CS46XX_NEW_DSP
3128 snd_cs46xx_pokeBA0(chip, BA0_SERC7, SERC7_ASDI2EN);
3129 snd_cs46xx_pokeBA0(chip, BA0_SERC3, 0);
3130 snd_cs46xx_pokeBA0(chip, BA0_SERC4, 0);
3131 snd_cs46xx_pokeBA0(chip, BA0_SERC5, 0);
3132 snd_cs46xx_pokeBA0(chip, BA0_SERC6, 1);
3133#endif
3134
3135 mdelay(5);
3136
3137
3138 /*
3139 * Wait for the codec ready signal from the AC97 codec.
3140 */
3141 timeout = 150;
3142 while (timeout-- > 0) {
3143 /*
3144 * Read the AC97 status register to see if we've seen a CODEC READY
3145 * signal from the AC97 codec.
3146 */
3147 if (snd_cs46xx_peekBA0(chip, BA0_ACSTS) & ACSTS_CRDY)
3148 goto ok1;
3149 msleep(10);
3150 }
3151
3152
3153 dev_err(chip->card->dev,
3154 "create - never read codec ready from AC'97\n");
3155 dev_err(chip->card->dev,
3156 "it is not probably bug, try to use CS4236 driver\n");
3157 return -EIO;
3158 ok1:
3159#ifdef CONFIG_SND_CS46XX_NEW_DSP
3160 {
3161 int count;
3162 for (count = 0; count < 150; count++) {
3163 /* First, we want to wait for a short time. */
3164 udelay(25);
3165
3166 if (snd_cs46xx_peekBA0(chip, BA0_ACSTS2) & ACSTS_CRDY)
3167 break;
3168 }
3169
3170 /*
3171 * Make sure CODEC is READY.
3172 */
3173 if (!(snd_cs46xx_peekBA0(chip, BA0_ACSTS2) & ACSTS_CRDY))
3174 dev_dbg(chip->card->dev,
3175 "never read card ready from secondary AC'97\n");
3176 }
3177#endif
3178
3179 /*
3180 * Assert the vaid frame signal so that we can start sending commands
3181 * to the AC97 codec.
3182 */
3183 snd_cs46xx_pokeBA0(chip, BA0_ACCTL, ACCTL_VFRM | ACCTL_ESYN | ACCTL_RSTN);
3184#ifdef CONFIG_SND_CS46XX_NEW_DSP
3185 snd_cs46xx_pokeBA0(chip, BA0_ACCTL2, ACCTL_VFRM | ACCTL_ESYN | ACCTL_RSTN);
3186#endif
3187
3188
3189 /*
3190 * Wait until we've sampled input slots 3 and 4 as valid, meaning that
3191 * the codec is pumping ADC data across the AC-link.
3192 */
3193 timeout = 150;
3194 while (timeout-- > 0) {
3195 /*
3196 * Read the input slot valid register and see if input slots 3 and
3197 * 4 are valid yet.
3198 */
3199 if ((snd_cs46xx_peekBA0(chip, BA0_ACISV) & (ACISV_ISV3 | ACISV_ISV4)) == (ACISV_ISV3 | ACISV_ISV4))
3200 goto ok2;
3201 msleep(10);
3202 }
3203
3204#ifndef CONFIG_SND_CS46XX_NEW_DSP
3205 dev_err(chip->card->dev,
3206 "create - never read ISV3 & ISV4 from AC'97\n");
3207 return -EIO;
3208#else
3209 /* This may happen on a cold boot with a Terratec SiXPack 5.1.
3210 Reloading the driver may help, if there's other soundcards
3211 with the same problem I would like to know. (Benny) */
3212
3213 dev_err(chip->card->dev, "never read ISV3 & ISV4 from AC'97\n");
3214 dev_err(chip->card->dev,
3215 "Try reloading the ALSA driver, if you find something\n");
3216 dev_err(chip->card->dev,
3217 "broken or not working on your soundcard upon\n");
3218 dev_err(chip->card->dev,
3219 "this message please report to alsa-devel@alsa-project.org\n");
3220
3221 return -EIO;
3222#endif
3223 ok2:
3224
3225 /*
3226 * Now, assert valid frame and the slot 3 and 4 valid bits. This will
3227 * commense the transfer of digital audio data to the AC97 codec.
3228 */
3229
3230 snd_cs46xx_pokeBA0(chip, BA0_ACOSV, ACOSV_SLV3 | ACOSV_SLV4);
3231
3232
3233 /*
3234 * Power down the DAC and ADC. We will power them up (if) when we need
3235 * them.
3236 */
3237 /* snd_cs46xx_pokeBA0(chip, BA0_AC97_POWERDOWN, 0x300); */
3238
3239 /*
3240 * Turn off the Processor by turning off the software clock enable flag in
3241 * the clock control register.
3242 */
3243 /* tmp = snd_cs46xx_peekBA0(chip, BA0_CLKCR1) & ~CLKCR1_SWCE; */
3244 /* snd_cs46xx_pokeBA0(chip, BA0_CLKCR1, tmp); */
3245
3246 return 0;
3247}
3248
3249/*
3250 * start and load DSP
3251 */
3252
3253static void cs46xx_enable_stream_irqs(struct snd_cs46xx *chip)
3254{
3255 unsigned int tmp;
3256
3257 snd_cs46xx_pokeBA0(chip, BA0_HICR, HICR_IEV | HICR_CHGM);
3258
3259 tmp = snd_cs46xx_peek(chip, BA1_PFIE);
3260 tmp &= ~0x0000f03f;
3261 snd_cs46xx_poke(chip, BA1_PFIE, tmp); /* playback interrupt enable */
3262
3263 tmp = snd_cs46xx_peek(chip, BA1_CIE);
3264 tmp &= ~0x0000003f;
3265 tmp |= 0x00000001;
3266 snd_cs46xx_poke(chip, BA1_CIE, tmp); /* capture interrupt enable */
3267}
3268
3269int snd_cs46xx_start_dsp(struct snd_cs46xx *chip)
3270{
3271 unsigned int tmp;
3272#ifdef CONFIG_SND_CS46XX_NEW_DSP
3273 int i;
3274#endif
3275 int err;
3276
3277 /*
3278 * Reset the processor.
3279 */
3280 snd_cs46xx_reset(chip);
3281 /*
3282 * Download the image to the processor.
3283 */
3284#ifdef CONFIG_SND_CS46XX_NEW_DSP
3285 for (i = 0; i < CS46XX_DSP_MODULES; i++) {
3286 err = load_firmware(chip, &chip->modules[i], module_names[i]);
3287 if (err < 0) {
3288 dev_err(chip->card->dev, "firmware load error [%s]\n",
3289 module_names[i]);
3290 return err;
3291 }
3292 err = cs46xx_dsp_load_module(chip, chip->modules[i]);
3293 if (err < 0) {
3294 dev_err(chip->card->dev, "image download error [%s]\n",
3295 module_names[i]);
3296 return err;
3297 }
3298 }
3299
3300 if (cs46xx_dsp_scb_and_task_init(chip) < 0)
3301 return -EIO;
3302#else
3303 err = load_firmware(chip);
3304 if (err < 0)
3305 return err;
3306
3307 /* old image */
3308 err = snd_cs46xx_download_image(chip);
3309 if (err < 0) {
3310 dev_err(chip->card->dev, "image download error\n");
3311 return err;
3312 }
3313
3314 /*
3315 * Stop playback DMA.
3316 */
3317 tmp = snd_cs46xx_peek(chip, BA1_PCTL);
3318 chip->play_ctl = tmp & 0xffff0000;
3319 snd_cs46xx_poke(chip, BA1_PCTL, tmp & 0x0000ffff);
3320#endif
3321
3322 /*
3323 * Stop capture DMA.
3324 */
3325 tmp = snd_cs46xx_peek(chip, BA1_CCTL);
3326 chip->capt.ctl = tmp & 0x0000ffff;
3327 snd_cs46xx_poke(chip, BA1_CCTL, tmp & 0xffff0000);
3328
3329 mdelay(5);
3330
3331 snd_cs46xx_set_play_sample_rate(chip, 8000);
3332 snd_cs46xx_set_capture_sample_rate(chip, 8000);
3333
3334 snd_cs46xx_proc_start(chip);
3335
3336 cs46xx_enable_stream_irqs(chip);
3337
3338#ifndef CONFIG_SND_CS46XX_NEW_DSP
3339 /* set the attenuation to 0dB */
3340 snd_cs46xx_poke(chip, BA1_PVOL, 0x80008000);
3341 snd_cs46xx_poke(chip, BA1_CVOL, 0x80008000);
3342#endif
3343
3344 return 0;
3345}
3346
3347
3348/*
3349 * AMP control - null AMP
3350 */
3351
3352static void amp_none(struct snd_cs46xx *chip, int change)
3353{
3354}
3355
3356#ifdef CONFIG_SND_CS46XX_NEW_DSP
3357static int voyetra_setup_eapd_slot(struct snd_cs46xx *chip)
3358{
3359
3360 u32 idx, valid_slots,tmp,powerdown = 0;
3361 u16 modem_power,pin_config,logic_type;
3362
3363 dev_dbg(chip->card->dev, "cs46xx_setup_eapd_slot()+\n");
3364
3365 /*
3366 * See if the devices are powered down. If so, we must power them up first
3367 * or they will not respond.
3368 */
3369 tmp = snd_cs46xx_peekBA0(chip, BA0_CLKCR1);
3370
3371 if (!(tmp & CLKCR1_SWCE)) {
3372 snd_cs46xx_pokeBA0(chip, BA0_CLKCR1, tmp | CLKCR1_SWCE);
3373 powerdown = 1;
3374 }
3375
3376 /*
3377 * Clear PRA. The Bonzo chip will be used for GPIO not for modem
3378 * stuff.
3379 */
3380 if(chip->nr_ac97_codecs != 2) {
3381 dev_err(chip->card->dev,
3382 "cs46xx_setup_eapd_slot() - no secondary codec configured\n");
3383 return -EINVAL;
3384 }
3385
3386 modem_power = snd_cs46xx_codec_read (chip,
3387 AC97_EXTENDED_MSTATUS,
3388 CS46XX_SECONDARY_CODEC_INDEX);
3389 modem_power &=0xFEFF;
3390
3391 snd_cs46xx_codec_write(chip,
3392 AC97_EXTENDED_MSTATUS, modem_power,
3393 CS46XX_SECONDARY_CODEC_INDEX);
3394
3395 /*
3396 * Set GPIO pin's 7 and 8 so that they are configured for output.
3397 */
3398 pin_config = snd_cs46xx_codec_read (chip,
3399 AC97_GPIO_CFG,
3400 CS46XX_SECONDARY_CODEC_INDEX);
3401 pin_config &=0x27F;
3402
3403 snd_cs46xx_codec_write(chip,
3404 AC97_GPIO_CFG, pin_config,
3405 CS46XX_SECONDARY_CODEC_INDEX);
3406
3407 /*
3408 * Set GPIO pin's 7 and 8 so that they are compatible with CMOS logic.
3409 */
3410
3411 logic_type = snd_cs46xx_codec_read(chip, AC97_GPIO_POLARITY,
3412 CS46XX_SECONDARY_CODEC_INDEX);
3413 logic_type &=0x27F;
3414
3415 snd_cs46xx_codec_write (chip, AC97_GPIO_POLARITY, logic_type,
3416 CS46XX_SECONDARY_CODEC_INDEX);
3417
3418 valid_slots = snd_cs46xx_peekBA0(chip, BA0_ACOSV);
3419 valid_slots |= 0x200;
3420 snd_cs46xx_pokeBA0(chip, BA0_ACOSV, valid_slots);
3421
3422 if ( cs46xx_wait_for_fifo(chip,1) ) {
3423 dev_dbg(chip->card->dev, "FIFO is busy\n");
3424
3425 return -EINVAL;
3426 }
3427
3428 /*
3429 * Fill slots 12 with the correct value for the GPIO pins.
3430 */
3431 for(idx = 0x90; idx <= 0x9F; idx++) {
3432 /*
3433 * Initialize the fifo so that bits 7 and 8 are on.
3434 *
3435 * Remember that the GPIO pins in bonzo are shifted by 4 bits to
3436 * the left. 0x1800 corresponds to bits 7 and 8.
3437 */
3438 snd_cs46xx_pokeBA0(chip, BA0_SERBWP, 0x1800);
3439
3440 /*
3441 * Wait for command to complete
3442 */
3443 if ( cs46xx_wait_for_fifo(chip,200) ) {
3444 dev_dbg(chip->card->dev,
3445 "failed waiting for FIFO at addr (%02X)\n",
3446 idx);
3447
3448 return -EINVAL;
3449 }
3450
3451 /*
3452 * Write the serial port FIFO index.
3453 */
3454 snd_cs46xx_pokeBA0(chip, BA0_SERBAD, idx);
3455
3456 /*
3457 * Tell the serial port to load the new value into the FIFO location.
3458 */
3459 snd_cs46xx_pokeBA0(chip, BA0_SERBCM, SERBCM_WRC);
3460 }
3461
3462 /* wait for last command to complete */
3463 cs46xx_wait_for_fifo(chip,200);
3464
3465 /*
3466 * Now, if we powered up the devices, then power them back down again.
3467 * This is kinda ugly, but should never happen.
3468 */
3469 if (powerdown)
3470 snd_cs46xx_pokeBA0(chip, BA0_CLKCR1, tmp);
3471
3472 return 0;
3473}
3474#endif
3475
3476/*
3477 * Crystal EAPD mode
3478 */
3479
3480static void amp_voyetra(struct snd_cs46xx *chip, int change)
3481{
3482 /* Manage the EAPD bit on the Crystal 4297
3483 and the Analog AD1885 */
3484
3485#ifdef CONFIG_SND_CS46XX_NEW_DSP
3486 int old = chip->amplifier;
3487#endif
3488 int oval, val;
3489
3490 chip->amplifier += change;
3491 oval = snd_cs46xx_codec_read(chip, AC97_POWERDOWN,
3492 CS46XX_PRIMARY_CODEC_INDEX);
3493 val = oval;
3494 if (chip->amplifier) {
3495 /* Turn the EAPD amp on */
3496 val |= 0x8000;
3497 } else {
3498 /* Turn the EAPD amp off */
3499 val &= ~0x8000;
3500 }
3501 if (val != oval) {
3502 snd_cs46xx_codec_write(chip, AC97_POWERDOWN, val,
3503 CS46XX_PRIMARY_CODEC_INDEX);
3504 if (chip->eapd_switch)
3505 snd_ctl_notify(chip->card, SNDRV_CTL_EVENT_MASK_VALUE,
3506 &chip->eapd_switch->id);
3507 }
3508
3509#ifdef CONFIG_SND_CS46XX_NEW_DSP
3510 if (chip->amplifier && !old) {
3511 voyetra_setup_eapd_slot(chip);
3512 }
3513#endif
3514}
3515
3516static void hercules_init(struct snd_cs46xx *chip)
3517{
3518 /* default: AMP off, and SPDIF input optical */
3519 snd_cs46xx_pokeBA0(chip, BA0_EGPIODR, EGPIODR_GPOE0);
3520 snd_cs46xx_pokeBA0(chip, BA0_EGPIOPTR, EGPIODR_GPOE0);
3521}
3522
3523
3524/*
3525 * Game Theatre XP card - EGPIO[2] is used to enable the external amp.
3526 */
3527static void amp_hercules(struct snd_cs46xx *chip, int change)
3528{
3529 int old = chip->amplifier;
3530 int val1 = snd_cs46xx_peekBA0(chip, BA0_EGPIODR);
3531 int val2 = snd_cs46xx_peekBA0(chip, BA0_EGPIOPTR);
3532
3533 chip->amplifier += change;
3534 if (chip->amplifier && !old) {
3535 dev_dbg(chip->card->dev, "Hercules amplifier ON\n");
3536
3537 snd_cs46xx_pokeBA0(chip, BA0_EGPIODR,
3538 EGPIODR_GPOE2 | val1); /* enable EGPIO2 output */
3539 snd_cs46xx_pokeBA0(chip, BA0_EGPIOPTR,
3540 EGPIOPTR_GPPT2 | val2); /* open-drain on output */
3541 } else if (old && !chip->amplifier) {
3542 dev_dbg(chip->card->dev, "Hercules amplifier OFF\n");
3543 snd_cs46xx_pokeBA0(chip, BA0_EGPIODR, val1 & ~EGPIODR_GPOE2); /* disable */
3544 snd_cs46xx_pokeBA0(chip, BA0_EGPIOPTR, val2 & ~EGPIOPTR_GPPT2); /* disable */
3545 }
3546}
3547
3548static void voyetra_mixer_init (struct snd_cs46xx *chip)
3549{
3550 dev_dbg(chip->card->dev, "initializing Voyetra mixer\n");
3551
3552 /* Enable SPDIF out */
3553 snd_cs46xx_pokeBA0(chip, BA0_EGPIODR, EGPIODR_GPOE0);
3554 snd_cs46xx_pokeBA0(chip, BA0_EGPIOPTR, EGPIODR_GPOE0);
3555}
3556
3557static void hercules_mixer_init (struct snd_cs46xx *chip)
3558{
3559#ifdef CONFIG_SND_CS46XX_NEW_DSP
3560 unsigned int idx;
3561 int err;
3562 struct snd_card *card = chip->card;
3563#endif
3564
3565 /* set EGPIO to default */
3566 hercules_init(chip);
3567
3568 dev_dbg(chip->card->dev, "initializing Hercules mixer\n");
3569
3570#ifdef CONFIG_SND_CS46XX_NEW_DSP
3571 if (chip->in_suspend)
3572 return;
3573
3574 for (idx = 0 ; idx < ARRAY_SIZE(snd_hercules_controls); idx++) {
3575 struct snd_kcontrol *kctl;
3576
3577 kctl = snd_ctl_new1(&snd_hercules_controls[idx], chip);
3578 if ((err = snd_ctl_add(card, kctl)) < 0) {
3579 dev_err(card->dev,
3580 "failed to initialize Hercules mixer (%d)\n",
3581 err);
3582 break;
3583 }
3584 }
3585#endif
3586}
3587
3588
3589#if 0
3590/*
3591 * Untested
3592 */
3593
3594static void amp_voyetra_4294(struct snd_cs46xx *chip, int change)
3595{
3596 chip->amplifier += change;
3597
3598 if (chip->amplifier) {
3599 /* Switch the GPIO pins 7 and 8 to open drain */
3600 snd_cs46xx_codec_write(chip, 0x4C,
3601 snd_cs46xx_codec_read(chip, 0x4C) & 0xFE7F);
3602 snd_cs46xx_codec_write(chip, 0x4E,
3603 snd_cs46xx_codec_read(chip, 0x4E) | 0x0180);
3604 /* Now wake the AMP (this might be backwards) */
3605 snd_cs46xx_codec_write(chip, 0x54,
3606 snd_cs46xx_codec_read(chip, 0x54) & ~0x0180);
3607 } else {
3608 snd_cs46xx_codec_write(chip, 0x54,
3609 snd_cs46xx_codec_read(chip, 0x54) | 0x0180);
3610 }
3611}
3612#endif
3613
3614
3615/*
3616 * Handle the CLKRUN on a thinkpad. We must disable CLKRUN support
3617 * whenever we need to beat on the chip.
3618 *
3619 * The original idea and code for this hack comes from David Kaiser at
3620 * Linuxcare. Perhaps one day Crystal will document their chips well
3621 * enough to make them useful.
3622 */
3623
3624static void clkrun_hack(struct snd_cs46xx *chip, int change)
3625{
3626 u16 control, nval;
3627
3628 if (!chip->acpi_port)
3629 return;
3630
3631 chip->amplifier += change;
3632
3633 /* Read ACPI port */
3634 nval = control = inw(chip->acpi_port + 0x10);
3635
3636 /* Flip CLKRUN off while running */
3637 if (! chip->amplifier)
3638 nval |= 0x2000;
3639 else
3640 nval &= ~0x2000;
3641 if (nval != control)
3642 outw(nval, chip->acpi_port + 0x10);
3643}
3644
3645
3646/*
3647 * detect intel piix4
3648 */
3649static void clkrun_init(struct snd_cs46xx *chip)
3650{
3651 struct pci_dev *pdev;
3652 u8 pp;
3653
3654 chip->acpi_port = 0;
3655
3656 pdev = pci_get_device(PCI_VENDOR_ID_INTEL,
3657 PCI_DEVICE_ID_INTEL_82371AB_3, NULL);
3658 if (pdev == NULL)
3659 return; /* Not a thinkpad thats for sure */
3660
3661 /* Find the control port */
3662 pci_read_config_byte(pdev, 0x41, &pp);
3663 chip->acpi_port = pp << 8;
3664 pci_dev_put(pdev);
3665}
3666
3667
3668/*
3669 * Card subid table
3670 */
3671
3672struct cs_card_type
3673{
3674 u16 vendor;
3675 u16 id;
3676 char *name;
3677 void (*init)(struct snd_cs46xx *);
3678 void (*amp)(struct snd_cs46xx *, int);
3679 void (*active)(struct snd_cs46xx *, int);
3680 void (*mixer_init)(struct snd_cs46xx *);
3681};
3682
3683static struct cs_card_type cards[] = {
3684 {
3685 .vendor = 0x1489,
3686 .id = 0x7001,
3687 .name = "Genius Soundmaker 128 value",
3688 /* nothing special */
3689 },
3690 {
3691 .vendor = 0x5053,
3692 .id = 0x3357,
3693 .name = "Voyetra",
3694 .amp = amp_voyetra,
3695 .mixer_init = voyetra_mixer_init,
3696 },
3697 {
3698 .vendor = 0x1071,
3699 .id = 0x6003,
3700 .name = "Mitac MI6020/21",
3701 .amp = amp_voyetra,
3702 },
3703 /* Hercules Game Theatre XP */
3704 {
3705 .vendor = 0x14af, /* Guillemot Corporation */
3706 .id = 0x0050,
3707 .name = "Hercules Game Theatre XP",
3708 .amp = amp_hercules,
3709 .mixer_init = hercules_mixer_init,
3710 },
3711 {
3712 .vendor = 0x1681,
3713 .id = 0x0050,
3714 .name = "Hercules Game Theatre XP",
3715 .amp = amp_hercules,
3716 .mixer_init = hercules_mixer_init,
3717 },
3718 {
3719 .vendor = 0x1681,
3720 .id = 0x0051,
3721 .name = "Hercules Game Theatre XP",
3722 .amp = amp_hercules,
3723 .mixer_init = hercules_mixer_init,
3724
3725 },
3726 {
3727 .vendor = 0x1681,
3728 .id = 0x0052,
3729 .name = "Hercules Game Theatre XP",
3730 .amp = amp_hercules,
3731 .mixer_init = hercules_mixer_init,
3732 },
3733 {
3734 .vendor = 0x1681,
3735 .id = 0x0053,
3736 .name = "Hercules Game Theatre XP",
3737 .amp = amp_hercules,
3738 .mixer_init = hercules_mixer_init,
3739 },
3740 {
3741 .vendor = 0x1681,
3742 .id = 0x0054,
3743 .name = "Hercules Game Theatre XP",
3744 .amp = amp_hercules,
3745 .mixer_init = hercules_mixer_init,
3746 },
3747 /* Herculess Fortissimo */
3748 {
3749 .vendor = 0x1681,
3750 .id = 0xa010,
3751 .name = "Hercules Gamesurround Fortissimo II",
3752 },
3753 {
3754 .vendor = 0x1681,
3755 .id = 0xa011,
3756 .name = "Hercules Gamesurround Fortissimo III 7.1",
3757 },
3758 /* Teratec */
3759 {
3760 .vendor = 0x153b,
3761 .id = 0x112e,
3762 .name = "Terratec DMX XFire 1024",
3763 },
3764 {
3765 .vendor = 0x153b,
3766 .id = 0x1136,
3767 .name = "Terratec SiXPack 5.1",
3768 },
3769 /* Not sure if the 570 needs the clkrun hack */
3770 {
3771 .vendor = PCI_VENDOR_ID_IBM,
3772 .id = 0x0132,
3773 .name = "Thinkpad 570",
3774 .init = clkrun_init,
3775 .active = clkrun_hack,
3776 },
3777 {
3778 .vendor = PCI_VENDOR_ID_IBM,
3779 .id = 0x0153,
3780 .name = "Thinkpad 600X/A20/T20",
3781 .init = clkrun_init,
3782 .active = clkrun_hack,
3783 },
3784 {
3785 .vendor = PCI_VENDOR_ID_IBM,
3786 .id = 0x1010,
3787 .name = "Thinkpad 600E (unsupported)",
3788 },
3789 {} /* terminator */
3790};
3791
3792
3793/*
3794 * APM support
3795 */
3796#ifdef CONFIG_PM_SLEEP
3797static unsigned int saved_regs[] = {
3798 BA0_ACOSV,
3799 /*BA0_ASER_FADDR,*/
3800 BA0_ASER_MASTER,
3801 BA1_PVOL,
3802 BA1_CVOL,
3803};
3804
3805static int snd_cs46xx_suspend(struct device *dev)
3806{
3807 struct pci_dev *pci = to_pci_dev(dev);
3808 struct snd_card *card = dev_get_drvdata(dev);
3809 struct snd_cs46xx *chip = card->private_data;
3810 int i, amp_saved;
3811
3812 snd_power_change_state(card, SNDRV_CTL_POWER_D3hot);
3813 chip->in_suspend = 1;
3814 snd_pcm_suspend_all(chip->pcm);
3815 // chip->ac97_powerdown = snd_cs46xx_codec_read(chip, AC97_POWER_CONTROL);
3816 // chip->ac97_general_purpose = snd_cs46xx_codec_read(chip, BA0_AC97_GENERAL_PURPOSE);
3817
3818 snd_ac97_suspend(chip->ac97[CS46XX_PRIMARY_CODEC_INDEX]);
3819 snd_ac97_suspend(chip->ac97[CS46XX_SECONDARY_CODEC_INDEX]);
3820
3821 /* save some registers */
3822 for (i = 0; i < ARRAY_SIZE(saved_regs); i++)
3823 chip->saved_regs[i] = snd_cs46xx_peekBA0(chip, saved_regs[i]);
3824
3825 amp_saved = chip->amplifier;
3826 /* turn off amp */
3827 chip->amplifier_ctrl(chip, -chip->amplifier);
3828 snd_cs46xx_hw_stop(chip);
3829 /* disable CLKRUN */
3830 chip->active_ctrl(chip, -chip->amplifier);
3831 chip->amplifier = amp_saved; /* restore the status */
3832
3833 pci_disable_device(pci);
3834 pci_save_state(pci);
3835 pci_set_power_state(pci, PCI_D3hot);
3836 return 0;
3837}
3838
3839static int snd_cs46xx_resume(struct device *dev)
3840{
3841 struct pci_dev *pci = to_pci_dev(dev);
3842 struct snd_card *card = dev_get_drvdata(dev);
3843 struct snd_cs46xx *chip = card->private_data;
3844 int amp_saved;
3845#ifdef CONFIG_SND_CS46XX_NEW_DSP
3846 int i;
3847#endif
3848 unsigned int tmp;
3849
3850 pci_set_power_state(pci, PCI_D0);
3851 pci_restore_state(pci);
3852 if (pci_enable_device(pci) < 0) {
3853 dev_err(dev, "pci_enable_device failed, disabling device\n");
3854 snd_card_disconnect(card);
3855 return -EIO;
3856 }
3857 pci_set_master(pci);
3858
3859 amp_saved = chip->amplifier;
3860 chip->amplifier = 0;
3861 chip->active_ctrl(chip, 1); /* force to on */
3862
3863 snd_cs46xx_chip_init(chip);
3864
3865 snd_cs46xx_reset(chip);
3866#ifdef CONFIG_SND_CS46XX_NEW_DSP
3867 cs46xx_dsp_resume(chip);
3868 /* restore some registers */
3869 for (i = 0; i < ARRAY_SIZE(saved_regs); i++)
3870 snd_cs46xx_pokeBA0(chip, saved_regs[i], chip->saved_regs[i]);
3871#else
3872 snd_cs46xx_download_image(chip);
3873#endif
3874
3875#if 0
3876 snd_cs46xx_codec_write(chip, BA0_AC97_GENERAL_PURPOSE,
3877 chip->ac97_general_purpose);
3878 snd_cs46xx_codec_write(chip, AC97_POWER_CONTROL,
3879 chip->ac97_powerdown);
3880 mdelay(10);
3881 snd_cs46xx_codec_write(chip, BA0_AC97_POWERDOWN,
3882 chip->ac97_powerdown);
3883 mdelay(5);
3884#endif
3885
3886 snd_ac97_resume(chip->ac97[CS46XX_PRIMARY_CODEC_INDEX]);
3887 snd_ac97_resume(chip->ac97[CS46XX_SECONDARY_CODEC_INDEX]);
3888
3889 /*
3890 * Stop capture DMA.
3891 */
3892 tmp = snd_cs46xx_peek(chip, BA1_CCTL);
3893 chip->capt.ctl = tmp & 0x0000ffff;
3894 snd_cs46xx_poke(chip, BA1_CCTL, tmp & 0xffff0000);
3895
3896 mdelay(5);
3897
3898 /* reset playback/capture */
3899 snd_cs46xx_set_play_sample_rate(chip, 8000);
3900 snd_cs46xx_set_capture_sample_rate(chip, 8000);
3901 snd_cs46xx_proc_start(chip);
3902
3903 cs46xx_enable_stream_irqs(chip);
3904
3905 if (amp_saved)
3906 chip->amplifier_ctrl(chip, 1); /* turn amp on */
3907 else
3908 chip->active_ctrl(chip, -1); /* disable CLKRUN */
3909 chip->amplifier = amp_saved;
3910 chip->in_suspend = 0;
3911 snd_power_change_state(card, SNDRV_CTL_POWER_D0);
3912 return 0;
3913}
3914
3915SIMPLE_DEV_PM_OPS(snd_cs46xx_pm, snd_cs46xx_suspend, snd_cs46xx_resume);
3916#endif /* CONFIG_PM_SLEEP */
3917
3918
3919/*
3920 */
3921
3922int snd_cs46xx_create(struct snd_card *card,
3923 struct pci_dev *pci,
3924 int external_amp, int thinkpad,
3925 struct snd_cs46xx **rchip)
3926{
3927 struct snd_cs46xx *chip;
3928 int err, idx;
3929 struct snd_cs46xx_region *region;
3930 struct cs_card_type *cp;
3931 u16 ss_card, ss_vendor;
3932 static struct snd_device_ops ops = {
3933 .dev_free = snd_cs46xx_dev_free,
3934 };
3935
3936 *rchip = NULL;
3937
3938 /* enable PCI device */
3939 if ((err = pci_enable_device(pci)) < 0)
3940 return err;
3941
3942 chip = kzalloc(sizeof(*chip), GFP_KERNEL);
3943 if (chip == NULL) {
3944 pci_disable_device(pci);
3945 return -ENOMEM;
3946 }
3947 spin_lock_init(&chip->reg_lock);
3948#ifdef CONFIG_SND_CS46XX_NEW_DSP
3949 mutex_init(&chip->spos_mutex);
3950#endif
3951 chip->card = card;
3952 chip->pci = pci;
3953 chip->irq = -1;
3954 chip->ba0_addr = pci_resource_start(pci, 0);
3955 chip->ba1_addr = pci_resource_start(pci, 1);
3956 if (chip->ba0_addr == 0 || chip->ba0_addr == (unsigned long)~0 ||
3957 chip->ba1_addr == 0 || chip->ba1_addr == (unsigned long)~0) {
3958 dev_err(chip->card->dev,
3959 "wrong address(es) - ba0 = 0x%lx, ba1 = 0x%lx\n",
3960 chip->ba0_addr, chip->ba1_addr);
3961 snd_cs46xx_free(chip);
3962 return -ENOMEM;
3963 }
3964
3965 region = &chip->region.name.ba0;
3966 strcpy(region->name, "CS46xx_BA0");
3967 region->base = chip->ba0_addr;
3968 region->size = CS46XX_BA0_SIZE;
3969
3970 region = &chip->region.name.data0;
3971 strcpy(region->name, "CS46xx_BA1_data0");
3972 region->base = chip->ba1_addr + BA1_SP_DMEM0;
3973 region->size = CS46XX_BA1_DATA0_SIZE;
3974
3975 region = &chip->region.name.data1;
3976 strcpy(region->name, "CS46xx_BA1_data1");
3977 region->base = chip->ba1_addr + BA1_SP_DMEM1;
3978 region->size = CS46XX_BA1_DATA1_SIZE;
3979
3980 region = &chip->region.name.pmem;
3981 strcpy(region->name, "CS46xx_BA1_pmem");
3982 region->base = chip->ba1_addr + BA1_SP_PMEM;
3983 region->size = CS46XX_BA1_PRG_SIZE;
3984
3985 region = &chip->region.name.reg;
3986 strcpy(region->name, "CS46xx_BA1_reg");
3987 region->base = chip->ba1_addr + BA1_SP_REG;
3988 region->size = CS46XX_BA1_REG_SIZE;
3989
3990 /* set up amp and clkrun hack */
3991 pci_read_config_word(pci, PCI_SUBSYSTEM_VENDOR_ID, &ss_vendor);
3992 pci_read_config_word(pci, PCI_SUBSYSTEM_ID, &ss_card);
3993
3994 for (cp = &cards[0]; cp->name; cp++) {
3995 if (cp->vendor == ss_vendor && cp->id == ss_card) {
3996 dev_dbg(chip->card->dev, "hack for %s enabled\n",
3997 cp->name);
3998
3999 chip->amplifier_ctrl = cp->amp;
4000 chip->active_ctrl = cp->active;
4001 chip->mixer_init = cp->mixer_init;
4002
4003 if (cp->init)
4004 cp->init(chip);
4005 break;
4006 }
4007 }
4008
4009 if (external_amp) {
4010 dev_info(chip->card->dev,
4011 "Crystal EAPD support forced on.\n");
4012 chip->amplifier_ctrl = amp_voyetra;
4013 }
4014
4015 if (thinkpad) {
4016 dev_info(chip->card->dev,
4017 "Activating CLKRUN hack for Thinkpad.\n");
4018 chip->active_ctrl = clkrun_hack;
4019 clkrun_init(chip);
4020 }
4021
4022 if (chip->amplifier_ctrl == NULL)
4023 chip->amplifier_ctrl = amp_none;
4024 if (chip->active_ctrl == NULL)
4025 chip->active_ctrl = amp_none;
4026
4027 chip->active_ctrl(chip, 1); /* enable CLKRUN */
4028
4029 pci_set_master(pci);
4030
4031 for (idx = 0; idx < 5; idx++) {
4032 region = &chip->region.idx[idx];
4033 if ((region->resource = request_mem_region(region->base, region->size,
4034 region->name)) == NULL) {
4035 dev_err(chip->card->dev,
4036 "unable to request memory region 0x%lx-0x%lx\n",
4037 region->base, region->base + region->size - 1);
4038 snd_cs46xx_free(chip);
4039 return -EBUSY;
4040 }
4041 region->remap_addr = ioremap_nocache(region->base, region->size);
4042 if (region->remap_addr == NULL) {
4043 dev_err(chip->card->dev,
4044 "%s ioremap problem\n", region->name);
4045 snd_cs46xx_free(chip);
4046 return -ENOMEM;
4047 }
4048 }
4049
4050 if (request_irq(pci->irq, snd_cs46xx_interrupt, IRQF_SHARED,
4051 KBUILD_MODNAME, chip)) {
4052 dev_err(chip->card->dev, "unable to grab IRQ %d\n", pci->irq);
4053 snd_cs46xx_free(chip);
4054 return -EBUSY;
4055 }
4056 chip->irq = pci->irq;
4057
4058#ifdef CONFIG_SND_CS46XX_NEW_DSP
4059 chip->dsp_spos_instance = cs46xx_dsp_spos_create(chip);
4060 if (chip->dsp_spos_instance == NULL) {
4061 snd_cs46xx_free(chip);
4062 return -ENOMEM;
4063 }
4064#endif
4065
4066 err = snd_cs46xx_chip_init(chip);
4067 if (err < 0) {
4068 snd_cs46xx_free(chip);
4069 return err;
4070 }
4071
4072 if ((err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops)) < 0) {
4073 snd_cs46xx_free(chip);
4074 return err;
4075 }
4076
4077 snd_cs46xx_proc_init(card, chip);
4078
4079#ifdef CONFIG_PM_SLEEP
4080 chip->saved_regs = kmalloc(sizeof(*chip->saved_regs) *
4081 ARRAY_SIZE(saved_regs), GFP_KERNEL);
4082 if (!chip->saved_regs) {
4083 snd_cs46xx_free(chip);
4084 return -ENOMEM;
4085 }
4086#endif
4087
4088 chip->active_ctrl(chip, -1); /* disable CLKRUN */
4089
4090 *rchip = chip;
4091 return 0;
4092}
1// SPDX-License-Identifier: GPL-2.0-or-later
2/*
3 * Copyright (c) by Jaroslav Kysela <perex@perex.cz>
4 * Abramo Bagnara <abramo@alsa-project.org>
5 * Cirrus Logic, Inc.
6 * Routines for control of Cirrus Logic CS461x chips
7 *
8 * KNOWN BUGS:
9 * - Sometimes the SPDIF input DSP tasks get's unsynchronized
10 * and the SPDIF get somewhat "distorcionated", or/and left right channel
11 * are swapped. To get around this problem when it happens, mute and unmute
12 * the SPDIF input mixer control.
13 * - On the Hercules Game Theater XP the amplifier are sometimes turned
14 * off on inadecuate moments which causes distorcions on sound.
15 *
16 * TODO:
17 * - Secondary CODEC on some soundcards
18 * - SPDIF input support for other sample rates then 48khz
19 * - Posibility to mix the SPDIF output with analog sources.
20 * - PCM channels for Center and LFE on secondary codec
21 *
22 * NOTE: with CONFIG_SND_CS46XX_NEW_DSP unset uses old DSP image (which
23 * is default configuration), no SPDIF, no secondary codec, no
24 * multi channel PCM. But known to work.
25 *
26 * FINALLY: A credit to the developers Tom and Jordan
27 * at Cirrus for have helping me out with the DSP, however we
28 * still don't have sufficient documentation and technical
29 * references to be able to implement all fancy feutures
30 * supported by the cs46xx DSP's.
31 * Benny <benny@hostmobility.com>
32 */
33
34#include <linux/delay.h>
35#include <linux/pci.h>
36#include <linux/pm.h>
37#include <linux/init.h>
38#include <linux/interrupt.h>
39#include <linux/slab.h>
40#include <linux/gameport.h>
41#include <linux/mutex.h>
42#include <linux/export.h>
43#include <linux/module.h>
44#include <linux/firmware.h>
45#include <linux/vmalloc.h>
46#include <linux/io.h>
47
48#include <sound/core.h>
49#include <sound/control.h>
50#include <sound/info.h>
51#include <sound/pcm.h>
52#include <sound/pcm_params.h>
53#include "cs46xx.h"
54
55#include "cs46xx_lib.h"
56#include "dsp_spos.h"
57
58static void amp_voyetra(struct snd_cs46xx *chip, int change);
59
60#ifdef CONFIG_SND_CS46XX_NEW_DSP
61static const struct snd_pcm_ops snd_cs46xx_playback_rear_ops;
62static const struct snd_pcm_ops snd_cs46xx_playback_indirect_rear_ops;
63static const struct snd_pcm_ops snd_cs46xx_playback_clfe_ops;
64static const struct snd_pcm_ops snd_cs46xx_playback_indirect_clfe_ops;
65static const struct snd_pcm_ops snd_cs46xx_playback_iec958_ops;
66static const struct snd_pcm_ops snd_cs46xx_playback_indirect_iec958_ops;
67#endif
68
69static const struct snd_pcm_ops snd_cs46xx_playback_ops;
70static const struct snd_pcm_ops snd_cs46xx_playback_indirect_ops;
71static const struct snd_pcm_ops snd_cs46xx_capture_ops;
72static const struct snd_pcm_ops snd_cs46xx_capture_indirect_ops;
73
74static unsigned short snd_cs46xx_codec_read(struct snd_cs46xx *chip,
75 unsigned short reg,
76 int codec_index)
77{
78 int count;
79 unsigned short result,tmp;
80 u32 offset = 0;
81
82 if (snd_BUG_ON(codec_index != CS46XX_PRIMARY_CODEC_INDEX &&
83 codec_index != CS46XX_SECONDARY_CODEC_INDEX))
84 return 0xffff;
85
86 chip->active_ctrl(chip, 1);
87
88 if (codec_index == CS46XX_SECONDARY_CODEC_INDEX)
89 offset = CS46XX_SECONDARY_CODEC_OFFSET;
90
91 /*
92 * 1. Write ACCAD = Command Address Register = 46Ch for AC97 register address
93 * 2. Write ACCDA = Command Data Register = 470h for data to write to AC97
94 * 3. Write ACCTL = Control Register = 460h for initiating the write7---55
95 * 4. Read ACCTL = 460h, DCV should be reset by now and 460h = 17h
96 * 5. if DCV not cleared, break and return error
97 * 6. Read ACSTS = Status Register = 464h, check VSTS bit
98 */
99
100 snd_cs46xx_peekBA0(chip, BA0_ACSDA + offset);
101
102 tmp = snd_cs46xx_peekBA0(chip, BA0_ACCTL);
103 if ((tmp & ACCTL_VFRM) == 0) {
104 dev_warn(chip->card->dev, "ACCTL_VFRM not set 0x%x\n", tmp);
105 snd_cs46xx_pokeBA0(chip, BA0_ACCTL, (tmp & (~ACCTL_ESYN)) | ACCTL_VFRM );
106 msleep(50);
107 tmp = snd_cs46xx_peekBA0(chip, BA0_ACCTL + offset);
108 snd_cs46xx_pokeBA0(chip, BA0_ACCTL, tmp | ACCTL_ESYN | ACCTL_VFRM );
109
110 }
111
112 /*
113 * Setup the AC97 control registers on the CS461x to send the
114 * appropriate command to the AC97 to perform the read.
115 * ACCAD = Command Address Register = 46Ch
116 * ACCDA = Command Data Register = 470h
117 * ACCTL = Control Register = 460h
118 * set DCV - will clear when process completed
119 * set CRW - Read command
120 * set VFRM - valid frame enabled
121 * set ESYN - ASYNC generation enabled
122 * set RSTN - ARST# inactive, AC97 codec not reset
123 */
124
125 snd_cs46xx_pokeBA0(chip, BA0_ACCAD, reg);
126 snd_cs46xx_pokeBA0(chip, BA0_ACCDA, 0);
127 if (codec_index == CS46XX_PRIMARY_CODEC_INDEX) {
128 snd_cs46xx_pokeBA0(chip, BA0_ACCTL,/* clear ACCTL_DCV */ ACCTL_CRW |
129 ACCTL_VFRM | ACCTL_ESYN |
130 ACCTL_RSTN);
131 snd_cs46xx_pokeBA0(chip, BA0_ACCTL, ACCTL_DCV | ACCTL_CRW |
132 ACCTL_VFRM | ACCTL_ESYN |
133 ACCTL_RSTN);
134 } else {
135 snd_cs46xx_pokeBA0(chip, BA0_ACCTL, ACCTL_DCV | ACCTL_TC |
136 ACCTL_CRW | ACCTL_VFRM | ACCTL_ESYN |
137 ACCTL_RSTN);
138 }
139
140 /*
141 * Wait for the read to occur.
142 */
143 for (count = 0; count < 1000; count++) {
144 /*
145 * First, we want to wait for a short time.
146 */
147 udelay(10);
148 /*
149 * Now, check to see if the read has completed.
150 * ACCTL = 460h, DCV should be reset by now and 460h = 17h
151 */
152 if (!(snd_cs46xx_peekBA0(chip, BA0_ACCTL) & ACCTL_DCV))
153 goto ok1;
154 }
155
156 dev_err(chip->card->dev,
157 "AC'97 read problem (ACCTL_DCV), reg = 0x%x\n", reg);
158 result = 0xffff;
159 goto end;
160
161 ok1:
162 /*
163 * Wait for the valid status bit to go active.
164 */
165 for (count = 0; count < 100; count++) {
166 /*
167 * Read the AC97 status register.
168 * ACSTS = Status Register = 464h
169 * VSTS - Valid Status
170 */
171 if (snd_cs46xx_peekBA0(chip, BA0_ACSTS + offset) & ACSTS_VSTS)
172 goto ok2;
173 udelay(10);
174 }
175
176 dev_err(chip->card->dev,
177 "AC'97 read problem (ACSTS_VSTS), codec_index %d, reg = 0x%x\n",
178 codec_index, reg);
179 result = 0xffff;
180 goto end;
181
182 ok2:
183 /*
184 * Read the data returned from the AC97 register.
185 * ACSDA = Status Data Register = 474h
186 */
187#if 0
188 dev_dbg(chip->card->dev,
189 "e) reg = 0x%x, val = 0x%x, BA0_ACCAD = 0x%x\n", reg,
190 snd_cs46xx_peekBA0(chip, BA0_ACSDA),
191 snd_cs46xx_peekBA0(chip, BA0_ACCAD));
192#endif
193
194 //snd_cs46xx_peekBA0(chip, BA0_ACCAD);
195 result = snd_cs46xx_peekBA0(chip, BA0_ACSDA + offset);
196 end:
197 chip->active_ctrl(chip, -1);
198 return result;
199}
200
201static unsigned short snd_cs46xx_ac97_read(struct snd_ac97 * ac97,
202 unsigned short reg)
203{
204 struct snd_cs46xx *chip = ac97->private_data;
205 unsigned short val;
206 int codec_index = ac97->num;
207
208 if (snd_BUG_ON(codec_index != CS46XX_PRIMARY_CODEC_INDEX &&
209 codec_index != CS46XX_SECONDARY_CODEC_INDEX))
210 return 0xffff;
211
212 val = snd_cs46xx_codec_read(chip, reg, codec_index);
213
214 return val;
215}
216
217
218static void snd_cs46xx_codec_write(struct snd_cs46xx *chip,
219 unsigned short reg,
220 unsigned short val,
221 int codec_index)
222{
223 int count;
224
225 if (snd_BUG_ON(codec_index != CS46XX_PRIMARY_CODEC_INDEX &&
226 codec_index != CS46XX_SECONDARY_CODEC_INDEX))
227 return;
228
229 chip->active_ctrl(chip, 1);
230
231 /*
232 * 1. Write ACCAD = Command Address Register = 46Ch for AC97 register address
233 * 2. Write ACCDA = Command Data Register = 470h for data to write to AC97
234 * 3. Write ACCTL = Control Register = 460h for initiating the write
235 * 4. Read ACCTL = 460h, DCV should be reset by now and 460h = 07h
236 * 5. if DCV not cleared, break and return error
237 */
238
239 /*
240 * Setup the AC97 control registers on the CS461x to send the
241 * appropriate command to the AC97 to perform the read.
242 * ACCAD = Command Address Register = 46Ch
243 * ACCDA = Command Data Register = 470h
244 * ACCTL = Control Register = 460h
245 * set DCV - will clear when process completed
246 * reset CRW - Write command
247 * set VFRM - valid frame enabled
248 * set ESYN - ASYNC generation enabled
249 * set RSTN - ARST# inactive, AC97 codec not reset
250 */
251 snd_cs46xx_pokeBA0(chip, BA0_ACCAD , reg);
252 snd_cs46xx_pokeBA0(chip, BA0_ACCDA , val);
253 snd_cs46xx_peekBA0(chip, BA0_ACCTL);
254
255 if (codec_index == CS46XX_PRIMARY_CODEC_INDEX) {
256 snd_cs46xx_pokeBA0(chip, BA0_ACCTL, /* clear ACCTL_DCV */ ACCTL_VFRM |
257 ACCTL_ESYN | ACCTL_RSTN);
258 snd_cs46xx_pokeBA0(chip, BA0_ACCTL, ACCTL_DCV | ACCTL_VFRM |
259 ACCTL_ESYN | ACCTL_RSTN);
260 } else {
261 snd_cs46xx_pokeBA0(chip, BA0_ACCTL, ACCTL_DCV | ACCTL_TC |
262 ACCTL_VFRM | ACCTL_ESYN | ACCTL_RSTN);
263 }
264
265 for (count = 0; count < 4000; count++) {
266 /*
267 * First, we want to wait for a short time.
268 */
269 udelay(10);
270 /*
271 * Now, check to see if the write has completed.
272 * ACCTL = 460h, DCV should be reset by now and 460h = 07h
273 */
274 if (!(snd_cs46xx_peekBA0(chip, BA0_ACCTL) & ACCTL_DCV)) {
275 goto end;
276 }
277 }
278 dev_err(chip->card->dev,
279 "AC'97 write problem, codec_index = %d, reg = 0x%x, val = 0x%x\n",
280 codec_index, reg, val);
281 end:
282 chip->active_ctrl(chip, -1);
283}
284
285static void snd_cs46xx_ac97_write(struct snd_ac97 *ac97,
286 unsigned short reg,
287 unsigned short val)
288{
289 struct snd_cs46xx *chip = ac97->private_data;
290 int codec_index = ac97->num;
291
292 if (snd_BUG_ON(codec_index != CS46XX_PRIMARY_CODEC_INDEX &&
293 codec_index != CS46XX_SECONDARY_CODEC_INDEX))
294 return;
295
296 snd_cs46xx_codec_write(chip, reg, val, codec_index);
297}
298
299
300/*
301 * Chip initialization
302 */
303
304int snd_cs46xx_download(struct snd_cs46xx *chip,
305 u32 *src,
306 unsigned long offset,
307 unsigned long len)
308{
309 void __iomem *dst;
310 unsigned int bank = offset >> 16;
311 offset = offset & 0xffff;
312
313 if (snd_BUG_ON((offset & 3) || (len & 3)))
314 return -EINVAL;
315 dst = chip->region.idx[bank+1].remap_addr + offset;
316 len /= sizeof(u32);
317
318 /* writel already converts 32-bit value to right endianess */
319 while (len-- > 0) {
320 writel(*src++, dst);
321 dst += sizeof(u32);
322 }
323 return 0;
324}
325
326static inline void memcpy_le32(void *dst, const void *src, unsigned int len)
327{
328#ifdef __LITTLE_ENDIAN
329 memcpy(dst, src, len);
330#else
331 u32 *_dst = dst;
332 const __le32 *_src = src;
333 len /= 4;
334 while (len-- > 0)
335 *_dst++ = le32_to_cpu(*_src++);
336#endif
337}
338
339#ifdef CONFIG_SND_CS46XX_NEW_DSP
340
341static const char *module_names[CS46XX_DSP_MODULES] = {
342 "cwc4630", "cwcasync", "cwcsnoop", "cwcbinhack", "cwcdma"
343};
344
345MODULE_FIRMWARE("cs46xx/cwc4630");
346MODULE_FIRMWARE("cs46xx/cwcasync");
347MODULE_FIRMWARE("cs46xx/cwcsnoop");
348MODULE_FIRMWARE("cs46xx/cwcbinhack");
349MODULE_FIRMWARE("cs46xx/cwcdma");
350
351static void free_module_desc(struct dsp_module_desc *module)
352{
353 if (!module)
354 return;
355 kfree(module->module_name);
356 kfree(module->symbol_table.symbols);
357 if (module->segments) {
358 int i;
359 for (i = 0; i < module->nsegments; i++)
360 kfree(module->segments[i].data);
361 kfree(module->segments);
362 }
363 kfree(module);
364}
365
366/* firmware binary format:
367 * le32 nsymbols;
368 * struct {
369 * le32 address;
370 * char symbol_name[DSP_MAX_SYMBOL_NAME];
371 * le32 symbol_type;
372 * } symbols[nsymbols];
373 * le32 nsegments;
374 * struct {
375 * le32 segment_type;
376 * le32 offset;
377 * le32 size;
378 * le32 data[size];
379 * } segments[nsegments];
380 */
381
382static int load_firmware(struct snd_cs46xx *chip,
383 struct dsp_module_desc **module_ret,
384 const char *fw_name)
385{
386 int i, err;
387 unsigned int nums, fwlen, fwsize;
388 const __le32 *fwdat;
389 struct dsp_module_desc *module = NULL;
390 const struct firmware *fw;
391 char fw_path[32];
392
393 sprintf(fw_path, "cs46xx/%s", fw_name);
394 err = request_firmware(&fw, fw_path, &chip->pci->dev);
395 if (err < 0)
396 return err;
397 fwsize = fw->size / 4;
398 if (fwsize < 2) {
399 err = -EINVAL;
400 goto error;
401 }
402
403 err = -ENOMEM;
404 module = kzalloc(sizeof(*module), GFP_KERNEL);
405 if (!module)
406 goto error;
407 module->module_name = kstrdup(fw_name, GFP_KERNEL);
408 if (!module->module_name)
409 goto error;
410
411 fwlen = 0;
412 fwdat = (const __le32 *)fw->data;
413 nums = module->symbol_table.nsymbols = le32_to_cpu(fwdat[fwlen++]);
414 if (nums >= 40)
415 goto error_inval;
416 module->symbol_table.symbols =
417 kcalloc(nums, sizeof(struct dsp_symbol_entry), GFP_KERNEL);
418 if (!module->symbol_table.symbols)
419 goto error;
420 for (i = 0; i < nums; i++) {
421 struct dsp_symbol_entry *entry =
422 &module->symbol_table.symbols[i];
423 if (fwlen + 2 + DSP_MAX_SYMBOL_NAME / 4 > fwsize)
424 goto error_inval;
425 entry->address = le32_to_cpu(fwdat[fwlen++]);
426 memcpy(entry->symbol_name, &fwdat[fwlen], DSP_MAX_SYMBOL_NAME - 1);
427 fwlen += DSP_MAX_SYMBOL_NAME / 4;
428 entry->symbol_type = le32_to_cpu(fwdat[fwlen++]);
429 }
430
431 if (fwlen >= fwsize)
432 goto error_inval;
433 nums = module->nsegments = le32_to_cpu(fwdat[fwlen++]);
434 if (nums > 10)
435 goto error_inval;
436 module->segments =
437 kcalloc(nums, sizeof(struct dsp_segment_desc), GFP_KERNEL);
438 if (!module->segments)
439 goto error;
440 for (i = 0; i < nums; i++) {
441 struct dsp_segment_desc *entry = &module->segments[i];
442 if (fwlen + 3 > fwsize)
443 goto error_inval;
444 entry->segment_type = le32_to_cpu(fwdat[fwlen++]);
445 entry->offset = le32_to_cpu(fwdat[fwlen++]);
446 entry->size = le32_to_cpu(fwdat[fwlen++]);
447 if (fwlen + entry->size > fwsize)
448 goto error_inval;
449 entry->data = kmalloc_array(entry->size, 4, GFP_KERNEL);
450 if (!entry->data)
451 goto error;
452 memcpy_le32(entry->data, &fwdat[fwlen], entry->size * 4);
453 fwlen += entry->size;
454 }
455
456 *module_ret = module;
457 release_firmware(fw);
458 return 0;
459
460 error_inval:
461 err = -EINVAL;
462 error:
463 free_module_desc(module);
464 release_firmware(fw);
465 return err;
466}
467
468int snd_cs46xx_clear_BA1(struct snd_cs46xx *chip,
469 unsigned long offset,
470 unsigned long len)
471{
472 void __iomem *dst;
473 unsigned int bank = offset >> 16;
474 offset = offset & 0xffff;
475
476 if (snd_BUG_ON((offset & 3) || (len & 3)))
477 return -EINVAL;
478 dst = chip->region.idx[bank+1].remap_addr + offset;
479 len /= sizeof(u32);
480
481 /* writel already converts 32-bit value to right endianess */
482 while (len-- > 0) {
483 writel(0, dst);
484 dst += sizeof(u32);
485 }
486 return 0;
487}
488
489#else /* old DSP image */
490
491struct ba1_struct {
492 struct {
493 u32 offset;
494 u32 size;
495 } memory[BA1_MEMORY_COUNT];
496 u32 map[BA1_DWORD_SIZE];
497};
498
499MODULE_FIRMWARE("cs46xx/ba1");
500
501static int load_firmware(struct snd_cs46xx *chip)
502{
503 const struct firmware *fw;
504 int i, size, err;
505
506 err = request_firmware(&fw, "cs46xx/ba1", &chip->pci->dev);
507 if (err < 0)
508 return err;
509 if (fw->size != sizeof(*chip->ba1)) {
510 err = -EINVAL;
511 goto error;
512 }
513
514 chip->ba1 = vmalloc(sizeof(*chip->ba1));
515 if (!chip->ba1) {
516 err = -ENOMEM;
517 goto error;
518 }
519
520 memcpy_le32(chip->ba1, fw->data, sizeof(*chip->ba1));
521
522 /* sanity check */
523 size = 0;
524 for (i = 0; i < BA1_MEMORY_COUNT; i++)
525 size += chip->ba1->memory[i].size;
526 if (size > BA1_DWORD_SIZE * 4)
527 err = -EINVAL;
528
529 error:
530 release_firmware(fw);
531 return err;
532}
533
534int snd_cs46xx_download_image(struct snd_cs46xx *chip)
535{
536 int idx, err;
537 unsigned int offset = 0;
538 struct ba1_struct *ba1 = chip->ba1;
539
540 for (idx = 0; idx < BA1_MEMORY_COUNT; idx++) {
541 err = snd_cs46xx_download(chip,
542 &ba1->map[offset],
543 ba1->memory[idx].offset,
544 ba1->memory[idx].size);
545 if (err < 0)
546 return err;
547 offset += ba1->memory[idx].size >> 2;
548 }
549 return 0;
550}
551#endif /* CONFIG_SND_CS46XX_NEW_DSP */
552
553/*
554 * Chip reset
555 */
556
557static void snd_cs46xx_reset(struct snd_cs46xx *chip)
558{
559 int idx;
560
561 /*
562 * Write the reset bit of the SP control register.
563 */
564 snd_cs46xx_poke(chip, BA1_SPCR, SPCR_RSTSP);
565
566 /*
567 * Write the control register.
568 */
569 snd_cs46xx_poke(chip, BA1_SPCR, SPCR_DRQEN);
570
571 /*
572 * Clear the trap registers.
573 */
574 for (idx = 0; idx < 8; idx++) {
575 snd_cs46xx_poke(chip, BA1_DREG, DREG_REGID_TRAP_SELECT + idx);
576 snd_cs46xx_poke(chip, BA1_TWPR, 0xFFFF);
577 }
578 snd_cs46xx_poke(chip, BA1_DREG, 0);
579
580 /*
581 * Set the frame timer to reflect the number of cycles per frame.
582 */
583 snd_cs46xx_poke(chip, BA1_FRMT, 0xadf);
584}
585
586static int cs46xx_wait_for_fifo(struct snd_cs46xx * chip,int retry_timeout)
587{
588 u32 i, status = 0;
589 /*
590 * Make sure the previous FIFO write operation has completed.
591 */
592 for(i = 0; i < 50; i++){
593 status = snd_cs46xx_peekBA0(chip, BA0_SERBST);
594
595 if( !(status & SERBST_WBSY) )
596 break;
597
598 mdelay(retry_timeout);
599 }
600
601 if(status & SERBST_WBSY) {
602 dev_err(chip->card->dev,
603 "failure waiting for FIFO command to complete\n");
604 return -EINVAL;
605 }
606
607 return 0;
608}
609
610static void snd_cs46xx_clear_serial_FIFOs(struct snd_cs46xx *chip)
611{
612 int idx, powerdown = 0;
613 unsigned int tmp;
614
615 /*
616 * See if the devices are powered down. If so, we must power them up first
617 * or they will not respond.
618 */
619 tmp = snd_cs46xx_peekBA0(chip, BA0_CLKCR1);
620 if (!(tmp & CLKCR1_SWCE)) {
621 snd_cs46xx_pokeBA0(chip, BA0_CLKCR1, tmp | CLKCR1_SWCE);
622 powerdown = 1;
623 }
624
625 /*
626 * We want to clear out the serial port FIFOs so we don't end up playing
627 * whatever random garbage happens to be in them. We fill the sample FIFOS
628 * with zero (silence).
629 */
630 snd_cs46xx_pokeBA0(chip, BA0_SERBWP, 0);
631
632 /*
633 * Fill all 256 sample FIFO locations.
634 */
635 for (idx = 0; idx < 0xFF; idx++) {
636 /*
637 * Make sure the previous FIFO write operation has completed.
638 */
639 if (cs46xx_wait_for_fifo(chip,1)) {
640 dev_dbg(chip->card->dev,
641 "failed waiting for FIFO at addr (%02X)\n",
642 idx);
643
644 if (powerdown)
645 snd_cs46xx_pokeBA0(chip, BA0_CLKCR1, tmp);
646
647 break;
648 }
649 /*
650 * Write the serial port FIFO index.
651 */
652 snd_cs46xx_pokeBA0(chip, BA0_SERBAD, idx);
653 /*
654 * Tell the serial port to load the new value into the FIFO location.
655 */
656 snd_cs46xx_pokeBA0(chip, BA0_SERBCM, SERBCM_WRC);
657 }
658 /*
659 * Now, if we powered up the devices, then power them back down again.
660 * This is kinda ugly, but should never happen.
661 */
662 if (powerdown)
663 snd_cs46xx_pokeBA0(chip, BA0_CLKCR1, tmp);
664}
665
666static void snd_cs46xx_proc_start(struct snd_cs46xx *chip)
667{
668 int cnt;
669
670 /*
671 * Set the frame timer to reflect the number of cycles per frame.
672 */
673 snd_cs46xx_poke(chip, BA1_FRMT, 0xadf);
674 /*
675 * Turn on the run, run at frame, and DMA enable bits in the local copy of
676 * the SP control register.
677 */
678 snd_cs46xx_poke(chip, BA1_SPCR, SPCR_RUN | SPCR_RUNFR | SPCR_DRQEN);
679 /*
680 * Wait until the run at frame bit resets itself in the SP control
681 * register.
682 */
683 for (cnt = 0; cnt < 25; cnt++) {
684 udelay(50);
685 if (!(snd_cs46xx_peek(chip, BA1_SPCR) & SPCR_RUNFR))
686 break;
687 }
688
689 if (snd_cs46xx_peek(chip, BA1_SPCR) & SPCR_RUNFR)
690 dev_err(chip->card->dev, "SPCR_RUNFR never reset\n");
691}
692
693static void snd_cs46xx_proc_stop(struct snd_cs46xx *chip)
694{
695 /*
696 * Turn off the run, run at frame, and DMA enable bits in the local copy of
697 * the SP control register.
698 */
699 snd_cs46xx_poke(chip, BA1_SPCR, 0);
700}
701
702/*
703 * Sample rate routines
704 */
705
706#define GOF_PER_SEC 200
707
708static void snd_cs46xx_set_play_sample_rate(struct snd_cs46xx *chip, unsigned int rate)
709{
710 unsigned long flags;
711 unsigned int tmp1, tmp2;
712 unsigned int phiIncr;
713 unsigned int correctionPerGOF, correctionPerSec;
714
715 /*
716 * Compute the values used to drive the actual sample rate conversion.
717 * The following formulas are being computed, using inline assembly
718 * since we need to use 64 bit arithmetic to compute the values:
719 *
720 * phiIncr = floor((Fs,in * 2^26) / Fs,out)
721 * correctionPerGOF = floor((Fs,in * 2^26 - Fs,out * phiIncr) /
722 * GOF_PER_SEC)
723 * ulCorrectionPerSec = Fs,in * 2^26 - Fs,out * phiIncr -M
724 * GOF_PER_SEC * correctionPerGOF
725 *
726 * i.e.
727 *
728 * phiIncr:other = dividend:remainder((Fs,in * 2^26) / Fs,out)
729 * correctionPerGOF:correctionPerSec =
730 * dividend:remainder(ulOther / GOF_PER_SEC)
731 */
732 tmp1 = rate << 16;
733 phiIncr = tmp1 / 48000;
734 tmp1 -= phiIncr * 48000;
735 tmp1 <<= 10;
736 phiIncr <<= 10;
737 tmp2 = tmp1 / 48000;
738 phiIncr += tmp2;
739 tmp1 -= tmp2 * 48000;
740 correctionPerGOF = tmp1 / GOF_PER_SEC;
741 tmp1 -= correctionPerGOF * GOF_PER_SEC;
742 correctionPerSec = tmp1;
743
744 /*
745 * Fill in the SampleRateConverter control block.
746 */
747 spin_lock_irqsave(&chip->reg_lock, flags);
748 snd_cs46xx_poke(chip, BA1_PSRC,
749 ((correctionPerSec << 16) & 0xFFFF0000) | (correctionPerGOF & 0xFFFF));
750 snd_cs46xx_poke(chip, BA1_PPI, phiIncr);
751 spin_unlock_irqrestore(&chip->reg_lock, flags);
752}
753
754static void snd_cs46xx_set_capture_sample_rate(struct snd_cs46xx *chip, unsigned int rate)
755{
756 unsigned long flags;
757 unsigned int phiIncr, coeffIncr, tmp1, tmp2;
758 unsigned int correctionPerGOF, correctionPerSec, initialDelay;
759 unsigned int frameGroupLength, cnt;
760
761 /*
762 * We can only decimate by up to a factor of 1/9th the hardware rate.
763 * Correct the value if an attempt is made to stray outside that limit.
764 */
765 if ((rate * 9) < 48000)
766 rate = 48000 / 9;
767
768 /*
769 * We can not capture at at rate greater than the Input Rate (48000).
770 * Return an error if an attempt is made to stray outside that limit.
771 */
772 if (rate > 48000)
773 rate = 48000;
774
775 /*
776 * Compute the values used to drive the actual sample rate conversion.
777 * The following formulas are being computed, using inline assembly
778 * since we need to use 64 bit arithmetic to compute the values:
779 *
780 * coeffIncr = -floor((Fs,out * 2^23) / Fs,in)
781 * phiIncr = floor((Fs,in * 2^26) / Fs,out)
782 * correctionPerGOF = floor((Fs,in * 2^26 - Fs,out * phiIncr) /
783 * GOF_PER_SEC)
784 * correctionPerSec = Fs,in * 2^26 - Fs,out * phiIncr -
785 * GOF_PER_SEC * correctionPerGOF
786 * initialDelay = ceil((24 * Fs,in) / Fs,out)
787 *
788 * i.e.
789 *
790 * coeffIncr = neg(dividend((Fs,out * 2^23) / Fs,in))
791 * phiIncr:ulOther = dividend:remainder((Fs,in * 2^26) / Fs,out)
792 * correctionPerGOF:correctionPerSec =
793 * dividend:remainder(ulOther / GOF_PER_SEC)
794 * initialDelay = dividend(((24 * Fs,in) + Fs,out - 1) / Fs,out)
795 */
796
797 tmp1 = rate << 16;
798 coeffIncr = tmp1 / 48000;
799 tmp1 -= coeffIncr * 48000;
800 tmp1 <<= 7;
801 coeffIncr <<= 7;
802 coeffIncr += tmp1 / 48000;
803 coeffIncr ^= 0xFFFFFFFF;
804 coeffIncr++;
805 tmp1 = 48000 << 16;
806 phiIncr = tmp1 / rate;
807 tmp1 -= phiIncr * rate;
808 tmp1 <<= 10;
809 phiIncr <<= 10;
810 tmp2 = tmp1 / rate;
811 phiIncr += tmp2;
812 tmp1 -= tmp2 * rate;
813 correctionPerGOF = tmp1 / GOF_PER_SEC;
814 tmp1 -= correctionPerGOF * GOF_PER_SEC;
815 correctionPerSec = tmp1;
816 initialDelay = ((48000 * 24) + rate - 1) / rate;
817
818 /*
819 * Fill in the VariDecimate control block.
820 */
821 spin_lock_irqsave(&chip->reg_lock, flags);
822 snd_cs46xx_poke(chip, BA1_CSRC,
823 ((correctionPerSec << 16) & 0xFFFF0000) | (correctionPerGOF & 0xFFFF));
824 snd_cs46xx_poke(chip, BA1_CCI, coeffIncr);
825 snd_cs46xx_poke(chip, BA1_CD,
826 (((BA1_VARIDEC_BUF_1 + (initialDelay << 2)) << 16) & 0xFFFF0000) | 0x80);
827 snd_cs46xx_poke(chip, BA1_CPI, phiIncr);
828 spin_unlock_irqrestore(&chip->reg_lock, flags);
829
830 /*
831 * Figure out the frame group length for the write back task. Basically,
832 * this is just the factors of 24000 (2^6*3*5^3) that are not present in
833 * the output sample rate.
834 */
835 frameGroupLength = 1;
836 for (cnt = 2; cnt <= 64; cnt *= 2) {
837 if (((rate / cnt) * cnt) != rate)
838 frameGroupLength *= 2;
839 }
840 if (((rate / 3) * 3) != rate) {
841 frameGroupLength *= 3;
842 }
843 for (cnt = 5; cnt <= 125; cnt *= 5) {
844 if (((rate / cnt) * cnt) != rate)
845 frameGroupLength *= 5;
846 }
847
848 /*
849 * Fill in the WriteBack control block.
850 */
851 spin_lock_irqsave(&chip->reg_lock, flags);
852 snd_cs46xx_poke(chip, BA1_CFG1, frameGroupLength);
853 snd_cs46xx_poke(chip, BA1_CFG2, (0x00800000 | frameGroupLength));
854 snd_cs46xx_poke(chip, BA1_CCST, 0x0000FFFF);
855 snd_cs46xx_poke(chip, BA1_CSPB, ((65536 * rate) / 24000));
856 snd_cs46xx_poke(chip, (BA1_CSPB + 4), 0x0000FFFF);
857 spin_unlock_irqrestore(&chip->reg_lock, flags);
858}
859
860/*
861 * PCM part
862 */
863
864static void snd_cs46xx_pb_trans_copy(struct snd_pcm_substream *substream,
865 struct snd_pcm_indirect *rec, size_t bytes)
866{
867 struct snd_pcm_runtime *runtime = substream->runtime;
868 struct snd_cs46xx_pcm * cpcm = runtime->private_data;
869 memcpy(cpcm->hw_buf.area + rec->hw_data, runtime->dma_area + rec->sw_data, bytes);
870}
871
872static int snd_cs46xx_playback_transfer(struct snd_pcm_substream *substream)
873{
874 struct snd_pcm_runtime *runtime = substream->runtime;
875 struct snd_cs46xx_pcm * cpcm = runtime->private_data;
876 return snd_pcm_indirect_playback_transfer(substream, &cpcm->pcm_rec,
877 snd_cs46xx_pb_trans_copy);
878}
879
880static void snd_cs46xx_cp_trans_copy(struct snd_pcm_substream *substream,
881 struct snd_pcm_indirect *rec, size_t bytes)
882{
883 struct snd_cs46xx *chip = snd_pcm_substream_chip(substream);
884 struct snd_pcm_runtime *runtime = substream->runtime;
885 memcpy(runtime->dma_area + rec->sw_data,
886 chip->capt.hw_buf.area + rec->hw_data, bytes);
887}
888
889static int snd_cs46xx_capture_transfer(struct snd_pcm_substream *substream)
890{
891 struct snd_cs46xx *chip = snd_pcm_substream_chip(substream);
892 return snd_pcm_indirect_capture_transfer(substream, &chip->capt.pcm_rec,
893 snd_cs46xx_cp_trans_copy);
894}
895
896static snd_pcm_uframes_t snd_cs46xx_playback_direct_pointer(struct snd_pcm_substream *substream)
897{
898 struct snd_cs46xx *chip = snd_pcm_substream_chip(substream);
899 size_t ptr;
900 struct snd_cs46xx_pcm *cpcm = substream->runtime->private_data;
901
902 if (snd_BUG_ON(!cpcm->pcm_channel))
903 return -ENXIO;
904
905#ifdef CONFIG_SND_CS46XX_NEW_DSP
906 ptr = snd_cs46xx_peek(chip, (cpcm->pcm_channel->pcm_reader_scb->address + 2) << 2);
907#else
908 ptr = snd_cs46xx_peek(chip, BA1_PBA);
909#endif
910 ptr -= cpcm->hw_buf.addr;
911 return ptr >> cpcm->shift;
912}
913
914static snd_pcm_uframes_t snd_cs46xx_playback_indirect_pointer(struct snd_pcm_substream *substream)
915{
916 struct snd_cs46xx *chip = snd_pcm_substream_chip(substream);
917 size_t ptr;
918 struct snd_cs46xx_pcm *cpcm = substream->runtime->private_data;
919
920#ifdef CONFIG_SND_CS46XX_NEW_DSP
921 if (snd_BUG_ON(!cpcm->pcm_channel))
922 return -ENXIO;
923 ptr = snd_cs46xx_peek(chip, (cpcm->pcm_channel->pcm_reader_scb->address + 2) << 2);
924#else
925 ptr = snd_cs46xx_peek(chip, BA1_PBA);
926#endif
927 ptr -= cpcm->hw_buf.addr;
928 return snd_pcm_indirect_playback_pointer(substream, &cpcm->pcm_rec, ptr);
929}
930
931static snd_pcm_uframes_t snd_cs46xx_capture_direct_pointer(struct snd_pcm_substream *substream)
932{
933 struct snd_cs46xx *chip = snd_pcm_substream_chip(substream);
934 size_t ptr = snd_cs46xx_peek(chip, BA1_CBA) - chip->capt.hw_buf.addr;
935 return ptr >> chip->capt.shift;
936}
937
938static snd_pcm_uframes_t snd_cs46xx_capture_indirect_pointer(struct snd_pcm_substream *substream)
939{
940 struct snd_cs46xx *chip = snd_pcm_substream_chip(substream);
941 size_t ptr = snd_cs46xx_peek(chip, BA1_CBA) - chip->capt.hw_buf.addr;
942 return snd_pcm_indirect_capture_pointer(substream, &chip->capt.pcm_rec, ptr);
943}
944
945static int snd_cs46xx_playback_trigger(struct snd_pcm_substream *substream,
946 int cmd)
947{
948 struct snd_cs46xx *chip = snd_pcm_substream_chip(substream);
949 /*struct snd_pcm_runtime *runtime = substream->runtime;*/
950 int result = 0;
951
952#ifdef CONFIG_SND_CS46XX_NEW_DSP
953 struct snd_cs46xx_pcm *cpcm = substream->runtime->private_data;
954 if (! cpcm->pcm_channel) {
955 return -ENXIO;
956 }
957#endif
958 switch (cmd) {
959 case SNDRV_PCM_TRIGGER_START:
960 case SNDRV_PCM_TRIGGER_RESUME:
961#ifdef CONFIG_SND_CS46XX_NEW_DSP
962 /* magic value to unmute PCM stream playback volume */
963 snd_cs46xx_poke(chip, (cpcm->pcm_channel->pcm_reader_scb->address +
964 SCBVolumeCtrl) << 2, 0x80008000);
965
966 if (cpcm->pcm_channel->unlinked)
967 cs46xx_dsp_pcm_link(chip,cpcm->pcm_channel);
968
969 if (substream->runtime->periods != CS46XX_FRAGS)
970 snd_cs46xx_playback_transfer(substream);
971#else
972 spin_lock(&chip->reg_lock);
973 if (substream->runtime->periods != CS46XX_FRAGS)
974 snd_cs46xx_playback_transfer(substream);
975 { unsigned int tmp;
976 tmp = snd_cs46xx_peek(chip, BA1_PCTL);
977 tmp &= 0x0000ffff;
978 snd_cs46xx_poke(chip, BA1_PCTL, chip->play_ctl | tmp);
979 }
980 spin_unlock(&chip->reg_lock);
981#endif
982 break;
983 case SNDRV_PCM_TRIGGER_STOP:
984 case SNDRV_PCM_TRIGGER_SUSPEND:
985#ifdef CONFIG_SND_CS46XX_NEW_DSP
986 /* magic mute channel */
987 snd_cs46xx_poke(chip, (cpcm->pcm_channel->pcm_reader_scb->address +
988 SCBVolumeCtrl) << 2, 0xffffffff);
989
990 if (!cpcm->pcm_channel->unlinked)
991 cs46xx_dsp_pcm_unlink(chip,cpcm->pcm_channel);
992#else
993 spin_lock(&chip->reg_lock);
994 { unsigned int tmp;
995 tmp = snd_cs46xx_peek(chip, BA1_PCTL);
996 tmp &= 0x0000ffff;
997 snd_cs46xx_poke(chip, BA1_PCTL, tmp);
998 }
999 spin_unlock(&chip->reg_lock);
1000#endif
1001 break;
1002 default:
1003 result = -EINVAL;
1004 break;
1005 }
1006
1007 return result;
1008}
1009
1010static int snd_cs46xx_capture_trigger(struct snd_pcm_substream *substream,
1011 int cmd)
1012{
1013 struct snd_cs46xx *chip = snd_pcm_substream_chip(substream);
1014 unsigned int tmp;
1015 int result = 0;
1016
1017 spin_lock(&chip->reg_lock);
1018 switch (cmd) {
1019 case SNDRV_PCM_TRIGGER_START:
1020 case SNDRV_PCM_TRIGGER_RESUME:
1021 tmp = snd_cs46xx_peek(chip, BA1_CCTL);
1022 tmp &= 0xffff0000;
1023 snd_cs46xx_poke(chip, BA1_CCTL, chip->capt.ctl | tmp);
1024 break;
1025 case SNDRV_PCM_TRIGGER_STOP:
1026 case SNDRV_PCM_TRIGGER_SUSPEND:
1027 tmp = snd_cs46xx_peek(chip, BA1_CCTL);
1028 tmp &= 0xffff0000;
1029 snd_cs46xx_poke(chip, BA1_CCTL, tmp);
1030 break;
1031 default:
1032 result = -EINVAL;
1033 break;
1034 }
1035 spin_unlock(&chip->reg_lock);
1036
1037 return result;
1038}
1039
1040#ifdef CONFIG_SND_CS46XX_NEW_DSP
1041static int _cs46xx_adjust_sample_rate (struct snd_cs46xx *chip, struct snd_cs46xx_pcm *cpcm,
1042 int sample_rate)
1043{
1044
1045 /* If PCMReaderSCB and SrcTaskSCB not created yet ... */
1046 if ( cpcm->pcm_channel == NULL) {
1047 cpcm->pcm_channel = cs46xx_dsp_create_pcm_channel (chip, sample_rate,
1048 cpcm, cpcm->hw_buf.addr,cpcm->pcm_channel_id);
1049 if (cpcm->pcm_channel == NULL) {
1050 dev_err(chip->card->dev,
1051 "failed to create virtual PCM channel\n");
1052 return -ENOMEM;
1053 }
1054 cpcm->pcm_channel->sample_rate = sample_rate;
1055 } else
1056 /* if sample rate is changed */
1057 if ((int)cpcm->pcm_channel->sample_rate != sample_rate) {
1058 int unlinked = cpcm->pcm_channel->unlinked;
1059 cs46xx_dsp_destroy_pcm_channel (chip,cpcm->pcm_channel);
1060
1061 if ( (cpcm->pcm_channel = cs46xx_dsp_create_pcm_channel (chip, sample_rate, cpcm,
1062 cpcm->hw_buf.addr,
1063 cpcm->pcm_channel_id)) == NULL) {
1064 dev_err(chip->card->dev,
1065 "failed to re-create virtual PCM channel\n");
1066 return -ENOMEM;
1067 }
1068
1069 if (!unlinked) cs46xx_dsp_pcm_link (chip,cpcm->pcm_channel);
1070 cpcm->pcm_channel->sample_rate = sample_rate;
1071 }
1072
1073 return 0;
1074}
1075#endif
1076
1077
1078static int snd_cs46xx_playback_hw_params(struct snd_pcm_substream *substream,
1079 struct snd_pcm_hw_params *hw_params)
1080{
1081 struct snd_pcm_runtime *runtime = substream->runtime;
1082 struct snd_cs46xx_pcm *cpcm;
1083 int err;
1084#ifdef CONFIG_SND_CS46XX_NEW_DSP
1085 struct snd_cs46xx *chip = snd_pcm_substream_chip(substream);
1086 int sample_rate = params_rate(hw_params);
1087 int period_size = params_period_bytes(hw_params);
1088#endif
1089 cpcm = runtime->private_data;
1090
1091#ifdef CONFIG_SND_CS46XX_NEW_DSP
1092 if (snd_BUG_ON(!sample_rate))
1093 return -ENXIO;
1094
1095 mutex_lock(&chip->spos_mutex);
1096
1097 if (_cs46xx_adjust_sample_rate (chip,cpcm,sample_rate)) {
1098 mutex_unlock(&chip->spos_mutex);
1099 return -ENXIO;
1100 }
1101
1102 snd_BUG_ON(!cpcm->pcm_channel);
1103 if (!cpcm->pcm_channel) {
1104 mutex_unlock(&chip->spos_mutex);
1105 return -ENXIO;
1106 }
1107
1108
1109 if (cs46xx_dsp_pcm_channel_set_period (chip,cpcm->pcm_channel,period_size)) {
1110 mutex_unlock(&chip->spos_mutex);
1111 return -EINVAL;
1112 }
1113
1114 dev_dbg(chip->card->dev,
1115 "period_size (%d), periods (%d) buffer_size(%d)\n",
1116 period_size, params_periods(hw_params),
1117 params_buffer_bytes(hw_params));
1118#endif
1119
1120 if (params_periods(hw_params) == CS46XX_FRAGS) {
1121 if (runtime->dma_area != cpcm->hw_buf.area)
1122 snd_pcm_lib_free_pages(substream);
1123 runtime->dma_area = cpcm->hw_buf.area;
1124 runtime->dma_addr = cpcm->hw_buf.addr;
1125 runtime->dma_bytes = cpcm->hw_buf.bytes;
1126
1127
1128#ifdef CONFIG_SND_CS46XX_NEW_DSP
1129 if (cpcm->pcm_channel_id == DSP_PCM_MAIN_CHANNEL) {
1130 substream->ops = &snd_cs46xx_playback_ops;
1131 } else if (cpcm->pcm_channel_id == DSP_PCM_REAR_CHANNEL) {
1132 substream->ops = &snd_cs46xx_playback_rear_ops;
1133 } else if (cpcm->pcm_channel_id == DSP_PCM_CENTER_LFE_CHANNEL) {
1134 substream->ops = &snd_cs46xx_playback_clfe_ops;
1135 } else if (cpcm->pcm_channel_id == DSP_IEC958_CHANNEL) {
1136 substream->ops = &snd_cs46xx_playback_iec958_ops;
1137 } else {
1138 snd_BUG();
1139 }
1140#else
1141 substream->ops = &snd_cs46xx_playback_ops;
1142#endif
1143
1144 } else {
1145 if (runtime->dma_area == cpcm->hw_buf.area) {
1146 runtime->dma_area = NULL;
1147 runtime->dma_addr = 0;
1148 runtime->dma_bytes = 0;
1149 }
1150 if ((err = snd_pcm_lib_malloc_pages(substream, params_buffer_bytes(hw_params))) < 0) {
1151#ifdef CONFIG_SND_CS46XX_NEW_DSP
1152 mutex_unlock(&chip->spos_mutex);
1153#endif
1154 return err;
1155 }
1156
1157#ifdef CONFIG_SND_CS46XX_NEW_DSP
1158 if (cpcm->pcm_channel_id == DSP_PCM_MAIN_CHANNEL) {
1159 substream->ops = &snd_cs46xx_playback_indirect_ops;
1160 } else if (cpcm->pcm_channel_id == DSP_PCM_REAR_CHANNEL) {
1161 substream->ops = &snd_cs46xx_playback_indirect_rear_ops;
1162 } else if (cpcm->pcm_channel_id == DSP_PCM_CENTER_LFE_CHANNEL) {
1163 substream->ops = &snd_cs46xx_playback_indirect_clfe_ops;
1164 } else if (cpcm->pcm_channel_id == DSP_IEC958_CHANNEL) {
1165 substream->ops = &snd_cs46xx_playback_indirect_iec958_ops;
1166 } else {
1167 snd_BUG();
1168 }
1169#else
1170 substream->ops = &snd_cs46xx_playback_indirect_ops;
1171#endif
1172
1173 }
1174
1175#ifdef CONFIG_SND_CS46XX_NEW_DSP
1176 mutex_unlock(&chip->spos_mutex);
1177#endif
1178
1179 return 0;
1180}
1181
1182static int snd_cs46xx_playback_hw_free(struct snd_pcm_substream *substream)
1183{
1184 /*struct snd_cs46xx *chip = snd_pcm_substream_chip(substream);*/
1185 struct snd_pcm_runtime *runtime = substream->runtime;
1186 struct snd_cs46xx_pcm *cpcm;
1187
1188 cpcm = runtime->private_data;
1189
1190 /* if play_back open fails, then this function
1191 is called and cpcm can actually be NULL here */
1192 if (!cpcm) return -ENXIO;
1193
1194 if (runtime->dma_area != cpcm->hw_buf.area)
1195 snd_pcm_lib_free_pages(substream);
1196
1197 runtime->dma_area = NULL;
1198 runtime->dma_addr = 0;
1199 runtime->dma_bytes = 0;
1200
1201 return 0;
1202}
1203
1204static int snd_cs46xx_playback_prepare(struct snd_pcm_substream *substream)
1205{
1206 unsigned int tmp;
1207 unsigned int pfie;
1208 struct snd_cs46xx *chip = snd_pcm_substream_chip(substream);
1209 struct snd_pcm_runtime *runtime = substream->runtime;
1210 struct snd_cs46xx_pcm *cpcm;
1211
1212 cpcm = runtime->private_data;
1213
1214#ifdef CONFIG_SND_CS46XX_NEW_DSP
1215 if (snd_BUG_ON(!cpcm->pcm_channel))
1216 return -ENXIO;
1217
1218 pfie = snd_cs46xx_peek(chip, (cpcm->pcm_channel->pcm_reader_scb->address + 1) << 2 );
1219 pfie &= ~0x0000f03f;
1220#else
1221 /* old dsp */
1222 pfie = snd_cs46xx_peek(chip, BA1_PFIE);
1223 pfie &= ~0x0000f03f;
1224#endif
1225
1226 cpcm->shift = 2;
1227 /* if to convert from stereo to mono */
1228 if (runtime->channels == 1) {
1229 cpcm->shift--;
1230 pfie |= 0x00002000;
1231 }
1232 /* if to convert from 8 bit to 16 bit */
1233 if (snd_pcm_format_width(runtime->format) == 8) {
1234 cpcm->shift--;
1235 pfie |= 0x00001000;
1236 }
1237 /* if to convert to unsigned */
1238 if (snd_pcm_format_unsigned(runtime->format))
1239 pfie |= 0x00008000;
1240
1241 /* Never convert byte order when sample stream is 8 bit */
1242 if (snd_pcm_format_width(runtime->format) != 8) {
1243 /* convert from big endian to little endian */
1244 if (snd_pcm_format_big_endian(runtime->format))
1245 pfie |= 0x00004000;
1246 }
1247
1248 memset(&cpcm->pcm_rec, 0, sizeof(cpcm->pcm_rec));
1249 cpcm->pcm_rec.sw_buffer_size = snd_pcm_lib_buffer_bytes(substream);
1250 cpcm->pcm_rec.hw_buffer_size = runtime->period_size * CS46XX_FRAGS << cpcm->shift;
1251
1252#ifdef CONFIG_SND_CS46XX_NEW_DSP
1253
1254 tmp = snd_cs46xx_peek(chip, (cpcm->pcm_channel->pcm_reader_scb->address) << 2);
1255 tmp &= ~0x000003ff;
1256 tmp |= (4 << cpcm->shift) - 1;
1257 /* playback transaction count register */
1258 snd_cs46xx_poke(chip, (cpcm->pcm_channel->pcm_reader_scb->address) << 2, tmp);
1259
1260 /* playback format && interrupt enable */
1261 snd_cs46xx_poke(chip, (cpcm->pcm_channel->pcm_reader_scb->address + 1) << 2, pfie | cpcm->pcm_channel->pcm_slot);
1262#else
1263 snd_cs46xx_poke(chip, BA1_PBA, cpcm->hw_buf.addr);
1264 tmp = snd_cs46xx_peek(chip, BA1_PDTC);
1265 tmp &= ~0x000003ff;
1266 tmp |= (4 << cpcm->shift) - 1;
1267 snd_cs46xx_poke(chip, BA1_PDTC, tmp);
1268 snd_cs46xx_poke(chip, BA1_PFIE, pfie);
1269 snd_cs46xx_set_play_sample_rate(chip, runtime->rate);
1270#endif
1271
1272 return 0;
1273}
1274
1275static int snd_cs46xx_capture_hw_params(struct snd_pcm_substream *substream,
1276 struct snd_pcm_hw_params *hw_params)
1277{
1278 struct snd_cs46xx *chip = snd_pcm_substream_chip(substream);
1279 struct snd_pcm_runtime *runtime = substream->runtime;
1280 int err;
1281
1282#ifdef CONFIG_SND_CS46XX_NEW_DSP
1283 cs46xx_dsp_pcm_ostream_set_period (chip, params_period_bytes(hw_params));
1284#endif
1285 if (runtime->periods == CS46XX_FRAGS) {
1286 if (runtime->dma_area != chip->capt.hw_buf.area)
1287 snd_pcm_lib_free_pages(substream);
1288 runtime->dma_area = chip->capt.hw_buf.area;
1289 runtime->dma_addr = chip->capt.hw_buf.addr;
1290 runtime->dma_bytes = chip->capt.hw_buf.bytes;
1291 substream->ops = &snd_cs46xx_capture_ops;
1292 } else {
1293 if (runtime->dma_area == chip->capt.hw_buf.area) {
1294 runtime->dma_area = NULL;
1295 runtime->dma_addr = 0;
1296 runtime->dma_bytes = 0;
1297 }
1298 if ((err = snd_pcm_lib_malloc_pages(substream, params_buffer_bytes(hw_params))) < 0)
1299 return err;
1300 substream->ops = &snd_cs46xx_capture_indirect_ops;
1301 }
1302
1303 return 0;
1304}
1305
1306static int snd_cs46xx_capture_hw_free(struct snd_pcm_substream *substream)
1307{
1308 struct snd_cs46xx *chip = snd_pcm_substream_chip(substream);
1309 struct snd_pcm_runtime *runtime = substream->runtime;
1310
1311 if (runtime->dma_area != chip->capt.hw_buf.area)
1312 snd_pcm_lib_free_pages(substream);
1313 runtime->dma_area = NULL;
1314 runtime->dma_addr = 0;
1315 runtime->dma_bytes = 0;
1316
1317 return 0;
1318}
1319
1320static int snd_cs46xx_capture_prepare(struct snd_pcm_substream *substream)
1321{
1322 struct snd_cs46xx *chip = snd_pcm_substream_chip(substream);
1323 struct snd_pcm_runtime *runtime = substream->runtime;
1324
1325 snd_cs46xx_poke(chip, BA1_CBA, chip->capt.hw_buf.addr);
1326 chip->capt.shift = 2;
1327 memset(&chip->capt.pcm_rec, 0, sizeof(chip->capt.pcm_rec));
1328 chip->capt.pcm_rec.sw_buffer_size = snd_pcm_lib_buffer_bytes(substream);
1329 chip->capt.pcm_rec.hw_buffer_size = runtime->period_size * CS46XX_FRAGS << 2;
1330 snd_cs46xx_set_capture_sample_rate(chip, runtime->rate);
1331
1332 return 0;
1333}
1334
1335static irqreturn_t snd_cs46xx_interrupt(int irq, void *dev_id)
1336{
1337 struct snd_cs46xx *chip = dev_id;
1338 u32 status1;
1339#ifdef CONFIG_SND_CS46XX_NEW_DSP
1340 struct dsp_spos_instance * ins = chip->dsp_spos_instance;
1341 u32 status2;
1342 int i;
1343 struct snd_cs46xx_pcm *cpcm = NULL;
1344#endif
1345
1346 /*
1347 * Read the Interrupt Status Register to clear the interrupt
1348 */
1349 status1 = snd_cs46xx_peekBA0(chip, BA0_HISR);
1350 if ((status1 & 0x7fffffff) == 0) {
1351 snd_cs46xx_pokeBA0(chip, BA0_HICR, HICR_CHGM | HICR_IEV);
1352 return IRQ_NONE;
1353 }
1354
1355#ifdef CONFIG_SND_CS46XX_NEW_DSP
1356 status2 = snd_cs46xx_peekBA0(chip, BA0_HSR0);
1357
1358 for (i = 0; i < DSP_MAX_PCM_CHANNELS; ++i) {
1359 if (i <= 15) {
1360 if ( status1 & (1 << i) ) {
1361 if (i == CS46XX_DSP_CAPTURE_CHANNEL) {
1362 if (chip->capt.substream)
1363 snd_pcm_period_elapsed(chip->capt.substream);
1364 } else {
1365 if (ins->pcm_channels[i].active &&
1366 ins->pcm_channels[i].private_data &&
1367 !ins->pcm_channels[i].unlinked) {
1368 cpcm = ins->pcm_channels[i].private_data;
1369 snd_pcm_period_elapsed(cpcm->substream);
1370 }
1371 }
1372 }
1373 } else {
1374 if ( status2 & (1 << (i - 16))) {
1375 if (ins->pcm_channels[i].active &&
1376 ins->pcm_channels[i].private_data &&
1377 !ins->pcm_channels[i].unlinked) {
1378 cpcm = ins->pcm_channels[i].private_data;
1379 snd_pcm_period_elapsed(cpcm->substream);
1380 }
1381 }
1382 }
1383 }
1384
1385#else
1386 /* old dsp */
1387 if ((status1 & HISR_VC0) && chip->playback_pcm) {
1388 if (chip->playback_pcm->substream)
1389 snd_pcm_period_elapsed(chip->playback_pcm->substream);
1390 }
1391 if ((status1 & HISR_VC1) && chip->pcm) {
1392 if (chip->capt.substream)
1393 snd_pcm_period_elapsed(chip->capt.substream);
1394 }
1395#endif
1396
1397 if ((status1 & HISR_MIDI) && chip->rmidi) {
1398 unsigned char c;
1399
1400 spin_lock(&chip->reg_lock);
1401 while ((snd_cs46xx_peekBA0(chip, BA0_MIDSR) & MIDSR_RBE) == 0) {
1402 c = snd_cs46xx_peekBA0(chip, BA0_MIDRP);
1403 if ((chip->midcr & MIDCR_RIE) == 0)
1404 continue;
1405 snd_rawmidi_receive(chip->midi_input, &c, 1);
1406 }
1407 while ((snd_cs46xx_peekBA0(chip, BA0_MIDSR) & MIDSR_TBF) == 0) {
1408 if ((chip->midcr & MIDCR_TIE) == 0)
1409 break;
1410 if (snd_rawmidi_transmit(chip->midi_output, &c, 1) != 1) {
1411 chip->midcr &= ~MIDCR_TIE;
1412 snd_cs46xx_pokeBA0(chip, BA0_MIDCR, chip->midcr);
1413 break;
1414 }
1415 snd_cs46xx_pokeBA0(chip, BA0_MIDWP, c);
1416 }
1417 spin_unlock(&chip->reg_lock);
1418 }
1419 /*
1420 * EOI to the PCI part....reenables interrupts
1421 */
1422 snd_cs46xx_pokeBA0(chip, BA0_HICR, HICR_CHGM | HICR_IEV);
1423
1424 return IRQ_HANDLED;
1425}
1426
1427static const struct snd_pcm_hardware snd_cs46xx_playback =
1428{
1429 .info = (SNDRV_PCM_INFO_MMAP |
1430 SNDRV_PCM_INFO_INTERLEAVED |
1431 SNDRV_PCM_INFO_BLOCK_TRANSFER /*|*/
1432 /*SNDRV_PCM_INFO_RESUME*/ |
1433 SNDRV_PCM_INFO_SYNC_APPLPTR),
1434 .formats = (SNDRV_PCM_FMTBIT_S8 | SNDRV_PCM_FMTBIT_U8 |
1435 SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S16_BE |
1436 SNDRV_PCM_FMTBIT_U16_LE | SNDRV_PCM_FMTBIT_U16_BE),
1437 .rates = SNDRV_PCM_RATE_CONTINUOUS | SNDRV_PCM_RATE_8000_48000,
1438 .rate_min = 5500,
1439 .rate_max = 48000,
1440 .channels_min = 1,
1441 .channels_max = 2,
1442 .buffer_bytes_max = (256 * 1024),
1443 .period_bytes_min = CS46XX_MIN_PERIOD_SIZE,
1444 .period_bytes_max = CS46XX_MAX_PERIOD_SIZE,
1445 .periods_min = CS46XX_FRAGS,
1446 .periods_max = 1024,
1447 .fifo_size = 0,
1448};
1449
1450static const struct snd_pcm_hardware snd_cs46xx_capture =
1451{
1452 .info = (SNDRV_PCM_INFO_MMAP |
1453 SNDRV_PCM_INFO_INTERLEAVED |
1454 SNDRV_PCM_INFO_BLOCK_TRANSFER /*|*/
1455 /*SNDRV_PCM_INFO_RESUME*/ |
1456 SNDRV_PCM_INFO_SYNC_APPLPTR),
1457 .formats = SNDRV_PCM_FMTBIT_S16_LE,
1458 .rates = SNDRV_PCM_RATE_CONTINUOUS | SNDRV_PCM_RATE_8000_48000,
1459 .rate_min = 5500,
1460 .rate_max = 48000,
1461 .channels_min = 2,
1462 .channels_max = 2,
1463 .buffer_bytes_max = (256 * 1024),
1464 .period_bytes_min = CS46XX_MIN_PERIOD_SIZE,
1465 .period_bytes_max = CS46XX_MAX_PERIOD_SIZE,
1466 .periods_min = CS46XX_FRAGS,
1467 .periods_max = 1024,
1468 .fifo_size = 0,
1469};
1470
1471#ifdef CONFIG_SND_CS46XX_NEW_DSP
1472
1473static const unsigned int period_sizes[] = { 32, 64, 128, 256, 512, 1024, 2048 };
1474
1475static const struct snd_pcm_hw_constraint_list hw_constraints_period_sizes = {
1476 .count = ARRAY_SIZE(period_sizes),
1477 .list = period_sizes,
1478 .mask = 0
1479};
1480
1481#endif
1482
1483static void snd_cs46xx_pcm_free_substream(struct snd_pcm_runtime *runtime)
1484{
1485 kfree(runtime->private_data);
1486}
1487
1488static int _cs46xx_playback_open_channel (struct snd_pcm_substream *substream,int pcm_channel_id)
1489{
1490 struct snd_cs46xx *chip = snd_pcm_substream_chip(substream);
1491 struct snd_cs46xx_pcm * cpcm;
1492 struct snd_pcm_runtime *runtime = substream->runtime;
1493
1494 cpcm = kzalloc(sizeof(*cpcm), GFP_KERNEL);
1495 if (cpcm == NULL)
1496 return -ENOMEM;
1497 if (snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV, snd_dma_pci_data(chip->pci),
1498 PAGE_SIZE, &cpcm->hw_buf) < 0) {
1499 kfree(cpcm);
1500 return -ENOMEM;
1501 }
1502
1503 runtime->hw = snd_cs46xx_playback;
1504 runtime->private_data = cpcm;
1505 runtime->private_free = snd_cs46xx_pcm_free_substream;
1506
1507 cpcm->substream = substream;
1508#ifdef CONFIG_SND_CS46XX_NEW_DSP
1509 mutex_lock(&chip->spos_mutex);
1510 cpcm->pcm_channel = NULL;
1511 cpcm->pcm_channel_id = pcm_channel_id;
1512
1513
1514 snd_pcm_hw_constraint_list(runtime, 0,
1515 SNDRV_PCM_HW_PARAM_PERIOD_BYTES,
1516 &hw_constraints_period_sizes);
1517
1518 mutex_unlock(&chip->spos_mutex);
1519#else
1520 chip->playback_pcm = cpcm; /* HACK */
1521#endif
1522
1523 if (chip->accept_valid)
1524 substream->runtime->hw.info |= SNDRV_PCM_INFO_MMAP_VALID;
1525 chip->active_ctrl(chip, 1);
1526
1527 return 0;
1528}
1529
1530static int snd_cs46xx_playback_open(struct snd_pcm_substream *substream)
1531{
1532 dev_dbg(substream->pcm->card->dev, "open front channel\n");
1533 return _cs46xx_playback_open_channel(substream,DSP_PCM_MAIN_CHANNEL);
1534}
1535
1536#ifdef CONFIG_SND_CS46XX_NEW_DSP
1537static int snd_cs46xx_playback_open_rear(struct snd_pcm_substream *substream)
1538{
1539 dev_dbg(substream->pcm->card->dev, "open rear channel\n");
1540 return _cs46xx_playback_open_channel(substream,DSP_PCM_REAR_CHANNEL);
1541}
1542
1543static int snd_cs46xx_playback_open_clfe(struct snd_pcm_substream *substream)
1544{
1545 dev_dbg(substream->pcm->card->dev, "open center - LFE channel\n");
1546 return _cs46xx_playback_open_channel(substream,DSP_PCM_CENTER_LFE_CHANNEL);
1547}
1548
1549static int snd_cs46xx_playback_open_iec958(struct snd_pcm_substream *substream)
1550{
1551 struct snd_cs46xx *chip = snd_pcm_substream_chip(substream);
1552
1553 dev_dbg(chip->card->dev, "open raw iec958 channel\n");
1554
1555 mutex_lock(&chip->spos_mutex);
1556 cs46xx_iec958_pre_open (chip);
1557 mutex_unlock(&chip->spos_mutex);
1558
1559 return _cs46xx_playback_open_channel(substream,DSP_IEC958_CHANNEL);
1560}
1561
1562static int snd_cs46xx_playback_close(struct snd_pcm_substream *substream);
1563
1564static int snd_cs46xx_playback_close_iec958(struct snd_pcm_substream *substream)
1565{
1566 int err;
1567 struct snd_cs46xx *chip = snd_pcm_substream_chip(substream);
1568
1569 dev_dbg(chip->card->dev, "close raw iec958 channel\n");
1570
1571 err = snd_cs46xx_playback_close(substream);
1572
1573 mutex_lock(&chip->spos_mutex);
1574 cs46xx_iec958_post_close (chip);
1575 mutex_unlock(&chip->spos_mutex);
1576
1577 return err;
1578}
1579#endif
1580
1581static int snd_cs46xx_capture_open(struct snd_pcm_substream *substream)
1582{
1583 struct snd_cs46xx *chip = snd_pcm_substream_chip(substream);
1584
1585 if (snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV, snd_dma_pci_data(chip->pci),
1586 PAGE_SIZE, &chip->capt.hw_buf) < 0)
1587 return -ENOMEM;
1588 chip->capt.substream = substream;
1589 substream->runtime->hw = snd_cs46xx_capture;
1590
1591 if (chip->accept_valid)
1592 substream->runtime->hw.info |= SNDRV_PCM_INFO_MMAP_VALID;
1593
1594 chip->active_ctrl(chip, 1);
1595
1596#ifdef CONFIG_SND_CS46XX_NEW_DSP
1597 snd_pcm_hw_constraint_list(substream->runtime, 0,
1598 SNDRV_PCM_HW_PARAM_PERIOD_BYTES,
1599 &hw_constraints_period_sizes);
1600#endif
1601 return 0;
1602}
1603
1604static int snd_cs46xx_playback_close(struct snd_pcm_substream *substream)
1605{
1606 struct snd_cs46xx *chip = snd_pcm_substream_chip(substream);
1607 struct snd_pcm_runtime *runtime = substream->runtime;
1608 struct snd_cs46xx_pcm * cpcm;
1609
1610 cpcm = runtime->private_data;
1611
1612 /* when playback_open fails, then cpcm can be NULL */
1613 if (!cpcm) return -ENXIO;
1614
1615#ifdef CONFIG_SND_CS46XX_NEW_DSP
1616 mutex_lock(&chip->spos_mutex);
1617 if (cpcm->pcm_channel) {
1618 cs46xx_dsp_destroy_pcm_channel(chip,cpcm->pcm_channel);
1619 cpcm->pcm_channel = NULL;
1620 }
1621 mutex_unlock(&chip->spos_mutex);
1622#else
1623 chip->playback_pcm = NULL;
1624#endif
1625
1626 cpcm->substream = NULL;
1627 snd_dma_free_pages(&cpcm->hw_buf);
1628 chip->active_ctrl(chip, -1);
1629
1630 return 0;
1631}
1632
1633static int snd_cs46xx_capture_close(struct snd_pcm_substream *substream)
1634{
1635 struct snd_cs46xx *chip = snd_pcm_substream_chip(substream);
1636
1637 chip->capt.substream = NULL;
1638 snd_dma_free_pages(&chip->capt.hw_buf);
1639 chip->active_ctrl(chip, -1);
1640
1641 return 0;
1642}
1643
1644#ifdef CONFIG_SND_CS46XX_NEW_DSP
1645static const struct snd_pcm_ops snd_cs46xx_playback_rear_ops = {
1646 .open = snd_cs46xx_playback_open_rear,
1647 .close = snd_cs46xx_playback_close,
1648 .ioctl = snd_pcm_lib_ioctl,
1649 .hw_params = snd_cs46xx_playback_hw_params,
1650 .hw_free = snd_cs46xx_playback_hw_free,
1651 .prepare = snd_cs46xx_playback_prepare,
1652 .trigger = snd_cs46xx_playback_trigger,
1653 .pointer = snd_cs46xx_playback_direct_pointer,
1654};
1655
1656static const struct snd_pcm_ops snd_cs46xx_playback_indirect_rear_ops = {
1657 .open = snd_cs46xx_playback_open_rear,
1658 .close = snd_cs46xx_playback_close,
1659 .ioctl = snd_pcm_lib_ioctl,
1660 .hw_params = snd_cs46xx_playback_hw_params,
1661 .hw_free = snd_cs46xx_playback_hw_free,
1662 .prepare = snd_cs46xx_playback_prepare,
1663 .trigger = snd_cs46xx_playback_trigger,
1664 .pointer = snd_cs46xx_playback_indirect_pointer,
1665 .ack = snd_cs46xx_playback_transfer,
1666};
1667
1668static const struct snd_pcm_ops snd_cs46xx_playback_clfe_ops = {
1669 .open = snd_cs46xx_playback_open_clfe,
1670 .close = snd_cs46xx_playback_close,
1671 .ioctl = snd_pcm_lib_ioctl,
1672 .hw_params = snd_cs46xx_playback_hw_params,
1673 .hw_free = snd_cs46xx_playback_hw_free,
1674 .prepare = snd_cs46xx_playback_prepare,
1675 .trigger = snd_cs46xx_playback_trigger,
1676 .pointer = snd_cs46xx_playback_direct_pointer,
1677};
1678
1679static const struct snd_pcm_ops snd_cs46xx_playback_indirect_clfe_ops = {
1680 .open = snd_cs46xx_playback_open_clfe,
1681 .close = snd_cs46xx_playback_close,
1682 .ioctl = snd_pcm_lib_ioctl,
1683 .hw_params = snd_cs46xx_playback_hw_params,
1684 .hw_free = snd_cs46xx_playback_hw_free,
1685 .prepare = snd_cs46xx_playback_prepare,
1686 .trigger = snd_cs46xx_playback_trigger,
1687 .pointer = snd_cs46xx_playback_indirect_pointer,
1688 .ack = snd_cs46xx_playback_transfer,
1689};
1690
1691static const struct snd_pcm_ops snd_cs46xx_playback_iec958_ops = {
1692 .open = snd_cs46xx_playback_open_iec958,
1693 .close = snd_cs46xx_playback_close_iec958,
1694 .ioctl = snd_pcm_lib_ioctl,
1695 .hw_params = snd_cs46xx_playback_hw_params,
1696 .hw_free = snd_cs46xx_playback_hw_free,
1697 .prepare = snd_cs46xx_playback_prepare,
1698 .trigger = snd_cs46xx_playback_trigger,
1699 .pointer = snd_cs46xx_playback_direct_pointer,
1700};
1701
1702static const struct snd_pcm_ops snd_cs46xx_playback_indirect_iec958_ops = {
1703 .open = snd_cs46xx_playback_open_iec958,
1704 .close = snd_cs46xx_playback_close_iec958,
1705 .ioctl = snd_pcm_lib_ioctl,
1706 .hw_params = snd_cs46xx_playback_hw_params,
1707 .hw_free = snd_cs46xx_playback_hw_free,
1708 .prepare = snd_cs46xx_playback_prepare,
1709 .trigger = snd_cs46xx_playback_trigger,
1710 .pointer = snd_cs46xx_playback_indirect_pointer,
1711 .ack = snd_cs46xx_playback_transfer,
1712};
1713
1714#endif
1715
1716static const struct snd_pcm_ops snd_cs46xx_playback_ops = {
1717 .open = snd_cs46xx_playback_open,
1718 .close = snd_cs46xx_playback_close,
1719 .ioctl = snd_pcm_lib_ioctl,
1720 .hw_params = snd_cs46xx_playback_hw_params,
1721 .hw_free = snd_cs46xx_playback_hw_free,
1722 .prepare = snd_cs46xx_playback_prepare,
1723 .trigger = snd_cs46xx_playback_trigger,
1724 .pointer = snd_cs46xx_playback_direct_pointer,
1725};
1726
1727static const struct snd_pcm_ops snd_cs46xx_playback_indirect_ops = {
1728 .open = snd_cs46xx_playback_open,
1729 .close = snd_cs46xx_playback_close,
1730 .ioctl = snd_pcm_lib_ioctl,
1731 .hw_params = snd_cs46xx_playback_hw_params,
1732 .hw_free = snd_cs46xx_playback_hw_free,
1733 .prepare = snd_cs46xx_playback_prepare,
1734 .trigger = snd_cs46xx_playback_trigger,
1735 .pointer = snd_cs46xx_playback_indirect_pointer,
1736 .ack = snd_cs46xx_playback_transfer,
1737};
1738
1739static const struct snd_pcm_ops snd_cs46xx_capture_ops = {
1740 .open = snd_cs46xx_capture_open,
1741 .close = snd_cs46xx_capture_close,
1742 .ioctl = snd_pcm_lib_ioctl,
1743 .hw_params = snd_cs46xx_capture_hw_params,
1744 .hw_free = snd_cs46xx_capture_hw_free,
1745 .prepare = snd_cs46xx_capture_prepare,
1746 .trigger = snd_cs46xx_capture_trigger,
1747 .pointer = snd_cs46xx_capture_direct_pointer,
1748};
1749
1750static const struct snd_pcm_ops snd_cs46xx_capture_indirect_ops = {
1751 .open = snd_cs46xx_capture_open,
1752 .close = snd_cs46xx_capture_close,
1753 .ioctl = snd_pcm_lib_ioctl,
1754 .hw_params = snd_cs46xx_capture_hw_params,
1755 .hw_free = snd_cs46xx_capture_hw_free,
1756 .prepare = snd_cs46xx_capture_prepare,
1757 .trigger = snd_cs46xx_capture_trigger,
1758 .pointer = snd_cs46xx_capture_indirect_pointer,
1759 .ack = snd_cs46xx_capture_transfer,
1760};
1761
1762#ifdef CONFIG_SND_CS46XX_NEW_DSP
1763#define MAX_PLAYBACK_CHANNELS (DSP_MAX_PCM_CHANNELS - 1)
1764#else
1765#define MAX_PLAYBACK_CHANNELS 1
1766#endif
1767
1768int snd_cs46xx_pcm(struct snd_cs46xx *chip, int device)
1769{
1770 struct snd_pcm *pcm;
1771 int err;
1772
1773 if ((err = snd_pcm_new(chip->card, "CS46xx", device, MAX_PLAYBACK_CHANNELS, 1, &pcm)) < 0)
1774 return err;
1775
1776 pcm->private_data = chip;
1777
1778 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_cs46xx_playback_ops);
1779 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_cs46xx_capture_ops);
1780
1781 /* global setup */
1782 pcm->info_flags = 0;
1783 strcpy(pcm->name, "CS46xx");
1784 chip->pcm = pcm;
1785
1786 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
1787 snd_dma_pci_data(chip->pci), 64*1024, 256*1024);
1788
1789 return 0;
1790}
1791
1792
1793#ifdef CONFIG_SND_CS46XX_NEW_DSP
1794int snd_cs46xx_pcm_rear(struct snd_cs46xx *chip, int device)
1795{
1796 struct snd_pcm *pcm;
1797 int err;
1798
1799 if ((err = snd_pcm_new(chip->card, "CS46xx - Rear", device, MAX_PLAYBACK_CHANNELS, 0, &pcm)) < 0)
1800 return err;
1801
1802 pcm->private_data = chip;
1803
1804 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_cs46xx_playback_rear_ops);
1805
1806 /* global setup */
1807 pcm->info_flags = 0;
1808 strcpy(pcm->name, "CS46xx - Rear");
1809 chip->pcm_rear = pcm;
1810
1811 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
1812 snd_dma_pci_data(chip->pci), 64*1024, 256*1024);
1813
1814 return 0;
1815}
1816
1817int snd_cs46xx_pcm_center_lfe(struct snd_cs46xx *chip, int device)
1818{
1819 struct snd_pcm *pcm;
1820 int err;
1821
1822 if ((err = snd_pcm_new(chip->card, "CS46xx - Center LFE", device, MAX_PLAYBACK_CHANNELS, 0, &pcm)) < 0)
1823 return err;
1824
1825 pcm->private_data = chip;
1826
1827 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_cs46xx_playback_clfe_ops);
1828
1829 /* global setup */
1830 pcm->info_flags = 0;
1831 strcpy(pcm->name, "CS46xx - Center LFE");
1832 chip->pcm_center_lfe = pcm;
1833
1834 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
1835 snd_dma_pci_data(chip->pci), 64*1024, 256*1024);
1836
1837 return 0;
1838}
1839
1840int snd_cs46xx_pcm_iec958(struct snd_cs46xx *chip, int device)
1841{
1842 struct snd_pcm *pcm;
1843 int err;
1844
1845 if ((err = snd_pcm_new(chip->card, "CS46xx - IEC958", device, 1, 0, &pcm)) < 0)
1846 return err;
1847
1848 pcm->private_data = chip;
1849
1850 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_cs46xx_playback_iec958_ops);
1851
1852 /* global setup */
1853 pcm->info_flags = 0;
1854 strcpy(pcm->name, "CS46xx - IEC958");
1855 chip->pcm_iec958 = pcm;
1856
1857 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
1858 snd_dma_pci_data(chip->pci), 64*1024, 256*1024);
1859
1860 return 0;
1861}
1862#endif
1863
1864/*
1865 * Mixer routines
1866 */
1867static void snd_cs46xx_mixer_free_ac97_bus(struct snd_ac97_bus *bus)
1868{
1869 struct snd_cs46xx *chip = bus->private_data;
1870
1871 chip->ac97_bus = NULL;
1872}
1873
1874static void snd_cs46xx_mixer_free_ac97(struct snd_ac97 *ac97)
1875{
1876 struct snd_cs46xx *chip = ac97->private_data;
1877
1878 if (snd_BUG_ON(ac97 != chip->ac97[CS46XX_PRIMARY_CODEC_INDEX] &&
1879 ac97 != chip->ac97[CS46XX_SECONDARY_CODEC_INDEX]))
1880 return;
1881
1882 if (ac97 == chip->ac97[CS46XX_PRIMARY_CODEC_INDEX]) {
1883 chip->ac97[CS46XX_PRIMARY_CODEC_INDEX] = NULL;
1884 chip->eapd_switch = NULL;
1885 }
1886 else
1887 chip->ac97[CS46XX_SECONDARY_CODEC_INDEX] = NULL;
1888}
1889
1890static int snd_cs46xx_vol_info(struct snd_kcontrol *kcontrol,
1891 struct snd_ctl_elem_info *uinfo)
1892{
1893 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
1894 uinfo->count = 2;
1895 uinfo->value.integer.min = 0;
1896 uinfo->value.integer.max = 0x7fff;
1897 return 0;
1898}
1899
1900static int snd_cs46xx_vol_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1901{
1902 struct snd_cs46xx *chip = snd_kcontrol_chip(kcontrol);
1903 int reg = kcontrol->private_value;
1904 unsigned int val = snd_cs46xx_peek(chip, reg);
1905 ucontrol->value.integer.value[0] = 0xffff - (val >> 16);
1906 ucontrol->value.integer.value[1] = 0xffff - (val & 0xffff);
1907 return 0;
1908}
1909
1910static int snd_cs46xx_vol_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1911{
1912 struct snd_cs46xx *chip = snd_kcontrol_chip(kcontrol);
1913 int reg = kcontrol->private_value;
1914 unsigned int val = ((0xffff - ucontrol->value.integer.value[0]) << 16 |
1915 (0xffff - ucontrol->value.integer.value[1]));
1916 unsigned int old = snd_cs46xx_peek(chip, reg);
1917 int change = (old != val);
1918
1919 if (change) {
1920 snd_cs46xx_poke(chip, reg, val);
1921 }
1922
1923 return change;
1924}
1925
1926#ifdef CONFIG_SND_CS46XX_NEW_DSP
1927
1928static int snd_cs46xx_vol_dac_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1929{
1930 struct snd_cs46xx *chip = snd_kcontrol_chip(kcontrol);
1931
1932 ucontrol->value.integer.value[0] = chip->dsp_spos_instance->dac_volume_left;
1933 ucontrol->value.integer.value[1] = chip->dsp_spos_instance->dac_volume_right;
1934
1935 return 0;
1936}
1937
1938static int snd_cs46xx_vol_dac_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1939{
1940 struct snd_cs46xx *chip = snd_kcontrol_chip(kcontrol);
1941 int change = 0;
1942
1943 if (chip->dsp_spos_instance->dac_volume_right != ucontrol->value.integer.value[0] ||
1944 chip->dsp_spos_instance->dac_volume_left != ucontrol->value.integer.value[1]) {
1945 cs46xx_dsp_set_dac_volume(chip,
1946 ucontrol->value.integer.value[0],
1947 ucontrol->value.integer.value[1]);
1948 change = 1;
1949 }
1950
1951 return change;
1952}
1953
1954#if 0
1955static int snd_cs46xx_vol_iec958_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1956{
1957 struct snd_cs46xx *chip = snd_kcontrol_chip(kcontrol);
1958
1959 ucontrol->value.integer.value[0] = chip->dsp_spos_instance->spdif_input_volume_left;
1960 ucontrol->value.integer.value[1] = chip->dsp_spos_instance->spdif_input_volume_right;
1961 return 0;
1962}
1963
1964static int snd_cs46xx_vol_iec958_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1965{
1966 struct snd_cs46xx *chip = snd_kcontrol_chip(kcontrol);
1967 int change = 0;
1968
1969 if (chip->dsp_spos_instance->spdif_input_volume_left != ucontrol->value.integer.value[0] ||
1970 chip->dsp_spos_instance->spdif_input_volume_right!= ucontrol->value.integer.value[1]) {
1971 cs46xx_dsp_set_iec958_volume (chip,
1972 ucontrol->value.integer.value[0],
1973 ucontrol->value.integer.value[1]);
1974 change = 1;
1975 }
1976
1977 return change;
1978}
1979#endif
1980
1981#define snd_mixer_boolean_info snd_ctl_boolean_mono_info
1982
1983static int snd_cs46xx_iec958_get(struct snd_kcontrol *kcontrol,
1984 struct snd_ctl_elem_value *ucontrol)
1985{
1986 struct snd_cs46xx *chip = snd_kcontrol_chip(kcontrol);
1987 int reg = kcontrol->private_value;
1988
1989 if (reg == CS46XX_MIXER_SPDIF_OUTPUT_ELEMENT)
1990 ucontrol->value.integer.value[0] = (chip->dsp_spos_instance->spdif_status_out & DSP_SPDIF_STATUS_OUTPUT_ENABLED);
1991 else
1992 ucontrol->value.integer.value[0] = chip->dsp_spos_instance->spdif_status_in;
1993
1994 return 0;
1995}
1996
1997static int snd_cs46xx_iec958_put(struct snd_kcontrol *kcontrol,
1998 struct snd_ctl_elem_value *ucontrol)
1999{
2000 struct snd_cs46xx *chip = snd_kcontrol_chip(kcontrol);
2001 int change, res;
2002
2003 switch (kcontrol->private_value) {
2004 case CS46XX_MIXER_SPDIF_OUTPUT_ELEMENT:
2005 mutex_lock(&chip->spos_mutex);
2006 change = (chip->dsp_spos_instance->spdif_status_out & DSP_SPDIF_STATUS_OUTPUT_ENABLED);
2007 if (ucontrol->value.integer.value[0] && !change)
2008 cs46xx_dsp_enable_spdif_out(chip);
2009 else if (change && !ucontrol->value.integer.value[0])
2010 cs46xx_dsp_disable_spdif_out(chip);
2011
2012 res = (change != (chip->dsp_spos_instance->spdif_status_out & DSP_SPDIF_STATUS_OUTPUT_ENABLED));
2013 mutex_unlock(&chip->spos_mutex);
2014 break;
2015 case CS46XX_MIXER_SPDIF_INPUT_ELEMENT:
2016 change = chip->dsp_spos_instance->spdif_status_in;
2017 if (ucontrol->value.integer.value[0] && !change) {
2018 cs46xx_dsp_enable_spdif_in(chip);
2019 /* restore volume */
2020 }
2021 else if (change && !ucontrol->value.integer.value[0])
2022 cs46xx_dsp_disable_spdif_in(chip);
2023
2024 res = (change != chip->dsp_spos_instance->spdif_status_in);
2025 break;
2026 default:
2027 res = -EINVAL;
2028 snd_BUG(); /* should never happen ... */
2029 }
2030
2031 return res;
2032}
2033
2034static int snd_cs46xx_adc_capture_get(struct snd_kcontrol *kcontrol,
2035 struct snd_ctl_elem_value *ucontrol)
2036{
2037 struct snd_cs46xx *chip = snd_kcontrol_chip(kcontrol);
2038 struct dsp_spos_instance * ins = chip->dsp_spos_instance;
2039
2040 if (ins->adc_input != NULL)
2041 ucontrol->value.integer.value[0] = 1;
2042 else
2043 ucontrol->value.integer.value[0] = 0;
2044
2045 return 0;
2046}
2047
2048static int snd_cs46xx_adc_capture_put(struct snd_kcontrol *kcontrol,
2049 struct snd_ctl_elem_value *ucontrol)
2050{
2051 struct snd_cs46xx *chip = snd_kcontrol_chip(kcontrol);
2052 struct dsp_spos_instance * ins = chip->dsp_spos_instance;
2053 int change = 0;
2054
2055 if (ucontrol->value.integer.value[0] && !ins->adc_input) {
2056 cs46xx_dsp_enable_adc_capture(chip);
2057 change = 1;
2058 } else if (!ucontrol->value.integer.value[0] && ins->adc_input) {
2059 cs46xx_dsp_disable_adc_capture(chip);
2060 change = 1;
2061 }
2062 return change;
2063}
2064
2065static int snd_cs46xx_pcm_capture_get(struct snd_kcontrol *kcontrol,
2066 struct snd_ctl_elem_value *ucontrol)
2067{
2068 struct snd_cs46xx *chip = snd_kcontrol_chip(kcontrol);
2069 struct dsp_spos_instance * ins = chip->dsp_spos_instance;
2070
2071 if (ins->pcm_input != NULL)
2072 ucontrol->value.integer.value[0] = 1;
2073 else
2074 ucontrol->value.integer.value[0] = 0;
2075
2076 return 0;
2077}
2078
2079
2080static int snd_cs46xx_pcm_capture_put(struct snd_kcontrol *kcontrol,
2081 struct snd_ctl_elem_value *ucontrol)
2082{
2083 struct snd_cs46xx *chip = snd_kcontrol_chip(kcontrol);
2084 struct dsp_spos_instance * ins = chip->dsp_spos_instance;
2085 int change = 0;
2086
2087 if (ucontrol->value.integer.value[0] && !ins->pcm_input) {
2088 cs46xx_dsp_enable_pcm_capture(chip);
2089 change = 1;
2090 } else if (!ucontrol->value.integer.value[0] && ins->pcm_input) {
2091 cs46xx_dsp_disable_pcm_capture(chip);
2092 change = 1;
2093 }
2094
2095 return change;
2096}
2097
2098static int snd_herc_spdif_select_get(struct snd_kcontrol *kcontrol,
2099 struct snd_ctl_elem_value *ucontrol)
2100{
2101 struct snd_cs46xx *chip = snd_kcontrol_chip(kcontrol);
2102
2103 int val1 = snd_cs46xx_peekBA0(chip, BA0_EGPIODR);
2104
2105 if (val1 & EGPIODR_GPOE0)
2106 ucontrol->value.integer.value[0] = 1;
2107 else
2108 ucontrol->value.integer.value[0] = 0;
2109
2110 return 0;
2111}
2112
2113/*
2114 * Game Theatre XP card - EGPIO[0] is used to select SPDIF input optical or coaxial.
2115 */
2116static int snd_herc_spdif_select_put(struct snd_kcontrol *kcontrol,
2117 struct snd_ctl_elem_value *ucontrol)
2118{
2119 struct snd_cs46xx *chip = snd_kcontrol_chip(kcontrol);
2120 int val1 = snd_cs46xx_peekBA0(chip, BA0_EGPIODR);
2121 int val2 = snd_cs46xx_peekBA0(chip, BA0_EGPIOPTR);
2122
2123 if (ucontrol->value.integer.value[0]) {
2124 /* optical is default */
2125 snd_cs46xx_pokeBA0(chip, BA0_EGPIODR,
2126 EGPIODR_GPOE0 | val1); /* enable EGPIO0 output */
2127 snd_cs46xx_pokeBA0(chip, BA0_EGPIOPTR,
2128 EGPIOPTR_GPPT0 | val2); /* open-drain on output */
2129 } else {
2130 /* coaxial */
2131 snd_cs46xx_pokeBA0(chip, BA0_EGPIODR, val1 & ~EGPIODR_GPOE0); /* disable */
2132 snd_cs46xx_pokeBA0(chip, BA0_EGPIOPTR, val2 & ~EGPIOPTR_GPPT0); /* disable */
2133 }
2134
2135 /* checking diff from the EGPIO direction register
2136 should be enough */
2137 return (val1 != (int)snd_cs46xx_peekBA0(chip, BA0_EGPIODR));
2138}
2139
2140
2141static int snd_cs46xx_spdif_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
2142{
2143 uinfo->type = SNDRV_CTL_ELEM_TYPE_IEC958;
2144 uinfo->count = 1;
2145 return 0;
2146}
2147
2148static int snd_cs46xx_spdif_default_get(struct snd_kcontrol *kcontrol,
2149 struct snd_ctl_elem_value *ucontrol)
2150{
2151 struct snd_cs46xx *chip = snd_kcontrol_chip(kcontrol);
2152 struct dsp_spos_instance * ins = chip->dsp_spos_instance;
2153
2154 mutex_lock(&chip->spos_mutex);
2155 ucontrol->value.iec958.status[0] = _wrap_all_bits((ins->spdif_csuv_default >> 24) & 0xff);
2156 ucontrol->value.iec958.status[1] = _wrap_all_bits((ins->spdif_csuv_default >> 16) & 0xff);
2157 ucontrol->value.iec958.status[2] = 0;
2158 ucontrol->value.iec958.status[3] = _wrap_all_bits((ins->spdif_csuv_default) & 0xff);
2159 mutex_unlock(&chip->spos_mutex);
2160
2161 return 0;
2162}
2163
2164static int snd_cs46xx_spdif_default_put(struct snd_kcontrol *kcontrol,
2165 struct snd_ctl_elem_value *ucontrol)
2166{
2167 struct snd_cs46xx * chip = snd_kcontrol_chip(kcontrol);
2168 struct dsp_spos_instance * ins = chip->dsp_spos_instance;
2169 unsigned int val;
2170 int change;
2171
2172 mutex_lock(&chip->spos_mutex);
2173 val = ((unsigned int)_wrap_all_bits(ucontrol->value.iec958.status[0]) << 24) |
2174 ((unsigned int)_wrap_all_bits(ucontrol->value.iec958.status[2]) << 16) |
2175 ((unsigned int)_wrap_all_bits(ucontrol->value.iec958.status[3])) |
2176 /* left and right validity bit */
2177 (1 << 13) | (1 << 12);
2178
2179
2180 change = (unsigned int)ins->spdif_csuv_default != val;
2181 ins->spdif_csuv_default = val;
2182
2183 if ( !(ins->spdif_status_out & DSP_SPDIF_STATUS_PLAYBACK_OPEN) )
2184 cs46xx_poke_via_dsp (chip,SP_SPDOUT_CSUV,val);
2185
2186 mutex_unlock(&chip->spos_mutex);
2187
2188 return change;
2189}
2190
2191static int snd_cs46xx_spdif_mask_get(struct snd_kcontrol *kcontrol,
2192 struct snd_ctl_elem_value *ucontrol)
2193{
2194 ucontrol->value.iec958.status[0] = 0xff;
2195 ucontrol->value.iec958.status[1] = 0xff;
2196 ucontrol->value.iec958.status[2] = 0x00;
2197 ucontrol->value.iec958.status[3] = 0xff;
2198 return 0;
2199}
2200
2201static int snd_cs46xx_spdif_stream_get(struct snd_kcontrol *kcontrol,
2202 struct snd_ctl_elem_value *ucontrol)
2203{
2204 struct snd_cs46xx *chip = snd_kcontrol_chip(kcontrol);
2205 struct dsp_spos_instance * ins = chip->dsp_spos_instance;
2206
2207 mutex_lock(&chip->spos_mutex);
2208 ucontrol->value.iec958.status[0] = _wrap_all_bits((ins->spdif_csuv_stream >> 24) & 0xff);
2209 ucontrol->value.iec958.status[1] = _wrap_all_bits((ins->spdif_csuv_stream >> 16) & 0xff);
2210 ucontrol->value.iec958.status[2] = 0;
2211 ucontrol->value.iec958.status[3] = _wrap_all_bits((ins->spdif_csuv_stream) & 0xff);
2212 mutex_unlock(&chip->spos_mutex);
2213
2214 return 0;
2215}
2216
2217static int snd_cs46xx_spdif_stream_put(struct snd_kcontrol *kcontrol,
2218 struct snd_ctl_elem_value *ucontrol)
2219{
2220 struct snd_cs46xx * chip = snd_kcontrol_chip(kcontrol);
2221 struct dsp_spos_instance * ins = chip->dsp_spos_instance;
2222 unsigned int val;
2223 int change;
2224
2225 mutex_lock(&chip->spos_mutex);
2226 val = ((unsigned int)_wrap_all_bits(ucontrol->value.iec958.status[0]) << 24) |
2227 ((unsigned int)_wrap_all_bits(ucontrol->value.iec958.status[1]) << 16) |
2228 ((unsigned int)_wrap_all_bits(ucontrol->value.iec958.status[3])) |
2229 /* left and right validity bit */
2230 (1 << 13) | (1 << 12);
2231
2232
2233 change = ins->spdif_csuv_stream != val;
2234 ins->spdif_csuv_stream = val;
2235
2236 if ( ins->spdif_status_out & DSP_SPDIF_STATUS_PLAYBACK_OPEN )
2237 cs46xx_poke_via_dsp (chip,SP_SPDOUT_CSUV,val);
2238
2239 mutex_unlock(&chip->spos_mutex);
2240
2241 return change;
2242}
2243
2244#endif /* CONFIG_SND_CS46XX_NEW_DSP */
2245
2246
2247static struct snd_kcontrol_new snd_cs46xx_controls[] = {
2248{
2249 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2250 .name = "DAC Volume",
2251 .info = snd_cs46xx_vol_info,
2252#ifndef CONFIG_SND_CS46XX_NEW_DSP
2253 .get = snd_cs46xx_vol_get,
2254 .put = snd_cs46xx_vol_put,
2255 .private_value = BA1_PVOL,
2256#else
2257 .get = snd_cs46xx_vol_dac_get,
2258 .put = snd_cs46xx_vol_dac_put,
2259#endif
2260},
2261
2262{
2263 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2264 .name = "ADC Volume",
2265 .info = snd_cs46xx_vol_info,
2266 .get = snd_cs46xx_vol_get,
2267 .put = snd_cs46xx_vol_put,
2268#ifndef CONFIG_SND_CS46XX_NEW_DSP
2269 .private_value = BA1_CVOL,
2270#else
2271 .private_value = (VARIDECIMATE_SCB_ADDR + 0xE) << 2,
2272#endif
2273},
2274#ifdef CONFIG_SND_CS46XX_NEW_DSP
2275{
2276 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2277 .name = "ADC Capture Switch",
2278 .info = snd_mixer_boolean_info,
2279 .get = snd_cs46xx_adc_capture_get,
2280 .put = snd_cs46xx_adc_capture_put
2281},
2282{
2283 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2284 .name = "DAC Capture Switch",
2285 .info = snd_mixer_boolean_info,
2286 .get = snd_cs46xx_pcm_capture_get,
2287 .put = snd_cs46xx_pcm_capture_put
2288},
2289{
2290 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2291 .name = SNDRV_CTL_NAME_IEC958("Output ",NONE,SWITCH),
2292 .info = snd_mixer_boolean_info,
2293 .get = snd_cs46xx_iec958_get,
2294 .put = snd_cs46xx_iec958_put,
2295 .private_value = CS46XX_MIXER_SPDIF_OUTPUT_ELEMENT,
2296},
2297{
2298 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2299 .name = SNDRV_CTL_NAME_IEC958("Input ",NONE,SWITCH),
2300 .info = snd_mixer_boolean_info,
2301 .get = snd_cs46xx_iec958_get,
2302 .put = snd_cs46xx_iec958_put,
2303 .private_value = CS46XX_MIXER_SPDIF_INPUT_ELEMENT,
2304},
2305#if 0
2306/* Input IEC958 volume does not work for the moment. (Benny) */
2307{
2308 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2309 .name = SNDRV_CTL_NAME_IEC958("Input ",NONE,VOLUME),
2310 .info = snd_cs46xx_vol_info,
2311 .get = snd_cs46xx_vol_iec958_get,
2312 .put = snd_cs46xx_vol_iec958_put,
2313 .private_value = (ASYNCRX_SCB_ADDR + 0xE) << 2,
2314},
2315#endif
2316{
2317 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
2318 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,DEFAULT),
2319 .info = snd_cs46xx_spdif_info,
2320 .get = snd_cs46xx_spdif_default_get,
2321 .put = snd_cs46xx_spdif_default_put,
2322},
2323{
2324 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
2325 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,MASK),
2326 .info = snd_cs46xx_spdif_info,
2327 .get = snd_cs46xx_spdif_mask_get,
2328 .access = SNDRV_CTL_ELEM_ACCESS_READ
2329},
2330{
2331 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
2332 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,PCM_STREAM),
2333 .info = snd_cs46xx_spdif_info,
2334 .get = snd_cs46xx_spdif_stream_get,
2335 .put = snd_cs46xx_spdif_stream_put
2336},
2337
2338#endif
2339};
2340
2341#ifdef CONFIG_SND_CS46XX_NEW_DSP
2342/* set primary cs4294 codec into Extended Audio Mode */
2343static int snd_cs46xx_front_dup_get(struct snd_kcontrol *kcontrol,
2344 struct snd_ctl_elem_value *ucontrol)
2345{
2346 struct snd_cs46xx *chip = snd_kcontrol_chip(kcontrol);
2347 unsigned short val;
2348 val = snd_ac97_read(chip->ac97[CS46XX_PRIMARY_CODEC_INDEX], AC97_CSR_ACMODE);
2349 ucontrol->value.integer.value[0] = (val & 0x200) ? 0 : 1;
2350 return 0;
2351}
2352
2353static int snd_cs46xx_front_dup_put(struct snd_kcontrol *kcontrol,
2354 struct snd_ctl_elem_value *ucontrol)
2355{
2356 struct snd_cs46xx *chip = snd_kcontrol_chip(kcontrol);
2357 return snd_ac97_update_bits(chip->ac97[CS46XX_PRIMARY_CODEC_INDEX],
2358 AC97_CSR_ACMODE, 0x200,
2359 ucontrol->value.integer.value[0] ? 0 : 0x200);
2360}
2361
2362static const struct snd_kcontrol_new snd_cs46xx_front_dup_ctl = {
2363 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2364 .name = "Duplicate Front",
2365 .info = snd_mixer_boolean_info,
2366 .get = snd_cs46xx_front_dup_get,
2367 .put = snd_cs46xx_front_dup_put,
2368};
2369#endif
2370
2371#ifdef CONFIG_SND_CS46XX_NEW_DSP
2372/* Only available on the Hercules Game Theater XP soundcard */
2373static struct snd_kcontrol_new snd_hercules_controls[] = {
2374{
2375 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2376 .name = "Optical/Coaxial SPDIF Input Switch",
2377 .info = snd_mixer_boolean_info,
2378 .get = snd_herc_spdif_select_get,
2379 .put = snd_herc_spdif_select_put,
2380},
2381};
2382
2383
2384static void snd_cs46xx_codec_reset (struct snd_ac97 * ac97)
2385{
2386 unsigned long end_time;
2387 int err;
2388
2389 /* reset to defaults */
2390 snd_ac97_write(ac97, AC97_RESET, 0);
2391
2392 /* set the desired CODEC mode */
2393 if (ac97->num == CS46XX_PRIMARY_CODEC_INDEX) {
2394 dev_dbg(ac97->bus->card->dev, "CODEC1 mode %04x\n", 0x0);
2395 snd_cs46xx_ac97_write(ac97, AC97_CSR_ACMODE, 0x0);
2396 } else if (ac97->num == CS46XX_SECONDARY_CODEC_INDEX) {
2397 dev_dbg(ac97->bus->card->dev, "CODEC2 mode %04x\n", 0x3);
2398 snd_cs46xx_ac97_write(ac97, AC97_CSR_ACMODE, 0x3);
2399 } else {
2400 snd_BUG(); /* should never happen ... */
2401 }
2402
2403 udelay(50);
2404
2405 /* it's necessary to wait awhile until registers are accessible after RESET */
2406 /* because the PCM or MASTER volume registers can be modified, */
2407 /* the REC_GAIN register is used for tests */
2408 end_time = jiffies + HZ;
2409 do {
2410 unsigned short ext_mid;
2411
2412 /* use preliminary reads to settle the communication */
2413 snd_ac97_read(ac97, AC97_RESET);
2414 snd_ac97_read(ac97, AC97_VENDOR_ID1);
2415 snd_ac97_read(ac97, AC97_VENDOR_ID2);
2416 /* modem? */
2417 ext_mid = snd_ac97_read(ac97, AC97_EXTENDED_MID);
2418 if (ext_mid != 0xffff && (ext_mid & 1) != 0)
2419 return;
2420
2421 /* test if we can write to the record gain volume register */
2422 snd_ac97_write(ac97, AC97_REC_GAIN, 0x8a05);
2423 if ((err = snd_ac97_read(ac97, AC97_REC_GAIN)) == 0x8a05)
2424 return;
2425
2426 msleep(10);
2427 } while (time_after_eq(end_time, jiffies));
2428
2429 dev_err(ac97->bus->card->dev,
2430 "CS46xx secondary codec doesn't respond!\n");
2431}
2432#endif
2433
2434static int cs46xx_detect_codec(struct snd_cs46xx *chip, int codec)
2435{
2436 int idx, err;
2437 struct snd_ac97_template ac97;
2438
2439 memset(&ac97, 0, sizeof(ac97));
2440 ac97.private_data = chip;
2441 ac97.private_free = snd_cs46xx_mixer_free_ac97;
2442 ac97.num = codec;
2443 if (chip->amplifier_ctrl == amp_voyetra)
2444 ac97.scaps = AC97_SCAP_INV_EAPD;
2445
2446 if (codec == CS46XX_SECONDARY_CODEC_INDEX) {
2447 snd_cs46xx_codec_write(chip, AC97_RESET, 0, codec);
2448 udelay(10);
2449 if (snd_cs46xx_codec_read(chip, AC97_RESET, codec) & 0x8000) {
2450 dev_dbg(chip->card->dev,
2451 "secondary codec not present\n");
2452 return -ENXIO;
2453 }
2454 }
2455
2456 snd_cs46xx_codec_write(chip, AC97_MASTER, 0x8000, codec);
2457 for (idx = 0; idx < 100; ++idx) {
2458 if (snd_cs46xx_codec_read(chip, AC97_MASTER, codec) == 0x8000) {
2459 err = snd_ac97_mixer(chip->ac97_bus, &ac97, &chip->ac97[codec]);
2460 return err;
2461 }
2462 msleep(10);
2463 }
2464 dev_dbg(chip->card->dev, "codec %d detection timeout\n", codec);
2465 return -ENXIO;
2466}
2467
2468int snd_cs46xx_mixer(struct snd_cs46xx *chip, int spdif_device)
2469{
2470 struct snd_card *card = chip->card;
2471 struct snd_ctl_elem_id id;
2472 int err;
2473 unsigned int idx;
2474 static struct snd_ac97_bus_ops ops = {
2475#ifdef CONFIG_SND_CS46XX_NEW_DSP
2476 .reset = snd_cs46xx_codec_reset,
2477#endif
2478 .write = snd_cs46xx_ac97_write,
2479 .read = snd_cs46xx_ac97_read,
2480 };
2481
2482 /* detect primary codec */
2483 chip->nr_ac97_codecs = 0;
2484 dev_dbg(chip->card->dev, "detecting primary codec\n");
2485 if ((err = snd_ac97_bus(card, 0, &ops, chip, &chip->ac97_bus)) < 0)
2486 return err;
2487 chip->ac97_bus->private_free = snd_cs46xx_mixer_free_ac97_bus;
2488
2489 if (cs46xx_detect_codec(chip, CS46XX_PRIMARY_CODEC_INDEX) < 0)
2490 return -ENXIO;
2491 chip->nr_ac97_codecs = 1;
2492
2493#ifdef CONFIG_SND_CS46XX_NEW_DSP
2494 dev_dbg(chip->card->dev, "detecting secondary codec\n");
2495 /* try detect a secondary codec */
2496 if (! cs46xx_detect_codec(chip, CS46XX_SECONDARY_CODEC_INDEX))
2497 chip->nr_ac97_codecs = 2;
2498#endif /* CONFIG_SND_CS46XX_NEW_DSP */
2499
2500 /* add cs4630 mixer controls */
2501 for (idx = 0; idx < ARRAY_SIZE(snd_cs46xx_controls); idx++) {
2502 struct snd_kcontrol *kctl;
2503 kctl = snd_ctl_new1(&snd_cs46xx_controls[idx], chip);
2504 if (kctl && kctl->id.iface == SNDRV_CTL_ELEM_IFACE_PCM)
2505 kctl->id.device = spdif_device;
2506 if ((err = snd_ctl_add(card, kctl)) < 0)
2507 return err;
2508 }
2509
2510 /* get EAPD mixer switch (for voyetra hack) */
2511 memset(&id, 0, sizeof(id));
2512 id.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
2513 strcpy(id.name, "External Amplifier");
2514 chip->eapd_switch = snd_ctl_find_id(chip->card, &id);
2515
2516#ifdef CONFIG_SND_CS46XX_NEW_DSP
2517 if (chip->nr_ac97_codecs == 1) {
2518 unsigned int id2 = chip->ac97[CS46XX_PRIMARY_CODEC_INDEX]->id & 0xffff;
2519 if ((id2 & 0xfff0) == 0x5920) { /* CS4294 and CS4298 */
2520 err = snd_ctl_add(card, snd_ctl_new1(&snd_cs46xx_front_dup_ctl, chip));
2521 if (err < 0)
2522 return err;
2523 snd_ac97_write_cache(chip->ac97[CS46XX_PRIMARY_CODEC_INDEX],
2524 AC97_CSR_ACMODE, 0x200);
2525 }
2526 }
2527 /* do soundcard specific mixer setup */
2528 if (chip->mixer_init) {
2529 dev_dbg(chip->card->dev, "calling chip->mixer_init(chip);\n");
2530 chip->mixer_init(chip);
2531 }
2532#endif
2533
2534 /* turn on amplifier */
2535 chip->amplifier_ctrl(chip, 1);
2536
2537 return 0;
2538}
2539
2540/*
2541 * RawMIDI interface
2542 */
2543
2544static void snd_cs46xx_midi_reset(struct snd_cs46xx *chip)
2545{
2546 snd_cs46xx_pokeBA0(chip, BA0_MIDCR, MIDCR_MRST);
2547 udelay(100);
2548 snd_cs46xx_pokeBA0(chip, BA0_MIDCR, chip->midcr);
2549}
2550
2551static int snd_cs46xx_midi_input_open(struct snd_rawmidi_substream *substream)
2552{
2553 struct snd_cs46xx *chip = substream->rmidi->private_data;
2554
2555 chip->active_ctrl(chip, 1);
2556 spin_lock_irq(&chip->reg_lock);
2557 chip->uartm |= CS46XX_MODE_INPUT;
2558 chip->midcr |= MIDCR_RXE;
2559 chip->midi_input = substream;
2560 if (!(chip->uartm & CS46XX_MODE_OUTPUT)) {
2561 snd_cs46xx_midi_reset(chip);
2562 } else {
2563 snd_cs46xx_pokeBA0(chip, BA0_MIDCR, chip->midcr);
2564 }
2565 spin_unlock_irq(&chip->reg_lock);
2566 return 0;
2567}
2568
2569static int snd_cs46xx_midi_input_close(struct snd_rawmidi_substream *substream)
2570{
2571 struct snd_cs46xx *chip = substream->rmidi->private_data;
2572
2573 spin_lock_irq(&chip->reg_lock);
2574 chip->midcr &= ~(MIDCR_RXE | MIDCR_RIE);
2575 chip->midi_input = NULL;
2576 if (!(chip->uartm & CS46XX_MODE_OUTPUT)) {
2577 snd_cs46xx_midi_reset(chip);
2578 } else {
2579 snd_cs46xx_pokeBA0(chip, BA0_MIDCR, chip->midcr);
2580 }
2581 chip->uartm &= ~CS46XX_MODE_INPUT;
2582 spin_unlock_irq(&chip->reg_lock);
2583 chip->active_ctrl(chip, -1);
2584 return 0;
2585}
2586
2587static int snd_cs46xx_midi_output_open(struct snd_rawmidi_substream *substream)
2588{
2589 struct snd_cs46xx *chip = substream->rmidi->private_data;
2590
2591 chip->active_ctrl(chip, 1);
2592
2593 spin_lock_irq(&chip->reg_lock);
2594 chip->uartm |= CS46XX_MODE_OUTPUT;
2595 chip->midcr |= MIDCR_TXE;
2596 chip->midi_output = substream;
2597 if (!(chip->uartm & CS46XX_MODE_INPUT)) {
2598 snd_cs46xx_midi_reset(chip);
2599 } else {
2600 snd_cs46xx_pokeBA0(chip, BA0_MIDCR, chip->midcr);
2601 }
2602 spin_unlock_irq(&chip->reg_lock);
2603 return 0;
2604}
2605
2606static int snd_cs46xx_midi_output_close(struct snd_rawmidi_substream *substream)
2607{
2608 struct snd_cs46xx *chip = substream->rmidi->private_data;
2609
2610 spin_lock_irq(&chip->reg_lock);
2611 chip->midcr &= ~(MIDCR_TXE | MIDCR_TIE);
2612 chip->midi_output = NULL;
2613 if (!(chip->uartm & CS46XX_MODE_INPUT)) {
2614 snd_cs46xx_midi_reset(chip);
2615 } else {
2616 snd_cs46xx_pokeBA0(chip, BA0_MIDCR, chip->midcr);
2617 }
2618 chip->uartm &= ~CS46XX_MODE_OUTPUT;
2619 spin_unlock_irq(&chip->reg_lock);
2620 chip->active_ctrl(chip, -1);
2621 return 0;
2622}
2623
2624static void snd_cs46xx_midi_input_trigger(struct snd_rawmidi_substream *substream, int up)
2625{
2626 unsigned long flags;
2627 struct snd_cs46xx *chip = substream->rmidi->private_data;
2628
2629 spin_lock_irqsave(&chip->reg_lock, flags);
2630 if (up) {
2631 if ((chip->midcr & MIDCR_RIE) == 0) {
2632 chip->midcr |= MIDCR_RIE;
2633 snd_cs46xx_pokeBA0(chip, BA0_MIDCR, chip->midcr);
2634 }
2635 } else {
2636 if (chip->midcr & MIDCR_RIE) {
2637 chip->midcr &= ~MIDCR_RIE;
2638 snd_cs46xx_pokeBA0(chip, BA0_MIDCR, chip->midcr);
2639 }
2640 }
2641 spin_unlock_irqrestore(&chip->reg_lock, flags);
2642}
2643
2644static void snd_cs46xx_midi_output_trigger(struct snd_rawmidi_substream *substream, int up)
2645{
2646 unsigned long flags;
2647 struct snd_cs46xx *chip = substream->rmidi->private_data;
2648 unsigned char byte;
2649
2650 spin_lock_irqsave(&chip->reg_lock, flags);
2651 if (up) {
2652 if ((chip->midcr & MIDCR_TIE) == 0) {
2653 chip->midcr |= MIDCR_TIE;
2654 /* fill UART FIFO buffer at first, and turn Tx interrupts only if necessary */
2655 while ((chip->midcr & MIDCR_TIE) &&
2656 (snd_cs46xx_peekBA0(chip, BA0_MIDSR) & MIDSR_TBF) == 0) {
2657 if (snd_rawmidi_transmit(substream, &byte, 1) != 1) {
2658 chip->midcr &= ~MIDCR_TIE;
2659 } else {
2660 snd_cs46xx_pokeBA0(chip, BA0_MIDWP, byte);
2661 }
2662 }
2663 snd_cs46xx_pokeBA0(chip, BA0_MIDCR, chip->midcr);
2664 }
2665 } else {
2666 if (chip->midcr & MIDCR_TIE) {
2667 chip->midcr &= ~MIDCR_TIE;
2668 snd_cs46xx_pokeBA0(chip, BA0_MIDCR, chip->midcr);
2669 }
2670 }
2671 spin_unlock_irqrestore(&chip->reg_lock, flags);
2672}
2673
2674static const struct snd_rawmidi_ops snd_cs46xx_midi_output =
2675{
2676 .open = snd_cs46xx_midi_output_open,
2677 .close = snd_cs46xx_midi_output_close,
2678 .trigger = snd_cs46xx_midi_output_trigger,
2679};
2680
2681static const struct snd_rawmidi_ops snd_cs46xx_midi_input =
2682{
2683 .open = snd_cs46xx_midi_input_open,
2684 .close = snd_cs46xx_midi_input_close,
2685 .trigger = snd_cs46xx_midi_input_trigger,
2686};
2687
2688int snd_cs46xx_midi(struct snd_cs46xx *chip, int device)
2689{
2690 struct snd_rawmidi *rmidi;
2691 int err;
2692
2693 if ((err = snd_rawmidi_new(chip->card, "CS46XX", device, 1, 1, &rmidi)) < 0)
2694 return err;
2695 strcpy(rmidi->name, "CS46XX");
2696 snd_rawmidi_set_ops(rmidi, SNDRV_RAWMIDI_STREAM_OUTPUT, &snd_cs46xx_midi_output);
2697 snd_rawmidi_set_ops(rmidi, SNDRV_RAWMIDI_STREAM_INPUT, &snd_cs46xx_midi_input);
2698 rmidi->info_flags |= SNDRV_RAWMIDI_INFO_OUTPUT | SNDRV_RAWMIDI_INFO_INPUT | SNDRV_RAWMIDI_INFO_DUPLEX;
2699 rmidi->private_data = chip;
2700 chip->rmidi = rmidi;
2701 return 0;
2702}
2703
2704
2705/*
2706 * gameport interface
2707 */
2708
2709#if IS_REACHABLE(CONFIG_GAMEPORT)
2710
2711static void snd_cs46xx_gameport_trigger(struct gameport *gameport)
2712{
2713 struct snd_cs46xx *chip = gameport_get_port_data(gameport);
2714
2715 if (snd_BUG_ON(!chip))
2716 return;
2717 snd_cs46xx_pokeBA0(chip, BA0_JSPT, 0xFF); //outb(gameport->io, 0xFF);
2718}
2719
2720static unsigned char snd_cs46xx_gameport_read(struct gameport *gameport)
2721{
2722 struct snd_cs46xx *chip = gameport_get_port_data(gameport);
2723
2724 if (snd_BUG_ON(!chip))
2725 return 0;
2726 return snd_cs46xx_peekBA0(chip, BA0_JSPT); //inb(gameport->io);
2727}
2728
2729static int snd_cs46xx_gameport_cooked_read(struct gameport *gameport, int *axes, int *buttons)
2730{
2731 struct snd_cs46xx *chip = gameport_get_port_data(gameport);
2732 unsigned js1, js2, jst;
2733
2734 if (snd_BUG_ON(!chip))
2735 return 0;
2736
2737 js1 = snd_cs46xx_peekBA0(chip, BA0_JSC1);
2738 js2 = snd_cs46xx_peekBA0(chip, BA0_JSC2);
2739 jst = snd_cs46xx_peekBA0(chip, BA0_JSPT);
2740
2741 *buttons = (~jst >> 4) & 0x0F;
2742
2743 axes[0] = ((js1 & JSC1_Y1V_MASK) >> JSC1_Y1V_SHIFT) & 0xFFFF;
2744 axes[1] = ((js1 & JSC1_X1V_MASK) >> JSC1_X1V_SHIFT) & 0xFFFF;
2745 axes[2] = ((js2 & JSC2_Y2V_MASK) >> JSC2_Y2V_SHIFT) & 0xFFFF;
2746 axes[3] = ((js2 & JSC2_X2V_MASK) >> JSC2_X2V_SHIFT) & 0xFFFF;
2747
2748 for(jst=0;jst<4;++jst)
2749 if(axes[jst]==0xFFFF) axes[jst] = -1;
2750 return 0;
2751}
2752
2753static int snd_cs46xx_gameport_open(struct gameport *gameport, int mode)
2754{
2755 switch (mode) {
2756 case GAMEPORT_MODE_COOKED:
2757 return 0;
2758 case GAMEPORT_MODE_RAW:
2759 return 0;
2760 default:
2761 return -1;
2762 }
2763 return 0;
2764}
2765
2766int snd_cs46xx_gameport(struct snd_cs46xx *chip)
2767{
2768 struct gameport *gp;
2769
2770 chip->gameport = gp = gameport_allocate_port();
2771 if (!gp) {
2772 dev_err(chip->card->dev,
2773 "cannot allocate memory for gameport\n");
2774 return -ENOMEM;
2775 }
2776
2777 gameport_set_name(gp, "CS46xx Gameport");
2778 gameport_set_phys(gp, "pci%s/gameport0", pci_name(chip->pci));
2779 gameport_set_dev_parent(gp, &chip->pci->dev);
2780 gameport_set_port_data(gp, chip);
2781
2782 gp->open = snd_cs46xx_gameport_open;
2783 gp->read = snd_cs46xx_gameport_read;
2784 gp->trigger = snd_cs46xx_gameport_trigger;
2785 gp->cooked_read = snd_cs46xx_gameport_cooked_read;
2786
2787 snd_cs46xx_pokeBA0(chip, BA0_JSIO, 0xFF); // ?
2788 snd_cs46xx_pokeBA0(chip, BA0_JSCTL, JSCTL_SP_MEDIUM_SLOW);
2789
2790 gameport_register_port(gp);
2791
2792 return 0;
2793}
2794
2795static inline void snd_cs46xx_remove_gameport(struct snd_cs46xx *chip)
2796{
2797 if (chip->gameport) {
2798 gameport_unregister_port(chip->gameport);
2799 chip->gameport = NULL;
2800 }
2801}
2802#else
2803int snd_cs46xx_gameport(struct snd_cs46xx *chip) { return -ENOSYS; }
2804static inline void snd_cs46xx_remove_gameport(struct snd_cs46xx *chip) { }
2805#endif /* CONFIG_GAMEPORT */
2806
2807#ifdef CONFIG_SND_PROC_FS
2808/*
2809 * proc interface
2810 */
2811
2812static ssize_t snd_cs46xx_io_read(struct snd_info_entry *entry,
2813 void *file_private_data,
2814 struct file *file, char __user *buf,
2815 size_t count, loff_t pos)
2816{
2817 struct snd_cs46xx_region *region = entry->private_data;
2818
2819 if (copy_to_user_fromio(buf, region->remap_addr + pos, count))
2820 return -EFAULT;
2821 return count;
2822}
2823
2824static struct snd_info_entry_ops snd_cs46xx_proc_io_ops = {
2825 .read = snd_cs46xx_io_read,
2826};
2827
2828static int snd_cs46xx_proc_init(struct snd_card *card, struct snd_cs46xx *chip)
2829{
2830 struct snd_info_entry *entry;
2831 int idx;
2832
2833 for (idx = 0; idx < 5; idx++) {
2834 struct snd_cs46xx_region *region = &chip->region.idx[idx];
2835 if (! snd_card_proc_new(card, region->name, &entry)) {
2836 entry->content = SNDRV_INFO_CONTENT_DATA;
2837 entry->private_data = chip;
2838 entry->c.ops = &snd_cs46xx_proc_io_ops;
2839 entry->size = region->size;
2840 entry->mode = S_IFREG | 0400;
2841 }
2842 }
2843#ifdef CONFIG_SND_CS46XX_NEW_DSP
2844 cs46xx_dsp_proc_init(card, chip);
2845#endif
2846 return 0;
2847}
2848
2849static int snd_cs46xx_proc_done(struct snd_cs46xx *chip)
2850{
2851#ifdef CONFIG_SND_CS46XX_NEW_DSP
2852 cs46xx_dsp_proc_done(chip);
2853#endif
2854 return 0;
2855}
2856#else /* !CONFIG_SND_PROC_FS */
2857#define snd_cs46xx_proc_init(card, chip)
2858#define snd_cs46xx_proc_done(chip)
2859#endif
2860
2861/*
2862 * stop the h/w
2863 */
2864static void snd_cs46xx_hw_stop(struct snd_cs46xx *chip)
2865{
2866 unsigned int tmp;
2867
2868 tmp = snd_cs46xx_peek(chip, BA1_PFIE);
2869 tmp &= ~0x0000f03f;
2870 tmp |= 0x00000010;
2871 snd_cs46xx_poke(chip, BA1_PFIE, tmp); /* playback interrupt disable */
2872
2873 tmp = snd_cs46xx_peek(chip, BA1_CIE);
2874 tmp &= ~0x0000003f;
2875 tmp |= 0x00000011;
2876 snd_cs46xx_poke(chip, BA1_CIE, tmp); /* capture interrupt disable */
2877
2878 /*
2879 * Stop playback DMA.
2880 */
2881 tmp = snd_cs46xx_peek(chip, BA1_PCTL);
2882 snd_cs46xx_poke(chip, BA1_PCTL, tmp & 0x0000ffff);
2883
2884 /*
2885 * Stop capture DMA.
2886 */
2887 tmp = snd_cs46xx_peek(chip, BA1_CCTL);
2888 snd_cs46xx_poke(chip, BA1_CCTL, tmp & 0xffff0000);
2889
2890 /*
2891 * Reset the processor.
2892 */
2893 snd_cs46xx_reset(chip);
2894
2895 snd_cs46xx_proc_stop(chip);
2896
2897 /*
2898 * Power down the PLL.
2899 */
2900 snd_cs46xx_pokeBA0(chip, BA0_CLKCR1, 0);
2901
2902 /*
2903 * Turn off the Processor by turning off the software clock enable flag in
2904 * the clock control register.
2905 */
2906 tmp = snd_cs46xx_peekBA0(chip, BA0_CLKCR1) & ~CLKCR1_SWCE;
2907 snd_cs46xx_pokeBA0(chip, BA0_CLKCR1, tmp);
2908}
2909
2910
2911static int snd_cs46xx_free(struct snd_cs46xx *chip)
2912{
2913 int idx;
2914
2915 if (snd_BUG_ON(!chip))
2916 return -EINVAL;
2917
2918 if (chip->active_ctrl)
2919 chip->active_ctrl(chip, 1);
2920
2921 snd_cs46xx_remove_gameport(chip);
2922
2923 if (chip->amplifier_ctrl)
2924 chip->amplifier_ctrl(chip, -chip->amplifier); /* force to off */
2925
2926 snd_cs46xx_proc_done(chip);
2927
2928 if (chip->region.idx[0].resource)
2929 snd_cs46xx_hw_stop(chip);
2930
2931 if (chip->irq >= 0)
2932 free_irq(chip->irq, chip);
2933
2934 if (chip->active_ctrl)
2935 chip->active_ctrl(chip, -chip->amplifier);
2936
2937 for (idx = 0; idx < 5; idx++) {
2938 struct snd_cs46xx_region *region = &chip->region.idx[idx];
2939
2940 iounmap(region->remap_addr);
2941 release_and_free_resource(region->resource);
2942 }
2943
2944#ifdef CONFIG_SND_CS46XX_NEW_DSP
2945 if (chip->dsp_spos_instance) {
2946 cs46xx_dsp_spos_destroy(chip);
2947 chip->dsp_spos_instance = NULL;
2948 }
2949 for (idx = 0; idx < CS46XX_DSP_MODULES; idx++)
2950 free_module_desc(chip->modules[idx]);
2951#else
2952 vfree(chip->ba1);
2953#endif
2954
2955#ifdef CONFIG_PM_SLEEP
2956 kfree(chip->saved_regs);
2957#endif
2958
2959 pci_disable_device(chip->pci);
2960 kfree(chip);
2961 return 0;
2962}
2963
2964static int snd_cs46xx_dev_free(struct snd_device *device)
2965{
2966 struct snd_cs46xx *chip = device->device_data;
2967 return snd_cs46xx_free(chip);
2968}
2969
2970/*
2971 * initialize chip
2972 */
2973static int snd_cs46xx_chip_init(struct snd_cs46xx *chip)
2974{
2975 int timeout;
2976
2977 /*
2978 * First, blast the clock control register to zero so that the PLL starts
2979 * out in a known state, and blast the master serial port control register
2980 * to zero so that the serial ports also start out in a known state.
2981 */
2982 snd_cs46xx_pokeBA0(chip, BA0_CLKCR1, 0);
2983 snd_cs46xx_pokeBA0(chip, BA0_SERMC1, 0);
2984
2985 /*
2986 * If we are in AC97 mode, then we must set the part to a host controlled
2987 * AC-link. Otherwise, we won't be able to bring up the link.
2988 */
2989#ifdef CONFIG_SND_CS46XX_NEW_DSP
2990 snd_cs46xx_pokeBA0(chip, BA0_SERACC, SERACC_HSP | SERACC_CHIP_TYPE_2_0 |
2991 SERACC_TWO_CODECS); /* 2.00 dual codecs */
2992 /* snd_cs46xx_pokeBA0(chip, BA0_SERACC, SERACC_HSP | SERACC_CHIP_TYPE_2_0); */ /* 2.00 codec */
2993#else
2994 snd_cs46xx_pokeBA0(chip, BA0_SERACC, SERACC_HSP | SERACC_CHIP_TYPE_1_03); /* 1.03 codec */
2995#endif
2996
2997 /*
2998 * Drive the ARST# pin low for a minimum of 1uS (as defined in the AC97
2999 * spec) and then drive it high. This is done for non AC97 modes since
3000 * there might be logic external to the CS461x that uses the ARST# line
3001 * for a reset.
3002 */
3003 snd_cs46xx_pokeBA0(chip, BA0_ACCTL, 0);
3004#ifdef CONFIG_SND_CS46XX_NEW_DSP
3005 snd_cs46xx_pokeBA0(chip, BA0_ACCTL2, 0);
3006#endif
3007 udelay(50);
3008 snd_cs46xx_pokeBA0(chip, BA0_ACCTL, ACCTL_RSTN);
3009#ifdef CONFIG_SND_CS46XX_NEW_DSP
3010 snd_cs46xx_pokeBA0(chip, BA0_ACCTL2, ACCTL_RSTN);
3011#endif
3012
3013 /*
3014 * The first thing we do here is to enable sync generation. As soon
3015 * as we start receiving bit clock, we'll start producing the SYNC
3016 * signal.
3017 */
3018 snd_cs46xx_pokeBA0(chip, BA0_ACCTL, ACCTL_ESYN | ACCTL_RSTN);
3019#ifdef CONFIG_SND_CS46XX_NEW_DSP
3020 snd_cs46xx_pokeBA0(chip, BA0_ACCTL2, ACCTL_ESYN | ACCTL_RSTN);
3021#endif
3022
3023 /*
3024 * Now wait for a short while to allow the AC97 part to start
3025 * generating bit clock (so we don't try to start the PLL without an
3026 * input clock).
3027 */
3028 mdelay(10);
3029
3030 /*
3031 * Set the serial port timing configuration, so that
3032 * the clock control circuit gets its clock from the correct place.
3033 */
3034 snd_cs46xx_pokeBA0(chip, BA0_SERMC1, SERMC1_PTC_AC97);
3035
3036 /*
3037 * Write the selected clock control setup to the hardware. Do not turn on
3038 * SWCE yet (if requested), so that the devices clocked by the output of
3039 * PLL are not clocked until the PLL is stable.
3040 */
3041 snd_cs46xx_pokeBA0(chip, BA0_PLLCC, PLLCC_LPF_1050_2780_KHZ | PLLCC_CDR_73_104_MHZ);
3042 snd_cs46xx_pokeBA0(chip, BA0_PLLM, 0x3a);
3043 snd_cs46xx_pokeBA0(chip, BA0_CLKCR2, CLKCR2_PDIVS_8);
3044
3045 /*
3046 * Power up the PLL.
3047 */
3048 snd_cs46xx_pokeBA0(chip, BA0_CLKCR1, CLKCR1_PLLP);
3049
3050 /*
3051 * Wait until the PLL has stabilized.
3052 */
3053 msleep(100);
3054
3055 /*
3056 * Turn on clocking of the core so that we can setup the serial ports.
3057 */
3058 snd_cs46xx_pokeBA0(chip, BA0_CLKCR1, CLKCR1_PLLP | CLKCR1_SWCE);
3059
3060 /*
3061 * Enable FIFO Host Bypass
3062 */
3063 snd_cs46xx_pokeBA0(chip, BA0_SERBCF, SERBCF_HBP);
3064
3065 /*
3066 * Fill the serial port FIFOs with silence.
3067 */
3068 snd_cs46xx_clear_serial_FIFOs(chip);
3069
3070 /*
3071 * Set the serial port FIFO pointer to the first sample in the FIFO.
3072 */
3073 /* snd_cs46xx_pokeBA0(chip, BA0_SERBSP, 0); */
3074
3075 /*
3076 * Write the serial port configuration to the part. The master
3077 * enable bit is not set until all other values have been written.
3078 */
3079 snd_cs46xx_pokeBA0(chip, BA0_SERC1, SERC1_SO1F_AC97 | SERC1_SO1EN);
3080 snd_cs46xx_pokeBA0(chip, BA0_SERC2, SERC2_SI1F_AC97 | SERC1_SO1EN);
3081 snd_cs46xx_pokeBA0(chip, BA0_SERMC1, SERMC1_PTC_AC97 | SERMC1_MSPE);
3082
3083
3084#ifdef CONFIG_SND_CS46XX_NEW_DSP
3085 snd_cs46xx_pokeBA0(chip, BA0_SERC7, SERC7_ASDI2EN);
3086 snd_cs46xx_pokeBA0(chip, BA0_SERC3, 0);
3087 snd_cs46xx_pokeBA0(chip, BA0_SERC4, 0);
3088 snd_cs46xx_pokeBA0(chip, BA0_SERC5, 0);
3089 snd_cs46xx_pokeBA0(chip, BA0_SERC6, 1);
3090#endif
3091
3092 mdelay(5);
3093
3094
3095 /*
3096 * Wait for the codec ready signal from the AC97 codec.
3097 */
3098 timeout = 150;
3099 while (timeout-- > 0) {
3100 /*
3101 * Read the AC97 status register to see if we've seen a CODEC READY
3102 * signal from the AC97 codec.
3103 */
3104 if (snd_cs46xx_peekBA0(chip, BA0_ACSTS) & ACSTS_CRDY)
3105 goto ok1;
3106 msleep(10);
3107 }
3108
3109
3110 dev_err(chip->card->dev,
3111 "create - never read codec ready from AC'97\n");
3112 dev_err(chip->card->dev,
3113 "it is not probably bug, try to use CS4236 driver\n");
3114 return -EIO;
3115 ok1:
3116#ifdef CONFIG_SND_CS46XX_NEW_DSP
3117 {
3118 int count;
3119 for (count = 0; count < 150; count++) {
3120 /* First, we want to wait for a short time. */
3121 udelay(25);
3122
3123 if (snd_cs46xx_peekBA0(chip, BA0_ACSTS2) & ACSTS_CRDY)
3124 break;
3125 }
3126
3127 /*
3128 * Make sure CODEC is READY.
3129 */
3130 if (!(snd_cs46xx_peekBA0(chip, BA0_ACSTS2) & ACSTS_CRDY))
3131 dev_dbg(chip->card->dev,
3132 "never read card ready from secondary AC'97\n");
3133 }
3134#endif
3135
3136 /*
3137 * Assert the vaid frame signal so that we can start sending commands
3138 * to the AC97 codec.
3139 */
3140 snd_cs46xx_pokeBA0(chip, BA0_ACCTL, ACCTL_VFRM | ACCTL_ESYN | ACCTL_RSTN);
3141#ifdef CONFIG_SND_CS46XX_NEW_DSP
3142 snd_cs46xx_pokeBA0(chip, BA0_ACCTL2, ACCTL_VFRM | ACCTL_ESYN | ACCTL_RSTN);
3143#endif
3144
3145
3146 /*
3147 * Wait until we've sampled input slots 3 and 4 as valid, meaning that
3148 * the codec is pumping ADC data across the AC-link.
3149 */
3150 timeout = 150;
3151 while (timeout-- > 0) {
3152 /*
3153 * Read the input slot valid register and see if input slots 3 and
3154 * 4 are valid yet.
3155 */
3156 if ((snd_cs46xx_peekBA0(chip, BA0_ACISV) & (ACISV_ISV3 | ACISV_ISV4)) == (ACISV_ISV3 | ACISV_ISV4))
3157 goto ok2;
3158 msleep(10);
3159 }
3160
3161#ifndef CONFIG_SND_CS46XX_NEW_DSP
3162 dev_err(chip->card->dev,
3163 "create - never read ISV3 & ISV4 from AC'97\n");
3164 return -EIO;
3165#else
3166 /* This may happen on a cold boot with a Terratec SiXPack 5.1.
3167 Reloading the driver may help, if there's other soundcards
3168 with the same problem I would like to know. (Benny) */
3169
3170 dev_err(chip->card->dev, "never read ISV3 & ISV4 from AC'97\n");
3171 dev_err(chip->card->dev,
3172 "Try reloading the ALSA driver, if you find something\n");
3173 dev_err(chip->card->dev,
3174 "broken or not working on your soundcard upon\n");
3175 dev_err(chip->card->dev,
3176 "this message please report to alsa-devel@alsa-project.org\n");
3177
3178 return -EIO;
3179#endif
3180 ok2:
3181
3182 /*
3183 * Now, assert valid frame and the slot 3 and 4 valid bits. This will
3184 * commense the transfer of digital audio data to the AC97 codec.
3185 */
3186
3187 snd_cs46xx_pokeBA0(chip, BA0_ACOSV, ACOSV_SLV3 | ACOSV_SLV4);
3188
3189
3190 /*
3191 * Power down the DAC and ADC. We will power them up (if) when we need
3192 * them.
3193 */
3194 /* snd_cs46xx_pokeBA0(chip, BA0_AC97_POWERDOWN, 0x300); */
3195
3196 /*
3197 * Turn off the Processor by turning off the software clock enable flag in
3198 * the clock control register.
3199 */
3200 /* tmp = snd_cs46xx_peekBA0(chip, BA0_CLKCR1) & ~CLKCR1_SWCE; */
3201 /* snd_cs46xx_pokeBA0(chip, BA0_CLKCR1, tmp); */
3202
3203 return 0;
3204}
3205
3206/*
3207 * start and load DSP
3208 */
3209
3210static void cs46xx_enable_stream_irqs(struct snd_cs46xx *chip)
3211{
3212 unsigned int tmp;
3213
3214 snd_cs46xx_pokeBA0(chip, BA0_HICR, HICR_IEV | HICR_CHGM);
3215
3216 tmp = snd_cs46xx_peek(chip, BA1_PFIE);
3217 tmp &= ~0x0000f03f;
3218 snd_cs46xx_poke(chip, BA1_PFIE, tmp); /* playback interrupt enable */
3219
3220 tmp = snd_cs46xx_peek(chip, BA1_CIE);
3221 tmp &= ~0x0000003f;
3222 tmp |= 0x00000001;
3223 snd_cs46xx_poke(chip, BA1_CIE, tmp); /* capture interrupt enable */
3224}
3225
3226int snd_cs46xx_start_dsp(struct snd_cs46xx *chip)
3227{
3228 unsigned int tmp;
3229#ifdef CONFIG_SND_CS46XX_NEW_DSP
3230 int i;
3231#endif
3232 int err;
3233
3234 /*
3235 * Reset the processor.
3236 */
3237 snd_cs46xx_reset(chip);
3238 /*
3239 * Download the image to the processor.
3240 */
3241#ifdef CONFIG_SND_CS46XX_NEW_DSP
3242 for (i = 0; i < CS46XX_DSP_MODULES; i++) {
3243 err = load_firmware(chip, &chip->modules[i], module_names[i]);
3244 if (err < 0) {
3245 dev_err(chip->card->dev, "firmware load error [%s]\n",
3246 module_names[i]);
3247 return err;
3248 }
3249 err = cs46xx_dsp_load_module(chip, chip->modules[i]);
3250 if (err < 0) {
3251 dev_err(chip->card->dev, "image download error [%s]\n",
3252 module_names[i]);
3253 return err;
3254 }
3255 }
3256
3257 if (cs46xx_dsp_scb_and_task_init(chip) < 0)
3258 return -EIO;
3259#else
3260 err = load_firmware(chip);
3261 if (err < 0)
3262 return err;
3263
3264 /* old image */
3265 err = snd_cs46xx_download_image(chip);
3266 if (err < 0) {
3267 dev_err(chip->card->dev, "image download error\n");
3268 return err;
3269 }
3270
3271 /*
3272 * Stop playback DMA.
3273 */
3274 tmp = snd_cs46xx_peek(chip, BA1_PCTL);
3275 chip->play_ctl = tmp & 0xffff0000;
3276 snd_cs46xx_poke(chip, BA1_PCTL, tmp & 0x0000ffff);
3277#endif
3278
3279 /*
3280 * Stop capture DMA.
3281 */
3282 tmp = snd_cs46xx_peek(chip, BA1_CCTL);
3283 chip->capt.ctl = tmp & 0x0000ffff;
3284 snd_cs46xx_poke(chip, BA1_CCTL, tmp & 0xffff0000);
3285
3286 mdelay(5);
3287
3288 snd_cs46xx_set_play_sample_rate(chip, 8000);
3289 snd_cs46xx_set_capture_sample_rate(chip, 8000);
3290
3291 snd_cs46xx_proc_start(chip);
3292
3293 cs46xx_enable_stream_irqs(chip);
3294
3295#ifndef CONFIG_SND_CS46XX_NEW_DSP
3296 /* set the attenuation to 0dB */
3297 snd_cs46xx_poke(chip, BA1_PVOL, 0x80008000);
3298 snd_cs46xx_poke(chip, BA1_CVOL, 0x80008000);
3299#endif
3300
3301 return 0;
3302}
3303
3304
3305/*
3306 * AMP control - null AMP
3307 */
3308
3309static void amp_none(struct snd_cs46xx *chip, int change)
3310{
3311}
3312
3313#ifdef CONFIG_SND_CS46XX_NEW_DSP
3314static int voyetra_setup_eapd_slot(struct snd_cs46xx *chip)
3315{
3316
3317 u32 idx, valid_slots,tmp,powerdown = 0;
3318 u16 modem_power,pin_config,logic_type;
3319
3320 dev_dbg(chip->card->dev, "cs46xx_setup_eapd_slot()+\n");
3321
3322 /*
3323 * See if the devices are powered down. If so, we must power them up first
3324 * or they will not respond.
3325 */
3326 tmp = snd_cs46xx_peekBA0(chip, BA0_CLKCR1);
3327
3328 if (!(tmp & CLKCR1_SWCE)) {
3329 snd_cs46xx_pokeBA0(chip, BA0_CLKCR1, tmp | CLKCR1_SWCE);
3330 powerdown = 1;
3331 }
3332
3333 /*
3334 * Clear PRA. The Bonzo chip will be used for GPIO not for modem
3335 * stuff.
3336 */
3337 if(chip->nr_ac97_codecs != 2) {
3338 dev_err(chip->card->dev,
3339 "cs46xx_setup_eapd_slot() - no secondary codec configured\n");
3340 return -EINVAL;
3341 }
3342
3343 modem_power = snd_cs46xx_codec_read (chip,
3344 AC97_EXTENDED_MSTATUS,
3345 CS46XX_SECONDARY_CODEC_INDEX);
3346 modem_power &=0xFEFF;
3347
3348 snd_cs46xx_codec_write(chip,
3349 AC97_EXTENDED_MSTATUS, modem_power,
3350 CS46XX_SECONDARY_CODEC_INDEX);
3351
3352 /*
3353 * Set GPIO pin's 7 and 8 so that they are configured for output.
3354 */
3355 pin_config = snd_cs46xx_codec_read (chip,
3356 AC97_GPIO_CFG,
3357 CS46XX_SECONDARY_CODEC_INDEX);
3358 pin_config &=0x27F;
3359
3360 snd_cs46xx_codec_write(chip,
3361 AC97_GPIO_CFG, pin_config,
3362 CS46XX_SECONDARY_CODEC_INDEX);
3363
3364 /*
3365 * Set GPIO pin's 7 and 8 so that they are compatible with CMOS logic.
3366 */
3367
3368 logic_type = snd_cs46xx_codec_read(chip, AC97_GPIO_POLARITY,
3369 CS46XX_SECONDARY_CODEC_INDEX);
3370 logic_type &=0x27F;
3371
3372 snd_cs46xx_codec_write (chip, AC97_GPIO_POLARITY, logic_type,
3373 CS46XX_SECONDARY_CODEC_INDEX);
3374
3375 valid_slots = snd_cs46xx_peekBA0(chip, BA0_ACOSV);
3376 valid_slots |= 0x200;
3377 snd_cs46xx_pokeBA0(chip, BA0_ACOSV, valid_slots);
3378
3379 if ( cs46xx_wait_for_fifo(chip,1) ) {
3380 dev_dbg(chip->card->dev, "FIFO is busy\n");
3381
3382 return -EINVAL;
3383 }
3384
3385 /*
3386 * Fill slots 12 with the correct value for the GPIO pins.
3387 */
3388 for(idx = 0x90; idx <= 0x9F; idx++) {
3389 /*
3390 * Initialize the fifo so that bits 7 and 8 are on.
3391 *
3392 * Remember that the GPIO pins in bonzo are shifted by 4 bits to
3393 * the left. 0x1800 corresponds to bits 7 and 8.
3394 */
3395 snd_cs46xx_pokeBA0(chip, BA0_SERBWP, 0x1800);
3396
3397 /*
3398 * Wait for command to complete
3399 */
3400 if ( cs46xx_wait_for_fifo(chip,200) ) {
3401 dev_dbg(chip->card->dev,
3402 "failed waiting for FIFO at addr (%02X)\n",
3403 idx);
3404
3405 return -EINVAL;
3406 }
3407
3408 /*
3409 * Write the serial port FIFO index.
3410 */
3411 snd_cs46xx_pokeBA0(chip, BA0_SERBAD, idx);
3412
3413 /*
3414 * Tell the serial port to load the new value into the FIFO location.
3415 */
3416 snd_cs46xx_pokeBA0(chip, BA0_SERBCM, SERBCM_WRC);
3417 }
3418
3419 /* wait for last command to complete */
3420 cs46xx_wait_for_fifo(chip,200);
3421
3422 /*
3423 * Now, if we powered up the devices, then power them back down again.
3424 * This is kinda ugly, but should never happen.
3425 */
3426 if (powerdown)
3427 snd_cs46xx_pokeBA0(chip, BA0_CLKCR1, tmp);
3428
3429 return 0;
3430}
3431#endif
3432
3433/*
3434 * Crystal EAPD mode
3435 */
3436
3437static void amp_voyetra(struct snd_cs46xx *chip, int change)
3438{
3439 /* Manage the EAPD bit on the Crystal 4297
3440 and the Analog AD1885 */
3441
3442#ifdef CONFIG_SND_CS46XX_NEW_DSP
3443 int old = chip->amplifier;
3444#endif
3445 int oval, val;
3446
3447 chip->amplifier += change;
3448 oval = snd_cs46xx_codec_read(chip, AC97_POWERDOWN,
3449 CS46XX_PRIMARY_CODEC_INDEX);
3450 val = oval;
3451 if (chip->amplifier) {
3452 /* Turn the EAPD amp on */
3453 val |= 0x8000;
3454 } else {
3455 /* Turn the EAPD amp off */
3456 val &= ~0x8000;
3457 }
3458 if (val != oval) {
3459 snd_cs46xx_codec_write(chip, AC97_POWERDOWN, val,
3460 CS46XX_PRIMARY_CODEC_INDEX);
3461 if (chip->eapd_switch)
3462 snd_ctl_notify(chip->card, SNDRV_CTL_EVENT_MASK_VALUE,
3463 &chip->eapd_switch->id);
3464 }
3465
3466#ifdef CONFIG_SND_CS46XX_NEW_DSP
3467 if (chip->amplifier && !old) {
3468 voyetra_setup_eapd_slot(chip);
3469 }
3470#endif
3471}
3472
3473static void hercules_init(struct snd_cs46xx *chip)
3474{
3475 /* default: AMP off, and SPDIF input optical */
3476 snd_cs46xx_pokeBA0(chip, BA0_EGPIODR, EGPIODR_GPOE0);
3477 snd_cs46xx_pokeBA0(chip, BA0_EGPIOPTR, EGPIODR_GPOE0);
3478}
3479
3480
3481/*
3482 * Game Theatre XP card - EGPIO[2] is used to enable the external amp.
3483 */
3484static void amp_hercules(struct snd_cs46xx *chip, int change)
3485{
3486 int old = chip->amplifier;
3487 int val1 = snd_cs46xx_peekBA0(chip, BA0_EGPIODR);
3488 int val2 = snd_cs46xx_peekBA0(chip, BA0_EGPIOPTR);
3489
3490 chip->amplifier += change;
3491 if (chip->amplifier && !old) {
3492 dev_dbg(chip->card->dev, "Hercules amplifier ON\n");
3493
3494 snd_cs46xx_pokeBA0(chip, BA0_EGPIODR,
3495 EGPIODR_GPOE2 | val1); /* enable EGPIO2 output */
3496 snd_cs46xx_pokeBA0(chip, BA0_EGPIOPTR,
3497 EGPIOPTR_GPPT2 | val2); /* open-drain on output */
3498 } else if (old && !chip->amplifier) {
3499 dev_dbg(chip->card->dev, "Hercules amplifier OFF\n");
3500 snd_cs46xx_pokeBA0(chip, BA0_EGPIODR, val1 & ~EGPIODR_GPOE2); /* disable */
3501 snd_cs46xx_pokeBA0(chip, BA0_EGPIOPTR, val2 & ~EGPIOPTR_GPPT2); /* disable */
3502 }
3503}
3504
3505static void voyetra_mixer_init (struct snd_cs46xx *chip)
3506{
3507 dev_dbg(chip->card->dev, "initializing Voyetra mixer\n");
3508
3509 /* Enable SPDIF out */
3510 snd_cs46xx_pokeBA0(chip, BA0_EGPIODR, EGPIODR_GPOE0);
3511 snd_cs46xx_pokeBA0(chip, BA0_EGPIOPTR, EGPIODR_GPOE0);
3512}
3513
3514static void hercules_mixer_init (struct snd_cs46xx *chip)
3515{
3516#ifdef CONFIG_SND_CS46XX_NEW_DSP
3517 unsigned int idx;
3518 int err;
3519 struct snd_card *card = chip->card;
3520#endif
3521
3522 /* set EGPIO to default */
3523 hercules_init(chip);
3524
3525 dev_dbg(chip->card->dev, "initializing Hercules mixer\n");
3526
3527#ifdef CONFIG_SND_CS46XX_NEW_DSP
3528 if (chip->in_suspend)
3529 return;
3530
3531 for (idx = 0 ; idx < ARRAY_SIZE(snd_hercules_controls); idx++) {
3532 struct snd_kcontrol *kctl;
3533
3534 kctl = snd_ctl_new1(&snd_hercules_controls[idx], chip);
3535 if ((err = snd_ctl_add(card, kctl)) < 0) {
3536 dev_err(card->dev,
3537 "failed to initialize Hercules mixer (%d)\n",
3538 err);
3539 break;
3540 }
3541 }
3542#endif
3543}
3544
3545
3546#if 0
3547/*
3548 * Untested
3549 */
3550
3551static void amp_voyetra_4294(struct snd_cs46xx *chip, int change)
3552{
3553 chip->amplifier += change;
3554
3555 if (chip->amplifier) {
3556 /* Switch the GPIO pins 7 and 8 to open drain */
3557 snd_cs46xx_codec_write(chip, 0x4C,
3558 snd_cs46xx_codec_read(chip, 0x4C) & 0xFE7F);
3559 snd_cs46xx_codec_write(chip, 0x4E,
3560 snd_cs46xx_codec_read(chip, 0x4E) | 0x0180);
3561 /* Now wake the AMP (this might be backwards) */
3562 snd_cs46xx_codec_write(chip, 0x54,
3563 snd_cs46xx_codec_read(chip, 0x54) & ~0x0180);
3564 } else {
3565 snd_cs46xx_codec_write(chip, 0x54,
3566 snd_cs46xx_codec_read(chip, 0x54) | 0x0180);
3567 }
3568}
3569#endif
3570
3571
3572/*
3573 * Handle the CLKRUN on a thinkpad. We must disable CLKRUN support
3574 * whenever we need to beat on the chip.
3575 *
3576 * The original idea and code for this hack comes from David Kaiser at
3577 * Linuxcare. Perhaps one day Crystal will document their chips well
3578 * enough to make them useful.
3579 */
3580
3581static void clkrun_hack(struct snd_cs46xx *chip, int change)
3582{
3583 u16 control, nval;
3584
3585 if (!chip->acpi_port)
3586 return;
3587
3588 chip->amplifier += change;
3589
3590 /* Read ACPI port */
3591 nval = control = inw(chip->acpi_port + 0x10);
3592
3593 /* Flip CLKRUN off while running */
3594 if (! chip->amplifier)
3595 nval |= 0x2000;
3596 else
3597 nval &= ~0x2000;
3598 if (nval != control)
3599 outw(nval, chip->acpi_port + 0x10);
3600}
3601
3602
3603/*
3604 * detect intel piix4
3605 */
3606static void clkrun_init(struct snd_cs46xx *chip)
3607{
3608 struct pci_dev *pdev;
3609 u8 pp;
3610
3611 chip->acpi_port = 0;
3612
3613 pdev = pci_get_device(PCI_VENDOR_ID_INTEL,
3614 PCI_DEVICE_ID_INTEL_82371AB_3, NULL);
3615 if (pdev == NULL)
3616 return; /* Not a thinkpad thats for sure */
3617
3618 /* Find the control port */
3619 pci_read_config_byte(pdev, 0x41, &pp);
3620 chip->acpi_port = pp << 8;
3621 pci_dev_put(pdev);
3622}
3623
3624
3625/*
3626 * Card subid table
3627 */
3628
3629struct cs_card_type
3630{
3631 u16 vendor;
3632 u16 id;
3633 char *name;
3634 void (*init)(struct snd_cs46xx *);
3635 void (*amp)(struct snd_cs46xx *, int);
3636 void (*active)(struct snd_cs46xx *, int);
3637 void (*mixer_init)(struct snd_cs46xx *);
3638};
3639
3640static struct cs_card_type cards[] = {
3641 {
3642 .vendor = 0x1489,
3643 .id = 0x7001,
3644 .name = "Genius Soundmaker 128 value",
3645 /* nothing special */
3646 },
3647 {
3648 .vendor = 0x5053,
3649 .id = 0x3357,
3650 .name = "Voyetra",
3651 .amp = amp_voyetra,
3652 .mixer_init = voyetra_mixer_init,
3653 },
3654 {
3655 .vendor = 0x1071,
3656 .id = 0x6003,
3657 .name = "Mitac MI6020/21",
3658 .amp = amp_voyetra,
3659 },
3660 /* Hercules Game Theatre XP */
3661 {
3662 .vendor = 0x14af, /* Guillemot Corporation */
3663 .id = 0x0050,
3664 .name = "Hercules Game Theatre XP",
3665 .amp = amp_hercules,
3666 .mixer_init = hercules_mixer_init,
3667 },
3668 {
3669 .vendor = 0x1681,
3670 .id = 0x0050,
3671 .name = "Hercules Game Theatre XP",
3672 .amp = amp_hercules,
3673 .mixer_init = hercules_mixer_init,
3674 },
3675 {
3676 .vendor = 0x1681,
3677 .id = 0x0051,
3678 .name = "Hercules Game Theatre XP",
3679 .amp = amp_hercules,
3680 .mixer_init = hercules_mixer_init,
3681
3682 },
3683 {
3684 .vendor = 0x1681,
3685 .id = 0x0052,
3686 .name = "Hercules Game Theatre XP",
3687 .amp = amp_hercules,
3688 .mixer_init = hercules_mixer_init,
3689 },
3690 {
3691 .vendor = 0x1681,
3692 .id = 0x0053,
3693 .name = "Hercules Game Theatre XP",
3694 .amp = amp_hercules,
3695 .mixer_init = hercules_mixer_init,
3696 },
3697 {
3698 .vendor = 0x1681,
3699 .id = 0x0054,
3700 .name = "Hercules Game Theatre XP",
3701 .amp = amp_hercules,
3702 .mixer_init = hercules_mixer_init,
3703 },
3704 /* Herculess Fortissimo */
3705 {
3706 .vendor = 0x1681,
3707 .id = 0xa010,
3708 .name = "Hercules Gamesurround Fortissimo II",
3709 },
3710 {
3711 .vendor = 0x1681,
3712 .id = 0xa011,
3713 .name = "Hercules Gamesurround Fortissimo III 7.1",
3714 },
3715 /* Teratec */
3716 {
3717 .vendor = 0x153b,
3718 .id = 0x112e,
3719 .name = "Terratec DMX XFire 1024",
3720 },
3721 {
3722 .vendor = 0x153b,
3723 .id = 0x1136,
3724 .name = "Terratec SiXPack 5.1",
3725 },
3726 /* Not sure if the 570 needs the clkrun hack */
3727 {
3728 .vendor = PCI_VENDOR_ID_IBM,
3729 .id = 0x0132,
3730 .name = "Thinkpad 570",
3731 .init = clkrun_init,
3732 .active = clkrun_hack,
3733 },
3734 {
3735 .vendor = PCI_VENDOR_ID_IBM,
3736 .id = 0x0153,
3737 .name = "Thinkpad 600X/A20/T20",
3738 .init = clkrun_init,
3739 .active = clkrun_hack,
3740 },
3741 {
3742 .vendor = PCI_VENDOR_ID_IBM,
3743 .id = 0x1010,
3744 .name = "Thinkpad 600E (unsupported)",
3745 },
3746 {} /* terminator */
3747};
3748
3749
3750/*
3751 * APM support
3752 */
3753#ifdef CONFIG_PM_SLEEP
3754static unsigned int saved_regs[] = {
3755 BA0_ACOSV,
3756 /*BA0_ASER_FADDR,*/
3757 BA0_ASER_MASTER,
3758 BA1_PVOL,
3759 BA1_CVOL,
3760};
3761
3762static int snd_cs46xx_suspend(struct device *dev)
3763{
3764 struct snd_card *card = dev_get_drvdata(dev);
3765 struct snd_cs46xx *chip = card->private_data;
3766 int i, amp_saved;
3767
3768 snd_power_change_state(card, SNDRV_CTL_POWER_D3hot);
3769 chip->in_suspend = 1;
3770 // chip->ac97_powerdown = snd_cs46xx_codec_read(chip, AC97_POWER_CONTROL);
3771 // chip->ac97_general_purpose = snd_cs46xx_codec_read(chip, BA0_AC97_GENERAL_PURPOSE);
3772
3773 snd_ac97_suspend(chip->ac97[CS46XX_PRIMARY_CODEC_INDEX]);
3774 snd_ac97_suspend(chip->ac97[CS46XX_SECONDARY_CODEC_INDEX]);
3775
3776 /* save some registers */
3777 for (i = 0; i < ARRAY_SIZE(saved_regs); i++)
3778 chip->saved_regs[i] = snd_cs46xx_peekBA0(chip, saved_regs[i]);
3779
3780 amp_saved = chip->amplifier;
3781 /* turn off amp */
3782 chip->amplifier_ctrl(chip, -chip->amplifier);
3783 snd_cs46xx_hw_stop(chip);
3784 /* disable CLKRUN */
3785 chip->active_ctrl(chip, -chip->amplifier);
3786 chip->amplifier = amp_saved; /* restore the status */
3787 return 0;
3788}
3789
3790static int snd_cs46xx_resume(struct device *dev)
3791{
3792 struct snd_card *card = dev_get_drvdata(dev);
3793 struct snd_cs46xx *chip = card->private_data;
3794 int amp_saved;
3795#ifdef CONFIG_SND_CS46XX_NEW_DSP
3796 int i;
3797#endif
3798 unsigned int tmp;
3799
3800 amp_saved = chip->amplifier;
3801 chip->amplifier = 0;
3802 chip->active_ctrl(chip, 1); /* force to on */
3803
3804 snd_cs46xx_chip_init(chip);
3805
3806 snd_cs46xx_reset(chip);
3807#ifdef CONFIG_SND_CS46XX_NEW_DSP
3808 cs46xx_dsp_resume(chip);
3809 /* restore some registers */
3810 for (i = 0; i < ARRAY_SIZE(saved_regs); i++)
3811 snd_cs46xx_pokeBA0(chip, saved_regs[i], chip->saved_regs[i]);
3812#else
3813 snd_cs46xx_download_image(chip);
3814#endif
3815
3816#if 0
3817 snd_cs46xx_codec_write(chip, BA0_AC97_GENERAL_PURPOSE,
3818 chip->ac97_general_purpose);
3819 snd_cs46xx_codec_write(chip, AC97_POWER_CONTROL,
3820 chip->ac97_powerdown);
3821 mdelay(10);
3822 snd_cs46xx_codec_write(chip, BA0_AC97_POWERDOWN,
3823 chip->ac97_powerdown);
3824 mdelay(5);
3825#endif
3826
3827 snd_ac97_resume(chip->ac97[CS46XX_PRIMARY_CODEC_INDEX]);
3828 snd_ac97_resume(chip->ac97[CS46XX_SECONDARY_CODEC_INDEX]);
3829
3830 /*
3831 * Stop capture DMA.
3832 */
3833 tmp = snd_cs46xx_peek(chip, BA1_CCTL);
3834 chip->capt.ctl = tmp & 0x0000ffff;
3835 snd_cs46xx_poke(chip, BA1_CCTL, tmp & 0xffff0000);
3836
3837 mdelay(5);
3838
3839 /* reset playback/capture */
3840 snd_cs46xx_set_play_sample_rate(chip, 8000);
3841 snd_cs46xx_set_capture_sample_rate(chip, 8000);
3842 snd_cs46xx_proc_start(chip);
3843
3844 cs46xx_enable_stream_irqs(chip);
3845
3846 if (amp_saved)
3847 chip->amplifier_ctrl(chip, 1); /* turn amp on */
3848 else
3849 chip->active_ctrl(chip, -1); /* disable CLKRUN */
3850 chip->amplifier = amp_saved;
3851 chip->in_suspend = 0;
3852 snd_power_change_state(card, SNDRV_CTL_POWER_D0);
3853 return 0;
3854}
3855
3856SIMPLE_DEV_PM_OPS(snd_cs46xx_pm, snd_cs46xx_suspend, snd_cs46xx_resume);
3857#endif /* CONFIG_PM_SLEEP */
3858
3859
3860/*
3861 */
3862
3863int snd_cs46xx_create(struct snd_card *card,
3864 struct pci_dev *pci,
3865 int external_amp, int thinkpad,
3866 struct snd_cs46xx **rchip)
3867{
3868 struct snd_cs46xx *chip;
3869 int err, idx;
3870 struct snd_cs46xx_region *region;
3871 struct cs_card_type *cp;
3872 u16 ss_card, ss_vendor;
3873 static struct snd_device_ops ops = {
3874 .dev_free = snd_cs46xx_dev_free,
3875 };
3876
3877 *rchip = NULL;
3878
3879 /* enable PCI device */
3880 if ((err = pci_enable_device(pci)) < 0)
3881 return err;
3882
3883 chip = kzalloc(sizeof(*chip), GFP_KERNEL);
3884 if (chip == NULL) {
3885 pci_disable_device(pci);
3886 return -ENOMEM;
3887 }
3888 spin_lock_init(&chip->reg_lock);
3889#ifdef CONFIG_SND_CS46XX_NEW_DSP
3890 mutex_init(&chip->spos_mutex);
3891#endif
3892 chip->card = card;
3893 chip->pci = pci;
3894 chip->irq = -1;
3895 chip->ba0_addr = pci_resource_start(pci, 0);
3896 chip->ba1_addr = pci_resource_start(pci, 1);
3897 if (chip->ba0_addr == 0 || chip->ba0_addr == (unsigned long)~0 ||
3898 chip->ba1_addr == 0 || chip->ba1_addr == (unsigned long)~0) {
3899 dev_err(chip->card->dev,
3900 "wrong address(es) - ba0 = 0x%lx, ba1 = 0x%lx\n",
3901 chip->ba0_addr, chip->ba1_addr);
3902 snd_cs46xx_free(chip);
3903 return -ENOMEM;
3904 }
3905
3906 region = &chip->region.name.ba0;
3907 strcpy(region->name, "CS46xx_BA0");
3908 region->base = chip->ba0_addr;
3909 region->size = CS46XX_BA0_SIZE;
3910
3911 region = &chip->region.name.data0;
3912 strcpy(region->name, "CS46xx_BA1_data0");
3913 region->base = chip->ba1_addr + BA1_SP_DMEM0;
3914 region->size = CS46XX_BA1_DATA0_SIZE;
3915
3916 region = &chip->region.name.data1;
3917 strcpy(region->name, "CS46xx_BA1_data1");
3918 region->base = chip->ba1_addr + BA1_SP_DMEM1;
3919 region->size = CS46XX_BA1_DATA1_SIZE;
3920
3921 region = &chip->region.name.pmem;
3922 strcpy(region->name, "CS46xx_BA1_pmem");
3923 region->base = chip->ba1_addr + BA1_SP_PMEM;
3924 region->size = CS46XX_BA1_PRG_SIZE;
3925
3926 region = &chip->region.name.reg;
3927 strcpy(region->name, "CS46xx_BA1_reg");
3928 region->base = chip->ba1_addr + BA1_SP_REG;
3929 region->size = CS46XX_BA1_REG_SIZE;
3930
3931 /* set up amp and clkrun hack */
3932 pci_read_config_word(pci, PCI_SUBSYSTEM_VENDOR_ID, &ss_vendor);
3933 pci_read_config_word(pci, PCI_SUBSYSTEM_ID, &ss_card);
3934
3935 for (cp = &cards[0]; cp->name; cp++) {
3936 if (cp->vendor == ss_vendor && cp->id == ss_card) {
3937 dev_dbg(chip->card->dev, "hack for %s enabled\n",
3938 cp->name);
3939
3940 chip->amplifier_ctrl = cp->amp;
3941 chip->active_ctrl = cp->active;
3942 chip->mixer_init = cp->mixer_init;
3943
3944 if (cp->init)
3945 cp->init(chip);
3946 break;
3947 }
3948 }
3949
3950 if (external_amp) {
3951 dev_info(chip->card->dev,
3952 "Crystal EAPD support forced on.\n");
3953 chip->amplifier_ctrl = amp_voyetra;
3954 }
3955
3956 if (thinkpad) {
3957 dev_info(chip->card->dev,
3958 "Activating CLKRUN hack for Thinkpad.\n");
3959 chip->active_ctrl = clkrun_hack;
3960 clkrun_init(chip);
3961 }
3962
3963 if (chip->amplifier_ctrl == NULL)
3964 chip->amplifier_ctrl = amp_none;
3965 if (chip->active_ctrl == NULL)
3966 chip->active_ctrl = amp_none;
3967
3968 chip->active_ctrl(chip, 1); /* enable CLKRUN */
3969
3970 pci_set_master(pci);
3971
3972 for (idx = 0; idx < 5; idx++) {
3973 region = &chip->region.idx[idx];
3974 if ((region->resource = request_mem_region(region->base, region->size,
3975 region->name)) == NULL) {
3976 dev_err(chip->card->dev,
3977 "unable to request memory region 0x%lx-0x%lx\n",
3978 region->base, region->base + region->size - 1);
3979 snd_cs46xx_free(chip);
3980 return -EBUSY;
3981 }
3982 region->remap_addr = ioremap_nocache(region->base, region->size);
3983 if (region->remap_addr == NULL) {
3984 dev_err(chip->card->dev,
3985 "%s ioremap problem\n", region->name);
3986 snd_cs46xx_free(chip);
3987 return -ENOMEM;
3988 }
3989 }
3990
3991 if (request_irq(pci->irq, snd_cs46xx_interrupt, IRQF_SHARED,
3992 KBUILD_MODNAME, chip)) {
3993 dev_err(chip->card->dev, "unable to grab IRQ %d\n", pci->irq);
3994 snd_cs46xx_free(chip);
3995 return -EBUSY;
3996 }
3997 chip->irq = pci->irq;
3998
3999#ifdef CONFIG_SND_CS46XX_NEW_DSP
4000 chip->dsp_spos_instance = cs46xx_dsp_spos_create(chip);
4001 if (chip->dsp_spos_instance == NULL) {
4002 snd_cs46xx_free(chip);
4003 return -ENOMEM;
4004 }
4005#endif
4006
4007 err = snd_cs46xx_chip_init(chip);
4008 if (err < 0) {
4009 snd_cs46xx_free(chip);
4010 return err;
4011 }
4012
4013 if ((err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops)) < 0) {
4014 snd_cs46xx_free(chip);
4015 return err;
4016 }
4017
4018 snd_cs46xx_proc_init(card, chip);
4019
4020#ifdef CONFIG_PM_SLEEP
4021 chip->saved_regs = kmalloc_array(ARRAY_SIZE(saved_regs),
4022 sizeof(*chip->saved_regs),
4023 GFP_KERNEL);
4024 if (!chip->saved_regs) {
4025 snd_cs46xx_free(chip);
4026 return -ENOMEM;
4027 }
4028#endif
4029
4030 chip->active_ctrl(chip, -1); /* disable CLKRUN */
4031
4032 *rchip = chip;
4033 return 0;
4034}