2 * Copyright (c) by Jaroslav Kysela <perex@perex.cz>
3 * Abramo Bagnara <abramo@alsa-project.org>
5 * Routines for control of Cirrus Logic CS461x chips
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.
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
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.
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>
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.
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.
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
48 #include <linux/delay.h>
49 #include <linux/pci.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>
59 #include <sound/core.h>
60 #include <sound/control.h>
61 #include <sound/info.h>
62 #include <sound/pcm.h>
63 #include <sound/pcm_params.h>
64 #include <sound/cs46xx.h>
68 #include "cs46xx_lib.h"
71 static void amp_voyetra(struct snd_cs46xx
*chip
, int change
);
73 #ifdef CONFIG_SND_CS46XX_NEW_DSP
74 static struct snd_pcm_ops snd_cs46xx_playback_rear_ops
;
75 static struct snd_pcm_ops snd_cs46xx_playback_indirect_rear_ops
;
76 static struct snd_pcm_ops snd_cs46xx_playback_clfe_ops
;
77 static struct snd_pcm_ops snd_cs46xx_playback_indirect_clfe_ops
;
78 static struct snd_pcm_ops snd_cs46xx_playback_iec958_ops
;
79 static struct snd_pcm_ops snd_cs46xx_playback_indirect_iec958_ops
;
82 static struct snd_pcm_ops snd_cs46xx_playback_ops
;
83 static struct snd_pcm_ops snd_cs46xx_playback_indirect_ops
;
84 static struct snd_pcm_ops snd_cs46xx_capture_ops
;
85 static struct snd_pcm_ops snd_cs46xx_capture_indirect_ops
;
87 static unsigned short snd_cs46xx_codec_read(struct snd_cs46xx
*chip
,
92 unsigned short result
,tmp
;
95 if (snd_BUG_ON(codec_index
!= CS46XX_PRIMARY_CODEC_INDEX
&&
96 codec_index
!= CS46XX_SECONDARY_CODEC_INDEX
))
99 chip
->active_ctrl(chip
, 1);
101 if (codec_index
== CS46XX_SECONDARY_CODEC_INDEX
)
102 offset
= CS46XX_SECONDARY_CODEC_OFFSET
;
105 * 1. Write ACCAD = Command Address Register = 46Ch for AC97 register address
106 * 2. Write ACCDA = Command Data Register = 470h for data to write to AC97
107 * 3. Write ACCTL = Control Register = 460h for initiating the write7---55
108 * 4. Read ACCTL = 460h, DCV should be reset by now and 460h = 17h
109 * 5. if DCV not cleared, break and return error
110 * 6. Read ACSTS = Status Register = 464h, check VSTS bit
113 snd_cs46xx_peekBA0(chip
, BA0_ACSDA
+ offset
);
115 tmp
= snd_cs46xx_peekBA0(chip
, BA0_ACCTL
);
116 if ((tmp
& ACCTL_VFRM
) == 0) {
117 snd_printk(KERN_WARNING
"cs46xx: ACCTL_VFRM not set 0x%x\n",tmp
);
118 snd_cs46xx_pokeBA0(chip
, BA0_ACCTL
, (tmp
& (~ACCTL_ESYN
)) | ACCTL_VFRM
);
120 tmp
= snd_cs46xx_peekBA0(chip
, BA0_ACCTL
+ offset
);
121 snd_cs46xx_pokeBA0(chip
, BA0_ACCTL
, tmp
| ACCTL_ESYN
| ACCTL_VFRM
);
126 * Setup the AC97 control registers on the CS461x to send the
127 * appropriate command to the AC97 to perform the read.
128 * ACCAD = Command Address Register = 46Ch
129 * ACCDA = Command Data Register = 470h
130 * ACCTL = Control Register = 460h
131 * set DCV - will clear when process completed
132 * set CRW - Read command
133 * set VFRM - valid frame enabled
134 * set ESYN - ASYNC generation enabled
135 * set RSTN - ARST# inactive, AC97 codec not reset
138 snd_cs46xx_pokeBA0(chip
, BA0_ACCAD
, reg
);
139 snd_cs46xx_pokeBA0(chip
, BA0_ACCDA
, 0);
140 if (codec_index
== CS46XX_PRIMARY_CODEC_INDEX
) {
141 snd_cs46xx_pokeBA0(chip
, BA0_ACCTL
,/* clear ACCTL_DCV */ ACCTL_CRW
|
142 ACCTL_VFRM
| ACCTL_ESYN
|
144 snd_cs46xx_pokeBA0(chip
, BA0_ACCTL
, ACCTL_DCV
| ACCTL_CRW
|
145 ACCTL_VFRM
| ACCTL_ESYN
|
148 snd_cs46xx_pokeBA0(chip
, BA0_ACCTL
, ACCTL_DCV
| ACCTL_TC
|
149 ACCTL_CRW
| ACCTL_VFRM
| ACCTL_ESYN
|
154 * Wait for the read to occur.
156 for (count
= 0; count
< 1000; count
++) {
158 * First, we want to wait for a short time.
162 * Now, check to see if the read has completed.
163 * ACCTL = 460h, DCV should be reset by now and 460h = 17h
165 if (!(snd_cs46xx_peekBA0(chip
, BA0_ACCTL
) & ACCTL_DCV
))
169 snd_printk(KERN_ERR
"AC'97 read problem (ACCTL_DCV), reg = 0x%x\n", reg
);
175 * Wait for the valid status bit to go active.
177 for (count
= 0; count
< 100; count
++) {
179 * Read the AC97 status register.
180 * ACSTS = Status Register = 464h
181 * VSTS - Valid Status
183 if (snd_cs46xx_peekBA0(chip
, BA0_ACSTS
+ offset
) & ACSTS_VSTS
)
188 snd_printk(KERN_ERR
"AC'97 read problem (ACSTS_VSTS), codec_index %d, reg = 0x%x\n", codec_index
, reg
);
194 * Read the data returned from the AC97 register.
195 * ACSDA = Status Data Register = 474h
198 printk(KERN_DEBUG
"e) reg = 0x%x, val = 0x%x, BA0_ACCAD = 0x%x\n", reg
,
199 snd_cs46xx_peekBA0(chip
, BA0_ACSDA
),
200 snd_cs46xx_peekBA0(chip
, BA0_ACCAD
));
203 //snd_cs46xx_peekBA0(chip, BA0_ACCAD);
204 result
= snd_cs46xx_peekBA0(chip
, BA0_ACSDA
+ offset
);
206 chip
->active_ctrl(chip
, -1);
210 static unsigned short snd_cs46xx_ac97_read(struct snd_ac97
* ac97
,
213 struct snd_cs46xx
*chip
= ac97
->private_data
;
215 int codec_index
= ac97
->num
;
217 if (snd_BUG_ON(codec_index
!= CS46XX_PRIMARY_CODEC_INDEX
&&
218 codec_index
!= CS46XX_SECONDARY_CODEC_INDEX
))
221 val
= snd_cs46xx_codec_read(chip
, reg
, codec_index
);
227 static void snd_cs46xx_codec_write(struct snd_cs46xx
*chip
,
234 if (snd_BUG_ON(codec_index
!= CS46XX_PRIMARY_CODEC_INDEX
&&
235 codec_index
!= CS46XX_SECONDARY_CODEC_INDEX
))
238 chip
->active_ctrl(chip
, 1);
241 * 1. Write ACCAD = Command Address Register = 46Ch for AC97 register address
242 * 2. Write ACCDA = Command Data Register = 470h for data to write to AC97
243 * 3. Write ACCTL = Control Register = 460h for initiating the write
244 * 4. Read ACCTL = 460h, DCV should be reset by now and 460h = 07h
245 * 5. if DCV not cleared, break and return error
249 * Setup the AC97 control registers on the CS461x to send the
250 * appropriate command to the AC97 to perform the read.
251 * ACCAD = Command Address Register = 46Ch
252 * ACCDA = Command Data Register = 470h
253 * ACCTL = Control Register = 460h
254 * set DCV - will clear when process completed
255 * reset CRW - Write command
256 * set VFRM - valid frame enabled
257 * set ESYN - ASYNC generation enabled
258 * set RSTN - ARST# inactive, AC97 codec not reset
260 snd_cs46xx_pokeBA0(chip
, BA0_ACCAD
, reg
);
261 snd_cs46xx_pokeBA0(chip
, BA0_ACCDA
, val
);
262 snd_cs46xx_peekBA0(chip
, BA0_ACCTL
);
264 if (codec_index
== CS46XX_PRIMARY_CODEC_INDEX
) {
265 snd_cs46xx_pokeBA0(chip
, BA0_ACCTL
, /* clear ACCTL_DCV */ ACCTL_VFRM
|
266 ACCTL_ESYN
| ACCTL_RSTN
);
267 snd_cs46xx_pokeBA0(chip
, BA0_ACCTL
, ACCTL_DCV
| ACCTL_VFRM
|
268 ACCTL_ESYN
| ACCTL_RSTN
);
270 snd_cs46xx_pokeBA0(chip
, BA0_ACCTL
, ACCTL_DCV
| ACCTL_TC
|
271 ACCTL_VFRM
| ACCTL_ESYN
| ACCTL_RSTN
);
274 for (count
= 0; count
< 4000; count
++) {
276 * First, we want to wait for a short time.
280 * Now, check to see if the write has completed.
281 * ACCTL = 460h, DCV should be reset by now and 460h = 07h
283 if (!(snd_cs46xx_peekBA0(chip
, BA0_ACCTL
) & ACCTL_DCV
)) {
287 snd_printk(KERN_ERR
"AC'97 write problem, codec_index = %d, reg = 0x%x, val = 0x%x\n", codec_index
, reg
, val
);
289 chip
->active_ctrl(chip
, -1);
292 static void snd_cs46xx_ac97_write(struct snd_ac97
*ac97
,
296 struct snd_cs46xx
*chip
= ac97
->private_data
;
297 int codec_index
= ac97
->num
;
299 if (snd_BUG_ON(codec_index
!= CS46XX_PRIMARY_CODEC_INDEX
&&
300 codec_index
!= CS46XX_SECONDARY_CODEC_INDEX
))
303 snd_cs46xx_codec_write(chip
, reg
, val
, codec_index
);
308 * Chip initialization
311 int snd_cs46xx_download(struct snd_cs46xx
*chip
,
313 unsigned long offset
,
317 unsigned int bank
= offset
>> 16;
318 offset
= offset
& 0xffff;
320 if (snd_BUG_ON((offset
& 3) || (len
& 3)))
322 dst
= chip
->region
.idx
[bank
+1].remap_addr
+ offset
;
325 /* writel already converts 32-bit value to right endianess */
333 #ifdef CONFIG_SND_CS46XX_NEW_DSP
335 #include "imgs/cwc4630.h"
336 #include "imgs/cwcasync.h"
337 #include "imgs/cwcsnoop.h"
338 #include "imgs/cwcbinhack.h"
339 #include "imgs/cwcdma.h"
341 int snd_cs46xx_clear_BA1(struct snd_cs46xx
*chip
,
342 unsigned long offset
,
346 unsigned int bank
= offset
>> 16;
347 offset
= offset
& 0xffff;
349 if (snd_BUG_ON((offset
& 3) || (len
& 3)))
351 dst
= chip
->region
.idx
[bank
+1].remap_addr
+ offset
;
354 /* writel already converts 32-bit value to right endianess */
362 #else /* old DSP image */
364 #include "cs46xx_image.h"
366 int snd_cs46xx_download_image(struct snd_cs46xx
*chip
)
369 unsigned long offset
= 0;
371 for (idx
= 0; idx
< BA1_MEMORY_COUNT
; idx
++) {
372 if ((err
= snd_cs46xx_download(chip
,
373 &BA1Struct
.map
[offset
],
374 BA1Struct
.memory
[idx
].offset
,
375 BA1Struct
.memory
[idx
].size
)) < 0)
377 offset
+= BA1Struct
.memory
[idx
].size
>> 2;
381 #endif /* CONFIG_SND_CS46XX_NEW_DSP */
387 static void snd_cs46xx_reset(struct snd_cs46xx
*chip
)
392 * Write the reset bit of the SP control register.
394 snd_cs46xx_poke(chip
, BA1_SPCR
, SPCR_RSTSP
);
397 * Write the control register.
399 snd_cs46xx_poke(chip
, BA1_SPCR
, SPCR_DRQEN
);
402 * Clear the trap registers.
404 for (idx
= 0; idx
< 8; idx
++) {
405 snd_cs46xx_poke(chip
, BA1_DREG
, DREG_REGID_TRAP_SELECT
+ idx
);
406 snd_cs46xx_poke(chip
, BA1_TWPR
, 0xFFFF);
408 snd_cs46xx_poke(chip
, BA1_DREG
, 0);
411 * Set the frame timer to reflect the number of cycles per frame.
413 snd_cs46xx_poke(chip
, BA1_FRMT
, 0xadf);
416 static int cs46xx_wait_for_fifo(struct snd_cs46xx
* chip
,int retry_timeout
)
420 * Make sure the previous FIFO write operation has completed.
422 for(i
= 0; i
< 50; i
++){
423 status
= snd_cs46xx_peekBA0(chip
, BA0_SERBST
);
425 if( !(status
& SERBST_WBSY
) )
428 mdelay(retry_timeout
);
431 if(status
& SERBST_WBSY
) {
432 snd_printk(KERN_ERR
"cs46xx: failure waiting for "
433 "FIFO command to complete\n");
440 static void snd_cs46xx_clear_serial_FIFOs(struct snd_cs46xx
*chip
)
442 int idx
, powerdown
= 0;
446 * See if the devices are powered down. If so, we must power them up first
447 * or they will not respond.
449 tmp
= snd_cs46xx_peekBA0(chip
, BA0_CLKCR1
);
450 if (!(tmp
& CLKCR1_SWCE
)) {
451 snd_cs46xx_pokeBA0(chip
, BA0_CLKCR1
, tmp
| CLKCR1_SWCE
);
456 * We want to clear out the serial port FIFOs so we don't end up playing
457 * whatever random garbage happens to be in them. We fill the sample FIFOS
458 * with zero (silence).
460 snd_cs46xx_pokeBA0(chip
, BA0_SERBWP
, 0);
463 * Fill all 256 sample FIFO locations.
465 for (idx
= 0; idx
< 0xFF; idx
++) {
467 * Make sure the previous FIFO write operation has completed.
469 if (cs46xx_wait_for_fifo(chip
,1)) {
470 snd_printdd ("failed waiting for FIFO at addr (%02X)\n",idx
);
473 snd_cs46xx_pokeBA0(chip
, BA0_CLKCR1
, tmp
);
478 * Write the serial port FIFO index.
480 snd_cs46xx_pokeBA0(chip
, BA0_SERBAD
, idx
);
482 * Tell the serial port to load the new value into the FIFO location.
484 snd_cs46xx_pokeBA0(chip
, BA0_SERBCM
, SERBCM_WRC
);
487 * Now, if we powered up the devices, then power them back down again.
488 * This is kinda ugly, but should never happen.
491 snd_cs46xx_pokeBA0(chip
, BA0_CLKCR1
, tmp
);
494 static void snd_cs46xx_proc_start(struct snd_cs46xx
*chip
)
499 * Set the frame timer to reflect the number of cycles per frame.
501 snd_cs46xx_poke(chip
, BA1_FRMT
, 0xadf);
503 * Turn on the run, run at frame, and DMA enable bits in the local copy of
504 * the SP control register.
506 snd_cs46xx_poke(chip
, BA1_SPCR
, SPCR_RUN
| SPCR_RUNFR
| SPCR_DRQEN
);
508 * Wait until the run at frame bit resets itself in the SP control
511 for (cnt
= 0; cnt
< 25; cnt
++) {
513 if (!(snd_cs46xx_peek(chip
, BA1_SPCR
) & SPCR_RUNFR
))
517 if (snd_cs46xx_peek(chip
, BA1_SPCR
) & SPCR_RUNFR
)
518 snd_printk(KERN_ERR
"SPCR_RUNFR never reset\n");
521 static void snd_cs46xx_proc_stop(struct snd_cs46xx
*chip
)
524 * Turn off the run, run at frame, and DMA enable bits in the local copy of
525 * the SP control register.
527 snd_cs46xx_poke(chip
, BA1_SPCR
, 0);
531 * Sample rate routines
534 #define GOF_PER_SEC 200
536 static void snd_cs46xx_set_play_sample_rate(struct snd_cs46xx
*chip
, unsigned int rate
)
539 unsigned int tmp1
, tmp2
;
540 unsigned int phiIncr
;
541 unsigned int correctionPerGOF
, correctionPerSec
;
544 * Compute the values used to drive the actual sample rate conversion.
545 * The following formulas are being computed, using inline assembly
546 * since we need to use 64 bit arithmetic to compute the values:
548 * phiIncr = floor((Fs,in * 2^26) / Fs,out)
549 * correctionPerGOF = floor((Fs,in * 2^26 - Fs,out * phiIncr) /
551 * ulCorrectionPerSec = Fs,in * 2^26 - Fs,out * phiIncr -M
552 * GOF_PER_SEC * correctionPerGOF
556 * phiIncr:other = dividend:remainder((Fs,in * 2^26) / Fs,out)
557 * correctionPerGOF:correctionPerSec =
558 * dividend:remainder(ulOther / GOF_PER_SEC)
561 phiIncr
= tmp1
/ 48000;
562 tmp1
-= phiIncr
* 48000;
567 tmp1
-= tmp2
* 48000;
568 correctionPerGOF
= tmp1
/ GOF_PER_SEC
;
569 tmp1
-= correctionPerGOF
* GOF_PER_SEC
;
570 correctionPerSec
= tmp1
;
573 * Fill in the SampleRateConverter control block.
575 spin_lock_irqsave(&chip
->reg_lock
, flags
);
576 snd_cs46xx_poke(chip
, BA1_PSRC
,
577 ((correctionPerSec
<< 16) & 0xFFFF0000) | (correctionPerGOF
& 0xFFFF));
578 snd_cs46xx_poke(chip
, BA1_PPI
, phiIncr
);
579 spin_unlock_irqrestore(&chip
->reg_lock
, flags
);
582 static void snd_cs46xx_set_capture_sample_rate(struct snd_cs46xx
*chip
, unsigned int rate
)
585 unsigned int phiIncr
, coeffIncr
, tmp1
, tmp2
;
586 unsigned int correctionPerGOF
, correctionPerSec
, initialDelay
;
587 unsigned int frameGroupLength
, cnt
;
590 * We can only decimate by up to a factor of 1/9th the hardware rate.
591 * Correct the value if an attempt is made to stray outside that limit.
593 if ((rate
* 9) < 48000)
597 * We can not capture at at rate greater than the Input Rate (48000).
598 * Return an error if an attempt is made to stray outside that limit.
604 * Compute the values used to drive the actual sample rate conversion.
605 * The following formulas are being computed, using inline assembly
606 * since we need to use 64 bit arithmetic to compute the values:
608 * coeffIncr = -floor((Fs,out * 2^23) / Fs,in)
609 * phiIncr = floor((Fs,in * 2^26) / Fs,out)
610 * correctionPerGOF = floor((Fs,in * 2^26 - Fs,out * phiIncr) /
612 * correctionPerSec = Fs,in * 2^26 - Fs,out * phiIncr -
613 * GOF_PER_SEC * correctionPerGOF
614 * initialDelay = ceil((24 * Fs,in) / Fs,out)
618 * coeffIncr = neg(dividend((Fs,out * 2^23) / Fs,in))
619 * phiIncr:ulOther = dividend:remainder((Fs,in * 2^26) / Fs,out)
620 * correctionPerGOF:correctionPerSec =
621 * dividend:remainder(ulOther / GOF_PER_SEC)
622 * initialDelay = dividend(((24 * Fs,in) + Fs,out - 1) / Fs,out)
626 coeffIncr
= tmp1
/ 48000;
627 tmp1
-= coeffIncr
* 48000;
630 coeffIncr
+= tmp1
/ 48000;
631 coeffIncr
^= 0xFFFFFFFF;
634 phiIncr
= tmp1
/ rate
;
635 tmp1
-= phiIncr
* rate
;
641 correctionPerGOF
= tmp1
/ GOF_PER_SEC
;
642 tmp1
-= correctionPerGOF
* GOF_PER_SEC
;
643 correctionPerSec
= tmp1
;
644 initialDelay
= ((48000 * 24) + rate
- 1) / rate
;
647 * Fill in the VariDecimate control block.
649 spin_lock_irqsave(&chip
->reg_lock
, flags
);
650 snd_cs46xx_poke(chip
, BA1_CSRC
,
651 ((correctionPerSec
<< 16) & 0xFFFF0000) | (correctionPerGOF
& 0xFFFF));
652 snd_cs46xx_poke(chip
, BA1_CCI
, coeffIncr
);
653 snd_cs46xx_poke(chip
, BA1_CD
,
654 (((BA1_VARIDEC_BUF_1
+ (initialDelay
<< 2)) << 16) & 0xFFFF0000) | 0x80);
655 snd_cs46xx_poke(chip
, BA1_CPI
, phiIncr
);
656 spin_unlock_irqrestore(&chip
->reg_lock
, flags
);
659 * Figure out the frame group length for the write back task. Basically,
660 * this is just the factors of 24000 (2^6*3*5^3) that are not present in
661 * the output sample rate.
663 frameGroupLength
= 1;
664 for (cnt
= 2; cnt
<= 64; cnt
*= 2) {
665 if (((rate
/ cnt
) * cnt
) != rate
)
666 frameGroupLength
*= 2;
668 if (((rate
/ 3) * 3) != rate
) {
669 frameGroupLength
*= 3;
671 for (cnt
= 5; cnt
<= 125; cnt
*= 5) {
672 if (((rate
/ cnt
) * cnt
) != rate
)
673 frameGroupLength
*= 5;
677 * Fill in the WriteBack control block.
679 spin_lock_irqsave(&chip
->reg_lock
, flags
);
680 snd_cs46xx_poke(chip
, BA1_CFG1
, frameGroupLength
);
681 snd_cs46xx_poke(chip
, BA1_CFG2
, (0x00800000 | frameGroupLength
));
682 snd_cs46xx_poke(chip
, BA1_CCST
, 0x0000FFFF);
683 snd_cs46xx_poke(chip
, BA1_CSPB
, ((65536 * rate
) / 24000));
684 snd_cs46xx_poke(chip
, (BA1_CSPB
+ 4), 0x0000FFFF);
685 spin_unlock_irqrestore(&chip
->reg_lock
, flags
);
692 static void snd_cs46xx_pb_trans_copy(struct snd_pcm_substream
*substream
,
693 struct snd_pcm_indirect
*rec
, size_t bytes
)
695 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
696 struct snd_cs46xx_pcm
* cpcm
= runtime
->private_data
;
697 memcpy(cpcm
->hw_buf
.area
+ rec
->hw_data
, runtime
->dma_area
+ rec
->sw_data
, bytes
);
700 static int snd_cs46xx_playback_transfer(struct snd_pcm_substream
*substream
)
702 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
703 struct snd_cs46xx_pcm
* cpcm
= runtime
->private_data
;
704 snd_pcm_indirect_playback_transfer(substream
, &cpcm
->pcm_rec
, snd_cs46xx_pb_trans_copy
);
708 static void snd_cs46xx_cp_trans_copy(struct snd_pcm_substream
*substream
,
709 struct snd_pcm_indirect
*rec
, size_t bytes
)
711 struct snd_cs46xx
*chip
= snd_pcm_substream_chip(substream
);
712 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
713 memcpy(runtime
->dma_area
+ rec
->sw_data
,
714 chip
->capt
.hw_buf
.area
+ rec
->hw_data
, bytes
);
717 static int snd_cs46xx_capture_transfer(struct snd_pcm_substream
*substream
)
719 struct snd_cs46xx
*chip
= snd_pcm_substream_chip(substream
);
720 snd_pcm_indirect_capture_transfer(substream
, &chip
->capt
.pcm_rec
, snd_cs46xx_cp_trans_copy
);
724 static snd_pcm_uframes_t
snd_cs46xx_playback_direct_pointer(struct snd_pcm_substream
*substream
)
726 struct snd_cs46xx
*chip
= snd_pcm_substream_chip(substream
);
728 struct snd_cs46xx_pcm
*cpcm
= substream
->runtime
->private_data
;
730 if (snd_BUG_ON(!cpcm
->pcm_channel
))
733 #ifdef CONFIG_SND_CS46XX_NEW_DSP
734 ptr
= snd_cs46xx_peek(chip
, (cpcm
->pcm_channel
->pcm_reader_scb
->address
+ 2) << 2);
736 ptr
= snd_cs46xx_peek(chip
, BA1_PBA
);
738 ptr
-= cpcm
->hw_buf
.addr
;
739 return ptr
>> cpcm
->shift
;
742 static snd_pcm_uframes_t
snd_cs46xx_playback_indirect_pointer(struct snd_pcm_substream
*substream
)
744 struct snd_cs46xx
*chip
= snd_pcm_substream_chip(substream
);
746 struct snd_cs46xx_pcm
*cpcm
= substream
->runtime
->private_data
;
748 #ifdef CONFIG_SND_CS46XX_NEW_DSP
749 if (snd_BUG_ON(!cpcm
->pcm_channel
))
751 ptr
= snd_cs46xx_peek(chip
, (cpcm
->pcm_channel
->pcm_reader_scb
->address
+ 2) << 2);
753 ptr
= snd_cs46xx_peek(chip
, BA1_PBA
);
755 ptr
-= cpcm
->hw_buf
.addr
;
756 return snd_pcm_indirect_playback_pointer(substream
, &cpcm
->pcm_rec
, ptr
);
759 static snd_pcm_uframes_t
snd_cs46xx_capture_direct_pointer(struct snd_pcm_substream
*substream
)
761 struct snd_cs46xx
*chip
= snd_pcm_substream_chip(substream
);
762 size_t ptr
= snd_cs46xx_peek(chip
, BA1_CBA
) - chip
->capt
.hw_buf
.addr
;
763 return ptr
>> chip
->capt
.shift
;
766 static snd_pcm_uframes_t
snd_cs46xx_capture_indirect_pointer(struct snd_pcm_substream
*substream
)
768 struct snd_cs46xx
*chip
= snd_pcm_substream_chip(substream
);
769 size_t ptr
= snd_cs46xx_peek(chip
, BA1_CBA
) - chip
->capt
.hw_buf
.addr
;
770 return snd_pcm_indirect_capture_pointer(substream
, &chip
->capt
.pcm_rec
, ptr
);
773 static int snd_cs46xx_playback_trigger(struct snd_pcm_substream
*substream
,
776 struct snd_cs46xx
*chip
= snd_pcm_substream_chip(substream
);
777 /*struct snd_pcm_runtime *runtime = substream->runtime;*/
780 #ifdef CONFIG_SND_CS46XX_NEW_DSP
781 struct snd_cs46xx_pcm
*cpcm
= substream
->runtime
->private_data
;
782 if (! cpcm
->pcm_channel
) {
787 case SNDRV_PCM_TRIGGER_START
:
788 case SNDRV_PCM_TRIGGER_RESUME
:
789 #ifdef CONFIG_SND_CS46XX_NEW_DSP
790 /* magic value to unmute PCM stream playback volume */
791 snd_cs46xx_poke(chip
, (cpcm
->pcm_channel
->pcm_reader_scb
->address
+
792 SCBVolumeCtrl
) << 2, 0x80008000);
794 if (cpcm
->pcm_channel
->unlinked
)
795 cs46xx_dsp_pcm_link(chip
,cpcm
->pcm_channel
);
797 if (substream
->runtime
->periods
!= CS46XX_FRAGS
)
798 snd_cs46xx_playback_transfer(substream
);
800 spin_lock(&chip
->reg_lock
);
801 if (substream
->runtime
->periods
!= CS46XX_FRAGS
)
802 snd_cs46xx_playback_transfer(substream
);
804 tmp
= snd_cs46xx_peek(chip
, BA1_PCTL
);
806 snd_cs46xx_poke(chip
, BA1_PCTL
, chip
->play_ctl
| tmp
);
808 spin_unlock(&chip
->reg_lock
);
811 case SNDRV_PCM_TRIGGER_STOP
:
812 case SNDRV_PCM_TRIGGER_SUSPEND
:
813 #ifdef CONFIG_SND_CS46XX_NEW_DSP
814 /* magic mute channel */
815 snd_cs46xx_poke(chip
, (cpcm
->pcm_channel
->pcm_reader_scb
->address
+
816 SCBVolumeCtrl
) << 2, 0xffffffff);
818 if (!cpcm
->pcm_channel
->unlinked
)
819 cs46xx_dsp_pcm_unlink(chip
,cpcm
->pcm_channel
);
821 spin_lock(&chip
->reg_lock
);
823 tmp
= snd_cs46xx_peek(chip
, BA1_PCTL
);
825 snd_cs46xx_poke(chip
, BA1_PCTL
, tmp
);
827 spin_unlock(&chip
->reg_lock
);
838 static int snd_cs46xx_capture_trigger(struct snd_pcm_substream
*substream
,
841 struct snd_cs46xx
*chip
= snd_pcm_substream_chip(substream
);
845 spin_lock(&chip
->reg_lock
);
847 case SNDRV_PCM_TRIGGER_START
:
848 case SNDRV_PCM_TRIGGER_RESUME
:
849 tmp
= snd_cs46xx_peek(chip
, BA1_CCTL
);
851 snd_cs46xx_poke(chip
, BA1_CCTL
, chip
->capt
.ctl
| tmp
);
853 case SNDRV_PCM_TRIGGER_STOP
:
854 case SNDRV_PCM_TRIGGER_SUSPEND
:
855 tmp
= snd_cs46xx_peek(chip
, BA1_CCTL
);
857 snd_cs46xx_poke(chip
, BA1_CCTL
, tmp
);
863 spin_unlock(&chip
->reg_lock
);
868 #ifdef CONFIG_SND_CS46XX_NEW_DSP
869 static int _cs46xx_adjust_sample_rate (struct snd_cs46xx
*chip
, struct snd_cs46xx_pcm
*cpcm
,
873 /* If PCMReaderSCB and SrcTaskSCB not created yet ... */
874 if ( cpcm
->pcm_channel
== NULL
) {
875 cpcm
->pcm_channel
= cs46xx_dsp_create_pcm_channel (chip
, sample_rate
,
876 cpcm
, cpcm
->hw_buf
.addr
,cpcm
->pcm_channel_id
);
877 if (cpcm
->pcm_channel
== NULL
) {
878 snd_printk(KERN_ERR
"cs46xx: failed to create virtual PCM channel\n");
881 cpcm
->pcm_channel
->sample_rate
= sample_rate
;
883 /* if sample rate is changed */
884 if ((int)cpcm
->pcm_channel
->sample_rate
!= sample_rate
) {
885 int unlinked
= cpcm
->pcm_channel
->unlinked
;
886 cs46xx_dsp_destroy_pcm_channel (chip
,cpcm
->pcm_channel
);
888 if ( (cpcm
->pcm_channel
= cs46xx_dsp_create_pcm_channel (chip
, sample_rate
, cpcm
,
890 cpcm
->pcm_channel_id
)) == NULL
) {
891 snd_printk(KERN_ERR
"cs46xx: failed to re-create virtual PCM channel\n");
895 if (!unlinked
) cs46xx_dsp_pcm_link (chip
,cpcm
->pcm_channel
);
896 cpcm
->pcm_channel
->sample_rate
= sample_rate
;
904 static int snd_cs46xx_playback_hw_params(struct snd_pcm_substream
*substream
,
905 struct snd_pcm_hw_params
*hw_params
)
907 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
908 struct snd_cs46xx_pcm
*cpcm
;
910 #ifdef CONFIG_SND_CS46XX_NEW_DSP
911 struct snd_cs46xx
*chip
= snd_pcm_substream_chip(substream
);
912 int sample_rate
= params_rate(hw_params
);
913 int period_size
= params_period_bytes(hw_params
);
915 cpcm
= runtime
->private_data
;
917 #ifdef CONFIG_SND_CS46XX_NEW_DSP
918 if (snd_BUG_ON(!sample_rate
))
921 mutex_lock(&chip
->spos_mutex
);
923 if (_cs46xx_adjust_sample_rate (chip
,cpcm
,sample_rate
)) {
924 mutex_unlock(&chip
->spos_mutex
);
928 snd_BUG_ON(!cpcm
->pcm_channel
);
929 if (!cpcm
->pcm_channel
) {
930 mutex_unlock(&chip
->spos_mutex
);
935 if (cs46xx_dsp_pcm_channel_set_period (chip
,cpcm
->pcm_channel
,period_size
)) {
936 mutex_unlock(&chip
->spos_mutex
);
940 snd_printdd ("period_size (%d), periods (%d) buffer_size(%d)\n",
941 period_size
, params_periods(hw_params
),
942 params_buffer_bytes(hw_params
));
945 if (params_periods(hw_params
) == CS46XX_FRAGS
) {
946 if (runtime
->dma_area
!= cpcm
->hw_buf
.area
)
947 snd_pcm_lib_free_pages(substream
);
948 runtime
->dma_area
= cpcm
->hw_buf
.area
;
949 runtime
->dma_addr
= cpcm
->hw_buf
.addr
;
950 runtime
->dma_bytes
= cpcm
->hw_buf
.bytes
;
953 #ifdef CONFIG_SND_CS46XX_NEW_DSP
954 if (cpcm
->pcm_channel_id
== DSP_PCM_MAIN_CHANNEL
) {
955 substream
->ops
= &snd_cs46xx_playback_ops
;
956 } else if (cpcm
->pcm_channel_id
== DSP_PCM_REAR_CHANNEL
) {
957 substream
->ops
= &snd_cs46xx_playback_rear_ops
;
958 } else if (cpcm
->pcm_channel_id
== DSP_PCM_CENTER_LFE_CHANNEL
) {
959 substream
->ops
= &snd_cs46xx_playback_clfe_ops
;
960 } else if (cpcm
->pcm_channel_id
== DSP_IEC958_CHANNEL
) {
961 substream
->ops
= &snd_cs46xx_playback_iec958_ops
;
966 substream
->ops
= &snd_cs46xx_playback_ops
;
970 if (runtime
->dma_area
== cpcm
->hw_buf
.area
) {
971 runtime
->dma_area
= NULL
;
972 runtime
->dma_addr
= 0;
973 runtime
->dma_bytes
= 0;
975 if ((err
= snd_pcm_lib_malloc_pages(substream
, params_buffer_bytes(hw_params
))) < 0) {
976 #ifdef CONFIG_SND_CS46XX_NEW_DSP
977 mutex_unlock(&chip
->spos_mutex
);
982 #ifdef CONFIG_SND_CS46XX_NEW_DSP
983 if (cpcm
->pcm_channel_id
== DSP_PCM_MAIN_CHANNEL
) {
984 substream
->ops
= &snd_cs46xx_playback_indirect_ops
;
985 } else if (cpcm
->pcm_channel_id
== DSP_PCM_REAR_CHANNEL
) {
986 substream
->ops
= &snd_cs46xx_playback_indirect_rear_ops
;
987 } else if (cpcm
->pcm_channel_id
== DSP_PCM_CENTER_LFE_CHANNEL
) {
988 substream
->ops
= &snd_cs46xx_playback_indirect_clfe_ops
;
989 } else if (cpcm
->pcm_channel_id
== DSP_IEC958_CHANNEL
) {
990 substream
->ops
= &snd_cs46xx_playback_indirect_iec958_ops
;
995 substream
->ops
= &snd_cs46xx_playback_indirect_ops
;
1000 #ifdef CONFIG_SND_CS46XX_NEW_DSP
1001 mutex_unlock(&chip
->spos_mutex
);
1007 static int snd_cs46xx_playback_hw_free(struct snd_pcm_substream
*substream
)
1009 /*struct snd_cs46xx *chip = snd_pcm_substream_chip(substream);*/
1010 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1011 struct snd_cs46xx_pcm
*cpcm
;
1013 cpcm
= runtime
->private_data
;
1015 /* if play_back open fails, then this function
1016 is called and cpcm can actually be NULL here */
1017 if (!cpcm
) return -ENXIO
;
1019 if (runtime
->dma_area
!= cpcm
->hw_buf
.area
)
1020 snd_pcm_lib_free_pages(substream
);
1022 runtime
->dma_area
= NULL
;
1023 runtime
->dma_addr
= 0;
1024 runtime
->dma_bytes
= 0;
1029 static int snd_cs46xx_playback_prepare(struct snd_pcm_substream
*substream
)
1033 struct snd_cs46xx
*chip
= snd_pcm_substream_chip(substream
);
1034 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1035 struct snd_cs46xx_pcm
*cpcm
;
1037 cpcm
= runtime
->private_data
;
1039 #ifdef CONFIG_SND_CS46XX_NEW_DSP
1040 if (snd_BUG_ON(!cpcm
->pcm_channel
))
1043 pfie
= snd_cs46xx_peek(chip
, (cpcm
->pcm_channel
->pcm_reader_scb
->address
+ 1) << 2 );
1044 pfie
&= ~0x0000f03f;
1047 pfie
= snd_cs46xx_peek(chip
, BA1_PFIE
);
1048 pfie
&= ~0x0000f03f;
1052 /* if to convert from stereo to mono */
1053 if (runtime
->channels
== 1) {
1057 /* if to convert from 8 bit to 16 bit */
1058 if (snd_pcm_format_width(runtime
->format
) == 8) {
1062 /* if to convert to unsigned */
1063 if (snd_pcm_format_unsigned(runtime
->format
))
1066 /* Never convert byte order when sample stream is 8 bit */
1067 if (snd_pcm_format_width(runtime
->format
) != 8) {
1068 /* convert from big endian to little endian */
1069 if (snd_pcm_format_big_endian(runtime
->format
))
1073 memset(&cpcm
->pcm_rec
, 0, sizeof(cpcm
->pcm_rec
));
1074 cpcm
->pcm_rec
.sw_buffer_size
= snd_pcm_lib_buffer_bytes(substream
);
1075 cpcm
->pcm_rec
.hw_buffer_size
= runtime
->period_size
* CS46XX_FRAGS
<< cpcm
->shift
;
1077 #ifdef CONFIG_SND_CS46XX_NEW_DSP
1079 tmp
= snd_cs46xx_peek(chip
, (cpcm
->pcm_channel
->pcm_reader_scb
->address
) << 2);
1081 tmp
|= (4 << cpcm
->shift
) - 1;
1082 /* playback transaction count register */
1083 snd_cs46xx_poke(chip
, (cpcm
->pcm_channel
->pcm_reader_scb
->address
) << 2, tmp
);
1085 /* playback format && interrupt enable */
1086 snd_cs46xx_poke(chip
, (cpcm
->pcm_channel
->pcm_reader_scb
->address
+ 1) << 2, pfie
| cpcm
->pcm_channel
->pcm_slot
);
1088 snd_cs46xx_poke(chip
, BA1_PBA
, cpcm
->hw_buf
.addr
);
1089 tmp
= snd_cs46xx_peek(chip
, BA1_PDTC
);
1091 tmp
|= (4 << cpcm
->shift
) - 1;
1092 snd_cs46xx_poke(chip
, BA1_PDTC
, tmp
);
1093 snd_cs46xx_poke(chip
, BA1_PFIE
, pfie
);
1094 snd_cs46xx_set_play_sample_rate(chip
, runtime
->rate
);
1100 static int snd_cs46xx_capture_hw_params(struct snd_pcm_substream
*substream
,
1101 struct snd_pcm_hw_params
*hw_params
)
1103 struct snd_cs46xx
*chip
= snd_pcm_substream_chip(substream
);
1104 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1107 #ifdef CONFIG_SND_CS46XX_NEW_DSP
1108 cs46xx_dsp_pcm_ostream_set_period (chip
, params_period_bytes(hw_params
));
1110 if (runtime
->periods
== CS46XX_FRAGS
) {
1111 if (runtime
->dma_area
!= chip
->capt
.hw_buf
.area
)
1112 snd_pcm_lib_free_pages(substream
);
1113 runtime
->dma_area
= chip
->capt
.hw_buf
.area
;
1114 runtime
->dma_addr
= chip
->capt
.hw_buf
.addr
;
1115 runtime
->dma_bytes
= chip
->capt
.hw_buf
.bytes
;
1116 substream
->ops
= &snd_cs46xx_capture_ops
;
1118 if (runtime
->dma_area
== chip
->capt
.hw_buf
.area
) {
1119 runtime
->dma_area
= NULL
;
1120 runtime
->dma_addr
= 0;
1121 runtime
->dma_bytes
= 0;
1123 if ((err
= snd_pcm_lib_malloc_pages(substream
, params_buffer_bytes(hw_params
))) < 0)
1125 substream
->ops
= &snd_cs46xx_capture_indirect_ops
;
1131 static int snd_cs46xx_capture_hw_free(struct snd_pcm_substream
*substream
)
1133 struct snd_cs46xx
*chip
= snd_pcm_substream_chip(substream
);
1134 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1136 if (runtime
->dma_area
!= chip
->capt
.hw_buf
.area
)
1137 snd_pcm_lib_free_pages(substream
);
1138 runtime
->dma_area
= NULL
;
1139 runtime
->dma_addr
= 0;
1140 runtime
->dma_bytes
= 0;
1145 static int snd_cs46xx_capture_prepare(struct snd_pcm_substream
*substream
)
1147 struct snd_cs46xx
*chip
= snd_pcm_substream_chip(substream
);
1148 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1150 snd_cs46xx_poke(chip
, BA1_CBA
, chip
->capt
.hw_buf
.addr
);
1151 chip
->capt
.shift
= 2;
1152 memset(&chip
->capt
.pcm_rec
, 0, sizeof(chip
->capt
.pcm_rec
));
1153 chip
->capt
.pcm_rec
.sw_buffer_size
= snd_pcm_lib_buffer_bytes(substream
);
1154 chip
->capt
.pcm_rec
.hw_buffer_size
= runtime
->period_size
* CS46XX_FRAGS
<< 2;
1155 snd_cs46xx_set_capture_sample_rate(chip
, runtime
->rate
);
1160 static irqreturn_t
snd_cs46xx_interrupt(int irq
, void *dev_id
)
1162 struct snd_cs46xx
*chip
= dev_id
;
1164 #ifdef CONFIG_SND_CS46XX_NEW_DSP
1165 struct dsp_spos_instance
* ins
= chip
->dsp_spos_instance
;
1168 struct snd_cs46xx_pcm
*cpcm
= NULL
;
1172 * Read the Interrupt Status Register to clear the interrupt
1174 status1
= snd_cs46xx_peekBA0(chip
, BA0_HISR
);
1175 if ((status1
& 0x7fffffff) == 0) {
1176 snd_cs46xx_pokeBA0(chip
, BA0_HICR
, HICR_CHGM
| HICR_IEV
);
1180 #ifdef CONFIG_SND_CS46XX_NEW_DSP
1181 status2
= snd_cs46xx_peekBA0(chip
, BA0_HSR0
);
1183 for (i
= 0; i
< DSP_MAX_PCM_CHANNELS
; ++i
) {
1185 if ( status1
& (1 << i
) ) {
1186 if (i
== CS46XX_DSP_CAPTURE_CHANNEL
) {
1187 if (chip
->capt
.substream
)
1188 snd_pcm_period_elapsed(chip
->capt
.substream
);
1190 if (ins
->pcm_channels
[i
].active
&&
1191 ins
->pcm_channels
[i
].private_data
&&
1192 !ins
->pcm_channels
[i
].unlinked
) {
1193 cpcm
= ins
->pcm_channels
[i
].private_data
;
1194 snd_pcm_period_elapsed(cpcm
->substream
);
1199 if ( status2
& (1 << (i
- 16))) {
1200 if (ins
->pcm_channels
[i
].active
&&
1201 ins
->pcm_channels
[i
].private_data
&&
1202 !ins
->pcm_channels
[i
].unlinked
) {
1203 cpcm
= ins
->pcm_channels
[i
].private_data
;
1204 snd_pcm_period_elapsed(cpcm
->substream
);
1212 if ((status1
& HISR_VC0
) && chip
->playback_pcm
) {
1213 if (chip
->playback_pcm
->substream
)
1214 snd_pcm_period_elapsed(chip
->playback_pcm
->substream
);
1216 if ((status1
& HISR_VC1
) && chip
->pcm
) {
1217 if (chip
->capt
.substream
)
1218 snd_pcm_period_elapsed(chip
->capt
.substream
);
1222 if ((status1
& HISR_MIDI
) && chip
->rmidi
) {
1225 spin_lock(&chip
->reg_lock
);
1226 while ((snd_cs46xx_peekBA0(chip
, BA0_MIDSR
) & MIDSR_RBE
) == 0) {
1227 c
= snd_cs46xx_peekBA0(chip
, BA0_MIDRP
);
1228 if ((chip
->midcr
& MIDCR_RIE
) == 0)
1230 snd_rawmidi_receive(chip
->midi_input
, &c
, 1);
1232 while ((snd_cs46xx_peekBA0(chip
, BA0_MIDSR
) & MIDSR_TBF
) == 0) {
1233 if ((chip
->midcr
& MIDCR_TIE
) == 0)
1235 if (snd_rawmidi_transmit(chip
->midi_output
, &c
, 1) != 1) {
1236 chip
->midcr
&= ~MIDCR_TIE
;
1237 snd_cs46xx_pokeBA0(chip
, BA0_MIDCR
, chip
->midcr
);
1240 snd_cs46xx_pokeBA0(chip
, BA0_MIDWP
, c
);
1242 spin_unlock(&chip
->reg_lock
);
1245 * EOI to the PCI part....reenables interrupts
1247 snd_cs46xx_pokeBA0(chip
, BA0_HICR
, HICR_CHGM
| HICR_IEV
);
1252 static struct snd_pcm_hardware snd_cs46xx_playback
=
1254 .info
= (SNDRV_PCM_INFO_MMAP
|
1255 SNDRV_PCM_INFO_INTERLEAVED
|
1256 SNDRV_PCM_INFO_BLOCK_TRANSFER
/*|*/
1257 /*SNDRV_PCM_INFO_RESUME*/),
1258 .formats
= (SNDRV_PCM_FMTBIT_S8
| SNDRV_PCM_FMTBIT_U8
|
1259 SNDRV_PCM_FMTBIT_S16_LE
| SNDRV_PCM_FMTBIT_S16_BE
|
1260 SNDRV_PCM_FMTBIT_U16_LE
| SNDRV_PCM_FMTBIT_U16_BE
),
1261 .rates
= SNDRV_PCM_RATE_CONTINUOUS
| SNDRV_PCM_RATE_8000_48000
,
1266 .buffer_bytes_max
= (256 * 1024),
1267 .period_bytes_min
= CS46XX_MIN_PERIOD_SIZE
,
1268 .period_bytes_max
= CS46XX_MAX_PERIOD_SIZE
,
1269 .periods_min
= CS46XX_FRAGS
,
1270 .periods_max
= 1024,
1274 static struct snd_pcm_hardware snd_cs46xx_capture
=
1276 .info
= (SNDRV_PCM_INFO_MMAP
|
1277 SNDRV_PCM_INFO_INTERLEAVED
|
1278 SNDRV_PCM_INFO_BLOCK_TRANSFER
/*|*/
1279 /*SNDRV_PCM_INFO_RESUME*/),
1280 .formats
= SNDRV_PCM_FMTBIT_S16_LE
,
1281 .rates
= SNDRV_PCM_RATE_CONTINUOUS
| SNDRV_PCM_RATE_8000_48000
,
1286 .buffer_bytes_max
= (256 * 1024),
1287 .period_bytes_min
= CS46XX_MIN_PERIOD_SIZE
,
1288 .period_bytes_max
= CS46XX_MAX_PERIOD_SIZE
,
1289 .periods_min
= CS46XX_FRAGS
,
1290 .periods_max
= 1024,
1294 #ifdef CONFIG_SND_CS46XX_NEW_DSP
1296 static unsigned int period_sizes
[] = { 32, 64, 128, 256, 512, 1024, 2048 };
1298 static struct snd_pcm_hw_constraint_list hw_constraints_period_sizes
= {
1299 .count
= ARRAY_SIZE(period_sizes
),
1300 .list
= period_sizes
,
1306 static void snd_cs46xx_pcm_free_substream(struct snd_pcm_runtime
*runtime
)
1308 kfree(runtime
->private_data
);
1311 static int _cs46xx_playback_open_channel (struct snd_pcm_substream
*substream
,int pcm_channel_id
)
1313 struct snd_cs46xx
*chip
= snd_pcm_substream_chip(substream
);
1314 struct snd_cs46xx_pcm
* cpcm
;
1315 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1317 cpcm
= kzalloc(sizeof(*cpcm
), GFP_KERNEL
);
1320 if (snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV
, snd_dma_pci_data(chip
->pci
),
1321 PAGE_SIZE
, &cpcm
->hw_buf
) < 0) {
1326 runtime
->hw
= snd_cs46xx_playback
;
1327 runtime
->private_data
= cpcm
;
1328 runtime
->private_free
= snd_cs46xx_pcm_free_substream
;
1330 cpcm
->substream
= substream
;
1331 #ifdef CONFIG_SND_CS46XX_NEW_DSP
1332 mutex_lock(&chip
->spos_mutex
);
1333 cpcm
->pcm_channel
= NULL
;
1334 cpcm
->pcm_channel_id
= pcm_channel_id
;
1337 snd_pcm_hw_constraint_list(runtime
, 0,
1338 SNDRV_PCM_HW_PARAM_PERIOD_BYTES
,
1339 &hw_constraints_period_sizes
);
1341 mutex_unlock(&chip
->spos_mutex
);
1343 chip
->playback_pcm
= cpcm
; /* HACK */
1346 if (chip
->accept_valid
)
1347 substream
->runtime
->hw
.info
|= SNDRV_PCM_INFO_MMAP_VALID
;
1348 chip
->active_ctrl(chip
, 1);
1353 static int snd_cs46xx_playback_open(struct snd_pcm_substream
*substream
)
1355 snd_printdd("open front channel\n");
1356 return _cs46xx_playback_open_channel(substream
,DSP_PCM_MAIN_CHANNEL
);
1359 #ifdef CONFIG_SND_CS46XX_NEW_DSP
1360 static int snd_cs46xx_playback_open_rear(struct snd_pcm_substream
*substream
)
1362 snd_printdd("open rear channel\n");
1364 return _cs46xx_playback_open_channel(substream
,DSP_PCM_REAR_CHANNEL
);
1367 static int snd_cs46xx_playback_open_clfe(struct snd_pcm_substream
*substream
)
1369 snd_printdd("open center - LFE channel\n");
1371 return _cs46xx_playback_open_channel(substream
,DSP_PCM_CENTER_LFE_CHANNEL
);
1374 static int snd_cs46xx_playback_open_iec958(struct snd_pcm_substream
*substream
)
1376 struct snd_cs46xx
*chip
= snd_pcm_substream_chip(substream
);
1378 snd_printdd("open raw iec958 channel\n");
1380 mutex_lock(&chip
->spos_mutex
);
1381 cs46xx_iec958_pre_open (chip
);
1382 mutex_unlock(&chip
->spos_mutex
);
1384 return _cs46xx_playback_open_channel(substream
,DSP_IEC958_CHANNEL
);
1387 static int snd_cs46xx_playback_close(struct snd_pcm_substream
*substream
);
1389 static int snd_cs46xx_playback_close_iec958(struct snd_pcm_substream
*substream
)
1392 struct snd_cs46xx
*chip
= snd_pcm_substream_chip(substream
);
1394 snd_printdd("close raw iec958 channel\n");
1396 err
= snd_cs46xx_playback_close(substream
);
1398 mutex_lock(&chip
->spos_mutex
);
1399 cs46xx_iec958_post_close (chip
);
1400 mutex_unlock(&chip
->spos_mutex
);
1406 static int snd_cs46xx_capture_open(struct snd_pcm_substream
*substream
)
1408 struct snd_cs46xx
*chip
= snd_pcm_substream_chip(substream
);
1410 if (snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV
, snd_dma_pci_data(chip
->pci
),
1411 PAGE_SIZE
, &chip
->capt
.hw_buf
) < 0)
1413 chip
->capt
.substream
= substream
;
1414 substream
->runtime
->hw
= snd_cs46xx_capture
;
1416 if (chip
->accept_valid
)
1417 substream
->runtime
->hw
.info
|= SNDRV_PCM_INFO_MMAP_VALID
;
1419 chip
->active_ctrl(chip
, 1);
1421 #ifdef CONFIG_SND_CS46XX_NEW_DSP
1422 snd_pcm_hw_constraint_list(substream
->runtime
, 0,
1423 SNDRV_PCM_HW_PARAM_PERIOD_BYTES
,
1424 &hw_constraints_period_sizes
);
1429 static int snd_cs46xx_playback_close(struct snd_pcm_substream
*substream
)
1431 struct snd_cs46xx
*chip
= snd_pcm_substream_chip(substream
);
1432 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1433 struct snd_cs46xx_pcm
* cpcm
;
1435 cpcm
= runtime
->private_data
;
1437 /* when playback_open fails, then cpcm can be NULL */
1438 if (!cpcm
) return -ENXIO
;
1440 #ifdef CONFIG_SND_CS46XX_NEW_DSP
1441 mutex_lock(&chip
->spos_mutex
);
1442 if (cpcm
->pcm_channel
) {
1443 cs46xx_dsp_destroy_pcm_channel(chip
,cpcm
->pcm_channel
);
1444 cpcm
->pcm_channel
= NULL
;
1446 mutex_unlock(&chip
->spos_mutex
);
1448 chip
->playback_pcm
= NULL
;
1451 cpcm
->substream
= NULL
;
1452 snd_dma_free_pages(&cpcm
->hw_buf
);
1453 chip
->active_ctrl(chip
, -1);
1458 static int snd_cs46xx_capture_close(struct snd_pcm_substream
*substream
)
1460 struct snd_cs46xx
*chip
= snd_pcm_substream_chip(substream
);
1462 chip
->capt
.substream
= NULL
;
1463 snd_dma_free_pages(&chip
->capt
.hw_buf
);
1464 chip
->active_ctrl(chip
, -1);
1469 #ifdef CONFIG_SND_CS46XX_NEW_DSP
1470 static struct snd_pcm_ops snd_cs46xx_playback_rear_ops
= {
1471 .open
= snd_cs46xx_playback_open_rear
,
1472 .close
= snd_cs46xx_playback_close
,
1473 .ioctl
= snd_pcm_lib_ioctl
,
1474 .hw_params
= snd_cs46xx_playback_hw_params
,
1475 .hw_free
= snd_cs46xx_playback_hw_free
,
1476 .prepare
= snd_cs46xx_playback_prepare
,
1477 .trigger
= snd_cs46xx_playback_trigger
,
1478 .pointer
= snd_cs46xx_playback_direct_pointer
,
1481 static struct snd_pcm_ops snd_cs46xx_playback_indirect_rear_ops
= {
1482 .open
= snd_cs46xx_playback_open_rear
,
1483 .close
= snd_cs46xx_playback_close
,
1484 .ioctl
= snd_pcm_lib_ioctl
,
1485 .hw_params
= snd_cs46xx_playback_hw_params
,
1486 .hw_free
= snd_cs46xx_playback_hw_free
,
1487 .prepare
= snd_cs46xx_playback_prepare
,
1488 .trigger
= snd_cs46xx_playback_trigger
,
1489 .pointer
= snd_cs46xx_playback_indirect_pointer
,
1490 .ack
= snd_cs46xx_playback_transfer
,
1493 static struct snd_pcm_ops snd_cs46xx_playback_clfe_ops
= {
1494 .open
= snd_cs46xx_playback_open_clfe
,
1495 .close
= snd_cs46xx_playback_close
,
1496 .ioctl
= snd_pcm_lib_ioctl
,
1497 .hw_params
= snd_cs46xx_playback_hw_params
,
1498 .hw_free
= snd_cs46xx_playback_hw_free
,
1499 .prepare
= snd_cs46xx_playback_prepare
,
1500 .trigger
= snd_cs46xx_playback_trigger
,
1501 .pointer
= snd_cs46xx_playback_direct_pointer
,
1504 static struct snd_pcm_ops snd_cs46xx_playback_indirect_clfe_ops
= {
1505 .open
= snd_cs46xx_playback_open_clfe
,
1506 .close
= snd_cs46xx_playback_close
,
1507 .ioctl
= snd_pcm_lib_ioctl
,
1508 .hw_params
= snd_cs46xx_playback_hw_params
,
1509 .hw_free
= snd_cs46xx_playback_hw_free
,
1510 .prepare
= snd_cs46xx_playback_prepare
,
1511 .trigger
= snd_cs46xx_playback_trigger
,
1512 .pointer
= snd_cs46xx_playback_indirect_pointer
,
1513 .ack
= snd_cs46xx_playback_transfer
,
1516 static struct snd_pcm_ops snd_cs46xx_playback_iec958_ops
= {
1517 .open
= snd_cs46xx_playback_open_iec958
,
1518 .close
= snd_cs46xx_playback_close_iec958
,
1519 .ioctl
= snd_pcm_lib_ioctl
,
1520 .hw_params
= snd_cs46xx_playback_hw_params
,
1521 .hw_free
= snd_cs46xx_playback_hw_free
,
1522 .prepare
= snd_cs46xx_playback_prepare
,
1523 .trigger
= snd_cs46xx_playback_trigger
,
1524 .pointer
= snd_cs46xx_playback_direct_pointer
,
1527 static struct snd_pcm_ops snd_cs46xx_playback_indirect_iec958_ops
= {
1528 .open
= snd_cs46xx_playback_open_iec958
,
1529 .close
= snd_cs46xx_playback_close_iec958
,
1530 .ioctl
= snd_pcm_lib_ioctl
,
1531 .hw_params
= snd_cs46xx_playback_hw_params
,
1532 .hw_free
= snd_cs46xx_playback_hw_free
,
1533 .prepare
= snd_cs46xx_playback_prepare
,
1534 .trigger
= snd_cs46xx_playback_trigger
,
1535 .pointer
= snd_cs46xx_playback_indirect_pointer
,
1536 .ack
= snd_cs46xx_playback_transfer
,
1541 static struct snd_pcm_ops snd_cs46xx_playback_ops
= {
1542 .open
= snd_cs46xx_playback_open
,
1543 .close
= snd_cs46xx_playback_close
,
1544 .ioctl
= snd_pcm_lib_ioctl
,
1545 .hw_params
= snd_cs46xx_playback_hw_params
,
1546 .hw_free
= snd_cs46xx_playback_hw_free
,
1547 .prepare
= snd_cs46xx_playback_prepare
,
1548 .trigger
= snd_cs46xx_playback_trigger
,
1549 .pointer
= snd_cs46xx_playback_direct_pointer
,
1552 static struct snd_pcm_ops snd_cs46xx_playback_indirect_ops
= {
1553 .open
= snd_cs46xx_playback_open
,
1554 .close
= snd_cs46xx_playback_close
,
1555 .ioctl
= snd_pcm_lib_ioctl
,
1556 .hw_params
= snd_cs46xx_playback_hw_params
,
1557 .hw_free
= snd_cs46xx_playback_hw_free
,
1558 .prepare
= snd_cs46xx_playback_prepare
,
1559 .trigger
= snd_cs46xx_playback_trigger
,
1560 .pointer
= snd_cs46xx_playback_indirect_pointer
,
1561 .ack
= snd_cs46xx_playback_transfer
,
1564 static struct snd_pcm_ops snd_cs46xx_capture_ops
= {
1565 .open
= snd_cs46xx_capture_open
,
1566 .close
= snd_cs46xx_capture_close
,
1567 .ioctl
= snd_pcm_lib_ioctl
,
1568 .hw_params
= snd_cs46xx_capture_hw_params
,
1569 .hw_free
= snd_cs46xx_capture_hw_free
,
1570 .prepare
= snd_cs46xx_capture_prepare
,
1571 .trigger
= snd_cs46xx_capture_trigger
,
1572 .pointer
= snd_cs46xx_capture_direct_pointer
,
1575 static struct snd_pcm_ops snd_cs46xx_capture_indirect_ops
= {
1576 .open
= snd_cs46xx_capture_open
,
1577 .close
= snd_cs46xx_capture_close
,
1578 .ioctl
= snd_pcm_lib_ioctl
,
1579 .hw_params
= snd_cs46xx_capture_hw_params
,
1580 .hw_free
= snd_cs46xx_capture_hw_free
,
1581 .prepare
= snd_cs46xx_capture_prepare
,
1582 .trigger
= snd_cs46xx_capture_trigger
,
1583 .pointer
= snd_cs46xx_capture_indirect_pointer
,
1584 .ack
= snd_cs46xx_capture_transfer
,
1587 #ifdef CONFIG_SND_CS46XX_NEW_DSP
1588 #define MAX_PLAYBACK_CHANNELS (DSP_MAX_PCM_CHANNELS - 1)
1590 #define MAX_PLAYBACK_CHANNELS 1
1593 int __devinit
snd_cs46xx_pcm(struct snd_cs46xx
*chip
, int device
, struct snd_pcm
** rpcm
)
1595 struct snd_pcm
*pcm
;
1600 if ((err
= snd_pcm_new(chip
->card
, "CS46xx", device
, MAX_PLAYBACK_CHANNELS
, 1, &pcm
)) < 0)
1603 pcm
->private_data
= chip
;
1605 snd_pcm_set_ops(pcm
, SNDRV_PCM_STREAM_PLAYBACK
, &snd_cs46xx_playback_ops
);
1606 snd_pcm_set_ops(pcm
, SNDRV_PCM_STREAM_CAPTURE
, &snd_cs46xx_capture_ops
);
1609 pcm
->info_flags
= 0;
1610 strcpy(pcm
->name
, "CS46xx");
1613 snd_pcm_lib_preallocate_pages_for_all(pcm
, SNDRV_DMA_TYPE_DEV
,
1614 snd_dma_pci_data(chip
->pci
), 64*1024, 256*1024);
1623 #ifdef CONFIG_SND_CS46XX_NEW_DSP
1624 int __devinit
snd_cs46xx_pcm_rear(struct snd_cs46xx
*chip
, int device
, struct snd_pcm
** rpcm
)
1626 struct snd_pcm
*pcm
;
1632 if ((err
= snd_pcm_new(chip
->card
, "CS46xx - Rear", device
, MAX_PLAYBACK_CHANNELS
, 0, &pcm
)) < 0)
1635 pcm
->private_data
= chip
;
1637 snd_pcm_set_ops(pcm
, SNDRV_PCM_STREAM_PLAYBACK
, &snd_cs46xx_playback_rear_ops
);
1640 pcm
->info_flags
= 0;
1641 strcpy(pcm
->name
, "CS46xx - Rear");
1642 chip
->pcm_rear
= pcm
;
1644 snd_pcm_lib_preallocate_pages_for_all(pcm
, SNDRV_DMA_TYPE_DEV
,
1645 snd_dma_pci_data(chip
->pci
), 64*1024, 256*1024);
1653 int __devinit
snd_cs46xx_pcm_center_lfe(struct snd_cs46xx
*chip
, int device
, struct snd_pcm
** rpcm
)
1655 struct snd_pcm
*pcm
;
1661 if ((err
= snd_pcm_new(chip
->card
, "CS46xx - Center LFE", device
, MAX_PLAYBACK_CHANNELS
, 0, &pcm
)) < 0)
1664 pcm
->private_data
= chip
;
1666 snd_pcm_set_ops(pcm
, SNDRV_PCM_STREAM_PLAYBACK
, &snd_cs46xx_playback_clfe_ops
);
1669 pcm
->info_flags
= 0;
1670 strcpy(pcm
->name
, "CS46xx - Center LFE");
1671 chip
->pcm_center_lfe
= pcm
;
1673 snd_pcm_lib_preallocate_pages_for_all(pcm
, SNDRV_DMA_TYPE_DEV
,
1674 snd_dma_pci_data(chip
->pci
), 64*1024, 256*1024);
1682 int __devinit
snd_cs46xx_pcm_iec958(struct snd_cs46xx
*chip
, int device
, struct snd_pcm
** rpcm
)
1684 struct snd_pcm
*pcm
;
1690 if ((err
= snd_pcm_new(chip
->card
, "CS46xx - IEC958", device
, 1, 0, &pcm
)) < 0)
1693 pcm
->private_data
= chip
;
1695 snd_pcm_set_ops(pcm
, SNDRV_PCM_STREAM_PLAYBACK
, &snd_cs46xx_playback_iec958_ops
);
1698 pcm
->info_flags
= 0;
1699 strcpy(pcm
->name
, "CS46xx - IEC958");
1700 chip
->pcm_rear
= pcm
;
1702 snd_pcm_lib_preallocate_pages_for_all(pcm
, SNDRV_DMA_TYPE_DEV
,
1703 snd_dma_pci_data(chip
->pci
), 64*1024, 256*1024);
1715 static void snd_cs46xx_mixer_free_ac97_bus(struct snd_ac97_bus
*bus
)
1717 struct snd_cs46xx
*chip
= bus
->private_data
;
1719 chip
->ac97_bus
= NULL
;
1722 static void snd_cs46xx_mixer_free_ac97(struct snd_ac97
*ac97
)
1724 struct snd_cs46xx
*chip
= ac97
->private_data
;
1726 if (snd_BUG_ON(ac97
!= chip
->ac97
[CS46XX_PRIMARY_CODEC_INDEX
] &&
1727 ac97
!= chip
->ac97
[CS46XX_SECONDARY_CODEC_INDEX
]))
1730 if (ac97
== chip
->ac97
[CS46XX_PRIMARY_CODEC_INDEX
]) {
1731 chip
->ac97
[CS46XX_PRIMARY_CODEC_INDEX
] = NULL
;
1732 chip
->eapd_switch
= NULL
;
1735 chip
->ac97
[CS46XX_SECONDARY_CODEC_INDEX
] = NULL
;
1738 static int snd_cs46xx_vol_info(struct snd_kcontrol
*kcontrol
,
1739 struct snd_ctl_elem_info
*uinfo
)
1741 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
1743 uinfo
->value
.integer
.min
= 0;
1744 uinfo
->value
.integer
.max
= 0x7fff;
1748 static int snd_cs46xx_vol_get(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
1750 struct snd_cs46xx
*chip
= snd_kcontrol_chip(kcontrol
);
1751 int reg
= kcontrol
->private_value
;
1752 unsigned int val
= snd_cs46xx_peek(chip
, reg
);
1753 ucontrol
->value
.integer
.value
[0] = 0xffff - (val
>> 16);
1754 ucontrol
->value
.integer
.value
[1] = 0xffff - (val
& 0xffff);
1758 static int snd_cs46xx_vol_put(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
1760 struct snd_cs46xx
*chip
= snd_kcontrol_chip(kcontrol
);
1761 int reg
= kcontrol
->private_value
;
1762 unsigned int val
= ((0xffff - ucontrol
->value
.integer
.value
[0]) << 16 |
1763 (0xffff - ucontrol
->value
.integer
.value
[1]));
1764 unsigned int old
= snd_cs46xx_peek(chip
, reg
);
1765 int change
= (old
!= val
);
1768 snd_cs46xx_poke(chip
, reg
, val
);
1774 #ifdef CONFIG_SND_CS46XX_NEW_DSP
1776 static int snd_cs46xx_vol_dac_get(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
1778 struct snd_cs46xx
*chip
= snd_kcontrol_chip(kcontrol
);
1780 ucontrol
->value
.integer
.value
[0] = chip
->dsp_spos_instance
->dac_volume_left
;
1781 ucontrol
->value
.integer
.value
[1] = chip
->dsp_spos_instance
->dac_volume_right
;
1786 static int snd_cs46xx_vol_dac_put(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
1788 struct snd_cs46xx
*chip
= snd_kcontrol_chip(kcontrol
);
1791 if (chip
->dsp_spos_instance
->dac_volume_right
!= ucontrol
->value
.integer
.value
[0] ||
1792 chip
->dsp_spos_instance
->dac_volume_left
!= ucontrol
->value
.integer
.value
[1]) {
1793 cs46xx_dsp_set_dac_volume(chip
,
1794 ucontrol
->value
.integer
.value
[0],
1795 ucontrol
->value
.integer
.value
[1]);
1803 static int snd_cs46xx_vol_iec958_get(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
1805 struct snd_cs46xx
*chip
= snd_kcontrol_chip(kcontrol
);
1807 ucontrol
->value
.integer
.value
[0] = chip
->dsp_spos_instance
->spdif_input_volume_left
;
1808 ucontrol
->value
.integer
.value
[1] = chip
->dsp_spos_instance
->spdif_input_volume_right
;
1812 static int snd_cs46xx_vol_iec958_put(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
1814 struct snd_cs46xx
*chip
= snd_kcontrol_chip(kcontrol
);
1817 if (chip
->dsp_spos_instance
->spdif_input_volume_left
!= ucontrol
->value
.integer
.value
[0] ||
1818 chip
->dsp_spos_instance
->spdif_input_volume_right
!= ucontrol
->value
.integer
.value
[1]) {
1819 cs46xx_dsp_set_iec958_volume (chip
,
1820 ucontrol
->value
.integer
.value
[0],
1821 ucontrol
->value
.integer
.value
[1]);
1829 #define snd_mixer_boolean_info snd_ctl_boolean_mono_info
1831 static int snd_cs46xx_iec958_get(struct snd_kcontrol
*kcontrol
,
1832 struct snd_ctl_elem_value
*ucontrol
)
1834 struct snd_cs46xx
*chip
= snd_kcontrol_chip(kcontrol
);
1835 int reg
= kcontrol
->private_value
;
1837 if (reg
== CS46XX_MIXER_SPDIF_OUTPUT_ELEMENT
)
1838 ucontrol
->value
.integer
.value
[0] = (chip
->dsp_spos_instance
->spdif_status_out
& DSP_SPDIF_STATUS_OUTPUT_ENABLED
);
1840 ucontrol
->value
.integer
.value
[0] = chip
->dsp_spos_instance
->spdif_status_in
;
1845 static int snd_cs46xx_iec958_put(struct snd_kcontrol
*kcontrol
,
1846 struct snd_ctl_elem_value
*ucontrol
)
1848 struct snd_cs46xx
*chip
= snd_kcontrol_chip(kcontrol
);
1851 switch (kcontrol
->private_value
) {
1852 case CS46XX_MIXER_SPDIF_OUTPUT_ELEMENT
:
1853 mutex_lock(&chip
->spos_mutex
);
1854 change
= (chip
->dsp_spos_instance
->spdif_status_out
& DSP_SPDIF_STATUS_OUTPUT_ENABLED
);
1855 if (ucontrol
->value
.integer
.value
[0] && !change
)
1856 cs46xx_dsp_enable_spdif_out(chip
);
1857 else if (change
&& !ucontrol
->value
.integer
.value
[0])
1858 cs46xx_dsp_disable_spdif_out(chip
);
1860 res
= (change
!= (chip
->dsp_spos_instance
->spdif_status_out
& DSP_SPDIF_STATUS_OUTPUT_ENABLED
));
1861 mutex_unlock(&chip
->spos_mutex
);
1863 case CS46XX_MIXER_SPDIF_INPUT_ELEMENT
:
1864 change
= chip
->dsp_spos_instance
->spdif_status_in
;
1865 if (ucontrol
->value
.integer
.value
[0] && !change
) {
1866 cs46xx_dsp_enable_spdif_in(chip
);
1867 /* restore volume */
1869 else if (change
&& !ucontrol
->value
.integer
.value
[0])
1870 cs46xx_dsp_disable_spdif_in(chip
);
1872 res
= (change
!= chip
->dsp_spos_instance
->spdif_status_in
);
1876 snd_BUG(); /* should never happen ... */
1882 static int snd_cs46xx_adc_capture_get(struct snd_kcontrol
*kcontrol
,
1883 struct snd_ctl_elem_value
*ucontrol
)
1885 struct snd_cs46xx
*chip
= snd_kcontrol_chip(kcontrol
);
1886 struct dsp_spos_instance
* ins
= chip
->dsp_spos_instance
;
1888 if (ins
->adc_input
!= NULL
)
1889 ucontrol
->value
.integer
.value
[0] = 1;
1891 ucontrol
->value
.integer
.value
[0] = 0;
1896 static int snd_cs46xx_adc_capture_put(struct snd_kcontrol
*kcontrol
,
1897 struct snd_ctl_elem_value
*ucontrol
)
1899 struct snd_cs46xx
*chip
= snd_kcontrol_chip(kcontrol
);
1900 struct dsp_spos_instance
* ins
= chip
->dsp_spos_instance
;
1903 if (ucontrol
->value
.integer
.value
[0] && !ins
->adc_input
) {
1904 cs46xx_dsp_enable_adc_capture(chip
);
1906 } else if (!ucontrol
->value
.integer
.value
[0] && ins
->adc_input
) {
1907 cs46xx_dsp_disable_adc_capture(chip
);
1913 static int snd_cs46xx_pcm_capture_get(struct snd_kcontrol
*kcontrol
,
1914 struct snd_ctl_elem_value
*ucontrol
)
1916 struct snd_cs46xx
*chip
= snd_kcontrol_chip(kcontrol
);
1917 struct dsp_spos_instance
* ins
= chip
->dsp_spos_instance
;
1919 if (ins
->pcm_input
!= NULL
)
1920 ucontrol
->value
.integer
.value
[0] = 1;
1922 ucontrol
->value
.integer
.value
[0] = 0;
1928 static int snd_cs46xx_pcm_capture_put(struct snd_kcontrol
*kcontrol
,
1929 struct snd_ctl_elem_value
*ucontrol
)
1931 struct snd_cs46xx
*chip
= snd_kcontrol_chip(kcontrol
);
1932 struct dsp_spos_instance
* ins
= chip
->dsp_spos_instance
;
1935 if (ucontrol
->value
.integer
.value
[0] && !ins
->pcm_input
) {
1936 cs46xx_dsp_enable_pcm_capture(chip
);
1938 } else if (!ucontrol
->value
.integer
.value
[0] && ins
->pcm_input
) {
1939 cs46xx_dsp_disable_pcm_capture(chip
);
1946 static int snd_herc_spdif_select_get(struct snd_kcontrol
*kcontrol
,
1947 struct snd_ctl_elem_value
*ucontrol
)
1949 struct snd_cs46xx
*chip
= snd_kcontrol_chip(kcontrol
);
1951 int val1
= snd_cs46xx_peekBA0(chip
, BA0_EGPIODR
);
1953 if (val1
& EGPIODR_GPOE0
)
1954 ucontrol
->value
.integer
.value
[0] = 1;
1956 ucontrol
->value
.integer
.value
[0] = 0;
1962 * Game Theatre XP card - EGPIO[0] is used to select SPDIF input optical or coaxial.
1964 static int snd_herc_spdif_select_put(struct snd_kcontrol
*kcontrol
,
1965 struct snd_ctl_elem_value
*ucontrol
)
1967 struct snd_cs46xx
*chip
= snd_kcontrol_chip(kcontrol
);
1968 int val1
= snd_cs46xx_peekBA0(chip
, BA0_EGPIODR
);
1969 int val2
= snd_cs46xx_peekBA0(chip
, BA0_EGPIOPTR
);
1971 if (ucontrol
->value
.integer
.value
[0]) {
1972 /* optical is default */
1973 snd_cs46xx_pokeBA0(chip
, BA0_EGPIODR
,
1974 EGPIODR_GPOE0
| val1
); /* enable EGPIO0 output */
1975 snd_cs46xx_pokeBA0(chip
, BA0_EGPIOPTR
,
1976 EGPIOPTR_GPPT0
| val2
); /* open-drain on output */
1979 snd_cs46xx_pokeBA0(chip
, BA0_EGPIODR
, val1
& ~EGPIODR_GPOE0
); /* disable */
1980 snd_cs46xx_pokeBA0(chip
, BA0_EGPIOPTR
, val2
& ~EGPIOPTR_GPPT0
); /* disable */
1983 /* checking diff from the EGPIO direction register
1985 return (val1
!= (int)snd_cs46xx_peekBA0(chip
, BA0_EGPIODR
));
1989 static int snd_cs46xx_spdif_info(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_info
*uinfo
)
1991 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_IEC958
;
1996 static int snd_cs46xx_spdif_default_get(struct snd_kcontrol
*kcontrol
,
1997 struct snd_ctl_elem_value
*ucontrol
)
1999 struct snd_cs46xx
*chip
= snd_kcontrol_chip(kcontrol
);
2000 struct dsp_spos_instance
* ins
= chip
->dsp_spos_instance
;
2002 mutex_lock(&chip
->spos_mutex
);
2003 ucontrol
->value
.iec958
.status
[0] = _wrap_all_bits((ins
->spdif_csuv_default
>> 24) & 0xff);
2004 ucontrol
->value
.iec958
.status
[1] = _wrap_all_bits((ins
->spdif_csuv_default
>> 16) & 0xff);
2005 ucontrol
->value
.iec958
.status
[2] = 0;
2006 ucontrol
->value
.iec958
.status
[3] = _wrap_all_bits((ins
->spdif_csuv_default
) & 0xff);
2007 mutex_unlock(&chip
->spos_mutex
);
2012 static int snd_cs46xx_spdif_default_put(struct snd_kcontrol
*kcontrol
,
2013 struct snd_ctl_elem_value
*ucontrol
)
2015 struct snd_cs46xx
* chip
= snd_kcontrol_chip(kcontrol
);
2016 struct dsp_spos_instance
* ins
= chip
->dsp_spos_instance
;
2020 mutex_lock(&chip
->spos_mutex
);
2021 val
= ((unsigned int)_wrap_all_bits(ucontrol
->value
.iec958
.status
[0]) << 24) |
2022 ((unsigned int)_wrap_all_bits(ucontrol
->value
.iec958
.status
[2]) << 16) |
2023 ((unsigned int)_wrap_all_bits(ucontrol
->value
.iec958
.status
[3])) |
2024 /* left and right validity bit */
2025 (1 << 13) | (1 << 12);
2028 change
= (unsigned int)ins
->spdif_csuv_default
!= val
;
2029 ins
->spdif_csuv_default
= val
;
2031 if ( !(ins
->spdif_status_out
& DSP_SPDIF_STATUS_PLAYBACK_OPEN
) )
2032 cs46xx_poke_via_dsp (chip
,SP_SPDOUT_CSUV
,val
);
2034 mutex_unlock(&chip
->spos_mutex
);
2039 static int snd_cs46xx_spdif_mask_get(struct snd_kcontrol
*kcontrol
,
2040 struct snd_ctl_elem_value
*ucontrol
)
2042 ucontrol
->value
.iec958
.status
[0] = 0xff;
2043 ucontrol
->value
.iec958
.status
[1] = 0xff;
2044 ucontrol
->value
.iec958
.status
[2] = 0x00;
2045 ucontrol
->value
.iec958
.status
[3] = 0xff;
2049 static int snd_cs46xx_spdif_stream_get(struct snd_kcontrol
*kcontrol
,
2050 struct snd_ctl_elem_value
*ucontrol
)
2052 struct snd_cs46xx
*chip
= snd_kcontrol_chip(kcontrol
);
2053 struct dsp_spos_instance
* ins
= chip
->dsp_spos_instance
;
2055 mutex_lock(&chip
->spos_mutex
);
2056 ucontrol
->value
.iec958
.status
[0] = _wrap_all_bits((ins
->spdif_csuv_stream
>> 24) & 0xff);
2057 ucontrol
->value
.iec958
.status
[1] = _wrap_all_bits((ins
->spdif_csuv_stream
>> 16) & 0xff);
2058 ucontrol
->value
.iec958
.status
[2] = 0;
2059 ucontrol
->value
.iec958
.status
[3] = _wrap_all_bits((ins
->spdif_csuv_stream
) & 0xff);
2060 mutex_unlock(&chip
->spos_mutex
);
2065 static int snd_cs46xx_spdif_stream_put(struct snd_kcontrol
*kcontrol
,
2066 struct snd_ctl_elem_value
*ucontrol
)
2068 struct snd_cs46xx
* chip
= snd_kcontrol_chip(kcontrol
);
2069 struct dsp_spos_instance
* ins
= chip
->dsp_spos_instance
;
2073 mutex_lock(&chip
->spos_mutex
);
2074 val
= ((unsigned int)_wrap_all_bits(ucontrol
->value
.iec958
.status
[0]) << 24) |
2075 ((unsigned int)_wrap_all_bits(ucontrol
->value
.iec958
.status
[1]) << 16) |
2076 ((unsigned int)_wrap_all_bits(ucontrol
->value
.iec958
.status
[3])) |
2077 /* left and right validity bit */
2078 (1 << 13) | (1 << 12);
2081 change
= ins
->spdif_csuv_stream
!= val
;
2082 ins
->spdif_csuv_stream
= val
;
2084 if ( ins
->spdif_status_out
& DSP_SPDIF_STATUS_PLAYBACK_OPEN
)
2085 cs46xx_poke_via_dsp (chip
,SP_SPDOUT_CSUV
,val
);
2087 mutex_unlock(&chip
->spos_mutex
);
2092 #endif /* CONFIG_SND_CS46XX_NEW_DSP */
2095 static struct snd_kcontrol_new snd_cs46xx_controls
[] __devinitdata
= {
2097 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
2098 .name
= "DAC Volume",
2099 .info
= snd_cs46xx_vol_info
,
2100 #ifndef CONFIG_SND_CS46XX_NEW_DSP
2101 .get
= snd_cs46xx_vol_get
,
2102 .put
= snd_cs46xx_vol_put
,
2103 .private_value
= BA1_PVOL
,
2105 .get
= snd_cs46xx_vol_dac_get
,
2106 .put
= snd_cs46xx_vol_dac_put
,
2111 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
2112 .name
= "ADC Volume",
2113 .info
= snd_cs46xx_vol_info
,
2114 .get
= snd_cs46xx_vol_get
,
2115 .put
= snd_cs46xx_vol_put
,
2116 #ifndef CONFIG_SND_CS46XX_NEW_DSP
2117 .private_value
= BA1_CVOL
,
2119 .private_value
= (VARIDECIMATE_SCB_ADDR
+ 0xE) << 2,
2122 #ifdef CONFIG_SND_CS46XX_NEW_DSP
2124 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
2125 .name
= "ADC Capture Switch",
2126 .info
= snd_mixer_boolean_info
,
2127 .get
= snd_cs46xx_adc_capture_get
,
2128 .put
= snd_cs46xx_adc_capture_put
2131 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
2132 .name
= "DAC Capture Switch",
2133 .info
= snd_mixer_boolean_info
,
2134 .get
= snd_cs46xx_pcm_capture_get
,
2135 .put
= snd_cs46xx_pcm_capture_put
2138 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
2139 .name
= SNDRV_CTL_NAME_IEC958("Output ",NONE
,SWITCH
),
2140 .info
= snd_mixer_boolean_info
,
2141 .get
= snd_cs46xx_iec958_get
,
2142 .put
= snd_cs46xx_iec958_put
,
2143 .private_value
= CS46XX_MIXER_SPDIF_OUTPUT_ELEMENT
,
2146 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
2147 .name
= SNDRV_CTL_NAME_IEC958("Input ",NONE
,SWITCH
),
2148 .info
= snd_mixer_boolean_info
,
2149 .get
= snd_cs46xx_iec958_get
,
2150 .put
= snd_cs46xx_iec958_put
,
2151 .private_value
= CS46XX_MIXER_SPDIF_INPUT_ELEMENT
,
2154 /* Input IEC958 volume does not work for the moment. (Benny) */
2156 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
2157 .name
= SNDRV_CTL_NAME_IEC958("Input ",NONE
,VOLUME
),
2158 .info
= snd_cs46xx_vol_info
,
2159 .get
= snd_cs46xx_vol_iec958_get
,
2160 .put
= snd_cs46xx_vol_iec958_put
,
2161 .private_value
= (ASYNCRX_SCB_ADDR
+ 0xE) << 2,
2165 .iface
= SNDRV_CTL_ELEM_IFACE_PCM
,
2166 .name
= SNDRV_CTL_NAME_IEC958("",PLAYBACK
,DEFAULT
),
2167 .info
= snd_cs46xx_spdif_info
,
2168 .get
= snd_cs46xx_spdif_default_get
,
2169 .put
= snd_cs46xx_spdif_default_put
,
2172 .iface
= SNDRV_CTL_ELEM_IFACE_PCM
,
2173 .name
= SNDRV_CTL_NAME_IEC958("",PLAYBACK
,MASK
),
2174 .info
= snd_cs46xx_spdif_info
,
2175 .get
= snd_cs46xx_spdif_mask_get
,
2176 .access
= SNDRV_CTL_ELEM_ACCESS_READ
2179 .iface
= SNDRV_CTL_ELEM_IFACE_PCM
,
2180 .name
= SNDRV_CTL_NAME_IEC958("",PLAYBACK
,PCM_STREAM
),
2181 .info
= snd_cs46xx_spdif_info
,
2182 .get
= snd_cs46xx_spdif_stream_get
,
2183 .put
= snd_cs46xx_spdif_stream_put
2189 #ifdef CONFIG_SND_CS46XX_NEW_DSP
2190 /* set primary cs4294 codec into Extended Audio Mode */
2191 static int snd_cs46xx_front_dup_get(struct snd_kcontrol
*kcontrol
,
2192 struct snd_ctl_elem_value
*ucontrol
)
2194 struct snd_cs46xx
*chip
= snd_kcontrol_chip(kcontrol
);
2196 val
= snd_ac97_read(chip
->ac97
[CS46XX_PRIMARY_CODEC_INDEX
], AC97_CSR_ACMODE
);
2197 ucontrol
->value
.integer
.value
[0] = (val
& 0x200) ? 0 : 1;
2201 static int snd_cs46xx_front_dup_put(struct snd_kcontrol
*kcontrol
,
2202 struct snd_ctl_elem_value
*ucontrol
)
2204 struct snd_cs46xx
*chip
= snd_kcontrol_chip(kcontrol
);
2205 return snd_ac97_update_bits(chip
->ac97
[CS46XX_PRIMARY_CODEC_INDEX
],
2206 AC97_CSR_ACMODE
, 0x200,
2207 ucontrol
->value
.integer
.value
[0] ? 0 : 0x200);
2210 static struct snd_kcontrol_new snd_cs46xx_front_dup_ctl
= {
2211 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
2212 .name
= "Duplicate Front",
2213 .info
= snd_mixer_boolean_info
,
2214 .get
= snd_cs46xx_front_dup_get
,
2215 .put
= snd_cs46xx_front_dup_put
,
2219 #ifdef CONFIG_SND_CS46XX_NEW_DSP
2220 /* Only available on the Hercules Game Theater XP soundcard */
2221 static struct snd_kcontrol_new snd_hercules_controls
[] = {
2223 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
2224 .name
= "Optical/Coaxial SPDIF Input Switch",
2225 .info
= snd_mixer_boolean_info
,
2226 .get
= snd_herc_spdif_select_get
,
2227 .put
= snd_herc_spdif_select_put
,
2232 static void snd_cs46xx_codec_reset (struct snd_ac97
* ac97
)
2234 unsigned long end_time
;
2237 /* reset to defaults */
2238 snd_ac97_write(ac97
, AC97_RESET
, 0);
2240 /* set the desired CODEC mode */
2241 if (ac97
->num
== CS46XX_PRIMARY_CODEC_INDEX
) {
2242 snd_printdd("cs46xx: CODEC1 mode %04x\n", 0x0);
2243 snd_cs46xx_ac97_write(ac97
, AC97_CSR_ACMODE
, 0x0);
2244 } else if (ac97
->num
== CS46XX_SECONDARY_CODEC_INDEX
) {
2245 snd_printdd("cs46xx: CODEC2 mode %04x\n", 0x3);
2246 snd_cs46xx_ac97_write(ac97
, AC97_CSR_ACMODE
, 0x3);
2248 snd_BUG(); /* should never happen ... */
2253 /* it's necessary to wait awhile until registers are accessible after RESET */
2254 /* because the PCM or MASTER volume registers can be modified, */
2255 /* the REC_GAIN register is used for tests */
2256 end_time
= jiffies
+ HZ
;
2258 unsigned short ext_mid
;
2260 /* use preliminary reads to settle the communication */
2261 snd_ac97_read(ac97
, AC97_RESET
);
2262 snd_ac97_read(ac97
, AC97_VENDOR_ID1
);
2263 snd_ac97_read(ac97
, AC97_VENDOR_ID2
);
2265 ext_mid
= snd_ac97_read(ac97
, AC97_EXTENDED_MID
);
2266 if (ext_mid
!= 0xffff && (ext_mid
& 1) != 0)
2269 /* test if we can write to the record gain volume register */
2270 snd_ac97_write(ac97
, AC97_REC_GAIN
, 0x8a05);
2271 if ((err
= snd_ac97_read(ac97
, AC97_REC_GAIN
)) == 0x8a05)
2275 } while (time_after_eq(end_time
, jiffies
));
2277 snd_printk(KERN_ERR
"CS46xx secondary codec doesn't respond!\n");
2281 static int __devinit
cs46xx_detect_codec(struct snd_cs46xx
*chip
, int codec
)
2284 struct snd_ac97_template ac97
;
2286 memset(&ac97
, 0, sizeof(ac97
));
2287 ac97
.private_data
= chip
;
2288 ac97
.private_free
= snd_cs46xx_mixer_free_ac97
;
2290 if (chip
->amplifier_ctrl
== amp_voyetra
)
2291 ac97
.scaps
= AC97_SCAP_INV_EAPD
;
2293 if (codec
== CS46XX_SECONDARY_CODEC_INDEX
) {
2294 snd_cs46xx_codec_write(chip
, AC97_RESET
, 0, codec
);
2296 if (snd_cs46xx_codec_read(chip
, AC97_RESET
, codec
) & 0x8000) {
2297 snd_printdd("snd_cs46xx: seconadry codec not present\n");
2302 snd_cs46xx_codec_write(chip
, AC97_MASTER
, 0x8000, codec
);
2303 for (idx
= 0; idx
< 100; ++idx
) {
2304 if (snd_cs46xx_codec_read(chip
, AC97_MASTER
, codec
) == 0x8000) {
2305 err
= snd_ac97_mixer(chip
->ac97_bus
, &ac97
, &chip
->ac97
[codec
]);
2310 snd_printdd("snd_cs46xx: codec %d detection timeout\n", codec
);
2314 int __devinit
snd_cs46xx_mixer(struct snd_cs46xx
*chip
, int spdif_device
)
2316 struct snd_card
*card
= chip
->card
;
2317 struct snd_ctl_elem_id id
;
2320 static struct snd_ac97_bus_ops ops
= {
2321 #ifdef CONFIG_SND_CS46XX_NEW_DSP
2322 .reset
= snd_cs46xx_codec_reset
,
2324 .write
= snd_cs46xx_ac97_write
,
2325 .read
= snd_cs46xx_ac97_read
,
2328 /* detect primary codec */
2329 chip
->nr_ac97_codecs
= 0;
2330 snd_printdd("snd_cs46xx: detecting primary codec\n");
2331 if ((err
= snd_ac97_bus(card
, 0, &ops
, chip
, &chip
->ac97_bus
)) < 0)
2333 chip
->ac97_bus
->private_free
= snd_cs46xx_mixer_free_ac97_bus
;
2335 if (cs46xx_detect_codec(chip
, CS46XX_PRIMARY_CODEC_INDEX
) < 0)
2337 chip
->nr_ac97_codecs
= 1;
2339 #ifdef CONFIG_SND_CS46XX_NEW_DSP
2340 snd_printdd("snd_cs46xx: detecting seconadry codec\n");
2341 /* try detect a secondary codec */
2342 if (! cs46xx_detect_codec(chip
, CS46XX_SECONDARY_CODEC_INDEX
))
2343 chip
->nr_ac97_codecs
= 2;
2344 #endif /* CONFIG_SND_CS46XX_NEW_DSP */
2346 /* add cs4630 mixer controls */
2347 for (idx
= 0; idx
< ARRAY_SIZE(snd_cs46xx_controls
); idx
++) {
2348 struct snd_kcontrol
*kctl
;
2349 kctl
= snd_ctl_new1(&snd_cs46xx_controls
[idx
], chip
);
2350 if (kctl
&& kctl
->id
.iface
== SNDRV_CTL_ELEM_IFACE_PCM
)
2351 kctl
->id
.device
= spdif_device
;
2352 if ((err
= snd_ctl_add(card
, kctl
)) < 0)
2356 /* get EAPD mixer switch (for voyetra hack) */
2357 memset(&id
, 0, sizeof(id
));
2358 id
.iface
= SNDRV_CTL_ELEM_IFACE_MIXER
;
2359 strcpy(id
.name
, "External Amplifier");
2360 chip
->eapd_switch
= snd_ctl_find_id(chip
->card
, &id
);
2362 #ifdef CONFIG_SND_CS46XX_NEW_DSP
2363 if (chip
->nr_ac97_codecs
== 1) {
2364 unsigned int id2
= chip
->ac97
[CS46XX_PRIMARY_CODEC_INDEX
]->id
& 0xffff;
2365 if (id2
== 0x592b || id2
== 0x592d) {
2366 err
= snd_ctl_add(card
, snd_ctl_new1(&snd_cs46xx_front_dup_ctl
, chip
));
2369 snd_ac97_write_cache(chip
->ac97
[CS46XX_PRIMARY_CODEC_INDEX
],
2370 AC97_CSR_ACMODE
, 0x200);
2373 /* do soundcard specific mixer setup */
2374 if (chip
->mixer_init
) {
2375 snd_printdd ("calling chip->mixer_init(chip);\n");
2376 chip
->mixer_init(chip
);
2380 /* turn on amplifier */
2381 chip
->amplifier_ctrl(chip
, 1);
2390 static void snd_cs46xx_midi_reset(struct snd_cs46xx
*chip
)
2392 snd_cs46xx_pokeBA0(chip
, BA0_MIDCR
, MIDCR_MRST
);
2394 snd_cs46xx_pokeBA0(chip
, BA0_MIDCR
, chip
->midcr
);
2397 static int snd_cs46xx_midi_input_open(struct snd_rawmidi_substream
*substream
)
2399 struct snd_cs46xx
*chip
= substream
->rmidi
->private_data
;
2401 chip
->active_ctrl(chip
, 1);
2402 spin_lock_irq(&chip
->reg_lock
);
2403 chip
->uartm
|= CS46XX_MODE_INPUT
;
2404 chip
->midcr
|= MIDCR_RXE
;
2405 chip
->midi_input
= substream
;
2406 if (!(chip
->uartm
& CS46XX_MODE_OUTPUT
)) {
2407 snd_cs46xx_midi_reset(chip
);
2409 snd_cs46xx_pokeBA0(chip
, BA0_MIDCR
, chip
->midcr
);
2411 spin_unlock_irq(&chip
->reg_lock
);
2415 static int snd_cs46xx_midi_input_close(struct snd_rawmidi_substream
*substream
)
2417 struct snd_cs46xx
*chip
= substream
->rmidi
->private_data
;
2419 spin_lock_irq(&chip
->reg_lock
);
2420 chip
->midcr
&= ~(MIDCR_RXE
| MIDCR_RIE
);
2421 chip
->midi_input
= NULL
;
2422 if (!(chip
->uartm
& CS46XX_MODE_OUTPUT
)) {
2423 snd_cs46xx_midi_reset(chip
);
2425 snd_cs46xx_pokeBA0(chip
, BA0_MIDCR
, chip
->midcr
);
2427 chip
->uartm
&= ~CS46XX_MODE_INPUT
;
2428 spin_unlock_irq(&chip
->reg_lock
);
2429 chip
->active_ctrl(chip
, -1);
2433 static int snd_cs46xx_midi_output_open(struct snd_rawmidi_substream
*substream
)
2435 struct snd_cs46xx
*chip
= substream
->rmidi
->private_data
;
2437 chip
->active_ctrl(chip
, 1);
2439 spin_lock_irq(&chip
->reg_lock
);
2440 chip
->uartm
|= CS46XX_MODE_OUTPUT
;
2441 chip
->midcr
|= MIDCR_TXE
;
2442 chip
->midi_output
= substream
;
2443 if (!(chip
->uartm
& CS46XX_MODE_INPUT
)) {
2444 snd_cs46xx_midi_reset(chip
);
2446 snd_cs46xx_pokeBA0(chip
, BA0_MIDCR
, chip
->midcr
);
2448 spin_unlock_irq(&chip
->reg_lock
);
2452 static int snd_cs46xx_midi_output_close(struct snd_rawmidi_substream
*substream
)
2454 struct snd_cs46xx
*chip
= substream
->rmidi
->private_data
;
2456 spin_lock_irq(&chip
->reg_lock
);
2457 chip
->midcr
&= ~(MIDCR_TXE
| MIDCR_TIE
);
2458 chip
->midi_output
= NULL
;
2459 if (!(chip
->uartm
& CS46XX_MODE_INPUT
)) {
2460 snd_cs46xx_midi_reset(chip
);
2462 snd_cs46xx_pokeBA0(chip
, BA0_MIDCR
, chip
->midcr
);
2464 chip
->uartm
&= ~CS46XX_MODE_OUTPUT
;
2465 spin_unlock_irq(&chip
->reg_lock
);
2466 chip
->active_ctrl(chip
, -1);
2470 static void snd_cs46xx_midi_input_trigger(struct snd_rawmidi_substream
*substream
, int up
)
2472 unsigned long flags
;
2473 struct snd_cs46xx
*chip
= substream
->rmidi
->private_data
;
2475 spin_lock_irqsave(&chip
->reg_lock
, flags
);
2477 if ((chip
->midcr
& MIDCR_RIE
) == 0) {
2478 chip
->midcr
|= MIDCR_RIE
;
2479 snd_cs46xx_pokeBA0(chip
, BA0_MIDCR
, chip
->midcr
);
2482 if (chip
->midcr
& MIDCR_RIE
) {
2483 chip
->midcr
&= ~MIDCR_RIE
;
2484 snd_cs46xx_pokeBA0(chip
, BA0_MIDCR
, chip
->midcr
);
2487 spin_unlock_irqrestore(&chip
->reg_lock
, flags
);
2490 static void snd_cs46xx_midi_output_trigger(struct snd_rawmidi_substream
*substream
, int up
)
2492 unsigned long flags
;
2493 struct snd_cs46xx
*chip
= substream
->rmidi
->private_data
;
2496 spin_lock_irqsave(&chip
->reg_lock
, flags
);
2498 if ((chip
->midcr
& MIDCR_TIE
) == 0) {
2499 chip
->midcr
|= MIDCR_TIE
;
2500 /* fill UART FIFO buffer at first, and turn Tx interrupts only if necessary */
2501 while ((chip
->midcr
& MIDCR_TIE
) &&
2502 (snd_cs46xx_peekBA0(chip
, BA0_MIDSR
) & MIDSR_TBF
) == 0) {
2503 if (snd_rawmidi_transmit(substream
, &byte
, 1) != 1) {
2504 chip
->midcr
&= ~MIDCR_TIE
;
2506 snd_cs46xx_pokeBA0(chip
, BA0_MIDWP
, byte
);
2509 snd_cs46xx_pokeBA0(chip
, BA0_MIDCR
, chip
->midcr
);
2512 if (chip
->midcr
& MIDCR_TIE
) {
2513 chip
->midcr
&= ~MIDCR_TIE
;
2514 snd_cs46xx_pokeBA0(chip
, BA0_MIDCR
, chip
->midcr
);
2517 spin_unlock_irqrestore(&chip
->reg_lock
, flags
);
2520 static struct snd_rawmidi_ops snd_cs46xx_midi_output
=
2522 .open
= snd_cs46xx_midi_output_open
,
2523 .close
= snd_cs46xx_midi_output_close
,
2524 .trigger
= snd_cs46xx_midi_output_trigger
,
2527 static struct snd_rawmidi_ops snd_cs46xx_midi_input
=
2529 .open
= snd_cs46xx_midi_input_open
,
2530 .close
= snd_cs46xx_midi_input_close
,
2531 .trigger
= snd_cs46xx_midi_input_trigger
,
2534 int __devinit
snd_cs46xx_midi(struct snd_cs46xx
*chip
, int device
, struct snd_rawmidi
**rrawmidi
)
2536 struct snd_rawmidi
*rmidi
;
2541 if ((err
= snd_rawmidi_new(chip
->card
, "CS46XX", device
, 1, 1, &rmidi
)) < 0)
2543 strcpy(rmidi
->name
, "CS46XX");
2544 snd_rawmidi_set_ops(rmidi
, SNDRV_RAWMIDI_STREAM_OUTPUT
, &snd_cs46xx_midi_output
);
2545 snd_rawmidi_set_ops(rmidi
, SNDRV_RAWMIDI_STREAM_INPUT
, &snd_cs46xx_midi_input
);
2546 rmidi
->info_flags
|= SNDRV_RAWMIDI_INFO_OUTPUT
| SNDRV_RAWMIDI_INFO_INPUT
| SNDRV_RAWMIDI_INFO_DUPLEX
;
2547 rmidi
->private_data
= chip
;
2548 chip
->rmidi
= rmidi
;
2556 * gameport interface
2559 #if defined(CONFIG_GAMEPORT) || (defined(MODULE) && defined(CONFIG_GAMEPORT_MODULE))
2561 static void snd_cs46xx_gameport_trigger(struct gameport
*gameport
)
2563 struct snd_cs46xx
*chip
= gameport_get_port_data(gameport
);
2565 if (snd_BUG_ON(!chip
))
2567 snd_cs46xx_pokeBA0(chip
, BA0_JSPT
, 0xFF); //outb(gameport->io, 0xFF);
2570 static unsigned char snd_cs46xx_gameport_read(struct gameport
*gameport
)
2572 struct snd_cs46xx
*chip
= gameport_get_port_data(gameport
);
2574 if (snd_BUG_ON(!chip
))
2576 return snd_cs46xx_peekBA0(chip
, BA0_JSPT
); //inb(gameport->io);
2579 static int snd_cs46xx_gameport_cooked_read(struct gameport
*gameport
, int *axes
, int *buttons
)
2581 struct snd_cs46xx
*chip
= gameport_get_port_data(gameport
);
2582 unsigned js1
, js2
, jst
;
2584 if (snd_BUG_ON(!chip
))
2587 js1
= snd_cs46xx_peekBA0(chip
, BA0_JSC1
);
2588 js2
= snd_cs46xx_peekBA0(chip
, BA0_JSC2
);
2589 jst
= snd_cs46xx_peekBA0(chip
, BA0_JSPT
);
2591 *buttons
= (~jst
>> 4) & 0x0F;
2593 axes
[0] = ((js1
& JSC1_Y1V_MASK
) >> JSC1_Y1V_SHIFT
) & 0xFFFF;
2594 axes
[1] = ((js1
& JSC1_X1V_MASK
) >> JSC1_X1V_SHIFT
) & 0xFFFF;
2595 axes
[2] = ((js2
& JSC2_Y2V_MASK
) >> JSC2_Y2V_SHIFT
) & 0xFFFF;
2596 axes
[3] = ((js2
& JSC2_X2V_MASK
) >> JSC2_X2V_SHIFT
) & 0xFFFF;
2598 for(jst
=0;jst
<4;++jst
)
2599 if(axes
[jst
]==0xFFFF) axes
[jst
] = -1;
2603 static int snd_cs46xx_gameport_open(struct gameport
*gameport
, int mode
)
2606 case GAMEPORT_MODE_COOKED
:
2608 case GAMEPORT_MODE_RAW
:
2616 int __devinit
snd_cs46xx_gameport(struct snd_cs46xx
*chip
)
2618 struct gameport
*gp
;
2620 chip
->gameport
= gp
= gameport_allocate_port();
2622 printk(KERN_ERR
"cs46xx: cannot allocate memory for gameport\n");
2626 gameport_set_name(gp
, "CS46xx Gameport");
2627 gameport_set_phys(gp
, "pci%s/gameport0", pci_name(chip
->pci
));
2628 gameport_set_dev_parent(gp
, &chip
->pci
->dev
);
2629 gameport_set_port_data(gp
, chip
);
2631 gp
->open
= snd_cs46xx_gameport_open
;
2632 gp
->read
= snd_cs46xx_gameport_read
;
2633 gp
->trigger
= snd_cs46xx_gameport_trigger
;
2634 gp
->cooked_read
= snd_cs46xx_gameport_cooked_read
;
2636 snd_cs46xx_pokeBA0(chip
, BA0_JSIO
, 0xFF); // ?
2637 snd_cs46xx_pokeBA0(chip
, BA0_JSCTL
, JSCTL_SP_MEDIUM_SLOW
);
2639 gameport_register_port(gp
);
2644 static inline void snd_cs46xx_remove_gameport(struct snd_cs46xx
*chip
)
2646 if (chip
->gameport
) {
2647 gameport_unregister_port(chip
->gameport
);
2648 chip
->gameport
= NULL
;
2652 int __devinit
snd_cs46xx_gameport(struct snd_cs46xx
*chip
) { return -ENOSYS
; }
2653 static inline void snd_cs46xx_remove_gameport(struct snd_cs46xx
*chip
) { }
2654 #endif /* CONFIG_GAMEPORT */
2656 #ifdef CONFIG_PROC_FS
2661 static ssize_t
snd_cs46xx_io_read(struct snd_info_entry
*entry
,
2662 void *file_private_data
,
2663 struct file
*file
, char __user
*buf
,
2664 size_t count
, loff_t pos
)
2666 struct snd_cs46xx_region
*region
= entry
->private_data
;
2668 if (copy_to_user_fromio(buf
, region
->remap_addr
+ pos
, count
))
2673 static struct snd_info_entry_ops snd_cs46xx_proc_io_ops
= {
2674 .read
= snd_cs46xx_io_read
,
2677 static int __devinit
snd_cs46xx_proc_init(struct snd_card
*card
, struct snd_cs46xx
*chip
)
2679 struct snd_info_entry
*entry
;
2682 for (idx
= 0; idx
< 5; idx
++) {
2683 struct snd_cs46xx_region
*region
= &chip
->region
.idx
[idx
];
2684 if (! snd_card_proc_new(card
, region
->name
, &entry
)) {
2685 entry
->content
= SNDRV_INFO_CONTENT_DATA
;
2686 entry
->private_data
= chip
;
2687 entry
->c
.ops
= &snd_cs46xx_proc_io_ops
;
2688 entry
->size
= region
->size
;
2689 entry
->mode
= S_IFREG
| S_IRUSR
;
2692 #ifdef CONFIG_SND_CS46XX_NEW_DSP
2693 cs46xx_dsp_proc_init(card
, chip
);
2698 static int snd_cs46xx_proc_done(struct snd_cs46xx
*chip
)
2700 #ifdef CONFIG_SND_CS46XX_NEW_DSP
2701 cs46xx_dsp_proc_done(chip
);
2705 #else /* !CONFIG_PROC_FS */
2706 #define snd_cs46xx_proc_init(card, chip)
2707 #define snd_cs46xx_proc_done(chip)
2713 static void snd_cs46xx_hw_stop(struct snd_cs46xx
*chip
)
2717 tmp
= snd_cs46xx_peek(chip
, BA1_PFIE
);
2720 snd_cs46xx_poke(chip
, BA1_PFIE
, tmp
); /* playback interrupt disable */
2722 tmp
= snd_cs46xx_peek(chip
, BA1_CIE
);
2725 snd_cs46xx_poke(chip
, BA1_CIE
, tmp
); /* capture interrupt disable */
2728 * Stop playback DMA.
2730 tmp
= snd_cs46xx_peek(chip
, BA1_PCTL
);
2731 snd_cs46xx_poke(chip
, BA1_PCTL
, tmp
& 0x0000ffff);
2736 tmp
= snd_cs46xx_peek(chip
, BA1_CCTL
);
2737 snd_cs46xx_poke(chip
, BA1_CCTL
, tmp
& 0xffff0000);
2740 * Reset the processor.
2742 snd_cs46xx_reset(chip
);
2744 snd_cs46xx_proc_stop(chip
);
2747 * Power down the PLL.
2749 snd_cs46xx_pokeBA0(chip
, BA0_CLKCR1
, 0);
2752 * Turn off the Processor by turning off the software clock enable flag in
2753 * the clock control register.
2755 tmp
= snd_cs46xx_peekBA0(chip
, BA0_CLKCR1
) & ~CLKCR1_SWCE
;
2756 snd_cs46xx_pokeBA0(chip
, BA0_CLKCR1
, tmp
);
2760 static int snd_cs46xx_free(struct snd_cs46xx
*chip
)
2764 if (snd_BUG_ON(!chip
))
2767 if (chip
->active_ctrl
)
2768 chip
->active_ctrl(chip
, 1);
2770 snd_cs46xx_remove_gameport(chip
);
2772 if (chip
->amplifier_ctrl
)
2773 chip
->amplifier_ctrl(chip
, -chip
->amplifier
); /* force to off */
2775 snd_cs46xx_proc_done(chip
);
2777 if (chip
->region
.idx
[0].resource
)
2778 snd_cs46xx_hw_stop(chip
);
2781 free_irq(chip
->irq
, chip
);
2783 if (chip
->active_ctrl
)
2784 chip
->active_ctrl(chip
, -chip
->amplifier
);
2786 for (idx
= 0; idx
< 5; idx
++) {
2787 struct snd_cs46xx_region
*region
= &chip
->region
.idx
[idx
];
2788 if (region
->remap_addr
)
2789 iounmap(region
->remap_addr
);
2790 release_and_free_resource(region
->resource
);
2793 #ifdef CONFIG_SND_CS46XX_NEW_DSP
2794 if (chip
->dsp_spos_instance
) {
2795 cs46xx_dsp_spos_destroy(chip
);
2796 chip
->dsp_spos_instance
= NULL
;
2801 kfree(chip
->saved_regs
);
2804 pci_disable_device(chip
->pci
);
2809 static int snd_cs46xx_dev_free(struct snd_device
*device
)
2811 struct snd_cs46xx
*chip
= device
->device_data
;
2812 return snd_cs46xx_free(chip
);
2818 static int snd_cs46xx_chip_init(struct snd_cs46xx
*chip
)
2823 * First, blast the clock control register to zero so that the PLL starts
2824 * out in a known state, and blast the master serial port control register
2825 * to zero so that the serial ports also start out in a known state.
2827 snd_cs46xx_pokeBA0(chip
, BA0_CLKCR1
, 0);
2828 snd_cs46xx_pokeBA0(chip
, BA0_SERMC1
, 0);
2831 * If we are in AC97 mode, then we must set the part to a host controlled
2832 * AC-link. Otherwise, we won't be able to bring up the link.
2834 #ifdef CONFIG_SND_CS46XX_NEW_DSP
2835 snd_cs46xx_pokeBA0(chip
, BA0_SERACC
, SERACC_HSP
| SERACC_CHIP_TYPE_2_0
|
2836 SERACC_TWO_CODECS
); /* 2.00 dual codecs */
2837 /* snd_cs46xx_pokeBA0(chip, BA0_SERACC, SERACC_HSP | SERACC_CHIP_TYPE_2_0); */ /* 2.00 codec */
2839 snd_cs46xx_pokeBA0(chip
, BA0_SERACC
, SERACC_HSP
| SERACC_CHIP_TYPE_1_03
); /* 1.03 codec */
2843 * Drive the ARST# pin low for a minimum of 1uS (as defined in the AC97
2844 * spec) and then drive it high. This is done for non AC97 modes since
2845 * there might be logic external to the CS461x that uses the ARST# line
2848 snd_cs46xx_pokeBA0(chip
, BA0_ACCTL
, 0);
2849 #ifdef CONFIG_SND_CS46XX_NEW_DSP
2850 snd_cs46xx_pokeBA0(chip
, BA0_ACCTL2
, 0);
2853 snd_cs46xx_pokeBA0(chip
, BA0_ACCTL
, ACCTL_RSTN
);
2854 #ifdef CONFIG_SND_CS46XX_NEW_DSP
2855 snd_cs46xx_pokeBA0(chip
, BA0_ACCTL2
, ACCTL_RSTN
);
2859 * The first thing we do here is to enable sync generation. As soon
2860 * as we start receiving bit clock, we'll start producing the SYNC
2863 snd_cs46xx_pokeBA0(chip
, BA0_ACCTL
, ACCTL_ESYN
| ACCTL_RSTN
);
2864 #ifdef CONFIG_SND_CS46XX_NEW_DSP
2865 snd_cs46xx_pokeBA0(chip
, BA0_ACCTL2
, ACCTL_ESYN
| ACCTL_RSTN
);
2869 * Now wait for a short while to allow the AC97 part to start
2870 * generating bit clock (so we don't try to start the PLL without an
2876 * Set the serial port timing configuration, so that
2877 * the clock control circuit gets its clock from the correct place.
2879 snd_cs46xx_pokeBA0(chip
, BA0_SERMC1
, SERMC1_PTC_AC97
);
2882 * Write the selected clock control setup to the hardware. Do not turn on
2883 * SWCE yet (if requested), so that the devices clocked by the output of
2884 * PLL are not clocked until the PLL is stable.
2886 snd_cs46xx_pokeBA0(chip
, BA0_PLLCC
, PLLCC_LPF_1050_2780_KHZ
| PLLCC_CDR_73_104_MHZ
);
2887 snd_cs46xx_pokeBA0(chip
, BA0_PLLM
, 0x3a);
2888 snd_cs46xx_pokeBA0(chip
, BA0_CLKCR2
, CLKCR2_PDIVS_8
);
2893 snd_cs46xx_pokeBA0(chip
, BA0_CLKCR1
, CLKCR1_PLLP
);
2896 * Wait until the PLL has stabilized.
2901 * Turn on clocking of the core so that we can setup the serial ports.
2903 snd_cs46xx_pokeBA0(chip
, BA0_CLKCR1
, CLKCR1_PLLP
| CLKCR1_SWCE
);
2906 * Enable FIFO Host Bypass
2908 snd_cs46xx_pokeBA0(chip
, BA0_SERBCF
, SERBCF_HBP
);
2911 * Fill the serial port FIFOs with silence.
2913 snd_cs46xx_clear_serial_FIFOs(chip
);
2916 * Set the serial port FIFO pointer to the first sample in the FIFO.
2918 /* snd_cs46xx_pokeBA0(chip, BA0_SERBSP, 0); */
2921 * Write the serial port configuration to the part. The master
2922 * enable bit is not set until all other values have been written.
2924 snd_cs46xx_pokeBA0(chip
, BA0_SERC1
, SERC1_SO1F_AC97
| SERC1_SO1EN
);
2925 snd_cs46xx_pokeBA0(chip
, BA0_SERC2
, SERC2_SI1F_AC97
| SERC1_SO1EN
);
2926 snd_cs46xx_pokeBA0(chip
, BA0_SERMC1
, SERMC1_PTC_AC97
| SERMC1_MSPE
);
2929 #ifdef CONFIG_SND_CS46XX_NEW_DSP
2930 snd_cs46xx_pokeBA0(chip
, BA0_SERC7
, SERC7_ASDI2EN
);
2931 snd_cs46xx_pokeBA0(chip
, BA0_SERC3
, 0);
2932 snd_cs46xx_pokeBA0(chip
, BA0_SERC4
, 0);
2933 snd_cs46xx_pokeBA0(chip
, BA0_SERC5
, 0);
2934 snd_cs46xx_pokeBA0(chip
, BA0_SERC6
, 1);
2941 * Wait for the codec ready signal from the AC97 codec.
2944 while (timeout
-- > 0) {
2946 * Read the AC97 status register to see if we've seen a CODEC READY
2947 * signal from the AC97 codec.
2949 if (snd_cs46xx_peekBA0(chip
, BA0_ACSTS
) & ACSTS_CRDY
)
2955 snd_printk(KERN_ERR
"create - never read codec ready from AC'97\n");
2956 snd_printk(KERN_ERR
"it is not probably bug, try to use CS4236 driver\n");
2959 #ifdef CONFIG_SND_CS46XX_NEW_DSP
2962 for (count
= 0; count
< 150; count
++) {
2963 /* First, we want to wait for a short time. */
2966 if (snd_cs46xx_peekBA0(chip
, BA0_ACSTS2
) & ACSTS_CRDY
)
2971 * Make sure CODEC is READY.
2973 if (!(snd_cs46xx_peekBA0(chip
, BA0_ACSTS2
) & ACSTS_CRDY
))
2974 snd_printdd("cs46xx: never read card ready from secondary AC'97\n");
2979 * Assert the vaid frame signal so that we can start sending commands
2980 * to the AC97 codec.
2982 snd_cs46xx_pokeBA0(chip
, BA0_ACCTL
, ACCTL_VFRM
| ACCTL_ESYN
| ACCTL_RSTN
);
2983 #ifdef CONFIG_SND_CS46XX_NEW_DSP
2984 snd_cs46xx_pokeBA0(chip
, BA0_ACCTL2
, ACCTL_VFRM
| ACCTL_ESYN
| ACCTL_RSTN
);
2989 * Wait until we've sampled input slots 3 and 4 as valid, meaning that
2990 * the codec is pumping ADC data across the AC-link.
2993 while (timeout
-- > 0) {
2995 * Read the input slot valid register and see if input slots 3 and
2998 if ((snd_cs46xx_peekBA0(chip
, BA0_ACISV
) & (ACISV_ISV3
| ACISV_ISV4
)) == (ACISV_ISV3
| ACISV_ISV4
))
3003 #ifndef CONFIG_SND_CS46XX_NEW_DSP
3004 snd_printk(KERN_ERR
"create - never read ISV3 & ISV4 from AC'97\n");
3007 /* This may happen on a cold boot with a Terratec SiXPack 5.1.
3008 Reloading the driver may help, if there's other soundcards
3009 with the same problem I would like to know. (Benny) */
3011 snd_printk(KERN_ERR
"ERROR: snd-cs46xx: never read ISV3 & ISV4 from AC'97\n");
3012 snd_printk(KERN_ERR
" Try reloading the ALSA driver, if you find something\n");
3013 snd_printk(KERN_ERR
" broken or not working on your soundcard upon\n");
3014 snd_printk(KERN_ERR
" this message please report to alsa-devel@alsa-project.org\n");
3021 * Now, assert valid frame and the slot 3 and 4 valid bits. This will
3022 * commense the transfer of digital audio data to the AC97 codec.
3025 snd_cs46xx_pokeBA0(chip
, BA0_ACOSV
, ACOSV_SLV3
| ACOSV_SLV4
);
3029 * Power down the DAC and ADC. We will power them up (if) when we need
3032 /* snd_cs46xx_pokeBA0(chip, BA0_AC97_POWERDOWN, 0x300); */
3035 * Turn off the Processor by turning off the software clock enable flag in
3036 * the clock control register.
3038 /* tmp = snd_cs46xx_peekBA0(chip, BA0_CLKCR1) & ~CLKCR1_SWCE; */
3039 /* snd_cs46xx_pokeBA0(chip, BA0_CLKCR1, tmp); */
3045 * start and load DSP
3048 static void cs46xx_enable_stream_irqs(struct snd_cs46xx
*chip
)
3052 snd_cs46xx_pokeBA0(chip
, BA0_HICR
, HICR_IEV
| HICR_CHGM
);
3054 tmp
= snd_cs46xx_peek(chip
, BA1_PFIE
);
3056 snd_cs46xx_poke(chip
, BA1_PFIE
, tmp
); /* playback interrupt enable */
3058 tmp
= snd_cs46xx_peek(chip
, BA1_CIE
);
3061 snd_cs46xx_poke(chip
, BA1_CIE
, tmp
); /* capture interrupt enable */
3064 int __devinit
snd_cs46xx_start_dsp(struct snd_cs46xx
*chip
)
3068 * Reset the processor.
3070 snd_cs46xx_reset(chip
);
3072 * Download the image to the processor.
3074 #ifdef CONFIG_SND_CS46XX_NEW_DSP
3076 if (cs46xx_dsp_load_module(chip
, &cwcemb80_module
) < 0) {
3077 snd_printk(KERN_ERR
"image download error\n");
3082 if (cs46xx_dsp_load_module(chip
, &cwc4630_module
) < 0) {
3083 snd_printk(KERN_ERR
"image download error [cwc4630]\n");
3087 if (cs46xx_dsp_load_module(chip
, &cwcasync_module
) < 0) {
3088 snd_printk(KERN_ERR
"image download error [cwcasync]\n");
3092 if (cs46xx_dsp_load_module(chip
, &cwcsnoop_module
) < 0) {
3093 snd_printk(KERN_ERR
"image download error [cwcsnoop]\n");
3097 if (cs46xx_dsp_load_module(chip
, &cwcbinhack_module
) < 0) {
3098 snd_printk(KERN_ERR
"image download error [cwcbinhack]\n");
3102 if (cs46xx_dsp_load_module(chip
, &cwcdma_module
) < 0) {
3103 snd_printk(KERN_ERR
"image download error [cwcdma]\n");
3107 if (cs46xx_dsp_scb_and_task_init(chip
) < 0)
3111 if (snd_cs46xx_download_image(chip
) < 0) {
3112 snd_printk(KERN_ERR
"image download error\n");
3117 * Stop playback DMA.
3119 tmp
= snd_cs46xx_peek(chip
, BA1_PCTL
);
3120 chip
->play_ctl
= tmp
& 0xffff0000;
3121 snd_cs46xx_poke(chip
, BA1_PCTL
, tmp
& 0x0000ffff);
3127 tmp
= snd_cs46xx_peek(chip
, BA1_CCTL
);
3128 chip
->capt
.ctl
= tmp
& 0x0000ffff;
3129 snd_cs46xx_poke(chip
, BA1_CCTL
, tmp
& 0xffff0000);
3133 snd_cs46xx_set_play_sample_rate(chip
, 8000);
3134 snd_cs46xx_set_capture_sample_rate(chip
, 8000);
3136 snd_cs46xx_proc_start(chip
);
3138 cs46xx_enable_stream_irqs(chip
);
3140 #ifndef CONFIG_SND_CS46XX_NEW_DSP
3141 /* set the attenuation to 0dB */
3142 snd_cs46xx_poke(chip
, BA1_PVOL
, 0x80008000);
3143 snd_cs46xx_poke(chip
, BA1_CVOL
, 0x80008000);
3151 * AMP control - null AMP
3154 static void amp_none(struct snd_cs46xx
*chip
, int change
)
3158 #ifdef CONFIG_SND_CS46XX_NEW_DSP
3159 static int voyetra_setup_eapd_slot(struct snd_cs46xx
*chip
)
3162 u32 idx
, valid_slots
,tmp
,powerdown
= 0;
3163 u16 modem_power
,pin_config
,logic_type
;
3165 snd_printdd ("cs46xx: cs46xx_setup_eapd_slot()+\n");
3168 * See if the devices are powered down. If so, we must power them up first
3169 * or they will not respond.
3171 tmp
= snd_cs46xx_peekBA0(chip
, BA0_CLKCR1
);
3173 if (!(tmp
& CLKCR1_SWCE
)) {
3174 snd_cs46xx_pokeBA0(chip
, BA0_CLKCR1
, tmp
| CLKCR1_SWCE
);
3179 * Clear PRA. The Bonzo chip will be used for GPIO not for modem
3182 if(chip
->nr_ac97_codecs
!= 2) {
3183 snd_printk (KERN_ERR
"cs46xx: cs46xx_setup_eapd_slot() - no secondary codec configured\n");
3187 modem_power
= snd_cs46xx_codec_read (chip
,
3188 AC97_EXTENDED_MSTATUS
,
3189 CS46XX_SECONDARY_CODEC_INDEX
);
3190 modem_power
&=0xFEFF;
3192 snd_cs46xx_codec_write(chip
,
3193 AC97_EXTENDED_MSTATUS
, modem_power
,
3194 CS46XX_SECONDARY_CODEC_INDEX
);
3197 * Set GPIO pin's 7 and 8 so that they are configured for output.
3199 pin_config
= snd_cs46xx_codec_read (chip
,
3201 CS46XX_SECONDARY_CODEC_INDEX
);
3204 snd_cs46xx_codec_write(chip
,
3205 AC97_GPIO_CFG
, pin_config
,
3206 CS46XX_SECONDARY_CODEC_INDEX
);
3209 * Set GPIO pin's 7 and 8 so that they are compatible with CMOS logic.
3212 logic_type
= snd_cs46xx_codec_read(chip
, AC97_GPIO_POLARITY
,
3213 CS46XX_SECONDARY_CODEC_INDEX
);
3216 snd_cs46xx_codec_write (chip
, AC97_GPIO_POLARITY
, logic_type
,
3217 CS46XX_SECONDARY_CODEC_INDEX
);
3219 valid_slots
= snd_cs46xx_peekBA0(chip
, BA0_ACOSV
);
3220 valid_slots
|= 0x200;
3221 snd_cs46xx_pokeBA0(chip
, BA0_ACOSV
, valid_slots
);
3223 if ( cs46xx_wait_for_fifo(chip
,1) ) {
3224 snd_printdd("FIFO is busy\n");
3230 * Fill slots 12 with the correct value for the GPIO pins.
3232 for(idx
= 0x90; idx
<= 0x9F; idx
++) {
3234 * Initialize the fifo so that bits 7 and 8 are on.
3236 * Remember that the GPIO pins in bonzo are shifted by 4 bits to
3237 * the left. 0x1800 corresponds to bits 7 and 8.
3239 snd_cs46xx_pokeBA0(chip
, BA0_SERBWP
, 0x1800);
3242 * Wait for command to complete
3244 if ( cs46xx_wait_for_fifo(chip
,200) ) {
3245 snd_printdd("failed waiting for FIFO at addr (%02X)\n",idx
);
3251 * Write the serial port FIFO index.
3253 snd_cs46xx_pokeBA0(chip
, BA0_SERBAD
, idx
);
3256 * Tell the serial port to load the new value into the FIFO location.
3258 snd_cs46xx_pokeBA0(chip
, BA0_SERBCM
, SERBCM_WRC
);
3261 /* wait for last command to complete */
3262 cs46xx_wait_for_fifo(chip
,200);
3265 * Now, if we powered up the devices, then power them back down again.
3266 * This is kinda ugly, but should never happen.
3269 snd_cs46xx_pokeBA0(chip
, BA0_CLKCR1
, tmp
);
3279 static void amp_voyetra(struct snd_cs46xx
*chip
, int change
)
3281 /* Manage the EAPD bit on the Crystal 4297
3282 and the Analog AD1885 */
3284 #ifdef CONFIG_SND_CS46XX_NEW_DSP
3285 int old
= chip
->amplifier
;
3289 chip
->amplifier
+= change
;
3290 oval
= snd_cs46xx_codec_read(chip
, AC97_POWERDOWN
,
3291 CS46XX_PRIMARY_CODEC_INDEX
);
3293 if (chip
->amplifier
) {
3294 /* Turn the EAPD amp on */
3297 /* Turn the EAPD amp off */
3301 snd_cs46xx_codec_write(chip
, AC97_POWERDOWN
, val
,
3302 CS46XX_PRIMARY_CODEC_INDEX
);
3303 if (chip
->eapd_switch
)
3304 snd_ctl_notify(chip
->card
, SNDRV_CTL_EVENT_MASK_VALUE
,
3305 &chip
->eapd_switch
->id
);
3308 #ifdef CONFIG_SND_CS46XX_NEW_DSP
3309 if (chip
->amplifier
&& !old
) {
3310 voyetra_setup_eapd_slot(chip
);
3315 static void hercules_init(struct snd_cs46xx
*chip
)
3317 /* default: AMP off, and SPDIF input optical */
3318 snd_cs46xx_pokeBA0(chip
, BA0_EGPIODR
, EGPIODR_GPOE0
);
3319 snd_cs46xx_pokeBA0(chip
, BA0_EGPIOPTR
, EGPIODR_GPOE0
);
3324 * Game Theatre XP card - EGPIO[2] is used to enable the external amp.
3326 static void amp_hercules(struct snd_cs46xx
*chip
, int change
)
3328 int old
= chip
->amplifier
;
3329 int val1
= snd_cs46xx_peekBA0(chip
, BA0_EGPIODR
);
3330 int val2
= snd_cs46xx_peekBA0(chip
, BA0_EGPIOPTR
);
3332 chip
->amplifier
+= change
;
3333 if (chip
->amplifier
&& !old
) {
3334 snd_printdd ("Hercules amplifier ON\n");
3336 snd_cs46xx_pokeBA0(chip
, BA0_EGPIODR
,
3337 EGPIODR_GPOE2
| val1
); /* enable EGPIO2 output */
3338 snd_cs46xx_pokeBA0(chip
, BA0_EGPIOPTR
,
3339 EGPIOPTR_GPPT2
| val2
); /* open-drain on output */
3340 } else if (old
&& !chip
->amplifier
) {
3341 snd_printdd ("Hercules amplifier OFF\n");
3342 snd_cs46xx_pokeBA0(chip
, BA0_EGPIODR
, val1
& ~EGPIODR_GPOE2
); /* disable */
3343 snd_cs46xx_pokeBA0(chip
, BA0_EGPIOPTR
, val2
& ~EGPIOPTR_GPPT2
); /* disable */
3347 static void voyetra_mixer_init (struct snd_cs46xx
*chip
)
3349 snd_printdd ("initializing Voyetra mixer\n");
3351 /* Enable SPDIF out */
3352 snd_cs46xx_pokeBA0(chip
, BA0_EGPIODR
, EGPIODR_GPOE0
);
3353 snd_cs46xx_pokeBA0(chip
, BA0_EGPIOPTR
, EGPIODR_GPOE0
);
3356 static void hercules_mixer_init (struct snd_cs46xx
*chip
)
3358 #ifdef CONFIG_SND_CS46XX_NEW_DSP
3361 struct snd_card
*card
= chip
->card
;
3364 /* set EGPIO to default */
3365 hercules_init(chip
);
3367 snd_printdd ("initializing Hercules mixer\n");
3369 #ifdef CONFIG_SND_CS46XX_NEW_DSP
3370 if (chip
->in_suspend
)
3373 for (idx
= 0 ; idx
< ARRAY_SIZE(snd_hercules_controls
); idx
++) {
3374 struct snd_kcontrol
*kctl
;
3376 kctl
= snd_ctl_new1(&snd_hercules_controls
[idx
], chip
);
3377 if ((err
= snd_ctl_add(card
, kctl
)) < 0) {
3378 printk (KERN_ERR
"cs46xx: failed to initialize Hercules mixer (%d)\n",err
);
3391 static void amp_voyetra_4294(struct snd_cs46xx
*chip
, int change
)
3393 chip
->amplifier
+= change
;
3395 if (chip
->amplifier
) {
3396 /* Switch the GPIO pins 7 and 8 to open drain */
3397 snd_cs46xx_codec_write(chip
, 0x4C,
3398 snd_cs46xx_codec_read(chip
, 0x4C) & 0xFE7F);
3399 snd_cs46xx_codec_write(chip
, 0x4E,
3400 snd_cs46xx_codec_read(chip
, 0x4E) | 0x0180);
3401 /* Now wake the AMP (this might be backwards) */
3402 snd_cs46xx_codec_write(chip
, 0x54,
3403 snd_cs46xx_codec_read(chip
, 0x54) & ~0x0180);
3405 snd_cs46xx_codec_write(chip
, 0x54,
3406 snd_cs46xx_codec_read(chip
, 0x54) | 0x0180);
3413 * Handle the CLKRUN on a thinkpad. We must disable CLKRUN support
3414 * whenever we need to beat on the chip.
3416 * The original idea and code for this hack comes from David Kaiser at
3417 * Linuxcare. Perhaps one day Crystal will document their chips well
3418 * enough to make them useful.
3421 static void clkrun_hack(struct snd_cs46xx
*chip
, int change
)
3425 if (!chip
->acpi_port
)
3428 chip
->amplifier
+= change
;
3430 /* Read ACPI port */
3431 nval
= control
= inw(chip
->acpi_port
+ 0x10);
3433 /* Flip CLKRUN off while running */
3434 if (! chip
->amplifier
)
3438 if (nval
!= control
)
3439 outw(nval
, chip
->acpi_port
+ 0x10);
3444 * detect intel piix4
3446 static void clkrun_init(struct snd_cs46xx
*chip
)
3448 struct pci_dev
*pdev
;
3451 chip
->acpi_port
= 0;
3453 pdev
= pci_get_device(PCI_VENDOR_ID_INTEL
,
3454 PCI_DEVICE_ID_INTEL_82371AB_3
, NULL
);
3456 return; /* Not a thinkpad thats for sure */
3458 /* Find the control port */
3459 pci_read_config_byte(pdev
, 0x41, &pp
);
3460 chip
->acpi_port
= pp
<< 8;
3474 void (*init
)(struct snd_cs46xx
*);
3475 void (*amp
)(struct snd_cs46xx
*, int);
3476 void (*active
)(struct snd_cs46xx
*, int);
3477 void (*mixer_init
)(struct snd_cs46xx
*);
3480 static struct cs_card_type __devinitdata cards
[] = {
3484 .name
= "Genius Soundmaker 128 value",
3485 /* nothing special */
3492 .mixer_init
= voyetra_mixer_init
,
3497 .name
= "Mitac MI6020/21",
3500 /* Hercules Game Theatre XP */
3502 .vendor
= 0x14af, /* Guillemot Corporation */
3504 .name
= "Hercules Game Theatre XP",
3505 .amp
= amp_hercules
,
3506 .mixer_init
= hercules_mixer_init
,
3511 .name
= "Hercules Game Theatre XP",
3512 .amp
= amp_hercules
,
3513 .mixer_init
= hercules_mixer_init
,
3518 .name
= "Hercules Game Theatre XP",
3519 .amp
= amp_hercules
,
3520 .mixer_init
= hercules_mixer_init
,
3526 .name
= "Hercules Game Theatre XP",
3527 .amp
= amp_hercules
,
3528 .mixer_init
= hercules_mixer_init
,
3533 .name
= "Hercules Game Theatre XP",
3534 .amp
= amp_hercules
,
3535 .mixer_init
= hercules_mixer_init
,
3540 .name
= "Hercules Game Theatre XP",
3541 .amp
= amp_hercules
,
3542 .mixer_init
= hercules_mixer_init
,
3544 /* Herculess Fortissimo */
3548 .name
= "Hercules Gamesurround Fortissimo II",
3553 .name
= "Hercules Gamesurround Fortissimo III 7.1",
3559 .name
= "Terratec DMX XFire 1024",
3564 .name
= "Terratec SiXPack 5.1",
3566 /* Not sure if the 570 needs the clkrun hack */
3568 .vendor
= PCI_VENDOR_ID_IBM
,
3570 .name
= "Thinkpad 570",
3571 .init
= clkrun_init
,
3572 .active
= clkrun_hack
,
3575 .vendor
= PCI_VENDOR_ID_IBM
,
3577 .name
= "Thinkpad 600X/A20/T20",
3578 .init
= clkrun_init
,
3579 .active
= clkrun_hack
,
3582 .vendor
= PCI_VENDOR_ID_IBM
,
3584 .name
= "Thinkpad 600E (unsupported)",
3594 static unsigned int saved_regs
[] = {
3602 int snd_cs46xx_suspend(struct pci_dev
*pci
, pm_message_t state
)
3604 struct snd_card
*card
= pci_get_drvdata(pci
);
3605 struct snd_cs46xx
*chip
= card
->private_data
;
3608 snd_power_change_state(card
, SNDRV_CTL_POWER_D3hot
);
3609 chip
->in_suspend
= 1;
3610 snd_pcm_suspend_all(chip
->pcm
);
3611 // chip->ac97_powerdown = snd_cs46xx_codec_read(chip, AC97_POWER_CONTROL);
3612 // chip->ac97_general_purpose = snd_cs46xx_codec_read(chip, BA0_AC97_GENERAL_PURPOSE);
3614 snd_ac97_suspend(chip
->ac97
[CS46XX_PRIMARY_CODEC_INDEX
]);
3615 snd_ac97_suspend(chip
->ac97
[CS46XX_SECONDARY_CODEC_INDEX
]);
3617 /* save some registers */
3618 for (i
= 0; i
< ARRAY_SIZE(saved_regs
); i
++)
3619 chip
->saved_regs
[i
] = snd_cs46xx_peekBA0(chip
, saved_regs
[i
]);
3621 amp_saved
= chip
->amplifier
;
3623 chip
->amplifier_ctrl(chip
, -chip
->amplifier
);
3624 snd_cs46xx_hw_stop(chip
);
3625 /* disable CLKRUN */
3626 chip
->active_ctrl(chip
, -chip
->amplifier
);
3627 chip
->amplifier
= amp_saved
; /* restore the status */
3629 pci_disable_device(pci
);
3630 pci_save_state(pci
);
3631 pci_set_power_state(pci
, pci_choose_state(pci
, state
));
3635 int snd_cs46xx_resume(struct pci_dev
*pci
)
3637 struct snd_card
*card
= pci_get_drvdata(pci
);
3638 struct snd_cs46xx
*chip
= card
->private_data
;
3640 #ifdef CONFIG_SND_CS46XX_NEW_DSP
3645 pci_set_power_state(pci
, PCI_D0
);
3646 pci_restore_state(pci
);
3647 if (pci_enable_device(pci
) < 0) {
3648 printk(KERN_ERR
"cs46xx: pci_enable_device failed, "
3649 "disabling device\n");
3650 snd_card_disconnect(card
);
3653 pci_set_master(pci
);
3655 amp_saved
= chip
->amplifier
;
3656 chip
->amplifier
= 0;
3657 chip
->active_ctrl(chip
, 1); /* force to on */
3659 snd_cs46xx_chip_init(chip
);
3661 snd_cs46xx_reset(chip
);
3662 #ifdef CONFIG_SND_CS46XX_NEW_DSP
3663 cs46xx_dsp_resume(chip
);
3664 /* restore some registers */
3665 for (i
= 0; i
< ARRAY_SIZE(saved_regs
); i
++)
3666 snd_cs46xx_pokeBA0(chip
, saved_regs
[i
], chip
->saved_regs
[i
]);
3668 snd_cs46xx_download_image(chip
);
3672 snd_cs46xx_codec_write(chip
, BA0_AC97_GENERAL_PURPOSE
,
3673 chip
->ac97_general_purpose
);
3674 snd_cs46xx_codec_write(chip
, AC97_POWER_CONTROL
,
3675 chip
->ac97_powerdown
);
3677 snd_cs46xx_codec_write(chip
, BA0_AC97_POWERDOWN
,
3678 chip
->ac97_powerdown
);
3682 snd_ac97_resume(chip
->ac97
[CS46XX_PRIMARY_CODEC_INDEX
]);
3683 snd_ac97_resume(chip
->ac97
[CS46XX_SECONDARY_CODEC_INDEX
]);
3688 tmp
= snd_cs46xx_peek(chip
, BA1_CCTL
);
3689 chip
->capt
.ctl
= tmp
& 0x0000ffff;
3690 snd_cs46xx_poke(chip
, BA1_CCTL
, tmp
& 0xffff0000);
3694 /* reset playback/capture */
3695 snd_cs46xx_set_play_sample_rate(chip
, 8000);
3696 snd_cs46xx_set_capture_sample_rate(chip
, 8000);
3697 snd_cs46xx_proc_start(chip
);
3699 cs46xx_enable_stream_irqs(chip
);
3702 chip
->amplifier_ctrl(chip
, 1); /* turn amp on */
3704 chip
->active_ctrl(chip
, -1); /* disable CLKRUN */
3705 chip
->amplifier
= amp_saved
;
3706 chip
->in_suspend
= 0;
3707 snd_power_change_state(card
, SNDRV_CTL_POWER_D0
);
3710 #endif /* CONFIG_PM */
3716 int __devinit
snd_cs46xx_create(struct snd_card
*card
,
3717 struct pci_dev
* pci
,
3718 int external_amp
, int thinkpad
,
3719 struct snd_cs46xx
** rchip
)
3721 struct snd_cs46xx
*chip
;
3723 struct snd_cs46xx_region
*region
;
3724 struct cs_card_type
*cp
;
3725 u16 ss_card
, ss_vendor
;
3726 static struct snd_device_ops ops
= {
3727 .dev_free
= snd_cs46xx_dev_free
,
3732 /* enable PCI device */
3733 if ((err
= pci_enable_device(pci
)) < 0)
3736 chip
= kzalloc(sizeof(*chip
), GFP_KERNEL
);
3738 pci_disable_device(pci
);
3741 spin_lock_init(&chip
->reg_lock
);
3742 #ifdef CONFIG_SND_CS46XX_NEW_DSP
3743 mutex_init(&chip
->spos_mutex
);
3748 chip
->ba0_addr
= pci_resource_start(pci
, 0);
3749 chip
->ba1_addr
= pci_resource_start(pci
, 1);
3750 if (chip
->ba0_addr
== 0 || chip
->ba0_addr
== (unsigned long)~0 ||
3751 chip
->ba1_addr
== 0 || chip
->ba1_addr
== (unsigned long)~0) {
3752 snd_printk(KERN_ERR
"wrong address(es) - ba0 = 0x%lx, ba1 = 0x%lx\n",
3753 chip
->ba0_addr
, chip
->ba1_addr
);
3754 snd_cs46xx_free(chip
);
3758 region
= &chip
->region
.name
.ba0
;
3759 strcpy(region
->name
, "CS46xx_BA0");
3760 region
->base
= chip
->ba0_addr
;
3761 region
->size
= CS46XX_BA0_SIZE
;
3763 region
= &chip
->region
.name
.data0
;
3764 strcpy(region
->name
, "CS46xx_BA1_data0");
3765 region
->base
= chip
->ba1_addr
+ BA1_SP_DMEM0
;
3766 region
->size
= CS46XX_BA1_DATA0_SIZE
;
3768 region
= &chip
->region
.name
.data1
;
3769 strcpy(region
->name
, "CS46xx_BA1_data1");
3770 region
->base
= chip
->ba1_addr
+ BA1_SP_DMEM1
;
3771 region
->size
= CS46XX_BA1_DATA1_SIZE
;
3773 region
= &chip
->region
.name
.pmem
;
3774 strcpy(region
->name
, "CS46xx_BA1_pmem");
3775 region
->base
= chip
->ba1_addr
+ BA1_SP_PMEM
;
3776 region
->size
= CS46XX_BA1_PRG_SIZE
;
3778 region
= &chip
->region
.name
.reg
;
3779 strcpy(region
->name
, "CS46xx_BA1_reg");
3780 region
->base
= chip
->ba1_addr
+ BA1_SP_REG
;
3781 region
->size
= CS46XX_BA1_REG_SIZE
;
3783 /* set up amp and clkrun hack */
3784 pci_read_config_word(pci
, PCI_SUBSYSTEM_VENDOR_ID
, &ss_vendor
);
3785 pci_read_config_word(pci
, PCI_SUBSYSTEM_ID
, &ss_card
);
3787 for (cp
= &cards
[0]; cp
->name
; cp
++) {
3788 if (cp
->vendor
== ss_vendor
&& cp
->id
== ss_card
) {
3789 snd_printdd ("hack for %s enabled\n", cp
->name
);
3791 chip
->amplifier_ctrl
= cp
->amp
;
3792 chip
->active_ctrl
= cp
->active
;
3793 chip
->mixer_init
= cp
->mixer_init
;
3802 snd_printk(KERN_INFO
"Crystal EAPD support forced on.\n");
3803 chip
->amplifier_ctrl
= amp_voyetra
;
3807 snd_printk(KERN_INFO
"Activating CLKRUN hack for Thinkpad.\n");
3808 chip
->active_ctrl
= clkrun_hack
;
3812 if (chip
->amplifier_ctrl
== NULL
)
3813 chip
->amplifier_ctrl
= amp_none
;
3814 if (chip
->active_ctrl
== NULL
)
3815 chip
->active_ctrl
= amp_none
;
3817 chip
->active_ctrl(chip
, 1); /* enable CLKRUN */
3819 pci_set_master(pci
);
3821 for (idx
= 0; idx
< 5; idx
++) {
3822 region
= &chip
->region
.idx
[idx
];
3823 if ((region
->resource
= request_mem_region(region
->base
, region
->size
,
3824 region
->name
)) == NULL
) {
3825 snd_printk(KERN_ERR
"unable to request memory region 0x%lx-0x%lx\n",
3826 region
->base
, region
->base
+ region
->size
- 1);
3827 snd_cs46xx_free(chip
);
3830 region
->remap_addr
= ioremap_nocache(region
->base
, region
->size
);
3831 if (region
->remap_addr
== NULL
) {
3832 snd_printk(KERN_ERR
"%s ioremap problem\n", region
->name
);
3833 snd_cs46xx_free(chip
);
3838 if (request_irq(pci
->irq
, snd_cs46xx_interrupt
, IRQF_SHARED
,
3839 KBUILD_MODNAME
, chip
)) {
3840 snd_printk(KERN_ERR
"unable to grab IRQ %d\n", pci
->irq
);
3841 snd_cs46xx_free(chip
);
3844 chip
->irq
= pci
->irq
;
3846 #ifdef CONFIG_SND_CS46XX_NEW_DSP
3847 chip
->dsp_spos_instance
= cs46xx_dsp_spos_create(chip
);
3848 if (chip
->dsp_spos_instance
== NULL
) {
3849 snd_cs46xx_free(chip
);
3854 err
= snd_cs46xx_chip_init(chip
);
3856 snd_cs46xx_free(chip
);
3860 if ((err
= snd_device_new(card
, SNDRV_DEV_LOWLEVEL
, chip
, &ops
)) < 0) {
3861 snd_cs46xx_free(chip
);
3865 snd_cs46xx_proc_init(card
, chip
);
3868 chip
->saved_regs
= kmalloc(sizeof(*chip
->saved_regs
) *
3869 ARRAY_SIZE(saved_regs
), GFP_KERNEL
);
3870 if (!chip
->saved_regs
) {
3871 snd_cs46xx_free(chip
);
3876 chip
->active_ctrl(chip
, -1); /* disable CLKRUN */
3878 snd_card_set_dev(card
, &pci
->dev
);